Imported Debian patch 2:1.15.1-0ubuntu2.6
[deb_xorg-server.git] / debian / patches / CVE-2014-8xxx / 0020-glx-Be-more-paranoid-about-variable-length-requests-.patch
CommitLineData
7217e0ca
ML
1From 096a5af8e52faafc38ae84dd17bede7ac03a3b83 Mon Sep 17 00:00:00 2001
2From: Adam Jackson <ajax@redhat.com>
3Date: Mon, 10 Nov 2014 12:13:36 -0500
4Subject: [PATCH 20/33] glx: Be more paranoid about variable-length requests
5 [CVE-2014-8093 1/6]
6
7If the size computation routine returns -1 we should just reject the
8request outright. Clamping it to zero could give an attacker the
9opportunity to also mangle cmdlen in such a way that the subsequent
10length check passes, and the request would get executed, thus passing
11data we wanted to reject to the renderer.
12
13Reviewed-by: Keith Packard <keithp@keithp.com>
14Reviewed-by: Julien Cristau <jcristau@debian.org>
15Reviewed-by: Michal Srb <msrb@suse.com>
16Reviewed-by: Andy Ritger <aritger@nvidia.com>
17Signed-off-by: Adam Jackson <ajax@redhat.com>
18Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
19---
20 glx/glxcmds.c | 4 ++--
21 1 file changed, 2 insertions(+), 2 deletions(-)
22
23Index: xorg-server-1.15.1/glx/glxcmds.c
24===================================================================
25--- xorg-server-1.15.1.orig/glx/glxcmds.c 2014-12-04 11:55:22.293001486 -0500
26+++ xorg-server-1.15.1/glx/glxcmds.c 2014-12-04 11:55:22.289001461 -0500
27@@ -2052,7 +2052,7 @@
28 extra = (*entry.varsize) (pc + __GLX_RENDER_HDR_SIZE,
29 client->swapped);
30 if (extra < 0) {
31- extra = 0;
32+ return BadLength;
33 }
34 if (cmdlen != __GLX_PAD(entry.bytes + extra)) {
35 return BadLength;
36@@ -2169,7 +2169,7 @@
37 extra = (*entry.varsize) (pc + __GLX_RENDER_LARGE_HDR_SIZE,
38 client->swapped);
39 if (extra < 0) {
40- extra = 0;
41+ return BadLength;
42 }
43 /* large command's header is 4 bytes longer, so add 4 */
44 if (cmdlen != __GLX_PAD(entry.bytes + 4 + extra)) {