CVE-2026-64266

Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
25/07/2026
Last modified:
30/07/2026

Description

In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> fuse: re-lock request before returning from fuse_ref_folio()<br /> <br /> fuse_ref_folio() unlocks the request but does not re-lock it before<br /> returning. fuse_chan_abort() can end the request and the async end<br /> callback (eg fuse_writepage_free()) can free the args while the<br /> subsequent copy chain logic after fuse_ref_folio() accesses them,<br /> leading to use-after-free issues.<br /> <br /> Fix this by locking the request in fuse_ref_folio() before returning.