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

drm/amdgpu: check amdgpu_vm_bo_find() result in GET_MAPPING_INFO

The AMDGPU_GEM_OP_GET_MAPPING_INFO path of amdgpu_gem_op_ioctl() looks
up the bo_va for the buffer object in the caller's VM via
amdgpu_vm_bo_find(), but uses the returned pointer without checking it.

amdgpu_vm_bo_find() returns NULL when the BO has no bo_va in that VM,
which is the normal case for a BO that has never been mapped. The result
is fed straight into amdgpu_vm_bo_va_for_each_valid_mapping(), which
expands to list_for_each_entry(mapping, &(bo_va)->valids, list) and
dereferences bo_va, causing a NULL pointer dereference.

This is reachable by any process able to issue the ioctl (render group)
simply by requesting mapping info for an unmapped BO.

Return -ENOENT when no bo_va is found, jumping to out_exec so the
drm_exec context and GEM object reference are released.

(cherry picked from commit 528b19377affc1cc7362a70a254c1dda793595f9)
Published: 2026-08-10
Score: n/a
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability is a null pointer dereference in the AMDGPU driver when an unmapped buffer object is queried for mapping info via an ioctl. Because the return value from amdgpu_vm_bo_find() is not checked, the code dereferences a NULL pointer, causing a kernel crash. This results in a complete service interruption of the affected system but does not provide code execution, data compromise, or privilege escalation.

Affected Systems

All Linux kernel builds that include the AMDGPU driver and have not incorporated the fix recorded as commit 528b19377affc1cc7362a70a254c1dda793595f9 are susceptible. This includes any distribution shipping a kernel older than that commit while running a GPU supported by AMDGPU. Exact version ranges are not listed, so administrators should consult the kernel change log for the mentioned commit to verify whether their kernel is affected.

Risk and Exploitability

The flaw can be exercised by any process with permission to call the DRM_IOCTL_AMDGPU_GEM_OP ioctl, typically users in the render group. Although EPSS data is unavailable and it is not in the CISA KEV catalog, the attack requires only local access and results in a denial of service by crashing the kernel. The CVSS score is not disclosed, but the nature of the NULL pointer dereference in privileged kernel code implies a high severity level.

Generated by OpenCVE AI on August 10, 2026 at 15:29 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Install a kernel version that includes commit 528b19377affc1cc7362a70a254c1dda793595f9 or newer.
  • If an update cannot be applied immediately, limit access to the AMDGPU ioctl to privileged users only or disable the AMDGPU driver to prevent execution of the vulnerable code.
  • Monitor kernel logs for amdgpu‑related panic events and configure automated recovery or reboot to minimize downtime.

Generated by OpenCVE AI on August 10, 2026 at 15:29 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Mon, 10 Aug 2026 15:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-476

Mon, 10 Aug 2026 12:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: drm/amdgpu: check amdgpu_vm_bo_find() result in GET_MAPPING_INFO The AMDGPU_GEM_OP_GET_MAPPING_INFO path of amdgpu_gem_op_ioctl() looks up the bo_va for the buffer object in the caller's VM via amdgpu_vm_bo_find(), but uses the returned pointer without checking it. amdgpu_vm_bo_find() returns NULL when the BO has no bo_va in that VM, which is the normal case for a BO that has never been mapped. The result is fed straight into amdgpu_vm_bo_va_for_each_valid_mapping(), which expands to list_for_each_entry(mapping, &(bo_va)->valids, list) and dereferences bo_va, causing a NULL pointer dereference. This is reachable by any process able to issue the ioctl (render group) simply by requesting mapping info for an unmapped BO. Return -ENOENT when no bo_va is found, jumping to out_exec so the drm_exec context and GEM object reference are released. (cherry picked from commit 528b19377affc1cc7362a70a254c1dda793595f9)
Title drm/amdgpu: check amdgpu_vm_bo_find() result in GET_MAPPING_INFO
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-10T12:01:50.777Z

Reserved: 2026-07-30T09:28:09.379Z

Link: CVE-2026-68275

cve-icon Vulnrichment

No data.

cve-icon NVD

No data.

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-10T15:30:05Z

Weaknesses