CVE-2026-68123

Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
10/08/2026
Last modified:
19/08/2026

Description

In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> openvswitch: fix GSO userspace truncation underflow<br /> <br /> OVS_ACTION_ATTR_TRUNC currently stores a delta from the original skb<br /> length in OVS_CB(skb)-&gt;cutlen. When a later userspace action segments a<br /> GSO skb, queue_gso_packets() reuses that delta for each smaller segment.<br /> A segment can then reach queue_userspace_packet() with cutlen greater<br /> than skb-&gt;len, underflowing the length passed to skb_zerocopy().<br /> <br /> Store the maximum preserved length instead and bound each consumer<br /> against the current skb length. Use U32_MAX as the no-truncation<br /> sentinel so the value remains valid if skb geometry changes before a<br /> consumer handles it.