summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-xserver/xserver-xorg
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-11-01 11:15:58 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-01 13:27:26 +0000
commit411184bfaa6269bf2926bb2a576c0922958cbbb3 (patch)
tree8ec9a320e9375109287bfe62b022bf84cba58600 /meta/recipes-graphics/xorg-xserver/xserver-xorg
parent50614214097f90f53cedb1cd317098b025a57885 (diff)
downloadpoky-411184bfaa6269bf2926bb2a576c0922958cbbb3.tar.gz
xserver-xorg: fix CVE-2018-14665
Incorrect command-line parameter validation in the Xorg X server can lead to privilege elevation and/or arbitrary files overwrite, when the X server is running with elevated privileges (ie when Xorg is installed with the setuid bit set and started by a non-root user). The -modulepath argument can be used to specify an insecure path to modules that are going to be loaded in the X server, allowing to execute unprivileged code in the privileged process. The -logfile argument can be used to overwrite arbitrary files in the file system, due to incorrect checks in the parsing of the option. (From OE-Core rev: 14b5854d50c38e94fc0d1ce6af36698fc69f52b4) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-xserver/xserver-xorg')
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xorg/CVE-2018-14665.patch62
1 files changed, 62 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg/CVE-2018-14665.patch b/meta/recipes-graphics/xorg-xserver/xserver-xorg/CVE-2018-14665.patch
new file mode 100644
index 0000000000..7f6235b432
--- /dev/null
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg/CVE-2018-14665.patch
@@ -0,0 +1,62 @@
1Incorrect command-line parameter validation in the Xorg X server can lead to
2privilege elevation and/or arbitrary files overwrite, when the X server is
3running with elevated privileges (ie when Xorg is installed with the setuid bit
4set and started by a non-root user). The -modulepath argument can be used to
5specify an insecure path to modules that are going to be loaded in the X server,
6allowing to execute unprivileged code in the privileged process. The -logfile
7argument can be used to overwrite arbitrary files in the file system, due to
8incorrect checks in the parsing of the option.
9
10CVE: CVE-2018-14665
11Upstream-Status: Backport
12Signed-off-by: Ross Burton <ross.burton@intel.com>
13
14From 50c0cf885a6e91c0ea71fb49fa8f1b7c86fe330e Mon Sep 17 00:00:00 2001
15From: Matthieu Herrb <matthieu@herrb.eu>
16Date: Tue, 23 Oct 2018 21:29:08 +0200
17Subject: [PATCH] Disable -logfile and -modulepath when running with elevated
18 privileges
19
20Could cause privilege elevation and/or arbitrary files overwrite, when
21the X server is running with elevated privileges (ie when Xorg is
22installed with the setuid bit set and started by a non-root user).
23
24CVE-2018-14665
25
26Issue reported by Narendra Shinde and Red Hat.
27
28Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
29Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
30Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
31Reviewed-by: Adam Jackson <ajax@redhat.com>
32---
33 hw/xfree86/common/xf86Init.c | 8 ++++++--
34 1 file changed, 6 insertions(+), 2 deletions(-)
35
36diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c
37index 6c25eda73..0f57efa86 100644
38--- a/hw/xfree86/common/xf86Init.c
39+++ b/hw/xfree86/common/xf86Init.c
40@@ -935,14 +935,18 @@ ddxProcessArgument(int argc, char **argv, int i)
41 /* First the options that are not allowed with elevated privileges */
42 if (!strcmp(argv[i], "-modulepath")) {
43 CHECK_FOR_REQUIRED_ARGUMENT();
44- xf86CheckPrivs(argv[i], argv[i + 1]);
45+ if (xf86PrivsElevated())
46+ FatalError("\nInvalid argument -modulepath "
47+ "with elevated privileges\n");
48 xf86ModulePath = argv[i + 1];
49 xf86ModPathFrom = X_CMDLINE;
50 return 2;
51 }
52 if (!strcmp(argv[i], "-logfile")) {
53 CHECK_FOR_REQUIRED_ARGUMENT();
54- xf86CheckPrivs(argv[i], argv[i + 1]);
55+ if (xf86PrivsElevated())
56+ FatalError("\nInvalid argument -logfile "
57+ "with elevated privileges\n");
58 xf86LogFile = argv[i + 1];
59 xf86LogFileFrom = X_CMDLINE;
60 return 2;
61--
622.18.1