CVE-2026-43295
Linux kernel Memory Leak Fix in RapidIO
Publication date: 2026-05-08
Last updated on: 2026-05-08
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| rapidio | linux_kernel | * |
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's rapidio subsystem. It involves improper memory management where the function rio_free_net() was used to free memory allocated for a network structure in rio_scan_alloc_net(). When the allocation of idtab fails, the network structure is not yet registered, so using rio_free_net() is incorrect. The fix replaces rio_free_net() with kfree(), which properly releases the memory, and sets the mport->net pointer to NULL to avoid a dangling pointer.
How can this vulnerability impact me? :
This vulnerability can lead to improper memory release and dangling pointers in the rapidio subsystem of the Linux kernel. Such issues may cause memory corruption or instability in the kernel, potentially leading to crashes or unpredictable behavior of systems using rapidio. However, the exact impact depends on whether the rapidio subsystem is in use and how the failure scenario is triggered.