]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/udev-util.c
device-util: Declare iterator variables inline
[thirdparty/systemd.git] / src / shared / udev-util.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
b237a168 2
5953d8b9 3#include <ctype.h>
152d0efa 4#include <errno.h>
bee33d05 5#include <sys/inotify.h>
030a0d79 6#include <unistd.h>
b237a168 7
152d0efa 8#include "alloc-util.h"
393fcaf7 9#include "device-nodes.h"
a1130022 10#include "device-private.h"
f822c5d5 11#include "device-util.h"
686d13b9 12#include "env-file.h"
acfc2a1d 13#include "errno-util.h"
aea3253e 14#include "escape.h"
bee33d05 15#include "fd-util.h"
e9162760 16#include "id128-util.h"
b237a168 17#include "log.h"
aea3253e 18#include "macro.h"
4b3ca79e 19#include "parse-util.h"
030a0d79 20#include "path-util.h"
e2099267 21#include "signal-util.h"
e1ecfef1 22#include "socket-util.h"
f92c5bb1 23#include "stat-util.h"
bc768f04 24#include "string-table.h"
b237a168 25#include "string-util.h"
1223227f 26#include "strxcpyx.h"
b237a168 27#include "udev-util.h"
aea3253e 28#include "utf8.h"
b237a168 29
bc768f04
ZJS
30static const char* const resolve_name_timing_table[_RESOLVE_NAME_TIMING_MAX] = {
31 [RESOLVE_NAME_NEVER] = "never",
1c6e17e5 32 [RESOLVE_NAME_LATE] = "late",
bc768f04
ZJS
33 [RESOLVE_NAME_EARLY] = "early",
34};
35
36DEFINE_STRING_TABLE_LOOKUP(resolve_name_timing, ResolveNameTiming);
37
4b3ca79e
ZJS
38int udev_parse_config_full(
39 unsigned *ret_children_max,
40 usec_t *ret_exec_delay_usec,
a14e7af1 41 usec_t *ret_event_timeout_usec,
e2099267
MS
42 ResolveNameTiming *ret_resolve_name_timing,
43 int *ret_timeout_signal) {
4b3ca79e 44
e2099267 45 _cleanup_free_ char *log_val = NULL, *children_max = NULL, *exec_delay = NULL, *event_timeout = NULL, *resolve_names = NULL, *timeout_signal = NULL;
b237a168
ZJS
46 int r;
47
aa8fbc74 48 r = parse_env_file(NULL, "/etc/udev/udev.conf",
4b3ca79e
ZJS
49 "udev_log", &log_val,
50 "children_max", &children_max,
51 "exec_delay", &exec_delay,
9b2934cb 52 "event_timeout", &event_timeout,
e2099267
MS
53 "resolve_names", &resolve_names,
54 "timeout_signal", &timeout_signal);
4b3ca79e 55 if (r == -ENOENT)
b237a168
ZJS
56 return 0;
57 if (r < 0)
58 return r;
59
4b3ca79e
ZJS
60 if (log_val) {
61 const char *log;
62 size_t n;
63
64 /* unquote */
65 n = strlen(log_val);
66 if (n >= 2 &&
67 ((log_val[0] == '"' && log_val[n-1] == '"') ||
68 (log_val[0] == '\'' && log_val[n-1] == '\''))) {
69 log_val[n - 1] = '\0';
70 log = log_val + 1;
71 } else
72 log = log_val;
73
74 /* we set the udev log level here explicitly, this is supposed
75 * to regulate the code in libudev/ and udev/. */
3cc6b14a 76 r = log_set_max_level_from_string(log);
4b3ca79e 77 if (r < 0)
d7921114
ZJS
78 log_syntax(NULL, LOG_WARNING, "/etc/udev/udev.conf", 0, r,
79 "failed to set udev log level '%s', ignoring: %m", log);
4b3ca79e
ZJS
80 }
81
82 if (ret_children_max && children_max) {
83 r = safe_atou(children_max, ret_children_max);
84 if (r < 0)
d7921114 85 log_syntax(NULL, LOG_WARNING, "/etc/udev/udev.conf", 0, r,
e2099267 86 "failed to parse children_max=%s, ignoring: %m", children_max);
4b3ca79e
ZJS
87 }
88
89 if (ret_exec_delay_usec && exec_delay) {
90 r = parse_sec(exec_delay, ret_exec_delay_usec);
91 if (r < 0)
d7921114 92 log_syntax(NULL, LOG_WARNING, "/etc/udev/udev.conf", 0, r,
e2099267 93 "failed to parse exec_delay=%s, ignoring: %m", exec_delay);
4b3ca79e
ZJS
94 }
95
96 if (ret_event_timeout_usec && event_timeout) {
97 r = parse_sec(event_timeout, ret_event_timeout_usec);
98 if (r < 0)
d7921114 99 log_syntax(NULL, LOG_WARNING, "/etc/udev/udev.conf", 0, r,
e2099267 100 "failed to parse event_timeout=%s, ignoring: %m", event_timeout);
4b3ca79e 101 }
b237a168 102
a14e7af1
ZJS
103 if (ret_resolve_name_timing && resolve_names) {
104 ResolveNameTiming t;
105
106 t = resolve_name_timing_from_string(resolve_names);
107 if (t < 0)
d7921114 108 log_syntax(NULL, LOG_WARNING, "/etc/udev/udev.conf", 0, r,
e2099267 109 "failed to parse resolve_names=%s, ignoring.", resolve_names);
a14e7af1
ZJS
110 else
111 *ret_resolve_name_timing = t;
112 }
e2099267
MS
113
114 if (ret_timeout_signal && timeout_signal) {
115 r = signal_from_string(timeout_signal);
116 if (r < 0)
117 log_syntax(NULL, LOG_WARNING, "/etc/udev/udev.conf", 0, r,
118 "failed to parse timeout_signal=%s, ignoring: %m", timeout_signal);
119 else
120 *ret_timeout_signal = r;
121 }
a14e7af1 122
b237a168
ZJS
123 return 0;
124}
ed435031
ZJS
125
126struct DeviceMonitorData {
127 const char *sysname;
030a0d79 128 const char *devlink;
ed435031
ZJS
129 sd_device *device;
130};
131
ce5eef65
LB
132static void device_monitor_data_free(struct DeviceMonitorData *d) {
133 assert(d);
134
135 sd_device_unref(d->device);
136}
137
ed435031 138static int device_monitor_handler(sd_device_monitor *monitor, sd_device *device, void *userdata) {
99534007 139 struct DeviceMonitorData *data = ASSERT_PTR(userdata);
ed435031
ZJS
140 const char *sysname;
141
142 assert(device);
030a0d79 143 assert(data->sysname || data->devlink);
ed435031
ZJS
144 assert(!data->device);
145
e13d96ca
LP
146 /* Ignore REMOVE events here. We are waiting for initialization after all, not de-initialization. We
147 * might see a REMOVE event from an earlier use of the device (devices by the same name are recycled
148 * by the kernel after all), which we should not get confused by. After all we cannot distinguish use
149 * cycles of the devices, as the udev queue is entirely asynchronous.
150 *
151 * If we see a REMOVE event here for the use cycle we actually care about then we won't notice of
152 * course, but that should be OK, given the timeout logic used on the wait loop: this will be noticed
153 * by means of -ETIMEDOUT. Thus we won't notice immediately, but eventually, and that should be
154 * sufficient for an error path that should regularly not happen.
155 *
156 * (And yes, we only need to special case REMOVE. It's the only "negative" event type, where a device
157 * ceases to exist. All other event types are "positive": the device exists and is registered in the
158 * udev database, thus whenever we see the event, we can consider it initialized.) */
a1130022 159 if (device_for_action(device, SD_DEVICE_REMOVE))
e13d96ca
LP
160 return 0;
161
030a0d79
LB
162 if (data->sysname && sd_device_get_sysname(device, &sysname) >= 0 && streq(sysname, data->sysname))
163 goto found;
164
165 if (data->devlink) {
166 const char *devlink;
167
a1af8372
DDM
168 FOREACH_DEVICE_DEVLINK(device, link)
169 if (path_equal(link, data->devlink))
030a0d79
LB
170 goto found;
171
172 if (sd_device_get_devname(device, &devlink) >= 0 && path_equal(devlink, data->devlink))
173 goto found;
ed435031
ZJS
174 }
175
176 return 0;
030a0d79
LB
177
178found:
179 data->device = sd_device_ref(device);
180 return sd_event_exit(sd_device_monitor_get_event(monitor), 0);
ed435031
ZJS
181}
182
030a0d79
LB
183static int device_wait_for_initialization_internal(
184 sd_device *_device,
185 const char *devlink,
186 const char *subsystem,
4f89ce0c 187 usec_t timeout_usec,
030a0d79 188 sd_device **ret) {
9e3d9067 189
ed435031
ZJS
190 _cleanup_(sd_device_monitor_unrefp) sd_device_monitor *monitor = NULL;
191 _cleanup_(sd_event_unrefp) sd_event *event = NULL;
030a0d79
LB
192 /* Ensure that if !_device && devlink, device gets unrefd on errors since it will be new */
193 _cleanup_(sd_device_unrefp) sd_device *device = sd_device_ref(_device);
ce5eef65 194 _cleanup_(device_monitor_data_free) struct DeviceMonitorData data = {
030a0d79
LB
195 .devlink = devlink,
196 };
ed435031
ZJS
197 int r;
198
030a0d79 199 assert(device || (subsystem && devlink));
ed435031 200
030a0d79
LB
201 /* Devlink might already exist, if it does get the device to use the sysname filtering */
202 if (!device && devlink) {
f81b3e90
YW
203 r = sd_device_new_from_devname(&device, devlink);
204 if (r < 0 && !ERRNO_IS_DEVICE_ABSENT(r))
205 return log_error_errno(r, "Failed to create sd-device object from %s: %m", devlink);
ed435031
ZJS
206 }
207
030a0d79
LB
208 if (device) {
209 if (sd_device_get_is_initialized(device) > 0) {
210 if (ret)
211 *ret = sd_device_ref(device);
212 return 0;
213 }
214 /* We need either the sysname or the devlink for filtering */
215 assert_se(sd_device_get_sysname(device, &data.sysname) >= 0 || devlink);
216 }
ed435031
ZJS
217
218 /* Wait until the device is initialized, so that we can get access to the ID_PATH property */
219
fc40bfa7 220 r = sd_event_new(&event);
ed435031
ZJS
221 if (r < 0)
222 return log_error_errno(r, "Failed to get default event: %m");
223
224 r = sd_device_monitor_new(&monitor);
225 if (r < 0)
226 return log_error_errno(r, "Failed to acquire monitor: %m");
227
030a0d79 228 if (device && !subsystem) {
f822c5d5
YW
229 r = sd_device_get_subsystem(device, &subsystem);
230 if (r < 0 && r != -ENOENT)
231 return log_device_error_errno(device, r, "Failed to get subsystem: %m");
232 }
233
234 if (subsystem) {
235 r = sd_device_monitor_filter_add_match_subsystem_devtype(monitor, subsystem, NULL);
236 if (r < 0)
237 return log_error_errno(r, "Failed to add %s subsystem match to monitor: %m", subsystem);
238 }
ed435031 239
17bf3c55
YW
240 _cleanup_free_ char *desc = NULL;
241 const char *sysname = NULL;
242 if (device)
243 (void) sd_device_get_sysname(device, &sysname);
244
245 desc = strjoin(sysname ?: subsystem, devlink ? ":" : ":initialization", devlink);
246 if (desc)
247 (void) sd_device_monitor_set_description(monitor, desc);
248
ed435031
ZJS
249 r = sd_device_monitor_attach_event(monitor, event);
250 if (r < 0)
251 return log_error_errno(r, "Failed to attach event to device monitor: %m");
252
253 r = sd_device_monitor_start(monitor, device_monitor_handler, &data);
254 if (r < 0)
255 return log_error_errno(r, "Failed to start device monitor: %m");
256
4f89ce0c
YW
257 if (timeout_usec != USEC_INFINITY) {
258 r = sd_event_add_time_relative(
259 event, NULL,
260 CLOCK_MONOTONIC, timeout_usec, 0,
bac0bfc1 261 NULL, INT_TO_PTR(-ETIMEDOUT));
1b47436e
YW
262 if (r < 0)
263 return log_error_errno(r, "Failed to add timeout event source: %m");
264 }
265
4f89ce0c 266 /* Check again, maybe things changed. Udev will re-read the db if the device wasn't initialized yet. */
030a0d79 267 if (!device && devlink) {
f81b3e90
YW
268 r = sd_device_new_from_devname(&device, devlink);
269 if (r < 0 && !ERRNO_IS_DEVICE_ABSENT(r))
270 return log_error_errno(r, "Failed to create sd-device object from %s: %m", devlink);
030a0d79
LB
271 }
272 if (device && sd_device_get_is_initialized(device) > 0) {
ed435031
ZJS
273 if (ret)
274 *ret = sd_device_ref(device);
275 return 0;
276 }
277
278 r = sd_event_loop(event);
279 if (r < 0)
1b47436e 280 return log_error_errno(r, "Failed to wait for device to be initialized: %m");
ed435031
ZJS
281
282 if (ret)
283 *ret = TAKE_PTR(data.device);
284 return 0;
285}
90ba130f 286
4f89ce0c
YW
287int device_wait_for_initialization(sd_device *device, const char *subsystem, usec_t timeout_usec, sd_device **ret) {
288 return device_wait_for_initialization_internal(device, NULL, subsystem, timeout_usec, ret);
030a0d79
LB
289}
290
4f89ce0c
YW
291int device_wait_for_devlink(const char *devlink, const char *subsystem, usec_t timeout_usec, sd_device **ret) {
292 return device_wait_for_initialization_internal(NULL, devlink, subsystem, timeout_usec, ret);
030a0d79
LB
293}
294
90ba130f
YW
295int device_is_renaming(sd_device *dev) {
296 int r;
297
298 assert(dev);
299
300 r = sd_device_get_property_value(dev, "ID_RENAMING", NULL);
b9daaedb
LP
301 if (r == -ENOENT)
302 return false;
303 if (r < 0)
90ba130f
YW
304 return r;
305
b9daaedb 306 return true;
90ba130f 307}
a707c65b 308
a1130022
LP
309bool device_for_action(sd_device *dev, sd_device_action_t a) {
310 sd_device_action_t b;
a707c65b
YW
311
312 assert(dev);
313
a1130022 314 if (a < 0)
a707c65b
YW
315 return false;
316
a1130022
LP
317 if (sd_device_get_action(dev, &b) < 0)
318 return false;
319
320 return a == b;
a707c65b 321}
aea3253e 322
b2d9e58f 323void log_device_uevent(sd_device *device, const char *str) {
a1130022 324 sd_device_action_t action = _SD_DEVICE_ACTION_INVALID;
e9162760 325 sd_id128_t event_id = SD_ID128_NULL;
b2d9e58f
YW
326 uint64_t seqnum = 0;
327
328 if (!DEBUG_LOGGING)
329 return;
330
a1130022
LP
331 (void) sd_device_get_seqnum(device, &seqnum);
332 (void) sd_device_get_action(device, &action);
e9162760
YW
333 (void) sd_device_get_trigger_uuid(device, &event_id);
334 log_device_debug(device, "%s%s(SEQNUM=%"PRIu64", ACTION=%s%s%s)",
b2d9e58f 335 strempty(str), isempty(str) ? "" : " ",
e9162760
YW
336 seqnum, strna(device_action_to_string(action)),
337 sd_id128_is_null(event_id) ? "" : ", UUID=",
b7416360 338 sd_id128_is_null(event_id) ? "" : SD_ID128_TO_UUID_STRING(event_id));
b2d9e58f
YW
339}
340
aea3253e
YLY
341int udev_rule_parse_value(char *str, char **ret_value, char **ret_endpos) {
342 char *i, *j;
aea3253e
YLY
343 bool is_escaped;
344
345 /* value must be double quotated */
346 is_escaped = str[0] == 'e';
347 str += is_escaped;
348 if (str[0] != '"')
349 return -EINVAL;
aea3253e
YLY
350
351 if (!is_escaped) {
352 /* unescape double quotation '\"'->'"' */
c43ff248 353 for (j = str, i = str + 1; *i != '"'; i++, j++) {
aea3253e
YLY
354 if (*i == '\0')
355 return -EINVAL;
356 if (i[0] == '\\' && i[1] == '"')
357 i++;
358 *j = *i;
359 }
360 j[0] = '\0';
c43ff248
DL
361 /*
362 * The return value must be terminated by two subsequent NULs
363 * so it could be safely interpreted as nulstr.
364 */
365 j[1] = '\0';
aea3253e
YLY
366 } else {
367 _cleanup_free_ char *unescaped = NULL;
e437538f 368 ssize_t l;
aea3253e
YLY
369
370 /* find the end position of value */
c43ff248 371 for (i = str + 1; *i != '"'; i++) {
aea3253e
YLY
372 if (i[0] == '\\')
373 i++;
374 if (*i == '\0')
375 return -EINVAL;
376 }
377 i[0] = '\0';
378
c43ff248 379 l = cunescape_length(str + 1, i - (str + 1), 0, &unescaped);
e437538f
ZJS
380 if (l < 0)
381 return l;
382
c43ff248 383 assert(l <= i - (str + 1));
e437538f 384 memcpy(str, unescaped, l + 1);
c43ff248
DL
385 /*
386 * The return value must be terminated by two subsequent NULs
387 * so it could be safely interpreted as nulstr.
388 */
389 str[l + 1] = '\0';
aea3253e
YLY
390 }
391
392 *ret_value = str;
393 *ret_endpos = i + 1;
394 return 0;
395}
5953d8b9
YW
396
397size_t udev_replace_whitespace(const char *str, char *to, size_t len) {
398 bool is_space = false;
399 size_t i, j;
400
401 assert(str);
402 assert(to);
403
404 /* Copy from 'str' to 'to', while removing all leading and trailing whitespace, and replacing
405 * each run of consecutive whitespace with a single underscore. The chars from 'str' are copied
406 * up to the \0 at the end of the string, or at most 'len' chars. This appends \0 to 'to', at
407 * the end of the copied characters.
408 *
409 * If 'len' chars are copied into 'to', the final \0 is placed at len+1 (i.e. 'to[len] = \0'),
410 * so the 'to' buffer must have at least len+1 chars available.
411 *
412 * Note this may be called with 'str' == 'to', i.e. to replace whitespace in-place in a buffer.
413 * This function can handle that situation.
414 *
415 * Note that only 'len' characters are read from 'str'. */
416
417 i = strspn(str, WHITESPACE);
418
419 for (j = 0; j < len && i < len && str[i] != '\0'; i++) {
420 if (isspace(str[i])) {
421 is_space = true;
422 continue;
423 }
424
425 if (is_space) {
426 if (j + 1 >= len)
427 break;
428
429 to[j++] = '_';
430 is_space = false;
431 }
432 to[j++] = str[i];
433 }
434
435 to[j] = '\0';
436 return j;
437}
393fcaf7 438
e1ecfef1
YW
439size_t udev_replace_ifname(char *str) {
440 size_t replaced = 0;
441
442 assert(str);
443
444 /* See ifname_valid_full(). */
445
446 for (char *p = str; *p != '\0'; p++)
447 if (!ifname_valid_char(*p)) {
448 *p = '_';
449 replaced++;
450 }
451
452 return replaced;
453}
454
393fcaf7
YW
455size_t udev_replace_chars(char *str, const char *allow) {
456 size_t i = 0, replaced = 0;
457
458 assert(str);
459
460 /* allow chars in allow list, plain ascii, hex-escaping and valid utf8. */
461
462 while (str[i] != '\0') {
463 int len;
464
465 if (allow_listed_char_for_devnode(str[i], allow)) {
466 i++;
467 continue;
468 }
469
470 /* accept hex encoding */
471 if (str[i] == '\\' && str[i+1] == 'x') {
472 i += 2;
473 continue;
474 }
475
476 /* accept valid utf8 */
f5fbe71d 477 len = utf8_encoded_valid_unichar(str + i, SIZE_MAX);
393fcaf7
YW
478 if (len > 1) {
479 i += len;
480 continue;
481 }
482
483 /* if space is allowed, replace whitespace with ordinary space */
484 if (isspace(str[i]) && allow && strchr(allow, ' ')) {
485 str[i] = ' ';
486 i++;
487 replaced++;
488 continue;
489 }
490
491 /* everything else is replaced with '_' */
492 str[i] = '_';
493 i++;
494 replaced++;
495 }
496 return replaced;
497}
1223227f
YW
498
499int udev_resolve_subsys_kernel(const char *string, char *result, size_t maxsize, bool read_value) {
500 _cleanup_(sd_device_unrefp) sd_device *dev = NULL;
501 _cleanup_free_ char *temp = NULL;
502 char *subsys, *sysname, *attr;
503 const char *val;
504 int r;
505
506 assert(string);
507 assert(result);
508
509 /* handle "[<SUBSYSTEM>/<KERNEL>]<attribute>" format */
510
511 if (string[0] != '[')
512 return -EINVAL;
513
514 temp = strdup(string);
515 if (!temp)
516 return -ENOMEM;
517
518 subsys = &temp[1];
519
520 sysname = strchr(subsys, '/');
521 if (!sysname)
522 return -EINVAL;
523 sysname[0] = '\0';
524 sysname = &sysname[1];
525
526 attr = strchr(sysname, ']');
527 if (!attr)
528 return -EINVAL;
529 attr[0] = '\0';
530 attr = &attr[1];
531 if (attr[0] == '/')
532 attr = &attr[1];
533 if (attr[0] == '\0')
534 attr = NULL;
535
536 if (read_value && !attr)
537 return -EINVAL;
538
539 r = sd_device_new_from_subsystem_sysname(&dev, subsys, sysname);
540 if (r < 0)
541 return r;
542
543 if (read_value) {
544 r = sd_device_get_sysattr_value(dev, attr, &val);
acfc2a1d 545 if (r < 0 && !ERRNO_IS_PRIVILEGE(r) && r != -ENOENT)
1223227f 546 return r;
acfc2a1d 547 if (r >= 0)
1223227f 548 strscpy(result, maxsize, val);
acfc2a1d
YW
549 else
550 result[0] = '\0';
1223227f
YW
551 log_debug("value '[%s/%s]%s' is '%s'", subsys, sysname, attr, result);
552 } else {
553 r = sd_device_get_syspath(dev, &val);
554 if (r < 0)
555 return r;
556
557 strscpyl(result, maxsize, val, attr ? "/" : NULL, attr ?: NULL, NULL);
558 log_debug("path '[%s/%s]%s' is '%s'", subsys, sysname, strempty(attr), result);
559 }
560 return 0;
561}
bee33d05 562
a1af9668
YW
563bool devpath_conflict(const char *a, const char *b) {
564 /* This returns true when two paths are equivalent, or one is a child of another. */
565
566 if (!a || !b)
567 return false;
568
569 for (; *a != '\0' && *b != '\0'; a++, b++)
570 if (*a != *b)
571 return false;
572
573 return *a == '/' || *b == '/' || *a == *b;
574}
575
bee33d05
YW
576int udev_queue_is_empty(void) {
577 return access("/run/udev/queue", F_OK) < 0 ?
578 (errno == ENOENT ? true : -errno) : false;
579}
580
581int udev_queue_init(void) {
254d1313 582 _cleanup_close_ int fd = -EBADF;
bee33d05
YW
583
584 fd = inotify_init1(IN_CLOEXEC);
585 if (fd < 0)
586 return -errno;
587
588 if (inotify_add_watch(fd, "/run/udev" , IN_DELETE) < 0)
589 return -errno;
590
591 return TAKE_FD(fd);
592}
06795b02 593
f92c5bb1
YW
594bool udev_available(void) {
595 static int cache = -1;
596
597 /* The service systemd-udevd is started only when /sys is read write.
598 * See systemd-udevd.service: ConditionPathIsReadWrite=/sys
599 * Also, our container interface (http://systemd.io/CONTAINER_INTERFACE/) states that /sys must
600 * be mounted in read-only mode in containers. */
601
602 if (cache >= 0)
603 return cache;
604
9fa31df6 605 return (cache = (path_is_read_only_fs("/sys/") <= 0));
f92c5bb1 606}