CVE Catalog

CVE-2026-90417

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, the RDMA/cxgb4 module has an skb leak and double free in write_tpt_entry(). When the device is in a fatal error state, write_tpt_entry() returns an error before handing off the skb, leading to a leak in c4iw_dereg_mr() or a double free in c4iw_get_dma_mr().

Risk Assessment

A memory leak and double free can lead to resource exhaustion, kernel memory corruption, and system crash. The risk occurs on systems with cxgb4 RDMA cards in an error state.

Recommendation

Update the Linux kernel to a version containing the fix that makes write_tpt_entry() the sole owner of the skb and removes the redundant kfree_skb(). Updating cxgb4 RDMA drivers is recommended.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: RDMA/cxgb4: Fix dereg_skb leak and double free in write_tpt_entry() When the device is in the fatal error state, write_tpt_entry() returns -EIO before handing the caller's preallocated skb to the transmit path; its allocation-failure returns do the same. c4iw_dereg_mr() ignores the error and frees mhp, leaking mhp->dereg_skb. c4iw_get_dma_mr() instead frees the skb a second time after dereg_mem() already consumed it, a double free. Make write_tpt_entry() the sole owner of a non-NULL skb, freeing it on every return preceding handoff to c4iw_ofld_send(): fatal error, tpt and stag allocation failure. c4iw_ofld_send() consumes the skb on success and error alike, so drop the redundant kfree_skb() in c4iw_get_dma_mr() after dereg_mem().

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