n the Linux kernel, the following vulnerability has been resolved: cachefiles: wait for ondemand_object_worker to finish when dropping object When queuing ondemand_object_worker() to re-open the object, cachefiles_object is not pinned. The cachefiles_object may be freed when the pending read request is completed intentionally and the related erofs is umounted. If ondemand_object_worker() runs after the object is freed, it will incur use-after-free problem as shown below. process A processs B process C process D cachefiles_ondemand_send_req() // send a read req X // wait for its completion // close ondemand fd cachefiles_ondemand_fd_release() // set object as CLOSE cachefiles_ondemand_daemon_read() // set object as REOPENING queue_work(fscache_wq, &info->ondemand_work) // close /dev/cachefiles cachefiles_daemon_release cachefiles_flush_reqs complete(&req->done) // read req X is completed // umount the erofs fs cachefiles_put_object() // object will be freed cachefiles_ondemand_deinit_obj_info() kmem_cache_free(object) // both info and object are freed ondemand_object_worker() When dropping an object, it is no longer necessary to reopen the object, so use cancel_work_sync() to cancel or wait for ondemand_object_worker() to finish.
Configuration 1 (hide)
|
03 Nov 2025, 22:17
| Type | Values Removed | Values Added |
|---|---|---|
| References |
|
25 Sep 2025, 19:49
| Type | Values Removed | Values Added |
|---|---|---|
| CVSS |
v2 : v3 : |
v2 : unknown
v3 : 7.8 |
| CPE | cpe:2.3:o:linux:linux_kernel:6.10:rc1:*:*:*:*:*:* cpe:2.3:o:linux:linux_kernel:6.10:rc7:*:*:*:*:*:* cpe:2.3:o:linux:linux_kernel:6.10:rc4:*:*:*:*:*:* cpe:2.3:o:linux:linux_kernel:6.10:rc2:*:*:*:*:*:* cpe:2.3:o:linux:linux_kernel:6.10:rc6:*:*:*:*:*:* cpe:2.3:o:linux:linux_kernel:6.10:rc5:*:*:*:*:*:* cpe:2.3:o:linux:linux_kernel:6.10:rc3:*:*:*:*:*:* cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* |
|
| First Time |
Linux
Linux linux Kernel |
|
| References | () https://git.kernel.org/stable/c/12e009d60852f7bce0afc373ca0b320f14150418 - Patch | |
| References | () https://git.kernel.org/stable/c/b26525b2183632f16a3a4108fe6a4bfa8afac6ed - Patch | |
| References | () https://git.kernel.org/stable/c/d3179bae72b1b5e555ba839d6d9f40a350a4d78a - Patch | |
| References | () https://git.kernel.org/stable/c/ec9289369259d982e735a71437e32e6b4035290c - Patch | |
| CWE | CWE-416 |
21 Nov 2024, 09:32
| Type | Values Removed | Values Added |
|---|---|---|
| References | () https://git.kernel.org/stable/c/12e009d60852f7bce0afc373ca0b320f14150418 - | |
| References | () https://git.kernel.org/stable/c/b26525b2183632f16a3a4108fe6a4bfa8afac6ed - | |
| References | () https://git.kernel.org/stable/c/d3179bae72b1b5e555ba839d6d9f40a350a4d78a - | |
| References | () https://git.kernel.org/stable/c/ec9289369259d982e735a71437e32e6b4035290c - |
29 Jul 2024, 16:21
| Type | Values Removed | Values Added |
|---|---|---|
| New CVE |
Published : 2024-07-29 15:15
Updated : 2025-11-03 22:17
NVD link : CVE-2024-41051
Mitre link : CVE-2024-41051
CVE.ORG link : CVE-2024-41051
JSON object : View
Use After Free