CVE-2026-68120: rtase: Workaround for TX hang caused by hardware packet parsing
In the Linux kernel, the following vulnerability has been resolved:
rtase: Workaround for TX hang caused by hardware packet parsing
The hardware performs packet parsing before packet transmission. Parsing incomplete IPv4, IPv6, TCP, or UDP headers may trigger a TX hang because the hardware parser expects additional protocol header data that is not present in the packet.
The hardware performs additional PTP parsing on UDP packets identified by destination ports 319/320 at the expected UDP destination port offset.
If such a packet has transport data smaller than RTASEMINPADLEN, the hardware parser expects additional packet data and may trigger a TX hang.
To avoid these hardware issues, the driver applies the following workarounds.
Drop malformed packets that may trigger this hardware issue before transmission.
For IPv4 non-initial fragments, the hardware does not check the fragment offset before parsing the expected transport header location. As a result, these packets are still subject to transport header parsing even though they do not contain a transport header. If the transport data is shorter than the minimum transport header required by the hardware parser, pad the transport data to the minimum transport header length required by the hardware parser. Packets that also match the hardware PTP parsing conditions continue to follow the corresponding workaround.
For IPv6 fragmented packets, neither of the above hardware issues occurs because the hardware only continues packet parsing when the IPv6 Base Header Next Header field directly indicates UDP. Packets carrying a Fragment Header do not continue through the subsequent packet parsing stages.
For packets identified for hardware PTP parsing, pad the transport data so it reaches RTASEMINPADLEN before transmission.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Configuration
Apply the rtase driver workaround for TX hang caused by hardware packet parsing: drop malformed packets that may trigger the hardware issue before packet transmission.
Linux kernel driver (rtase) hardware TX hang workaround = enabled - Configuration
For IPv4 non-initial fragments, drop the packets because the hardware does not check the fragment offset before parsing the expected transport header location.
rtase driver IPv4 non-initial fragment handling = drop - Configuration
For IPv6 fragmented packets, drop the packets because neither of the above hardware issues are checked for IPv6 fragmentation.
rtase driver IPv6 fragmented packet handling = drop - Configuration
For packets identified for hardware PTP parsing, pad the transport data so it reaches RTASE_MIN_PAD_LEN before transmission; specifically, if UDP transport data is smaller than RTASE_MIN_PAD_LEN, pad the transport data to the minimum transport header length required by the hardware parser.
rtase driver RTASE_MIN_PAD_LEN transport padding = pad transport data to RTASE_MIN_PAD_LEN - Configuration
Ensure the workaround is applied only under the hardware parser’s PTP parsing conditions: packets should match the expected UDP destination port(s) 319/320 before applying the transport padding workaround.
rtase driver PTP parsing destination ports (319/320) = match hardware conditions
Event History
Frequently Asked Questions
What is the severity of CVE-2026-68120?
CVE-2026-68120 has a risk rating of 21.
How do I fix CVE-2026-68120?
To fix CVE-2026-68120, you should update to the latest version of the Linux kernel that includes the fix.
What symptoms indicate CVE-2026-68120 is affecting my system?
Symptoms of CVE-2026-68120 include a transmission hang during hardware packet parsing.
Which software is impacted by CVE-2026-68120?
CVE-2026-68120 impacts the Linux kernel.
When was CVE-2026-68120 published?
CVE-2026-68120 was published on August 10, 2026.