Back to overview

CVE-2026-64329

Description
In the Linux kernel, the following vulnerability has been resolved: usb: typec: ucsi: ccg: Fix use-after-free of ucsi on remove The threaded IRQ handler ccg_irq_handler() calls ucsi_notify_common(), which on a connector-change event calls ucsi_connector_change() and schedules connector work. In ucsi_ccg_remove(), ucsi_destroy() frees uc->ucsi (kfree) before free_irq() is called, so a handler invocation already in flight may access the freed object after ucsi_destroy(). CPU 0 (remove) | CPU 1 (threaded IRQ) ucsi_destroy(uc->ucsi) | ccg_irq_handler() kfree(ucsi) // FREE | ucsi_notify_common(uc->ucsi) // USE Move free_irq() before ucsi_destroy() in the remove path. It is kept after ucsi_unregister(): ucsi_unregister() cancels connector work whose handler issues GET_CONNECTOR_STATUS through ucsi_send_command_common(), which waits for a completion that is signalled from the IRQ handler, so the IRQ must stay active until that work has been cancelled. The probe error path already orders free_irq() before ucsi_destroy(). This bug was found by static analysis.

Metadata

CVE ID
CVE-2026-64329
State
PUBLISHED
Assigner
Linux
Reserved
2026-07-19 15:36 UTC
Published
2026-07-25 08:49 UTC
Last updated
2026-07-25 08:49 UTC
Vendor / Product
Linux / Linux
Sources
cve.org  ·  NVD

Severity & Metrics

No CVSS data available.

Affected products (2)
VendorProductPlatformVersions
Linux Linux e32fd989ac1c45f993fbe89ad0a89aa9ea6993d2 < f1adeb1ff8bef1467d6961059810795d02bbad5d, e32fd989ac1c45f993fbe89ad0a89aa9ea6993d2 < 99381e762273a2410a3f0216000be32b013c0ea9, e32fd989ac1c45f993fbe89ad0a89aa9ea6993d2 < 1a160076d3d0dcd4a98a4599ad96eec0790b099b, e32fd989ac1c45f993fbe89ad0a89aa9ea6993d2 < c32df11147822d22facee8fa30c2e8971d12f426 …
Linux Linux 5.5, 0 < 5.5, 5.10.261 ≤ 5.10.*, 5.15.212 ≤ 5.15.* …
Back to overview