CVE Catalog

CVE-2026-72040

Low risk· EPSS 10%
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.20%

10th percentile - higher than 10% of all known CVEs

Summary

In the Linux kernel IPMI subsystem, a vulnerability exists causing a refcount leak in i_ipmi_request(). When a caller provides a supplied_recv message and an error occurs later, the cleanup path does not release the reference, leading to a permanent leak.

Risk Assessment

The refcount leak could lead to resource exhaustion, potentially resulting in denial of service (DoS) in systems using IPMI.

Recommendation

Apply a kernel update containing the fix that reverts reference count operations in the error path.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: ipmi: fix refcount leak in i_ipmi_request() When a caller provides a `supplied_recv` message to i_ipmi_request(), the function increments the user's `nr_msgs` reference count. If an error occurs later, the out_err cleanup path only frees the recv_msg if the function allocated it itself (i.e., !supplied_recv). In the supplied_recv case the cleanup is skipped, leaving the reference count elevated. The caller ipmi_request_supply_msgs() does not release the supplied_recv on error, so the reference is permanently leaked. Fix this by explicitly reverting the reference count operations when a supplied recv_msg with a valid user pointer is present in the error path: decrement nr_msgs and drop the user's kref.

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