]> git.ipfire.org Git - people/ms/systemd.git/blame - device.c
unit: rename load_path to fragment_path to make clear what kind of configuration...
[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"
5cb5a6ff 30
f50e0a01
LP
31static const UnitActiveState state_translation_table[_DEVICE_STATE_MAX] = {
32 [DEVICE_DEAD] = UNIT_INACTIVE,
33 [DEVICE_AVAILABLE] = UNIT_ACTIVE
34};
35
36static const char* const state_string_table[_DEVICE_STATE_MAX] = {
37 [DEVICE_DEAD] = "dead",
38 [DEVICE_AVAILABLE] = "available"
39};
40
87f0e418
LP
41static void device_done(Unit *u) {
42 Device *d = DEVICE(u);
034c6ed7
LP
43
44 assert(d);
25ac040b 45 free(d->sysfs);
034c6ed7
LP
46}
47
f50e0a01
LP
48static void device_set_state(Device *d, DeviceState state) {
49 DeviceState old_state;
50 assert(d);
5cb5a6ff 51
f50e0a01
LP
52 old_state = d->state;
53 d->state = state;
5cb5a6ff 54
f50e0a01
LP
55 log_debug("%s changed %s → %s", unit_id(UNIT(d)), state_string_table[old_state], state_string_table[state]);
56
57 unit_notify(UNIT(d), state_translation_table[old_state], state_translation_table[state]);
58}
59
60static int device_coldplug(Unit *u) {
61 Device *d = DEVICE(u);
62
63 assert(d);
64 assert(d->state == DEVICE_DEAD);
65
66 if (d->sysfs)
67 device_set_state(d, DEVICE_AVAILABLE);
68
69 return 0;
70}
71
72static void device_dump(Unit *u, FILE *f, const char *prefix) {
25ac040b 73 Device *d = DEVICE(u);
5cb5a6ff 74
25ac040b 75 assert(d);
5cb5a6ff
LP
76
77 fprintf(f,
25ac040b
LP
78 "%sDevice State: %s\n"
79 "%sSysfs Path: %s\n",
f50e0a01
LP
80 prefix, state_string_table[d->state],
81 prefix, strna(d->sysfs));
82}
83
84static UnitActiveState device_active_state(Unit *u) {
85 assert(u);
86
87 return state_translation_table[DEVICE(u)->state];
25ac040b
LP
88}
89
b08d03ff 90static int device_add_escaped_name(Unit *u, const char *prefix, const char *dn, bool make_id) {
25ac040b
LP
91 char *e;
92 int r;
93
94 assert(u);
95 assert(dn);
96 assert(dn[0] == '/');
97
b08d03ff 98 if (!(e = unit_name_escape_path(prefix, dn+1, ".device")))
25ac040b
LP
99 return -ENOMEM;
100
101 r = unit_add_name(u, e);
b08d03ff
LP
102
103 if (r >= 0 && make_id)
104 unit_choose_id(u, e);
105
25ac040b
LP
106 free(e);
107
108 if (r < 0 && r != -EEXIST)
109 return r;
110
111 return 0;
112}
113
f94ea366 114static int device_process_new_device(Manager *m, struct udev_device *dev, bool update_state) {
25ac040b
LP
115 const char *dn, *names, *wants, *sysfs;
116 Unit *u = NULL;
117 int r;
118 char *e, *w, *state;
119 size_t l;
120 bool delete;
121 struct udev_list_entry *item = NULL, *first = NULL;
122
123 assert(m);
124
125 /* Check whether this entry is even relevant for us. */
126 dn = udev_device_get_devnode(dev);
127 names = udev_device_get_property_value(dev, "SYSTEMD_NAMES");
128 wants = udev_device_get_property_value(dev, "SYSTEMD_WANTS");
129
130 if (!dn && !names && !wants)
131 return 0;
132
133 /* Ok, seems kinda interesting. Now, let's see if this one
134 * already exists. */
135
136 if (!(sysfs = udev_device_get_syspath(dev)))
137 return -ENOMEM;
138
139 assert(sysfs[0] == '/');
b08d03ff 140 if (!(e = unit_name_escape_path("sysfs-", sysfs+1, ".device")))
25ac040b
LP
141 return -ENOMEM;
142
143 if (!(u = manager_get_unit(m, e))) {
144 const char *model;
145
146 delete = true;
147
148 if (!(u = unit_new(m))) {
149 free(e);
150 return -ENOMEM;
151 }
152
153 r = unit_add_name(u, e);
154 free(e);
155
156 if (r < 0)
157 goto fail;
158
159 if (!(DEVICE(u)->sysfs = strdup(sysfs))) {
160 r = -ENOMEM;
161 goto fail;
162 }
163
164 if ((model = udev_device_get_property_value(dev, "ID_MODEL_FROM_DATABASE")) ||
f50e0a01
LP
165 (model = udev_device_get_property_value(dev, "ID_MODEL")))
166 if ((r = unit_set_description(u, model)) < 0)
25ac040b 167 goto fail;
25ac040b 168
f94ea366 169 unit_add_to_load_queue(u);
25ac040b
LP
170 } else {
171 delete = false;
172 free(e);
173 }
174
175 if (dn)
b08d03ff 176 if ((r = device_add_escaped_name(u, "node-", dn, true)) < 0)
25ac040b
LP
177 goto fail;
178
179 first = udev_device_get_devlinks_list_entry(dev);
180 udev_list_entry_foreach(item, first)
b08d03ff 181 if ((r = device_add_escaped_name(u, "node-", udev_list_entry_get_name(item), false)) < 0)
25ac040b
LP
182 goto fail;
183
184 if (names) {
185 FOREACH_WORD(w, l, names, state) {
186 if (!(e = strndup(w, l)))
187 goto fail;
188
189 r = unit_add_name(u, e);
190 free(e);
191
192 if (r < 0 && r != -EEXIST)
193 goto fail;
194 }
195 }
196
25ac040b
LP
197 if (wants) {
198 FOREACH_WORD(w, l, wants, state) {
199 if (!(e = strndup(w, l)))
200 goto fail;
201
202 r = unit_add_dependency_by_name(u, UNIT_WANTS, e);
203 free(e);
204
205 if (r < 0)
206 goto fail;
207 }
208 }
209
f94ea366
LP
210 if (update_state) {
211 manager_dispatch_load_queue(u->meta.manager);
212 device_set_state(DEVICE(u), DEVICE_AVAILABLE);
213 }
214
c1e1601e
LP
215 unit_add_to_dbus_queue(u);
216
25ac040b
LP
217 return 0;
218
219fail:
220 if (delete && u)
221 unit_free(u);
222 return r;
223}
224
f94ea366 225static int device_process_path(Manager *m, const char *path, bool update_state) {
25ac040b
LP
226 int r;
227 struct udev_device *dev;
228
229 assert(m);
230 assert(path);
231
232 if (!(dev = udev_device_new_from_syspath(m->udev, path))) {
233 log_warning("Failed to get udev device object from udev for path %s.", path);
234 return -ENOMEM;
235 }
236
f94ea366 237 r = device_process_new_device(m, dev, update_state);
25ac040b
LP
238 udev_device_unref(dev);
239 return r;
240}
241
f94ea366
LP
242static int device_process_removed_device(Manager *m, struct udev_device *dev) {
243 const char *sysfs;
244 char *e;
245 Unit *u;
246 Device *d;
247
248 assert(m);
249 assert(dev);
250
251 if (!(sysfs = udev_device_get_syspath(dev)))
252 return -ENOMEM;
253
254 assert(sysfs[0] == '/');
255 if (!(e = unit_name_escape_path("sysfs-", sysfs+1, ".device")))
256 return -ENOMEM;
257
258 u = manager_get_unit(m, e);
259 free(e);
260
261 if (!u)
262 return 0;
263
264 d = DEVICE(u);
265 free(d->sysfs);
266 d->sysfs = NULL;
267
268 device_set_state(d, DEVICE_DEAD);
269 return 0;
270}
271
25ac040b
LP
272static void device_shutdown(Manager *m) {
273 assert(m);
274
f94ea366
LP
275 if (m->udev_monitor)
276 udev_monitor_unref(m->udev_monitor);
277
25ac040b
LP
278 if (m->udev)
279 udev_unref(m->udev);
280}
281
282static int device_enumerate(Manager *m) {
f94ea366 283 struct epoll_event ev;
25ac040b
LP
284 int r;
285 struct udev_enumerate *e = NULL;
286 struct udev_list_entry *item = NULL, *first = NULL;
287
288 assert(m);
289
290 if (!(m->udev = udev_new()))
291 return -ENOMEM;
292
f94ea366
LP
293 if (!(m->udev_monitor = udev_monitor_new_from_netlink(m->udev, "udev"))) {
294 r = -ENOMEM;
295 goto fail;
296 }
297
298 if (udev_monitor_enable_receiving(m->udev_monitor) < 0) {
299 r = -EIO;
300 goto fail;
301 }
302
303 m->udev_watch.type = WATCH_UDEV;
304 m->udev_watch.fd = udev_monitor_get_fd(m->udev_monitor);
305
306 zero(ev);
307 ev.events = EPOLLIN;
308 ev.data.ptr = &m->udev_watch;
309
310 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->udev_watch.fd, &ev) < 0)
311 return -errno;
312
25ac040b
LP
313 if (!(e = udev_enumerate_new(m->udev))) {
314 r = -ENOMEM;
315 goto fail;
316 }
317
318 if (udev_enumerate_scan_devices(e) < 0) {
319 r = -EIO;
320 goto fail;
321 }
322
323 first = udev_enumerate_get_list_entry(e);
324 udev_list_entry_foreach(item, first)
f94ea366 325 device_process_path(m, udev_list_entry_get_name(item), false);
25ac040b
LP
326
327 udev_enumerate_unref(e);
25ac040b
LP
328 return 0;
329
330fail:
331 if (e)
332 udev_enumerate_unref(e);
333
334 device_shutdown(m);
335 return r;
5cb5a6ff
LP
336}
337
f94ea366
LP
338void device_fd_event(Manager *m, int events) {
339 struct udev_device *dev;
340 int r;
341 const char *action;
342
343 assert(m);
344 assert(events == EPOLLIN);
345
346 log_debug("got udev event");
347
348 if (!(dev = udev_monitor_receive_device(m->udev_monitor))) {
349 log_error("Failed to receive device.");
350 return;
351 }
352
353 if (!(action = udev_device_get_action(dev))) {
354 log_error("Failed to get udev action string.");
355 goto fail;
356 }
357
358 if (streq(action, "remove")) {
359 if ((r = device_process_removed_device(m, dev)) < 0) {
360 log_error("Failed to process udev device event: %s", strerror(-r));
361 goto fail;
362 }
363 } else {
364 if ((r = device_process_new_device(m, dev, true)) < 0) {
365 log_error("Failed to process udev device event: %s", strerror(-r));
366 goto fail;
367 }
368 }
369
370fail:
371 udev_device_unref(dev);
372}
373
87f0e418 374const UnitVTable device_vtable = {
5cb5a6ff
LP
375 .suffix = ".device",
376
87f0e418 377 .init = unit_load_fragment_and_dropin,
034c6ed7 378 .done = device_done,
f50e0a01
LP
379 .coldplug = device_coldplug,
380
5cb5a6ff
LP
381 .dump = device_dump,
382
f50e0a01 383 .active_state = device_active_state,
25ac040b 384
f50e0a01
LP
385 .enumerate = device_enumerate,
386 .shutdown = device_shutdown
5cb5a6ff 387};