LiveActive security incident?Get immediate response
CVE Record

CVE-2026-43194: net: consume xmit errors of GSO frames

In the Linux kernel, the following vulnerability has been resolved: net: consume xmit errors of GSO frames udpgro_frglist.sh and udpgro_bench.sh are the flakiest tests currently in NIPA. They fail in the same exact way, TCP GRO test stalls occasionally and the test gets killed after 10min. These tests use veth to simulate GRO. They attach a trivial ("return XDP_PASS;") XDP program to the veth to force TSO off and NAPI on. Digging into the failure mode we can see that the connection is completely stuck after a burst of drops. The sender's snd_nxt is at sequence number N [1], but the receiver claims to have received (rcv_nxt) up to N + 3 * MSS [2]. Last piece of the puzzle is that senders rtx queue is not empty (let's say the block in the rtx queue is at sequence number N - 4 * MSS [3]). In this state, sender sends a retransmission from the rtx queue with a single segment, and sequence numbers N-4*MSS:N-3*MSS [3]. Receiver sees it and responds with an ACK all the way up to N + 3 * MSS [2]. But sender will reject this ack as TCP_ACK_UNSENT_DATA because it has no recollection of ever sending data that far out [1]. And we are stuck. The root cause is the mess of the xmit return codes. veth returns an error when it can't xmit a frame. We end up with a loss event like this: ------------------------------------------------- | GSO super frame 1 | GSO super frame 2 | |-----------------------------------------------| | seg | seg | seg | seg | seg | seg | seg | seg | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | ------------------------------------------------- x ok ok <ok>| ok ok ok <x> \\ snd_nxt "x" means packet lost by veth, and "ok" means it went thru. Since veth has TSO disabled in this test it sees individual segments. Segment 1 is on the retransmit queue and will be resent. So why did the sender not advance snd_nxt even tho it clearly did send up to seg 8? tcp_write_xmit() interprets the return code from the core to mean that data has not been sent at all. Since TCP deals with GSO super frames, not individual segment the crux of the problem is that loss of a single segment can be interpreted as loss of all. TCP only sees the last return code for the last segment of the GSO frame (in <> brackets in the diagram above). Of course for the problem to occur we need a setup or a device without a Qdisc. Otherwise Qdisc layer disconnects the protocol layer from the device errors completely. We have multiple ways to fix this. 1) make veth not return an error when it lost a packet. While this is what I think we did in the past, the issue keeps reappearing and it's annoying to debug. The game of whack a mole is not great. 2) fix the damn return codes We only talk about NETDEV_TX_OK and NETDEV_TX_BUSY in the documentation, so maybe we should make the return code from ndo_start_xmit() a boolean. I like that the most, but perhaps some ancient, not-really-networking protocol would suffer. 3) make TCP ignore the errors It is not entirely clear to me what benefit TCP gets from interpreting the result of ip_queue_xmit()? Specifically once the connection is established and we're pushing data - packet loss is just packet loss? 4) this fix Ignore the rc in the Qdisc-less+GSO case, since it's unreliable. We already always return OK in the TCQ_F_CAN_BYPASS case. In the Qdisc-less case let's be a bit more conservative and only mask the GSO errors. This path is taken by non-IP-"networks" like CAN, MCTP etc, so we could regress some ancient thing. This is the simplest, but also maybe the hackiest fix? Similar fix has been proposed by Eric in the past but never committed because original reporter was working with an OOT driver and wasn't providing feedback (see Link).

HighCVSS 7.5Not KEV-listedUpdated
Glexia's TakeAutomated analysishigh

Security readout for executives and security teams

Plain-English summary

A Linux networking error can leave certain TCP connections permanently stalled after packet drops. The issue affects availability, not data confidentiality or integrity. Risk is concentrated in systems using GSO without a queuing discipline, including some virtual-network configurations. The supplied CVSS score is 7.5.

Executive priority

Treat this as a high-priority availability issue for exposed Linux networking infrastructure, especially virtualized or specialized network paths. Accelerate vendor-supported updates where the required GSO and Qdisc-less conditions exist. Broader emergency action is not supported because active exploitation and reliable attacker control are unconfirmed.

Technical view

With GSO and no Qdisc, a device transmission failure can be incorrectly treated as failure of an entire GSO frame. TCP may then retain an inaccurate snd_nxt value, reject valid acknowledgements as TCP_ACK_UNSENT_DATA, and enter a persistent retransmission stall. The kernel fix masks unreliable transmit errors for GSO frames on this path.

