]> git.ipfire.org Git - people/ms/systemd.git/blame - device.c
cgroup: add cgroupsification
[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
2e478a46 90static int device_add_escaped_name(Unit *u, 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
2e478a46 98 if (!(e = unit_name_escape_path(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] == '/');
2e478a46 140 if (!(e = unit_name_escape_path(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")) ||
c18315a8 165 (model = udev_device_get_property_value(dev, "ID_MODEL"))) {
f50e0a01 166 if ((r = unit_set_description(u, model)) < 0)
25ac040b 167 goto fail;
c18315a8
LP
168 } else if (dn)
169 if ((r = unit_set_description(u, dn)) < 0)
170 goto fail;
25ac040b 171
f94ea366 172 unit_add_to_load_queue(u);
25ac040b
LP
173 } else {
174 delete = false;
175 free(e);
176 }
177
178 if (dn)
2e478a46 179 if ((r = device_add_escaped_name(u, dn, true)) < 0)
25ac040b
LP
180 goto fail;
181
182 first = udev_device_get_devlinks_list_entry(dev);
183 udev_list_entry_foreach(item, first)
2e478a46 184 if ((r = device_add_escaped_name(u, udev_list_entry_get_name(item), false)) < 0)
25ac040b
LP
185 goto fail;
186
187 if (names) {
188 FOREACH_WORD(w, l, names, state) {
189 if (!(e = strndup(w, l)))
190 goto fail;
191
192 r = unit_add_name(u, e);
193 free(e);
194
195 if (r < 0 && r != -EEXIST)
196 goto fail;
197 }
198 }
199
25ac040b
LP
200 if (wants) {
201 FOREACH_WORD(w, l, wants, state) {
202 if (!(e = strndup(w, l)))
203 goto fail;
204
205 r = unit_add_dependency_by_name(u, UNIT_WANTS, e);
206 free(e);
207
208 if (r < 0)
209 goto fail;
210 }
211 }
212
f94ea366
LP
213 if (update_state) {
214 manager_dispatch_load_queue(u->meta.manager);
215 device_set_state(DEVICE(u), DEVICE_AVAILABLE);
216 }
217
c1e1601e
LP
218 unit_add_to_dbus_queue(u);
219
25ac040b
LP
220 return 0;
221
222fail:
223 if (delete && u)
224 unit_free(u);
225 return r;
226}
227
f94ea366 228static int device_process_path(Manager *m, const char *path, bool update_state) {
25ac040b
LP
229 int r;
230 struct udev_device *dev;
231
232 assert(m);
233 assert(path);
234
235 if (!(dev = udev_device_new_from_syspath(m->udev, path))) {
236 log_warning("Failed to get udev device object from udev for path %s.", path);
237 return -ENOMEM;
238 }
239
f94ea366 240 r = device_process_new_device(m, dev, update_state);
25ac040b
LP
241 udev_device_unref(dev);
242 return r;
243}
244
f94ea366
LP
245static int device_process_removed_device(Manager *m, struct udev_device *dev) {
246 const char *sysfs;
247 char *e;
248 Unit *u;
249 Device *d;
250
251 assert(m);
252 assert(dev);
253
254 if (!(sysfs = udev_device_get_syspath(dev)))
255 return -ENOMEM;
256
257 assert(sysfs[0] == '/');
2e478a46 258 if (!(e = unit_name_escape_path(sysfs+1, ".device")))
f94ea366
LP
259 return -ENOMEM;
260
261 u = manager_get_unit(m, e);
262 free(e);
263
264 if (!u)
265 return 0;
266
267 d = DEVICE(u);
268 free(d->sysfs);
269 d->sysfs = NULL;
270
271 device_set_state(d, DEVICE_DEAD);
272 return 0;
273}
274
25ac040b
LP
275static void device_shutdown(Manager *m) {
276 assert(m);
277
f94ea366
LP
278 if (m->udev_monitor)
279 udev_monitor_unref(m->udev_monitor);
280
25ac040b
LP
281 if (m->udev)
282 udev_unref(m->udev);
283}
284
285static int device_enumerate(Manager *m) {
f94ea366 286 struct epoll_event ev;
25ac040b
LP
287 int r;
288 struct udev_enumerate *e = NULL;
289 struct udev_list_entry *item = NULL, *first = NULL;
290
291 assert(m);
292
293 if (!(m->udev = udev_new()))
294 return -ENOMEM;
295
f94ea366
LP
296 if (!(m->udev_monitor = udev_monitor_new_from_netlink(m->udev, "udev"))) {
297 r = -ENOMEM;
298 goto fail;
299 }
300
301 if (udev_monitor_enable_receiving(m->udev_monitor) < 0) {
302 r = -EIO;
303 goto fail;
304 }
305
306 m->udev_watch.type = WATCH_UDEV;
307 m->udev_watch.fd = udev_monitor_get_fd(m->udev_monitor);
308
309 zero(ev);
310 ev.events = EPOLLIN;
311 ev.data.ptr = &m->udev_watch;
312
313 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->udev_watch.fd, &ev) < 0)
314 return -errno;
315
25ac040b
LP
316 if (!(e = udev_enumerate_new(m->udev))) {
317 r = -ENOMEM;
318 goto fail;
319 }
320
321 if (udev_enumerate_scan_devices(e) < 0) {
322 r = -EIO;
323 goto fail;
324 }
325
326 first = udev_enumerate_get_list_entry(e);
327 udev_list_entry_foreach(item, first)
f94ea366 328 device_process_path(m, udev_list_entry_get_name(item), false);
25ac040b
LP
329
330 udev_enumerate_unref(e);
25ac040b
LP
331 return 0;
332
333fail:
334 if (e)
335 udev_enumerate_unref(e);
336
337 device_shutdown(m);
338 return r;
5cb5a6ff
LP
339}
340
f94ea366
LP
341void device_fd_event(Manager *m, int events) {
342 struct udev_device *dev;
343 int r;
344 const char *action;
345
346 assert(m);
347 assert(events == EPOLLIN);
348
349 log_debug("got udev event");
350
351 if (!(dev = udev_monitor_receive_device(m->udev_monitor))) {
352 log_error("Failed to receive device.");
353 return;
354 }
355
356 if (!(action = udev_device_get_action(dev))) {
357 log_error("Failed to get udev action string.");
358 goto fail;
359 }
360
361 if (streq(action, "remove")) {
362 if ((r = device_process_removed_device(m, dev)) < 0) {
363 log_error("Failed to process udev device event: %s", strerror(-r));
364 goto fail;
365 }
366 } else {
367 if ((r = device_process_new_device(m, dev, true)) < 0) {
368 log_error("Failed to process udev device event: %s", strerror(-r));
369 goto fail;
370 }
371 }
372
373fail:
374 udev_device_unref(dev);
375}
376
87f0e418 377const UnitVTable device_vtable = {
5cb5a6ff
LP
378 .suffix = ".device",
379
87f0e418 380 .init = unit_load_fragment_and_dropin,
034c6ed7 381 .done = device_done,
f50e0a01
LP
382 .coldplug = device_coldplug,
383
5cb5a6ff
LP
384 .dump = device_dump,
385
f50e0a01 386 .active_state = device_active_state,
25ac040b 387
f50e0a01
LP
388 .enumerate = device_enumerate,
389 .shutdown = device_shutdown
5cb5a6ff 390};