CVE-2026-53325 Details
Description
In the Linux kernel, the following vulnerability has been resolved: agp/amd64: Fix broken error propagation in agp_amd64_probe() A NULL pointer dereference was observed in the AMD64 AGP driver when running in a virtualized environment (e.g. qemu/kvm) without a physical AMD northbridge. The crash occurs in amd64_fetch_size() when attempting to dereference the pointer returned by node_to_amd_nb(0). The root cause of this crash is broken error propagation in agp_amd64_probe(): When no AMD northbridges are found, cache_nbs() correctly returns -ENODEV. However, the probe function erroneously checks the return value against exactly -1, rather than < 0. As a result, the hardware absence error is masked, allowing the driver to improperly proceed with initialization. It eventually calls agp_add_bridge(), which invokes amd64_fetch_size(). Since the hardware does not exist, node_to_amd_nb(0) returns NULL, leading to a General Protection Fault (GPF) when accessing its ->misc member. Fix the issue by correcting the error check in agp_amd64_probe() to abort properly when cache_nbs() returns any negative error code. This prevents the driver from erroneously proceeding without hardware, thereby avoiding the subsequent NULL pointer dereference at its source.
A NULL pointer dereference vulnerability has been identified in the Linux kernel AMD64 AGP driver. This issue occurs when the driver is used in a virtualized environment, such as QEMU/KVM, without a physical AMD northbridge. The vulnerability arises from improper error handling in the 'agp_amd64_probe()' function. When no AMD northbridges are detected, the function should return an error, but it incorrectly allows the initialization process to continue. This oversight leads to a crash when the driver attempts to access a non-existent hardware component, causing a General Protection Fault by dereferencing a NULL pointer.
The vulnerability has been fixed in the Linux kernel. Users should upgrade to the latest version of the stable Linux kernel where this issue has been addressed.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/0aa9b27c454c53074cde592eaceb442d30341585 | kernel.org | Patch |
| https://git.kernel.org/stable/c/1d7d45050e14083c1de1460c93f4063c1f0bca7b | kernel.org | Patch |
| https://git.kernel.org/stable/c/3e844a63668d1c3d10a9d347d7ebf161b2f91c84 | kernel.org | Patch |
| https://git.kernel.org/stable/c/53483a9f4ee9eeb18aa866ec16cce79e136987e1 | kernel.org | Patch |
| https://git.kernel.org/stable/c/564b3b3f6565313eb6fa5355ffd037d6fb27897f | kernel.org | Patch |
| https://git.kernel.org/stable/c/b08472db93b1ccff84a7adec5779d47f0e9d3a30 | kernel.org | Patch |
| https://git.kernel.org/stable/c/ce800993af477fc24187349c6a20d3073140b759 | kernel.org | Patch |
| https://git.kernel.org/stable/c/cefe535a60a2e00e09f4b2689b0c8ffc6912459a | kernel.org | Patch |
| https://git.kernel.org/stable/c/eb045714bc6a2bbb0befb7a31b996a196e188869 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-476 | NULL Pointer Dereference | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 2.6.18, < 5.10.260 >= 5.11, < 5.15.211 >= 5.16, < 6.1.177 >= 6.2, < 6.6.144 >= 6.7, < 6.12.95 >= 6.13, < 6.18.37 >= 6.19, < 7.0.14 >= 7.1, < 7.1.2 |
CPE
Remediation
| |
Change History
4 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 17, 2026 | CVE Modified | kernel.org |
| Jul 6, 2026 | Initial Analysis | [email protected] |
| Jul 4, 2026 | CVE Modified | kernel.org |
| Jun 29, 2026 | New CVE Received | kernel.org |