linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* doubts concerning locking and signals in input_register_device()
@ 2022-06-20 12:48 Oliver Neukum
  2022-06-24  0:46 ` Dmitry Torokhov
  0 siblings, 1 reply; 3+ messages in thread
From: Oliver Neukum @ 2022-06-20 12:48 UTC (permalink / raw)
  To: dmitry.torokhov; +Cc: jkosina, linux-input, Alan Stern, USB list

Hi,

I am looking at this code in input_register_device():

        error = mutex_lock_interruptible(&input_mutex);
        if (error)
                goto err_device_del;

The problem is not the scope of the locking, but how the
lock is taken.
AFAICT this code will be called in the context of an
ordinary task when you set a configuration through usbfs.
usb_set_configuration() has to probe all interfaces
of a device under its new configuration and does not
handle -EINTR, which input_register_device() will
return when a signal interrupts taking the mutex.

Hence there is a window for a race during which a
mistimed harmless signal will cause a failure of probe()

Now, as this is fairly core code I'd rather ask what
you think before I make the simple fix of taking
the mutex with uninterruptible sleep. What is to be done?

	Regards
		Oliver

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-06  8:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-20 12:48 doubts concerning locking and signals in input_register_device() Oliver Neukum
2022-06-24  0:46 ` Dmitry Torokhov
2022-07-06  8:54   ` Oliver Neukum

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).