This CVE captures a NULL pointer dereference in Intel's xe GPU driver during VF (Virtual Function) teardown. The bug triggers when a memory-mapped buffer is unmapped via exit_mmap while the VF device has already progressed through unbind teardown. The function xe_sriov_vf_ccs_detach_bo() attempts to access device resources that no longer exist, causing the kernel NULL deref. The root cause is straightforward: driver cleanup code that makes implicit assumptions about execution context — specifically, that the device remains bound when BO (buffer object) release propagates through the TTM cleanup chain. This assumption is violated during hot-unplug or rapid device rebinding scenarios with active GPU mappings. The fix adds runtime drm_dev state guards to verify device availability before accessing driver-specific resources — this is the canonical kernel pattern for handling subsystem boundary crossings where no static ordering guarantees exist. The 7.8 CVSS reflects genuine kernel impact (NULL deref can panic or corrupt state), but the 0.00129 EPSS indicates this is difficult to trigger outside specific stress conditions. What should concern you more than this specific bug: this pattern has now appeared in three driver families (i915, amdgpu, and xe) across a decade, each in VF/SRIOV-specific code paths that received less testing than primary function paths. The recurring pattern suggests these VF cleanup paths carry inherited assumptions from older drivers without systematic re-validation during driver migrations. Audit your VF-specific code paths for structurally identical assumptions — if xe_sriov_vf_ccs_detach_bo() lacked guards, adjacent VF functions almost certainly do too. Prioritize checking any driver code that runs during exit_mmap or similar teardown paths where the device binding state cannot be guaranteed.
CVE-2026-68305
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedIn the Linux kernel, the following vulnerability has been resolved: drm/xe/vf: Add drm_dev guards when detaching CCS read/write buffers CCS read/write buffers are freed during BO destruction. In some cases, BOs may be destroyed after the device is unbound but while the DRM structure remains valid, leading to NULL pointer dereferences when accessing device resources. BUG: kernel NULL pointer dereference, address: 0000000000000000 PGD 0 P4D 0 Oops: Oops: 0000 [#1] SMP NOPTI CPU: 0 UID: 0 PID: 9376 Comm: xe_pat Not tainted 7.2.0-rc2+ #1 PREEMPT(lazy) RIP: 0010:xe_sriov_vf_ccs_rw_update_bb_addr+0x4d/0xa0 [xe] RSP: 0018:ffffcf304110b9c8 EFLAGS: 00010246 RAX: ffff8a85c38a0a00 RBX: 00000000810ef000 RCX: 0000000000000000 RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8a85c39c1888 RBP: ffffcf304110b9e8 R08: 0000000000000000 R09: 0000000000000000 R10: 0000000000000000 R11: 0000000000000000 R12: ffff8a85c39c1888 R13: 0000000000000000 R14: ffff8a85c39b4f28 R15: ffff8a85c3885000 FS: 0000000000000000(0000) GS:ffff8a878b809000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000000 CR3: 000000010314a002 CR4: 0000000000772ef0 PKRU: 55555554 Call Trace: <TASK> xe_migrate_ccs_rw_copy_clear+0x98/0x120 [xe] xe_sriov_vf_ccs_detach_bo+0x2c/0x60 [xe] xe_ttm_bo_delete_mem_notify+0xc8/0xe0 [xe] ttm_bo_cleanup_memtype_use+0x26/0x80 [ttm] ttm_bo_release+0x29e/0x2d0 [ttm] ttm_bo_fini+0x39/0x70 [ttm] xe_gem_object_free+0x1f/0x30 [xe] drm_gem_object_free+0x1d/0x40 ttm_bo_vm_close+0x5f/0x90 [ttm] remove_vma+0x2c/0x70 tear_down_vmas+0x63/0xf0 exit_mmap+0x20d/0x3f0 __mmput+0x45/0x170 mmput+0x31/0x40 do_exit+0x2ba/0xac0 do_group_exit+0x2d/0xb0 __x64_sys_exit_group+0x18/0x20 x64_sys_call+0x14a0/0x2390 do_syscall_64+0xdd/0x640 ? count_memcg_events+0xea/0x240 ? handle_mm_fault+0x1ec/0x2f0 (cherry picked from commit 1ae415a6eefe5004954a1d352b1718faca8844ef)
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysisA detailed technical summary for this CVE is being prepared.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Local
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
From vendor dataThere is no version to upgrade to and no patch to apply. Every affected install stays exposed until the vendor ships a fix — or somebody else builds one.
Free. We build fixes in the order the community asks for them — and we’ll tell you the moment this one lands.
We develop and verify an original fix where the vendor hasn’t, from $1,950. Deployed to your staging first — never straight to production.
Scope it with usSee what else the community needs solved on the solutions-needed board.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-68305 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesThis CVE captures a NULL pointer dereference in Intel's xe GPU driver during VF (Virtual Function) teardown. The bug triggers when a memory-mapped buffer is unmapped via exit_mmap while the VF device has already progressed through unbind teardown. The function xe_sriov_vf_ccs_detach_bo() attempts to access device resources that no longer exist, causing the kernel NULL deref. The root cause is straightforward: driver cleanup code that makes implicit assumptions about execution context — specifically, that the device remains bound when BO (buffer object) release propagates through the TTM cleanup chain. This assumption is violated during hot-unplug or rapid device rebinding scenarios with active GPU mappings. The fix adds runtime drm_dev state guards to verify device availability before accessing driver-specific resources — this is the canonical kernel pattern for handling subsystem boundary crossings where no static ordering guarantees exist. The 7.8 CVSS reflects genuine kernel impact (NULL deref can panic or corrupt state), but the 0.00129 EPSS indicates this is difficult to trigger outside specific stress conditions. What should concern you more than this specific bug: this pattern has now appeared in three driver families (i915, amdgpu, and xe) across a decade, each in VF/SRIOV-specific code paths that received less testing than primary function paths. The recurring pattern suggests these VF cleanup paths carry inherited assumptions from older drivers without systematic re-validation during driver migrations. Audit your VF-specific code paths for structurally identical assumptions — if xe_sriov_vf_ccs_detach_bo() lacked guards, adjacent VF functions almost certainly do too. Prioritize checking any driver code that runs during exit_mmap or similar teardown paths where the device binding state cannot be guaranteed.
Practitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-68305 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data