uxa: Check for access to backlight interface
authorChris Wilson <chris@chris-wilson.co.uk>
Thu, 13 Feb 2014 16:18:43 +0000 (16:18 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Thu, 13 Feb 2014 16:26:49 +0000 (16:26 +0000)
Before attaching properties to any connector, check that we can indeed
control the backlight through the sysfs interface by doing an access
check. If the xserver is started without root privileges, we cannot
write through /sys/class/backlight and so should take care not to
advertise that we can.

Reported-by: Hans de Geode <hdegeode@redhat.com>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
src/uxa/intel_display.c

index a4e04ec..e1b2920 100644 (file)
@@ -298,6 +298,14 @@ intel_output_backlight_get_max(xf86OutputPtr output)
        char path[BACKLIGHT_PATH_LEN], val[BACKLIGHT_VALUE_LEN];
        int fd, max = 0;
 
+       /* We are used as an initial check to see if we can
+        * control the backlight, so first test if we can set values.
+        */
+       sprintf(path, "%s/%s/brightness",
+               BACKLIGHT_CLASS, intel_output->backlight_iface);
+       if (access(path, R_OK | W_OK))
+               return -1;
+
        sprintf(path, "%s/%s/max_brightness",
                BACKLIGHT_CLASS, intel_output->backlight_iface);
        fd = open(path, O_RDONLY);