LiveActive security incident?Get immediate response
CVE Record

CVE-2025-39770: net: gso: Forbid IPv6 TSO with extensions on devices with only IPV6_CSUM

In the Linux kernel, the following vulnerability has been resolved: net: gso: Forbid IPv6 TSO with extensions on devices with only IPV6_CSUM When performing Generic Segmentation Offload (GSO) on an IPv6 packet that contains extension headers, the kernel incorrectly requests checksum offload if the egress device only advertises NETIF_F_IPV6_CSUM feature, which has a strict contract: it supports checksum offload only for plain TCP or UDP over IPv6 and explicitly does not support packets with extension headers. The current GSO logic violates this contract by failing to disable the feature for packets with extension headers, such as those used in GREoIPv6 tunnels. This violation results in the device being asked to perform an operation it cannot support, leading to a `skb_warn_bad_offload` warning and a collapse of network throughput. While device TSO/USO is correctly bypassed in favor of software GSO for these packets, the GSO stack must be explicitly told not to request checksum offload. Mask NETIF_F_IPV6_CSUM, NETIF_F_TSO6 and NETIF_F_GSO_UDP_L4 in gso_features_check if the IPv6 header contains extension headers to compute checksum in software. The exception is a BIG TCP extension, which, as stated in commit 68e068cabd2c6c53 ("net: reenable NETIF_F_IPV6_CSUM offload for BIG TCP packets"): "The feature is only enabled on devices that support BIG TCP TSO. The header is only present for PF_PACKET taps like tcpdump, and not transmitted by physical devices." kernel log output (truncated): WARNING: CPU: 1 PID: 5273 at net/core/dev.c:3535 skb_warn_bad_offload+0x81/0x140 ... Call Trace: <TASK> skb_checksum_help+0x12a/0x1f0 validate_xmit_skb+0x1a3/0x2d0 validate_xmit_skb_list+0x4f/0x80 sch_direct_xmit+0x1a2/0x380 __dev_xmit_skb+0x242/0x670 __dev_queue_xmit+0x3fc/0x7f0 ip6_finish_output2+0x25e/0x5d0 ip6_finish_output+0x1fc/0x3f0 ip6_tnl_xmit+0x608/0xc00 [ip6_tunnel] ip6gre_tunnel_xmit+0x1c0/0x390 [ip6_gre] dev_hard_start_xmit+0x63/0x1c0 __dev_queue_xmit+0x6d0/0x7f0 ip6_finish_output2+0x214/0x5d0 ip6_finish_output+0x1fc/0x3f0 ip6_xmit+0x2ca/0x6f0 ip6_finish_output+0x1fc/0x3f0 ip6_xmit+0x2ca/0x6f0 inet6_csk_xmit+0xeb/0x150 __tcp_transmit_skb+0x555/0xa80 tcp_write_xmit+0x32a/0xe90 tcp_sendmsg_locked+0x437/0x1110 tcp_sendmsg+0x2f/0x50 ... skb linear: 00000000: e4 3d 1a 7d ec 30 e4 3d 1a 7e 5d 90 86 dd 60 0e skb linear: 00000010: 00 0a 1b 34 3c 40 20 11 00 00 00 00 00 00 00 00 skb linear: 00000020: 00 00 00 00 00 12 20 11 00 00 00 00 00 00 00 00 skb linear: 00000030: 00 00 00 00 00 11 2f 00 04 01 04 01 01 00 00 00 skb linear: 00000040: 86 dd 60 0e 00 0a 1b 00 06 40 20 23 00 00 00 00 skb linear: 00000050: 00 00 00 00 00 00 00 00 00 12 20 23 00 00 00 00 skb linear: 00000060: 00 00 00 00 00 00 00 00 00 11 bf 96 14 51 13 f9 skb linear: 00000070: ae 27 a0 a8 2b e3 80 18 00 40 5b 6f 00 00 01 01 skb linear: 00000080: 08 0a 42 d4 50 d5 4b 70 f8 1a

HighCVSS 7.5Not KEV-listedUpdated
Glexia's TakeAutomated analysishigh

