Skip to content

Commit 41ca62e

Browse files
stonezdmgregkh
authored andcommitted
usb: phy: fsl-usb: Fix use-after-free in delayed work during device removal
The delayed work item otg_event is initialized in fsl_otg_conf() and scheduled under two conditions: 1. When a host controller binds to the OTG controller. 2. When the USB ID pin state changes (cable insertion/removal). A race condition occurs when the device is removed via fsl_otg_remove(): the fsl_otg instance may be freed while the delayed work is still pending or executing. This leads to use-after-free when the work function fsl_otg_event() accesses the already freed memory. The problematic scenario: (detach thread) | (delayed work) fsl_otg_remove() | kfree(fsl_otg_dev) //FREE| fsl_otg_event() | og = container_of(...) //USE | og-> //USE Fix this by calling disable_delayed_work_sync() in fsl_otg_remove() before deallocating the fsl_otg structure. This ensures the delayed work is properly canceled and completes execution prior to memory deallocation. This bug was identified through static analysis. Fixes: 0807c50 ("USB: add Freescale USB OTG Transceiver driver") Cc: stable <stable@kernel.org> Signed-off-by: Duoming Zhou <duoming@zju.edu.cn> Link: https://patch.msgid.link/20251205034831.12846-1-duoming@zju.edu.cn Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 36cc7e0 commit 41ca62e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/usb/phy/phy-fsl-usb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -988,6 +988,7 @@ static void fsl_otg_remove(struct platform_device *pdev)
988988
{
989989
struct fsl_usb2_platform_data *pdata = dev_get_platdata(&pdev->dev);
990990

991+
disable_delayed_work_sync(&fsl_otg_dev->otg_event);
991992
usb_remove_phy(&fsl_otg_dev->phy);
992993
free_irq(fsl_otg_dev->irq, fsl_otg_dev);
993994

0 commit comments

Comments
 (0)