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

fuse-uring: Avoid queue->stopped races and set/read that value under lock

There are several readers of queue->stopped that check the value
under lock, but fuse_uring_commit_fetch() did not and actually
the value was not set under the lock in fuse_uring_abort_end_requests()
either. Especially in fuse_uring_commit_fetch it is important
to check under a lock, because due to races 'struct fuse_req'
might be freed with fuse_request_end, but another thread/cpu
might already do teardown work.
Published: 2026-07-25
Score: 7.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

A race condition (CWE-362) exists in the Linux kernel’s fuse‑uring subsystem where the queue->stopped flag is accessed and modified without proper locking. The missing lock can allow one thread to free a struct fuse_req while another thread is still processing it, resulting in a use‑after‑free or memory corruption that can cause the kernel to crash.

Affected Systems

All Linux kernel versions that have not yet incorporated the commit that fixed the race in fuse‑uring, affecting standard kernel configurations and any configuration that enables fuse‑uring support. The flaw exists only in the kernel; based on the description, it is inferred that user‑space applications that rely on fuse‑uring can indirectly trigger the condition. The affected products include all distributions using the Linux kernel and any custom builds that enable fuse‑uring.

Risk and Exploitability

The CVSS score of 7.8 indicates a high severity that could lead to denial of service if the race is triggered. The EPSS score is < 1 %, suggesting a low likelihood of exploitation in the wild, and the vulnerability is not listed in CISA KEV. The attack vector is likely limited to privileged or kernel‑context attackers who can induce the race, such as through crafted fuse‑uring requests. An exploit could cause the kernel to crash, resulting in loss of availability for the affected system.

Generated by OpenCVE AI on August 13, 2026 at 10:44 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a version that includes the fuse‑uring race‑condition fix (e.g., commit 39c8e925b2… or later).
  • If an update is not immediately feasible, disable fuse‑uring support by removing or unloading the fuse_uring module or compiling the kernel without fuse‑uring support.
  • If your environment cannot upgrade or disable fuse‑uring, apply the upstream patch manually or request a backport from your vendor.

Generated by OpenCVE AI on August 13, 2026 at 10:44 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Wed, 12 Aug 2026 16:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362

Wed, 29 Jul 2026 00:15:00 +0000


Mon, 27 Jul 2026 05:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.8, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'}


Sat, 25 Jul 2026 09:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: fuse-uring: Avoid queue->stopped races and set/read that value under lock There are several readers of queue->stopped that check the value under lock, but fuse_uring_commit_fetch() did not and actually the value was not set under the lock in fuse_uring_abort_end_requests() either. Especially in fuse_uring_commit_fetch it is important to check under a lock, because due to races 'struct fuse_req' might be freed with fuse_request_end, but another thread/cpu might already do teardown work.
Title fuse-uring: Avoid queue->stopped races and set/read that value under lock
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-05T12:40:21.406Z

Reserved: 2026-07-19T15:36:31.774Z

Link: CVE-2026-64260

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Analyzed

Published: 2026-07-25T10:17:06.137

Modified: 2026-08-12T15:52:56.543

Link: CVE-2026-64260

cve-icon Redhat

Severity :

Publid Date: 2026-07-25T00:00:00Z

Links: CVE-2026-64260 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-13T10:45:04Z

Weaknesses
  • CWE-362

    Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')

  • CWE-413

    Improper Resource Locking