CVE-2026-72046
Received Received - Intake

Buffer Corruption in Linux Kernel GVE Driver

Vulnerability report for CVE-2026-72046, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-15

Last updated on: 2026-08-17

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: gve: fix header buffer corruption with header-split and HW-GRO The DQO RX datapath programs a per-buffer-queue-descriptor header_buf_addr at post time and reads the split header back at completion time. Both the post and the read currently index the header buffer by queue position rather than by the buffer's identity: - post (gve_rx_post_buffers_dqo): header_buf_addr is computed from bufq->tail - read (gve_rx_dqo): the header is read from desc_idx (the completion queue head index) This relies on the buffer-queue index and the completion-queue index being equal for the start of every packet, i.e. on the device consuming posted buffers and returning completions in the exact same order. That assumption does not hold once HW-GRO is enabled with multiple flows: coalesced segments are accepted and completed in an order that may differ from the order buffers were posted, and segments from different flows may interleave. That results in two problems: 1. Wrong header slot on read. Because the read offset is derived from the completion index (desc_idx) while the device wrote the header to the address programmed for the buffer's buf_id, the driver can copy a header belonging to a different packet. This shows up as throughput drop (about 30% drop and large numbers of TCP retransmissions) with header-split and HW-GRO both enabled and many streams. 2. Header buffer reused while still owned by the device. The driver advances bufq->head by one per completion and re-posts buffers based on that. Arrival of N RX completions only guarantees that at least N RX buffer descriptors have been read by the device. It does not guarantee that the device has relinquished the ownership of all the buffers corresponding to those N descriptors. With out-of-order completions (e.g. the completion for a packet copied into buffer N arrives before the completion for a packet copied into buffer N-1), the driver can re-post and overwrite a header buffer that the device is still going to write into, corrupting the header of a packet whose completion has not yet been processed. Fix both issues by indexing the header buffer by buf_id on both the post and read paths. Reading from buf_id's slot is therefore always correct regardless of completion ordering (fixes problem 1). Indexing by buf_id also ties each header slot to the lifetime of its buffer state. A buffer state is only returned to the free/recycle lists when its own completion (buf_id) is processed, so its header slot can only be re-posted after the device is done with it. This makes header slot reuse safe under out-of-order completions (fixes problem 2). Allocate (gve_rx_alloc_hdr_bufs) and free (gve_rx_free_hdr_bufs) the header buffers based on num_buf_states to match the buf_id indexing.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-15
Last Modified
2026-08-17
Generated
2026-09-04
AI Q&A
2026-08-15
EPSS Evaluated
2026-09-03
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux_kernel linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel involves header buffer corruption in the gve network driver when using header-split mode and hardware receive offload (HW-GRO). The issue occurs because the driver incorrectly assumes buffers are processed in the same order they were posted, but HW-GRO with multiple flows can cause out-of-order completions. This leads to two problems: reading the wrong header for a packet and reusing header buffers before the device finishes writing to them.

Detection Guidance

This vulnerability is specific to the Linux kernel's gve driver with header-split and HW-GRO enabled. Detection requires checking kernel logs for related errors or performance issues like throughput drops and TCP retransmissions. Commands like dmesg | grep gve or journalctl -k | grep gve may show driver-related errors.

Impact Analysis

This vulnerability can cause a significant drop in network throughput (around 30%) and increase TCP retransmissions when header-split and HW-GRO are both enabled with multiple network streams. It may also lead to data corruption if header buffers are overwritten while the device is still using them.

Compliance Impact

This vulnerability does not directly affect compliance with GDPR, HIPAA, or similar standards as it pertains to a Linux kernel driver issue causing header buffer corruption in network packet processing. Compliance impacts would only occur if this vulnerability led to data breaches or unauthorized access, which is not described in the provided context.

Mitigation Strategies

Disable HW-GRO and header-split features in the gve driver configuration. Update the Linux kernel to a patched version where this issue is resolved. Monitor network performance and kernel logs for signs of corruption or errors after changes.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-72046. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart