]> git.ipfire.org Git - people/ms/systemd.git/blame - device.c
device: allow easy identification of network interfaces without their full sysfs...
[people/ms/systemd.git] / device.c
CommitLineData
5cb5a6ff
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
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.
12
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.
17
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/>.
20***/
21
25ac040b 22#include <errno.h>
f94ea366 23#include <sys/epoll.h>
25ac040b
LP
24#include <libudev.h>
25
87f0e418 26#include "unit.h"
5cb5a6ff
LP
27#include "device.h"
28#include "strv.h"
25ac040b 29#include "log.h"
9e2f7c11 30#include "unit-name.h"
4139c1b2 31#include "dbus-device.h"
5cb5a6ff 32
f50e0a01
LP
33static const UnitActiveState state_translation_table[_DEVICE_STATE_MAX] = {
34 [DEVICE_DEAD] = UNIT_INACTIVE,
35 [DEVICE_AVAILABLE] = UNIT_ACTIVE
36};
37
87f0e418
LP
38static void device_done(Unit *u) {
39 Device *d = DEVICE(u);
034c6ed7
LP
40
41 assert(d);
e537352b 42
25ac040b 43 free(d->sysfs);
e537352b
LP
44 d->sysfs = NULL;
45}
46
f50e0a01
LP
47static void device_set_state(Device *d, DeviceState state) {
48 DeviceState old_state;
49 assert(d);
5cb5a6ff 50
f50e0a01
LP
51 old_state = d->state;
52 d->state = state;
5cb5a6ff 53
e537352b 54 if (state != old_state)
40d50879 55 log_debug("%s changed %s -> %s",
a16e1123
LP
56 UNIT(d)->meta.id,
57 device_state_to_string(old_state),
58 device_state_to_string(state));
f50e0a01
LP
59
60 unit_notify(UNIT(d), state_translation_table[old_state], state_translation_table[state]);
61}
62
63static int device_coldplug(Unit *u) {
64 Device *d = DEVICE(u);
65
66 assert(d);
67 assert(d->state == DEVICE_DEAD);
68
69 if (d->sysfs)
70 device_set_state(d, DEVICE_AVAILABLE);
71
72 return 0;
73}
74
75static void device_dump(Unit *u, FILE *f, const char *prefix) {
25ac040b 76 Device *d = DEVICE(u);
5cb5a6ff 77
25ac040b 78 assert(d);
5cb5a6ff
LP
79
80 fprintf(f,
25ac040b
LP
81 "%sDevice State: %s\n"
82 "%sSysfs Path: %s\n",
a16e1123 83 prefix, device_state_to_string(d->state),
f50e0a01
LP
84 prefix, strna(d->sysfs));
85}
86
87static UnitActiveState device_active_state(Unit *u) {
88 assert(u);
89
90 return state_translation_table[DEVICE(u)->state];
25ac040b
LP
91}
92
10a94420
LP
93static const char *device_sub_state_to_string(Unit *u) {
94 assert(u);
95
a16e1123 96 return device_state_to_string(DEVICE(u)->state);
10a94420
LP
97}
98
2e478a46 99static int device_add_escaped_name(Unit *u, const char *dn, bool make_id) {
25ac040b
LP
100 char *e;
101 int r;
102
103 assert(u);
104 assert(dn);
105 assert(dn[0] == '/');
106
a16e1123 107 if (!(e = unit_name_from_path(dn, ".device")))
25ac040b
LP
108 return -ENOMEM;
109
110 r = unit_add_name(u, e);
b08d03ff
LP
111
112 if (r >= 0 && make_id)
113 unit_choose_id(u, e);
114
25ac040b
LP
115 free(e);
116
117 if (r < 0 && r != -EEXIST)
118 return r;
119
120 return 0;
121}
122
aab14b13
LP
123static int device_find_escape_name(Manager *m, const char *dn, Unit **_u) {
124 char *e;
125 Unit *u;
126
127 assert(m);
128 assert(dn);
129 assert(dn[0] == '/');
130 assert(_u);
131
a16e1123 132 if (!(e = unit_name_from_path(dn, ".device")))
aab14b13
LP
133 return -ENOMEM;
134
135 u = manager_get_unit(m, e);
136 free(e);
137
138 if (u) {
139 *_u = u;
140 return 1;
141 }
142
143 return 0;
144}
145
f94ea366 146static int device_process_new_device(Manager *m, struct udev_device *dev, bool update_state) {
afb757b1 147 const char *dn, *wants, *sysfs, *expose, *model, *alias;
25ac040b
LP
148 Unit *u = NULL;
149 int r;
aab14b13 150 char *w, *state;
25ac040b
LP
151 size_t l;
152 bool delete;
153 struct udev_list_entry *item = NULL, *first = NULL;
09e80b16 154 int b;
25ac040b
LP
155
156 assert(m);
157
7f275a9f
LP
158 if (!(sysfs = udev_device_get_syspath(dev)))
159 return -ENOMEM;
160
09e80b16
LP
161 if (!(expose = udev_device_get_property_value(dev, "SYSTEMD_EXPOSE")))
162 return 0;
163
164 if ((b = parse_boolean(expose)) < 0) {
165 log_error("Failed to parse SYSTEMD_EXPOSE udev property for device %s: %s", sysfs, expose);
166 return 0;
167 }
168
169 if (!b)
170 return 0;
171
25ac040b
LP
172 /* Check whether this entry is even relevant for us. */
173 dn = udev_device_get_devnode(dev);
25ac040b 174 wants = udev_device_get_property_value(dev, "SYSTEMD_WANTS");
afb757b1
LP
175 alias = udev_device_get_property_value(dev, "SYSTEMD_ALIAS");
176
177 /* We allow exactly one alias to be configured a this time and
178 * it must be a path */
179
180 if (alias && !is_path(alias)) {
181 log_warning("SYSTEMD_ALIAS for %s is not a path, ignoring: %s", sysfs, alias);
182 alias = NULL;
183 }
25ac040b 184
aab14b13
LP
185 if ((r = device_find_escape_name(m, sysfs, &u)) < 0)
186 return r;
25ac040b 187
aab14b13
LP
188 if (r == 0 && dn)
189 if ((r = device_find_escape_name(m, dn, &u)) < 0)
190 return r;
25ac040b 191
aab14b13
LP
192 if (r == 0) {
193 first = udev_device_get_devlinks_list_entry(dev);
194 udev_list_entry_foreach(item, first) {
195 if ((r = device_find_escape_name(m, udev_list_entry_get_name(item), &u)) < 0)
196 return r;
25ac040b 197
aab14b13
LP
198 if (r > 0)
199 break;
25ac040b 200 }
aab14b13
LP
201 }
202
afb757b1
LP
203 if (r == 0 && alias)
204 if ((r = device_find_escape_name(m, alias, &u)) < 0)
205 return r;
206
aab14b13
LP
207 /* FIXME: this needs proper merging */
208
209 assert((r > 0) == !!u);
210
211 /* If this is a different unit, then let's not merge things */
afb757b1 212 if (u && DEVICE(u)->sysfs && !path_equal(DEVICE(u)->sysfs, sysfs))
aab14b13 213 u = NULL;
25ac040b 214
aab14b13
LP
215 if (!u) {
216 delete = true;
217
218 if (!(u = unit_new(m)))
219 return -ENOMEM;
25ac040b 220
aab14b13 221 if ((r = device_add_escaped_name(u, sysfs, true)) < 0)
25ac040b
LP
222 goto fail;
223
e537352b
LP
224 unit_add_to_load_queue(u);
225 } else
226 delete = false;
227
228 if (!(DEVICE(u)->sysfs))
25ac040b
LP
229 if (!(DEVICE(u)->sysfs = strdup(sysfs))) {
230 r = -ENOMEM;
231 goto fail;
232 }
233
afb757b1
LP
234 if (alias)
235 if ((r = device_add_escaped_name(u, alias, true)) < 0)
236 goto fail;
237
25ac040b 238 if (dn)
2e478a46 239 if ((r = device_add_escaped_name(u, dn, true)) < 0)
25ac040b
LP
240 goto fail;
241
242 first = udev_device_get_devlinks_list_entry(dev);
243 udev_list_entry_foreach(item, first)
2e478a46 244 if ((r = device_add_escaped_name(u, udev_list_entry_get_name(item), false)) < 0)
25ac040b
LP
245 goto fail;
246
aab14b13
LP
247 if ((model = udev_device_get_property_value(dev, "ID_MODEL_FROM_DATABASE")) ||
248 (model = udev_device_get_property_value(dev, "ID_MODEL"))) {
249 if ((r = unit_set_description(u, model)) < 0)
250 goto fail;
251 } else if (dn)
252 if ((r = unit_set_description(u, dn)) < 0)
253 goto fail;
254
25ac040b
LP
255 if (wants) {
256 FOREACH_WORD(w, l, wants, state) {
aab14b13
LP
257 char *e;
258
b866264a
LP
259 if (!(e = strndup(w, l))) {
260 r = -ENOMEM;
25ac040b 261 goto fail;
b866264a 262 }
25ac040b 263
701cc384 264 r = unit_add_dependency_by_name(u, UNIT_WANTS, NULL, e, true);
25ac040b
LP
265 free(e);
266
267 if (r < 0)
268 goto fail;
269 }
270 }
271
f94ea366
LP
272 if (update_state) {
273 manager_dispatch_load_queue(u->meta.manager);
274 device_set_state(DEVICE(u), DEVICE_AVAILABLE);
275 }
276
c1e1601e
LP
277 unit_add_to_dbus_queue(u);
278
25ac040b
LP
279 return 0;
280
281fail:
282 if (delete && u)
283 unit_free(u);
284 return r;
285}
286
f94ea366 287static int device_process_path(Manager *m, const char *path, bool update_state) {
25ac040b
LP
288 int r;
289 struct udev_device *dev;
290
291 assert(m);
292 assert(path);
293
294 if (!(dev = udev_device_new_from_syspath(m->udev, path))) {
295 log_warning("Failed to get udev device object from udev for path %s.", path);
296 return -ENOMEM;
297 }
298
f94ea366 299 r = device_process_new_device(m, dev, update_state);
25ac040b
LP
300 udev_device_unref(dev);
301 return r;
302}
303
f94ea366
LP
304static int device_process_removed_device(Manager *m, struct udev_device *dev) {
305 const char *sysfs;
306 char *e;
307 Unit *u;
308 Device *d;
309
310 assert(m);
311 assert(dev);
312
313 if (!(sysfs = udev_device_get_syspath(dev)))
314 return -ENOMEM;
315
316 assert(sysfs[0] == '/');
a16e1123 317 if (!(e = unit_name_from_path(sysfs, ".device")))
f94ea366
LP
318 return -ENOMEM;
319
320 u = manager_get_unit(m, e);
321 free(e);
322
323 if (!u)
324 return 0;
325
326 d = DEVICE(u);
327 free(d->sysfs);
328 d->sysfs = NULL;
329
330 device_set_state(d, DEVICE_DEAD);
331 return 0;
332}
333
25ac040b
LP
334static void device_shutdown(Manager *m) {
335 assert(m);
336
a16e1123 337 if (m->udev_monitor) {
f94ea366 338 udev_monitor_unref(m->udev_monitor);
a16e1123
LP
339 m->udev_monitor = NULL;
340 }
f94ea366 341
a16e1123 342 if (m->udev) {
25ac040b 343 udev_unref(m->udev);
a16e1123
LP
344 m->udev = NULL;
345 }
25ac040b
LP
346}
347
348static int device_enumerate(Manager *m) {
f94ea366 349 struct epoll_event ev;
25ac040b
LP
350 int r;
351 struct udev_enumerate *e = NULL;
352 struct udev_list_entry *item = NULL, *first = NULL;
353
354 assert(m);
355
a16e1123
LP
356 if (!m->udev) {
357 if (!(m->udev = udev_new()))
358 return -ENOMEM;
25ac040b 359
a16e1123
LP
360 if (!(m->udev_monitor = udev_monitor_new_from_netlink(m->udev, "udev"))) {
361 r = -ENOMEM;
362 goto fail;
363 }
f94ea366 364
a16e1123
LP
365 if (udev_monitor_enable_receiving(m->udev_monitor) < 0) {
366 r = -EIO;
367 goto fail;
368 }
f94ea366 369
a16e1123
LP
370 m->udev_watch.type = WATCH_UDEV;
371 m->udev_watch.fd = udev_monitor_get_fd(m->udev_monitor);
f94ea366 372
a16e1123
LP
373 zero(ev);
374 ev.events = EPOLLIN;
375 ev.data.ptr = &m->udev_watch;
f94ea366 376
a16e1123
LP
377 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->udev_watch.fd, &ev) < 0)
378 return -errno;
379 }
f94ea366 380
4f2d528d
LP
381 if (!(e = udev_enumerate_new(m->udev))) {
382 r = -ENOMEM;
383 goto fail;
384 }
25ac040b 385
4f2d528d
LP
386 if (udev_enumerate_scan_devices(e) < 0) {
387 r = -EIO;
388 goto fail;
389 }
25ac040b 390
4f2d528d
LP
391 first = udev_enumerate_get_list_entry(e);
392 udev_list_entry_foreach(item, first)
393 device_process_path(m, udev_list_entry_get_name(item), false);
25ac040b 394
4f2d528d 395 udev_enumerate_unref(e);
25ac040b
LP
396 return 0;
397
398fail:
399 if (e)
400 udev_enumerate_unref(e);
401
402 device_shutdown(m);
403 return r;
5cb5a6ff
LP
404}
405
f94ea366
LP
406void device_fd_event(Manager *m, int events) {
407 struct udev_device *dev;
408 int r;
409 const char *action;
410
411 assert(m);
412 assert(events == EPOLLIN);
413
f94ea366
LP
414 if (!(dev = udev_monitor_receive_device(m->udev_monitor))) {
415 log_error("Failed to receive device.");
416 return;
417 }
418
419 if (!(action = udev_device_get_action(dev))) {
420 log_error("Failed to get udev action string.");
421 goto fail;
422 }
423
424 if (streq(action, "remove")) {
425 if ((r = device_process_removed_device(m, dev)) < 0) {
426 log_error("Failed to process udev device event: %s", strerror(-r));
427 goto fail;
428 }
429 } else {
430 if ((r = device_process_new_device(m, dev, true)) < 0) {
431 log_error("Failed to process udev device event: %s", strerror(-r));
432 goto fail;
433 }
434 }
435
436fail:
437 udev_device_unref(dev);
438}
439
a16e1123
LP
440static const char* const device_state_table[_DEVICE_STATE_MAX] = {
441 [DEVICE_DEAD] = "dead",
442 [DEVICE_AVAILABLE] = "available"
443};
444
445DEFINE_STRING_TABLE_LOOKUP(device_state, DeviceState);
446
87f0e418 447const UnitVTable device_vtable = {
5cb5a6ff
LP
448 .suffix = ".device",
449
9e2f7c11
LP
450 .no_requires = true,
451 .no_instances = true,
41447faf 452 .no_snapshots = true,
c497c7a9 453 .no_isolate = true,
9e2f7c11 454
e537352b 455 .load = unit_load_fragment_and_dropin_optional,
034c6ed7 456 .done = device_done,
f50e0a01
LP
457 .coldplug = device_coldplug,
458
5cb5a6ff
LP
459 .dump = device_dump,
460
f50e0a01 461 .active_state = device_active_state,
10a94420 462 .sub_state_to_string = device_sub_state_to_string,
25ac040b 463
4139c1b2
LP
464 .bus_message_handler = bus_device_message_handler,
465
f50e0a01
LP
466 .enumerate = device_enumerate,
467 .shutdown = device_shutdown
5cb5a6ff 468};