Security readout for executives and security teams

Plain-English summary

A Linux networking flaw can sharply reduce throughput when IPv6 packets with extension headers are processed through certain hardware checksum-offload configurations. GRE-over-IPv6 tunnels are a cited example. The documented impact is service availability and performance, not data theft or modification.

Executive priority

Prioritize internet-facing gateways, tunnel endpoints, appliances, and high-availability systems using IPv6 extension headers. Treat this as an urgent availability remediation where the relevant traffic and offload conditions exist. For other Linux assets, complete inventory and vendor-version mapping before assigning emergency priority.

Technical view

IPv6 GSO incorrectly retains NETIF_F_IPV6_CSUM for extension-header packets even though that feature supports only plain TCP or UDP over IPv6. Unsupported checksum offload can trigger skb_warn_bad_offload and throughput collapse. The correction masks IPV6_CSUM, TSO6, and GSO_UDP_L4 so checksums are computed in software, preserving the documented BIG TCP exception.

Likely exposure

Exposure is concentrated in Linux systems transmitting IPv6 extension-header traffic through devices advertising only NETIF_F_IPV6_CSUM, particularly GRE-over-IPv6 configurations. Ordinary hosts not using this traffic and offload combination may never encounter the fault. The supplied version data is ambiguous, so exact exposure requires build-level vendor verification.

Exploitation context

The supplied CVSS 3.1 score is 7.5, reflecting network-reachable, unauthenticated availability impact. However, the bundle marks the CVE as absent from KEV and provides no evidence of active exploitation or a public exploit. The documented outcome is warning generation and throughput collapse; practical trigger conditions depend on networking configuration.

Researcher notes

The failure is a feature-contract violation between GSO and device checksum offload. The source bundle lists affected and unaffected versions in a form that appears commit-oriented and potentially inconsistent, so avoid broad version conclusions. Validate exact vendor builds, driver features, extension-header presence, warning telemetry, and whether the cited feature-masking change is present.

Mitigation direction

  • Inventory systems processing IPv6 extension-header traffic, especially GRE-over-IPv6 tunnels.
  • Apply the relevant Linux stable or distribution kernel update containing the cited correction.
  • Activate the updated kernel according to distribution or appliance-vendor guidance.
  • If patching is delayed, consult vendor guidance; the supplied sources identify no validated workaround.

Validation and detection

  • Map each running kernel build to a fixed vendor advisory or cited stable commit.
  • Identify egress devices advertising NETIF_F_IPV6_CSUM and workloads using IPv6 extension headers.
  • Monitor kernel logs for skb_warn_bad_offload during representative legitimate traffic.
  • Compare tunnel throughput before and after remediation in a controlled environment.
  • Verify gso_features_check applies the documented feature masks while retaining the BIG TCP exception.
Prepared
Confidence
medium
Sources
7

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-2025-39770 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
2ADP providers
10Source 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-2025-39770Attack 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.

ADP provider summaries

CVECVE Program Container
siemens-SADPADP container
Affected products

Products and packages named in the record

VendorProductVersion / packageStatus
LinuxLinuxa84978a9cda68f0afe3f01d476c68db21526baf1, c69bc67c1cb211aa390bea6e512bb01b1241fefb, 04c20a9356f283da623903e81e7c6d5df7e4dc3c, 04c20a9356f283da623903e81e7c6d5df7e4dc3c, 04c20a9356f283da623903e81e7c6d5df7e4dc3c, bcefc3cd7f592a70fcbbbfd7ad1fbc69172ea78b, 477b35d94a21530046fe91589960732fcf2b29ed, a27a5c40ee4cbe00294e2c76160de5f2589061ba, 9f605135a5c0fe614c2b15197b9ced1e217eca59, 705350fbd6ed4b5d89ee045fa57a0594a72b17d7, 6.1.116, 6.6.60, 4.19.323, 5.4.285, 5.10.229, 5.15.171, 6.11.7unaffected
LinuxLinux6.12, 0, 6.1.149, 6.6.103, 6.12.44, 6.16.4, 6.17affected
Weakness

CWE details

No CWE listed

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