]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/dp/mst: fix OOB reads in remote DPCD/I2C sideband reply parsers
authorAshutosh Desai <ashutoshdesai993@gmail.com>
Sun, 10 May 2026 20:17:33 +0000 (20:17 +0000)
committerLyude Paul <lyude@redhat.com>
Mon, 18 May 2026 17:55:38 +0000 (13:55 -0400)
drm_dp_sideband_parse_remote_dpcd_read() reads num_bytes from the raw
message and then unconditionally does:

  memcpy(bytes, &raw->msg[idx], num_bytes);

without checking that idx + num_bytes <= raw->curlen. raw->msg[] is
256 bytes; if a malicious or misbehaving MST hub sets num_bytes larger
than the remaining payload, the memcpy reads past the received data
into whatever follows in raw->msg[].

drm_dp_sideband_parse_remote_i2c_read_ack() has the same flaw (noted
with a /* TODO check */ comment since the code was introduced).

Fix both functions by using a single combined check
(idx + num_bytes > curlen) before each memcpy. Since num_bytes is u8,
it is always >= 0, so this strictly subsumes the simpler idx > curlen
form and no separate step is needed.

Fixes: ad7f8a1f9ced ("drm/helper: add Displayport multi-stream helper (v0.6)")
Cc: <stable@vger.kernel.org> # v3.17+
Signed-off-by: Ashutosh Desai <ashutoshdesai993@gmail.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
[added missing fixes tag]
Signed-off-by: Lyude Paul <lyude@redhat.com>
Link: https://patch.msgid.link/20260510201733.2882224-1-ashutoshdesai993@gmail.com
drivers/gpu/drm/display/drm_dp_mst_topology.c

index fe72245fb9ca6da8fac4ac98217f49673faa0640..2ca1f2e9712ceb6ad54866a5433abbdb1ade9ffe 100644 (file)
@@ -880,7 +880,7 @@ static bool drm_dp_sideband_parse_remote_dpcd_read(struct drm_dp_sideband_msg_rx
                goto fail_len;
        repmsg->u.remote_dpcd_read_ack.num_bytes = raw->msg[idx];
        idx++;
-       if (idx > raw->curlen)
+       if (idx + repmsg->u.remote_dpcd_read_ack.num_bytes > raw->curlen)
                goto fail_len;
 
        memcpy(repmsg->u.remote_dpcd_read_ack.bytes, &raw->msg[idx], repmsg->u.remote_dpcd_read_ack.num_bytes);
@@ -916,7 +916,9 @@ static bool drm_dp_sideband_parse_remote_i2c_read_ack(struct drm_dp_sideband_msg
                goto fail_len;
        repmsg->u.remote_i2c_read_ack.num_bytes = raw->msg[idx];
        idx++;
-       /* TODO check */
+       if (idx + repmsg->u.remote_i2c_read_ack.num_bytes > raw->curlen)
+               goto fail_len;
+
        memcpy(repmsg->u.remote_i2c_read_ack.bytes, &raw->msg[idx], repmsg->u.remote_i2c_read_ack.num_bytes);
        return true;
 fail_len: