]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/device.c
Merge pull request #7388 from keszybz/doc-tweak
[thirdparty/systemd.git] / src / core / device.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <sys/epoll.h>
22
23 #include "libudev.h"
24
25 #include "alloc-util.h"
26 #include "dbus-device.h"
27 #include "device.h"
28 #include "log.h"
29 #include "parse-util.h"
30 #include "path-util.h"
31 #include "stat-util.h"
32 #include "string-util.h"
33 #include "swap.h"
34 #include "udev-util.h"
35 #include "unit-name.h"
36 #include "unit.h"
37
38 static const UnitActiveState state_translation_table[_DEVICE_STATE_MAX] = {
39 [DEVICE_DEAD] = UNIT_INACTIVE,
40 [DEVICE_TENTATIVE] = UNIT_ACTIVATING,
41 [DEVICE_PLUGGED] = UNIT_ACTIVE,
42 };
43
44 static int device_dispatch_io(sd_event_source *source, int fd, uint32_t revents, void *userdata);
45
46 static void device_unset_sysfs(Device *d) {
47 Hashmap *devices;
48 Device *first;
49
50 assert(d);
51
52 if (!d->sysfs)
53 return;
54
55 /* Remove this unit from the chain of devices which share the
56 * same sysfs path. */
57 devices = UNIT(d)->manager->devices_by_sysfs;
58 first = hashmap_get(devices, d->sysfs);
59 LIST_REMOVE(same_sysfs, first, d);
60
61 if (first)
62 hashmap_remove_and_replace(devices, d->sysfs, first->sysfs, first);
63 else
64 hashmap_remove(devices, d->sysfs);
65
66 d->sysfs = mfree(d->sysfs);
67 }
68
69 static int device_set_sysfs(Device *d, const char *sysfs) {
70 Device *first;
71 char *copy;
72 int r;
73
74 assert(d);
75
76 if (streq_ptr(d->sysfs, sysfs))
77 return 0;
78
79 r = hashmap_ensure_allocated(&UNIT(d)->manager->devices_by_sysfs, &string_hash_ops);
80 if (r < 0)
81 return r;
82
83 copy = strdup(sysfs);
84 if (!copy)
85 return -ENOMEM;
86
87 device_unset_sysfs(d);
88
89 first = hashmap_get(UNIT(d)->manager->devices_by_sysfs, sysfs);
90 LIST_PREPEND(same_sysfs, first, d);
91
92 r = hashmap_replace(UNIT(d)->manager->devices_by_sysfs, copy, first);
93 if (r < 0) {
94 LIST_REMOVE(same_sysfs, first, d);
95 free(copy);
96 return r;
97 }
98
99 d->sysfs = copy;
100
101 return 0;
102 }
103
104 static void device_init(Unit *u) {
105 Device *d = DEVICE(u);
106
107 assert(d);
108 assert(UNIT(d)->load_state == UNIT_STUB);
109
110 /* In contrast to all other unit types we timeout jobs waiting
111 * for devices by default. This is because they otherwise wait
112 * indefinitely for plugged in devices, something which cannot
113 * happen for the other units since their operations time out
114 * anyway. */
115 u->job_running_timeout = u->manager->default_timeout_start_usec;
116
117 u->ignore_on_isolate = true;
118 }
119
120 static void device_done(Unit *u) {
121 Device *d = DEVICE(u);
122
123 assert(d);
124
125 device_unset_sysfs(d);
126 }
127
128 static void device_set_state(Device *d, DeviceState state) {
129 DeviceState old_state;
130 assert(d);
131
132 old_state = d->state;
133 d->state = state;
134
135 if (state != old_state)
136 log_unit_debug(UNIT(d), "Changed %s -> %s", device_state_to_string(old_state), device_state_to_string(state));
137
138 unit_notify(UNIT(d), state_translation_table[old_state], state_translation_table[state], true);
139 }
140
141 static int device_coldplug(Unit *u) {
142 Device *d = DEVICE(u);
143
144 assert(d);
145 assert(d->state == DEVICE_DEAD);
146
147 if (d->found & DEVICE_FOUND_UDEV)
148 /* If udev says the device is around, it's around */
149 device_set_state(d, DEVICE_PLUGGED);
150 else if (d->found != DEVICE_NOT_FOUND && d->deserialized_state != DEVICE_PLUGGED)
151 /* If a device is found in /proc/self/mountinfo or
152 * /proc/swaps, and was not yet announced via udev,
153 * it's "tentatively" around. */
154 device_set_state(d, DEVICE_TENTATIVE);
155
156 return 0;
157 }
158
159 static int device_serialize(Unit *u, FILE *f, FDSet *fds) {
160 Device *d = DEVICE(u);
161
162 assert(u);
163 assert(f);
164 assert(fds);
165
166 unit_serialize_item(u, f, "state", device_state_to_string(d->state));
167
168 return 0;
169 }
170
171 static int device_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
172 Device *d = DEVICE(u);
173
174 assert(u);
175 assert(key);
176 assert(value);
177 assert(fds);
178
179 if (streq(key, "state")) {
180 DeviceState state;
181
182 state = device_state_from_string(value);
183 if (state < 0)
184 log_unit_debug(u, "Failed to parse state value: %s", value);
185 else
186 d->deserialized_state = state;
187 } else
188 log_unit_debug(u, "Unknown serialization key: %s", key);
189
190 return 0;
191 }
192
193 static void device_dump(Unit *u, FILE *f, const char *prefix) {
194 Device *d = DEVICE(u);
195
196 assert(d);
197
198 fprintf(f,
199 "%sDevice State: %s\n"
200 "%sSysfs Path: %s\n",
201 prefix, device_state_to_string(d->state),
202 prefix, strna(d->sysfs));
203 }
204
205 _pure_ static UnitActiveState device_active_state(Unit *u) {
206 assert(u);
207
208 return state_translation_table[DEVICE(u)->state];
209 }
210
211 _pure_ static const char *device_sub_state_to_string(Unit *u) {
212 assert(u);
213
214 return device_state_to_string(DEVICE(u)->state);
215 }
216
217 static int device_update_description(Unit *u, struct udev_device *dev, const char *path) {
218 const char *model;
219 int r;
220
221 assert(u);
222 assert(dev);
223 assert(path);
224
225 model = udev_device_get_property_value(dev, "ID_MODEL_FROM_DATABASE");
226 if (!model)
227 model = udev_device_get_property_value(dev, "ID_MODEL");
228
229 if (model) {
230 const char *label;
231
232 /* Try to concatenate the device model string with a label, if there is one */
233 label = udev_device_get_property_value(dev, "ID_FS_LABEL");
234 if (!label)
235 label = udev_device_get_property_value(dev, "ID_PART_ENTRY_NAME");
236 if (!label)
237 label = udev_device_get_property_value(dev, "ID_PART_ENTRY_NUMBER");
238
239 if (label) {
240 _cleanup_free_ char *j;
241
242 j = strjoin(model, " ", label);
243 if (j)
244 r = unit_set_description(u, j);
245 else
246 r = -ENOMEM;
247 } else
248 r = unit_set_description(u, model);
249 } else
250 r = unit_set_description(u, path);
251
252 if (r < 0)
253 log_unit_error_errno(u, r, "Failed to set device description: %m");
254
255 return r;
256 }
257
258 static int device_add_udev_wants(Unit *u, struct udev_device *dev) {
259 const char *wants, *property;
260 int r;
261
262 assert(u);
263 assert(dev);
264
265 property = MANAGER_IS_USER(u->manager) ? "SYSTEMD_USER_WANTS" : "SYSTEMD_WANTS";
266
267 wants = udev_device_get_property_value(dev, property);
268 if (!wants)
269 return 0;
270
271 for (;;) {
272 _cleanup_free_ char *word = NULL, *k = NULL;
273
274 r = extract_first_word(&wants, &word, NULL, EXTRACT_QUOTES);
275 if (r == 0)
276 return 0;
277 if (r == -ENOMEM)
278 return log_oom();
279 if (r < 0)
280 return log_unit_error_errno(u, r, "Failed to parse property %s with value %s: %m", property, wants);
281
282 if (unit_name_is_valid(word, UNIT_NAME_TEMPLATE) && DEVICE(u)->sysfs) {
283 _cleanup_free_ char *escaped = NULL;
284
285 /* If the unit name is specified as template, then automatically fill in the sysfs path of the
286 * device as instance name, properly escaped. */
287
288 r = unit_name_path_escape(DEVICE(u)->sysfs, &escaped);
289 if (r < 0)
290 return log_unit_error_errno(u, r, "Failed to escape %s: %m", DEVICE(u)->sysfs);
291
292 r = unit_name_replace_instance(word, escaped, &k);
293 if (r < 0)
294 return log_unit_error_errno(u, r, "Failed to build %s instance of template %s: %m", escaped, word);
295 } else {
296 /* If this is not a template, then let's mangle it so, that it becomes a valid unit name. */
297
298 r = unit_name_mangle(word, UNIT_NAME_NOGLOB, &k);
299 if (r < 0)
300 return log_unit_error_errno(u, r, "Failed to mangle unit name \"%s\": %m", word);
301 }
302
303 r = unit_add_dependency_by_name(u, UNIT_WANTS, k, NULL, true, UNIT_DEPENDENCY_UDEV);
304 if (r < 0)
305 return log_unit_error_errno(u, r, "Failed to add Wants= dependency: %m");
306 }
307 }
308
309 static bool device_is_bound_by_mounts(Device *d, struct udev_device *dev) {
310 const char *bound_by;
311 int r;
312
313 assert(d);
314 assert(dev);
315
316 bound_by = udev_device_get_property_value(dev, "SYSTEMD_MOUNT_DEVICE_BOUND");
317 if (bound_by) {
318 r = parse_boolean(bound_by);
319 if (r < 0)
320 log_warning_errno(r, "Failed to parse SYSTEMD_MOUNT_DEVICE_BOUND='%s' udev property of %s, ignoring: %m", bound_by, strna(d->sysfs));
321
322 d->bind_mounts = r > 0;
323 } else
324 d->bind_mounts = false;
325
326 return d->bind_mounts;
327 }
328
329 static int device_upgrade_mount_deps(Unit *u) {
330 Unit *other;
331 Iterator i;
332 void *v;
333 int r;
334
335 /* Let's upgrade Requires= to BindsTo= on us. (Used when SYSTEMD_MOUNT_DEVICE_BOUND is set) */
336
337 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_REQUIRED_BY], i) {
338 if (other->type != UNIT_MOUNT)
339 continue;
340
341 r = unit_add_dependency(other, UNIT_BINDS_TO, u, true, UNIT_DEPENDENCY_UDEV);
342 if (r < 0)
343 return r;
344 }
345 return 0;
346 }
347
348 static int device_setup_unit(Manager *m, struct udev_device *dev, const char *path, bool main) {
349 _cleanup_free_ char *e = NULL;
350 const char *sysfs = NULL;
351 Unit *u = NULL;
352 bool delete;
353 int r;
354
355 assert(m);
356 assert(path);
357
358 if (dev) {
359 sysfs = udev_device_get_syspath(dev);
360 if (!sysfs)
361 return 0;
362 }
363
364 r = unit_name_from_path(path, ".device", &e);
365 if (r < 0)
366 return log_error_errno(r, "Failed to generate unit name from device path: %m");
367
368 u = manager_get_unit(m, e);
369 if (u) {
370 /* The device unit can still be present even if the device was unplugged: a mount unit can reference it hence
371 * preventing the GC to have garbaged it. That's desired since the device unit may have a dependency on the
372 * mount unit which was added during the loading of the later. */
373 if (dev && DEVICE(u)->state == DEVICE_PLUGGED) {
374
375 /* This unit is in plugged state: we're sure it's attached to a device. */
376 if (!path_equal(DEVICE(u)->sysfs, sysfs)) {
377 log_unit_debug(u, "Dev %s appeared twice with different sysfs paths %s and %s",
378 e, DEVICE(u)->sysfs, sysfs);
379 return -EEXIST;
380 }
381 }
382
383 delete = false;
384
385 /* Let's remove all dependencies generated due to udev properties. We'll readd whatever is configured
386 * now below. */
387 unit_remove_dependencies(u, UNIT_DEPENDENCY_UDEV);
388 } else {
389 delete = true;
390
391 r = unit_new_for_name(m, sizeof(Device), e, &u);
392 if (r < 0)
393 goto fail;
394
395 unit_add_to_load_queue(u);
396 }
397
398 /* If this was created via some dependency and has not
399 * actually been seen yet ->sysfs will not be
400 * initialized. Hence initialize it if necessary. */
401 if (sysfs) {
402 r = device_set_sysfs(DEVICE(u), sysfs);
403 if (r < 0)
404 goto fail;
405
406 (void) device_update_description(u, dev, path);
407
408 /* The additional systemd udev properties we only interpret
409 * for the main object */
410 if (main)
411 (void) device_add_udev_wants(u, dev);
412 }
413
414 /* So the user wants the mount units to be bound to the device but a mount unit might has been seen by systemd
415 * before the device appears on its radar. In this case the device unit is partially initialized and includes
416 * the deps on the mount unit but at that time the "bind mounts" flag wasn't not present. Fix this up now. */
417 if (dev && device_is_bound_by_mounts(DEVICE(u), dev))
418 device_upgrade_mount_deps(u);
419
420 /* Note that this won't dispatch the load queue, the caller has to do that if needed and appropriate */
421
422 unit_add_to_dbus_queue(u);
423 return 0;
424
425 fail:
426 log_unit_warning_errno(u, r, "Failed to set up device unit: %m");
427
428 if (delete)
429 unit_free(u);
430
431 return r;
432 }
433
434 static int device_process_new(Manager *m, struct udev_device *dev) {
435 const char *sysfs, *dn, *alias;
436 struct udev_list_entry *item = NULL, *first = NULL;
437 int r;
438
439 assert(m);
440
441 sysfs = udev_device_get_syspath(dev);
442 if (!sysfs)
443 return 0;
444
445 /* Add the main unit named after the sysfs path */
446 r = device_setup_unit(m, dev, sysfs, true);
447 if (r < 0)
448 return r;
449
450 /* Add an additional unit for the device node */
451 dn = udev_device_get_devnode(dev);
452 if (dn)
453 (void) device_setup_unit(m, dev, dn, false);
454
455 /* Add additional units for all symlinks */
456 first = udev_device_get_devlinks_list_entry(dev);
457 udev_list_entry_foreach(item, first) {
458 const char *p;
459 struct stat st;
460
461 /* Don't bother with the /dev/block links */
462 p = udev_list_entry_get_name(item);
463
464 if (path_startswith(p, "/dev/block/") ||
465 path_startswith(p, "/dev/char/"))
466 continue;
467
468 /* Verify that the symlink in the FS actually belongs
469 * to this device. This is useful to deal with
470 * conflicting devices, e.g. when two disks want the
471 * same /dev/disk/by-label/xxx link because they have
472 * the same label. We want to make sure that the same
473 * device that won the symlink wins in systemd, so we
474 * check the device node major/minor */
475 if (stat(p, &st) >= 0)
476 if ((!S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode)) ||
477 st.st_rdev != udev_device_get_devnum(dev))
478 continue;
479
480 (void) device_setup_unit(m, dev, p, false);
481 }
482
483 /* Add additional units for all explicitly configured
484 * aliases */
485 alias = udev_device_get_property_value(dev, "SYSTEMD_ALIAS");
486 for (;;) {
487 _cleanup_free_ char *word = NULL;
488
489 r = extract_first_word(&alias, &word, NULL, EXTRACT_QUOTES);
490 if (r == 0)
491 return 0;
492 if (r == -ENOMEM)
493 return log_oom();
494 if (r < 0)
495 return log_warning_errno(r, "Failed to add parse SYSTEMD_ALIAS for %s: %m", sysfs);
496
497 if (path_is_absolute(word))
498 (void) device_setup_unit(m, dev, word, false);
499 else
500 log_warning("SYSTEMD_ALIAS for %s is not an absolute path, ignoring: %s", sysfs, word);
501 }
502 }
503
504 static void device_update_found_one(Device *d, bool add, DeviceFound found, bool now) {
505 DeviceFound n, previous;
506
507 assert(d);
508
509 n = add ? (d->found | found) : (d->found & ~found);
510 if (n == d->found)
511 return;
512
513 previous = d->found;
514 d->found = n;
515
516 if (!now)
517 return;
518
519 /* Didn't exist before, but does now? if so, generate a new invocation ID for it */
520 if (previous == DEVICE_NOT_FOUND && d->found != DEVICE_NOT_FOUND)
521 (void) unit_acquire_invocation_id(UNIT(d));
522
523 if (d->found & DEVICE_FOUND_UDEV)
524 /* When the device is known to udev we consider it
525 * plugged. */
526 device_set_state(d, DEVICE_PLUGGED);
527 else if (d->found != DEVICE_NOT_FOUND && (previous & DEVICE_FOUND_UDEV) == 0)
528 /* If the device has not been seen by udev yet, but is
529 * now referenced by the kernel, then we assume the
530 * kernel knows it now, and udev might soon too. */
531 device_set_state(d, DEVICE_TENTATIVE);
532 else {
533 /* If nobody sees the device, or if the device was
534 * previously seen by udev and now is only referenced
535 * from the kernel, then we consider the device is
536 * gone, the kernel just hasn't noticed it yet. */
537
538 device_set_state(d, DEVICE_DEAD);
539 device_unset_sysfs(d);
540 }
541
542 }
543
544 static int device_update_found_by_sysfs(Manager *m, const char *sysfs, bool add, DeviceFound found, bool now) {
545 Device *d, *l, *n;
546
547 assert(m);
548 assert(sysfs);
549
550 if (found == DEVICE_NOT_FOUND)
551 return 0;
552
553 l = hashmap_get(m->devices_by_sysfs, sysfs);
554 LIST_FOREACH_SAFE(same_sysfs, d, n, l)
555 device_update_found_one(d, add, found, now);
556
557 return 0;
558 }
559
560 static int device_update_found_by_name(Manager *m, const char *path, bool add, DeviceFound found, bool now) {
561 _cleanup_free_ char *e = NULL;
562 Unit *u;
563 int r;
564
565 assert(m);
566 assert(path);
567
568 if (found == DEVICE_NOT_FOUND)
569 return 0;
570
571 r = unit_name_from_path(path, ".device", &e);
572 if (r < 0)
573 return log_error_errno(r, "Failed to generate unit name from device path: %m");
574
575 u = manager_get_unit(m, e);
576 if (!u)
577 return 0;
578
579 device_update_found_one(DEVICE(u), add, found, now);
580 return 0;
581 }
582
583 static bool device_is_ready(struct udev_device *dev) {
584 const char *ready;
585
586 assert(dev);
587
588 ready = udev_device_get_property_value(dev, "SYSTEMD_READY");
589 if (!ready)
590 return true;
591
592 return parse_boolean(ready) != 0;
593 }
594
595 static Unit *device_following(Unit *u) {
596 Device *d = DEVICE(u);
597 Device *other, *first = NULL;
598
599 assert(d);
600
601 if (startswith(u->id, "sys-"))
602 return NULL;
603
604 /* Make everybody follow the unit that's named after the sysfs path */
605 for (other = d->same_sysfs_next; other; other = other->same_sysfs_next)
606 if (startswith(UNIT(other)->id, "sys-"))
607 return UNIT(other);
608
609 for (other = d->same_sysfs_prev; other; other = other->same_sysfs_prev) {
610 if (startswith(UNIT(other)->id, "sys-"))
611 return UNIT(other);
612
613 first = other;
614 }
615
616 return UNIT(first);
617 }
618
619 static int device_following_set(Unit *u, Set **_set) {
620 Device *d = DEVICE(u), *other;
621 Set *set;
622 int r;
623
624 assert(d);
625 assert(_set);
626
627 if (LIST_JUST_US(same_sysfs, d)) {
628 *_set = NULL;
629 return 0;
630 }
631
632 set = set_new(NULL);
633 if (!set)
634 return -ENOMEM;
635
636 LIST_FOREACH_AFTER(same_sysfs, other, d) {
637 r = set_put(set, other);
638 if (r < 0)
639 goto fail;
640 }
641
642 LIST_FOREACH_BEFORE(same_sysfs, other, d) {
643 r = set_put(set, other);
644 if (r < 0)
645 goto fail;
646 }
647
648 *_set = set;
649 return 1;
650
651 fail:
652 set_free(set);
653 return r;
654 }
655
656 static void device_shutdown(Manager *m) {
657 assert(m);
658
659 m->udev_event_source = sd_event_source_unref(m->udev_event_source);
660
661 if (m->udev_monitor) {
662 udev_monitor_unref(m->udev_monitor);
663 m->udev_monitor = NULL;
664 }
665
666 m->devices_by_sysfs = hashmap_free(m->devices_by_sysfs);
667 }
668
669 static void device_enumerate(Manager *m) {
670 _cleanup_udev_enumerate_unref_ struct udev_enumerate *e = NULL;
671 struct udev_list_entry *item = NULL, *first = NULL;
672 int r;
673
674 assert(m);
675
676 if (!m->udev_monitor) {
677 m->udev_monitor = udev_monitor_new_from_netlink(m->udev, "udev");
678 if (!m->udev_monitor) {
679 log_oom();
680 goto fail;
681 }
682
683 /* This will fail if we are unprivileged, but that
684 * should not matter much, as user instances won't run
685 * during boot. */
686 (void) udev_monitor_set_receive_buffer_size(m->udev_monitor, 128*1024*1024);
687
688 r = udev_monitor_filter_add_match_tag(m->udev_monitor, "systemd");
689 if (r < 0) {
690 log_error_errno(r, "Failed to add udev tag match: %m");
691 goto fail;
692 }
693
694 r = udev_monitor_enable_receiving(m->udev_monitor);
695 if (r < 0) {
696 log_error_errno(r, "Failed to enable udev event reception: %m");
697 goto fail;
698 }
699
700 r = sd_event_add_io(m->event, &m->udev_event_source, udev_monitor_get_fd(m->udev_monitor), EPOLLIN, device_dispatch_io, m);
701 if (r < 0) {
702 log_error_errno(r, "Failed to watch udev file descriptor: %m");
703 goto fail;
704 }
705
706 (void) sd_event_source_set_description(m->udev_event_source, "device");
707 }
708
709 e = udev_enumerate_new(m->udev);
710 if (!e) {
711 log_oom();
712 goto fail;
713 }
714
715 r = udev_enumerate_add_match_tag(e, "systemd");
716 if (r < 0) {
717 log_error_errno(r, "Failed to create udev tag enumeration: %m");
718 goto fail;
719 }
720
721 r = udev_enumerate_add_match_is_initialized(e);
722 if (r < 0) {
723 log_error_errno(r, "Failed to install initialization match into enumeration: %m");
724 goto fail;
725 }
726
727 r = udev_enumerate_scan_devices(e);
728 if (r < 0) {
729 log_error_errno(r, "Failed to enumerate devices: %m");
730 goto fail;
731 }
732
733 first = udev_enumerate_get_list_entry(e);
734 udev_list_entry_foreach(item, first) {
735 _cleanup_udev_device_unref_ struct udev_device *dev = NULL;
736 const char *sysfs;
737
738 sysfs = udev_list_entry_get_name(item);
739
740 dev = udev_device_new_from_syspath(m->udev, sysfs);
741 if (!dev) {
742 log_oom();
743 continue;
744 }
745
746 if (!device_is_ready(dev))
747 continue;
748
749 (void) device_process_new(m, dev);
750
751 device_update_found_by_sysfs(m, sysfs, true, DEVICE_FOUND_UDEV, false);
752 }
753
754 return;
755
756 fail:
757 device_shutdown(m);
758 }
759
760 static int device_dispatch_io(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
761 _cleanup_udev_device_unref_ struct udev_device *dev = NULL;
762 Manager *m = userdata;
763 const char *action, *sysfs;
764 int r;
765
766 assert(m);
767
768 if (revents != EPOLLIN) {
769 static RATELIMIT_DEFINE(limit, 10*USEC_PER_SEC, 5);
770
771 if (!ratelimit_test(&limit))
772 log_error_errno(errno, "Failed to get udev event: %m");
773 if (!(revents & EPOLLIN))
774 return 0;
775 }
776
777 /*
778 * libudev might filter-out devices which pass the bloom
779 * filter, so getting NULL here is not necessarily an error.
780 */
781 dev = udev_monitor_receive_device(m->udev_monitor);
782 if (!dev)
783 return 0;
784
785 sysfs = udev_device_get_syspath(dev);
786 if (!sysfs) {
787 log_error("Failed to get udev sys path.");
788 return 0;
789 }
790
791 action = udev_device_get_action(dev);
792 if (!action) {
793 log_error("Failed to get udev action string.");
794 return 0;
795 }
796
797 if (streq(action, "change")) {
798 _cleanup_free_ char *e = NULL;
799 Unit *u;
800
801 r = unit_name_from_path(sysfs, ".device", &e);
802 if (r < 0)
803 log_error_errno(r, "Failed to generate unit name from device path: %m");
804 else {
805 u = manager_get_unit(m, e);
806 if (u && UNIT_VTABLE(u)->active_state(u) == UNIT_ACTIVE) {
807 r = manager_propagate_reload(m, u, JOB_REPLACE, NULL);
808 if (r < 0)
809 log_error_errno(r, "Failed to propagate reload: %m");
810 }
811 }
812 }
813
814 /* A change event can signal that a device is becoming ready, in particular if
815 * the device is using the SYSTEMD_READY logic in udev
816 * so we need to reach the else block of the follwing if, even for change events */
817 if (streq(action, "remove")) {
818 r = swap_process_device_remove(m, dev);
819 if (r < 0)
820 log_error_errno(r, "Failed to process swap device remove event: %m");
821
822 /* If we get notified that a device was removed by
823 * udev, then it's completely gone, hence unset all
824 * found bits */
825 device_update_found_by_sysfs(m, sysfs, false, DEVICE_FOUND_UDEV|DEVICE_FOUND_MOUNT|DEVICE_FOUND_SWAP, true);
826
827 } else if (device_is_ready(dev)) {
828
829 (void) device_process_new(m, dev);
830
831 r = swap_process_device_new(m, dev);
832 if (r < 0)
833 log_error_errno(r, "Failed to process swap device new event: %m");
834
835 manager_dispatch_load_queue(m);
836
837 /* The device is found now, set the udev found bit */
838 device_update_found_by_sysfs(m, sysfs, true, DEVICE_FOUND_UDEV, true);
839
840 } else {
841 /* The device is nominally around, but not ready for
842 * us. Hence unset the udev bit, but leave the rest
843 * around. */
844
845 device_update_found_by_sysfs(m, sysfs, false, DEVICE_FOUND_UDEV, true);
846 }
847
848 return 0;
849 }
850
851 static bool device_supported(void) {
852 static int read_only = -1;
853
854 /* If /sys is read-only we don't support device units, and any
855 * attempts to start one should fail immediately. */
856
857 if (read_only < 0)
858 read_only = path_is_read_only_fs("/sys");
859
860 return read_only <= 0;
861 }
862
863 int device_found_node(Manager *m, const char *node, bool add, DeviceFound found, bool now) {
864 _cleanup_udev_device_unref_ struct udev_device *dev = NULL;
865 struct stat st;
866
867 assert(m);
868 assert(node);
869
870 if (!device_supported())
871 return 0;
872
873 /* This is called whenever we find a device referenced in
874 * /proc/swaps or /proc/self/mounts. Such a device might be
875 * mounted/enabled at a time where udev has not finished
876 * probing it yet, and we thus haven't learned about it
877 * yet. In this case we will set the device unit to
878 * "tentative" state. */
879
880 if (add) {
881 if (!path_startswith(node, "/dev"))
882 return 0;
883
884 /* We make an extra check here, if the device node
885 * actually exists. If it's missing, then this is an
886 * indication that device was unplugged but is still
887 * referenced in /proc/swaps or
888 * /proc/self/mountinfo. Note that this check doesn't
889 * really cover all cases where a device might be gone
890 * away, since drives that can have a medium inserted
891 * will still have a device node even when the medium
892 * is not there... */
893
894 if (stat(node, &st) >= 0) {
895 if (!S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode))
896 return 0;
897
898 dev = udev_device_new_from_devnum(m->udev, S_ISBLK(st.st_mode) ? 'b' : 'c', st.st_rdev);
899 if (!dev && errno != ENOENT)
900 return log_error_errno(errno, "Failed to get udev device from devnum %u:%u: %m", major(st.st_rdev), minor(st.st_rdev));
901
902 } else if (errno != ENOENT)
903 return log_error_errno(errno, "Failed to stat device node file %s: %m", node);
904
905 /* If the device is known in the kernel and newly
906 * appeared, then we'll create a device unit for it,
907 * under the name referenced in /proc/swaps or
908 * /proc/self/mountinfo. */
909
910 (void) device_setup_unit(m, dev, node, false);
911 }
912
913 /* Update the device unit's state, should it exist */
914 return device_update_found_by_name(m, node, add, found, now);
915 }
916
917 bool device_shall_be_bound_by(Unit *device, Unit *u) {
918
919 if (u->type != UNIT_MOUNT)
920 return false;
921
922 return DEVICE(device)->bind_mounts;
923 }
924
925 const UnitVTable device_vtable = {
926 .object_size = sizeof(Device),
927 .sections =
928 "Unit\0"
929 "Device\0"
930 "Install\0",
931
932 .gc_jobs = true,
933
934 .init = device_init,
935 .done = device_done,
936 .load = unit_load_fragment_and_dropin_optional,
937
938 .coldplug = device_coldplug,
939
940 .serialize = device_serialize,
941 .deserialize_item = device_deserialize_item,
942
943 .dump = device_dump,
944
945 .active_state = device_active_state,
946 .sub_state_to_string = device_sub_state_to_string,
947
948 .bus_vtable = bus_device_vtable,
949
950 .following = device_following,
951 .following_set = device_following_set,
952
953 .enumerate = device_enumerate,
954 .shutdown = device_shutdown,
955 .supported = device_supported,
956
957 .status_message_formats = {
958 .starting_stopping = {
959 [0] = "Expecting device %s...",
960 },
961 .finished_start_job = {
962 [JOB_DONE] = "Found device %s.",
963 [JOB_TIMEOUT] = "Timed out waiting for device %s.",
964 },
965 },
966 };