CVE-2023-53353
BaseFortify
Publication date: 2025-09-17
Last updated on: 2025-12-11
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 5.1 (inc) to 6.3.4 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-401 | The product does not sufficiently track and release allocated memory after it has been used, making the memory unavailable for reallocation and reuse. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability involves the Linux kernel's habanalabs accelerator memory manager. The issue is that the memory manager's IDR (ID Radix tree) is destroyed too early when a user releases the file descriptor, while the user context and memory buffers might still be in use. Because the handles for these buffers are no longer found in the IDR, attempts to release them later fail, causing a memory leak. The fix postpones the destruction of the IDR until the user context is fully released and no buffers are in use.
How can this vulnerability impact me? :
This vulnerability can lead to memory leaks in the Linux kernel when using the habanalabs accelerator. Memory leaks can degrade system performance, cause resource exhaustion, and potentially lead to system instability or crashes if the leaked memory accumulates over time.