CVE-2026-97446: ACPICA: Fix NULL pointer dereference in acpi_ns_custom_package()

Published Sep 24, 2026
·
Updated

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

ACPICA: Fix NULL pointer dereference in acpinscustompackage()

acpinscustompackage() unconditionally dereferences the first element of the package to read the BIX version number, without checking for NULL:

if ((Elements)->Common.Type != ACPITYPEINTEGER)

When firmware returns a BIX package whose first element is an unresolvable reference, ACPICA evaluates that entry to NULL. acpinsremovenullelements() does not strip NULL entries for ACPIPTYPECUSTOM packages (fixed-position format would break if elements were shifted), so acpinscustompackage() sees the NULL and causes a crash.

Add a NULL check for the first element (version field) before dereferencing it. The caller then receives AEAMLOPERANDTYPE instead of crashing.

Affected Software

1 affected component
Linux Linux kernel

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Compensating control

    In acpi_ns_custom_package(), check whether the first package element is NULL before dereferencing it or reading the _BIX version; if it is NULL or its type is not ACPI_TYPE_INTEGER, return AE_AML_OPERAND_TYPE instead of dereferencing it.

Event History

Sep 24, 2026
CVE Published
via MITRE·04:04 PM
Data Sourced
via MITRE·04:04 PM
Description
Data Sourced
via NVD·05:17 PM
Description

Frequently Asked Questions

1

What conditions are required to trigger the crash?

Firmware must return a _BIX package whose first element is an unresolvable reference. ACPICA evaluates that element to NULL, and the vulnerable package-validation path dereferences it while reading the _BIX version field.

2

What is the impact after the fix?

Instead of crashing on the NULL element, the caller receives the ACPICA error AE_AML_OPERAND_TYPE. The fixed behavior preserves the package's fixed-position layout rather than removing the NULL entry.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203