CVE-2026-80855 PUBLISHED

fuse: fix invalidate lock leak on open O_TRUNC DAX failure

Assigner: Linux
Reserved: 26.08.2026 Published: 04.09.2026 Updated: 04.09.2026

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.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from d58366aab86854217b81679d1a9dcd54a2edfc2a to 1b04d80a27d317064cce2307472f5bef9975bc50 (excl.)
  • affected from 2fdbb8dd01556e1501132b5ad3826e8f71e24a8b to a61524da59a2f5ac9c8de23ff98b30da769ab144 (excl.)
  • affected from 2fdbb8dd01556e1501132b5ad3826e8f71e24a8b to dcf30a56624c2a0cfab1bada5b1ca8cc0c02f010 (excl.)
  • affected from 2fdbb8dd01556e1501132b5ad3826e8f71e24a8b to 7288c279ddbd654a06c82118c1a3f5570c1807f0 (excl.)
  • affected from 2fdbb8dd01556e1501132b5ad3826e8f71e24a8b to 776e85fda752f9a15e0f82dec42ecacd12a9bd94 (excl.)
  • affected from 2fdbb8dd01556e1501132b5ad3826e8f71e24a8b to 1d3e701cda2f41d48aa721b3ebefbe0fbf8d74da (excl.)
  • affected from 2fdbb8dd01556e1501132b5ad3826e8f71e24a8b to e981474d7bf1457da12404e169ea147d2c8ecea7 (excl.)
  • affected from 2fdbb8dd01556e1501132b5ad3826e8f71e24a8b to a927f1867e61b78f39f9da0bbba3c98c2ca151fe (excl.)
  • Version 81775ab858b4236c52c5da7e25cec6e49dd91b46 is affected
  • Version b57e150ac2eac791d5d187923b73dc2dafaf67fa is affected
  • Version 1fdbbe246daf348adaa0739463384b16ceba1fc0 is affected
  • affected from 5.15.109 to 5.15.220 (excl.)
  • affected from 5.10.179 to 5.11 (excl.)
  • affected from 5.18.18 to 5.19 (excl.)
  • affected from 5.19.2 to 5.20 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 6.0 is affected
  • unaffected from 0 to 6.0 (excl.)
  • unaffected from 5.15.220 to 5.15.* (incl.)
  • unaffected from 6.1.187 to 6.1.* (incl.)
  • unaffected from 6.6.156 to 6.6.* (incl.)
  • unaffected from 6.12.108 to 6.12.* (incl.)
  • unaffected from 6.18.49 to 6.18.* (incl.)
  • unaffected from 7.1.13 to 7.1.* (incl.)
  • unaffected from 7.2.3 to 7.2.* (incl.)
  • unaffected from 7.3-rc1 to * (incl.)

References