CVE-2023-53332: genirq/ipi: Fix NULL pointer deref in irq_data_get_affinity_mask()
In the Linux kernel, the following vulnerability has been resolved:
genirq/ipi: Fix NULL pointer deref in irq_data_get_affinity_mask()
If ipi_send_{mask|single}() is called with an invalid interrupt number, all
the local variables there will be NULL. ipi_send_verify() which is invoked
from these functions does verify its 'data' parameter, resulting in a
kernel oops in irq_data_get_affinity_mask() as the passed NULL pointer gets
dereferenced.
Add a missing NULL pointer check in ipi_send_verify()...
Found by Linux Verification Center (linuxtesting.org) with the SVACE static
analysis tool.
Security readout for executives and security teams
Plain-English summary
This Linux kernel flaw can crash affected systems when invalid interrupt data reaches the inter-processor interrupt path. The business impact is availability loss, not data theft. It requires local access according to the CVSS vector, so internet-facing exposure is not the primary concern.
Executive priority
Handle through normal kernel patch management with moderate priority. Escalate for shared hosting, CI runners, bastion-adjacent systems, and platforms running untrusted local workloads because the credible impact is service disruption.
Technical view
CVE-2023-53332 is a CWE-476 NULL pointer dereference in Linux genirq/ipi. Invalid interrupt numbers can leave local data NULL, and ipi_send_verify() previously dereferenced it through irq_data_get_affinity_mask(), causing a kernel oops. The fix adds a missing NULL check.
Likely exposure
Exposure is most relevant on Linux systems running affected kernel versions or unpatched downstream kernels. Risk is higher where local users, services, or untrusted workloads can reach kernel paths tied to interrupt handling. The source bundle does not identify specific distributions or appliances.
Exploitation context
The CVSS vector is local, low complexity, low privileges, no user interaction, with high availability impact. The bundle says KEV is false and provides no cited evidence of active exploitation. Treat this as a local denial-of-service risk unless vendor advisories state otherwise.
Researcher notes
Evidence is limited to the CVE record, CVSS data, and Linux stable references. The bundle identifies the root cause and fix direction, but does not provide distribution mappings, exploit observations, or affected configuration prerequisites beyond the kernel version data.
Mitigation direction
Apply Linux kernel stable updates containing the referenced fixes.
Check distribution or appliance vendor advisories for backported patches.
Prioritize shared, multi-user, and untrusted workload hosts.
Reduce unnecessary local access to sensitive Linux systems.
Schedule reboot or live-patch procedures as required by your kernel vendor.
Validation and detection
Inventory Linux kernel versions across servers and images.
Compare installed kernels with vendor advisories and fixed package versions.
Check whether referenced stable commits are included or backported.
Review logs for unexplained kernel oops events on affected hosts.
Confirm patched systems have booted into the updated kernel.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-476: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-476 · source CWE mapping
NULL Pointer Dereference
NULL Pointer Dereference represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.