]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/path.c
units: order units by default before appropriate targets in case they are pulled...
[thirdparty/systemd.git] / src / path.c
CommitLineData
d6c9574f 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
01f78473
LP
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 <sys/inotify.h>
23#include <sys/epoll.h>
24#include <sys/ioctl.h>
25#include <errno.h>
26#include <unistd.h>
27
28#include "unit.h"
29#include "unit-name.h"
30#include "path.h"
31#include "dbus-path.h"
a40eb732 32#include "special.h"
398ef8ba 33#include "bus-errors.h"
01f78473
LP
34
35static const UnitActiveState state_translation_table[_PATH_STATE_MAX] = {
36 [PATH_DEAD] = UNIT_INACTIVE,
37 [PATH_WAITING] = UNIT_ACTIVE,
38 [PATH_RUNNING] = UNIT_ACTIVE,
fdf20a31 39 [PATH_FAILED] = UNIT_FAILED
01f78473
LP
40};
41
42static void path_done(Unit *u) {
43 Path *p = PATH(u);
44 PathSpec *s;
45
46 assert(p);
47
48 while ((s = p->specs)) {
49 LIST_REMOVE(PathSpec, spec, p->specs, s);
50 free(s);
51 }
52}
53
54int path_add_one_mount_link(Path *p, Mount *m) {
55 PathSpec *s;
56 int r;
57
58 assert(p);
59 assert(m);
60
61 if (p->meta.load_state != UNIT_LOADED ||
62 m->meta.load_state != UNIT_LOADED)
63 return 0;
64
65 LIST_FOREACH(spec, s, p->specs) {
66
67 if (!path_startswith(s->path, m->where))
68 continue;
69
2c966c03 70 if ((r = unit_add_two_dependencies(UNIT(p), UNIT_AFTER, UNIT_REQUIRES, UNIT(m), true)) < 0)
01f78473
LP
71 return r;
72 }
73
74 return 0;
75}
76
77static int path_add_mount_links(Path *p) {
78 Meta *other;
79 int r;
80
81 assert(p);
82
83 LIST_FOREACH(units_per_type, other, p->meta.manager->units_per_type[UNIT_MOUNT])
84 if ((r = path_add_one_mount_link(p, (Mount*) other)) < 0)
85 return r;
86
87 return 0;
88}
89
90static int path_verify(Path *p) {
91 assert(p);
92
4cd1fbcc 93 if (p->meta.load_state != UNIT_LOADED)
01f78473
LP
94 return 0;
95
96 if (!p->specs) {
97 log_error("%s lacks path setting. Refusing.", p->meta.id);
98 return -EINVAL;
99 }
100
101 return 0;
102}
103
6c155fe3
LP
104static int path_add_default_dependencies(Path *p) {
105 int r;
106
107 assert(p);
108
2a77d31d
LP
109 if (p->meta.manager->running_as == MANAGER_SYSTEM) {
110 if ((r = unit_add_dependency_by_name(UNIT(p), UNIT_BEFORE, SPECIAL_BASIC_TARGET, NULL, true)) < 0)
111 return r;
112
6c155fe3
LP
113 if ((r = unit_add_two_dependencies_by_name(UNIT(p), UNIT_AFTER, UNIT_REQUIRES, SPECIAL_SYSINIT_TARGET, NULL, true)) < 0)
114 return r;
2a77d31d 115 }
6c155fe3 116
ead8e478 117 return unit_add_two_dependencies_by_name(UNIT(p), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_SHUTDOWN_TARGET, NULL, true);
6c155fe3
LP
118}
119
01f78473
LP
120static int path_load(Unit *u) {
121 Path *p = PATH(u);
122 int r;
123
124 assert(u);
125 assert(u->meta.load_state == UNIT_STUB);
126
127 if ((r = unit_load_fragment_and_dropin(u)) < 0)
128 return r;
129
130 if (u->meta.load_state == UNIT_LOADED) {
131
132 if (!p->unit)
133 if ((r = unit_load_related_unit(u, ".service", &p->unit)))
134 return r;
135
136 if ((r = unit_add_dependency(u, UNIT_BEFORE, p->unit, true)) < 0)
137 return r;
138
139 if ((r = path_add_mount_links(p)) < 0)
140 return r;
a40eb732 141
a40eb732 142 if (p->meta.default_dependencies)
6c155fe3 143 if ((r = path_add_default_dependencies(p)) < 0)
a40eb732 144 return r;
01f78473
LP
145 }
146
147 return path_verify(p);
148}
149
150static void path_dump(Unit *u, FILE *f, const char *prefix) {
151 Path *p = PATH(u);
01f78473
LP
152 PathSpec *s;
153
e364ad06
LP
154 assert(p);
155 assert(f);
01f78473
LP
156
157 fprintf(f,
158 "%sPath State: %s\n"
159 "%sUnit: %s\n",
160 prefix, path_state_to_string(p->state),
161 prefix, p->unit->meta.id);
162
163 LIST_FOREACH(spec, s, p->specs)
164 fprintf(f,
165 "%s%s: %s\n",
166 prefix,
167 path_type_to_string(s->type),
168 s->path);
01f78473
LP
169}
170
171static void path_unwatch_one(Path *p, PathSpec *s) {
172
173 if (s->inotify_fd < 0)
174 return;
175
176 unit_unwatch_fd(UNIT(p), &s->watch);
177
178 close_nointr_nofail(s->inotify_fd);
179 s->inotify_fd = -1;
180}
181
182static int path_watch_one(Path *p, PathSpec *s) {
183 static const int flags_table[_PATH_TYPE_MAX] = {
184 [PATH_EXISTS] = IN_DELETE_SELF|IN_MOVE_SELF,
185 [PATH_CHANGED] = IN_DELETE_SELF|IN_MOVE_SELF|IN_ATTRIB|IN_CLOSE_WRITE|IN_CREATE|IN_DELETE|IN_MOVED_FROM|IN_MOVED_TO,
186 [PATH_DIRECTORY_NOT_EMPTY] = IN_DELETE_SELF|IN_MOVE_SELF|IN_CREATE|IN_MOVED_TO
187 };
188
189 bool exists = false;
190 char *k;
191 int r;
192
193 assert(p);
194 assert(s);
195
196 path_unwatch_one(p, s);
197
198 if (!(k = strdup(s->path)))
199 return -ENOMEM;
200
201 if ((s->inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC)) < 0) {
202 r = -errno;
203 goto fail;
204 }
205
206 if (unit_watch_fd(UNIT(p), s->inotify_fd, EPOLLIN, &s->watch) < 0) {
207 r = -errno;
208 goto fail;
209 }
210
211 if ((s->primary_wd = inotify_add_watch(s->inotify_fd, k, flags_table[s->type])) >= 0)
212 exists = true;
213
214 for (;;) {
215 int flags;
216 char *slash;
217
218 /* This assumes the path was passed through path_kill_slashes()! */
219 if (!(slash = strrchr(k, '/')))
220 break;
221
222 *slash = 0;
223
224 flags = IN_DELETE_SELF|IN_MOVE_SELF;
225 if (!exists)
226 flags |= IN_CREATE | IN_MOVED_TO | IN_ATTRIB;
227
228 if (inotify_add_watch(s->inotify_fd, k, flags) >= 0)
229 exists = true;
230 }
231
232 return 0;
233
234fail:
235 free(k);
236
237 path_unwatch_one(p, s);
238 return r;
239}
240
241static void path_unwatch(Path *p) {
242 PathSpec *s;
243
244 assert(p);
245
246 LIST_FOREACH(spec, s, p->specs)
247 path_unwatch_one(p, s);
248}
249
250static int path_watch(Path *p) {
251 int r;
252 PathSpec *s;
253
254 assert(p);
255
256 LIST_FOREACH(spec, s, p->specs)
257 if ((r = path_watch_one(p, s)) < 0)
258 return r;
259
260 return 0;
261}
262
263static void path_set_state(Path *p, PathState state) {
264 PathState old_state;
265 assert(p);
266
267 old_state = p->state;
268 p->state = state;
269
270 if (state != PATH_WAITING)
271 path_unwatch(p);
272
273 if (state != old_state)
274 log_debug("%s changed %s -> %s",
275 p->meta.id,
276 path_state_to_string(old_state),
277 path_state_to_string(state));
278
279 unit_notify(UNIT(p), state_translation_table[old_state], state_translation_table[state]);
280}
281
282static void path_enter_waiting(Path *p, bool initial);
283
284static int path_coldplug(Unit *u) {
285 Path *p = PATH(u);
286
287 assert(p);
288 assert(p->state == PATH_DEAD);
289
290 if (p->deserialized_state != p->state) {
291
292 if (p->deserialized_state == PATH_WAITING ||
293 p->deserialized_state == PATH_RUNNING)
294 path_enter_waiting(p, true);
295 else
296 path_set_state(p, p->deserialized_state);
297 }
298
299 return 0;
300}
301
302static void path_enter_dead(Path *p, bool success) {
303 assert(p);
304
305 if (!success)
306 p->failure = true;
307
fdf20a31 308 path_set_state(p, p->failure ? PATH_FAILED : PATH_DEAD);
01f78473
LP
309}
310
311static void path_enter_running(Path *p) {
312 int r;
398ef8ba
LP
313 DBusError error;
314
01f78473 315 assert(p);
398ef8ba 316 dbus_error_init(&error);
01f78473 317
ba3e67a7
LP
318 /* Don't start job if we are supposed to go down */
319 if (p->meta.job && p->meta.job->type == JOB_STOP)
320 return;
321
398ef8ba 322 if ((r = manager_add_job(p->meta.manager, JOB_START, p->unit, JOB_REPLACE, true, &error, NULL)) < 0)
01f78473
LP
323 goto fail;
324
325 path_set_state(p, PATH_RUNNING);
326 return;
327
328fail:
398ef8ba 329 log_warning("%s failed to queue unit startup job: %s", p->meta.id, bus_error(&error, r));
01f78473 330 path_enter_dead(p, false);
398ef8ba
LP
331
332 dbus_error_free(&error);
01f78473
LP
333}
334
335
336static void path_enter_waiting(Path *p, bool initial) {
337 PathSpec *s;
338 int r;
339 bool good = false;
340
341 LIST_FOREACH(spec, s, p->specs) {
342
343 switch (s->type) {
344
345 case PATH_EXISTS:
346 good = access(s->path, F_OK) >= 0;
347 break;
348
349 case PATH_DIRECTORY_NOT_EMPTY:
350 good = dir_is_empty(s->path) == 0;
351 break;
352
353 case PATH_CHANGED: {
354 bool b;
355
356 b = access(s->path, F_OK) >= 0;
357 good = !initial && b != s->previous_exists;
358 s->previous_exists = b;
359 break;
360 }
361
362 default:
363 ;
364 }
365
366 if (good)
367 break;
368 }
369
370 if (good) {
371 path_enter_running(p);
372 return;
373 }
374
375 if ((r = path_watch(p)) < 0)
376 goto fail;
377
378 path_set_state(p, PATH_WAITING);
379 return;
380
381fail:
382 log_warning("%s failed to enter waiting state: %s", p->meta.id, strerror(-r));
383 path_enter_dead(p, false);
384}
385
386static int path_start(Unit *u) {
387 Path *p = PATH(u);
388
389 assert(p);
fdf20a31 390 assert(p->state == PATH_DEAD || p->state == PATH_FAILED);
01f78473
LP
391
392 if (p->unit->meta.load_state != UNIT_LOADED)
393 return -ENOENT;
394
395 p->failure = false;
00dc5d76
LP
396 path_enter_waiting(p, true);
397
01f78473
LP
398 return 0;
399}
400
401static int path_stop(Unit *u) {
402 Path *p = PATH(u);
403
404 assert(p);
405 assert(p->state == PATH_WAITING || p->state == PATH_RUNNING);
406
407 path_enter_dead(p, true);
408 return 0;
409}
410
411static int path_serialize(Unit *u, FILE *f, FDSet *fds) {
412 Path *p = PATH(u);
413
414 assert(u);
415 assert(f);
416 assert(fds);
417
418 unit_serialize_item(u, f, "state", path_state_to_string(p->state));
419
420 return 0;
421}
422
423static int path_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
424 Path *p = PATH(u);
425
426 assert(u);
427 assert(key);
428 assert(value);
429 assert(fds);
430
431 if (streq(key, "state")) {
432 PathState state;
433
434 if ((state = path_state_from_string(value)) < 0)
435 log_debug("Failed to parse state value %s", value);
436 else
437 p->deserialized_state = state;
438 } else
439 log_debug("Unknown serialization key '%s'", key);
440
441 return 0;
442}
443
444static UnitActiveState path_active_state(Unit *u) {
445 assert(u);
446
447 return state_translation_table[PATH(u)->state];
448}
449
450static const char *path_sub_state_to_string(Unit *u) {
451 assert(u);
452
453 return path_state_to_string(PATH(u)->state);
454}
455
456static void path_fd_event(Unit *u, int fd, uint32_t events, Watch *w) {
457 Path *p = PATH(u);
458 int l;
459 ssize_t k;
f601daa7
LP
460 uint8_t *buf = NULL;
461 struct inotify_event *e;
01f78473
LP
462 PathSpec *s;
463
464 assert(p);
465 assert(fd >= 0);
466
467 if (p->state != PATH_WAITING)
468 return;
469
470 log_debug("inotify wakeup on %s.", u->meta.id);
471
472 if (events != EPOLLIN) {
473 log_error("Got Invalid poll event on inotify.");
474 goto fail;
475 }
476
477 LIST_FOREACH(spec, s, p->specs)
478 if (s->inotify_fd == fd)
479 break;
480
481 if (!s) {
482 log_error("Got event on unknown fd.");
483 goto fail;
484 }
485
486 if (ioctl(fd, FIONREAD, &l) < 0) {
487 log_error("FIONREAD failed: %s", strerror(errno));
488 goto fail;
489 }
490
491 if (!(buf = malloc(l))) {
492 log_error("Failed to allocate buffer: %s", strerror(-ENOMEM));
493 goto fail;
494 }
495
496 if ((k = read(fd, buf, l)) < 0) {
497 log_error("Failed to read inotify event: %s", strerror(-errno));
498 goto fail;
499 }
500
f601daa7 501 e = (struct inotify_event*) buf;
01f78473 502
f601daa7
LP
503 while (k > 0) {
504 size_t step;
505
506 if (s->type == PATH_CHANGED && s->primary_wd == e->wd)
507 path_enter_running(p);
508 else
509 path_enter_waiting(p, false);
510
511 step = sizeof(struct inotify_event) + e->len;
512 assert(step <= (size_t) k);
513
514 e = (struct inotify_event*) ((uint8_t*) e + step);
515 k -= step;
516 }
01f78473
LP
517
518 free(buf);
519
520 return;
521
522fail:
523 free(buf);
524 path_enter_dead(p, false);
525}
526
527void path_unit_notify(Unit *u, UnitActiveState new_state) {
528 char *n;
529 int r;
530 Iterator i;
531
532 if (u->meta.type == UNIT_PATH)
533 return;
534
535 SET_FOREACH(n, u->meta.names, i) {
536 char *k;
537 Unit *t;
538 Path *p;
539
540 if (!(k = unit_name_change_suffix(n, ".path"))) {
541 r = -ENOMEM;
542 goto fail;
543 }
544
545 t = manager_get_unit(u->meta.manager, k);
546 free(k);
547
548 if (!t)
549 continue;
550
551 if (t->meta.load_state != UNIT_LOADED)
552 continue;
553
554 p = PATH(t);
555
556 if (p->unit != u)
557 continue;
558
559 if (p->state == PATH_RUNNING && new_state == UNIT_INACTIVE) {
560 log_debug("%s got notified about unit deactivation.", p->meta.id);
561 path_enter_waiting(p, false);
562 }
563 }
564
565 return;
566
567fail:
568 log_error("Failed find path unit: %s", strerror(-r));
569}
570
fdf20a31 571static void path_reset_failed(Unit *u) {
5632e374
LP
572 Path *p = PATH(u);
573
574 assert(p);
575
fdf20a31 576 if (p->state == PATH_FAILED)
5632e374
LP
577 path_set_state(p, PATH_DEAD);
578
579 p->failure = false;
580}
581
01f78473
LP
582static const char* const path_state_table[_PATH_STATE_MAX] = {
583 [PATH_DEAD] = "dead",
584 [PATH_WAITING] = "waiting",
585 [PATH_RUNNING] = "running",
fdf20a31 586 [PATH_FAILED] = "failed"
01f78473
LP
587};
588
589DEFINE_STRING_TABLE_LOOKUP(path_state, PathState);
590
591static const char* const path_type_table[_PATH_TYPE_MAX] = {
592 [PATH_EXISTS] = "PathExists",
593 [PATH_CHANGED] = "PathChanged",
594 [PATH_DIRECTORY_NOT_EMPTY] = "DirectoryNotEmpty"
595};
596
597DEFINE_STRING_TABLE_LOOKUP(path_type, PathType);
598
599const UnitVTable path_vtable = {
600 .suffix = ".path",
601
602 .done = path_done,
603 .load = path_load,
604
605 .coldplug = path_coldplug,
606
607 .dump = path_dump,
608
609 .start = path_start,
610 .stop = path_stop,
611
612 .serialize = path_serialize,
613 .deserialize_item = path_deserialize_item,
614
615 .active_state = path_active_state,
616 .sub_state_to_string = path_sub_state_to_string,
617
618 .fd_event = path_fd_event,
619
fdf20a31 620 .reset_failed = path_reset_failed,
5632e374 621
c4e2ceae 622 .bus_interface = "org.freedesktop.systemd1.Path",
01f78473
LP
623 .bus_message_handler = bus_path_message_handler
624};