First published: Sat Aug 17 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: ext4: fix infinite loop when replaying fast_commit When doing fast_commit replay an infinite loop may occur due to an uninitialized extent_status struct. ext4_ext_determine_insert_hole() does not detect the replay and calls ext4_es_find_extent_range(), which will return immediately without initializing the 'es' variable. Because 'es' contains garbage, an integer overflow may happen causing an infinite loop in this function, easily reproducible using fstest generic/039. This commit fixes this issue by unconditionally initializing the structure in function ext4_es_find_extent_range(). Thanks to Zhang Yi, for figuring out the real problem!
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.10-1 6.12.11-1 |
debian/linux-6.1 | 6.1.119-1~deb11u1 | |
Linux Kernel | >=5.10<5.10.224 | |
Linux Kernel | >=5.11<5.15.165 | |
Linux Kernel | >=5.16<6.1.103 | |
Linux Kernel | >=6.2<6.6.44 | |
Linux Kernel | >=6.7<6.10.3 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
The severity of CVE-2024-43828 is classified as medium, as it can lead to an infinite loop during the fast_commit replay process.
To fix CVE-2024-43828, users should upgrade to the affected remediated versions of the Linux kernel as specified in the vulnerability report.
CVE-2024-43828 affects Linux kernel versions up to 5.10.223-1, and various versions in the 5.11 to 6.6.x ranges.
CVE-2024-43828 is caused by an infinite loop that occurs due to an uninitialized extent_status struct during the fast_commit replay process.
Yes, patches for CVE-2024-43828 are included in specific updated versions of the Linux kernel that address the looping issue.