Back to overview

CVE-2026-64318

Description
In the Linux kernel, the following vulnerability has been resolved: partitions: aix: bound the pp_count scan to the ppe array aix_partition() reads the physical volume descriptor into a fixed-size struct pvd and then scans its physical-partition-extent array: int numpps = be16_to_cpu(pvd->pp_count); ... for (i = 0; i < numpps; i += 1) { struct ppe *p = pvd->ppe + i; ... lp_ix = be16_to_cpu(p->lp_ix); pvd points at a single kmalloc()'d struct pvd whose ppe[] member holds a fixed ARRAY_SIZE(pvd->ppe) (1016) entries, but the loop runs up to the on-disk pp_count. pp_count is an unvalidated __be16 read straight from the descriptor, so a crafted AIX image with pp_count larger than 1016 drives the loop to read pvd->ppe[i] past the end of the allocation (up to 65535 entries, ~2 MB out of bounds). The partition scan runs without mounting anything, when a block device with a crafted AIX/IBM partition table appears (an attacker-supplied image attached with losetup -P, or a device auto-scanned by udev), via msdos_partition() -> aix_partition(). Clamp the scan to the number of entries the ppe[] array can hold.

Metadata

CVE ID
CVE-2026-64318
State
PUBLISHED
Assigner
Linux
Reserved
2026-07-19 15:36 UTC
Published
2026-07-25 08:49 UTC
Last updated
2026-07-25 08:49 UTC
Vendor / Product
Linux / Linux
Sources
cve.org  ·  NVD

Severity & Metrics

No CVSS data available.

Affected products (2)
VendorProductPlatformVersions
Linux Linux 6ceea22bbbc84fcf6bf0913bb3db8a657e9002f6 < 09861651617ba0fec089e8b9477439e68398c110, 6ceea22bbbc84fcf6bf0913bb3db8a657e9002f6 < 5eacdb1967378f5e5591cd27a2d8cdee2df1a599, 6ceea22bbbc84fcf6bf0913bb3db8a657e9002f6 < b5e9c09309e18fd9839ad007c238120353ca0cc4, 6ceea22bbbc84fcf6bf0913bb3db8a657e9002f6 < fd94a779020f2ecc8b2607f4c20b34acb1763b9a …
Linux Linux 3.11, 0 < 3.11, 5.10.261 ≤ 5.10.*, 5.15.212 ≤ 5.15.* …
Back to overview