CVE-2026-68279
Gravedad:
Pendiente de análisis
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
10/08/2026
Última modificación:
17/08/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
drm/dp/mst: fix OOB reads in remote DPCD/I2C sideband reply parsers<br />
<br />
drm_dp_sideband_parse_remote_dpcd_read() reads num_bytes from the raw<br />
message and then unconditionally does:<br />
<br />
memcpy(bytes, &raw->msg[idx], num_bytes);<br />
<br />
without checking that idx + num_bytes curlen. raw->msg[] is<br />
256 bytes; if a malicious or misbehaving MST hub sets num_bytes larger<br />
than the remaining payload, the memcpy reads past the received data<br />
into whatever follows in raw->msg[].<br />
<br />
drm_dp_sideband_parse_remote_i2c_read_ack() has the same flaw (noted<br />
with a /* TODO check */ comment since the code was introduced).<br />
<br />
Fix both functions by using a single combined check<br />
(idx + num_bytes > curlen) before each memcpy. Since num_bytes is u8,<br />
it is always >= 0, so this strictly subsumes the simpler idx > curlen<br />
form and no separate step is needed.<br />
<br />
[added missing fixes tag]
Impacto
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/04d953f50d61e542e94a5977822cc53735f8c0ce
- https://git.kernel.org/stable/c/1a8f537f5a1eeac941f262fe73078d6b08ba83c0
- https://git.kernel.org/stable/c/22d9f7fc1aaabaf73d5f30e8b0c9aa814ecd6ed2
- https://git.kernel.org/stable/c/533d9e2bede4aeefdc2a0561d7071cfede95958f
- https://git.kernel.org/stable/c/e6ef5455b06cb4e5d181aabcd723791587c79f12



