CVE-2026-80855
Received Received - Intake

Filemap Invalidate Lock Leak in Linux Kernel FUSE

Vulnerability report for CVE-2026-80855, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-04

Last updated on: 2026-09-04

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: fuse: fix invalidate lock leak on open O_TRUNC DAX failure fuse_open() takes filemap_invalidate_lock() for a DAX truncate (dax_truncate = true) and releases it before the out_inode_unlock label. But when fuse_dax_break_layouts() fails, the goto out_inode_unlock skips the unlock and leaks the rwsem, so any later fault or truncate on the file stalls on the stale lock. fuse_dax_break_layouts() can fail with -ERESTARTSYS when a signal interrupts the wait for busy DAX pages to drain: open("file", O_RDWR | O_TRUNC) └─ fuse_open() β”œβ”€ filemap_invalidate_lock() # dax_truncate └─ fuse_dax_break_layouts() └─ dax_break_layout() └─ wait_page_idle() # TASK_INTERRUPTIBLE └─ fuse_wait_dax_page() # unlock, schedule, re-lock └─ signal β†’ -ERESTARTSYS goto out_inode_unlock # <- lock leaked Fix this by moving filemap_invalidate_unlock() below the label so that all error paths release the lock, and rename the label to out_unlock as it now covers more than just the inode lock.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-04
Last Modified
2026-09-04
Generated
2026-09-04
AI Q&A
2026-09-04
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel involves a lock leak in the FUSE (Filesystem in Userspace) subsystem. When opening a file with O_TRUNC and DAX enabled, the kernel takes an invalidate lock but fails to release it if fuse_dax_break_layouts() encounters a signal interruption, causing subsequent file operations to stall.

Detection Guidance

This vulnerability is specific to the Linux kernel's FUSE (Filesystem in Userspace) implementation and may not have direct network detection methods. To check for kernel versions affected, run: uname -r. If your kernel version is vulnerable, look for stalled processes or hangs during file operations involving FUSE mounts.

Impact Analysis

This could lead to system hangs or unresponsiveness during file operations on affected systems. Users may experience delays or freezes when accessing files with DAX-enabled filesystems, particularly during truncation operations.

Mitigation Strategies

Apply the latest kernel patches or updates that include the fix for CVE-2026-80855. Avoid using O_TRUNC with FUSE mounts until patched. Monitor system logs for stalled processes or rwsem lock issues during file operations.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-80855. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart