]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/device.c
Merge pull request #16979 from keszybz/return-log-debug
[thirdparty/systemd.git] / src / core / device.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <errno.h>
4 #include <sys/epoll.h>
5
6 #include "alloc-util.h"
7 #include "bus-error.h"
8 #include "dbus-device.h"
9 #include "dbus-unit.h"
10 #include "device-private.h"
11 #include "device-util.h"
12 #include "device.h"
13 #include "log.h"
14 #include "parse-util.h"
15 #include "path-util.h"
16 #include "serialize.h"
17 #include "stat-util.h"
18 #include "string-util.h"
19 #include "swap.h"
20 #include "udev-util.h"
21 #include "unit-name.h"
22 #include "unit.h"
23
24 static const UnitActiveState state_translation_table[_DEVICE_STATE_MAX] = {
25 [DEVICE_DEAD] = UNIT_INACTIVE,
26 [DEVICE_TENTATIVE] = UNIT_ACTIVATING,
27 [DEVICE_PLUGGED] = UNIT_ACTIVE,
28 };
29
30 static int device_dispatch_io(sd_device_monitor *monitor, sd_device *dev, void *userdata);
31 static void device_update_found_one(Device *d, DeviceFound found, DeviceFound mask);
32
33 static void device_unset_sysfs(Device *d) {
34 Hashmap *devices;
35 Device *first;
36
37 assert(d);
38
39 if (!d->sysfs)
40 return;
41
42 /* Remove this unit from the chain of devices which share the
43 * same sysfs path. */
44 devices = UNIT(d)->manager->devices_by_sysfs;
45 first = hashmap_get(devices, d->sysfs);
46 LIST_REMOVE(same_sysfs, first, d);
47
48 if (first)
49 hashmap_remove_and_replace(devices, d->sysfs, first->sysfs, first);
50 else
51 hashmap_remove(devices, d->sysfs);
52
53 d->sysfs = mfree(d->sysfs);
54 }
55
56 static int device_set_sysfs(Device *d, const char *sysfs) {
57 _cleanup_free_ char *copy = NULL;
58 Device *first;
59 int r;
60
61 assert(d);
62
63 if (streq_ptr(d->sysfs, sysfs))
64 return 0;
65
66 r = hashmap_ensure_allocated(&UNIT(d)->manager->devices_by_sysfs, &path_hash_ops);
67 if (r < 0)
68 return r;
69
70 copy = strdup(sysfs);
71 if (!copy)
72 return -ENOMEM;
73
74 device_unset_sysfs(d);
75
76 first = hashmap_get(UNIT(d)->manager->devices_by_sysfs, sysfs);
77 LIST_PREPEND(same_sysfs, first, d);
78
79 r = hashmap_replace(UNIT(d)->manager->devices_by_sysfs, copy, first);
80 if (r < 0) {
81 LIST_REMOVE(same_sysfs, first, d);
82 return r;
83 }
84
85 d->sysfs = TAKE_PTR(copy);
86 unit_add_to_dbus_queue(UNIT(d));
87
88 return 0;
89 }
90
91 static void device_init(Unit *u) {
92 Device *d = DEVICE(u);
93
94 assert(d);
95 assert(UNIT(d)->load_state == UNIT_STUB);
96
97 /* In contrast to all other unit types we timeout jobs waiting
98 * for devices by default. This is because they otherwise wait
99 * indefinitely for plugged in devices, something which cannot
100 * happen for the other units since their operations time out
101 * anyway. */
102 u->job_running_timeout = u->manager->default_timeout_start_usec;
103
104 u->ignore_on_isolate = true;
105
106 d->deserialized_state = _DEVICE_STATE_INVALID;
107 }
108
109 static void device_done(Unit *u) {
110 Device *d = DEVICE(u);
111
112 assert(d);
113
114 device_unset_sysfs(d);
115 d->wants_property = strv_free(d->wants_property);
116 }
117
118 static int device_load(Unit *u) {
119 int r;
120
121 r = unit_load_fragment_and_dropin(u, false);
122 if (r < 0)
123 return r;
124
125 if (!u->description) {
126 /* Generate a description based on the path, to be used until the
127 device is initialized properly */
128 r = unit_name_to_path(u->id, &u->description);
129 if (r < 0)
130 log_unit_debug_errno(u, r, "Failed to unescape name: %m");
131 }
132
133 return 0;
134 }
135
136 static void device_set_state(Device *d, DeviceState state) {
137 DeviceState old_state;
138 assert(d);
139
140 if (d->state != state)
141 bus_unit_send_pending_change_signal(UNIT(d), false);
142
143 old_state = d->state;
144 d->state = state;
145
146 if (state == DEVICE_DEAD)
147 device_unset_sysfs(d);
148
149 if (state != old_state)
150 log_unit_debug(UNIT(d), "Changed %s -> %s", device_state_to_string(old_state), device_state_to_string(state));
151
152 unit_notify(UNIT(d), state_translation_table[old_state], state_translation_table[state], 0);
153 }
154
155 static int device_coldplug(Unit *u) {
156 Device *d = DEVICE(u);
157
158 assert(d);
159 assert(d->state == DEVICE_DEAD);
160
161 /* First, let's put the deserialized state and found mask into effect, if we have it. */
162
163 if (d->deserialized_state < 0 ||
164 (d->deserialized_state == d->state &&
165 d->deserialized_found == d->found))
166 return 0;
167
168 d->found = d->deserialized_found;
169 device_set_state(d, d->deserialized_state);
170 return 0;
171 }
172
173 static void device_catchup(Unit *u) {
174 Device *d = DEVICE(u);
175
176 assert(d);
177
178 /* Second, let's update the state with the enumerated state if it's different */
179 if (d->enumerated_found == d->found)
180 return;
181
182 device_update_found_one(d, d->enumerated_found, DEVICE_FOUND_MASK);
183 }
184
185 static const struct {
186 DeviceFound flag;
187 const char *name;
188 } device_found_map[] = {
189 { DEVICE_FOUND_UDEV, "found-udev" },
190 { DEVICE_FOUND_MOUNT, "found-mount" },
191 { DEVICE_FOUND_SWAP, "found-swap" },
192 };
193
194 static int device_found_to_string_many(DeviceFound flags, char **ret) {
195 _cleanup_free_ char *s = NULL;
196 unsigned i;
197
198 assert(ret);
199
200 for (i = 0; i < ELEMENTSOF(device_found_map); i++) {
201 if (!FLAGS_SET(flags, device_found_map[i].flag))
202 continue;
203
204 if (!strextend_with_separator(&s, ",", device_found_map[i].name, NULL))
205 return -ENOMEM;
206 }
207
208 *ret = TAKE_PTR(s);
209
210 return 0;
211 }
212
213 static int device_found_from_string_many(const char *name, DeviceFound *ret) {
214 DeviceFound flags = 0;
215 int r;
216
217 assert(ret);
218
219 for (;;) {
220 _cleanup_free_ char *word = NULL;
221 DeviceFound f = 0;
222 unsigned i;
223
224 r = extract_first_word(&name, &word, ",", 0);
225 if (r < 0)
226 return r;
227 if (r == 0)
228 break;
229
230 for (i = 0; i < ELEMENTSOF(device_found_map); i++)
231 if (streq(word, device_found_map[i].name)) {
232 f = device_found_map[i].flag;
233 break;
234 }
235
236 if (f == 0)
237 return -EINVAL;
238
239 flags |= f;
240 }
241
242 *ret = flags;
243 return 0;
244 }
245
246 static int device_serialize(Unit *u, FILE *f, FDSet *fds) {
247 _cleanup_free_ char *s = NULL;
248 Device *d = DEVICE(u);
249
250 assert(u);
251 assert(f);
252 assert(fds);
253
254 (void) serialize_item(f, "state", device_state_to_string(d->state));
255
256 if (device_found_to_string_many(d->found, &s) >= 0)
257 (void) serialize_item(f, "found", s);
258
259 return 0;
260 }
261
262 static int device_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
263 Device *d = DEVICE(u);
264 int r;
265
266 assert(u);
267 assert(key);
268 assert(value);
269 assert(fds);
270
271 if (streq(key, "state")) {
272 DeviceState state;
273
274 state = device_state_from_string(value);
275 if (state < 0)
276 log_unit_debug(u, "Failed to parse state value, ignoring: %s", value);
277 else
278 d->deserialized_state = state;
279
280 } else if (streq(key, "found")) {
281 r = device_found_from_string_many(value, &d->deserialized_found);
282 if (r < 0)
283 log_unit_debug_errno(u, r, "Failed to parse found value '%s', ignoring: %m", value);
284
285 } else
286 log_unit_debug(u, "Unknown serialization key: %s", key);
287
288 return 0;
289 }
290
291 static void device_dump(Unit *u, FILE *f, const char *prefix) {
292 Device *d = DEVICE(u);
293 _cleanup_free_ char *s = NULL;
294
295 assert(d);
296
297 (void) device_found_to_string_many(d->found, &s);
298
299 fprintf(f,
300 "%sDevice State: %s\n"
301 "%sSysfs Path: %s\n"
302 "%sFound: %s\n",
303 prefix, device_state_to_string(d->state),
304 prefix, strna(d->sysfs),
305 prefix, strna(s));
306
307 if (!strv_isempty(d->wants_property)) {
308 char **i;
309
310 STRV_FOREACH(i, d->wants_property)
311 fprintf(f, "%sudev SYSTEMD_WANTS: %s\n",
312 prefix, *i);
313 }
314 }
315
316 _pure_ static UnitActiveState device_active_state(Unit *u) {
317 assert(u);
318
319 return state_translation_table[DEVICE(u)->state];
320 }
321
322 _pure_ static const char *device_sub_state_to_string(Unit *u) {
323 assert(u);
324
325 return device_state_to_string(DEVICE(u)->state);
326 }
327
328 static int device_update_description(Unit *u, sd_device *dev, const char *path) {
329 _cleanup_free_ char *j = NULL;
330 const char *model, *label, *desc;
331 int r;
332
333 assert(u);
334 assert(path);
335
336 desc = path;
337
338 if (dev &&
339 (sd_device_get_property_value(dev, "ID_MODEL_FROM_DATABASE", &model) >= 0 ||
340 sd_device_get_property_value(dev, "ID_MODEL", &model) >= 0)) {
341 desc = model;
342
343 /* Try to concatenate the device model string with a label, if there is one */
344 if (sd_device_get_property_value(dev, "ID_FS_LABEL", &label) >= 0 ||
345 sd_device_get_property_value(dev, "ID_PART_ENTRY_NAME", &label) >= 0 ||
346 sd_device_get_property_value(dev, "ID_PART_ENTRY_NUMBER", &label) >= 0) {
347
348 desc = j = strjoin(model, " ", label);
349 if (!j)
350 return log_oom();
351 }
352 }
353
354 r = unit_set_description(u, desc);
355 if (r < 0)
356 return log_unit_error_errno(u, r, "Failed to set device description: %m");
357
358 return 0;
359 }
360
361 static int device_add_udev_wants(Unit *u, sd_device *dev) {
362 _cleanup_strv_free_ char **added = NULL;
363 const char *wants, *property;
364 Device *d = DEVICE(u);
365 int r;
366
367 assert(d);
368 assert(dev);
369
370 property = MANAGER_IS_USER(u->manager) ? "SYSTEMD_USER_WANTS" : "SYSTEMD_WANTS";
371
372 r = sd_device_get_property_value(dev, property, &wants);
373 if (r < 0)
374 return 0;
375
376 for (;;) {
377 _cleanup_free_ char *word = NULL, *k = NULL;
378
379 r = extract_first_word(&wants, &word, NULL, EXTRACT_UNQUOTE);
380 if (r == 0)
381 break;
382 if (r == -ENOMEM)
383 return log_oom();
384 if (r < 0)
385 return log_unit_error_errno(u, r, "Failed to parse property %s with value %s: %m", property, wants);
386
387 if (unit_name_is_valid(word, UNIT_NAME_TEMPLATE) && d->sysfs) {
388 _cleanup_free_ char *escaped = NULL;
389
390 /* If the unit name is specified as template, then automatically fill in the sysfs path of the
391 * device as instance name, properly escaped. */
392
393 r = unit_name_path_escape(d->sysfs, &escaped);
394 if (r < 0)
395 return log_unit_error_errno(u, r, "Failed to escape %s: %m", d->sysfs);
396
397 r = unit_name_replace_instance(word, escaped, &k);
398 if (r < 0)
399 return log_unit_error_errno(u, r, "Failed to build %s instance of template %s: %m", escaped, word);
400 } else {
401 /* If this is not a template, then let's mangle it so, that it becomes a valid unit name. */
402
403 r = unit_name_mangle(word, UNIT_NAME_MANGLE_WARN, &k);
404 if (r < 0)
405 return log_unit_error_errno(u, r, "Failed to mangle unit name \"%s\": %m", word);
406 }
407
408 r = unit_add_dependency_by_name(u, UNIT_WANTS, k, true, UNIT_DEPENDENCY_UDEV);
409 if (r < 0)
410 return log_unit_error_errno(u, r, "Failed to add Wants= dependency: %m");
411
412 r = strv_push(&added, k);
413 if (r < 0)
414 return log_oom();
415
416 k = NULL;
417 }
418
419 if (d->state != DEVICE_DEAD) {
420 char **i;
421
422 /* So here's a special hack, to compensate for the fact that the udev database's reload cycles are not
423 * synchronized with our own reload cycles: when we detect that the SYSTEMD_WANTS property of a device
424 * changes while the device unit is already up, let's manually trigger any new units listed in it not
425 * seen before. This typically happens during the boot-time switch root transition, as udev devices
426 * will generally already be up in the initrd, but SYSTEMD_WANTS properties get then added through udev
427 * rules only available on the host system, and thus only when the initial udev coldplug trigger runs.
428 *
429 * We do this only if the device has been up already when we parse this, as otherwise the usual
430 * dependency logic that is run from the dead → plugged transition will trigger these deps. */
431
432 STRV_FOREACH(i, added) {
433 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
434
435 if (strv_contains(d->wants_property, *i)) /* Was this unit already listed before? */
436 continue;
437
438 r = manager_add_job_by_name(u->manager, JOB_START, *i, JOB_FAIL, NULL, &error, NULL);
439 if (r < 0)
440 log_unit_warning_errno(u, r, "Failed to enqueue SYSTEMD_WANTS= job, ignoring: %s", bus_error_message(&error, r));
441 }
442 }
443
444 strv_free(d->wants_property);
445 d->wants_property = TAKE_PTR(added);
446
447 return 0;
448 }
449
450 static bool device_is_bound_by_mounts(Device *d, sd_device *dev) {
451 const char *bound_by;
452 int r;
453
454 assert(d);
455 assert(dev);
456
457 if (sd_device_get_property_value(dev, "SYSTEMD_MOUNT_DEVICE_BOUND", &bound_by) >= 0) {
458 r = parse_boolean(bound_by);
459 if (r < 0)
460 log_device_warning_errno(dev, r, "Failed to parse SYSTEMD_MOUNT_DEVICE_BOUND='%s' udev property, ignoring: %m", bound_by);
461
462 d->bind_mounts = r > 0;
463 } else
464 d->bind_mounts = false;
465
466 return d->bind_mounts;
467 }
468
469 static void device_upgrade_mount_deps(Unit *u) {
470 Unit *other;
471 void *v;
472 int r;
473
474 /* Let's upgrade Requires= to BindsTo= on us. (Used when SYSTEMD_MOUNT_DEVICE_BOUND is set) */
475
476 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_REQUIRED_BY]) {
477 if (other->type != UNIT_MOUNT)
478 continue;
479
480 r = unit_add_dependency(other, UNIT_BINDS_TO, u, true, UNIT_DEPENDENCY_UDEV);
481 if (r < 0)
482 log_unit_warning_errno(u, r, "Failed to add BindsTo= dependency between device and mount unit, ignoring: %m");
483 }
484 }
485
486 static int device_setup_unit(Manager *m, sd_device *dev, const char *path, bool main) {
487 _cleanup_free_ char *e = NULL;
488 const char *sysfs = NULL;
489 Unit *u = NULL;
490 bool delete;
491 int r;
492
493 assert(m);
494 assert(path);
495
496 if (dev) {
497 r = sd_device_get_syspath(dev, &sysfs);
498 if (r < 0) {
499 log_device_debug_errno(dev, r, "Couldn't get syspath from device, ignoring: %m");
500 return 0;
501 }
502 }
503
504 r = unit_name_from_path(path, ".device", &e);
505 if (r < 0)
506 return log_device_error_errno(dev, r, "Failed to generate unit name from device path: %m");
507
508 u = manager_get_unit(m, e);
509 if (u) {
510 /* The device unit can still be present even if the device was unplugged: a mount unit can reference it
511 * hence preventing the GC to have garbaged it. That's desired since the device unit may have a
512 * dependency on the mount unit which was added during the loading of the later. When the device is
513 * plugged the sysfs might not be initialized yet, as we serialize the device's state but do not
514 * serialize the sysfs path across reloads/reexecs. Hence, when coming back from a reload/restart we
515 * might have the state valid, but not the sysfs path. Hence, let's filter out conflicting devices, but
516 * let's accept devices in any state with no sysfs path set. */
517
518 if (DEVICE(u)->state == DEVICE_PLUGGED &&
519 DEVICE(u)->sysfs &&
520 sysfs &&
521 !path_equal(DEVICE(u)->sysfs, sysfs)) {
522 log_unit_debug(u, "Device %s appeared twice with different sysfs paths %s and %s, ignoring the latter.",
523 e, DEVICE(u)->sysfs, sysfs);
524 return -EEXIST;
525 }
526
527 delete = false;
528
529 /* Let's remove all dependencies generated due to udev properties. We'll re-add whatever is configured
530 * now below. */
531 unit_remove_dependencies(u, UNIT_DEPENDENCY_UDEV);
532 } else {
533 delete = true;
534
535 r = unit_new_for_name(m, sizeof(Device), e, &u);
536 if (r < 0) {
537 log_device_error_errno(dev, r, "Failed to allocate device unit %s: %m", e);
538 goto fail;
539 }
540
541 unit_add_to_load_queue(u);
542 }
543
544 /* If this was created via some dependency and has not actually been seen yet ->sysfs will not be
545 * initialized. Hence initialize it if necessary. */
546 if (sysfs) {
547 r = device_set_sysfs(DEVICE(u), sysfs);
548 if (r < 0) {
549 log_unit_error_errno(u, r, "Failed to set sysfs path %s: %m", sysfs);
550 goto fail;
551 }
552
553 /* The additional systemd udev properties we only interpret for the main object */
554 if (main)
555 (void) device_add_udev_wants(u, dev);
556 }
557
558 (void) device_update_description(u, dev, path);
559
560 /* So the user wants the mount units to be bound to the device but a mount unit might has been seen by systemd
561 * before the device appears on its radar. In this case the device unit is partially initialized and includes
562 * the deps on the mount unit but at that time the "bind mounts" flag wasn't not present. Fix this up now. */
563 if (dev && device_is_bound_by_mounts(DEVICE(u), dev))
564 device_upgrade_mount_deps(u);
565
566 return 0;
567
568 fail:
569 if (delete)
570 unit_free(u);
571
572 return r;
573 }
574
575 static int device_process_new(Manager *m, sd_device *dev) {
576 const char *sysfs, *dn, *alias;
577 dev_t devnum;
578 int r;
579
580 assert(m);
581
582 if (sd_device_get_syspath(dev, &sysfs) < 0)
583 return 0;
584
585 /* Add the main unit named after the sysfs path */
586 r = device_setup_unit(m, dev, sysfs, true);
587 if (r < 0)
588 return r;
589
590 /* Add an additional unit for the device node */
591 if (sd_device_get_devname(dev, &dn) >= 0)
592 (void) device_setup_unit(m, dev, dn, false);
593
594 /* Add additional units for all symlinks */
595 if (sd_device_get_devnum(dev, &devnum) >= 0) {
596 const char *p;
597
598 FOREACH_DEVICE_DEVLINK(dev, p) {
599 struct stat st;
600
601 if (PATH_STARTSWITH_SET(p, "/dev/block/", "/dev/char/"))
602 continue;
603
604 /* Verify that the symlink in the FS actually belongs
605 * to this device. This is useful to deal with
606 * conflicting devices, e.g. when two disks want the
607 * same /dev/disk/by-label/xxx link because they have
608 * the same label. We want to make sure that the same
609 * device that won the symlink wins in systemd, so we
610 * check the device node major/minor */
611 if (stat(p, &st) >= 0 &&
612 ((!S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode)) ||
613 st.st_rdev != devnum))
614 continue;
615
616 (void) device_setup_unit(m, dev, p, false);
617 }
618 }
619
620 /* Add additional units for all explicitly configured aliases */
621 if (sd_device_get_property_value(dev, "SYSTEMD_ALIAS", &alias) < 0)
622 return 0;
623
624 for (;;) {
625 _cleanup_free_ char *word = NULL;
626
627 r = extract_first_word(&alias, &word, NULL, EXTRACT_UNQUOTE);
628 if (r == 0)
629 break;
630 if (r == -ENOMEM)
631 return log_oom();
632 if (r < 0)
633 return log_device_warning_errno(dev, r, "Failed to parse SYSTEMD_ALIAS property: %m");
634
635 if (!path_is_absolute(word))
636 log_device_warning(dev, "SYSTEMD_ALIAS is not an absolute path, ignoring: %s", word);
637 else if (!path_is_normalized(word))
638 log_device_warning(dev, "SYSTEMD_ALIAS is not a normalized path, ignoring: %s", word);
639 else
640 (void) device_setup_unit(m, dev, word, false);
641 }
642
643 return 0;
644 }
645
646 static void device_found_changed(Device *d, DeviceFound previous, DeviceFound now) {
647 assert(d);
648
649 /* Didn't exist before, but does now? if so, generate a new invocation ID for it */
650 if (previous == DEVICE_NOT_FOUND && now != DEVICE_NOT_FOUND)
651 (void) unit_acquire_invocation_id(UNIT(d));
652
653 if (FLAGS_SET(now, DEVICE_FOUND_UDEV))
654 /* When the device is known to udev we consider it plugged. */
655 device_set_state(d, DEVICE_PLUGGED);
656 else if (now != DEVICE_NOT_FOUND && !FLAGS_SET(previous, DEVICE_FOUND_UDEV))
657 /* If the device has not been seen by udev yet, but is now referenced by the kernel, then we assume the
658 * kernel knows it now, and udev might soon too. */
659 device_set_state(d, DEVICE_TENTATIVE);
660 else
661 /* If nobody sees the device, or if the device was previously seen by udev and now is only referenced
662 * from the kernel, then we consider the device is gone, the kernel just hasn't noticed it yet. */
663 device_set_state(d, DEVICE_DEAD);
664 }
665
666 static void device_update_found_one(Device *d, DeviceFound found, DeviceFound mask) {
667 Manager *m;
668
669 assert(d);
670
671 m = UNIT(d)->manager;
672
673 if (MANAGER_IS_RUNNING(m) && (m->honor_device_enumeration || MANAGER_IS_USER(m))) {
674 DeviceFound n, previous;
675
676 /* When we are already running, then apply the new mask right-away, and trigger state changes
677 * right-away */
678
679 n = (d->found & ~mask) | (found & mask);
680 if (n == d->found)
681 return;
682
683 previous = d->found;
684 d->found = n;
685
686 device_found_changed(d, previous, n);
687 } else
688 /* We aren't running yet, let's apply the new mask to the shadow variable instead, which we'll apply as
689 * soon as we catch-up with the state. */
690 d->enumerated_found = (d->enumerated_found & ~mask) | (found & mask);
691 }
692
693 static void device_update_found_by_sysfs(Manager *m, const char *sysfs, DeviceFound found, DeviceFound mask) {
694 Device *d, *l, *n;
695
696 assert(m);
697 assert(sysfs);
698
699 if (mask == 0)
700 return;
701
702 l = hashmap_get(m->devices_by_sysfs, sysfs);
703 LIST_FOREACH_SAFE(same_sysfs, d, n, l)
704 device_update_found_one(d, found, mask);
705 }
706
707 static int device_update_found_by_name(Manager *m, const char *path, DeviceFound found, DeviceFound mask) {
708 _cleanup_free_ char *e = NULL;
709 Unit *u;
710 int r;
711
712 assert(m);
713 assert(path);
714
715 if (mask == 0)
716 return 0;
717
718 r = unit_name_from_path(path, ".device", &e);
719 if (r < 0)
720 return log_error_errno(r, "Failed to generate unit name from device path: %m");
721
722 u = manager_get_unit(m, e);
723 if (!u)
724 return 0;
725
726 device_update_found_one(DEVICE(u), found, mask);
727 return 0;
728 }
729
730 static bool device_is_ready(sd_device *dev) {
731 const char *ready;
732
733 assert(dev);
734
735 if (device_is_renaming(dev) > 0)
736 return false;
737
738 /* Is it really tagged as 'systemd' right now? */
739 if (sd_device_has_current_tag(dev, "systemd") <= 0)
740 return false;
741
742 if (sd_device_get_property_value(dev, "SYSTEMD_READY", &ready) < 0)
743 return true;
744
745 return parse_boolean(ready) != 0;
746 }
747
748 static Unit *device_following(Unit *u) {
749 Device *d = DEVICE(u);
750 Device *other, *first = NULL;
751
752 assert(d);
753
754 if (startswith(u->id, "sys-"))
755 return NULL;
756
757 /* Make everybody follow the unit that's named after the sysfs path */
758 LIST_FOREACH_AFTER(same_sysfs, other, d)
759 if (startswith(UNIT(other)->id, "sys-"))
760 return UNIT(other);
761
762 LIST_FOREACH_BEFORE(same_sysfs, other, d) {
763 if (startswith(UNIT(other)->id, "sys-"))
764 return UNIT(other);
765
766 first = other;
767 }
768
769 return UNIT(first);
770 }
771
772 static int device_following_set(Unit *u, Set **_set) {
773 Device *d = DEVICE(u), *other;
774 _cleanup_set_free_ Set *set = NULL;
775 int r;
776
777 assert(d);
778 assert(_set);
779
780 if (LIST_JUST_US(same_sysfs, d)) {
781 *_set = NULL;
782 return 0;
783 }
784
785 set = set_new(NULL);
786 if (!set)
787 return -ENOMEM;
788
789 LIST_FOREACH_AFTER(same_sysfs, other, d) {
790 r = set_put(set, other);
791 if (r < 0)
792 return r;
793 }
794
795 LIST_FOREACH_BEFORE(same_sysfs, other, d) {
796 r = set_put(set, other);
797 if (r < 0)
798 return r;
799 }
800
801 *_set = TAKE_PTR(set);
802 return 1;
803 }
804
805 static void device_shutdown(Manager *m) {
806 assert(m);
807
808 m->device_monitor = sd_device_monitor_unref(m->device_monitor);
809 m->devices_by_sysfs = hashmap_free(m->devices_by_sysfs);
810 }
811
812 static void device_enumerate(Manager *m) {
813 _cleanup_(sd_device_enumerator_unrefp) sd_device_enumerator *e = NULL;
814 sd_device *dev;
815 int r;
816
817 assert(m);
818
819 if (!m->device_monitor) {
820 r = sd_device_monitor_new(&m->device_monitor);
821 if (r < 0) {
822 log_error_errno(r, "Failed to allocate device monitor: %m");
823 goto fail;
824 }
825
826 /* This will fail if we are unprivileged, but that
827 * should not matter much, as user instances won't run
828 * during boot. */
829 (void) sd_device_monitor_set_receive_buffer_size(m->device_monitor, 128*1024*1024);
830
831 r = sd_device_monitor_filter_add_match_tag(m->device_monitor, "systemd");
832 if (r < 0) {
833 log_error_errno(r, "Failed to add udev tag match: %m");
834 goto fail;
835 }
836
837 r = sd_device_monitor_attach_event(m->device_monitor, m->event);
838 if (r < 0) {
839 log_error_errno(r, "Failed to attach event to device monitor: %m");
840 goto fail;
841 }
842
843 r = sd_device_monitor_start(m->device_monitor, device_dispatch_io, m);
844 if (r < 0) {
845 log_error_errno(r, "Failed to start device monitor: %m");
846 goto fail;
847 }
848 }
849
850 r = sd_device_enumerator_new(&e);
851 if (r < 0) {
852 log_error_errno(r, "Failed to allocate device enumerator: %m");
853 goto fail;
854 }
855
856 r = sd_device_enumerator_add_match_tag(e, "systemd");
857 if (r < 0) {
858 log_error_errno(r, "Failed to set tag for device enumeration: %m");
859 goto fail;
860 }
861
862 FOREACH_DEVICE(e, dev) {
863 const char *sysfs;
864
865 if (!device_is_ready(dev))
866 continue;
867
868 (void) device_process_new(m, dev);
869
870 if (sd_device_get_syspath(dev, &sysfs) < 0)
871 continue;
872
873 device_update_found_by_sysfs(m, sysfs, DEVICE_FOUND_UDEV, DEVICE_FOUND_UDEV);
874 }
875
876 return;
877
878 fail:
879 device_shutdown(m);
880 }
881
882 static void device_propagate_reload_by_sysfs(Manager *m, const char *sysfs) {
883 Device *d, *l, *n;
884 int r;
885
886 assert(m);
887 assert(sysfs);
888
889 l = hashmap_get(m->devices_by_sysfs, sysfs);
890 LIST_FOREACH_SAFE(same_sysfs, d, n, l) {
891 if (d->state == DEVICE_DEAD)
892 continue;
893
894 r = manager_propagate_reload(m, UNIT(d), JOB_REPLACE, NULL);
895 if (r < 0)
896 log_warning_errno(r, "Failed to propagate reload, ignoring: %m");
897 }
898 }
899
900 static int device_dispatch_io(sd_device_monitor *monitor, sd_device *dev, void *userdata) {
901 Manager *m = userdata;
902 DeviceAction action;
903 const char *sysfs;
904 int r;
905
906 assert(m);
907 assert(dev);
908
909 r = sd_device_get_syspath(dev, &sysfs);
910 if (r < 0) {
911 log_device_error_errno(dev, r, "Failed to get device sys path: %m");
912 return 0;
913 }
914
915 r = device_get_action(dev, &action);
916 if (r < 0) {
917 log_device_error_errno(dev, r, "Failed to get udev action: %m");
918 return 0;
919 }
920
921 if (!IN_SET(action, DEVICE_ACTION_ADD, DEVICE_ACTION_REMOVE, DEVICE_ACTION_MOVE))
922 device_propagate_reload_by_sysfs(m, sysfs);
923
924 /* A change event can signal that a device is becoming ready, in particular if the device is using
925 * the SYSTEMD_READY logic in udev so we need to reach the else block of the following if, even for
926 * change events */
927 if (action == DEVICE_ACTION_REMOVE) {
928 r = swap_process_device_remove(m, dev);
929 if (r < 0)
930 log_device_warning_errno(dev, r, "Failed to process swap device remove event, ignoring: %m");
931
932 /* If we get notified that a device was removed by udev, then it's completely gone, hence
933 * unset all found bits */
934 device_update_found_by_sysfs(m, sysfs, 0, DEVICE_FOUND_UDEV|DEVICE_FOUND_MOUNT|DEVICE_FOUND_SWAP);
935
936 } else if (device_is_ready(dev)) {
937
938 (void) device_process_new(m, dev);
939
940 r = swap_process_device_new(m, dev);
941 if (r < 0)
942 log_device_warning_errno(dev, r, "Failed to process swap device new event, ignoring: %m");
943
944 manager_dispatch_load_queue(m);
945
946 /* The device is found now, set the udev found bit */
947 device_update_found_by_sysfs(m, sysfs, DEVICE_FOUND_UDEV, DEVICE_FOUND_UDEV);
948
949 } else
950 /* The device is nominally around, but not ready for us. Hence unset the udev bit, but leave
951 * the rest around. */
952 device_update_found_by_sysfs(m, sysfs, 0, DEVICE_FOUND_UDEV);
953
954 return 0;
955 }
956
957 static bool device_supported(void) {
958 static int read_only = -1;
959
960 /* If /sys is read-only we don't support device units, and any
961 * attempts to start one should fail immediately. */
962
963 if (read_only < 0)
964 read_only = path_is_read_only_fs("/sys");
965
966 return read_only <= 0;
967 }
968
969 static int validate_node(Manager *m, const char *node, sd_device **ret) {
970 struct stat st;
971 int r;
972
973 assert(m);
974 assert(node);
975 assert(ret);
976
977 /* Validates a device node that showed up in /proc/swaps or /proc/self/mountinfo if it makes sense for us to
978 * track. Note that this validator is fine within missing device nodes, but not with badly set up ones! */
979
980 if (!path_startswith(node, "/dev")) {
981 *ret = NULL;
982 return 0; /* bad! */
983 }
984
985 if (stat(node, &st) < 0) {
986 if (errno != ENOENT)
987 return log_error_errno(errno, "Failed to stat() device node file %s: %m", node);
988
989 *ret = NULL;
990 return 1; /* good! (though missing) */
991
992 } else {
993 _cleanup_(sd_device_unrefp) sd_device *dev = NULL;
994
995 r = device_new_from_stat_rdev(&dev, &st);
996 if (r == -ENOENT) {
997 *ret = NULL;
998 return 1; /* good! (though missing) */
999 } else if (r == -ENOTTY) {
1000 *ret = NULL;
1001 return 0; /* bad! (not a device node but some other kind of file system node) */
1002 } else if (r < 0)
1003 return log_error_errno(r, "Failed to get udev device from devnum %u:%u: %m", major(st.st_rdev), minor(st.st_rdev));
1004
1005 *ret = TAKE_PTR(dev);
1006 return 1; /* good! */
1007 }
1008 }
1009
1010 void device_found_node(Manager *m, const char *node, DeviceFound found, DeviceFound mask) {
1011 int r;
1012
1013 assert(m);
1014 assert(node);
1015
1016 if (!device_supported())
1017 return;
1018
1019 if (mask == 0)
1020 return;
1021
1022 /* This is called whenever we find a device referenced in /proc/swaps or /proc/self/mounts. Such a device might
1023 * be mounted/enabled at a time where udev has not finished probing it yet, and we thus haven't learned about
1024 * it yet. In this case we will set the device unit to "tentative" state.
1025 *
1026 * This takes a pair of DeviceFound flags parameters. The 'mask' parameter is a bit mask that indicates which
1027 * bits of 'found' to copy into the per-device DeviceFound flags field. Thus, this function may be used to set
1028 * and unset individual bits in a single call, while merging partially with previous state. */
1029
1030 if ((found & mask) != 0) {
1031 _cleanup_(sd_device_unrefp) sd_device *dev = NULL;
1032
1033 /* If the device is known in the kernel and newly appeared, then we'll create a device unit for it,
1034 * under the name referenced in /proc/swaps or /proc/self/mountinfo. But first, let's validate if
1035 * everything is alright with the device node. */
1036
1037 r = validate_node(m, node, &dev);
1038 if (r <= 0)
1039 return; /* Don't create a device unit for this if the device node is borked. */
1040
1041 (void) device_setup_unit(m, dev, node, false);
1042 }
1043
1044 /* Update the device unit's state, should it exist */
1045 (void) device_update_found_by_name(m, node, found, mask);
1046 }
1047
1048 bool device_shall_be_bound_by(Unit *device, Unit *u) {
1049 assert(device);
1050 assert(u);
1051
1052 if (u->type != UNIT_MOUNT)
1053 return false;
1054
1055 return DEVICE(device)->bind_mounts;
1056 }
1057
1058 const UnitVTable device_vtable = {
1059 .object_size = sizeof(Device),
1060 .sections =
1061 "Unit\0"
1062 "Device\0"
1063 "Install\0",
1064
1065 .gc_jobs = true,
1066
1067 .init = device_init,
1068 .done = device_done,
1069 .load = device_load,
1070
1071 .coldplug = device_coldplug,
1072 .catchup = device_catchup,
1073
1074 .serialize = device_serialize,
1075 .deserialize_item = device_deserialize_item,
1076
1077 .dump = device_dump,
1078
1079 .active_state = device_active_state,
1080 .sub_state_to_string = device_sub_state_to_string,
1081
1082 .following = device_following,
1083 .following_set = device_following_set,
1084
1085 .enumerate = device_enumerate,
1086 .shutdown = device_shutdown,
1087 .supported = device_supported,
1088
1089 .status_message_formats = {
1090 .starting_stopping = {
1091 [0] = "Expecting device %s...",
1092 },
1093 .finished_start_job = {
1094 [JOB_DONE] = "Found device %s.",
1095 [JOB_TIMEOUT] = "Timed out waiting for device %s.",
1096 },
1097 },
1098 };