First published: Wed Apr 17 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: f2fs: fix to truncate meta inode pages forcely Below race case can cause data corruption: Thread A GC thread - gc_data_segment - ra_data_block - locked meta_inode page - f2fs_inplace_write_data - invalidate_mapping_pages : fail to invalidate meta_inode page due to lock failure or dirty|writeback status - f2fs_submit_page_bio : write last dirty data to old blkaddr - move_data_block - load old data from meta_inode page - f2fs_submit_page_write : write old data to new blkaddr Because invalidate_mapping_pages() will skip invalidating page which has unclear status including locked, dirty, writeback and so on, so we need to use truncate_inode_pages_range() instead of invalidate_mapping_pages() to make sure meta_inode page will be dropped.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
debian/linux | <=5.10.223-1<=5.10.226-1<=6.1.123-1<=6.1.119-1 | 6.12.11-1 6.12.12-1 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2024-26869 is classified as a moderate severity vulnerability in the Linux kernel.
To mitigate CVE-2024-26869, update your Linux kernel to version 6.12.11-1, 6.12.12-1, or a later version.
CVE-2024-26869 affects users running specific versions of the Linux kernel, including 5.10.223-1, 5.10.226-1, 6.1.119-1, and 6.1.123-1.
CVE-2024-26869 is a race condition vulnerability that can lead to data corruption in the f2fs filesystem.
While CVE-2024-26869 can cause data corruption, its exploitation requires specific conditions within the Linux kernel's f2fs component.