NONE · 0

CVE-2025-40185

In the Linux kernel, the following vulnerability has been resolved: ice: ice_adapter: release xa entry on adapter allocation failure When ice_adapter_new() fails, the reserved XArray entry created b...

Vulnerability Description

In the Linux kernel, the following vulnerability has been resolved: ice: ice_adapter: release xa entry on adapter allocation failure When ice_adapter_new() fails, the reserved XArray entry created by xa_insert() is not released. This causes subsequent insertions at the same index to return -EBUSY, potentially leading to NULL pointer dereferences. Reorder the operations as suggested by Przemek Kitszel: 1. Check if adapter already exists (xa_load) 2. Reserve the XArray slot (xa_reserve) 3. Allocate the adapter (ice_adapter_new) 4. Store the adapter (xa_store)

References

FAQ

What is CVE-2025-40185?

CVE-2025-40185 is a documented vulnerability. In the Linux kernel, the following vulnerability has been resolved: ice: ice_adapter: release xa entry on adapter allocation failure When ice_adapter_new() fails, the reserved XArray entry created b...

How severe is CVE-2025-40185?

CVSS scoring is not yet available for CVE-2025-40185. Check NVD for updates.

Is there a patch for CVE-2025-40185?

Check the references section above for vendor advisories and patch information. Review vendor security bulletins for remediation guidance.