]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/backlight/backlight.c
backlight: call log_setup_service() before logging
[thirdparty/systemd.git] / src / backlight / backlight.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <sys/stat.h>
4 #include <sys/types.h>
5 #include <unistd.h>
6
7 #include "sd-device.h"
8
9 #include "alloc-util.h"
10 #include "device-util.h"
11 #include "escape.h"
12 #include "fileio.h"
13 #include "main-func.h"
14 #include "mkdir.h"
15 #include "parse-util.h"
16 #include "reboot-util.h"
17 #include "string-util.h"
18 #include "strv.h"
19 #include "util.h"
20
21 static int find_pci_or_platform_parent(sd_device *device, sd_device **ret) {
22 const char *subsystem, *sysname, *value;
23 sd_device *parent;
24 int r;
25
26 assert(device);
27 assert(ret);
28
29 r = sd_device_get_parent(device, &parent);
30 if (r < 0)
31 return r;
32
33 r = sd_device_get_subsystem(parent, &subsystem);
34 if (r < 0)
35 return r;
36
37 r = sd_device_get_sysname(parent, &sysname);
38 if (r < 0)
39 return r;
40
41 if (streq(subsystem, "drm")) {
42 const char *c;
43
44 c = startswith(sysname, "card");
45 if (!c)
46 return -ENODATA;
47
48 c += strspn(c, DIGITS);
49 if (*c == '-') {
50 /* A connector DRM device, let's ignore all but LVDS and eDP! */
51 if (!STARTSWITH_SET(c, "-LVDS-", "-Embedded DisplayPort-"))
52 return -EOPNOTSUPP;
53 }
54
55 } else if (streq(subsystem, "pci") &&
56 sd_device_get_sysattr_value(parent, "class", &value) >= 0) {
57 unsigned long class = 0;
58
59 r = safe_atolu(value, &class);
60 if (r < 0)
61 return log_warning_errno(r, "Cannot parse PCI class '%s' of device %s:%s: %m",
62 value, subsystem, sysname);
63
64 /* Graphics card */
65 if (class == 0x30000) {
66 *ret = parent;
67 return 0;
68 }
69
70 } else if (streq(subsystem, "platform")) {
71 *ret = parent;
72 return 0;
73 }
74
75 return find_pci_or_platform_parent(parent, ret);
76 }
77
78 static int same_device(sd_device *a, sd_device *b) {
79 const char *a_val, *b_val;
80 int r;
81
82 assert(a);
83 assert(b);
84
85 r = sd_device_get_subsystem(a, &a_val);
86 if (r < 0)
87 return r;
88
89 r = sd_device_get_subsystem(b, &b_val);
90 if (r < 0)
91 return r;
92
93 if (!streq(a_val, b_val))
94 return false;
95
96 r = sd_device_get_sysname(a, &a_val);
97 if (r < 0)
98 return r;
99
100 r = sd_device_get_sysname(b, &b_val);
101 if (r < 0)
102 return r;
103
104 return streq(a_val, b_val);
105 }
106
107 static int validate_device(sd_device *device) {
108 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *enumerate = NULL;
109 const char *v, *subsystem;
110 sd_device *parent, *other;
111 int r;
112
113 assert(device);
114
115 /* Verify whether we should actually care for a specific
116 * backlight device. For backlight devices there might be
117 * multiple ways to access the same control: "firmware"
118 * (i.e. ACPI), "platform" (i.e. via the machine's EC) and
119 * "raw" (via the graphics card). In general we should prefer
120 * "firmware" (i.e. ACPI) or "platform" access over "raw"
121 * access, in order not to confuse the BIOS/EC, and
122 * compatibility with possible low-level hotkey handling of
123 * screen brightness. The kernel will already make sure to
124 * expose only one of "firmware" and "platform" for the same
125 * device to userspace. However, we still need to make sure
126 * that we use "raw" only if no "firmware" or "platform"
127 * device for the same device exists. */
128
129 r = sd_device_get_subsystem(device, &subsystem);
130 if (r < 0)
131 return r;
132 if (!streq(subsystem, "backlight"))
133 return true;
134
135 r = sd_device_get_sysattr_value(device, "type", &v);
136 if (r < 0)
137 return r;
138 if (!streq(v, "raw"))
139 return true;
140
141 r = find_pci_or_platform_parent(device, &parent);
142 if (r < 0)
143 return r;
144
145 r = sd_device_get_subsystem(parent, &subsystem);
146 if (r < 0)
147 return r;
148
149 r = sd_device_enumerator_new(&enumerate);
150 if (r < 0)
151 return r;
152
153 r = sd_device_enumerator_allow_uninitialized(enumerate);
154 if (r < 0)
155 return r;
156
157 r = sd_device_enumerator_add_match_subsystem(enumerate, "backlight", true);
158 if (r < 0)
159 return r;
160
161 FOREACH_DEVICE(enumerate, other) {
162 const char *other_subsystem;
163 sd_device *other_parent;
164
165 if (same_device(device, other) > 0)
166 continue;
167
168 if (sd_device_get_sysattr_value(other, "type", &v) < 0 ||
169 !STR_IN_SET(v, "platform", "firmware"))
170 continue;
171
172 /* OK, so there's another backlight device, and it's a
173 * platform or firmware device, so, let's see if we
174 * can verify it belongs to the same device as ours. */
175 if (find_pci_or_platform_parent(other, &other_parent) < 0)
176 continue;
177
178 if (same_device(parent, other_parent)) {
179 const char *device_sysname = NULL, *other_sysname = NULL;
180
181 /* Both have the same PCI parent, that means we are out. */
182
183 (void) sd_device_get_sysname(device, &device_sysname);
184 (void) sd_device_get_sysname(other, &other_sysname);
185
186 log_debug("Skipping backlight device %s, since device %s is on same PCI device and takes precedence.",
187 device_sysname, other_sysname);
188 return false;
189 }
190
191 if (sd_device_get_subsystem(other_parent, &other_subsystem) < 0)
192 continue;
193
194 if (streq(other_subsystem, "platform") && streq(subsystem, "pci")) {
195 const char *device_sysname = NULL, *other_sysname = NULL;
196
197 /* The other is connected to the platform bus and we are a PCI device, that also means we are out. */
198
199 (void) sd_device_get_sysname(device, &device_sysname);
200 (void) sd_device_get_sysname(other, &other_sysname);
201
202 log_debug("Skipping backlight device %s, since device %s is a platform device and takes precedence.",
203 device_sysname, other_sysname);
204 return false;
205 }
206 }
207
208 return true;
209 }
210
211 static int get_max_brightness(sd_device *device, unsigned *ret) {
212 const char *max_brightness_str;
213 unsigned max_brightness;
214 int r;
215
216 assert(device);
217 assert(ret);
218
219 r = sd_device_get_sysattr_value(device, "max_brightness", &max_brightness_str);
220 if (r < 0)
221 return log_device_warning_errno(device, r, "Failed to read 'max_brightness' attribute: %m");
222
223 r = safe_atou(max_brightness_str, &max_brightness);
224 if (r < 0)
225 return log_device_warning_errno(device, r, "Failed to parse 'max_brightness' \"%s\": %m", max_brightness_str);
226
227 if (max_brightness <= 0)
228 return log_device_warning_errno(device, SYNTHETIC_ERRNO(EINVAL), "Maximum brightness is 0, ignoring device.");
229
230 *ret = max_brightness;
231 return 0;
232 }
233
234 /* Some systems turn the backlight all the way off at the lowest levels.
235 * clamp_brightness clamps the saved brightness to at least 1 or 5% of
236 * max_brightness in case of 'backlight' subsystem. This avoids preserving
237 * an unreadably dim screen, which would otherwise force the user to
238 * disable state restoration. */
239 static int clamp_brightness(sd_device *device, char **value, unsigned max_brightness) {
240 unsigned brightness, new_brightness, min_brightness;
241 const char *subsystem;
242 int r;
243
244 assert(value);
245 assert(*value);
246
247 r = safe_atou(*value, &brightness);
248 if (r < 0)
249 return log_device_warning_errno(device, r, "Failed to parse brightness \"%s\": %m", *value);
250
251 r = sd_device_get_subsystem(device, &subsystem);
252 if (r < 0)
253 return log_device_warning_errno(device, r, "Failed to get device subsystem: %m");
254
255 if (streq(subsystem, "backlight"))
256 min_brightness = MAX(1U, max_brightness/20);
257 else
258 min_brightness = 0;
259
260 new_brightness = CLAMP(brightness, min_brightness, max_brightness);
261 if (new_brightness != brightness) {
262 char *new_value;
263
264 r = asprintf(&new_value, "%u", new_brightness);
265 if (r < 0)
266 return log_oom();
267
268 log_device_info(device, "Saved brightness %s %s to %s.", *value,
269 new_brightness > brightness ?
270 "too low; increasing" : "too high; decreasing",
271 new_value);
272
273 free_and_replace(*value, new_value);
274 }
275
276 return 0;
277 }
278
279 static bool shall_clamp(sd_device *d) {
280 const char *s;
281 int r;
282
283 assert(d);
284
285 r = sd_device_get_property_value(d, "ID_BACKLIGHT_CLAMP", &s);
286 if (r < 0) {
287 log_device_debug_errno(d, r, "Failed to get ID_BACKLIGHT_CLAMP property, ignoring: %m");
288 return true;
289 }
290
291 r = parse_boolean(s);
292 if (r < 0) {
293 log_device_debug_errno(d, r, "Failed to parse ID_BACKLIGHT_CLAMP property, ignoring: %m");
294 return true;
295 }
296
297 return r;
298 }
299
300 static int run(int argc, char *argv[]) {
301 _cleanup_(sd_device_unrefp) sd_device *device = NULL;
302 _cleanup_free_ char *escaped_ss = NULL, *escaped_sysname = NULL, *escaped_path_id = NULL;
303 const char *sysname, *path_id, *ss, *saved;
304 unsigned max_brightness;
305 int r;
306
307 log_setup_service();
308
309 if (argc != 3)
310 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "This program requires two arguments.");
311
312 umask(0022);
313
314 r = mkdir_p("/var/lib/systemd/backlight", 0755);
315 if (r < 0)
316 return log_error_errno(r, "Failed to create backlight directory /var/lib/systemd/backlight: %m");
317
318 sysname = strchr(argv[2], ':');
319 if (!sysname)
320 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Requires a subsystem and sysname pair specifying a backlight device.");
321
322 ss = strndupa(argv[2], sysname - argv[2]);
323
324 sysname++;
325
326 if (!STR_IN_SET(ss, "backlight", "leds"))
327 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Not a backlight or LED device: '%s:%s'", ss, sysname);
328
329 r = sd_device_new_from_subsystem_sysname(&device, ss, sysname);
330 if (r < 0)
331 return log_error_errno(r, "Failed to get backlight or LED device '%s:%s': %m", ss, sysname);
332
333 /* If max_brightness is 0, then there is no actual backlight
334 * device. This happens on desktops with Asus mainboards
335 * that load the eeepc-wmi module. */
336 if (get_max_brightness(device, &max_brightness) < 0)
337 return 0;
338
339 escaped_ss = cescape(ss);
340 if (!escaped_ss)
341 return log_oom();
342
343 escaped_sysname = cescape(sysname);
344 if (!escaped_sysname)
345 return log_oom();
346
347 if (sd_device_get_property_value(device, "ID_PATH", &path_id) >= 0) {
348 escaped_path_id = cescape(path_id);
349 if (!escaped_path_id)
350 return log_oom();
351
352 saved = strjoina("/var/lib/systemd/backlight/", escaped_path_id, ":", escaped_ss, ":", escaped_sysname);
353 } else
354 saved = strjoina("/var/lib/systemd/backlight/", escaped_ss, ":", escaped_sysname);
355
356 /* If there are multiple conflicting backlight devices, then
357 * their probing at boot-time might happen in any order. This
358 * means the validity checking of the device then is not
359 * reliable, since it might not see other devices conflicting
360 * with a specific backlight. To deal with this, we will
361 * actively delete backlight state files at shutdown (where
362 * device probing should be complete), so that the validity
363 * check at boot time doesn't have to be reliable. */
364
365 if (streq(argv[1], "load")) {
366 _cleanup_free_ char *value = NULL;
367 bool clamp;
368
369 if (shall_restore_state() == 0)
370 return 0;
371
372 if (validate_device(device) == 0)
373 return 0;
374
375 clamp = shall_clamp(device);
376
377 r = read_one_line_file(saved, &value);
378 if (IN_SET(r, -ENOENT, 0)) {
379 const char *curval;
380
381 /* Fallback to clamping current brightness or exit early if
382 * clamping is not supported/enabled. */
383 if (!clamp)
384 return 0;
385
386 r = sd_device_get_sysattr_value(device, "brightness", &curval);
387 if (r < 0)
388 return log_device_warning_errno(device, r, "Failed to read 'brightness' attribute: %m");
389
390 value = strdup(curval);
391 if (!value)
392 return log_oom();
393 } else if (r < 0)
394 return log_error_errno(r, "Failed to read %s: %m", saved);
395
396 if (clamp)
397 (void) clamp_brightness(device, &value, max_brightness);
398
399 r = sd_device_set_sysattr_value(device, "brightness", value);
400 if (r < 0)
401 return log_device_error_errno(device, r, "Failed to write system 'brightness' attribute: %m");
402
403 } else if (streq(argv[1], "save")) {
404 const char *value;
405
406 if (validate_device(device) == 0) {
407 (void) unlink(saved);
408 return 0;
409 }
410
411 r = sd_device_get_sysattr_value(device, "brightness", &value);
412 if (r < 0)
413 return log_device_error_errno(device, r, "Failed to read system 'brightness' attribute: %m");
414
415 r = write_string_file(saved, value, WRITE_STRING_FILE_CREATE);
416 if (r < 0)
417 return log_device_error_errno(device, r, "Failed to write %s: %m", saved);
418
419 } else
420 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Unknown verb %s.", argv[1]);
421
422 return 0;
423 }
424
425 DEFINE_MAIN_FUNCTION(run);