CVE-2026-64265 PUBLISHED

fuse: clear intr_entry in fuse_resend and fuse_remove_pending_req

Assigner: Linux
Reserved: 19.07.2026 Published: 25.07.2026 Updated: 25.07.2026

In the Linux kernel, the following vulnerability has been resolved:

fuse: clear intr_entry in fuse_resend and fuse_remove_pending_req

When fuse_resend() moves a request from fpq->processing back to fiq->pending, it sets FR_PENDING and clears FR_SENT but does not remove the requests intr_entry from fiq->interrupts. If the request had FR_INTERRUPTED set from a prior signal, intr_entry remains dangling on fiq->interrupts. When the requesting task then receives a fatal signal, fuse_remove_pending_req() sees FR_PENDING=1, removes the request from fiq->pending and frees it via the refcount path, also without cleaning intr_entry. The stale intr_entry causes use-after-free when fuse_read_interrupt() iterates fiq->interrupts: - list_del_init(&req->intr_entry) -> UAF write on freed slab - req->in.h.unique -> UAF read, data leaked to userspace

Remove intr_entry from fiq->interrupts in fuse_resend() for interrupted requests before they are placed back on fiq->pending.

Add a WARN_ON if the intr_entry is not empty on request destruction.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 760eac73f9f69aa28fcb3050b4946c2dcc656d12 to 1d8ecd0cd696a5df0b2f72046a4ccee5d2a8ec2c (excl.)
  • affected from 760eac73f9f69aa28fcb3050b4946c2dcc656d12 to 7366e6f4d2b4c7002b13fb01219e83679dad4127 (excl.)
  • affected from 760eac73f9f69aa28fcb3050b4946c2dcc656d12 to 893479015cb6442fd389d3b553ab3036c9541715 (excl.)
  • affected from 760eac73f9f69aa28fcb3050b4946c2dcc656d12 to f8fce75fedf73ac72aa09163deb8f4291fdcaad2 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 6.9 is affected
  • unaffected from 0 to 6.9 (excl.)
  • unaffected from 6.12.96 to 6.12.* (incl.)
  • unaffected from 6.18.39 to 6.18.* (incl.)
  • unaffected from 7.1.4 to 7.1.* (incl.)
  • unaffected from 7.2-rc1 to * (incl.)

References