SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-72064

CRITICAL · CVSS 9.8 EPSS 0.55%

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's MANA network driver, specifically in how it handles RX buffers from page pool fragments, which can lead to improper DMA synchronization. This oversight may disrupt RX operations in configurations that necessitate explicit DMA syncing, particularly those using the swiotlb=force boot parameter. System administrators and developers managing Linux-based systems with MANA drivers should prioritize addressing this issue to ensure reliable network performance and data integrity.

CVE
CVE-2026-72064
Severity
CRITICAL
CVSS
9.8
EPSS
0.55%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: net: mana: Sync page pool RX frags for CPU MANA allocates RX buffers from page pool fragments when frag_count is greater than 1. In that case the buffers remain DMA mapped by page pool and the RX completion path does not call dma_unmap_single(). As a result, the implicit sync-for-CPU normally performed by dma_unmap_single() is missing before the packet data is passed to the networking stack. This breaks RX on configurations which require explicit DMA syncing, for example when booted with swiotlb=force. Fix this by recording the page pool page and DMA sync offset when the RX buffer is allocated, and syncing the received packet range for CPU access before handing the RX buffer to the stack.