1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 #include <sys/epoll.h>
30 #include "unit-name.h"
31 #include "dbus-device.h"
34 static const UnitActiveState state_translation_table[_DEVICE_STATE_MAX] = {
35 [DEVICE_DEAD] = UNIT_INACTIVE,
36 [DEVICE_PLUGGED] = UNIT_ACTIVE
39 static void device_unset_sysfs(Device *d) {
47 /* Remove this unit from the chain of devices which share the
49 first = hashmap_get(d->meta.manager->devices_by_sysfs, d->sysfs);
50 LIST_REMOVE(Device, same_sysfs, first, d);
53 hashmap_remove_and_replace(d->meta.manager->devices_by_sysfs, d->sysfs, first->sysfs, first);
55 hashmap_remove(d->meta.manager->devices_by_sysfs, d->sysfs);
61 static void device_init(Unit *u) {
62 Device *d = DEVICE(u);
65 assert(d->meta.load_state == UNIT_STUB);
67 /* In contrast to all other unit types we timeout jobs waiting
68 * for devices by default. This is because they otherwise wait
69 * indefinitely for plugged in devices, something which cannot
70 * happen for the other units since their operations time out
72 d->meta.job_timeout = DEFAULT_TIMEOUT_USEC;
74 d->meta.ignore_on_isolate = true;
75 d->meta.ignore_on_snapshot = true;
78 static void device_done(Unit *u) {
79 Device *d = DEVICE(u);
83 device_unset_sysfs(d);
86 static void device_set_state(Device *d, DeviceState state) {
87 DeviceState old_state;
93 if (state != old_state)
94 log_debug("%s changed %s -> %s",
96 device_state_to_string(old_state),
97 device_state_to_string(state));
99 unit_notify(UNIT(d), state_translation_table[old_state], state_translation_table[state], true);
102 static int device_coldplug(Unit *u) {
103 Device *d = DEVICE(u);
106 assert(d->state == DEVICE_DEAD);
109 device_set_state(d, DEVICE_PLUGGED);
114 static void device_dump(Unit *u, FILE *f, const char *prefix) {
115 Device *d = DEVICE(u);
120 "%sDevice State: %s\n"
121 "%sSysfs Path: %s\n",
122 prefix, device_state_to_string(d->state),
123 prefix, strna(d->sysfs));
126 static UnitActiveState device_active_state(Unit *u) {
129 return state_translation_table[DEVICE(u)->state];
132 static const char *device_sub_state_to_string(Unit *u) {
135 return device_state_to_string(DEVICE(u)->state);
138 static int device_add_escaped_name(Unit *u, const char *dn) {
144 assert(dn[0] == '/');
146 if (!(e = unit_name_from_path(dn, ".device")))
149 r = unit_add_name(u, e);
152 if (r < 0 && r != -EEXIST)
158 static int device_find_escape_name(Manager *m, const char *dn, Unit **_u) {
164 assert(dn[0] == '/');
167 if (!(e = unit_name_from_path(dn, ".device")))
170 u = manager_get_unit(m, e);
181 static int device_update_unit(Manager *m, struct udev_device *dev, const char *path, bool main) {
182 const char *sysfs, *model;
189 if (!(sysfs = udev_device_get_syspath(dev)))
192 if ((r = device_find_escape_name(m, path, &u)) < 0)
195 if (u && DEVICE(u)->sysfs && !path_equal(DEVICE(u)->sysfs, sysfs))
201 if (!(u = unit_new(m)))
204 if ((r = device_add_escaped_name(u, path)) < 0)
207 unit_add_to_load_queue(u);
211 /* If this was created via some dependency and has not
212 * actually been seen yet ->sysfs will not be
213 * initialized. Hence initialize it if necessary. */
215 if (!DEVICE(u)->sysfs) {
218 if (!(DEVICE(u)->sysfs = strdup(sysfs))) {
223 if (!m->devices_by_sysfs)
224 if (!(m->devices_by_sysfs = hashmap_new(string_hash_func, string_compare_func))) {
229 first = hashmap_get(m->devices_by_sysfs, sysfs);
230 LIST_PREPEND(Device, same_sysfs, first, DEVICE(u));
232 if ((r = hashmap_replace(m->devices_by_sysfs, DEVICE(u)->sysfs, first)) < 0)
236 if ((model = udev_device_get_property_value(dev, "ID_MODEL_FROM_DATABASE")) ||
237 (model = udev_device_get_property_value(dev, "ID_MODEL"))) {
238 if ((r = unit_set_description(u, model)) < 0)
241 if ((r = unit_set_description(u, path)) < 0)
245 /* The additional systemd udev properties we only
246 * interpret for the main object */
247 const char *wants, *alias;
249 if ((alias = udev_device_get_property_value(dev, "SYSTEMD_ALIAS"))) {
251 log_warning("SYSTEMD_ALIAS for %s is not a path, ignoring: %s", sysfs, alias);
253 if ((r = device_add_escaped_name(u, alias)) < 0)
258 if ((wants = udev_device_get_property_value(dev, "SYSTEMD_WANTS"))) {
262 FOREACH_WORD_QUOTED(w, l, wants, state) {
265 if (!(e = strndup(w, l))) {
270 r = unit_add_dependency_by_name(u, UNIT_WANTS, e, NULL, true);
279 unit_add_to_dbus_queue(u);
283 log_warning("Failed to load device unit: %s", strerror(-r));
291 static int device_process_new_device(Manager *m, struct udev_device *dev, bool update_state) {
292 const char *sysfs, *dn;
293 struct udev_list_entry *item = NULL, *first = NULL;
297 if (!(sysfs = udev_device_get_syspath(dev)))
300 /* Add the main unit named after the sysfs path */
301 device_update_unit(m, dev, sysfs, true);
303 /* Add an additional unit for the device node */
304 if ((dn = udev_device_get_devnode(dev)))
305 device_update_unit(m, dev, dn, false);
307 /* Add additional units for all symlinks */
308 first = udev_device_get_devlinks_list_entry(dev);
309 udev_list_entry_foreach(item, first) {
313 /* Don't bother with the /dev/block links */
314 p = udev_list_entry_get_name(item);
316 if (path_startswith(p, "/dev/block/") ||
317 path_startswith(p, "/dev/char/"))
320 /* Verify that the symlink in the FS actually belongs
321 * to this device. This is useful to deal with
322 * conflicting devices, e.g. when two disks want the
323 * same /dev/disk/by-label/xxx link because they have
324 * the same label. We want to make sure that the same
325 * device that won the symlink wins in systemd, so we
326 * check the device node major/minor*/
327 if (stat(p, &st) >= 0)
328 if ((!S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode)) ||
329 st.st_rdev != udev_device_get_devnum(dev))
332 device_update_unit(m, dev, p, false);
338 manager_dispatch_load_queue(m);
340 l = hashmap_get(m->devices_by_sysfs, sysfs);
341 LIST_FOREACH(same_sysfs, d, l)
342 device_set_state(d, DEVICE_PLUGGED);
348 static int device_process_path(Manager *m, const char *path, bool update_state) {
350 struct udev_device *dev;
355 if (!(dev = udev_device_new_from_syspath(m->udev, path))) {
356 log_warning("Failed to get udev device object from udev for path %s.", path);
360 r = device_process_new_device(m, dev, update_state);
361 udev_device_unref(dev);
365 static int device_process_removed_device(Manager *m, struct udev_device *dev) {
372 if (!(sysfs = udev_device_get_syspath(dev)))
375 /* Remove all units of this sysfs path */
376 while ((d = hashmap_get(m->devices_by_sysfs, sysfs))) {
377 device_unset_sysfs(d);
378 device_set_state(d, DEVICE_DEAD);
384 static Unit *device_following(Unit *u) {
385 Device *d = DEVICE(u);
386 Device *other, *first = NULL;
390 if (startswith(u->meta.id, "sys-"))
393 /* Make everybody follow the unit that's named after the sysfs path */
394 for (other = d->same_sysfs_next; other; other = other->same_sysfs_next)
395 if (startswith(other->meta.id, "sys-"))
398 for (other = d->same_sysfs_prev; other; other = other->same_sysfs_prev) {
399 if (startswith(other->meta.id, "sys-"))
408 static int device_following_set(Unit *u, Set **_s) {
409 Device *d = DEVICE(u);
417 if (!d->same_sysfs_prev && !d->same_sysfs_next) {
422 if (!(s = set_new(NULL, NULL)))
425 for (other = d->same_sysfs_next; other; other = other->same_sysfs_next)
426 if ((r = set_put(s, other)) < 0)
429 for (other = d->same_sysfs_prev; other; other = other->same_sysfs_prev)
430 if ((r = set_put(s, other)) < 0)
441 static void device_shutdown(Manager *m) {
444 if (m->udev_monitor) {
445 udev_monitor_unref(m->udev_monitor);
446 m->udev_monitor = NULL;
454 hashmap_free(m->devices_by_sysfs);
455 m->devices_by_sysfs = NULL;
458 static int device_enumerate(Manager *m) {
459 struct epoll_event ev;
461 struct udev_enumerate *e = NULL;
462 struct udev_list_entry *item = NULL, *first = NULL;
467 if (!(m->udev = udev_new()))
470 if (!(m->udev_monitor = udev_monitor_new_from_netlink(m->udev, "udev"))) {
475 /* This will fail if we are unprivileged, but that
476 * should not matter much, as user instances won't run
478 udev_monitor_set_receive_buffer_size(m->udev_monitor, 128*1024*1024);
480 if (udev_monitor_filter_add_match_tag(m->udev_monitor, "systemd") < 0) {
485 if (udev_monitor_enable_receiving(m->udev_monitor) < 0) {
490 m->udev_watch.type = WATCH_UDEV;
491 m->udev_watch.fd = udev_monitor_get_fd(m->udev_monitor);
495 ev.data.ptr = &m->udev_watch;
497 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->udev_watch.fd, &ev) < 0)
501 if (!(e = udev_enumerate_new(m->udev))) {
505 if (udev_enumerate_add_match_tag(e, "systemd") < 0) {
510 if (udev_enumerate_scan_devices(e) < 0) {
515 first = udev_enumerate_get_list_entry(e);
516 udev_list_entry_foreach(item, first)
517 device_process_path(m, udev_list_entry_get_name(item), false);
519 udev_enumerate_unref(e);
524 udev_enumerate_unref(e);
530 void device_fd_event(Manager *m, int events) {
531 struct udev_device *dev;
533 const char *action, *ready;
537 if (events != EPOLLIN) {
538 static RATELIMIT_DEFINE(limit, 10*USEC_PER_SEC, 5);
540 if (!ratelimit_test(&limit))
541 log_error("Failed to get udev event: %m");
542 if (!(events & EPOLLIN))
546 if (!(dev = udev_monitor_receive_device(m->udev_monitor))) {
548 * libudev might filter-out devices which pass the bloom filter,
549 * so getting NULL here is not necessarily an error
554 if (!(action = udev_device_get_action(dev))) {
555 log_error("Failed to get udev action string.");
559 ready = udev_device_get_property_value(dev, "SYSTEMD_READY");
561 if (streq(action, "remove") || (ready && parse_boolean(ready) == 0)) {
562 if ((r = device_process_removed_device(m, dev)) < 0) {
563 log_error("Failed to process udev device event: %s", strerror(-r));
567 if ((r = device_process_new_device(m, dev, true)) < 0) {
568 log_error("Failed to process udev device event: %s", strerror(-r));
574 udev_device_unref(dev);
577 static const char* const device_state_table[_DEVICE_STATE_MAX] = {
578 [DEVICE_DEAD] = "dead",
579 [DEVICE_PLUGGED] = "plugged"
582 DEFINE_STRING_TABLE_LOOKUP(device_state, DeviceState);
584 const UnitVTable device_vtable = {
591 .no_instances = true,
595 .load = unit_load_fragment_and_dropin_optional,
597 .coldplug = device_coldplug,
601 .active_state = device_active_state,
602 .sub_state_to_string = device_sub_state_to_string,
604 .bus_interface = "org.freedesktop.systemd1.Device",
605 .bus_message_handler = bus_device_message_handler,
606 .bus_invalidating_properties = bus_device_invalidating_properties,
608 .following = device_following,
609 .following_set = device_following_set,
611 .enumerate = device_enumerate,
612 .shutdown = device_shutdown