CVE-2026-46015
Published: May 27, 2026
Modified: Jun 1, 2026
CVSS v3.1
7.8
Description
In the Linux kernel, the following vulnerability has been resolved: tcp: call sk_data_ready() after listener migration When inet_csk_listen_stop() migrates an established child socket from a closing listener to another socket in the same SO_REUSEPORT group, the target listener gets a new accept-queue entry via inet_csk_reqsk_queue_add(), but that path never notifies the target listener's waiters. A nonblocking accept() still works because it checks the queue directly, but poll()/epoll_wait() waiters and blocking accept() callers can also remain asleep indefinitely. Call READ_ONCE(nsk->sk_data_ready)(nsk) after a successful migration in inet_csk_listen_stop(). However, after inet_csk_reqsk_queue_add() succeeds, the ref acquired in reuseport_migrate_sock() is effectively transferred to nreq->rsk_listener. Another CPU can then dequeue nreq via accept() or listener shutdown, hit reqsk_put(), and drop that listener ref. Since listeners are SOCK_RCU_FREE, wrap the post-queue_add() dereferences of nsk in rcu_read_lock()/rcu_read_unlock(), which also covers the existing sock_net(nsk) access in that path. The reqsk_timer_handler() path does not need the same changes for two reasons: half-open requests become readable only after the final ACK, where tcp_child_process() already wakes the listener; and once nreq is visible via inet_ehash_insert(), the success path no longer touches nsk directly.
| Vendor | Product | Versions |
|---|---|---|
Linux | Linux | affected 54b92e84193749c9968aff2dd46e3b0f42643e18 - < 7aa7933a5607b1e5b56f322d17265c1d0ea02c51affected 54b92e84193749c9968aff2dd46e3b0f42643e18 - < 14e9bb6eba8f59dcc637702e4744ae5e30660d76affected 54b92e84193749c9968aff2dd46e3b0f42643e18 - < ab5fdcd535645f6dbe6e9e21d96a08d141e88b4baffected 54b92e84193749c9968aff2dd46e3b0f42643e18 - < bebd058ef40c67a81fe6d9ee8beaa4ede90e0704affected 54b92e84193749c9968aff2dd46e3b0f42643e18 - < 83bb57635d7cbafde32f865b577ecfd969f02337+2 more versions |
Linux | Linux | affected 5.14unaffected 0 - < 5.14unaffected 5.15.209 - <= 5.15.*unaffected 6.1.175 - <= 6.1.*unaffected 6.6.140 - <= 6.6.*+4 more versions |
CVSS v3.1 Details
CVSS v3.1 Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Attack Vector
Attack Complexity
Privileges Required
User Interaction
Scope
Confidentiality
Integrity
Availability
References
Security Training
Train your team to recognize and prevent security threats with our comprehensive security awareness program.
Start TrainingVulnerability Scanning
Discover vulnerabilities in your applications and infrastructure before attackers do.
Scan Now