CVE-2026-53172

Source
https://cve.org/CVERecord?id=CVE-2026-53172
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-53172.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-53172
Downstream
Published
2026-06-25T08:38:50.056Z
Modified
2026-07-08T08:09:45.627669880Z
Severity
  • 7.8 (High) CVSS_V3 - CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H CVSS Calculator
Summary
accel/ethosu: fix IFM region index out-of-bounds in command stream parser
Details

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 NPUBASEPREGION_MAX (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 127*8 = 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.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/53xxx/CVE-2026-53172.json",
    "cna_assigner": "Linux"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
5a5e9c0228e613f0ef2a58b9782d7c0ea8f1e58b
Fixed
ee7bed779def61ebff1b92b0e851f412176fa416
Fixed
00f547e0dfecf83014fb32bcba587c6b684c1362

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-53172.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.0.13

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-53172.json"