aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core/hub.c
diff options
context:
space:
mode:
authorAlan Stern <stern@rowland.harvard.edu>2015-01-21 14:02:43 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-01-25 07:54:17 -0500
commit524134d422316a59d5464ccbc12036bbe90c5563 (patch)
tree2b13402e0012e1f021ae852097a4e7882223b619 /drivers/usb/core/hub.c
parent9636c37843c9355c1ab6adcd8491186cbdc3b950 (diff)
USB: don't cancel queued resets when unbinding drivers
The USB stack provides a mechanism for drivers to request an asynchronous device reset (usb_queue_reset_device()). The mechanism uses a work item (reset_ws) embedded in the usb_interface structure used by the driver, and the reset is carried out by a work queue routine. The asynchronous reset can race with driver unbinding. When this happens, we try to cancel the queued reset before unbinding the driver, on the theory that the driver won't care about any resets once it is unbound. However, thanks to the fact that lockdep now tracks work queue accesses, this can provoke a lockdep warning in situations where the device reset causes another interface's driver to be unbound; see http://marc.info/?l=linux-usb&m=141893165203776&w=2 for an example. The reason is that the work routine for reset_ws in one interface calls cancel_queued_work() for the reset_ws in another interface. Lockdep thinks this might lead to a work routine trying to cancel itself. The simplest solution is not to cancel queued resets when unbinding drivers. This means we now need to acquire a reference to the usb_interface when queuing a reset_ws work item and to drop the reference when the work routine finishes. We also need to make sure that the usb_interface structure doesn't outlive its parent usb_device; this means acquiring and dropping a reference when the interface is created and destroyed. In addition, cancelling a queued reset can fail (if the device is in the middle of an earlier reset), and this can cause usb_reset_device() to try to rebind an interface that has been deallocated (see http://marc.info/?l=linux-usb&m=142175717016628&w=2 for details). Acquiring the extra references prevents this failure. Signed-off-by: Alan Stern <stern@rowland.harvard.edu> Reported-by: Russell King - ARM Linux <linux@arm.linux.org.uk> Reported-by: Olivier Sobrie <olivier@sobrie.be> Tested-by: Olivier Sobrie <olivier@sobrie.be> Cc: stable <stable@vger.kernel.org> # 3.19 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core/hub.c')
-rw-r--r--drivers/usb/core/hub.c25
1 files changed, 9 insertions, 16 deletions
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index aeb50bb6ba9c..b4bfa3ac4b12 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -5589,26 +5589,19 @@ EXPORT_SYMBOL_GPL(usb_reset_device);
5589 * possible; depending on how the driver attached to each interface 5589 * possible; depending on how the driver attached to each interface
5590 * handles ->pre_reset(), the second reset might happen or not. 5590 * handles ->pre_reset(), the second reset might happen or not.
5591 * 5591 *
5592 * - If a driver is unbound and it had a pending reset, the reset will 5592 * - If the reset is delayed so long that the interface is unbound from
5593 * be cancelled. 5593 * its driver, the reset will be skipped.
5594 * 5594 *
5595 * - This function can be called during .probe() or .disconnect() 5595 * - This function can be called during .probe(). It can also be called
5596 * times. On return from .disconnect(), any pending resets will be 5596 * during .disconnect(), but doing so is pointless because the reset
5597 * cancelled. 5597 * will not occur. If you really want to reset the device during
5598 * 5598 * .disconnect(), call usb_reset_device() directly -- but watch out
5599 * There is no no need to lock/unlock the @reset_ws as schedule_work() 5599 * for nested unbinding issues!
5600 * does its own.
5601 *
5602 * NOTE: We don't do any reference count tracking because it is not
5603 * needed. The lifecycle of the work_struct is tied to the
5604 * usb_interface. Before destroying the interface we cancel the
5605 * work_struct, so the fact that work_struct is queued and or
5606 * running means the interface (and thus, the device) exist and
5607 * are referenced.
5608 */ 5600 */
5609void usb_queue_reset_device(struct usb_interface *iface) 5601void usb_queue_reset_device(struct usb_interface *iface)
5610{ 5602{
5611 schedule_work(&iface->reset_ws); 5603 if (schedule_work(&iface->reset_ws))
5604 usb_get_intf(iface);
5612} 5605}
5613EXPORT_SYMBOL_GPL(usb_queue_reset_device); 5606EXPORT_SYMBOL_GPL(usb_queue_reset_device);
5614 5607