CVE-2025-38510
BaseFortify
Publication date: 2025-08-16
Last updated on: 2025-11-03
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.1.153 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update the Linux kernel to a version where kasan_find_vm_area() has been removed to prevent the possible deadlock. Avoid using kernel versions that include the vulnerable kasan_find_vm_area() function.
Can you explain this vulnerability to me?
This vulnerability involves a potential deadlock in the Linux kernel's Kernel Address Sanitizer (kasan) subsystem. Specifically, the function kasan_find_vm_area() calls find_vm_area(), which cannot be safely called in atomic context. When kasan reports an invalid memory access, it may trigger a deadlock due to nested spin_lock calls on the same lock from different CPUs or interrupt contexts. To fix this, kasan_find_vm_area() was removed to prevent the deadlock scenario.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to deadlock when kasan attempts to report invalid memory accesses. A deadlock in the kernel can lead to system hangs or crashes, impacting system stability and availability.