CVE-2026-98002

Source
https://cve.org/CVERecord?id=CVE-2026-98002
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-98002.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-98002
Downstream
Published
2026-09-25T10:23:29Z
Modified
2026-09-26T03:48:31Z
Severity
  • 7.8 (High) CVSS_V3 - CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H CVSS Calculator
Summary
iommu/amd: Fix ineffective error check in nested domain allocation
Details

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

iommu/amd: Fix ineffective error check in nested domain allocation

amd_iommu_pdom_id_alloc() returns an int: a domain ID on success, or the negative errno from ida_alloc_range() when the ID space is exhausted or memory is short. amd_iommu_alloc_domain_nested() stores that return value in gdom_info->hdom_id, which is a u32, and only then tests it:

gdom_info->hdom_id = amd_iommu_pdom_id_alloc();
if (gdom_info->hdom_id <= 0) {

The assignment discards the sign, so -ENOSPC becomes 0xffffffe4 and the test never fires. The nested domain is then set up with a host domain ID that was never allocated, instead of the allocation failing with -ENOSPC.

Keep the value in an int, test it there, and store it only once it is known to be valid, which is what the other amd_iommu_pdom_id_alloc() callers already do.

Database specific
{
    "cna_assigner":  "Linux",
    "osv_generated_from":  "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/98xxx/CVE-2026-98002.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
757d2b1fdf5b7d6eead5963a49b5780617987ab8
Fixed
80c231f5577229d1e90a1e312b3095f9502f8625
Fixed
fa5c0827f0b7bac6d0a188f10118151769ae68fd

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-98002.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
7.0.0
Fixed
7.2.7

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-98002.json"