CVE-2026-53215
Received Received - Intake
Buffer Overflow in Linux Kernel Network Driver

Publication date: 2026-06-25

Last updated on: 2026-06-25

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: net: mvpp2: refill RX buffers before XDP or skb use The RX error path returns the current descriptor buffer to the hardware BM pool. That is only valid while the driver still owns the buffer. mvpp2_rx_refill() can fail after the current buffer has been handed to XDP or attached to an skb. In those cases mvpp2_run_xdp() may have recycled, redirected, or queued the page for XDP_TX, and an skb free also retires the data buffer. Returning such a buffer to BM lets hardware DMA into memory that is no longer owned by the RX ring. Refill the BM pool before handing the current buffer to XDP or to the skb. If the allocation fails there, drop the packet and return the still-owned current buffer to BM, preserving the pool depth. Once the refill succeeds, later local drops retire/free the current buffer instead of returning it to BM.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-25
Last Modified
2026-06-25
Generated
2026-06-25
AI Q&A
2026-06-25
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
linux 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 exists in the Linux kernel's network driver for mvpp2. It involves the handling of RX (receive) buffers in the network driver. Specifically, the driver may return a buffer to the hardware buffer management (BM) pool while the buffer is still in use by other parts of the system, such as XDP (eXpress Data Path) or socket buffers (skb). This can happen if the mvpp2_rx_refill() function fails after the buffer has been handed off, leading to the hardware potentially performing DMA (Direct Memory Access) into memory that is no longer owned by the RX ring. The fix involves refilling the BM pool before handing off the current buffer to XDP or skb, and if the refill fails, dropping the packet and preserving the buffer ownership to prevent unsafe memory reuse.

Impact Analysis

This vulnerability can lead to hardware DMA writing into memory that is no longer owned or controlled by the network driver. This unsafe memory reuse can cause data corruption, system instability, or potentially allow attackers to manipulate memory contents, leading to security risks such as information disclosure or privilege escalation.

Mitigation Strategies

The vulnerability has been resolved in the Linux kernel by changing the order of buffer refilling in the mvpp2 driver. To mitigate this vulnerability, you should update your Linux kernel to a version that includes this fix.

Specifically, ensure your system is running a kernel version where the mvpp2 driver refills the buffer pool before handing the buffer to XDP or skb, preventing hardware DMA into memory no longer owned by the RX ring.

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