You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
cve 2025 40139
About this tag
CVE-2025-40139 is a vulnerability in the Linux kernel's SMC (Shared Memory Communications) networking code, specifically a use-after-free issue in the smc_clc_prfx_set function. The flaw occurs due to a race condition where a device pointer can be freed while still being accessed outside RCU or RTNL contexts. The fix involves using __sk_dst_get and dst_dev_rcu under an RCU read-lock to safely access the destination cache. This tag covers discussions about the vulnerability, its background, and the kernel patch that resolves it. While the tag is relevant to Linux kernel security, it may also be of interest to Windows users running virtualized or cross-platform environments that rely on SMC.
The Linux kernel received a targeted fix addressing a race-related use‑after‑free in the SMC (Shared Memory Communications) networking code: smc_clc_prfx_set now uses __sk_dst_get and dst_dev_rcu under an RCU read‑lock to prevent dereferencing a freed device pointer when the function runs...