]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/unit.c
socket: verify socket type properly when desrializing
[thirdparty/systemd.git] / src / unit.c
CommitLineData
87f0e418
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
87f0e418
LP
22#include <assert.h>
23#include <errno.h>
24#include <string.h>
25#include <sys/epoll.h>
26#include <sys/timerfd.h>
27#include <sys/poll.h>
0301abf4
LP
28#include <stdlib.h>
29#include <unistd.h>
87f0e418
LP
30
31#include "set.h"
32#include "unit.h"
33#include "macro.h"
34#include "strv.h"
35#include "load-fragment.h"
36#include "load-dropin.h"
37#include "log.h"
9e2f7c11
LP
38#include "unit-name.h"
39#include "specifier.h"
4139c1b2 40#include "dbus-unit.h"
87f0e418
LP
41
42const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX] = {
43 [UNIT_SERVICE] = &service_vtable,
44 [UNIT_TIMER] = &timer_vtable,
45 [UNIT_SOCKET] = &socket_vtable,
46 [UNIT_TARGET] = &target_vtable,
47 [UNIT_DEVICE] = &device_vtable,
48 [UNIT_MOUNT] = &mount_vtable,
49 [UNIT_AUTOMOUNT] = &automount_vtable,
07b0b134 50 [UNIT_SNAPSHOT] = &snapshot_vtable,
01f78473
LP
51 [UNIT_SWAP] = &swap_vtable,
52 [UNIT_PATH] = &path_vtable
87f0e418
LP
53};
54
87f0e418
LP
55Unit *unit_new(Manager *m) {
56 Unit *u;
57
58 assert(m);
59
60 if (!(u = new0(Unit, 1)))
61 return NULL;
62
63 if (!(u->meta.names = set_new(string_hash_func, string_compare_func))) {
64 free(u);
65 return NULL;
66 }
67
68 u->meta.manager = m;
69 u->meta.type = _UNIT_TYPE_INVALID;
cca098b0 70 u->meta.deserialized_job = _JOB_TYPE_INVALID;
87f0e418
LP
71
72 return u;
73}
74
f278026d
LP
75bool unit_has_name(Unit *u, const char *name) {
76 assert(u);
77 assert(name);
78
79 return !!set_get(u->meta.names, (char*) name);
80}
81
87f0e418
LP
82int unit_add_name(Unit *u, const char *text) {
83 UnitType t;
9e2f7c11 84 char *s = NULL, *i = NULL;
87f0e418
LP
85 int r;
86
87 assert(u);
88 assert(text);
89
9e2f7c11
LP
90 if (unit_name_is_template(text)) {
91 if (!u->meta.instance)
92 return -EINVAL;
87f0e418 93
9e2f7c11
LP
94 s = unit_name_replace_instance(text, u->meta.instance);
95 } else
96 s = strdup(text);
87f0e418 97
9e2f7c11
LP
98 if (!s)
99 return -ENOMEM;
87f0e418 100
9e2f7c11
LP
101 if (!unit_name_is_valid(s)) {
102 r = -EINVAL;
103 goto fail;
104 }
e537352b 105
9e2f7c11 106 assert_se((t = unit_name_to_type(s)) >= 0);
87f0e418 107
9e2f7c11
LP
108 if (u->meta.type != _UNIT_TYPE_INVALID && t != u->meta.type) {
109 r = -EINVAL;
110 goto fail;
111 }
87f0e418 112
9e2f7c11
LP
113 if ((r = unit_name_to_instance(s, &i)) < 0)
114 goto fail;
87f0e418 115
9e2f7c11
LP
116 if (i && unit_vtable[t]->no_instances)
117 goto fail;
118
119 if (u->meta.type != _UNIT_TYPE_INVALID && !streq_ptr(u->meta.instance, i)) {
120 r = -EINVAL;
121 goto fail;
122 }
123
124 if (unit_vtable[t]->no_alias &&
125 !set_isempty(u->meta.names) &&
126 !set_get(u->meta.names, s)) {
127 r = -EEXIST;
128 goto fail;
129 }
130
4f0f902f
LP
131 if (hashmap_size(u->meta.manager->units) >= MANAGER_MAX_NAMES) {
132 r = -E2BIG;
133 goto fail;
134 }
135
9e2f7c11
LP
136 if ((r = set_put(u->meta.names, s)) < 0) {
137 if (r == -EEXIST)
138 r = 0;
139 goto fail;
87f0e418
LP
140 }
141
142 if ((r = hashmap_put(u->meta.manager->units, s, u)) < 0) {
143 set_remove(u->meta.names, s);
9e2f7c11 144 goto fail;
87f0e418
LP
145 }
146
e537352b 147 if (u->meta.type == _UNIT_TYPE_INVALID) {
ef734fd6 148
e537352b 149 u->meta.type = t;
9e2f7c11
LP
150 u->meta.id = s;
151 u->meta.instance = i;
152
153 LIST_PREPEND(Meta, units_per_type, u->meta.manager->units_per_type[t], &u->meta);
e537352b
LP
154
155 if (UNIT_VTABLE(u)->init)
156 UNIT_VTABLE(u)->init(u);
9e2f7c11
LP
157 } else
158 free(i);
87f0e418 159
c1e1601e 160 unit_add_to_dbus_queue(u);
87f0e418 161 return 0;
9e2f7c11
LP
162
163fail:
164 free(s);
165 free(i);
166
167 return r;
87f0e418
LP
168}
169
0ae97ec1 170int unit_choose_id(Unit *u, const char *name) {
9e2f7c11 171 char *s, *t = NULL;
0ae97ec1
LP
172
173 assert(u);
174 assert(name);
175
9e2f7c11
LP
176 if (unit_name_is_template(name)) {
177
178 if (!u->meta.instance)
179 return -EINVAL;
180
181 if (!(t = unit_name_replace_instance(name, u->meta.instance)))
182 return -ENOMEM;
183
184 name = t;
185 }
186
0ae97ec1 187 /* Selects one of the names of this unit as the id */
9e2f7c11
LP
188 s = set_get(u->meta.names, (char*) name);
189 free(t);
0ae97ec1 190
9e2f7c11 191 if (!s)
0ae97ec1
LP
192 return -ENOENT;
193
194 u->meta.id = s;
c1e1601e 195 unit_add_to_dbus_queue(u);
9e2f7c11 196
0ae97ec1
LP
197 return 0;
198}
199
f50e0a01
LP
200int unit_set_description(Unit *u, const char *description) {
201 char *s;
202
203 assert(u);
204
205 if (!(s = strdup(description)))
206 return -ENOMEM;
207
208 free(u->meta.description);
209 u->meta.description = s;
c1e1601e
LP
210
211 unit_add_to_dbus_queue(u);
f50e0a01
LP
212 return 0;
213}
214
701cc384
LP
215bool unit_check_gc(Unit *u) {
216 assert(u);
217
b86d44e5
LP
218 if (u->meta.load_state == UNIT_STUB)
219 return true;
220
701cc384
LP
221 if (UNIT_VTABLE(u)->no_gc)
222 return true;
223
224 if (u->meta.job)
225 return true;
226
227 if (unit_active_state(u) != UNIT_INACTIVE)
228 return true;
229
230 if (UNIT_VTABLE(u)->check_gc)
231 if (UNIT_VTABLE(u)->check_gc(u))
232 return true;
233
234 return false;
235}
236
87f0e418
LP
237void unit_add_to_load_queue(Unit *u) {
238 assert(u);
819e213f 239 assert(u->meta.type != _UNIT_TYPE_INVALID);
87f0e418
LP
240
241 if (u->meta.load_state != UNIT_STUB || u->meta.in_load_queue)
242 return;
243
244 LIST_PREPEND(Meta, load_queue, u->meta.manager->load_queue, &u->meta);
245 u->meta.in_load_queue = true;
246}
247
23a177ef
LP
248void unit_add_to_cleanup_queue(Unit *u) {
249 assert(u);
250
251 if (u->meta.in_cleanup_queue)
252 return;
253
254 LIST_PREPEND(Meta, cleanup_queue, u->meta.manager->cleanup_queue, &u->meta);
255 u->meta.in_cleanup_queue = true;
256}
257
701cc384
LP
258void unit_add_to_gc_queue(Unit *u) {
259 assert(u);
260
261 if (u->meta.in_gc_queue || u->meta.in_cleanup_queue)
262 return;
263
264 if (unit_check_gc(u))
265 return;
266
267 LIST_PREPEND(Meta, gc_queue, u->meta.manager->gc_queue, &u->meta);
268 u->meta.in_gc_queue = true;
269
270 u->meta.manager->n_in_gc_queue ++;
271
272 if (u->meta.manager->gc_queue_timestamp <= 0)
273 u->meta.manager->gc_queue_timestamp = now(CLOCK_MONOTONIC);
274}
275
c1e1601e
LP
276void unit_add_to_dbus_queue(Unit *u) {
277 assert(u);
819e213f 278 assert(u->meta.type != _UNIT_TYPE_INVALID);
c1e1601e 279
94b6dfa2 280 if (u->meta.load_state == UNIT_STUB || u->meta.in_dbus_queue)
c1e1601e
LP
281 return;
282
94b6dfa2
LP
283 if (set_isempty(u->meta.manager->subscribed)) {
284 u->meta.sent_dbus_new_signal = true;
285 return;
286 }
287
c1e1601e
LP
288 LIST_PREPEND(Meta, dbus_queue, u->meta.manager->dbus_unit_queue, &u->meta);
289 u->meta.in_dbus_queue = true;
290}
291
87f0e418
LP
292static void bidi_set_free(Unit *u, Set *s) {
293 Iterator i;
294 Unit *other;
295
296 assert(u);
297
298 /* Frees the set and makes sure we are dropped from the
299 * inverse pointers */
300
301 SET_FOREACH(other, s, i) {
302 UnitDependency d;
303
304 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
305 set_remove(other->meta.dependencies[d], u);
701cc384
LP
306
307 unit_add_to_gc_queue(other);
87f0e418
LP
308 }
309
310 set_free(s);
311}
312
313void unit_free(Unit *u) {
314 UnitDependency d;
315 Iterator i;
316 char *t;
317
318 assert(u);
319
c1e1601e
LP
320 bus_unit_send_removed_signal(u);
321
a013b84b
LP
322 if (u->meta.load_state != UNIT_STUB)
323 if (UNIT_VTABLE(u)->done)
324 UNIT_VTABLE(u)->done(u);
325
87f0e418 326 /* Detach from next 'bigger' objects */
87f0e418
LP
327 SET_FOREACH(t, u->meta.names, i)
328 hashmap_remove_value(u->meta.manager->units, t, u);
329
ef734fd6
LP
330 if (u->meta.type != _UNIT_TYPE_INVALID)
331 LIST_REMOVE(Meta, units_per_type, u->meta.manager->units_per_type[u->meta.type], &u->meta);
332
87f0e418
LP
333 if (u->meta.in_load_queue)
334 LIST_REMOVE(Meta, load_queue, u->meta.manager->load_queue, &u->meta);
335
c1e1601e
LP
336 if (u->meta.in_dbus_queue)
337 LIST_REMOVE(Meta, dbus_queue, u->meta.manager->dbus_unit_queue, &u->meta);
338
23a177ef
LP
339 if (u->meta.in_cleanup_queue)
340 LIST_REMOVE(Meta, cleanup_queue, u->meta.manager->cleanup_queue, &u->meta);
341
701cc384
LP
342 if (u->meta.in_gc_queue) {
343 LIST_REMOVE(Meta, gc_queue, u->meta.manager->gc_queue, &u->meta);
344 u->meta.manager->n_in_gc_queue--;
345 }
346
e537352b
LP
347 /* Free data and next 'smaller' objects */
348 if (u->meta.job)
349 job_free(u->meta.job);
350
e537352b 351 cgroup_bonding_free_list(u->meta.cgroup_bondings);
87f0e418
LP
352
353 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
354 bidi_set_free(u, u->meta.dependencies[d]);
355
356 free(u->meta.description);
6be1e7d5 357 free(u->meta.fragment_path);
87f0e418
LP
358
359 while ((t = set_steal_first(u->meta.names)))
360 free(t);
361 set_free(u->meta.names);
362
9e2f7c11
LP
363 free(u->meta.instance);
364
87f0e418
LP
365 free(u);
366}
367
368UnitActiveState unit_active_state(Unit *u) {
369 assert(u);
370
371 if (u->meta.load_state != UNIT_LOADED)
372 return UNIT_INACTIVE;
373
374 return UNIT_VTABLE(u)->active_state(u);
375}
376
10a94420
LP
377const char* unit_sub_state_to_string(Unit *u) {
378 assert(u);
379
380 return UNIT_VTABLE(u)->sub_state_to_string(u);
381}
382
23a177ef
LP
383static void complete_move(Set **s, Set **other) {
384 assert(s);
385 assert(other);
87f0e418 386
23a177ef
LP
387 if (!*other)
388 return;
87f0e418
LP
389
390 if (*s)
23a177ef
LP
391 set_move(*s, *other);
392 else {
393 *s = *other;
394 *other = NULL;
395 }
396}
87f0e418 397
23a177ef
LP
398static void merge_names(Unit *u, Unit *other) {
399 char *t;
400 Iterator i;
87f0e418 401
23a177ef
LP
402 assert(u);
403 assert(other);
404
405 complete_move(&u->meta.names, &other->meta.names);
406
407 while ((t = set_steal_first(other->meta.names)))
408 free(t);
409
410 set_free(other->meta.names);
411 other->meta.names = NULL;
412 other->meta.id = NULL;
413
414 SET_FOREACH(t, u->meta.names, i)
415 assert_se(hashmap_replace(u->meta.manager->units, t, u) == 0);
87f0e418
LP
416}
417
23a177ef
LP
418static void merge_dependencies(Unit *u, Unit *other, UnitDependency d) {
419 Iterator i;
420 Unit *back;
87f0e418 421 int r;
23a177ef
LP
422
423 assert(u);
424 assert(other);
425 assert(d < _UNIT_DEPENDENCY_MAX);
426
427 SET_FOREACH(back, other->meta.dependencies[d], i) {
428 UnitDependency k;
429
430 for (k = 0; k < _UNIT_DEPENDENCY_MAX; k++)
431 if ((r = set_remove_and_put(back->meta.dependencies[k], other, u)) < 0) {
432
433 if (r == -EEXIST)
434 set_remove(back->meta.dependencies[k], other);
435 else
436 assert(r == -ENOENT);
437 }
438 }
439
440 complete_move(&u->meta.dependencies[d], &other->meta.dependencies[d]);
441
442 set_free(other->meta.dependencies[d]);
443 other->meta.dependencies[d] = NULL;
444}
445
446int unit_merge(Unit *u, Unit *other) {
87f0e418
LP
447 UnitDependency d;
448
449 assert(u);
450 assert(other);
451 assert(u->meta.manager == other->meta.manager);
9e2f7c11 452 assert(u->meta.type != _UNIT_TYPE_INVALID);
87f0e418 453
cc916967
LP
454 other = unit_follow_merge(other);
455
23a177ef
LP
456 if (other == u)
457 return 0;
458
9e2f7c11
LP
459 if (u->meta.type != other->meta.type)
460 return -EINVAL;
461
462 if (!streq_ptr(u->meta.instance, other->meta.instance))
87f0e418
LP
463 return -EINVAL;
464
cc916967
LP
465 if (other->meta.load_state != UNIT_STUB &&
466 other->meta.load_state != UNIT_FAILED)
23a177ef 467 return -EEXIST;
87f0e418 468
819e213f
LP
469 if (other->meta.job)
470 return -EEXIST;
471
472 if (unit_active_state(other) != UNIT_INACTIVE)
473 return -EEXIST;
474
87f0e418 475 /* Merge names */
23a177ef 476 merge_names(u, other);
87f0e418
LP
477
478 /* Merge dependencies */
479 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
23a177ef 480 merge_dependencies(u, other, d);
87f0e418 481
23a177ef
LP
482 other->meta.load_state = UNIT_MERGED;
483 other->meta.merged_into = u;
484
3616a49c
LP
485 /* If there is still some data attached to the other node, we
486 * don't need it anymore, and can free it. */
487 if (other->meta.load_state != UNIT_STUB)
488 if (UNIT_VTABLE(other)->done)
489 UNIT_VTABLE(other)->done(other);
490
491 unit_add_to_dbus_queue(u);
23a177ef
LP
492 unit_add_to_cleanup_queue(other);
493
494 return 0;
495}
496
497int unit_merge_by_name(Unit *u, const char *name) {
498 Unit *other;
9e2f7c11
LP
499 int r;
500 char *s = NULL;
23a177ef
LP
501
502 assert(u);
503 assert(name);
504
9e2f7c11
LP
505 if (unit_name_is_template(name)) {
506 if (!u->meta.instance)
507 return -EINVAL;
508
509 if (!(s = unit_name_replace_instance(name, u->meta.instance)))
510 return -ENOMEM;
511
512 name = s;
513 }
514
23a177ef 515 if (!(other = manager_get_unit(u->meta.manager, name)))
9e2f7c11
LP
516 r = unit_add_name(u, name);
517 else
518 r = unit_merge(u, other);
23a177ef 519
9e2f7c11
LP
520 free(s);
521 return r;
23a177ef
LP
522}
523
524Unit* unit_follow_merge(Unit *u) {
525 assert(u);
526
527 while (u->meta.load_state == UNIT_MERGED)
528 assert_se(u = u->meta.merged_into);
529
530 return u;
531}
532
533int unit_add_exec_dependencies(Unit *u, ExecContext *c) {
534 int r;
535
536 assert(u);
537 assert(c);
538
ecc6e2b8
LP
539 if (c->std_output != EXEC_OUTPUT_KMSG &&
540 c->std_output != EXEC_OUTPUT_SYSLOG &&
541 c->std_error != EXEC_OUTPUT_KMSG &&
542 c->std_error != EXEC_OUTPUT_SYSLOG)
23a177ef
LP
543 return 0;
544
545 /* If syslog or kernel logging is requested, make sure our own
546 * logging daemon is run first. */
547
701cc384 548 if ((r = unit_add_dependency_by_name(u, UNIT_AFTER, SPECIAL_LOGGER_SOCKET, NULL, true)) < 0)
23a177ef
LP
549 return r;
550
551 if (u->meta.manager->running_as != MANAGER_SESSION)
701cc384 552 if ((r = unit_add_dependency_by_name(u, UNIT_REQUIRES, SPECIAL_LOGGER_SOCKET, NULL, true)) < 0)
23a177ef
LP
553 return r;
554
87f0e418
LP
555 return 0;
556}
557
87f0e418
LP
558const char *unit_description(Unit *u) {
559 assert(u);
560
561 if (u->meta.description)
562 return u->meta.description;
563
9e2f7c11 564 return u->meta.id;
87f0e418
LP
565}
566
567void unit_dump(Unit *u, FILE *f, const char *prefix) {
87f0e418
LP
568 char *t;
569 UnitDependency d;
570 Iterator i;
47be870b
LP
571 char *p2;
572 const char *prefix2;
8e274523 573 CGroupBonding *b;
173e3821
LP
574 char
575 timestamp1[FORMAT_TIMESTAMP_MAX],
576 timestamp2[FORMAT_TIMESTAMP_MAX],
577 timestamp3[FORMAT_TIMESTAMP_MAX],
578 timestamp4[FORMAT_TIMESTAMP_MAX];
87f0e418
LP
579
580 assert(u);
9e2f7c11 581 assert(u->meta.type >= 0);
87f0e418
LP
582
583 if (!prefix)
584 prefix = "";
47be870b
LP
585 p2 = strappend(prefix, "\t");
586 prefix2 = p2 ? p2 : prefix;
87f0e418
LP
587
588 fprintf(f,
40d50879 589 "%s-> Unit %s:\n"
87f0e418 590 "%s\tDescription: %s\n"
9e2f7c11 591 "%s\tInstance: %s\n"
87f0e418 592 "%s\tUnit Load State: %s\n"
2fad8195 593 "%s\tUnit Active State: %s\n"
173e3821 594 "%s\tInactive Exit Timestamp: %s\n"
2fad8195 595 "%s\tActive Enter Timestamp: %s\n"
701cc384 596 "%s\tActive Exit Timestamp: %s\n"
173e3821 597 "%s\tInactive Enter Timestamp: %s\n"
bc0f8771
LP
598 "%s\tGC Check Good: %s\n"
599 "%s\tOnly By Dependency: %s\n",
9e2f7c11 600 prefix, u->meta.id,
87f0e418 601 prefix, unit_description(u),
9e2f7c11 602 prefix, strna(u->meta.instance),
94f04347 603 prefix, unit_load_state_to_string(u->meta.load_state),
2fad8195 604 prefix, unit_active_state_to_string(unit_active_state(u)),
871d7de4
LP
605 prefix, strna(format_timestamp(timestamp1, sizeof(timestamp1), u->meta.inactive_exit_timestamp.realtime)),
606 prefix, strna(format_timestamp(timestamp2, sizeof(timestamp2), u->meta.active_enter_timestamp.realtime)),
607 prefix, strna(format_timestamp(timestamp3, sizeof(timestamp3), u->meta.active_exit_timestamp.realtime)),
608 prefix, strna(format_timestamp(timestamp4, sizeof(timestamp4), u->meta.inactive_enter_timestamp.realtime)),
bc0f8771
LP
609 prefix, yes_no(unit_check_gc(u)),
610 prefix, yes_no(u->meta.only_by_dependency));
0301abf4 611
87f0e418
LP
612 SET_FOREACH(t, u->meta.names, i)
613 fprintf(f, "%s\tName: %s\n", prefix, t);
614
23a177ef
LP
615 if (u->meta.fragment_path)
616 fprintf(f, "%s\tFragment Path: %s\n", prefix, u->meta.fragment_path);
617
87f0e418
LP
618 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++) {
619 Unit *other;
620
87f0e418 621 SET_FOREACH(other, u->meta.dependencies[d], i)
9e2f7c11 622 fprintf(f, "%s\t%s: %s\n", prefix, unit_dependency_to_string(d), other->meta.id);
87f0e418
LP
623 }
624
23a177ef 625 if (u->meta.load_state == UNIT_LOADED) {
b0650475
LP
626 fprintf(f,
627 "%s\tRecursive Stop: %s\n"
628 "%s\tStop When Unneeded: %s\n",
629 prefix, yes_no(u->meta.recursive_stop),
630 prefix, yes_no(u->meta.stop_when_unneeded));
631
23a177ef
LP
632 LIST_FOREACH(by_unit, b, u->meta.cgroup_bondings)
633 fprintf(f, "%s\tControlGroup: %s:%s\n",
634 prefix, b->controller, b->path);
8e274523 635
23a177ef
LP
636 if (UNIT_VTABLE(u)->dump)
637 UNIT_VTABLE(u)->dump(u, f, prefix2);
b0650475
LP
638
639 } else if (u->meta.load_state == UNIT_MERGED)
640 fprintf(f,
641 "%s\tMerged into: %s\n",
9e2f7c11 642 prefix, u->meta.merged_into->meta.id);
87f0e418
LP
643
644 if (u->meta.job)
645 job_dump(u->meta.job, f, prefix2);
646
47be870b 647 free(p2);
87f0e418
LP
648}
649
650/* Common implementation for multiple backends */
e537352b 651int unit_load_fragment_and_dropin(Unit *u) {
23a177ef
LP
652 int r;
653
654 assert(u);
23a177ef
LP
655
656 /* Load a .service file */
e537352b 657 if ((r = unit_load_fragment(u)) < 0)
23a177ef
LP
658 return r;
659
e537352b 660 if (u->meta.load_state == UNIT_STUB)
23a177ef
LP
661 return -ENOENT;
662
663 /* Load drop-in directory data */
664 if ((r = unit_load_dropin(unit_follow_merge(u))) < 0)
665 return r;
666
667 return 0;
668}
669
670/* Common implementation for multiple backends */
e537352b 671int unit_load_fragment_and_dropin_optional(Unit *u) {
23a177ef 672 int r;
87f0e418
LP
673
674 assert(u);
675
23a177ef
LP
676 /* Same as unit_load_fragment_and_dropin(), but whether
677 * something can be loaded or not doesn't matter. */
678
679 /* Load a .service file */
e537352b 680 if ((r = unit_load_fragment(u)) < 0)
87f0e418
LP
681 return r;
682
e537352b
LP
683 if (u->meta.load_state == UNIT_STUB)
684 u->meta.load_state = UNIT_LOADED;
d46de8a1 685
87f0e418 686 /* Load drop-in directory data */
23a177ef 687 if ((r = unit_load_dropin(unit_follow_merge(u))) < 0)
87f0e418
LP
688 return r;
689
23a177ef 690 return 0;
87f0e418
LP
691}
692
a16e1123
LP
693/* Common implementation for multiple backends */
694int unit_load_nop(Unit *u) {
695 assert(u);
696
697 if (u->meta.load_state == UNIT_STUB)
698 u->meta.load_state = UNIT_LOADED;
699
700 return 0;
701}
702
87f0e418
LP
703int unit_load(Unit *u) {
704 int r;
705
706 assert(u);
707
708 if (u->meta.in_load_queue) {
709 LIST_REMOVE(Meta, load_queue, u->meta.manager->load_queue, &u->meta);
710 u->meta.in_load_queue = false;
711 }
712
e537352b
LP
713 if (u->meta.type == _UNIT_TYPE_INVALID)
714 return -EINVAL;
715
87f0e418
LP
716 if (u->meta.load_state != UNIT_STUB)
717 return 0;
718
e537352b
LP
719 if (UNIT_VTABLE(u)->load)
720 if ((r = UNIT_VTABLE(u)->load(u)) < 0)
87f0e418 721 goto fail;
23a177ef 722
e537352b 723 if (u->meta.load_state == UNIT_STUB) {
23a177ef
LP
724 r = -ENOENT;
725 goto fail;
726 }
727
23a177ef
LP
728 assert((u->meta.load_state != UNIT_MERGED) == !u->meta.merged_into);
729
730 unit_add_to_dbus_queue(unit_follow_merge(u));
701cc384 731 unit_add_to_gc_queue(u);
87f0e418 732
87f0e418
LP
733 return 0;
734
735fail:
736 u->meta.load_state = UNIT_FAILED;
c1e1601e 737 unit_add_to_dbus_queue(u);
23a177ef 738
30de7d85 739 log_debug("Failed to load configuration for %s: %s", u->meta.id, strerror(-r));
23a177ef 740
87f0e418
LP
741 return r;
742}
743
744/* Errors:
d5159713
LP
745 * -EBADR: This unit type does not support starting.
746 * -EALREADY: Unit is already started.
747 * -EAGAIN: An operation is already in progress. Retry later.
748 * -ECANCELED: Too many requests for now.
87f0e418
LP
749 */
750int unit_start(Unit *u) {
751 UnitActiveState state;
752
753 assert(u);
754
7898b0cf
LP
755 /* If this is already (being) started, then this will
756 * succeed. Note that this will even succeed if this unit is
757 * not startable by the user. This is relied on to detect when
758 * we need to wait for units and when waiting is finished. */
87f0e418
LP
759 state = unit_active_state(u);
760 if (UNIT_IS_ACTIVE_OR_RELOADING(state))
761 return -EALREADY;
762
7898b0cf
LP
763 /* If it is stopped, but we cannot start it, then fail */
764 if (!UNIT_VTABLE(u)->start)
765 return -EBADR;
766
87f0e418
LP
767 /* We don't suppress calls to ->start() here when we are
768 * already starting, to allow this request to be used as a
769 * "hurry up" call, for example when the unit is in some "auto
770 * restart" state where it waits for a holdoff timer to elapse
771 * before it will start again. */
772
c1e1601e 773 unit_add_to_dbus_queue(u);
87f0e418
LP
774 return UNIT_VTABLE(u)->start(u);
775}
776
777bool unit_can_start(Unit *u) {
778 assert(u);
779
780 return !!UNIT_VTABLE(u)->start;
781}
782
783/* Errors:
784 * -EBADR: This unit type does not support stopping.
785 * -EALREADY: Unit is already stopped.
786 * -EAGAIN: An operation is already in progress. Retry later.
787 */
788int unit_stop(Unit *u) {
789 UnitActiveState state;
790
791 assert(u);
792
87f0e418
LP
793 state = unit_active_state(u);
794 if (state == UNIT_INACTIVE)
795 return -EALREADY;
796
7898b0cf
LP
797 if (!UNIT_VTABLE(u)->stop)
798 return -EBADR;
799
c1e1601e 800 unit_add_to_dbus_queue(u);
87f0e418
LP
801 return UNIT_VTABLE(u)->stop(u);
802}
803
804/* Errors:
805 * -EBADR: This unit type does not support reloading.
806 * -ENOEXEC: Unit is not started.
807 * -EAGAIN: An operation is already in progress. Retry later.
808 */
809int unit_reload(Unit *u) {
810 UnitActiveState state;
811
812 assert(u);
813
814 if (!unit_can_reload(u))
815 return -EBADR;
816
817 state = unit_active_state(u);
818 if (unit_active_state(u) == UNIT_ACTIVE_RELOADING)
819 return -EALREADY;
820
821 if (unit_active_state(u) != UNIT_ACTIVE)
822 return -ENOEXEC;
823
c1e1601e 824 unit_add_to_dbus_queue(u);
87f0e418
LP
825 return UNIT_VTABLE(u)->reload(u);
826}
827
828bool unit_can_reload(Unit *u) {
829 assert(u);
830
831 if (!UNIT_VTABLE(u)->reload)
832 return false;
833
834 if (!UNIT_VTABLE(u)->can_reload)
835 return true;
836
837 return UNIT_VTABLE(u)->can_reload(u);
838}
839
f3bff0eb
LP
840static void unit_check_uneeded(Unit *u) {
841 Iterator i;
842 Unit *other;
843
844 assert(u);
845
846 /* If this service shall be shut down when unneeded then do
847 * so. */
848
849 if (!u->meta.stop_when_unneeded)
850 return;
851
852 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)))
853 return;
854
855 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY], i)
856 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
857 return;
858
9e2f7c11 859 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY_OVERRIDABLE], i)
f3bff0eb
LP
860 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
861 return;
862
863 SET_FOREACH(other, u->meta.dependencies[UNIT_WANTED_BY], i)
864 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
865 return;
866
9e2f7c11 867 log_debug("Service %s is not needed anymore. Stopping.", u->meta.id);
f3bff0eb
LP
868
869 /* Ok, nobody needs us anymore. Sniff. Then let's commit suicide */
870 manager_add_job(u->meta.manager, JOB_STOP, u, JOB_FAIL, true, NULL);
871}
872
87f0e418
LP
873static void retroactively_start_dependencies(Unit *u) {
874 Iterator i;
875 Unit *other;
876
877 assert(u);
878 assert(UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)));
879
880 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES], i)
881 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
882 manager_add_job(u->meta.manager, JOB_START, other, JOB_REPLACE, true, NULL);
883
9e2f7c11 884 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES_OVERRIDABLE], i)
87f0e418
LP
885 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
886 manager_add_job(u->meta.manager, JOB_START, other, JOB_FAIL, false, NULL);
887
888 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUISITE], i)
889 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
890 manager_add_job(u->meta.manager, JOB_START, other, JOB_REPLACE, true, NULL);
891
892 SET_FOREACH(other, u->meta.dependencies[UNIT_WANTS], i)
893 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
894 manager_add_job(u->meta.manager, JOB_START, other, JOB_FAIL, false, NULL);
895
896 SET_FOREACH(other, u->meta.dependencies[UNIT_CONFLICTS], i)
897 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
898 manager_add_job(u->meta.manager, JOB_STOP, other, JOB_REPLACE, true, NULL);
899}
900
901static void retroactively_stop_dependencies(Unit *u) {
902 Iterator i;
903 Unit *other;
904
905 assert(u);
906 assert(UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(u)));
907
f3bff0eb
LP
908 if (u->meta.recursive_stop) {
909 /* Pull down units need us recursively if enabled */
910 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY], i)
911 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
912 manager_add_job(u->meta.manager, JOB_STOP, other, JOB_REPLACE, true, NULL);
913 }
914
915 /* Garbage collect services that might not be needed anymore, if enabled */
916 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES], i)
87f0e418 917 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
f3bff0eb 918 unit_check_uneeded(other);
9e2f7c11 919 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES_OVERRIDABLE], i)
f3bff0eb
LP
920 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
921 unit_check_uneeded(other);
922 SET_FOREACH(other, u->meta.dependencies[UNIT_WANTS], i)
923 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
924 unit_check_uneeded(other);
925 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUISITE], i)
926 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
927 unit_check_uneeded(other);
9e2f7c11 928 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUISITE_OVERRIDABLE], i)
f3bff0eb
LP
929 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
930 unit_check_uneeded(other);
87f0e418
LP
931}
932
933void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns) {
a096ed36 934 bool unexpected = false;
871d7de4 935 timestamp ts;
a096ed36 936
87f0e418
LP
937 assert(u);
938 assert(os < _UNIT_ACTIVE_STATE_MAX);
939 assert(ns < _UNIT_ACTIVE_STATE_MAX);
87f0e418 940
8e471ccd
LP
941 /* Note that this is called for all low-level state changes,
942 * even if they might map to the same high-level
943 * UnitActiveState! That means that ns == os is OK an expected
944 * behaviour here. For example: if a mount point is remounted
945 * this function will be called too and the utmp code below
946 * relies on that! */
87f0e418 947
871d7de4 948 timestamp_get(&ts);
173e3821
LP
949
950 if (os == UNIT_INACTIVE && ns != UNIT_INACTIVE)
951 u->meta.inactive_exit_timestamp = ts;
952 else if (os != UNIT_INACTIVE && ns == UNIT_INACTIVE)
953 u->meta.inactive_enter_timestamp = ts;
954
87f0e418 955 if (!UNIT_IS_ACTIVE_OR_RELOADING(os) && UNIT_IS_ACTIVE_OR_RELOADING(ns))
173e3821 956 u->meta.active_enter_timestamp = ts;
87f0e418 957 else if (UNIT_IS_ACTIVE_OR_RELOADING(os) && !UNIT_IS_ACTIVE_OR_RELOADING(ns))
173e3821 958 u->meta.active_exit_timestamp = ts;
87f0e418 959
871d7de4 960 timer_unit_notify(u, ns);
01f78473 961 path_unit_notify(u, ns);
871d7de4 962
87f0e418
LP
963 if (u->meta.job) {
964
965 if (u->meta.job->state == JOB_WAITING)
966
967 /* So we reached a different state for this
968 * job. Let's see if we can run it now if it
969 * failed previously due to EAGAIN. */
c1e1601e 970 job_add_to_run_queue(u->meta.job);
87f0e418 971
87f0e418 972
b410e6b9
LP
973 /* Let's check whether this state change constitutes a
974 * finished job, or maybe cotradicts a running job and
975 * hence needs to invalidate jobs. */
87f0e418 976
b410e6b9 977 switch (u->meta.job->type) {
87f0e418 978
b410e6b9
LP
979 case JOB_START:
980 case JOB_VERIFY_ACTIVE:
87f0e418 981
b410e6b9
LP
982 if (UNIT_IS_ACTIVE_OR_RELOADING(ns))
983 job_finish_and_invalidate(u->meta.job, true);
984 else if (u->meta.job->state == JOB_RUNNING && ns != UNIT_ACTIVATING) {
985 unexpected = true;
986 job_finish_and_invalidate(u->meta.job, false);
987 }
87f0e418 988
b410e6b9 989 break;
87f0e418 990
b410e6b9
LP
991 case JOB_RELOAD:
992 case JOB_RELOAD_OR_START:
87f0e418 993
b410e6b9 994 if (u->meta.job->state == JOB_RUNNING) {
a096ed36 995 if (ns == UNIT_ACTIVE)
87f0e418 996 job_finish_and_invalidate(u->meta.job, true);
a096ed36
LP
997 else if (ns != UNIT_ACTIVATING && ns != UNIT_ACTIVE_RELOADING) {
998 unexpected = true;
87f0e418 999 job_finish_and_invalidate(u->meta.job, false);
a096ed36 1000 }
b410e6b9 1001 }
87f0e418 1002
b410e6b9 1003 break;
87f0e418 1004
b410e6b9
LP
1005 case JOB_STOP:
1006 case JOB_RESTART:
1007 case JOB_TRY_RESTART:
87f0e418 1008
b410e6b9
LP
1009 if (ns == UNIT_INACTIVE)
1010 job_finish_and_invalidate(u->meta.job, true);
1011 else if (u->meta.job->state == JOB_RUNNING && ns != UNIT_DEACTIVATING) {
1012 unexpected = true;
1013 job_finish_and_invalidate(u->meta.job, false);
1014 }
87f0e418 1015
b410e6b9 1016 break;
87f0e418 1017
b410e6b9
LP
1018 default:
1019 assert_not_reached("Job type unknown");
87f0e418
LP
1020 }
1021 }
1022
1023 /* If this state change happened without being requested by a
1024 * job, then let's retroactively start or stop dependencies */
1025
a096ed36
LP
1026 if (unexpected) {
1027 if (UNIT_IS_INACTIVE_OR_DEACTIVATING(os) && UNIT_IS_ACTIVE_OR_ACTIVATING(ns))
1028 retroactively_start_dependencies(u);
1029 else if (UNIT_IS_ACTIVE_OR_ACTIVATING(os) && UNIT_IS_INACTIVE_OR_DEACTIVATING(ns))
1030 retroactively_stop_dependencies(u);
1031 }
f3bff0eb 1032
e537352b
LP
1033 /* Some names are special */
1034 if (UNIT_IS_ACTIVE_OR_RELOADING(ns)) {
f278026d 1035 if (unit_has_name(u, SPECIAL_DBUS_SERVICE)) {
e537352b
LP
1036 /* The bus just might have become available,
1037 * hence try to connect to it, if we aren't
1038 * yet connected. */
f278026d
LP
1039 bus_init_system(u->meta.manager);
1040 bus_init_api(u->meta.manager);
1041 }
1042
e537352b
LP
1043 if (unit_has_name(u, SPECIAL_SYSLOG_SERVICE))
1044 /* The syslog daemon just might have become
1045 * available, hence try to connect to it, if
1046 * we aren't yet connected. */
843d2643 1047 log_open();
f278026d 1048
e537352b
LP
1049 if (u->meta.type == UNIT_MOUNT)
1050 /* Another directory became available, let's
1051 * check if that is enough to write our utmp
1052 * entry. */
1053 manager_write_utmp_reboot(u->meta.manager);
1054
1055 if (u->meta.type == UNIT_TARGET)
1056 /* A target got activated, maybe this is a runlevel? */
1057 manager_write_utmp_runlevel(u->meta.manager, u);
1058
1059 } else if (!UNIT_IS_ACTIVE_OR_RELOADING(ns)) {
f278026d
LP
1060
1061 if (unit_has_name(u, SPECIAL_SYSLOG_SERVICE))
e537352b
LP
1062 /* The syslog daemon might just have
1063 * terminated, hence try to disconnect from
1064 * it. */
2882c7ed 1065 log_close_syslog();
f278026d
LP
1066
1067 /* We don't care about D-Bus here, since we'll get an
1068 * asynchronous notification for it anyway. */
1069 }
1070
f3bff0eb
LP
1071 /* Maybe we finished startup and are now ready for being
1072 * stopped because unneeded? */
1073 unit_check_uneeded(u);
c1e1601e
LP
1074
1075 unit_add_to_dbus_queue(u);
701cc384 1076 unit_add_to_gc_queue(u);
87f0e418
LP
1077}
1078
acbb0225 1079int unit_watch_fd(Unit *u, int fd, uint32_t events, Watch *w) {
87f0e418
LP
1080 struct epoll_event ev;
1081
1082 assert(u);
1083 assert(fd >= 0);
acbb0225 1084 assert(w);
ea430986 1085 assert(w->type == WATCH_INVALID || (w->type == WATCH_FD && w->fd == fd && w->data.unit == u));
87f0e418
LP
1086
1087 zero(ev);
acbb0225 1088 ev.data.ptr = w;
87f0e418
LP
1089 ev.events = events;
1090
acbb0225
LP
1091 if (epoll_ctl(u->meta.manager->epoll_fd,
1092 w->type == WATCH_INVALID ? EPOLL_CTL_ADD : EPOLL_CTL_MOD,
1093 fd,
1094 &ev) < 0)
1095 return -errno;
87f0e418 1096
acbb0225
LP
1097 w->fd = fd;
1098 w->type = WATCH_FD;
ea430986 1099 w->data.unit = u;
87f0e418 1100
acbb0225 1101 return 0;
87f0e418
LP
1102}
1103
acbb0225 1104void unit_unwatch_fd(Unit *u, Watch *w) {
87f0e418 1105 assert(u);
acbb0225 1106 assert(w);
87f0e418 1107
acbb0225
LP
1108 if (w->type == WATCH_INVALID)
1109 return;
1110
ea430986
LP
1111 assert(w->type == WATCH_FD);
1112 assert(w->data.unit == u);
acbb0225
LP
1113 assert_se(epoll_ctl(u->meta.manager->epoll_fd, EPOLL_CTL_DEL, w->fd, NULL) >= 0);
1114
1115 w->fd = -1;
1116 w->type = WATCH_INVALID;
ea430986 1117 w->data.unit = NULL;
87f0e418
LP
1118}
1119
1120int unit_watch_pid(Unit *u, pid_t pid) {
1121 assert(u);
1122 assert(pid >= 1);
1123
05e343b7
LP
1124 /* Watch a specific PID. We only support one unit watching
1125 * each PID for now. */
1126
87f0e418
LP
1127 return hashmap_put(u->meta.manager->watch_pids, UINT32_TO_PTR(pid), u);
1128}
1129
1130void unit_unwatch_pid(Unit *u, pid_t pid) {
1131 assert(u);
1132 assert(pid >= 1);
1133
05e343b7 1134 hashmap_remove_value(u->meta.manager->watch_pids, UINT32_TO_PTR(pid), u);
87f0e418
LP
1135}
1136
acbb0225 1137int unit_watch_timer(Unit *u, usec_t delay, Watch *w) {
87f0e418 1138 struct itimerspec its;
acbb0225 1139 int flags, fd;
87f0e418
LP
1140 bool ours;
1141
1142 assert(u);
acbb0225 1143 assert(w);
ea430986 1144 assert(w->type == WATCH_INVALID || (w->type == WATCH_TIMER && w->data.unit == u));
87f0e418
LP
1145
1146 /* This will try to reuse the old timer if there is one */
1147
acbb0225 1148 if (w->type == WATCH_TIMER) {
87f0e418 1149 ours = false;
acbb0225 1150 fd = w->fd;
87f0e418
LP
1151 } else {
1152 ours = true;
87f0e418
LP
1153 if ((fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC)) < 0)
1154 return -errno;
1155 }
1156
1157 zero(its);
1158
1159 if (delay <= 0) {
1160 /* Set absolute time in the past, but not 0, since we
1161 * don't want to disarm the timer */
1162 its.it_value.tv_sec = 0;
1163 its.it_value.tv_nsec = 1;
1164
1165 flags = TFD_TIMER_ABSTIME;
1166 } else {
1167 timespec_store(&its.it_value, delay);
1168 flags = 0;
1169 }
1170
1171 /* This will also flush the elapse counter */
1172 if (timerfd_settime(fd, flags, &its, NULL) < 0)
1173 goto fail;
1174
acbb0225
LP
1175 if (w->type == WATCH_INVALID) {
1176 struct epoll_event ev;
87f0e418 1177
acbb0225
LP
1178 zero(ev);
1179 ev.data.ptr = w;
f94ea366 1180 ev.events = EPOLLIN;
acbb0225
LP
1181
1182 if (epoll_ctl(u->meta.manager->epoll_fd, EPOLL_CTL_ADD, fd, &ev) < 0)
1183 goto fail;
1184 }
1185
1186 w->fd = fd;
1187 w->type = WATCH_TIMER;
ea430986 1188 w->data.unit = u;
87f0e418 1189
87f0e418
LP
1190 return 0;
1191
1192fail:
1193 if (ours)
ea430986 1194 close_nointr_nofail(fd);
87f0e418
LP
1195
1196 return -errno;
1197}
1198
acbb0225 1199void unit_unwatch_timer(Unit *u, Watch *w) {
87f0e418 1200 assert(u);
acbb0225 1201 assert(w);
87f0e418 1202
acbb0225 1203 if (w->type == WATCH_INVALID)
87f0e418
LP
1204 return;
1205
ea430986 1206 assert(w->type == WATCH_TIMER && w->data.unit == u);
acbb0225
LP
1207
1208 assert_se(epoll_ctl(u->meta.manager->epoll_fd, EPOLL_CTL_DEL, w->fd, NULL) >= 0);
a16e1123 1209 close_nointr_nofail(w->fd);
acbb0225
LP
1210
1211 w->fd = -1;
1212 w->type = WATCH_INVALID;
ea430986 1213 w->data.unit = NULL;
87f0e418
LP
1214}
1215
1216bool unit_job_is_applicable(Unit *u, JobType j) {
1217 assert(u);
1218 assert(j >= 0 && j < _JOB_TYPE_MAX);
1219
1220 switch (j) {
1221
1222 case JOB_VERIFY_ACTIVE:
1223 case JOB_START:
1224 return true;
1225
1226 case JOB_STOP:
1227 case JOB_RESTART:
1228 case JOB_TRY_RESTART:
1229 return unit_can_start(u);
1230
1231 case JOB_RELOAD:
1232 return unit_can_reload(u);
1233
1234 case JOB_RELOAD_OR_START:
1235 return unit_can_reload(u) && unit_can_start(u);
1236
1237 default:
1238 assert_not_reached("Invalid job type");
1239 }
1240}
1241
701cc384 1242int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference) {
87f0e418
LP
1243
1244 static const UnitDependency inverse_table[_UNIT_DEPENDENCY_MAX] = {
1245 [UNIT_REQUIRES] = UNIT_REQUIRED_BY,
9e2f7c11 1246 [UNIT_REQUIRES_OVERRIDABLE] = UNIT_REQUIRED_BY_OVERRIDABLE,
87f0e418
LP
1247 [UNIT_WANTS] = UNIT_WANTED_BY,
1248 [UNIT_REQUISITE] = UNIT_REQUIRED_BY,
9e2f7c11 1249 [UNIT_REQUISITE_OVERRIDABLE] = UNIT_REQUIRED_BY_OVERRIDABLE,
87f0e418 1250 [UNIT_REQUIRED_BY] = _UNIT_DEPENDENCY_INVALID,
9e2f7c11 1251 [UNIT_REQUIRED_BY_OVERRIDABLE] = _UNIT_DEPENDENCY_INVALID,
87f0e418
LP
1252 [UNIT_WANTED_BY] = _UNIT_DEPENDENCY_INVALID,
1253 [UNIT_CONFLICTS] = UNIT_CONFLICTS,
1254 [UNIT_BEFORE] = UNIT_AFTER,
701cc384
LP
1255 [UNIT_AFTER] = UNIT_BEFORE,
1256 [UNIT_REFERENCES] = UNIT_REFERENCED_BY,
1257 [UNIT_REFERENCED_BY] = UNIT_REFERENCES
87f0e418 1258 };
701cc384 1259 int r, q = 0, v = 0, w = 0;
87f0e418
LP
1260
1261 assert(u);
1262 assert(d >= 0 && d < _UNIT_DEPENDENCY_MAX);
1263 assert(inverse_table[d] != _UNIT_DEPENDENCY_INVALID);
1264 assert(other);
1265
1266 /* We won't allow dependencies on ourselves. We will not
1267 * consider them an error however. */
1268 if (u == other)
1269 return 0;
1270
9e2f7c11
LP
1271 if (UNIT_VTABLE(u)->no_requires &&
1272 (d == UNIT_REQUIRES ||
1273 d == UNIT_REQUIRES_OVERRIDABLE ||
1274 d == UNIT_REQUISITE ||
1275 d == UNIT_REQUISITE_OVERRIDABLE)) {
1276 return -EINVAL;
1277 }
1278
701cc384
LP
1279 if ((r = set_ensure_allocated(&u->meta.dependencies[d], trivial_hash_func, trivial_compare_func)) < 0 ||
1280 (r = set_ensure_allocated(&other->meta.dependencies[inverse_table[d]], trivial_hash_func, trivial_compare_func)) < 0)
87f0e418
LP
1281 return r;
1282
701cc384
LP
1283 if (add_reference)
1284 if ((r = set_ensure_allocated(&u->meta.dependencies[UNIT_REFERENCES], trivial_hash_func, trivial_compare_func)) < 0 ||
1285 (r = set_ensure_allocated(&other->meta.dependencies[UNIT_REFERENCED_BY], trivial_hash_func, trivial_compare_func)) < 0)
1286 return r;
87f0e418 1287
701cc384
LP
1288 if ((q = set_put(u->meta.dependencies[d], other)) < 0)
1289 return q;
87f0e418 1290
701cc384
LP
1291 if ((v = set_put(other->meta.dependencies[inverse_table[d]], u)) < 0) {
1292 r = v;
1293 goto fail;
1294 }
1295
1296 if (add_reference) {
1297 if ((w = set_put(u->meta.dependencies[UNIT_REFERENCES], other)) < 0) {
1298 r = w;
1299 goto fail;
1300 }
1301
1302 if ((r = set_put(other->meta.dependencies[UNIT_REFERENCED_BY], u)) < 0)
1303 goto fail;
87f0e418
LP
1304 }
1305
c1e1601e 1306 unit_add_to_dbus_queue(u);
87f0e418 1307 return 0;
701cc384
LP
1308
1309fail:
1310 if (q > 0)
1311 set_remove(u->meta.dependencies[d], other);
1312
1313 if (v > 0)
1314 set_remove(other->meta.dependencies[inverse_table[d]], u);
1315
1316 if (w > 0)
1317 set_remove(u->meta.dependencies[UNIT_REFERENCES], other);
1318
1319 return r;
87f0e418 1320}
0301abf4 1321
9e2f7c11
LP
1322static const char *resolve_template(Unit *u, const char *name, const char*path, char **p) {
1323 char *s;
1324
1325 assert(u);
1326 assert(name || path);
1327
1328 if (!name)
1329 name = file_name_from_path(path);
1330
1331 if (!unit_name_is_template(name)) {
1332 *p = NULL;
1333 return name;
1334 }
1335
1336 if (u->meta.instance)
1337 s = unit_name_replace_instance(name, u->meta.instance);
1338 else {
1339 char *i;
1340
1341 if (!(i = unit_name_to_prefix(u->meta.id)))
1342 return NULL;
1343
1344 s = unit_name_replace_instance(name, i);
1345 free(i);
1346 }
1347
1348 if (!s)
1349 return NULL;
1350
1351 *p = s;
1352 return s;
1353}
1354
701cc384 1355int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *path, bool add_reference) {
09b6b09f
LP
1356 Unit *other;
1357 int r;
9e2f7c11 1358 char *s;
09b6b09f 1359
9e2f7c11
LP
1360 assert(u);
1361 assert(name || path);
09b6b09f 1362
9e2f7c11
LP
1363 if (!(name = resolve_template(u, name, path, &s)))
1364 return -ENOMEM;
09b6b09f 1365
9e2f7c11
LP
1366 if ((r = manager_load_unit(u->meta.manager, name, path, &other)) < 0)
1367 goto finish;
1368
701cc384 1369 r = unit_add_dependency(u, d, other, add_reference);
9e2f7c11
LP
1370
1371finish:
1372 free(s);
1373 return r;
09b6b09f
LP
1374}
1375
701cc384 1376int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name, const char *path, bool add_reference) {
bd77d0fc
LP
1377 Unit *other;
1378 int r;
9e2f7c11 1379 char *s;
bd77d0fc 1380
9e2f7c11
LP
1381 assert(u);
1382 assert(name || path);
bd77d0fc 1383
9e2f7c11
LP
1384 if (!(name = resolve_template(u, name, path, &s)))
1385 return -ENOMEM;
bd77d0fc 1386
9e2f7c11
LP
1387 if ((r = manager_load_unit(u->meta.manager, name, path, &other)) < 0)
1388 goto finish;
1389
701cc384 1390 r = unit_add_dependency(other, d, u, add_reference);
9e2f7c11
LP
1391
1392finish:
1393 free(s);
1394 return r;
bd77d0fc
LP
1395}
1396
0301abf4
LP
1397int set_unit_path(const char *p) {
1398 char *cwd, *c;
1399 int r;
1400
1401 /* This is mostly for debug purposes */
1402
1403 if (path_is_absolute(p)) {
1404 if (!(c = strdup(p)))
1405 return -ENOMEM;
1406 } else {
1407 if (!(cwd = get_current_dir_name()))
1408 return -errno;
1409
1410 r = asprintf(&c, "%s/%s", cwd, p);
1411 free(cwd);
1412
1413 if (r < 0)
1414 return -ENOMEM;
1415 }
1416
036643a2 1417 if (setenv("SYSTEMD_UNIT_PATH", c, 0) < 0) {
0301abf4
LP
1418 r = -errno;
1419 free(c);
1420 return r;
1421 }
1422
1423 return 0;
1424}
88066b3a 1425
ea430986
LP
1426char *unit_dbus_path(Unit *u) {
1427 char *p, *e;
1428
1429 assert(u);
1430
9e2f7c11 1431 if (!(e = bus_path_escape(u->meta.id)))
ea430986
LP
1432 return NULL;
1433
1434 if (asprintf(&p, "/org/freedesktop/systemd1/unit/%s", e) < 0) {
1435 free(e);
1436 return NULL;
1437 }
1438
1439 free(e);
1440 return p;
1441}
1442
8e274523
LP
1443int unit_add_cgroup(Unit *u, CGroupBonding *b) {
1444 CGroupBonding *l;
1445 int r;
1446
1447 assert(u);
1448 assert(b);
1449 assert(b->path);
1450
1451 /* Ensure this hasn't been added yet */
1452 assert(!b->unit);
1453
1454 l = hashmap_get(u->meta.manager->cgroup_bondings, b->path);
1455 LIST_PREPEND(CGroupBonding, by_path, l, b);
1456
1457 if ((r = hashmap_replace(u->meta.manager->cgroup_bondings, b->path, l)) < 0) {
1458 LIST_REMOVE(CGroupBonding, by_path, l, b);
1459 return r;
1460 }
1461
1462 LIST_PREPEND(CGroupBonding, by_unit, u->meta.cgroup_bondings, b);
1463 b->unit = u;
1464
1465 return 0;
1466}
1467
013b87c0
LP
1468static char *default_cgroup_path(Unit *u) {
1469 char *p;
4f2d528d 1470 int r;
013b87c0
LP
1471
1472 assert(u);
1473
4f2d528d
LP
1474 if (u->meta.instance) {
1475 char *t;
013b87c0 1476
4f2d528d
LP
1477 if (!(t = unit_name_template(u->meta.id)))
1478 return NULL;
1479
1480 r = asprintf(&p, "%s/%s/%s", u->meta.manager->cgroup_hierarchy, t, u->meta.instance);
1481 free(t);
1482 } else
1483 r = asprintf(&p, "%s/%s", u->meta.manager->cgroup_hierarchy, u->meta.id);
1484
1485 return r < 0 ? NULL : p;
013b87c0
LP
1486}
1487
8e274523
LP
1488int unit_add_cgroup_from_text(Unit *u, const char *name) {
1489 size_t n;
013b87c0
LP
1490 char *controller = NULL, *path = NULL;
1491 CGroupBonding *b = NULL;
8e274523
LP
1492 int r;
1493
1494 assert(u);
1495 assert(name);
1496
1497 /* Detect controller name */
013b87c0 1498 n = strcspn(name, ":");
8e274523 1499
013b87c0
LP
1500 if (name[n] == 0 ||
1501 (name[n] == ':' && name[n+1] == 0)) {
8e274523 1502
013b87c0 1503 /* Only controller name, no path? */
8e274523 1504
013b87c0
LP
1505 if (!(path = default_cgroup_path(u)))
1506 return -ENOMEM;
8e274523 1507
013b87c0
LP
1508 } else {
1509 const char *p;
8e274523 1510
013b87c0
LP
1511 /* Controller name, and path. */
1512 p = name+n+1;
8e274523 1513
013b87c0
LP
1514 if (!path_is_absolute(p))
1515 return -EINVAL;
1516
1517 if (!(path = strdup(p)))
1518 return -ENOMEM;
8e274523
LP
1519 }
1520
013b87c0
LP
1521 if (n > 0)
1522 controller = strndup(name, n);
1523 else
1524 controller = strdup(u->meta.manager->cgroup_controller);
1525
1526 if (!controller) {
1527 r = -ENOMEM;
1528 goto fail;
8e274523
LP
1529 }
1530
013b87c0
LP
1531 if (cgroup_bonding_find_list(u->meta.cgroup_bondings, controller)) {
1532 r = -EEXIST;
1533 goto fail;
1534 }
8e274523 1535
013b87c0 1536 if (!(b = new0(CGroupBonding, 1))) {
8e274523
LP
1537 r = -ENOMEM;
1538 goto fail;
1539 }
1540
013b87c0
LP
1541 b->controller = controller;
1542 b->path = path;
8e274523
LP
1543 b->only_us = false;
1544 b->clean_up = false;
1545
1546 if ((r = unit_add_cgroup(u, b)) < 0)
1547 goto fail;
1548
1549 return 0;
1550
1551fail:
013b87c0
LP
1552 free(path);
1553 free(controller);
8e274523
LP
1554 free(b);
1555
1556 return r;
1557}
1558
1559int unit_add_default_cgroup(Unit *u) {
1560 CGroupBonding *b;
1561 int r = -ENOMEM;
1562
1563 assert(u);
1564
1565 /* Adds in the default cgroup data, if it wasn't specified yet */
1566
1567 if (unit_get_default_cgroup(u))
1568 return 0;
1569
1570 if (!(b = new0(CGroupBonding, 1)))
1571 return -ENOMEM;
1572
1573 if (!(b->controller = strdup(u->meta.manager->cgroup_controller)))
1574 goto fail;
1575
013b87c0 1576 if (!(b->path = default_cgroup_path(u)))
8e274523
LP
1577 goto fail;
1578
1579 b->clean_up = true;
1580 b->only_us = true;
1581
1582 if ((r = unit_add_cgroup(u, b)) < 0)
1583 goto fail;
1584
1585 return 0;
1586
1587fail:
1588 free(b->path);
1589 free(b->controller);
1590 free(b);
1591
1592 return r;
1593}
1594
1595CGroupBonding* unit_get_default_cgroup(Unit *u) {
1596 assert(u);
1597
1598 return cgroup_bonding_find_list(u->meta.cgroup_bondings, u->meta.manager->cgroup_controller);
1599}
1600
f6ff8c29
LP
1601int unit_load_related_unit(Unit *u, const char *type, Unit **_found) {
1602 char *t;
1603 int r;
1604
1605 assert(u);
1606 assert(type);
1607 assert(_found);
1608
9e2f7c11 1609 if (!(t = unit_name_change_suffix(u->meta.id, type)))
f6ff8c29
LP
1610 return -ENOMEM;
1611
1612 assert(!unit_has_name(u, t));
1613
9e2f7c11 1614 r = manager_load_unit(u->meta.manager, t, NULL, _found);
f6ff8c29
LP
1615 free(t);
1616
9e2f7c11 1617 assert(r < 0 || *_found != u);
f6ff8c29
LP
1618
1619 return r;
1620}
1621
a16e1123
LP
1622int unit_get_related_unit(Unit *u, const char *type, Unit **_found) {
1623 Unit *found;
1624 char *t;
1625
1626 assert(u);
1627 assert(type);
1628 assert(_found);
1629
1630 if (!(t = unit_name_change_suffix(u->meta.id, type)))
1631 return -ENOMEM;
1632
1633 assert(!unit_has_name(u, t));
1634
1635 found = manager_get_unit(u->meta.manager, t);
1636 free(t);
1637
1638 if (!found)
1639 return -ENOENT;
1640
1641 *_found = found;
1642 return 0;
1643}
1644
9e2f7c11
LP
1645static char *specifier_prefix_and_instance(char specifier, void *data, void *userdata) {
1646 Unit *u = userdata;
1647 assert(u);
1648
1649 return unit_name_to_prefix_and_instance(u->meta.id);
1650}
1651
1652static char *specifier_prefix(char specifier, void *data, void *userdata) {
1653 Unit *u = userdata;
1654 assert(u);
1655
1656 return unit_name_to_prefix(u->meta.id);
1657}
1658
1659static char *specifier_prefix_unescaped(char specifier, void *data, void *userdata) {
1660 Unit *u = userdata;
1661 char *p, *r;
1662
1663 assert(u);
1664
1665 if (!(p = unit_name_to_prefix(u->meta.id)))
1666 return NULL;
1667
1668 r = unit_name_unescape(p);
1669 free(p);
1670
1671 return r;
1672}
1673
1674static char *specifier_instance_unescaped(char specifier, void *data, void *userdata) {
1675 Unit *u = userdata;
1676 assert(u);
1677
1678 if (u->meta.instance)
1679 return unit_name_unescape(u->meta.instance);
1680
1681 return strdup("");
1682}
1683
1684char *unit_name_printf(Unit *u, const char* format) {
1685
1686 /*
1687 * This will use the passed string as format string and
1688 * replace the following specifiers:
1689 *
1690 * %n: the full id of the unit (foo@bar.waldo)
1691 * %N: the id of the unit without the suffix (foo@bar)
1692 * %p: the prefix (foo)
1693 * %i: the instance (bar)
1694 */
1695
1696 const Specifier table[] = {
1697 { 'n', specifier_string, u->meta.id },
1698 { 'N', specifier_prefix_and_instance, NULL },
1699 { 'p', specifier_prefix, NULL },
1700 { 'i', specifier_string, u->meta.instance },
1701 { 0, NULL, NULL }
1702 };
1703
1704 assert(u);
1705 assert(format);
1706
1707 return specifier_printf(format, table, u);
1708}
1709
1710char *unit_full_printf(Unit *u, const char *format) {
1711
1712 /* This is similar to unit_name_printf() but also supports
1713 * unescaping */
1714
1715 const Specifier table[] = {
1716 { 'n', specifier_string, u->meta.id },
1717 { 'N', specifier_prefix_and_instance, NULL },
1718 { 'p', specifier_prefix, NULL },
1719 { 'P', specifier_prefix_unescaped, NULL },
1720 { 'i', specifier_string, u->meta.instance },
1721 { 'I', specifier_instance_unescaped, NULL },
1722 { 0, NULL, NULL }
1723 };
1724
1725 assert(u);
1726 assert(format);
1727
1728 return specifier_printf(format, table, u);
1729}
1730
1731char **unit_full_printf_strv(Unit *u, char **l) {
1732 size_t n;
1733 char **r, **i, **j;
1734
1735 /* Applies unit_full_printf to every entry in l */
1736
1737 assert(u);
1738
1739 n = strv_length(l);
1740 if (!(r = new(char*, n+1)))
1741 return NULL;
1742
1743 for (i = l, j = r; *i; i++, j++)
1744 if (!(*j = unit_full_printf(u, *i)))
1745 goto fail;
1746
1747 *j = NULL;
1748 return r;
1749
1750fail:
1751 j--;
1752 while (j >= r)
1753 free(*j);
1754
1755 free(r);
1756
1757 return NULL;
1758}
1759
05e343b7
LP
1760int unit_watch_bus_name(Unit *u, const char *name) {
1761 assert(u);
1762 assert(name);
1763
1764 /* Watch a specific name on the bus. We only support one unit
1765 * watching each name for now. */
1766
1767 return hashmap_put(u->meta.manager->watch_bus, name, u);
1768}
1769
1770void unit_unwatch_bus_name(Unit *u, const char *name) {
1771 assert(u);
1772 assert(name);
1773
1774 hashmap_remove_value(u->meta.manager->watch_bus, name, u);
1775}
1776
a16e1123
LP
1777bool unit_can_serialize(Unit *u) {
1778 assert(u);
1779
1780 return UNIT_VTABLE(u)->serialize && UNIT_VTABLE(u)->deserialize_item;
1781}
1782
1783int unit_serialize(Unit *u, FILE *f, FDSet *fds) {
1784 int r;
1785
1786 assert(u);
1787 assert(f);
1788 assert(fds);
1789
1790 if (!unit_can_serialize(u))
1791 return 0;
1792
1793 if ((r = UNIT_VTABLE(u)->serialize(u, f, fds)) < 0)
1794 return r;
1795
cca098b0
LP
1796 if (u->meta.job)
1797 unit_serialize_item(u, f, "job", job_type_to_string(u->meta.job->type));
1798
a16e1123
LP
1799 /* End marker */
1800 fputc('\n', f);
1801 return 0;
1802}
1803
1804void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *format, ...) {
1805 va_list ap;
1806
1807 assert(u);
1808 assert(f);
1809 assert(key);
1810 assert(format);
1811
1812 fputs(key, f);
1813 fputc('=', f);
1814
1815 va_start(ap, format);
1816 vfprintf(f, format, ap);
1817 va_end(ap);
1818
1819 fputc('\n', f);
1820}
1821
1822void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value) {
1823 assert(u);
1824 assert(f);
1825 assert(key);
1826 assert(value);
1827
1828 fprintf(f, "%s=%s\n", key, value);
1829}
1830
1831int unit_deserialize(Unit *u, FILE *f, FDSet *fds) {
1832 int r;
1833
1834 assert(u);
1835 assert(f);
1836 assert(fds);
1837
1838 if (!unit_can_serialize(u))
1839 return 0;
1840
1841 for (;;) {
1842 char line[1024], *l, *v;
1843 size_t k;
1844
1845 if (!fgets(line, sizeof(line), f)) {
1846 if (feof(f))
1847 return 0;
1848 return -errno;
1849 }
1850
1851 l = strstrip(line);
1852
1853 /* End marker */
1854 if (l[0] == 0)
1855 return 0;
1856
1857 k = strcspn(l, "=");
1858
1859 if (l[k] == '=') {
1860 l[k] = 0;
1861 v = l+k+1;
1862 } else
1863 v = l+k;
1864
cca098b0
LP
1865 if (streq(l, "job")) {
1866 JobType type;
1867
1868 if ((type = job_type_from_string(v)) < 0)
1869 log_debug("Failed to parse job type value %s", v);
1870 else
1871 u->meta.deserialized_job = type;
1872
1873 continue;
1874 }
1875
a16e1123
LP
1876 if ((r = UNIT_VTABLE(u)->deserialize_item(u, l, v, fds)) < 0)
1877 return r;
1878 }
1879}
1880
6e2ef85b
LP
1881int unit_add_node_link(Unit *u, const char *what, bool wants) {
1882 Unit *device;
1883 char *e;
1884 int r;
1885
1886 assert(u);
1887
1888 if (!what)
1889 return 0;
1890
1891 /* Adds in links to the device node that this unit is based on */
1892
8407a5d0 1893 if (!is_device_path(what))
6e2ef85b
LP
1894 return 0;
1895
1896 if (!(e = unit_name_build_escape(what+1, NULL, ".device")))
1897 return -ENOMEM;
1898
1899 r = manager_load_unit(u->meta.manager, e, NULL, &device);
1900 free(e);
1901
1902 if (r < 0)
1903 return r;
1904
1905 if ((r = unit_add_dependency(u, UNIT_AFTER, device, true)) < 0)
1906 return r;
1907
1908 if ((r = unit_add_dependency(u, UNIT_REQUIRES, device, true)) < 0)
1909 return r;
1910
1911 if (wants)
1912 if ((r = unit_add_dependency(device, UNIT_WANTS, u, false)) < 0)
1913 return r;
1914
1915 return 0;
1916}
a16e1123 1917
cca098b0
LP
1918int unit_coldplug(Unit *u) {
1919 int r;
1920
1921 assert(u);
1922
1923 if (UNIT_VTABLE(u)->coldplug)
1924 if ((r = UNIT_VTABLE(u)->coldplug(u)) < 0)
1925 return r;
1926
1927 if (u->meta.deserialized_job >= 0) {
1928 if ((r = manager_add_job(u->meta.manager, u->meta.deserialized_job, u, JOB_FAIL, false, NULL)) < 0)
1929 return r;
1930
1931 u->meta.deserialized_job = _JOB_TYPE_INVALID;
1932 }
1933
1934 return 0;
1935}
1936
94f04347
LP
1937static const char* const unit_type_table[_UNIT_TYPE_MAX] = {
1938 [UNIT_SERVICE] = "service",
1939 [UNIT_TIMER] = "timer",
1940 [UNIT_SOCKET] = "socket",
1941 [UNIT_TARGET] = "target",
1942 [UNIT_DEVICE] = "device",
1943 [UNIT_MOUNT] = "mount",
1944 [UNIT_AUTOMOUNT] = "automount",
07b0b134
ML
1945 [UNIT_SNAPSHOT] = "snapshot",
1946 [UNIT_SWAP] = "swap"
94f04347
LP
1947};
1948
1949DEFINE_STRING_TABLE_LOOKUP(unit_type, UnitType);
1950
1951static const char* const unit_load_state_table[_UNIT_LOAD_STATE_MAX] = {
1952 [UNIT_STUB] = "stub",
1953 [UNIT_LOADED] = "loaded",
23a177ef
LP
1954 [UNIT_FAILED] = "failed",
1955 [UNIT_MERGED] = "merged"
94f04347
LP
1956};
1957
1958DEFINE_STRING_TABLE_LOOKUP(unit_load_state, UnitLoadState);
1959
1960static const char* const unit_active_state_table[_UNIT_ACTIVE_STATE_MAX] = {
1961 [UNIT_ACTIVE] = "active",
1962 [UNIT_INACTIVE] = "inactive",
1963 [UNIT_ACTIVATING] = "activating",
1964 [UNIT_DEACTIVATING] = "deactivating"
1965};
1966
1967DEFINE_STRING_TABLE_LOOKUP(unit_active_state, UnitActiveState);
1968
1969static const char* const unit_dependency_table[_UNIT_DEPENDENCY_MAX] = {
1970 [UNIT_REQUIRES] = "Requires",
9e2f7c11 1971 [UNIT_REQUIRES_OVERRIDABLE] = "RequiresOverridable",
94f04347
LP
1972 [UNIT_WANTS] = "Wants",
1973 [UNIT_REQUISITE] = "Requisite",
9e2f7c11 1974 [UNIT_REQUISITE_OVERRIDABLE] = "RequisiteOverridable",
94f04347 1975 [UNIT_REQUIRED_BY] = "RequiredBy",
9e2f7c11 1976 [UNIT_REQUIRED_BY_OVERRIDABLE] = "RequiredByOverridable",
94f04347
LP
1977 [UNIT_WANTED_BY] = "WantedBy",
1978 [UNIT_CONFLICTS] = "Conflicts",
1979 [UNIT_BEFORE] = "Before",
1980 [UNIT_AFTER] = "After",
701cc384
LP
1981 [UNIT_REFERENCES] = "References",
1982 [UNIT_REFERENCED_BY] = "ReferencedBy"
94f04347
LP
1983};
1984
1985DEFINE_STRING_TABLE_LOOKUP(unit_dependency, UnitDependency);
50159e6a
LP
1986
1987static const char* const kill_mode_table[_KILL_MODE_MAX] = {
80876c20 1988 [KILL_CONTROL_GROUP] = "control-group",
50159e6a 1989 [KILL_PROCESS_GROUP] = "process-group",
80876c20
LP
1990 [KILL_PROCESS] = "process",
1991 [KILL_NONE] = "none"
50159e6a
LP
1992};
1993
1994DEFINE_STRING_TABLE_LOOKUP(kill_mode, KillMode);