CVE Catalog

CVE-2026-90123

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, the irq_domain_activate() callback for the ast2700-intc irqchip calls fwnode_device_is_compatible(), which allocates memory with GFP_KERNEL. This occurs with interrupts disabled and a raw spinlock held, which is not allowed and may cause allocation issues.

Risk Assessment

Allocating memory with interrupts disabled and a lock held may cause deadlocks or system instability during interrupt configuration.

Recommendation

Update the Linux kernel to a version with the fix that replaces fwnode_device_is_compatible() with the non-allocating of_device_is_compatible().

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: irqchip/ast2700-intc: Avoid allocating in the irq_domain activate() callback The interrupt core calls the irq_domain_activate() callback from __setup_irq() with desc->lock held and interrupts disabled. Both aspeed_intc1_irq_domain_activate() and aspeed_intc0_resolve_route() test a compatible string with fwnode_device_is_compatible(). fwnode_device_is_compatible() invokes fwnode_property_match_string(), which allocates with GFP_KERNEL. That's obviously not possible with interrupts disabled and a raw spinlock held. Both call sites are only ever handed OF nodes, so use of_device_is_compatible() instead: it walks the property in place and does not allocate.

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