CVE-2026-68170
Last modified
CVE-2026-68170 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: mptcp: fix stale skb->sk reference on subflow close The backlog list is updated by mptcp_data_ready() under mptcp_data_lock(). The cleanup of backlog references to a closing subflow, however, was performed in mptcp_close_ssk(), before __mptcp_close_ssk() acquires the ssk lock, and while holding neither the ssk lock nor mptcp_data_lock(). Because that traversal ran without mptcp_data_lock(), concurrent softirq RX processing on another CPU (subflow_data_ready() -> mptcp_data_ready() -> __mptcp_add_backlog(), under mptcp_data_lock()) could add a backlog entry referencing the ssk while the cleanup loop was in progress.
Description
In the Linux kernel, the following vulnerability has been resolved: mptcp: fix stale skb->sk reference on subflow close The backlog list is updated by mptcp_data_ready() under mptcp_data_lock(). The cleanup of backlog references to a closing subflow, however, was performed in mptcp_close_ssk(), before __mptcp_close_ssk() acquires the ssk lock, and while holding neither the ssk lock nor mptcp_data_lock(). Because that traversal ran without mptcp_data_lock(), concurrent softirq RX processing on another CPU (subflow_data_ready() -> mptcp_data_ready() -> __mptcp_add_backlog(), under mptcp_data_lock()) could add a backlog entry referencing the ssk while the cleanup loop was in progress. Such an entry could be missed by the cleanup, or the concurrent list update could corrupt the traversal, leaving skb->sk pointing at the ssk after it is freed. A later mptcp_backlog_purge() then dereferences the stale pointer, triggering a warning in inet_sock_destruct() (ssk->sk_rmem_alloc != 0) followed by a use-after-free in mptcp_backlog_purge(). Fix this by moving the backlog cleanup into __mptcp_close_ssk(), after subflow->closing is set to 1 and while the ssk lock is still held, serialized under mptcp_data_lock(). The cleanup runs only on the push path (MPTCP_CF_PUSH), where backlog references accumulate; on other teardown paths the caller already handles cleanup. With subflow->closing set and mptcp_data_lock() held across the purge, any concurrent mptcp_data_ready() either completes its enqueue before the purge runs and is caught, or observes closing=1 and bails out. Once mptcp_data_unlock() is reached, no new skb referencing the ssk can be enqueued, so the cleanup is exhaustive. Remove the unprotected traversal from mptcp_close_ssk() entirely.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= ee458a3f314e9c669ddd227bf5ab08354d9e75cc, < 625fc6060864889fe3d370cdeffbbab762af3cb4; >= ee458a3f314e9c669ddd227bf5ab08354d9e75cc, < bd7aae448f6ee9d82599a4474664de1e6e91a535 |
| Linux | Linux | 6.19 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-68170?
How severe is CVE-2026-68170?
How do I fix CVE-2026-68170?
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-68165In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68166In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68167In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68168In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68169In the Linux kernel, the following vulnerability has been re…
- CVE-2026-6817The Quiz Maker by AYS plugin for WordPress is vulnerable to …5.8
- CVE-2026-68171Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2026-68172In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68173In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68174In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68175In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68176In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-68170?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
