CVE-2023-53813
BaseFortify
Publication date: 2025-12-09
Last updated on: 2025-12-09
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 a bug in the Linux kernel's ext4 filesystem related to how it traverses a red-black tree (rbtree) when allocating preallocations (PA) for files. The issue occurs because the traversal can skip some entries if a PA is marked deleted concurrently, leading to a BUG_ON() error. This happens when the system misses a PA that could satisfy an allocation request and instead tries to create a new overlapping PA. The fix involves a careful traversal method to find the correct adjacent PA, even if some are deleted, preventing overlaps and potential errors.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel ext4 filesystem to hit a BUG_ON() error during file allocation, which may lead to system instability or crashes. It can result in incorrect handling of file preallocations, potentially causing data corruption or filesystem errors due to overlapping allocations.