Bug 2482001 (CVE-2026-45908)

Summary: CVE-2026-45908 kernel: accel/amdxdna: Fix memory leak in amdxdna_ubuf_map
Product: [Other] Security Response Reporter: OSIDB Bzimport <bzimport>
Component: vulnerabilityAssignee: Product Security <prodsec-ir-bot>
Status: NEW --- QA Contact:
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: unspecifiedCC: rhel-process-autobot, watson-tool-maintainers
Target Milestone: ---Keywords: Security
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: ---
Doc Text:
A flaw was found in the Linux kernel's accel/amdxdna component. The `amdxdna_ubuf_map` function allocates memory for scatter-gather (SG) and internal SG table structures. However, it fails to free this allocated memory if subsequent operations, such as `sg_alloc_table_from_pages` or `dma_map_sgtable`, encounter an error. This memory leak can be triggered by a local attacker, potentially leading to system instability or a Denial of Service (DoS) due to excessive memory consumption.
Story Points: ---
Clone Of: Environment:
Last Closed: Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description OSIDB Bzimport 2026-05-27 15:06:27 UTC
In the Linux kernel, the following vulnerability has been resolved:

accel/amdxdna: Fix memory leak in amdxdna_ubuf_map

The amdxdna_ubuf_map() function allocates memory for sg and
internal sg table structures, but it fails to free them if subsequent
operations (sg_alloc_table_from_pages or dma_map_sgtable) fail.