CVE-2025-71070
BaseFortify
Publication date: 2026-01-13
Last updated on: 2026-01-14
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | to c5c5eb24ed61 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel's ublk subsystem involves a reference count leak when a ublk server process releases a ublk character device file. Specifically, requests dispatched to the ublk server but not yet completed retain an incorrect reference count (UBLK_REFCOUNT_INIT). Due to an optimization in the code, the reference count was not decremented properly, allowing user copy and zero copy operations on completed requests, which should not happen. This can cause warnings and improper handling of requests. The fix ensures that all reference-counted data copy modes have their reference counts reset to zero when the ublk server exits.
How can this vulnerability impact me? :
The impact of this vulnerability is that it allows user copy and zero copy operations on completed ublk requests due to leaked reference counts. This improper handling could lead to unexpected behavior or resource leaks in the kernel, potentially causing system instability or crashes. It also triggers kernel warnings, which may affect system reliability or debugging.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update the Linux kernel to a version that includes the fix for the ublk reference count leak. The fix ensures that all reference-counted data copy modes have their reference counts reset to 0 when the ublk server exits, preventing the leak and associated issues.