In the Linux kernel, the following vulnerability has been resolved:
mmc: vub300: defer reset until cmd_mutex is unlocked
vub300cmndworkthread() holds cmd_mutex while it sends a command and waits for the command response. If the response wait times out, __vub300commandresponse() kills the command URBs and then synchronously resets the USB device through usbresetdevice().
That reset path re-enters the driver through vub300prereset(), which also takes cmd_mutex. The worker therefore tries to acquire the same mutex recursively while it is still holding it from the command path.
This issue was found by our static analysis tool and then manually reviewed against the current tree.
The grounded PoC kept the real worker and timeout/reset carrier:
vub300cmndworkthread() __vub300commandresponse() usblockdeviceforreset() usbresetdevice() vub300prereset()
Lockdep reported the same-task recursive acquisition on cmd_mutex:
WARNING: possible recursive locking detected ... (&testvub300.cmdmutex) ... at: usbresetdevice... [vulnmsv] ... (&testvub300.cmdmutex) ... at: vub300cmndworkthread+0x12/0x20 [vulnmsv] Workqueue: vub300cmdwq vub300cmndworkthread [vuln_msv] *** DEADLOCK ***
Return a flag from _vub300commandresponse() when the timeout path needs a device reset, then perform the reset after vub300cmndworkthread() has cleared the in-flight command state and dropped cmdmutex. The reset is still attempted before mmcrequestdone(), preserving the existing request completion ordering while avoiding the recursive lock.
{
"osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/80xxx/CVE-2026-80659.json",
"cna_assigner": "Linux"
}