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