CVE-2026-63978
Last modified
CVE-2026-63978 is a critical-severity vulnerability rated 9.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: net/handshake: Drain pending requests at net namespace exit The arguments to list_splice_init() in handshake_net_exit() are reversed. The call moves the local empty "requests" list onto hn->hn_requests, leaving the local list empty, so the subsequent drain loop runs zero iterations. EPSS estimates a 0.60% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: net/handshake: Drain pending requests at net namespace exit The arguments to list_splice_init() in handshake_net_exit() are reversed. The call moves the local empty "requests" list onto hn->hn_requests, leaving the local list empty, so the subsequent drain loop runs zero iterations. Pending handshake requests that had not yet been accepted are not torn down when the net namespace is destroyed; each one keeps a reference on a socket file and on the handshake_req allocation. Pass the source and destination in the documented order (list_splice_init(list, head) moves list onto head) so the pending list is transferred to the local scratch list and drained through handshake_complete(). Fixing the splice direction exposes a list-corruption race. After the splice each req->hr_list still has non-empty link pointers, threading the stack-local scratch list rather than hn_requests. A concurrent handshake_req_cancel() -- for example, from sunrpc's TLS timeout on a kernel socket whose netns reference was not taken -- finds the request through the rhashtable, calls remove_pending(), and sees !list_empty(&req->hr_list). __remove_pending_locked() then list_del_init()s an entry off the scratch list while the drain iterates, corrupting it. The same call arriving after the drain loop has run list_del() on an entry hits LIST_POISON instead. Have remove_pending() check HANDSHAKE_F_NET_DRAINING under hn_lock and report not-found when drain is in progress. The drain has already taken ownership; handshake_complete()'s existing test_and_set on HANDSHAKE_F_REQ_COMPLETED still arbitrates between drain and cancel for who calls the consumer's hp_done. Use list_del_init() rather than list_del() in the drain so req->hr_list does not carry LIST_POISON after drain releases the entry. The DRAINING guard in remove_pending() makes cancel return false, but cancel still falls through to test_and_set_bit on HANDSHAKE_F_REQ_COMPLETED and drops the request's hr_file reference. Without another pin, if that is the last reference, sk_destruct frees the request while it is still linked on the drain loop's local list. Pin each request's hr_file under hn_lock before releasing the list, and drop that drain pin after the loop finishes with the request.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 3b3009ea8abb713b022d94fba95ec270cf6e7eae, < 9ec20c9a5a04f2c3f1cf65d21f886d7aaa6189cd; >= 3b3009ea8abb713b022d94fba95ec270cf6e7eae, < 2bf24a7e190aae0ea47c78099938ae056c622e44; >= 3b3009ea8abb713b022d94fba95ec270cf6e7eae, < 8c35539db0ab0bfa1ea44efab00b053261a69469; >= 3b3009ea8abb713b022d94fba95ec270cf6e7eae, < ea5fe6a73ca57e5150b8a38b341aef2636eb72f0 |
| Linux | Linux | 6.4 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-63978?
How severe is CVE-2026-63978?
How do I fix CVE-2026-63978?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-63972In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-63973In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63974In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63975In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63976In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-63977In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-63979In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-6398Rejected reason: ** REJECT ** DO NOT USE THIS CANDIDATE NUMB…
- CVE-2026-63980In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-63981In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63982In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63983In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-63978?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
