logind: retrigger devices when we reassign them

This commit is contained in:
Lennart Poettering 2011-06-28 23:03:56 +02:00
parent 88bb8d215a
commit a0a0c7f18c
2 changed files with 44 additions and 0 deletions

View file

@ -557,6 +557,8 @@ static int attach_device(Manager *m, const char *seat, const char *sysfs) {
char *rule = NULL, *file = NULL;
const char *id_for_seat;
int r;
struct udev_enumerate *e;
struct udev_list_entry *first, *item;
assert(m);
assert(seat);
@ -589,6 +591,38 @@ static int attach_device(Manager *m, const char *seat, const char *sysfs) {
mkdir_p("/etc/udev/rules.d", 0755);
r = write_one_line_file(file, rule);
if (r < 0)
goto finish;
e = udev_enumerate_new(m->udev);
if (!e) {
r = -ENOMEM;
goto finish;
}
if (udev_enumerate_scan_devices(e) < 0) {
r = -EIO;
goto finish;
}
first = udev_enumerate_get_list_entry(e);
udev_list_entry_foreach(item, first) {
char *t;
const char *p;
p = udev_list_entry_get_name(item);
if (!startswith(p, sysfs))
continue;
t = strappend(p, "/uevent");
if (!t) {
r = -ENOMEM;
goto finish;
}
write_one_line_file(t, "change");
free(t);
}
finish:
free(rule);
@ -597,6 +631,9 @@ finish:
if (d)
udev_device_unref(d);
if (e)
udev_enumerate_unref(e);
return r;
}

View file

@ -39,6 +39,13 @@
* add configuration file
* D-Bus method: AttachDevices(seat, devices[]);
* use named pipes to detect when a session dies
* verify access to SetIdleHint
* drop redundant udev_device_get_is_initialized() use as soon as libudev is fixed
* properly escape/remove : and . from seat names in udev rules
* use device_has_tag() as soon as it is available
* trigger based on libudev if available
* enumerate recursively with libudev when triggering
* make sure IMPORT{parent}="ID_SEAT" works between usb hub and sound card
*
* non-local X11 server
* reboot/shutdown halt management