usb: phy: twl6030-usb: fix possible use-after-free on remove
authorSven Van Asbroeck <thesven73@gmail.com>
Mon, 11 Feb 2019 15:04:26 +0000 (10:04 -0500)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Wed, 13 Feb 2019 11:05:35 +0000 (13:05 +0200)
In remove(), use cancel_delayed_work_sync() to cancel the
delayed work. Otherwise there's a chance that this work
will continue to run until after the device has been removed.

This issue was detected with the help of Coccinelle.

Cc: Tony Lindgren <tony@atomide.com>
Cc: Bin Liu <b-liu@ti.com>
Fixes: b6a619a883c3 ("usb: phy: Check initial state for twl6030")
Signed-off-by: Sven Van Asbroeck <TheSven73@gmail.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/phy/phy-twl6030-usb.c

index 183550b..dade34d 100644 (file)
@@ -400,7 +400,7 @@ static int twl6030_usb_remove(struct platform_device *pdev)
 {
        struct twl6030_usb *twl = platform_get_drvdata(pdev);
 
-       cancel_delayed_work(&twl->get_status_work);
+       cancel_delayed_work_sync(&twl->get_status_work);
        twl6030_interrupt_mask(TWL6030_USBOTG_INT_MASK,
                REG_INT_MSK_LINE_C);
        twl6030_interrupt_mask(TWL6030_USBOTG_INT_MASK,