Commit 0bcd767
drm/dp/mst: fix OOB reads on 2-byte fields in sideband reply parsers
commit 6b89ba3 upstream.
Three sideband reply parsers read 16-bit fields as:
val = (raw->msg[idx] << 8) | (raw->msg[idx+1]);
and check bounds only after the fact. When idx == raw->curlen,
raw->msg[idx+1] reads one byte past the received message data into
the following struct fields (curchunk_len, curchunk_idx, curlen).
Affected functions:
- drm_dp_sideband_parse_enum_path_resources_ack()
full_payload_bw_number and avail_payload_bw_number fields
- drm_dp_sideband_parse_allocate_payload_ack()
allocated_pbn field
- drm_dp_sideband_parse_query_payload_ack()
allocated_pbn field
Fix by using a single combined check (idx + 2 > curlen) before each
2-byte read. Since the check is strictly tighter than idx > curlen,
no separate step is needed.
Fixes: ad7f8a1 ("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 fixes tag]
Signed-off-by: Lyude Paul <lyude@redhat.com>
Link: https://patch.msgid.link/20260510203128.2884846-1-ashutoshdesai993@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>1 parent 15a9863 commit 0bcd767
1 file changed
Lines changed: 4 additions & 13 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
925 | 925 | | |
926 | 926 | | |
927 | 927 | | |
928 | | - | |
| 928 | + | |
929 | 929 | | |
930 | 930 | | |
931 | 931 | | |
932 | | - | |
| 932 | + | |
933 | 933 | | |
934 | 934 | | |
935 | | - | |
936 | | - | |
937 | | - | |
938 | 935 | | |
939 | 936 | | |
940 | 937 | | |
| |||
952 | 949 | | |
953 | 950 | | |
954 | 951 | | |
955 | | - | |
| 952 | + | |
956 | 953 | | |
957 | 954 | | |
958 | | - | |
959 | | - | |
960 | | - | |
961 | 955 | | |
962 | 956 | | |
963 | 957 | | |
| |||
971 | 965 | | |
972 | 966 | | |
973 | 967 | | |
974 | | - | |
| 968 | + | |
975 | 969 | | |
976 | 970 | | |
977 | | - | |
978 | | - | |
979 | | - | |
980 | 971 | | |
981 | 972 | | |
982 | 973 | | |
| |||
0 commit comments