CVE Database
/

CVE-2024-49983

Back to search

CVE-2024-49983

Published: Oct 21, 2024

Modified: May 11, 2026

PUBLISHED

Description

In the Linux kernel, the following vulnerability has been resolved: ext4: drop ppath from ext4_ext_replay_update_ex() to avoid double-free When calling ext4_force_split_extent_at() in ext4_ext_replay_update_ex(), the 'ppath' is updated but it is the 'path' that is freed, thus potentially triggering a double-free in the following process: ext4_ext_replay_update_ex ppath = path ext4_force_split_extent_at(&ppath) ext4_split_extent_at ext4_ext_insert_extent ext4_ext_create_new_leaf ext4_ext_grow_indepth ext4_find_extent if (depth > path[0].p_maxdepth) kfree(path) ---> path First freed *orig_path = path = NULL ---> null ppath kfree(path) ---> path double-free !!! So drop the unnecessary ppath and use path directly to avoid this problem. And use ext4_find_extent() directly to update path, avoiding unnecessary memory allocation and freeing. Also, propagate the error returned by ext4_find_extent() instead of using strange error codes.

VendorProductVersions

Linux

Linux

affected
8016e29f4362e285f0f7e38fadc61a5b7bdfdfa2 - < 8c26d9e53e5fbacda0732a577e97c5a5b7882aaf
affected
8016e29f4362e285f0f7e38fadc61a5b7bdfdfa2 - < a34bed978364114390162c27e50fca50791c568d
affected
8016e29f4362e285f0f7e38fadc61a5b7bdfdfa2 - < 6367d3f04c69e2b8770b8137bd800e0784b0abbc
affected
8016e29f4362e285f0f7e38fadc61a5b7bdfdfa2 - < 1b558006d98b7b0b730027be0ee98973dd10ee0d
affected
8016e29f4362e285f0f7e38fadc61a5b7bdfdfa2 - < 3ff710662e8d86a63a39b334e9ca0cb10e5c14b0

+2 more versions

Linux

Linux

affected
5.10
unaffected
0 - < 5.10
unaffected
5.10.227 - <= 5.10.*
unaffected
5.15.168 - <= 5.15.*
unaffected
6.1.113 - <= 6.1.*

+4 more versions

Security Training

Train your team to recognize and prevent security threats with our comprehensive security awareness program.

Start Training

Vulnerability Scanning

Discover vulnerabilities in your applications and infrastructure before attackers do.

Scan Now