CVE-2026-46109
Analyzed
Analyzed - Analysis Complete
Memory Leak in Linux Kernel USB ULPI Driver
Vulnerability report for CVE-2026-46109, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.
Publication date: 2026-05-28
Last updated on: 2026-06-24
Assigner: kernel.org
Description
Description
In the Linux kernel, the following vulnerability has been resolved:
usb: ulpi: fix memory leak on ulpi_register() error paths
Commit 01af542392b5 ("usb: ulpi: fix double free in
ulpi_register_interface() error path") removed kfree(ulpi) from
ulpi_register_interface() to fix a double-free when device_register()
fails.
But when ulpi_of_register() or ulpi_read_id() fail before
device_register() is called, the ulpi allocation is leaked.
Add kfree(ulpi) on both error paths to properly clean up the allocation.
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.1 |
| linux | linux_kernel | 7.1 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | From 6.1.168 (inc) to 6.1.175 (exc) |
| linux | linux_kernel | From 7.0.1 (inc) to 7.0.7 (exc) |
| linux | linux_kernel | From 6.19.12 (inc) to 7.0 (exc) |
| linux | linux_kernel | From 5.10.253 (inc) to 5.10.258 (exc) |
| linux | linux_kernel | From 5.15.203 (inc) to 5.15.209 (exc) |
| linux | linux_kernel | From 6.12.81 (inc) to 6.12.88 (exc) |
| linux | linux_kernel | From 6.18.22 (inc) to 6.18.30 (exc) |
| linux | linux_kernel | From 6.6.134 (inc) to 6.6.140 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-401 | The product does not sufficiently track and release allocated memory after it has been used, making the memory unavailable for reallocation and reuse. |