CVE-2026-64329 Details
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.
A use-after-free vulnerability has been identified in the Linux kernel's USB Type-C UCSI CCG driver. This issue arises when the connector is removed, as the IRQ handler may access a freed object, leading to potential memory corruption. The vulnerability is present in the Linux kernel stable tree.
Users can apply the available patch to address this vulnerability. The patch is included in the Linux kernel stable tree.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/1a160076d3d0dcd4a98a4599ad96eec0790b099b | kernel.org | Patch |
| https://git.kernel.org/stable/c/1f0bdc2884b67de337215079bba166df0cdf4ac5 | kernel.org | Patch |
| https://git.kernel.org/stable/c/86c9ee928c4a370e323e432aaf8dca79c4ba7c85 | kernel.org | Patch |
| https://git.kernel.org/stable/c/99381e762273a2410a3f0216000be32b013c0ea9 | kernel.org | Patch |
| https://git.kernel.org/stable/c/c32df11147822d22facee8fa30c2e8971d12f426 | kernel.org | Patch |
| https://git.kernel.org/stable/c/dbb500bad02146b388041877574829016591ddc8 | kernel.org | Patch |
| https://git.kernel.org/stable/c/f1adeb1ff8bef1467d6961059810795d02bbad5d | kernel.org | Patch |
| https://git.kernel.org/stable/c/f5c772b76bbd95de8be51cf849c6098f6af6fcf9 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-416 | Use After Free | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 5.5, < 5.10.261 >= 5.11, < 5.15.212 >= 5.16, < 6.1.178 >= 6.2, < 6.6.145 >= 6.7, < 6.12.96 >= 6.13, < 6.18.39 >= 6.19, < 7.1.4 7.2 rc1 7.2 rc2 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Sep 4, 2026 | Initial Analysis | [email protected] |
| Aug 17, 2026 | CVE Modified | kernel.org |
| Jul 25, 2026 | New CVE Received | kernel.org |