CVE-2026-53172: accel/ethosu: fix IFM region index out-of-bounds in command stream parser

Published Jun 25, 2026
·
Updated

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

accel/ethosu: fix IFM region index out-of-bounds in command stream parser

NPUSETIFMREGION extracts the region index with param & 0x7f, giving a maximum value of 127. However regionsize[] and outputregion[] in struct ethosuvalidatedcmdstreaminfo are both sized to NPUBASEPREGIONMAX (8), giving valid indices [0..7].

Every other region assignment in the same switch uses param & 0x7: NPUSETOFMREGION: st.ofm.region = param & 0x7; NPUSETIFM2REGION: st.ifm2.region = param & 0x7; NPUSETWEIGHTREGION: st.weight[0].region = param & 0x7; NPUSETSCALEREGION: st.scale[0].region = param & 0x7;

The 0x7f mask on IFM is inconsistent and appears to be a typo.

featmatrixlength() and calcsizes() use the region index directly as an array subscript into the kzalloc'd info struct: info->regionsize[fm->region] = max(...);

A userspace caller supplying NPUSETIFMREGION with param > 7 causes a write up to 1278 = 1016 bytes past the start of regionsize[], corrupting adjacent kernel heap data.

Fix by applying the same & 0x7 mask used by all other region assignments.

Affected Software

8 affected components
Linux Linux kernel (ethosu)
Linux Linux kernel>=6.19<7.0.13
Linux Linux kernel=7.1-rc1
Linux Linux kernel=7.1-rc2
Linux Linux kernel=7.1-rc3
Linux Linux kernel=7.1-rc4
Linux Linux kernel=7.1-rc5
Linux Linux kernel=7.1-rc6

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade accel/ethosu to a version that resolves this vulnerability.

    Patch fix IFM region index out-of-bounds in command stream parser
  2. Configuration

    Apply the same 0x7 mask to NPU_SET_IFM_REGION when extracting the IFM region index, so region index is computed as `st.ifm.region = param & 0x7` (consistent with NPU_SET_OFM_REGION / NPU_SET_SCALE_REGION / NPU_SET_WEIGHT_REGION using `param & 0x7`).

    Linux kernel (accel/ethosu) command stream parser IFM region index extraction mask for NPU_SET_IFM_REGION = param & 0x7

Event History

Jun 25, 2026
CVE Published
via MITRE·08:38 AM
Data Sourced
via MITRE·08:38 AM
DescriptionSeverity
Data Sourced
via NVD·09:16 AM
RemedyDescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

What is the severity of CVE-2026-53172?

The severity of CVE-2026-53172 is high with a score of 7.8.

2

What does CVE-2026-53172 affect?

CVE-2026-53172 affects the Linux kernel, specifically the accel/ethosu component.

3

How do I fix CVE-2026-53172?

To fix CVE-2026-53172, update the Linux kernel to a version that includes the patch for this vulnerability.

4

What kind of vulnerability is CVE-2026-53172?

CVE-2026-53172 is an out-of-bounds access vulnerability in the command stream parser of the Linux kernel.

5

What is the impact of CVE-2026-53172?

CVE-2026-53172 can lead to potential denial of service or arbitrary code execution due to the out-of-bounds access.

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