CVE-2026-43066
Memory Leak in Linux Kernel ext4 Filesystem
Publication date: 2026-05-05
Last updated on: 2026-05-05
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | 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 ext4 filesystem code, specifically in the function ext4_fc_replay_inode(). During error handling, the function fails to release a resource called iloc.bh properly in several error paths. This resource should be released using brelse(), but some error conditions cause the code to skip this release, leading to a resource leak.
The issue was fixed by adding an additional label in the code to ensure iloc.bh is always released before exiting the function, and by making the function propagate errors correctly instead of always returning success.
How can this vulnerability impact me? :
The vulnerability causes a resource leak in the ext4 filesystem code of the Linux kernel. This could potentially lead to increased memory usage or resource exhaustion over time if the error paths are triggered frequently.
While the description does not specify direct security impacts such as privilege escalation or data corruption, resource leaks can degrade system performance or stability, which might indirectly affect system reliability.