summaryrefslogtreecommitdiffstats
path: root/scd
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2021-05-11 03:25:12 +0200
committerNIIBE Yutaka <gniibe@fsij.org>2021-05-11 03:25:12 +0200
commit32baa9acfb153004bdb2509f9516482b78f256a4 (patch)
tree6f47296116352d4318d17eedbb22d91e4afa398b /scd
parentscd: Fix close_pcsc_reader. (diff)
downloadgnupg2-32baa9acfb153004bdb2509f9516482b78f256a4.tar.xz
gnupg2-32baa9acfb153004bdb2509f9516482b78f256a4.zip
scd: Serialize READER_TABLE access for PC/SC.
* scd/apdu.c (apdu_dev_list_start): Remove locking READER_TABLE_LOCK. Don't increment PCSC.COUNT here. (apdu_dev_list_finish): Don't decrement PCSC.COUNT here. (apdu_open_reader): Protect access with READER_TABLE_LOCK. -- GnuPG-bug-id: 5416 Fixes-commit: 8d81fd7c01e8dfacc719ff190f8e364014e32fdf Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'scd')
-rw-r--r--scd/apdu.c34
1 files changed, 19 insertions, 15 deletions
diff --git a/scd/apdu.c b/scd/apdu.c
index c809e6791..ae6d8664b 100644
--- a/scd/apdu.c
+++ b/scd/apdu.c
@@ -1992,8 +1992,6 @@ apdu_dev_list_start (const char *portstr, struct dev_list **l_p)
dl->idx = 0;
dl->idx_max = 0;
- npth_mutex_lock (&reader_table_lock);
-
#ifdef HAVE_LIBUSB
if (!opt.disable_ccid)
{
@@ -2001,7 +1999,6 @@ apdu_dev_list_start (const char *portstr, struct dev_list **l_p)
if (err)
{
xfree (dl);
- npth_mutex_unlock (&reader_table_lock);
return err;
}
@@ -2011,7 +2008,6 @@ apdu_dev_list_start (const char *portstr, struct dev_list **l_p)
log_debug ("leave: apdu_open_reader => slot=-1 (no ccid)\n");
xfree (dl);
- npth_mutex_unlock (&reader_table_lock);
return gpg_error (GPG_ERR_ENODEV);
}
}
@@ -2028,7 +2024,6 @@ apdu_dev_list_start (const char *portstr, struct dev_list **l_p)
if (pcsc_init () < 0)
{
xfree (dl);
- npth_mutex_unlock (&reader_table_lock);
return gpg_error (GPG_ERR_NO_SERVICE);
}
}
@@ -2044,7 +2039,6 @@ apdu_dev_list_start (const char *portstr, struct dev_list **l_p)
log_error ("error allocating memory for reader list\n");
if (pcsc.count == 0)
release_pcsc_context ();
- npth_mutex_unlock (&reader_table_lock);
xfree (dl);
return err;
}
@@ -2057,7 +2051,6 @@ apdu_dev_list_start (const char *portstr, struct dev_list **l_p)
xfree (p);
if (pcsc.count == 0)
release_pcsc_context ();
- npth_mutex_unlock (&reader_table_lock);
xfree (dl);
return iso7816_map_sw (pcsc_error_to_sw (r));
}
@@ -2094,12 +2087,8 @@ apdu_dev_list_start (const char *portstr, struct dev_list **l_p)
break;
}
}
-
- pcsc.count++;
}
- npth_mutex_unlock (&reader_table_lock);
-
*l_p = dl;
return 0;
}
@@ -2123,7 +2112,7 @@ apdu_dev_list_finish (struct dev_list *dl)
pcsc.rdrname[i] = NULL;
log_assert (pcsc.count > 0);
- if (--pcsc.count == 0)
+ if (pcsc.count == 0)
release_pcsc_context ();
}
xfree (dl);
@@ -2150,10 +2139,15 @@ apdu_open_reader (struct dev_list *dl)
if (readerno < 0 || readerno >= dl->idx_max)
return -1;
+ npth_mutex_lock (&reader_table_lock);
/* If already opened HANDLE, return -1. */
for (slot = 0; slot < MAX_READER; slot++)
if (reader_table[slot].used)
- return -1;
+ {
+ npth_mutex_unlock (&reader_table_lock);
+ return -1;
+ }
+ npth_mutex_unlock (&reader_table_lock);
dl->idx = readerno;
dl->portstr = NULL;
@@ -2174,6 +2168,7 @@ apdu_open_reader (struct dev_list *dl)
return slot;
}
+ npth_mutex_lock (&reader_table_lock);
while (dl->idx < dl->idx_max)
{
unsigned int bai = ccid_get_BAI (dl->idx, dl->table);
@@ -2197,7 +2192,10 @@ apdu_open_reader (struct dev_list *dl)
dl->idx++;
if (slot >= 0)
- return slot;
+ {
+ npth_mutex_unlock (&reader_table_lock);
+ return slot;
+ }
else
{
/* Skip this reader. */
@@ -2213,6 +2211,7 @@ apdu_open_reader (struct dev_list *dl)
else
dl->idx++;
}
+ npth_mutex_unlock (&reader_table_lock);
/* Not found. */
slot = -1;
@@ -2228,6 +2227,7 @@ apdu_open_reader (struct dev_list *dl)
return slot;
}
+ npth_mutex_lock (&reader_table_lock);
while (dl->idx < dl->idx_max)
{
const char *rdrname = pcsc.rdrname[dl->idx];
@@ -2255,7 +2255,10 @@ apdu_open_reader (struct dev_list *dl)
dl->idx++;
if (slot >= 0)
- return slot;
+ {
+ npth_mutex_unlock (&reader_table_lock);
+ return slot;
+ }
else
{
/* Skip this reader. */
@@ -2267,6 +2270,7 @@ apdu_open_reader (struct dev_list *dl)
dl->idx++;
}
+ npth_mutex_unlock (&reader_table_lock);
/* Not found. */
slot = -1;
}