CVE-2026-53157
Received Received - Intake
Use-After-Free in Linux Kernel Phonet Device

Publication date: 2026-06-25

Last updated on: 2026-06-25

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: net: phonet: free phonet_device after RCU grace period phonet_device_destroy() removes a phonet_device from the per-net device list with list_del_rcu(), but frees it immediately. RCU readers walking the same list can still hold a pointer to the object after it has been removed, leading to a slab-use-after-free. Use kfree_rcu(), matching the lifetime rule already used by phonet_address_del() for the same object type.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-25
Last Modified
2026-06-25
Generated
2026-06-25
AI Q&A
2026-06-25
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

This vulnerability exists in the Linux kernel's phonet network subsystem. The function phonet_device_destroy() removes a phonet_device from a device list using list_del_rcu(), which is designed for safe removal in concurrent environments. However, it frees the phonet_device object immediately after removal instead of waiting for the RCU (Read-Copy-Update) grace period to expire. Because RCU readers may still hold pointers to this object during the grace period, this leads to a use-after-free condition where the kernel may access memory that has already been freed.

The fix involves using kfree_rcu() to defer freeing the object until after the RCU grace period, ensuring that no readers hold references to the freed memory.

Impact Analysis

This vulnerability can lead to a use-after-free condition in the Linux kernel, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code with kernel privileges. Such memory corruption issues can compromise the security and reliability of systems running vulnerable versions of the Linux kernel.

Mitigation Strategies

The vulnerability is resolved by ensuring that the phonet_device is freed only after the RCU grace period using kfree_rcu(), instead of being freed immediately after removal with list_del_rcu().

To mitigate this vulnerability, you should update your Linux kernel to a version that includes this fix where phonet_device_destroy() uses kfree_rcu() to free the device safely.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53157. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart