CVE-2026-43198: tcp: fix potential race in tcp_v6_syn_recv_sock()
In the Linux kernel, the following vulnerability has been resolved:
tcp: fix potential race in tcp_v6_syn_recv_sock()
Code in tcp_v6_syn_recv_sock() after the call to tcp_v4_syn_recv_sock()
is done too late.
After tcp_v4_syn_recv_sock(), the child socket is already visible
from TCP ehash table and other cpus might use it.
Since newinet->pinet6 is still pointing to the listener ipv6_pinfo
bad things can happen as syzbot found.
Move the problematic code in tcp_v6_mapped_child_init()
and call this new helper from tcp_v4_syn_recv_sock() before
the ehash insertion.
This allows the removal of one tcp_sync_mss(), since
tcp_v4_syn_recv_sock() will call it with the correct
context.
Security readout for executives and security teams
Plain-English summary
CVE-2026-43198 is a critical Linux kernel networking flaw in TCP connection setup. A race condition can leave a newly accepted socket visible to other CPUs before its IPv6 state is correctly initialized. The published scoring treats this as remotely reachable with high confidentiality, integrity, and availability impact.
Executive priority
Treat this as urgent for externally reachable Linux infrastructure. The technical trigger is kernel-level and network-facing, so successful exploitation could affect host stability or security boundaries. Patch based on vendor guidance and verify rebooted kernels.
Technical view
The flaw is in tcp_v6_syn_recv_sock(). After tcp_v4_syn_recv_sock(), the child socket is already in the TCP ehash table, while newinet->pinet6 may still reference listener IPv6 state. The kernel fix moves initialization into tcp_v6_mapped_child_init() before ehash insertion.
Likely exposure
Exposure is most relevant to systems running affected Linux kernels that accept TCP connections, especially IPv6 or IPv4-mapped IPv6 listener paths. The bundle identifies Linux kernel versions and Red Hat advisories, but product-level status must be confirmed against each vendor kernel package.
Exploitation context
The source bundle marks KEV as false and provides no cited evidence of active exploitation. The issue was found by syzbot, and the CVSS vector indicates remote, unauthenticated, low-complexity reachability, but the bundle does not include public exploit details.
Researcher notes
Evidence supports a race in TCP child socket initialization before ehash insertion. The precise vulnerable version ranges in the bundle are broad and vendor packaging may differ, so validation should rely on kernel commits, distro advisories, and package backports.
Mitigation direction
Inventory Linux kernel versions across exposed systems.
Apply vendor kernel updates or stable fixes for CVE-2026-43198.
Prioritize internet-facing TCP services and shared hosting nodes.
Check Red Hat advisories for affected package status.
If updates are unavailable, follow vendor guidance and reduce unnecessary TCP exposure.
Validation and detection
Confirm the running kernel after reboot, not only the installed package.
Compare kernel packages against vendor CVE or errata status.
Check whether exposed services accept TCP over IPv6 paths.
Track Red Hat VEX and RHSA records for environment-specific status.
Document exceptions where vendor status remains unclear.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-821: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
2CVSS vectors
5Timeline events
1ADP providers
20Source links
CVSS vector scores
2 official scores
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-821 · source CWE mapping
Incorrect Synchronization
Incorrect Synchronization represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.