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