CVE-2026-74692
In the Linux kernel, the following vulnerability has been resolved: net/smc: fix TOCTOU race between smc_listen_out() and listener close smc_listen_out() reads lsmc->sk.sk_state without the listener lock, then acquires lock_sock_nested() only after the check passes. This opens a window where smc_close_active() can transition the listener to SMC_CLOSED, call smc_close_cleanup_listen() to drain the accept queue, and release the lock, all between the lockless read and the delayed lock acquisition: smc_listen_work (smc_hs_wq) smc_close_active() ------------------------------- ------------------------- release_sock(child) if (sk_state == SMC_LISTEN) TRUE lock_sock(listener) sk_state = SMC_CLOSED smc_close_cleanup_listen() release_sock(listener) flush_work(tcp_listen_work) lock_sock_nested(listener) smc_accept_enqueue(listener, child) /* child enqueued on dead listener */ smc_close_active() flushes only tcp_listen_work. Work items already dispatched onto smc_hs_wq for the CLC handshake continue running unguarded. smc_accept_enqueue() takes a sock_hold() on the child that is never released, so the child smc_sock, its clcsock, and the reference all leak. A remote peer that opens TCP connections while the server calls close() can exhaust kernel memory. Move lock_sock_nested() to before the sk_state check so that the test and the enqueue are atomic under the listener lock.
Affected versions
Linux kernel versions
4.19.299,
5.1
and later are affected. Fixed in
5.15.216,
6.1.183,
6.6.152,
6.12.104,
6.18.45,
7.1.9,
7.2
and their respective stable series.
References
7 totalFrequently asked questions
-
What is CVE-2026-74692?
CVE-2026-74692 is a unscored severity Linux kernel vulnerability . It affects Linux kernel versions from 4.19.299 onward and has been patched in 5.15.216, 6.1.183, 6.6.152 and others. CVE-2026-74692 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.
-
Is there a patch available for CVE-2026-74692?
Yes. CVE-2026-74692 has been patched. Fixed versions include 5.15.216, 6.1.183, 6.6.152 and others. If you are running Linux kernel 4.19.299 or later up to the fix versions, apply the relevant patch for your kernel branch.
-
Is CVE-2026-74692 actively exploited?
No. CVE-2026-74692 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.