CVE Catalog

CVE-2026-97574

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, bnxt_queue_mem_alloc() shallow-copied the live RX ring into a clone, leaving rx_tpa and rx_tpa_idx_map pointing at the live ring's memory. If a later allocation failure took the err_free_tpa_info label, the live ring's memory could be freed while still in use. The fix initializes the clone's pointers to NULL.

Risk Assessment

Freeing in-use memory can lead to a use-after-free, risking kernel memory corruption, system crash, or potential code execution.

Recommendation

Update the Linux kernel to a version containing the bnxt_en driver fix. Monitor systems with Broadcom NetXtreme adapters for unexpected reboots.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: bnxt_en: Don't free the live ring's TPA state on queue restart failure bnxt_queue_mem_alloc() shallow copies the live RX ring into the clone: memcpy(clone, rxr, sizeof(*rxr)); the code currently clears pointers that the clone owns (such as rx_agg_bmap), but rx_tpa and rx_tpa_idx_map are left pointing at memory of the live ring that was cloned. If an allocation failure happens later and the err_free_tpa_info label is taken, the live ring's memory can be freed while still in use. Fix this by initializing the clone's pointers to NULL to prevent live ring state from being freed inadvertently.

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