{
  "affected": [
    {
      "ranges": [
        {
          "events": [
            {
              "introduced": "864690cf4dd62482b6dd049d82c509886c904303"
            },
            {
              "fixed": "35ba43b541117bfb595e4b807ba447cf4335cc7d"
            },
            {
              "fixed": "f2ebfd5cc87f1393a30c8b8b0a6c20cb22cffa97"
            },
            {
              "fixed": "56441f9e08ad68697295b8835266d2bc48ab59b5"
            }
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "type": "GIT"
        }
      ]
    },
    {
      "package": {
        "ecosystem": "Linux",
        "name": "Kernel"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "6.18.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-68384.json"
  },
  "details": "In the Linux kernel, the following vulnerability has been resolved:\n\ndrm/xe/vf: Fix VF CCS attach/detach race with in-flight BO moves\n\nxe_bo_move() attaches VF CCS read/write batch buffers (BBs) to a BO\nafter it transitions NULL/SYSTEM -\u003e TT, and detaches them after it\ntransitions TT -\u003e SYSTEM. Both operations were done synchronously on\nthe CPU immediately after building the move's copy/clear fence,\nwithout waiting for that fence to signal. This creates two races with\nVF migration:\n\n- Attach happens too late relative to the copy job it is meant to\n  protect. If the copy job is submitted before the CCS BBs are\n  attached, a VF migration event that pauses execution mid-copy can\n  observe partially copied CCS metadata without the attach state\n  needed to correctly save/restore it.\n\n- Detach happens too early relative to the copy job that moves data\n  out of TT. The CCS BBs are torn down right after the copy fence is\n  obtained, while the actual blit may still be in flight. A VF\n  migration event that pauses execution mid-copy can then race the\n  save/restore path against the still-running blit, and the CCS BBs\n  it would need to make sense of the paused state have already been\n  removed.\n\nFix both races:\n\n- Move the attach call to before the copy/clear job is submitted, so\n  the CCS BBs are already registered by the time the copy runs. On\n  attach failure, unwind and bail out of the move. xe_migrate_ccs_rw_copy()\n  now takes the destination resource explicitly, since bo-\u003ettm.resource\n  is not updated to the new resource until after the move commits.\n\n- Detach only after explicitly waiting for the copy fence to signal,\n  instead of tearing down the CCS BBs immediately after obtaining it.\n\nWhile here, also fix xe_sriov_vf_ccs_attach_bo() to properly unwind and\npropagate errors: the per-context loop previously never broke out on\nerror, silently discarding earlier failures. Unwind by clearing each\nattached context directly via xe_migrate_ccs_rw_copy_clear() instead of\nreusing xe_sriov_vf_ccs_detach_bo(), which requires both contexts to be\nattached before it will clean up either one.\n\n(cherry picked from commit d45ad0aa7a1eb5d7288b5ed948b05695611dc39e)",
  "id": "CVE-2026-68384",
  "modified": "2026-08-12T03:51:43.855626990Z",
  "published": "2026-08-10T12:04:03.240Z",
  "references": [
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/35ba43b541117bfb595e4b807ba447cf4335cc7d"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/56441f9e08ad68697295b8835266d2bc48ab59b5"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/f2ebfd5cc87f1393a30c8b8b0a6c20cb22cffa97"
    },
    {
      "type": "ADVISORY",
      "url": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/68xxx/CVE-2026-68384.json"
    },
    {
      "type": "ADVISORY",
      "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-68384"
    },
    {
      "type": "PACKAGE",
      "url": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git"
    }
  ],
  "schema_version": "1.9.0",
  "summary": "drm/xe/vf: Fix VF CCS attach/detach race with in-flight BO moves"
}