usb: gadget: bdc_udc: fix race condition in bdc_udc_exit()
authorAlexey Khoroshilov <khoroshilov@ispras.ru>
Fri, 26 Feb 2016 22:33:14 +0000 (01:33 +0300)
committerFelipe Balbi <balbi@kernel.org>
Fri, 4 Mar 2016 13:14:47 +0000 (15:14 +0200)
bdc_ep_disable() expects to be called with bdc->lock held.
The assumption is met in all the cases except for call from bdc_udc_exit(),
that is called from bdc_remove(). As a result a race can happen or unheld
bdc->lock can be unlocked in bdc_req_complete().

The patch proposes to acquire-release bdc->lock around bdc_ep_disable()
in bdc_udc_exit().

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Alexey Khoroshilov <khoroshilov@ispras.ru>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
drivers/usb/gadget/udc/bdc/bdc_udc.c

index 7f77db5d12789fce8a012bb0b3048f1a9c82558f..aae7458d8986945925093ada5b59143e0215a333 100644 (file)
@@ -581,8 +581,13 @@ err0:
 
 void bdc_udc_exit(struct bdc *bdc)
 {
+       unsigned long flags;
+
        dev_dbg(bdc->dev, "%s()\n", __func__);
+       spin_lock_irqsave(&bdc->lock, flags);
        bdc_ep_disable(bdc->bdc_ep_array[1]);
+       spin_unlock_irqrestore(&bdc->lock, flags);
+
        usb_del_gadget_udc(&bdc->gadget);
        bdc_free_ep(bdc);
 }