CVE-2025-68337
Kernel BUG Trigger in Linux jbd2 Journal on Filesystem Corruption
Publication date: 2025-12-22
Last updated on: 2025-12-22
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.18.0-rc1-next |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability occurs in the Linux kernel's jbd2 journaling system, specifically in the function jbd2_journal_get_create_access(). When the file system is corrupted, certain inconsistencies in file system data (such as an unset block bitmap for a referenced block) can cause the system to trigger a BUG_ON condition, leading to a kernel crash. The issue arises because the code uses J_ASSERT() which assumes ideal conditions, but in corrupted or abnormal scenarios, this assumption fails and causes a crash. The fix avoids triggering BUG_ON and instead triggers a JBD abort to handle the error more gracefully.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to crash (kernel BUG) when the file system is corrupted and certain error conditions occur. This can lead to system instability, unexpected reboots, or data loss due to the kernel panic triggered by the BUG_ON condition in the journaling code.