aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/Mesa.patches_6.4.2/5003_dlopen-escalation.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nx-X11/extras/Mesa.patches_6.4.2/5003_dlopen-escalation.patch')
-rw-r--r--nx-X11/extras/Mesa.patches_6.4.2/5003_dlopen-escalation.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/nx-X11/extras/Mesa.patches_6.4.2/5003_dlopen-escalation.patch b/nx-X11/extras/Mesa.patches_6.4.2/5003_dlopen-escalation.patch
new file mode 100644
index 000000000..263fee624
--- /dev/null
+++ b/nx-X11/extras/Mesa.patches_6.4.2/5003_dlopen-escalation.patch
@@ -0,0 +1,13 @@
+Index: Mesa_6.4.2/src/glx/x11/dri_glx.c
+===================================================================
+--- Mesa_6.4.2.orig/src/glx/x11/dri_glx.c
++++ Mesa_6.4.2/src/glx/x11/dri_glx.c
+@@ -196,7 +196,7 @@ static __DRIdriver *OpenDriver(const cha
+ }
+ }
+
+- if (geteuid() == getuid()) {
++ if (geteuid() == getuid() && getgid() == getegid()) {
+ /* don't allow setuid apps to use LIBGL_DRIVERS_PATH */
+ libPaths = getenv("LIBGL_DRIVERS_PATH");
+ if (!libPaths)