2010-01-23 07:52:57 +07:00
|
|
|
/*-*- Mode: C; c-basic-offset: 8 -*-*/
|
|
|
|
|
2010-01-28 12:46:33 +07:00
|
|
|
#include <errno.h>
|
|
|
|
#include <libudev.h>
|
|
|
|
|
2010-01-27 03:39:06 +07:00
|
|
|
#include "unit.h"
|
2010-01-23 07:52:57 +07:00
|
|
|
#include "device.h"
|
|
|
|
#include "strv.h"
|
2010-01-28 12:46:33 +07:00
|
|
|
#include "log.h"
|
2010-01-23 07:52:57 +07:00
|
|
|
|
2010-01-29 09:18:09 +07:00
|
|
|
static const UnitActiveState state_translation_table[_DEVICE_STATE_MAX] = {
|
|
|
|
[DEVICE_DEAD] = UNIT_INACTIVE,
|
|
|
|
[DEVICE_AVAILABLE] = UNIT_ACTIVE
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* const state_string_table[_DEVICE_STATE_MAX] = {
|
|
|
|
[DEVICE_DEAD] = "dead",
|
|
|
|
[DEVICE_AVAILABLE] = "available"
|
|
|
|
};
|
|
|
|
|
2010-01-27 03:39:06 +07:00
|
|
|
static void device_done(Unit *u) {
|
|
|
|
Device *d = DEVICE(u);
|
2010-01-26 10:18:44 +07:00
|
|
|
|
|
|
|
assert(d);
|
2010-01-28 12:46:33 +07:00
|
|
|
free(d->sysfs);
|
2010-01-26 10:18:44 +07:00
|
|
|
}
|
|
|
|
|
2010-01-29 09:18:09 +07:00
|
|
|
static void device_set_state(Device *d, DeviceState state) {
|
|
|
|
DeviceState old_state;
|
|
|
|
assert(d);
|
2010-01-23 07:52:57 +07:00
|
|
|
|
2010-01-29 09:18:09 +07:00
|
|
|
old_state = d->state;
|
|
|
|
d->state = state;
|
2010-01-23 07:52:57 +07:00
|
|
|
|
2010-01-29 09:18:09 +07:00
|
|
|
log_debug("%s changed %s → %s", unit_id(UNIT(d)), state_string_table[old_state], state_string_table[state]);
|
|
|
|
|
|
|
|
unit_notify(UNIT(d), state_translation_table[old_state], state_translation_table[state]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int device_coldplug(Unit *u) {
|
|
|
|
Device *d = DEVICE(u);
|
|
|
|
|
|
|
|
assert(d);
|
|
|
|
assert(d->state == DEVICE_DEAD);
|
|
|
|
|
|
|
|
if (d->sysfs)
|
|
|
|
device_set_state(d, DEVICE_AVAILABLE);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void device_dump(Unit *u, FILE *f, const char *prefix) {
|
2010-01-28 12:46:33 +07:00
|
|
|
Device *d = DEVICE(u);
|
2010-01-23 07:52:57 +07:00
|
|
|
|
2010-01-28 12:46:33 +07:00
|
|
|
assert(d);
|
2010-01-23 07:52:57 +07:00
|
|
|
|
|
|
|
fprintf(f,
|
2010-01-28 12:46:33 +07:00
|
|
|
"%sDevice State: %s\n"
|
|
|
|
"%sSysfs Path: %s\n",
|
2010-01-29 09:18:09 +07:00
|
|
|
prefix, state_string_table[d->state],
|
|
|
|
prefix, strna(d->sysfs));
|
|
|
|
}
|
|
|
|
|
|
|
|
static UnitActiveState device_active_state(Unit *u) {
|
|
|
|
assert(u);
|
|
|
|
|
|
|
|
return state_translation_table[DEVICE(u)->state];
|
2010-01-28 12:46:33 +07:00
|
|
|
}
|
|
|
|
|
2010-01-29 08:07:41 +07:00
|
|
|
static int device_add_escaped_name(Unit *u, const char *prefix, const char *dn, bool make_id) {
|
2010-01-28 12:46:33 +07:00
|
|
|
char *e;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
assert(u);
|
|
|
|
assert(dn);
|
|
|
|
assert(dn[0] == '/');
|
|
|
|
|
2010-01-29 08:07:41 +07:00
|
|
|
if (!(e = unit_name_escape_path(prefix, dn+1, ".device")))
|
2010-01-28 12:46:33 +07:00
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
r = unit_add_name(u, e);
|
2010-01-29 08:07:41 +07:00
|
|
|
|
|
|
|
if (r >= 0 && make_id)
|
|
|
|
unit_choose_id(u, e);
|
|
|
|
|
2010-01-28 12:46:33 +07:00
|
|
|
free(e);
|
|
|
|
|
|
|
|
if (r < 0 && r != -EEXIST)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int device_process_device(Manager *m, struct udev_device *dev) {
|
|
|
|
const char *dn, *names, *wants, *sysfs;
|
|
|
|
Unit *u = NULL;
|
|
|
|
int r;
|
|
|
|
char *e, *w, *state;
|
|
|
|
size_t l;
|
|
|
|
bool delete;
|
|
|
|
struct udev_list_entry *item = NULL, *first = NULL;
|
|
|
|
|
|
|
|
assert(m);
|
|
|
|
|
|
|
|
/* Check whether this entry is even relevant for us. */
|
|
|
|
dn = udev_device_get_devnode(dev);
|
|
|
|
names = udev_device_get_property_value(dev, "SYSTEMD_NAMES");
|
|
|
|
wants = udev_device_get_property_value(dev, "SYSTEMD_WANTS");
|
|
|
|
|
|
|
|
if (!dn && !names && !wants)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Ok, seems kinda interesting. Now, let's see if this one
|
|
|
|
* already exists. */
|
|
|
|
|
|
|
|
if (!(sysfs = udev_device_get_syspath(dev)))
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
assert(sysfs[0] == '/');
|
2010-01-29 08:07:41 +07:00
|
|
|
if (!(e = unit_name_escape_path("sysfs-", sysfs+1, ".device")))
|
2010-01-28 12:46:33 +07:00
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
if (!(u = manager_get_unit(m, e))) {
|
|
|
|
const char *model;
|
|
|
|
|
|
|
|
delete = true;
|
|
|
|
|
|
|
|
if (!(u = unit_new(m))) {
|
|
|
|
free(e);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = unit_add_name(u, e);
|
|
|
|
free(e);
|
|
|
|
|
|
|
|
if (r < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (!(DEVICE(u)->sysfs = strdup(sysfs))) {
|
|
|
|
r = -ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((model = udev_device_get_property_value(dev, "ID_MODEL_FROM_DATABASE")) ||
|
2010-01-29 09:18:09 +07:00
|
|
|
(model = udev_device_get_property_value(dev, "ID_MODEL")))
|
|
|
|
if ((r = unit_set_description(u, model)) < 0)
|
2010-01-28 12:46:33 +07:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
delete = false;
|
|
|
|
free(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dn)
|
2010-01-29 08:07:41 +07:00
|
|
|
if ((r = device_add_escaped_name(u, "node-", dn, true)) < 0)
|
2010-01-28 12:46:33 +07:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
first = udev_device_get_devlinks_list_entry(dev);
|
|
|
|
udev_list_entry_foreach(item, first)
|
2010-01-29 08:07:41 +07:00
|
|
|
if ((r = device_add_escaped_name(u, "node-", udev_list_entry_get_name(item), false)) < 0)
|
2010-01-28 12:46:33 +07:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (names) {
|
|
|
|
FOREACH_WORD(w, l, names, state) {
|
|
|
|
if (!(e = strndup(w, l)))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
r = unit_add_name(u, e);
|
|
|
|
free(e);
|
|
|
|
|
|
|
|
if (r < 0 && r != -EEXIST)
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (set_isempty(u->meta.names)) {
|
|
|
|
r = -EEXIST;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wants) {
|
|
|
|
FOREACH_WORD(w, l, wants, state) {
|
|
|
|
if (!(e = strndup(w, l)))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
r = unit_add_dependency_by_name(u, UNIT_WANTS, e);
|
|
|
|
free(e);
|
|
|
|
|
|
|
|
if (r < 0)
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unit_add_to_load_queue(u);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (delete && u)
|
|
|
|
unit_free(u);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int device_process_path(Manager *m, const char *path) {
|
|
|
|
int r;
|
|
|
|
struct udev_device *dev;
|
|
|
|
|
|
|
|
assert(m);
|
|
|
|
assert(path);
|
|
|
|
|
|
|
|
if (!(dev = udev_device_new_from_syspath(m->udev, path))) {
|
|
|
|
log_warning("Failed to get udev device object from udev for path %s.", path);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = device_process_device(m, dev);
|
|
|
|
udev_device_unref(dev);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void device_shutdown(Manager *m) {
|
|
|
|
assert(m);
|
|
|
|
|
|
|
|
if (m->udev)
|
|
|
|
udev_unref(m->udev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int device_enumerate(Manager *m) {
|
|
|
|
int r;
|
|
|
|
struct udev_enumerate *e = NULL;
|
|
|
|
struct udev_list_entry *item = NULL, *first = NULL;
|
|
|
|
|
|
|
|
assert(m);
|
|
|
|
|
|
|
|
if (!(m->udev = udev_new()))
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
if (!(e = udev_enumerate_new(m->udev))) {
|
|
|
|
r = -ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (udev_enumerate_scan_devices(e) < 0) {
|
|
|
|
r = -EIO;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
first = udev_enumerate_get_list_entry(e);
|
|
|
|
udev_list_entry_foreach(item, first)
|
|
|
|
device_process_path(m, udev_list_entry_get_name(item));
|
|
|
|
|
|
|
|
udev_enumerate_unref(e);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (e)
|
|
|
|
udev_enumerate_unref(e);
|
|
|
|
|
|
|
|
device_shutdown(m);
|
|
|
|
return r;
|
2010-01-23 07:52:57 +07:00
|
|
|
}
|
|
|
|
|
2010-01-27 03:39:06 +07:00
|
|
|
const UnitVTable device_vtable = {
|
2010-01-23 07:52:57 +07:00
|
|
|
.suffix = ".device",
|
|
|
|
|
2010-01-27 03:39:06 +07:00
|
|
|
.init = unit_load_fragment_and_dropin,
|
2010-01-26 10:18:44 +07:00
|
|
|
.done = device_done,
|
2010-01-29 09:18:09 +07:00
|
|
|
.coldplug = device_coldplug,
|
|
|
|
|
2010-01-23 07:52:57 +07:00
|
|
|
.dump = device_dump,
|
|
|
|
|
2010-01-29 09:18:09 +07:00
|
|
|
.active_state = device_active_state,
|
2010-01-28 12:46:33 +07:00
|
|
|
|
2010-01-29 09:18:09 +07:00
|
|
|
.enumerate = device_enumerate,
|
|
|
|
.shutdown = device_shutdown
|
2010-01-23 07:52:57 +07:00
|
|
|
};
|