]>
git.ipfire.org Git - thirdparty/systemd.git/blob - src/login/logind-device.c
5e7e8053d66db452a9dd2818826bd7cba43e23c7
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
5 #include "alloc-util.h"
8 #include "logind-device.h"
9 #include "logind-seat.h"
10 #include "logind-seat-dbus.h"
11 #include "logind-session-device.h"
13 Device
* device_new(Manager
*m
, const char *sysfs
, bool master
) {
23 d
->sysfs
= strdup(sysfs
);
27 if (hashmap_put(m
->devices
, d
->sysfs
, d
) < 0) {
34 dual_timestamp_now(&d
->timestamp
);
39 static void device_detach(Device
*d
) {
48 while ((sd
= d
->session_devices
))
49 session_device_free(sd
);
52 LIST_REMOVE(devices
, d
->seat
->devices
, d
);
55 if (!seat_has_master_device(s
)) {
56 seat_add_to_gc_queue(s
);
57 seat_send_changed(s
, "CanGraphical");
61 void device_free(Device
*d
) {
66 hashmap_remove(d
->manager
->devices
, d
->sysfs
);
72 void device_attach(Device
*d
, Seat
*s
) {
85 had_master
= seat_has_master_device(s
);
87 /* We keep the device list sorted by the "master" flag. That is, master
88 * devices are at the front, other devices at the tail. As there is no
89 * way to easily add devices at the list-tail, we need to iterate the
90 * list to find the first non-master device when adding non-master
91 * devices. We assume there is only a few (normally 1) master devices
92 * per seat, so we iterate only a few times. */
94 if (d
->master
|| !s
->devices
)
95 LIST_PREPEND(devices
, s
->devices
, d
);
97 LIST_FOREACH(devices
, i
, s
->devices
) {
98 if (!i
->devices_next
|| !i
->master
) {
99 LIST_INSERT_AFTER(devices
, s
->devices
, i
, d
);
104 if (!had_master
&& d
->master
&& s
->started
) {
106 seat_send_changed(s
, "CanGraphical");