CVE Catalog

CVE-2025-38212

HighCVSS 7.8
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.16%

5th percentile - higher than 5% of all known CVEs

Summary

A use-after-free vulnerability was discovered in the Linux kernel's IPC mechanism. The idr_for_each() function was not protected by an RCU read-critical region, potentially allowing reading of already freed memory while processing radix_tree_node entries.

Risk Assessment

An attacker could exploit this vulnerability to gain unauthorized access to kernel memory, potentially leading to privilege escalation or information disclosure.

Recommendation

Immediately update the Linux kernel to a version that includes the fix, which adds RCU protection around the idr_for_each() call in shm_destroy_orphaned().

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: ipc: fix to protect IPCS lookups using RCU syzbot reported that it discovered a use-after-free vulnerability, [0] [0]: https://lore.kernel.org/all/[email protected]/ idr_for_each() is protected by rwsem, but this is not enough. If it is not protected by RCU read-critical region, when idr_for_each() calls radix_tree_node_free() through call_rcu() to free the radix_tree_node structure, the node will be freed immediately, and when reading the next node in radix_tree_for_each_slot(), the already freed memory may be read. Therefore, we need to add code to make sure that idr_for_each() is protected within the RCU read-critical region when we call it in shm_destroy_orphaned().

Vulnerability data from NVD (NIST) · CISA KEV · EPSS