Back to overview

CVE-2026-64085

Description
In the Linux kernel, the following vulnerability has been resolved: hwmon: (pmbus/adm1266) bounce blackbox records through a protocol-sized buffer adm1266_pmbus_block_xfer() copies the device-supplied block payload into the caller-provided buffer using the device-supplied length: memcpy(data_r, &msgs[1].buf[1], msgs[1].buf[0]); The helper does not know how large data_r is and trusts the device to return at most one record's worth of bytes. adm1266_nvmem_read_blackbox() violates that contract: it advances read_buff inside data->dev_mem in ADM1266_BLACKBOX_SIZE (64-byte) strides while the helper is willing to write up to ADM1266_PMBUS_BLOCK_MAX (255) bytes. A device that returns more than 64 bytes on the trailing record (read_buff offset 1984 in the 2048-byte dev_mem allocation) overflows dev_mem by up to 191 bytes before the post-call if (ret != ADM1266_BLACKBOX_SIZE) return -EIO; can reject the response. Contain the fix in the caller without changing the helper signature: read each record into a 255-byte local bounce buffer that matches the helper's maximum output, validate the returned length, and only then copy exactly ADM1266_BLACKBOX_SIZE bytes into the dev_mem slot.

Metadata

CVE ID
CVE-2026-64085
State
PUBLISHED
Assigner
Linux
Reserved
2026-07-19 07:54 UTC
Published
2026-07-19 15:39 UTC
Last updated
2026-07-19 15:39 UTC
Vendor / Product
Linux / Linux
Sources
cve.org  ·  NVD

Severity & Metrics

No CVSS data available.

Affected products (2)
VendorProductPlatformVersions
Linux Linux 407dc802a9c0809ca6a48de4b4c63305eb84ef56 < 7896d87cbb05e097efc113243d4e38f9f8cea16c, 407dc802a9c0809ca6a48de4b4c63305eb84ef56 < 9d5309500b4607b7198e19f0a3fa13eb864cd5fb, 407dc802a9c0809ca6a48de4b4c63305eb84ef56 < 6098634cfa711f11a8d65368dc51ec8f7c8241ba, 407dc802a9c0809ca6a48de4b4c63305eb84ef56 < 60c4b9fe1a3dd012014b1f561a6928a0b5db1126 …
Linux Linux 5.10, 0 < 5.10, 5.10.258 ≤ 5.10.*, 5.15.209 ≤ 5.15.* …
Back to overview