CVE-2026-43242
Memory Leak in Linux Kernel socinfo Driver
Publication date: 2026-05-06
Last updated on: 2026-05-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| ti | k3-socinfo | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is related to the Linux kernel, specifically in the soc: ti: k3-socinfo component. During the probe process, a memory-mapped I/O (mmio) regmap is allocated but never freed if the probe fails. This causes a resource leak because the allocated regmap remains in memory instead of being released.
The fix involves switching to a device-managed allocator that automatically releases the regmap on probe failures (such as probe deferral) and when the driver is unbound, preventing the leak.
How can this vulnerability impact me? :
This vulnerability can lead to resource leaks in the Linux kernel, specifically memory leaks related to the regmap allocation during device probing. Over time, this could cause increased memory usage and potentially degrade system performance or stability if the leaked resources accumulate.