5.5
MEDIUM CVSS 3.1
CVE-2024-35807
ext4: fix corruption during on-line resize
Description

In the Linux kernel, the following vulnerability has been resolved: ext4: fix corruption during on-line resize We observed a corruption during on-line resize of a file system that is larger than 16 TiB with 4k block size. With having more then 2^32 blocks resize_inode is turned off by default by mke2fs. The issue can be reproduced on a smaller file system for convenience by explicitly turning off resize_inode. An on-line resize across an 8 GiB boundary (the size of a meta block group in this setup) then leads to a corruption: dev=/dev/<some_dev> # should be >= 16 GiB mkdir -p /corruption /sbin/mke2fs -t ext4 -b 4096 -O ^resize_inode $dev $((2 * 2**21 - 2**15)) mount -t ext4 $dev /corruption dd if=/dev/zero bs=4096 of=/corruption/test count=$((2*2**21 - 4*2**15)) sha1sum /corruption/test # 79d2658b39dcfd77274e435b0934028adafaab11 /corruption/test /sbin/resize2fs $dev $((2*2**21)) # drop page cache to force reload the block from disk echo 1 > /proc/sys/vm/drop_caches sha1sum /corruption/test # 3c2abc63cbf1a94c9e6977e0fbd72cd832c4d5c3 /corruption/test 2^21 = 2^15*2^6 equals 8 GiB whereof 2^15 is the number of blocks per block group and 2^6 are the number of block groups that make a meta block group. The last checksum might be different depending on how the file is laid out across the physical blocks. The actual corruption occurs at physical block 63*2^15 = 2064384 which would be the location of the backup of the meta block group's block descriptor. During the on-line resize the file system will be converted to meta_bg starting at s_first_meta_bg which is 2 in the example - meaning all block groups after 16 GiB. However, in ext4_flex_group_add we might add block groups that are not part of the first meta block group yet. In the reproducer we achieved this by substracting the size of a whole block group from the point where the meta block group would start. This must be considered when updating the backup block group descriptors to follow the non-meta_bg layout. The fix is to add a test whether the group to add is already part of the meta block group or not.

INFO

Published Date :

May 17, 2024, 2:15 p.m.

Last Modified :

Dec. 17, 2025, 7:36 p.m.

Remotely Exploit :

No

Source :

416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Products

The following products are affected by CVE-2024-35807 vulnerability. Even if cvefeed.io is aware of the exact versions of the products that are affected, the information is not represented in the table below.

ID Vendor Product Action
1 Linux linux_kernel
1 Debian debian_linux
CVSS Scores
The Common Vulnerability Scoring System is a standardized framework for assessing the severity of vulnerabilities in software and systems. We collect and displays CVSS scores from various sources for each CVE.
Score Version Severity Vector Exploitability Score Impact Score Source
CVSS 3.1 MEDIUM [email protected]
Solution
A vulnerability in the Linux kernel requires updating the affected packages to resolve it.
  • Update the affected Linux kernel packages.
  • Reboot the system after the update.
References to Advisories, Solutions, and Tools

Here, you will find a curated list of external links that provide in-depth information, practical solutions, and valuable tools related to CVE-2024-35807.

URL Resource
https://git.kernel.org/stable/c/239c669edb2bffa1aa2612519b1d438ab35d6be6 Patch
https://git.kernel.org/stable/c/37b6a3ba793bbbae057f5b991970ebcc52cb3db5 Patch
https://git.kernel.org/stable/c/722d2c01b8b108f8283d1b7222209d5b2a5aa7bd Patch
https://git.kernel.org/stable/c/75cc31c2e7193b69f5d25650bda5bb42ed92f8a1 Patch
https://git.kernel.org/stable/c/a6b3bfe176e8a5b05ec4447404e412c2a3fc92cc Patch
https://git.kernel.org/stable/c/b461910af8ba3bed80f48c2bf852686d05c6fc5c Patch
https://git.kernel.org/stable/c/e8e8b197317228b5089ed9e7802dadf3ccaa027a Patch
https://git.kernel.org/stable/c/ee4e9c1976147a850f6085a13fca95bcaa00d84c Patch
https://git.kernel.org/stable/c/fb1088d51bbaa0faec5a55d4f5818a9ab79e24df Patch
https://git.kernel.org/stable/c/239c669edb2bffa1aa2612519b1d438ab35d6be6 Patch
https://git.kernel.org/stable/c/37b6a3ba793bbbae057f5b991970ebcc52cb3db5 Patch
https://git.kernel.org/stable/c/722d2c01b8b108f8283d1b7222209d5b2a5aa7bd Patch
https://git.kernel.org/stable/c/75cc31c2e7193b69f5d25650bda5bb42ed92f8a1 Patch
https://git.kernel.org/stable/c/a6b3bfe176e8a5b05ec4447404e412c2a3fc92cc Patch
https://git.kernel.org/stable/c/b461910af8ba3bed80f48c2bf852686d05c6fc5c Patch
https://git.kernel.org/stable/c/e8e8b197317228b5089ed9e7802dadf3ccaa027a Patch
https://git.kernel.org/stable/c/ee4e9c1976147a850f6085a13fca95bcaa00d84c Patch
https://git.kernel.org/stable/c/fb1088d51bbaa0faec5a55d4f5818a9ab79e24df Patch
https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html Third Party Advisory
https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html Third Party Advisory
CWE - Common Weakness Enumeration

