CVE Catalog

CVE-2026-98052

HighCVSS 7.8
Published: Updated: Translated: NVD NIST

Summary

In the Linux kernel, the bcmasp network driver's bcmasp_xmit() only set txcb->last = true for the final fragment of an SKB, leaving the field untouched for non-final fragments. If a descriptor slot was reused while still holding a stale true from a previous SKB, bcmasp_tx_reclaim() could prematurely free the sk_buff while its remaining fragments were still in flight.

Risk Assessment

Premature freeing of a network buffer can lead to memory corruption, system crashes, or potential arbitrary code execution, especially on systems using this network driver.

Recommendation

Update the Linux kernel to a version with the fix that unconditionally clears txcb->last before the conditional set, ensuring a known false state for every descriptor slot.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: net: bcmasp: clear txcb->last before writing each descriptor bcmasp_xmit() only wrote txcb->last = true for the final fragment of an SKB; non-final fragments left the field untouched. If a descriptor slot was reused while it still held a stale true from a previous SKB (possible when tx_spb_ring_full() underreported fullness), bcmasp_tx_reclaim() would see last == true mid-SKB and call dev_consume_skb_any() prematurely, freeing the sk_buff while its remaining fragments were still in flight. Unconditionally clear txcb->last before the conditional set so every descriptor slot starts from a known false state regardless of what a prior transmission left behind.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS