{
  "affected": [
    {
      "ranges": [
        {
          "events": [
            {
              "introduced": "24fe962c86f55347385933a1b06ca71b60854690"
            },
            {
              "fixed": "3bca70235a706de76fe9a81defd37d987062c686"
            },
            {
              "fixed": "2cd945492bc5b472e814272e88b731bb9bb17629"
            },
            {
              "fixed": "952b5d36f6a298f57c52a59e72076c69386a8aaf"
            }
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "type": "GIT"
        }
      ]
    },
    {
      "package": {
        "ecosystem": "Linux",
        "name": "Kernel"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "6.14.0"
            },
            {
              "fixed": "6.18.42"
            }
          ],
          "type": "ECOSYSTEM"
        },
        {
          "events": [
            {
              "introduced": "6.19.0"
            },
            {
              "fixed": "7.1.6"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    }
  ],
  "database_specific": {
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/68xxx/CVE-2026-68095.json"
  },
  "details": "In the Linux kernel, the following vulnerability has been resolved:\n\nfuse-uring: fix race between registration and connection abortion\n\nThis fixes this race:\n- thread a: io_uring_enter -\u003e register sqe -\u003e\n  fuse_uring_create_ring_ent -\u003e allocate ent but doesn't grab queue_ref\n  yet\n- thread b: fuse_conn_destroy() -\u003e fuse_chan_abort() -\u003e\n  fuse_uring_abort() is a no-op due to queue ref being 0\n- thread a: grabs the queue_ref, queue_ref is now 1, rest of\n  fuse_uring_do_register() logic executes\n- thread b: fuse_chan_abort() returns, fuse_chan_wait_aborted() now runs\n  and calls\n  \"wait_event(ring-\u003estop_waitq, atomic_read(\u0026ring-\u003equeue_refs) == 0);\"\nThe abort/unmount thread will hang indefinitely in unkillable state as\nnothing will decrement queue_refs or wake stop_waitq, and the ring,\nqueue, and ent are leaked.\n\nFix this by checking fch-\u003econnected under fch-\u003elock after the created\nent has grabbed a ref count on the queue. This ensures that in the\nscenario above, it is guaranteed that we either release the queue ref\nand wake up stop_waitq (in case fuse_chan_wait_aborted() is already\nwaiting) in fuse_uring_do_register() when we detect !fch-\u003econnected, or\nif the connection is aborted after the check, it is guaranteed that the\nasync teardown worker will be running in the background cleaning up ents\nand decrementing the ent's ref on the queue, which will unblock the\neventual queue and ring teardown.",
  "id": "CVE-2026-68095",
  "modified": "2026-08-12T03:51:44.274979626Z",
  "published": "2026-08-10T11:58:08.590Z",
  "references": [
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/2cd945492bc5b472e814272e88b731bb9bb17629"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/3bca70235a706de76fe9a81defd37d987062c686"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/952b5d36f6a298f57c52a59e72076c69386a8aaf"
    },
    {
      "type": "ADVISORY",
      "url": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/68xxx/CVE-2026-68095.json"
    },
    {
      "type": "ADVISORY",
      "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-68095"
    },
    {
      "type": "PACKAGE",
      "url": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git"
    }
  ],
  "schema_version": "1.9.0",
  "summary": "fuse-uring: fix race between registration and connection abortion"
}