CVE-2025-40259
BaseFortify
Publication date: 2025-12-04
Last updated on: 2025-12-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
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 involves the sg_finish_rem_req() function calling blk_rq_unmap_user(), which may sleep. Since sleeping is not allowed in atomic context (where interrupts are disabled), this can cause issues. The fix was to ensure sg_finish_rem_req() is called with interrupts enabled to avoid sleeping in atomic context.
How can this vulnerability impact me? :
If this vulnerability is exploited or triggered, it could cause kernel instability or crashes due to improper sleeping in atomic context, potentially leading to system hangs or data corruption.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update your Linux kernel to a version where the issue has been resolved, ensuring that sg_finish_rem_req() is called with interrupts enabled instead of disabled to prevent sleeping in atomic context.