Likely exposure

Potential exposure exists on affected Linux kernels where TCP traffic uses GSO through a Qdisc-less network path. The reported failure involved veth with an XDP pass program, TSO disabled, NAPI enabled, and packet drops. The supplied affected-version data is ambiguous, so distribution-specific advisories should determine exposure.

Exploitation context

The CVSS vector describes network-reachable, low-complexity availability impact without privileges or user interaction. However, the bundle provides no evidence of malicious exploitation, and CVE-2026-43194 is not listed as KEV. Whether an unauthenticated attacker can reliably create the required drops and networking state is not established.

Researcher notes

The root condition is inconsistent propagation of per-segment device errors through GSO to TCP. The observed test failure produced receiver acknowledgements beyond the sender's recorded snd_nxt, causing rejection and deadlock. No CWE was supplied. The bundle documents a regression-oriented fix but provides no exploit demonstration or proof of deliberate remote triggering.

Mitigation direction

  • Update to a vendor-supported kernel containing the cited GSO transmit-error fix.
  • Check Linux distribution advisories for corrected package versions and backport status.
  • Prioritize Qdisc-less systems using GSO, veth, XDP, or comparable virtual-network paths.
  • Where immediate updating is impossible, consult vendor guidance for configuration-specific mitigations.

Validation and detection

  • Inventory kernel versions and compare them with distribution advisories for CVE-2026-43194.
  • Identify interfaces or drivers operating without a Qdisc while processing GSO traffic.
  • Review monitoring for TCP stalls following packet-loss bursts or repeated retransmissions.
  • Confirm the installed kernel includes the applicable cited stable commit or vendor backport.
  • After updating, repeat representative packet-loss and sustained TCP workload testing.
Prepared
Confidence
medium
Sources
10

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.

cve · low confidence lookup

CVE-2026-43194 mapping review

Open the CVE-to-ATT&CK bridge for reviewed, inferred, or future official mappings tied to this CVE.

Open ATT&CK lookup
Vulnerability profileCVE Program record
Severity
High
CVSS
7.5 (3.1)
Known Exploited
No
Published

Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Official CVE source material

CNA and ADP enrichment extracted from CVE v5

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.

1CVSS vectors
3Timeline events
0ADP providers
9Source links

CVSS vector scores

1 official score

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.

ScoreVersionSeverityVectorExploitImpactSource
7.5CVSS 3.1HighCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H3.93.6Linux

Vulnerability scoring details

Base CVSS 3.1 score

7.5High
CVSS 3.1 vector shape for CVE-2026-43194Attack VectorAttack ComplexityPrivileges RequiredUser InteractionScopeConfidentiality ImpactIntegrity ImpactAvailability Impact

Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Attack Vector
NetworkAdjacentLocalPhysical
Attack Complexity
LowHigh
Privileges Required
NoneLowHigh
User Interaction
NoneRequired
Scope
ChangedUnchanged
Confidentiality Impact
HighLowNone
Integrity Impact
HighLowNone
Availability Impact
HighLowNone

Vulnerability timeline

Timeline events are normalized from CVE metadata, CNA source timelines, ADP timelines, and KEV metadata when present.

  1. CVE reservedCVE Program

    The CVE ID was reserved by the assigning CNA.

  2. CVE publishedCVE Program

    The CVE record was published.

  3. CVE updatedCVE Program

    The CVE record metadata indicates this as the latest update time.

Affected products

Products and packages named in the record

VendorProductVersion / packageStatus
LinuxLinux1f59533f9ca5634e7b8914252e48aee9d9cbe501, 1f59533f9ca5634e7b8914252e48aee9d9cbe501, 1f59533f9ca5634e7b8914252e48aee9d9cbe501, 1f59533f9ca5634e7b8914252e48aee9d9cbe501, 1f59533f9ca5634e7b8914252e48aee9d9cbe501, 1f59533f9ca5634e7b8914252e48aee9d9cbe501, 1f59533f9ca5634e7b8914252e48aee9d9cbe501, 1f59533f9ca5634e7b8914252e48aee9d9cbe501unaffected
LinuxLinux3.18, 0, 5.10.252, 5.15.202, 6.1.165, 6.6.128, 6.12.75, 6.18.16, 6.19.6, 7.0affected
Weakness

CWE details

No CWE listed

CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.