While CVE identifies specific instances of vulnerabilities, CWE categorizes the common flaws or weaknesses that can lead to vulnerabilities. CVE-2024-35807 is associated with the following CWEs:

Common Attack Pattern Enumeration and Classification (CAPEC)

Common Attack Pattern Enumeration and Classification (CAPEC) stores attack patterns, which are descriptions of the common attributes and approaches employed by adversaries to exploit the CVE-2024-35807 weaknesses.

We scan GitHub repositories to detect new proof-of-concept exploits. Following list is a collection of public exploits and proof-of-concepts, which have been published on GitHub (sorted by the most recently updated).

Results are limited to the first 15 repositories due to potential performance issues.

The following list is the news that have been mention CVE-2024-35807 vulnerability anywhere in the article.

The following table lists the changes that have been made to the CVE-2024-35807 vulnerability over time.

Vulnerability history details can be useful for understanding the evolution of a vulnerability, and for identifying the most recent changes that may impact the vulnerability's severity, exploitability, or other characteristics.

  • Initial Analysis by [email protected]

    Dec. 17, 2025

    Action Type Old Value New Value
    Added CVSS V3.1 AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
    Added CWE NVD-CWE-noinfo
    Added CPE Configuration OR *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 5.5 up to (excluding) 5.10.215 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 6.2 up to (excluding) 6.6.24 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 6.7 up to (excluding) 6.7.12 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 5.11 up to (excluding) 5.15.154 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 5.16 up to (excluding) 6.1.84 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 6.8 up to (excluding) 6.8.3 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 4.20 up to (excluding) 5.4.274 *cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* versions from (including) 3.7 up to (excluding) 4.19.312
    Added CPE Configuration OR *cpe:2.3:o:debian:debian_linux:10.0:*:*:*:*:*:*:*
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/239c669edb2bffa1aa2612519b1d438ab35d6be6 Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/37b6a3ba793bbbae057f5b991970ebcc52cb3db5 Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/722d2c01b8b108f8283d1b7222209d5b2a5aa7bd Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/75cc31c2e7193b69f5d25650bda5bb42ed92f8a1 Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/a6b3bfe176e8a5b05ec4447404e412c2a3fc92cc Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/b461910af8ba3bed80f48c2bf852686d05c6fc5c Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/e8e8b197317228b5089ed9e7802dadf3ccaa027a Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/ee4e9c1976147a850f6085a13fca95bcaa00d84c Types: Patch
    Added Reference Type kernel.org: https://git.kernel.org/stable/c/fb1088d51bbaa0faec5a55d4f5818a9ab79e24df Types: Patch
    Added Reference Type CVE: https://git.kernel.org/stable/c/239c669edb2bffa1aa2612519b1d438ab35d6be6 Types: Patch
    Added Reference Type CVE: https://git.kernel.org/stable/c/ee4e9c1976147a850f6085a13fca95bcaa00d84c Types: Patch
    Added Reference Type CVE: https://git.kernel.org/stable/c/e8e8b197317228b5089ed9e7802dadf3ccaa027a Types: Patch
    Added Reference Type CVE: https://git.kernel.org/stable/c/fb1088d51bbaa0faec5a55d4f5818a9ab79e24df Types: Patch
    Added Reference Type CVE: https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html Types: Third Party Advisory
    Added Reference Type CVE: https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html Types: Third Party Advisory
    Added Reference Type CVE: https://git.kernel.org/stable/c/b461910af8ba3bed80f48c2bf852686d05c6fc5c Types: Patch
    Added Reference Type CVE: https://git.kernel.org/stable/c/a6b3bfe176e8a5b05ec4447404e412c2a3fc92cc Types: Patch
    Added Reference Type CVE: https://git.kernel.org/stable/c/75cc31c2e7193b69f5d25650bda5bb42ed92f8a1 Types: Patch
    Added Reference Type CVE: https://git.kernel.org/stable/c/722d2c01b8b108f8283d1b7222209d5b2a5aa7bd Types: Patch
    Added Reference Type CVE: https://git.kernel.org/stable/c/37b6a3ba793bbbae057f5b991970ebcc52cb3db5 Types: Patch
  • CVE Modified by af854a3a-2127-422b-91ae-364da2661108

    Nov. 21, 2024

    Action Type Old Value New Value
    Added Reference https://git.kernel.org/stable/c/239c669edb2bffa1aa2612519b1d438ab35d6be6
    Added Reference https://git.kernel.org/stable/c/37b6a3ba793bbbae057f5b991970ebcc52cb3db5
    Added Reference https://git.kernel.org/stable/c/722d2c01b8b108f8283d1b7222209d5b2a5aa7bd
    Added Reference https://git.kernel.org/stable/c/75cc31c2e7193b69f5d25650bda5bb42ed92f8a1
    Added Reference https://git.kernel.org/stable/c/a6b3bfe176e8a5b05ec4447404e412c2a3fc92cc
    Added Reference https://git.kernel.org/stable/c/b461910af8ba3bed80f48c2bf852686d05c6fc5c
    Added Reference https://git.kernel.org/stable/c/e8e8b197317228b5089ed9e7802dadf3ccaa027a
    Added Reference https://git.kernel.org/stable/c/ee4e9c1976147a850f6085a13fca95bcaa00d84c
    Added Reference https://git.kernel.org/stable/c/fb1088d51bbaa0faec5a55d4f5818a9ab79e24df
    Added Reference https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html
    Added Reference https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
  • CVE Modified by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    Nov. 05, 2024

    Action Type Old Value New Value
    Removed Reference kernel.org https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html
    Removed Reference kernel.org https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html
  • CVE Modified by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    Jun. 27, 2024

    Action Type Old Value New Value
    Added Reference kernel.org https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html [No types assigned]
  • CVE Modified by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    Jun. 25, 2024

    Action Type Old Value New Value
    Added Reference kernel.org https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html [No types assigned]
  • CVE Modified by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    May. 29, 2024

    Action Type Old Value New Value
  • CVE Received by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    May. 17, 2024

    Action Type Old Value New Value
    Added Description In the Linux kernel, the following vulnerability has been resolved: ext4: fix corruption during on-line resize We observed a corruption during on-line resize of a file system that is larger than 16 TiB with 4k block size. With having more then 2^32 blocks resize_inode is turned off by default by mke2fs. The issue can be reproduced on a smaller file system for convenience by explicitly turning off resize_inode. An on-line resize across an 8 GiB boundary (the size of a meta block group in this setup) then leads to a corruption: dev=/dev/<some_dev> # should be >= 16 GiB mkdir -p /corruption /sbin/mke2fs -t ext4 -b 4096 -O ^resize_inode $dev $((2 * 2**21 - 2**15)) mount -t ext4 $dev /corruption dd if=/dev/zero bs=4096 of=/corruption/test count=$((2*2**21 - 4*2**15)) sha1sum /corruption/test # 79d2658b39dcfd77274e435b0934028adafaab11 /corruption/test /sbin/resize2fs $dev $((2*2**21)) # drop page cache to force reload the block from disk echo 1 > /proc/sys/vm/drop_caches sha1sum /corruption/test # 3c2abc63cbf1a94c9e6977e0fbd72cd832c4d5c3 /corruption/test 2^21 = 2^15*2^6 equals 8 GiB whereof 2^15 is the number of blocks per block group and 2^6 are the number of block groups that make a meta block group. The last checksum might be different depending on how the file is laid out across the physical blocks. The actual corruption occurs at physical block 63*2^15 = 2064384 which would be the location of the backup of the meta block group's block descriptor. During the on-line resize the file system will be converted to meta_bg starting at s_first_meta_bg which is 2 in the example - meaning all block groups after 16 GiB. However, in ext4_flex_group_add we might add block groups that are not part of the first meta block group yet. In the reproducer we achieved this by substracting the size of a whole block group from the point where the meta block group would start. This must be considered when updating the backup block group descriptors to follow the non-meta_bg layout. The fix is to add a test whether the group to add is already part of the meta block group or not.
    Added Reference kernel.org https://git.kernel.org/stable/c/75cc31c2e7193b69f5d25650bda5bb42ed92f8a1 [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/ee4e9c1976147a850f6085a13fca95bcaa00d84c [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/e8e8b197317228b5089ed9e7802dadf3ccaa027a [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/239c669edb2bffa1aa2612519b1d438ab35d6be6 [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/fb1088d51bbaa0faec5a55d4f5818a9ab79e24df [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/37b6a3ba793bbbae057f5b991970ebcc52cb3db5 [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/b461910af8ba3bed80f48c2bf852686d05c6fc5c [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/722d2c01b8b108f8283d1b7222209d5b2a5aa7bd [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/a6b3bfe176e8a5b05ec4447404e412c2a3fc92cc [No types assigned]
EPSS is a daily estimate of the probability of exploitation activity being observed over the next 30 days. Following chart shows the EPSS score history of the vulnerability.
Vulnerability Scoring Details
Base CVSS Score: 5.5
Attack Vector
Attack Complexity
Privileges Required
User Interaction
Scope
Confidentiality Impact
Integrity Impact
Availability Impact