CVE-2025-68821
BaseFortify
Publication date: 2026-01-13
Last updated on: 2026-01-19
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux_kernel | fuse | * |
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 that includes the fix for the fuse readahead reclaim deadlock. The fix involves allocating ff->release_args and grabbing the reference on the inode when preparing the file for release, even if the server does not implement open. Applying the patch or upgrading to a kernel version containing commit e26ee4efbc79 will resolve the deadlock issue.
Can you explain this vulnerability to me?
This vulnerability is a deadlock issue in the Linux kernel's fuse filesystem. It occurs because the kernel skips allocating certain release arguments and does not grab a reference on the inode when the server does not implement open. This can lead to an inode being evicted from the dcache while there are ongoing readahead requests. When the server triggers reclaim during these requests, it causes a deadlock because the reclaim process waits for a lock held by the readahead, which itself is blocked by reclaim. The fix involves always allocating release arguments and grabbing the inode reference when preparing the file for release, preventing the deadlock.
How can this vulnerability impact me? :
This vulnerability can cause a deadlock in the Linux kernel's fuse filesystem, potentially leading to system hangs or unresponsiveness when accessing files via fuse. This can disrupt normal file operations and degrade system stability or availability.