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

drm/amdgpu: disallow multiple FENCE chunks in one submit

amdgpu_cs_pass1() dispatches on chunk_id once per chunk without
rejecting repeated ids. p->uf_bo is a single-slot field, so a
submission carrying two AMDGPU_CHUNK_ID_FENCE chunks runs
amdgpu_cs_p1_user_fence() twice, and the second run overwrites
p->uf_bo with a freshly referenced BO without dropping the reference
taken by the first.

amdgpu_cs_parser_fini() only unrefs the final p->uf_bo, so every FENCE
chunk but the last leaks a BO reference. The leaked BO outlives handle
close and process exit.

Reject duplicate FENCE chunks the same way commit fec5f8e8c6bc
("drm/amdgpu: disallow multiple BO_HANDLES chunks in one submit") did
for p->bo_list.

(cherry picked from commit 665b1fc2a1845206408f9a2c6da67101789edb82)
Published: 2026-08-26
Score: n/a
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The amdgpu driver mistakenly permits duplicate FENCE chunks within a single command submission. Each duplicate updates the driver’s temporary buffer object without releasing the reference taken for earlier chunks, causing a leaked buffer reference that remains after the handle is closed and after the process exits. The leak can grow over time and potentially exhaust kernel memory, which may impair system availability.

Affected Systems

The flaw targets the Linux kernel’s open‑source amdgpu graphics driver. Any unpatched kernel that includes amdgpu is vulnerable. The advisory does not specify exact kernel versions, so all Linux installations using the unpatched driver could be affected.

Risk and Exploitability

The EPSS score is not available and the issue is not listed in CISA’s KEV catalog, indicating a low current exploitation awareness. The likely attack vector is local: an adversary that can submit graphics commands with duplicate fence entries could trigger the leak and gradually consume kernel memory, but no clear remote exploitation path is documented.

Generated by OpenCVE AI on August 26, 2026 at 16:53 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a version that includes the amdgpu driver patch from commit 665b1fc2...
  • If a kernel update is not immediately possible, limit or disable GPU‑intensive applications that generate fence submissions to reduce the chance of resource exhaustion.
  • Enable kernel FENCE tracing or monitor BO reference counts to detect potential leaks during GPU use.

Generated by OpenCVE AI on August 26, 2026 at 16:53 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Wed, 26 Aug 2026 17:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-775

Wed, 26 Aug 2026 14:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: drm/amdgpu: disallow multiple FENCE chunks in one submit amdgpu_cs_pass1() dispatches on chunk_id once per chunk without rejecting repeated ids. p->uf_bo is a single-slot field, so a submission carrying two AMDGPU_CHUNK_ID_FENCE chunks runs amdgpu_cs_p1_user_fence() twice, and the second run overwrites p->uf_bo with a freshly referenced BO without dropping the reference taken by the first. amdgpu_cs_parser_fini() only unrefs the final p->uf_bo, so every FENCE chunk but the last leaks a BO reference. The leaked BO outlives handle close and process exit. Reject duplicate FENCE chunks the same way commit fec5f8e8c6bc ("drm/amdgpu: disallow multiple BO_HANDLES chunks in one submit") did for p->bo_list. (cherry picked from commit 665b1fc2a1845206408f9a2c6da67101789edb82)
Title drm/amdgpu: disallow multiple FENCE chunks in one submit
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-26T14:37:13.367Z

Reserved: 2026-08-26T14:34:25.765Z

Link: CVE-2026-80539

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-26T15:17:08.133

Modified: 2026-08-26T15:17:08.133

Link: CVE-2026-80539

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-26T18:00:04Z

Weaknesses
  • CWE-775

    Missing Release of File Descriptor or Handle after Effective Lifetime