CVE Catalog

CVE-2026-98088

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, the scsi mpt3sas driver's _base_assign_reply_queues() calls cpumask_of_node() with the value returned by dev_to_node(), which can be NUMA_NO_NODE (-1) on systems without NUMA topology information for the PCI device. Passing -1 to cpumask_of_node() causes an out-of-bounds array read of node_to_cpumask_map[-1], caught by UBSAN.

Risk Assessment

An out-of-bounds memory read may occur, leading to a kernel crash or system instability on single-socket boards without device-to-node affinity information.

Recommendation

Update the Linux kernel to a version with the fix that falls back to cpu_online_mask when no NUMA node is available, rather than assuming dev_to_node() always returns a valid node index.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: scsi: mpt3sas: Avoid out-of-bounds cpumask_of_node() call in _base_assign_reply_queues() dev_to_node() can return NUMA_NO_NODE (-1) on systems without NUMA topology information for the PCI device, such as single-socket boards that don't expose device-to-node affinity. Passing -1 directly into cpumask_of_node() indexes node_to_cpumask_map[-1], an out-of-bounds array read caught by UBSAN: UBSAN: array-index-out-of-bounds in arch/x86/include/asm/topology.h:72:28 index -1 is out of range for type 'cpumask *[1024]' Fall back to cpu_online_mask when no NUMA node is available, rather than assuming dev_to_node() always returns a valid node index.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS