CVE-2026-64264

Source
https://cve.org/CVERecord?id=CVE-2026-64264
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-64264.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2026-64264
Downstream
Related
Published
2026-07-25T08:49:13Z
Modified
2026-08-18T03:30:50Z
Summary
fuse-uring: fix EFAULT clobber in fuse_uring_commit
Details

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

fuse-uring: fix EFAULT clobber in fuse_uring_commit

copy_from_user() returns the number of bytes not copied as an unsigned residual on failure (1..sizeof(struct fuse_out_header)). fuse_uring_commit stores that residual in ssize_t err, sets req->out.h.error to -EFAULT, then jumps to out: with err still holding the positive residual.

err = copy_from_user(&req->out.h, &ent->headers->in_out,
                     sizeof(req->out.h));
if (err) {
    req->out.h.error = -EFAULT;
    goto out;          /* err is the positive residual */
}
...
out:
    fuse_uring_req_end(ent, req, err);

fuse_uring_req_end() then runs

if (error)
    req->out.h.error = error;

which overwrites the just-assigned -EFAULT with the positive residual. FUSE callers such as fuse_simple_request() test err < 0 to detect failure, so the positive value is interpreted as success and the caller proceeds with an uninitialised or partial req->out.args.

Fix by assigning err = -EFAULT in the failure branch before jumping to out, so fuse_uring_req_end() receives a negative errno and sets req->out.h.error to -EFAULT.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/64xxx/CVE-2026-64264.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
c090c8abae4b6b77a1bee116aa6c385456ebef96
Fixed
0483fffdeeb363f320e6bf5fc0f0306007507306
Fixed
fe604c08d874648a69187f6380e5c7858627dc04
Fixed
3a0a8bc51a13951c5141262bf770eeea3e0b6228

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-64264.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
6.14.0
Fixed
6.18.39
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.4

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2026-64264.json"