blob: 5480f718713e769ef1dd04cf1190b101b67b7fcc [file] [log] [blame]
Andrew Geisslerc926e172021-05-07 16:11:35 -05001From 7aaf54a1884f71dc363f0b884e57bcb67407a6cd Mon Sep 17 00:00:00 2001
2From: Matthieu Herrb <matthieu@herrb.eu>
3Date: Sun, 21 Mar 2021 18:38:57 +0100
4Subject: [PATCH] Fix XChangeFeedbackControl() request underflow
5
6CVE-2021-3472 / ZDI-CAN-1259
7
8This vulnerability was discovered by:
9Jan-Niklas Sohn working with Trend Micro Zero Day Initiative
10
11Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
12
13Upstream-Status: Backport
14CVE: CVE-2021-3472
15
16Reference to upstream patch:
17[https://gitlab.freedesktop.org/xorg/xserver/-/commit/7aaf54a1884f71dc363f0b884e57bcb67407a6cd]
18
19Signed-off-by: Stefan Ghinea <stefan.ghinea@windriver.com>
20---
21 Xi/chgfctl.c | 5 ++++-
22 1 file changed, 4 insertions(+), 1 deletion(-)
23
24diff --git a/Xi/chgfctl.c b/Xi/chgfctl.c
25index 1de4da9..7a597e4 100644
26--- a/Xi/chgfctl.c
27+++ b/Xi/chgfctl.c
28@@ -464,8 +464,11 @@ ProcXChangeFeedbackControl(ClientPtr client)
29 break;
30 case StringFeedbackClass:
31 {
32- xStringFeedbackCtl *f = ((xStringFeedbackCtl *) &stuff[1]);
33+ xStringFeedbackCtl *f;
34
35+ REQUEST_AT_LEAST_EXTRA_SIZE(xChangeFeedbackControlReq,
36+ sizeof(xStringFeedbackCtl));
37+ f = ((xStringFeedbackCtl *) &stuff[1]);
38 if (client->swapped) {
39 if (len < bytes_to_int32(sizeof(xStringFeedbackCtl)))
40 return BadLength;
41--
422.17.1
43