mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
scd: Fix a race condition for new_reader_slot.
* scd/apdu.c (reader_table_lock, apdu_init): New. (new_reader_slot): Serialize by reader_table_lock. * scd/app.c (lock_app, unlock_app, app_new_register): Fix error code usage. (initialize_module_command): Call apdu_init. * scd/scdaemon.c (main): Handle error for initialize_module_command. -- This is a long standing bug. There are two different things; The serialization of allocating a new SLOT, and the serialization of using the SLOT. The latter was implemented in new_reader_slot by lock_slot. However, the former was not done. Thus, there was a possible race where a same SLOT is allocated to multiple threads. Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
4cc9fc5eb9
commit
c48cf7e32f
5 changed files with 74 additions and 47 deletions
|
@ -640,7 +640,12 @@ main (int argc, char **argv )
|
|||
|
||||
set_debug (debug_level);
|
||||
|
||||
initialize_module_command ();
|
||||
if (initialize_module_command ())
|
||||
{
|
||||
log_error ("initialization failed\n");
|
||||
cleanup ();
|
||||
exit (1);
|
||||
}
|
||||
|
||||
if (gpgconf_list == 2)
|
||||
scd_exit (0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue