linux-stable/drivers/usb/mtu3
Chunfeng Yun ee53a7a880 usb: mtu3: fix kernel panic at qmu transfer done irq handler
[ Upstream commit d28f4091ea ]

When handle qmu transfer irq, it will unlock @mtu->lock before give back
request, if another thread handle disconnect event at the same time, and
try to disable ep, it may lock @mtu->lock and free qmu ring, then qmu
irq hanlder may get a NULL gpd, avoid the KE by checking gpd's value before
handling it.

e.g.
qmu done irq on cpu0                 thread running on cpu1

qmu_done_tx()
  handle gpd [0]
    mtu3_requ_complete()        mtu3_gadget_ep_disable()
      unlock @mtu->lock
        give back request         lock @mtu->lock
                                    mtu3_ep_disable()
                                      mtu3_gpd_ring_free()
                                   unlock @mtu->lock
      lock @mtu->lock
    get next gpd [1]

[1]: goto [0] to handle next gpd, and next gpd may be NULL.

Fixes: 48e0d3735a ("usb: mtu3: supports new QMU format")
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Link: https://lore.kernel.org/r/20230417025203.18097-3-chunfeng.yun@mediatek.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2023-05-11 23:00:33 +09:00
..
Kconfig
Makefile
mtu3.h
mtu3_core.c
mtu3_debug.h
mtu3_debugfs.c
mtu3_dr.c
mtu3_dr.h
mtu3_gadget.c
mtu3_gadget_ep0.c
mtu3_host.c
mtu3_hw_regs.h
mtu3_plat.c
mtu3_qmu.c
mtu3_qmu.h
mtu3_trace.c
mtu3_trace.h