PatchSiren cyber security CVE debrief
CVE-2026-45942 Linux CVE debrief
A race condition in the Linux kernel's ext4 filesystem between page migration and bitmap modification can cause bitmap inconsistency reports and potential data corruption. The vulnerability exists in the ext4_mb_load_buddy() fast path, which only increments folio reference counts without acquiring the folio lock, allowing concurrent folio migration to interfere with bitmap operations. The fix modifies load_buddy to check folio lock status and use the slow path (which acquires the lock) when the folio is locked, closing the concurrency window. This also resolves a false positive corruption error when DOUBLE_CHECK macro is enabled.
- Vendor
- Linux
- Product
- Unknown
- CVSS
- Unknown
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-05-27
- Original CVE updated
- 2026-05-27
- Advisory published
- 2026-05-27
- Advisory updated
- 2026-05-27
Who should care
Linux system administrators running ext4 filesystems, particularly those using huge-page workloads or memory-intensive applications; kernel maintainers and distribution security teams responsible for stable kernel updates; organizations with high-availability storage systems where filesystem integrity is critical
Technical summary
The ext4 filesystem's multiblock allocator (mballoc) contains a race condition in ext4_mb_load_buddy() where the fast path increments folio reference counts without holding the folio lock. This allows concurrent page migration (which acquires folio_lock) to race with bitmap modification operations. The vulnerability manifests as bitmap inconsistency errors (e.g., 'group 350, 8179 free clusters as per group info. But got 8192 blocks') and can lead to filesystem corruption. The fix adds a folio lock status check to force the slow path when the folio is locked, ensuring proper synchronization. A secondary issue with the DOUBLE_CHECK macro producing false positive corruption reports is also resolved by this change.
Defensive priority
high
Recommended defensive actions
- Apply kernel updates containing the referenced stable commits to affected systems
- Monitor ext4 filesystem logs for bitmap inconsistency reports indicating potential exploitation
- Consider disabling huge-page workloads on critical ext4 filesystems until patched
- Enable filesystem integrity monitoring to detect anomalous bitmap state changes
- Review kernel crash dumps for ext4_mb_complex_scan_group errors with mismatched free cluster counts
Evidence notes
The vulnerability was resolved in the Linux kernel ext4 subsystem. Multiple stable kernel commits address this issue across supported branches. The race condition was observed during stress tests with mixed huge-page workloads, demonstrating practical exploitability despite the narrow timing window.
Official resources
-
CVE-2026-45942 CVE record
CVE.org
-
CVE-2026-45942 NVD detail
NVD
-
Source item URL
nvd_modified
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
2026-05-27