CVE-2026-64085
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
19/07/2026
Last modified:
19/07/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
hwmon: (pmbus/adm1266) bounce blackbox records through a protocol-sized buffer<br />
<br />
adm1266_pmbus_block_xfer() copies the device-supplied block payload<br />
into the caller-provided buffer using the device-supplied length:<br />
<br />
memcpy(data_r, &msgs[1].buf[1], msgs[1].buf[0]);<br />
<br />
The helper does not know how large data_r is and trusts the device to<br />
return at most one record&#39;s worth of bytes. adm1266_nvmem_read_blackbox()<br />
violates that contract: it advances read_buff inside data->dev_mem in<br />
ADM1266_BLACKBOX_SIZE (64-byte) strides while the helper is willing to<br />
write up to ADM1266_PMBUS_BLOCK_MAX (255) bytes. A device that returns<br />
more than 64 bytes on the trailing record (read_buff offset 1984 in<br />
the 2048-byte dev_mem allocation) overflows dev_mem by up to 191 bytes<br />
before the post-call<br />
<br />
if (ret != ADM1266_BLACKBOX_SIZE)<br />
return -EIO;<br />
<br />
can reject the response.<br />
<br />
Contain the fix in the caller without changing the helper signature:<br />
read each record into a 255-byte local bounce buffer that matches the<br />
helper&#39;s maximum output, validate the returned length, and only then<br />
copy exactly ADM1266_BLACKBOX_SIZE bytes into the dev_mem slot.
Impact
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/43cae21424ff8e33894a0f86c6b80b840c049fd7
- https://git.kernel.org/stable/c/6098634cfa711f11a8d65368dc51ec8f7c8241ba
- https://git.kernel.org/stable/c/60c4b9fe1a3dd012014b1f561a6928a0b5db1126
- https://git.kernel.org/stable/c/7896d87cbb05e097efc113243d4e38f9f8cea16c
- https://git.kernel.org/stable/c/83e039f0a43e0708515b0479cb7690fb93faaaa0
- https://git.kernel.org/stable/c/97a9cf2a8217ca1cdaf48cb9ab26e471632c7e7f
- https://git.kernel.org/stable/c/9d5309500b4607b7198e19f0a3fa13eb864cd5fb
- https://git.kernel.org/stable/c/dd47b8c4a0a8ced442da3f008db28fbbd31feaf0



