CVE-2026-89511
nicheKernel panic from NULL pointer dereference in Linux qede NIC driver (TPA path)
A regression in the Linux kernel's qede driver (introduced by commit 8a8633978b84, 'qede: Add build_skb() support.') dropped the assignment of tpa_info->buffer.data in qede_tpa_start(). Under memory pressure, an SKB allocation failure causes the driver to mark the aggregation as failed and later recycle the page through qede_reuse_page(), which pushes a 'ghost' buffer descriptor — valid DMA mapping but NULL data pointer — back into the active Rx ring. When the hardware next uses that ring slot, qede_fill_frag_skb() dereferences the NULL page, producing a kernel panic (BUG: unable to handle kernel NULL pointer dereference in qede_fill_frag_skb), a denial of service with no confidentiality or integrity impact (CVSS 3.1: 7.5, A:H). Only systems using QLogic/Marvell qed-based Ethernet adapters handled by the qede driver, with TCP payload aggregation (TPA/LRO) active, are affected. No public proof of concept exists and the flaw is not in the CISA KEV catalog, though the description includes a crash observed on a production system, so it can occur naturally under memory pressure.
What to do: Apply a kernel update containing the fix (the restored tpa_info->buffer.data assignment in qede_tpa_start()) as soon as your distribution backports it, and check running hosts for qede devices (e.g., lspci showing QLogic/Marvell FastLinQ-class adapters). As an interim mitigation on affected systems, disable LRO on the qede interface (e.g., ethtool -K <iface> lro off) to bypass the TPA fragment path, and monitor dmesg for 'qede_fill_frag_skb' NULL pointer oopses, especially on memory-constrained hosts.
| Linux kernel (qede driver for QLogic/Marvell qed-based Ethernet adapters) | Kernels containing commit 8a8633978b84 ('qede: Add build_skb() support.') without the fix restoring the tpa_info->buffer.data assignment in qede_tpa_start(); th |
Order-of-magnitude estimate by the model from install counts, market share and public scan data it knows; verify before quoting.
In the Linux kernel, the following vulnerability has been resolved: qede: Fix NULL pointer dereference in TPA fragment processing Under memory pressure, the qede driver encounters NULL pointer dereferences when processing TPA continuation fragments. Commit 8a8633978b84 ("qede: Add build_skb() support.") accidentally dropped the assignment of tpa_info->buffer.data in qede_tpa_start(). When memory pressure causes an SKB allocation failure in qede_tpa_start(), the driver sets tpa_start_fail = true and attempts to recycle the physical page later in qede_tpa_end() via qede_reuse_page(). However, because buffer.data was left uninitialized (NULL), qede_reuse_page() pushes a "ghost" BD (valid DMA mapping but NULL data pointer) back into the active Rx ring. The next time the hardware uses this ring slot, it passes a NULL page to qede_fill_frag_skb(), causing a kernel panic. Example crash from production system: BUG: unable to handle kernel NULL pointer dereference at 0x8 RIP: qede_fill_frag_skb+0x96/0x430 [qede] Call Trace: qede_rx_int+0xb06/0x1de0 qede_poll+0x2f4/0x6c0 __napi_poll+0x2d/0x130 Fix the root cause by restoring the tpa_info->buffer.data assignment in qede_tpa_start(), ensuring valid pages are correctly tracked and recycled. Additionally, update the stale comment for struct qede_agg_info::buffer to reflect its current usage.
- Vector
- CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
In the news0 stories
No ingested article mentions this CVE yet.