]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/unit.c
core: add generic "clean" operation to units
[thirdparty/systemd.git] / src / core / unit.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
a7334b09 2
87f0e418 3#include <errno.h>
0301abf4 4#include <stdlib.h>
4f5dd394 5#include <string.h>
4c253ed1 6#include <sys/prctl.h>
45fb0699 7#include <sys/stat.h>
4f5dd394 8#include <unistd.h>
87f0e418 9
718db961
LP
10#include "sd-id128.h"
11#include "sd-messages.h"
4f5dd394 12
57b7a260 13#include "all-units.h"
d68c645b 14#include "alloc-util.h"
fab34748 15#include "bpf-firewall.h"
4f5dd394
LP
16#include "bus-common-errors.h"
17#include "bus-util.h"
c6c18be3 18#include "cgroup-util.h"
4f5dd394
LP
19#include "dbus-unit.h"
20#include "dbus.h"
21#include "dropin.h"
22#include "escape.h"
23#include "execute.h"
6a48d82f 24#include "fd-util.h"
a5c32cff 25#include "fileio-label.h"
ee228be1 26#include "fileio.h"
f97b34a6 27#include "format-util.h"
d3070fbd 28#include "fs-util.h"
4b58153d 29#include "id128-util.h"
915b1d01 30#include "io-util.h"
4f5dd394
LP
31#include "load-dropin.h"
32#include "load-fragment.h"
33#include "log.h"
34#include "macro.h"
35#include "missing.h"
36#include "mkdir.h"
6bedfcbb 37#include "parse-util.h"
4f5dd394 38#include "path-util.h"
0b452006 39#include "process-util.h"
d68c645b 40#include "serialize.h"
4f5dd394 41#include "set.h"
6eb7c172 42#include "signal-util.h"
d3070fbd 43#include "sparse-endian.h"
e9db43d5 44#include "special.h"
2e59b241 45#include "specifier.h"
8fcde012 46#include "stat-util.h"
d054f0a4 47#include "stdio-util.h"
5afe510c 48#include "string-table.h"
07630cea 49#include "string-util.h"
4f5dd394 50#include "strv.h"
5b262f74 51#include "terminal-util.h"
e4de7287 52#include "tmpfile-util.h"
4f4afc88 53#include "umask-util.h"
4f5dd394 54#include "unit-name.h"
e9db43d5 55#include "unit.h"
b1d4f8e1
LP
56#include "user-util.h"
57#include "virt.h"
87f0e418
LP
58
59const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX] = {
60 [UNIT_SERVICE] = &service_vtable,
87f0e418
LP
61 [UNIT_SOCKET] = &socket_vtable,
62 [UNIT_TARGET] = &target_vtable,
63 [UNIT_DEVICE] = &device_vtable,
64 [UNIT_MOUNT] = &mount_vtable,
65 [UNIT_AUTOMOUNT] = &automount_vtable,
01f78473 66 [UNIT_SWAP] = &swap_vtable,
e821075a 67 [UNIT_TIMER] = &timer_vtable,
a016b922 68 [UNIT_PATH] = &path_vtable,
6c12b52e 69 [UNIT_SLICE] = &slice_vtable,
5afe510c 70 [UNIT_SCOPE] = &scope_vtable,
87f0e418
LP
71};
72
f2341e0a 73static void maybe_warn_about_dependency(Unit *u, const char *other, UnitDependency dependency);
d1fab3fe 74
7d17cfbc 75Unit *unit_new(Manager *m, size_t size) {
87f0e418
LP
76 Unit *u;
77
78 assert(m);
ac155bb8 79 assert(size >= sizeof(Unit));
87f0e418 80
7d17cfbc
MS
81 u = malloc0(size);
82 if (!u)
87f0e418
LP
83 return NULL;
84
d5099efc 85 u->names = set_new(&string_hash_ops);
6b430fdb
ZJS
86 if (!u->names)
87 return mfree(u);
87f0e418 88
ac155bb8
MS
89 u->manager = m;
90 u->type = _UNIT_TYPE_INVALID;
ac155bb8
MS
91 u->default_dependencies = true;
92 u->unit_file_state = _UNIT_FILE_STATE_INVALID;
d2dc52db 93 u->unit_file_preset = -1;
d420282b 94 u->on_failure_job_mode = JOB_REPLACE;
0bb814c2 95 u->cgroup_control_inotify_wd = -1;
afcfaa69 96 u->cgroup_memory_inotify_wd = -1;
36c16a7c 97 u->job_timeout = USEC_INFINITY;
a2df3ea4 98 u->job_running_timeout = USEC_INFINITY;
00d9ef85
LP
99 u->ref_uid = UID_INVALID;
100 u->ref_gid = GID_INVALID;
fe700f46 101 u->cpu_usage_last = NSEC_INFINITY;
17f14955 102 u->cgroup_invalidated_mask |= CGROUP_MASK_BPF_FIREWALL;
7af67e9a 103 u->failure_action_exit_status = u->success_action_exit_status = -1;
87f0e418 104
6a48d82f
DM
105 u->ip_accounting_ingress_map_fd = -1;
106 u->ip_accounting_egress_map_fd = -1;
107 u->ipv4_allow_map_fd = -1;
108 u->ipv6_allow_map_fd = -1;
109 u->ipv4_deny_map_fd = -1;
110 u->ipv6_deny_map_fd = -1;
111
2e59b241
LP
112 u->last_section_private = -1;
113
6bf0f408 114 RATELIMIT_INIT(u->start_limit, m->default_start_limit_interval, m->default_start_limit_burst);
67bfdc97 115 RATELIMIT_INIT(u->auto_stop_ratelimit, 10 * USEC_PER_SEC, 16);
bea355da 116
fbe14fc9
LP
117 for (CGroupIOAccountingMetric i = 0; i < _CGROUP_IO_ACCOUNTING_METRIC_MAX; i++)
118 u->io_accounting_last[i] = UINT64_MAX;
119
87f0e418
LP
120 return u;
121}
122
a581e45a 123int unit_new_for_name(Manager *m, size_t size, const char *name, Unit **ret) {
dc409696 124 _cleanup_(unit_freep) Unit *u = NULL;
a581e45a
LP
125 int r;
126
127 u = unit_new(m, size);
128 if (!u)
129 return -ENOMEM;
130
131 r = unit_add_name(u, name);
dc409696 132 if (r < 0)
a581e45a 133 return r;
a581e45a 134
1cc6c93a
YW
135 *ret = TAKE_PTR(u);
136
a581e45a
LP
137 return r;
138}
139
303ee601 140bool unit_has_name(const Unit *u, const char *name) {
f278026d
LP
141 assert(u);
142 assert(name);
143
390bc2b1 144 return set_contains(u->names, (char*) name);
f278026d
LP
145}
146
598459ce
LP
147static void unit_init(Unit *u) {
148 CGroupContext *cc;
149 ExecContext *ec;
150 KillContext *kc;
151
152 assert(u);
153 assert(u->manager);
154 assert(u->type >= 0);
155
156 cc = unit_get_cgroup_context(u);
157 if (cc) {
158 cgroup_context_init(cc);
159
160 /* Copy in the manager defaults into the cgroup
161 * context, _before_ the rest of the settings have
162 * been initialized */
163
164 cc->cpu_accounting = u->manager->default_cpu_accounting;
13c31542 165 cc->io_accounting = u->manager->default_io_accounting;
598459ce
LP
166 cc->blockio_accounting = u->manager->default_blockio_accounting;
167 cc->memory_accounting = u->manager->default_memory_accounting;
03a7b521 168 cc->tasks_accounting = u->manager->default_tasks_accounting;
6a48d82f 169 cc->ip_accounting = u->manager->default_ip_accounting;
0af20ea2
LP
170
171 if (u->type != UNIT_SLICE)
172 cc->tasks_max = u->manager->default_tasks_max;
598459ce
LP
173 }
174
175 ec = unit_get_exec_context(u);
b1edf445 176 if (ec) {
598459ce
LP
177 exec_context_init(ec);
178
b1edf445 179 ec->keyring_mode = MANAGER_IS_SYSTEM(u->manager) ?
00f5ad93 180 EXEC_KEYRING_SHARED : EXEC_KEYRING_INHERIT;
b1edf445
LP
181 }
182
598459ce
LP
183 kc = unit_get_kill_context(u);
184 if (kc)
185 kill_context_init(kc);
186
187 if (UNIT_VTABLE(u)->init)
188 UNIT_VTABLE(u)->init(u);
189}
190
87f0e418 191int unit_add_name(Unit *u, const char *text) {
598459ce 192 _cleanup_free_ char *s = NULL, *i = NULL;
87f0e418 193 UnitType t;
87f0e418
LP
194 int r;
195
196 assert(u);
197 assert(text);
198
7410616c 199 if (unit_name_is_valid(text, UNIT_NAME_TEMPLATE)) {
598459ce 200
ac155bb8 201 if (!u->instance)
9e2f7c11 202 return -EINVAL;
87f0e418 203
7410616c
LP
204 r = unit_name_replace_instance(text, u->instance, &s);
205 if (r < 0)
206 return r;
207 } else {
9e2f7c11 208 s = strdup(text);
7410616c
LP
209 if (!s)
210 return -ENOMEM;
211 }
87f0e418 212
7410616c
LP
213 if (set_contains(u->names, s))
214 return 0;
215 if (hashmap_contains(u->manager->units, s))
216 return -EEXIST;
217
218 if (!unit_name_is_valid(s, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE))
598459ce 219 return -EINVAL;
e537352b 220
7410616c
LP
221 t = unit_name_to_type(s);
222 if (t < 0)
223 return -EINVAL;
87f0e418 224
598459ce
LP
225 if (u->type != _UNIT_TYPE_INVALID && t != u->type)
226 return -EINVAL;
87f0e418 227
e48614c4
ZJS
228 r = unit_name_to_instance(s, &i);
229 if (r < 0)
598459ce 230 return r;
87f0e418 231
ce99c68a 232 if (i && !unit_type_may_template(t))
598459ce 233 return -EINVAL;
9e2f7c11 234
276c3e78 235 /* Ensure that this unit is either instanced or not instanced,
7410616c
LP
236 * but not both. Note that we do allow names with different
237 * instance names however! */
598459ce
LP
238 if (u->type != _UNIT_TYPE_INVALID && !u->instance != !i)
239 return -EINVAL;
9e2f7c11 240
8a993b61 241 if (!unit_type_may_alias(t) && !set_isempty(u->names))
598459ce 242 return -EEXIST;
9e2f7c11 243
598459ce
LP
244 if (hashmap_size(u->manager->units) >= MANAGER_MAX_NAMES)
245 return -E2BIG;
4f0f902f 246
e48614c4 247 r = set_put(u->names, s);
7410616c 248 if (r < 0)
598459ce 249 return r;
7410616c 250 assert(r > 0);
87f0e418 251
e48614c4
ZJS
252 r = hashmap_put(u->manager->units, s, u);
253 if (r < 0) {
7410616c 254 (void) set_remove(u->names, s);
598459ce 255 return r;
87f0e418
LP
256 }
257
ac155bb8 258 if (u->type == _UNIT_TYPE_INVALID) {
ac155bb8
MS
259 u->type = t;
260 u->id = s;
1cc6c93a 261 u->instance = TAKE_PTR(i);
9e2f7c11 262
71fda00f 263 LIST_PREPEND(units_by_type, u->manager->units_by_type[t], u);
e537352b 264
598459ce 265 unit_init(u);
598459ce 266 }
9e2f7c11 267
598459ce 268 s = NULL;
9e2f7c11 269
598459ce
LP
270 unit_add_to_dbus_queue(u);
271 return 0;
87f0e418
LP
272}
273
0ae97ec1 274int unit_choose_id(Unit *u, const char *name) {
68eda4bd 275 _cleanup_free_ char *t = NULL;
598459ce 276 char *s, *i;
276c3e78 277 int r;
0ae97ec1
LP
278
279 assert(u);
280 assert(name);
281
7410616c 282 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
9e2f7c11 283
ac155bb8 284 if (!u->instance)
9e2f7c11
LP
285 return -EINVAL;
286
7410616c
LP
287 r = unit_name_replace_instance(name, u->instance, &t);
288 if (r < 0)
289 return r;
9e2f7c11
LP
290
291 name = t;
292 }
293
0ae97ec1 294 /* Selects one of the names of this unit as the id */
ac155bb8 295 s = set_get(u->names, (char*) name);
9e2f7c11 296 if (!s)
0ae97ec1
LP
297 return -ENOENT;
298
7410616c 299 /* Determine the new instance from the new id */
e48614c4
ZJS
300 r = unit_name_to_instance(s, &i);
301 if (r < 0)
276c3e78
LP
302 return r;
303
ac155bb8 304 u->id = s;
276c3e78 305
ac155bb8
MS
306 free(u->instance);
307 u->instance = i;
276c3e78 308
c1e1601e 309 unit_add_to_dbus_queue(u);
9e2f7c11 310
0ae97ec1
LP
311 return 0;
312}
313
f50e0a01 314int unit_set_description(Unit *u, const char *description) {
84b26d51 315 int r;
f50e0a01
LP
316
317 assert(u);
318
84b26d51
LP
319 r = free_and_strdup(&u->description, empty_to_null(description));
320 if (r < 0)
321 return r;
322 if (r > 0)
323 unit_add_to_dbus_queue(u);
c1e1601e 324
f50e0a01
LP
325 return 0;
326}
327
f2f725e5 328bool unit_may_gc(Unit *u) {
a354329f 329 UnitActiveState state;
e98b2fbb 330 int r;
5afe510c 331
701cc384
LP
332 assert(u);
333
f2f725e5
ZJS
334 /* Checks whether the unit is ready to be unloaded for garbage collection.
335 * Returns true when the unit may be collected, and false if there's some
2641f02e
ZJS
336 * reason to keep it loaded.
337 *
338 * References from other units are *not* checked here. Instead, this is done
339 * in unit_gc_sweep(), but using markers to properly collect dependency loops.
340 */
5afe510c 341
a354329f 342 if (u->job)
f2f725e5 343 return false;
701cc384 344
a354329f 345 if (u->nop_job)
f2f725e5 346 return false;
6c073082 347
a354329f
LP
348 state = unit_active_state(u);
349
7eb2a8a1 350 /* If the unit is inactive and failed and no job is queued for it, then release its runtime resources */
a354329f
LP
351 if (UNIT_IS_INACTIVE_OR_FAILED(state) &&
352 UNIT_VTABLE(u)->release_resources)
7eb2a8a1 353 UNIT_VTABLE(u)->release_resources(u);
a354329f 354
f5869324 355 if (u->perpetual)
f2f725e5 356 return false;
9d576438 357
05a98afd 358 if (sd_bus_track_count(u->bus_track) > 0)
f2f725e5 359 return false;
05a98afd 360
5afe510c
LP
361 /* But we keep the unit object around for longer when it is referenced or configured to not be gc'ed */
362 switch (u->collect_mode) {
363
364 case COLLECT_INACTIVE:
365 if (state != UNIT_INACTIVE)
f2f725e5 366 return false;
5afe510c
LP
367
368 break;
369
370 case COLLECT_INACTIVE_OR_FAILED:
371 if (!IN_SET(state, UNIT_INACTIVE, UNIT_FAILED))
f2f725e5 372 return false;
5afe510c
LP
373
374 break;
375
376 default:
377 assert_not_reached("Unknown garbage collection mode");
378 }
379
e98b2fbb
LP
380 if (u->cgroup_path) {
381 /* If the unit has a cgroup, then check whether there's anything in it. If so, we should stay
382 * around. Units with active processes should never be collected. */
383
384 r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path);
385 if (r < 0)
386 log_unit_debug_errno(u, r, "Failed to determine whether cgroup %s is empty: %m", u->cgroup_path);
387 if (r <= 0)
f2f725e5 388 return false;
e98b2fbb
LP
389 }
390
f2f725e5
ZJS
391 if (UNIT_VTABLE(u)->may_gc && !UNIT_VTABLE(u)->may_gc(u))
392 return false;
701cc384 393
f2f725e5 394 return true;
701cc384
LP
395}
396
87f0e418
LP
397void unit_add_to_load_queue(Unit *u) {
398 assert(u);
ac155bb8 399 assert(u->type != _UNIT_TYPE_INVALID);
87f0e418 400
ac155bb8 401 if (u->load_state != UNIT_STUB || u->in_load_queue)
87f0e418
LP
402 return;
403
71fda00f 404 LIST_PREPEND(load_queue, u->manager->load_queue, u);
ac155bb8 405 u->in_load_queue = true;
87f0e418
LP
406}
407
23a177ef
LP
408void unit_add_to_cleanup_queue(Unit *u) {
409 assert(u);
410
ac155bb8 411 if (u->in_cleanup_queue)
23a177ef
LP
412 return;
413
71fda00f 414 LIST_PREPEND(cleanup_queue, u->manager->cleanup_queue, u);
ac155bb8 415 u->in_cleanup_queue = true;
23a177ef
LP
416}
417
701cc384
LP
418void unit_add_to_gc_queue(Unit *u) {
419 assert(u);
420
ac155bb8 421 if (u->in_gc_queue || u->in_cleanup_queue)
701cc384
LP
422 return;
423
f2f725e5 424 if (!unit_may_gc(u))
701cc384
LP
425 return;
426
c5a97ed1 427 LIST_PREPEND(gc_queue, u->manager->gc_unit_queue, u);
ac155bb8 428 u->in_gc_queue = true;
701cc384
LP
429}
430
c1e1601e
LP
431void unit_add_to_dbus_queue(Unit *u) {
432 assert(u);
ac155bb8 433 assert(u->type != _UNIT_TYPE_INVALID);
c1e1601e 434
ac155bb8 435 if (u->load_state == UNIT_STUB || u->in_dbus_queue)
c1e1601e
LP
436 return;
437
a567261a 438 /* Shortcut things if nobody cares */
8f8f05a9 439 if (sd_bus_track_count(u->manager->subscribed) <= 0 &&
ae572acd 440 sd_bus_track_count(u->bus_track) <= 0 &&
8f8f05a9 441 set_isempty(u->manager->private_buses)) {
ac155bb8 442 u->sent_dbus_new_signal = true;
94b6dfa2
LP
443 return;
444 }
445
71fda00f 446 LIST_PREPEND(dbus_queue, u->manager->dbus_unit_queue, u);
ac155bb8 447 u->in_dbus_queue = true;
c1e1601e
LP
448}
449
fda09318 450void unit_submit_to_stop_when_unneeded_queue(Unit *u) {
a3c1168a
LP
451 assert(u);
452
453 if (u->in_stop_when_unneeded_queue)
454 return;
455
456 if (!u->stop_when_unneeded)
457 return;
458
459 if (!UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
460 return;
461
462 LIST_PREPEND(stop_when_unneeded_queue, u->manager->stop_when_unneeded_queue, u);
463 u->in_stop_when_unneeded_queue = true;
464}
465
eef85c4a 466static void bidi_set_free(Unit *u, Hashmap *h) {
87f0e418 467 Unit *other;
eef85c4a
LP
468 Iterator i;
469 void *v;
87f0e418
LP
470
471 assert(u);
472
eef85c4a 473 /* Frees the hashmap and makes sure we are dropped from the inverse pointers */
87f0e418 474
eef85c4a 475 HASHMAP_FOREACH_KEY(v, other, h, i) {
87f0e418
LP
476 UnitDependency d;
477
478 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
eef85c4a 479 hashmap_remove(other->dependencies[d], u);
701cc384
LP
480
481 unit_add_to_gc_queue(other);
87f0e418
LP
482 }
483
eef85c4a 484 hashmap_free(h);
87f0e418
LP
485}
486
c2756a68
LP
487static void unit_remove_transient(Unit *u) {
488 char **i;
489
490 assert(u);
491
492 if (!u->transient)
493 return;
494
495 if (u->fragment_path)
3f5e8115 496 (void) unlink(u->fragment_path);
c2756a68
LP
497
498 STRV_FOREACH(i, u->dropin_paths) {
39591351 499 _cleanup_free_ char *p = NULL, *pp = NULL;
c2756a68 500
39591351
LP
501 p = dirname_malloc(*i); /* Get the drop-in directory from the drop-in file */
502 if (!p)
503 continue;
504
505 pp = dirname_malloc(p); /* Get the config directory from the drop-in directory */
506 if (!pp)
507 continue;
508
509 /* Only drop transient drop-ins */
510 if (!path_equal(u->manager->lookup_paths.transient, pp))
511 continue;
c2756a68 512
39591351
LP
513 (void) unlink(*i);
514 (void) rmdir(p);
c2756a68
LP
515 }
516}
517
a57f7e2c 518static void unit_free_requires_mounts_for(Unit *u) {
eef85c4a 519 assert(u);
a57f7e2c 520
eef85c4a
LP
521 for (;;) {
522 _cleanup_free_ char *path;
a57f7e2c 523
eef85c4a
LP
524 path = hashmap_steal_first_key(u->requires_mounts_for);
525 if (!path)
526 break;
527 else {
528 char s[strlen(path) + 1];
a57f7e2c 529
eef85c4a
LP
530 PATH_FOREACH_PREFIX_MORE(s, path) {
531 char *y;
532 Set *x;
533
534 x = hashmap_get2(u->manager->units_requiring_mounts_for, s, (void**) &y);
535 if (!x)
536 continue;
a57f7e2c 537
eef85c4a 538 (void) set_remove(x, u);
a57f7e2c 539
eef85c4a
LP
540 if (set_isempty(x)) {
541 (void) hashmap_remove(u->manager->units_requiring_mounts_for, y);
542 free(y);
543 set_free(x);
544 }
a57f7e2c
LP
545 }
546 }
547 }
548
eef85c4a 549 u->requires_mounts_for = hashmap_free(u->requires_mounts_for);
a57f7e2c
LP
550}
551
598459ce
LP
552static void unit_done(Unit *u) {
553 ExecContext *ec;
554 CGroupContext *cc;
555
556 assert(u);
557
558 if (u->type < 0)
559 return;
560
561 if (UNIT_VTABLE(u)->done)
562 UNIT_VTABLE(u)->done(u);
563
564 ec = unit_get_exec_context(u);
565 if (ec)
566 exec_context_done(ec);
567
568 cc = unit_get_cgroup_context(u);
569 if (cc)
570 cgroup_context_done(cc);
571}
572
87f0e418
LP
573void unit_free(Unit *u) {
574 UnitDependency d;
575 Iterator i;
576 char *t;
577
c9d5c9c0
LP
578 if (!u)
579 return;
87f0e418 580
b8b6f321
LP
581 if (UNIT_ISSET(u->slice)) {
582 /* A unit is being dropped from the tree, make sure our parent slice recalculates the member mask */
583 unit_invalidate_cgroup_members_masks(UNIT_DEREF(u->slice));
584
585 /* And make sure the parent is realized again, updating cgroup memberships */
586 unit_add_to_cgroup_realize_queue(UNIT_DEREF(u->slice));
587 }
588
50fb00b7 589 u->transient_file = safe_fclose(u->transient_file);
4f4afc88 590
2c289ea8 591 if (!MANAGER_IS_RELOADING(u->manager))
c2756a68
LP
592 unit_remove_transient(u);
593
c1e1601e
LP
594 bus_unit_send_removed_signal(u);
595
598459ce 596 unit_done(u);
a013b84b 597
50be4f4a 598 unit_dequeue_rewatch_pids(u);
cf9fd508 599
50be4f4a 600 sd_bus_slot_unref(u->match_bus_slot);
05a98afd
LP
601 sd_bus_track_unref(u->bus_track);
602 u->deserialized_refs = strv_free(u->deserialized_refs);
603
a57f7e2c
LP
604 unit_free_requires_mounts_for(u);
605
ac155bb8
MS
606 SET_FOREACH(t, u->names, i)
607 hashmap_remove_value(u->manager->units, t, u);
87f0e418 608
4b58153d
LP
609 if (!sd_id128_is_null(u->invocation_id))
610 hashmap_remove_value(u->manager->units_by_invocation_id, &u->invocation_id, u);
611
97e7d748
MS
612 if (u->job) {
613 Job *j = u->job;
614 job_uninstall(j);
615 job_free(j);
616 }
964e0949 617
e0209d83
MS
618 if (u->nop_job) {
619 Job *j = u->nop_job;
620 job_uninstall(j);
621 job_free(j);
622 }
623
964e0949 624 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
ac155bb8 625 bidi_set_free(u, u->dependencies[d]);
964e0949 626
adefcf28
LP
627 if (u->on_console)
628 manager_unref_console(u->manager);
629
efdb0237 630 unit_release_cgroup(u);
72673e86 631
d3070fbd
LP
632 if (!MANAGER_IS_RELOADING(u->manager))
633 unit_unlink_state_files(u);
634
00d9ef85
LP
635 unit_unref_uid_gid(u, false);
636
5269eb6b 637 (void) manager_update_failed_units(u->manager, u, false);
db785129 638 set_remove(u->manager->startup_units, u);
f755e3b7 639
a911bb9a
LP
640 unit_unwatch_all_pids(u);
641
702a2d8f 642 unit_ref_unset(&u->slice);
7f7d01ed
ZJS
643 while (u->refs_by_target)
644 unit_ref_unset(u->refs_by_target);
57020a3a 645
ac155bb8 646 if (u->type != _UNIT_TYPE_INVALID)
71fda00f 647 LIST_REMOVE(units_by_type, u->manager->units_by_type[u->type], u);
ef734fd6 648
ac155bb8 649 if (u->in_load_queue)
71fda00f 650 LIST_REMOVE(load_queue, u->manager->load_queue, u);
87f0e418 651
ac155bb8 652 if (u->in_dbus_queue)
71fda00f 653 LIST_REMOVE(dbus_queue, u->manager->dbus_unit_queue, u);
c1e1601e 654
a2d72e26 655 if (u->in_gc_queue)
c5a97ed1 656 LIST_REMOVE(gc_queue, u->manager->gc_unit_queue, u);
701cc384 657
91a6073e
LP
658 if (u->in_cgroup_realize_queue)
659 LIST_REMOVE(cgroup_realize_queue, u->manager->cgroup_realize_queue, u);
87f0e418 660
09e24654
LP
661 if (u->in_cgroup_empty_queue)
662 LIST_REMOVE(cgroup_empty_queue, u->manager->cgroup_empty_queue, u);
663
1bdf2790
ZJS
664 if (u->in_cleanup_queue)
665 LIST_REMOVE(cleanup_queue, u->manager->cleanup_queue, u);
adefcf28 666
19496554
MS
667 if (u->in_target_deps_queue)
668 LIST_REMOVE(target_deps_queue, u->manager->target_deps_queue, u);
669
a3c1168a
LP
670 if (u->in_stop_when_unneeded_queue)
671 LIST_REMOVE(stop_when_unneeded_queue, u->manager->stop_when_unneeded_queue, u);
672
6a48d82f
DM
673 safe_close(u->ip_accounting_ingress_map_fd);
674 safe_close(u->ip_accounting_egress_map_fd);
72673e86 675
6a48d82f
DM
676 safe_close(u->ipv4_allow_map_fd);
677 safe_close(u->ipv6_allow_map_fd);
678 safe_close(u->ipv4_deny_map_fd);
679 safe_close(u->ipv6_deny_map_fd);
d3070fbd 680
6a48d82f 681 bpf_program_unref(u->ip_bpf_ingress);
aa2b6f1d 682 bpf_program_unref(u->ip_bpf_ingress_installed);
6a48d82f 683 bpf_program_unref(u->ip_bpf_egress);
aa2b6f1d 684 bpf_program_unref(u->ip_bpf_egress_installed);
00d9ef85 685
fab34748
KL
686 set_free(u->ip_bpf_custom_ingress);
687 set_free(u->ip_bpf_custom_egress);
688 set_free(u->ip_bpf_custom_ingress_installed);
689 set_free(u->ip_bpf_custom_egress_installed);
690
084c7007
RG
691 bpf_program_unref(u->bpf_device_control_installed);
692
a946fa9b
ZJS
693 condition_free_list(u->conditions);
694 condition_free_list(u->asserts);
f755e3b7 695
ac155bb8 696 free(u->description);
49dbfa7b 697 strv_free(u->documentation);
ac155bb8 698 free(u->fragment_path);
1b64d026 699 free(u->source_path);
ae7a7182 700 strv_free(u->dropin_paths);
ac155bb8 701 free(u->instance);
87f0e418 702
f189ab18
LP
703 free(u->job_timeout_reboot_arg);
704
ac155bb8 705 set_free_free(u->names);
87f0e418 706
6bf0f408
LP
707 free(u->reboot_arg);
708
87f0e418
LP
709 free(u);
710}
711
712UnitActiveState unit_active_state(Unit *u) {
713 assert(u);
714
ac155bb8 715 if (u->load_state == UNIT_MERGED)
6124958c
LP
716 return unit_active_state(unit_follow_merge(u));
717
718 /* After a reload it might happen that a unit is not correctly
719 * loaded but still has a process around. That's why we won't
fdf20a31 720 * shortcut failed loading to UNIT_INACTIVE_FAILED. */
87f0e418
LP
721
722 return UNIT_VTABLE(u)->active_state(u);
723}
724
10a94420
LP
725const char* unit_sub_state_to_string(Unit *u) {
726 assert(u);
727
728 return UNIT_VTABLE(u)->sub_state_to_string(u);
729}
730
eef85c4a
LP
731static int set_complete_move(Set **s, Set **other) {
732 assert(s);
733 assert(other);
734
735 if (!other)
736 return 0;
737
738 if (*s)
739 return set_move(*s, *other);
ae2a15bc
LP
740 else
741 *s = TAKE_PTR(*other);
7c0b05e5 742
eef85c4a
LP
743 return 0;
744}
745
746static int hashmap_complete_move(Hashmap **s, Hashmap **other) {
23a177ef
LP
747 assert(s);
748 assert(other);
87f0e418 749
23a177ef 750 if (!*other)
7c0b05e5 751 return 0;
87f0e418 752
eef85c4a
LP
753 if (*s)
754 return hashmap_move(*s, *other);
ae2a15bc
LP
755 else
756 *s = TAKE_PTR(*other);
7c0b05e5
MS
757
758 return 0;
23a177ef 759}
87f0e418 760
7c0b05e5 761static int merge_names(Unit *u, Unit *other) {
23a177ef
LP
762 char *t;
763 Iterator i;
7c0b05e5 764 int r;
87f0e418 765
23a177ef
LP
766 assert(u);
767 assert(other);
768
eef85c4a 769 r = set_complete_move(&u->names, &other->names);
7c0b05e5
MS
770 if (r < 0)
771 return r;
23a177ef 772
ac155bb8
MS
773 set_free_free(other->names);
774 other->names = NULL;
775 other->id = NULL;
23a177ef 776
ac155bb8
MS
777 SET_FOREACH(t, u->names, i)
778 assert_se(hashmap_replace(u->manager->units, t, u) == 0);
7c0b05e5
MS
779
780 return 0;
87f0e418
LP
781}
782
09a65f92
MS
783static int reserve_dependencies(Unit *u, Unit *other, UnitDependency d) {
784 unsigned n_reserve;
785
786 assert(u);
787 assert(other);
788 assert(d < _UNIT_DEPENDENCY_MAX);
789
790 /*
791 * If u does not have this dependency set allocated, there is no need
f131770b 792 * to reserve anything. In that case other's set will be transferred
09a65f92
MS
793 * as a whole to u by complete_move().
794 */
795 if (!u->dependencies[d])
796 return 0;
797
798 /* merge_dependencies() will skip a u-on-u dependency */
eef85c4a 799 n_reserve = hashmap_size(other->dependencies[d]) - !!hashmap_get(other->dependencies[d], u);
09a65f92 800
eef85c4a 801 return hashmap_reserve(u->dependencies[d], n_reserve);
09a65f92
MS
802}
803
d1fab3fe 804static void merge_dependencies(Unit *u, Unit *other, const char *other_id, UnitDependency d) {
23a177ef
LP
805 Iterator i;
806 Unit *back;
eef85c4a 807 void *v;
87f0e418 808 int r;
23a177ef 809
eef85c4a
LP
810 /* Merges all dependencies of type 'd' of the unit 'other' into the deps of the unit 'u' */
811
23a177ef
LP
812 assert(u);
813 assert(other);
814 assert(d < _UNIT_DEPENDENCY_MAX);
815
5238e957 816 /* Fix backwards pointers. Let's iterate through all dependent units of the other unit. */
eef85c4a 817 HASHMAP_FOREACH_KEY(v, back, other->dependencies[d], i) {
23a177ef
LP
818 UnitDependency k;
819
eef85c4a
LP
820 /* Let's now iterate through the dependencies of that dependencies of the other units, looking for
821 * pointers back, and let's fix them up, to instead point to 'u'. */
822
e48614c4 823 for (k = 0; k < _UNIT_DEPENDENCY_MAX; k++) {
e66047ff 824 if (back == u) {
eef85c4a
LP
825 /* Do not add dependencies between u and itself. */
826 if (hashmap_remove(back->dependencies[k], other))
f2341e0a 827 maybe_warn_about_dependency(u, other_id, k);
e66047ff 828 } else {
eef85c4a
LP
829 UnitDependencyInfo di_u, di_other, di_merged;
830
831 /* Let's drop this dependency between "back" and "other", and let's create it between
832 * "back" and "u" instead. Let's merge the bit masks of the dependency we are moving,
833 * and any such dependency which might already exist */
834
835 di_other.data = hashmap_get(back->dependencies[k], other);
836 if (!di_other.data)
837 continue; /* dependency isn't set, let's try the next one */
838
839 di_u.data = hashmap_get(back->dependencies[k], u);
840
841 di_merged = (UnitDependencyInfo) {
842 .origin_mask = di_u.origin_mask | di_other.origin_mask,
843 .destination_mask = di_u.destination_mask | di_other.destination_mask,
844 };
845
846 r = hashmap_remove_and_replace(back->dependencies[k], other, u, di_merged.data);
847 if (r < 0)
848 log_warning_errno(r, "Failed to remove/replace: back=%s other=%s u=%s: %m", back->id, other_id, u->id);
849 assert(r >= 0);
850
851 /* assert_se(hashmap_remove_and_replace(back->dependencies[k], other, u, di_merged.data) >= 0); */
e66047ff 852 }
e48614c4 853 }
eef85c4a 854
23a177ef
LP
855 }
856
e66047ff 857 /* Also do not move dependencies on u to itself */
eef85c4a 858 back = hashmap_remove(other->dependencies[d], u);
d1fab3fe 859 if (back)
f2341e0a 860 maybe_warn_about_dependency(u, other_id, d);
e66047ff 861
7c0b05e5 862 /* The move cannot fail. The caller must have performed a reservation. */
eef85c4a 863 assert_se(hashmap_complete_move(&u->dependencies[d], &other->dependencies[d]) == 0);
23a177ef 864
eef85c4a 865 other->dependencies[d] = hashmap_free(other->dependencies[d]);
23a177ef
LP
866}
867
868int unit_merge(Unit *u, Unit *other) {
87f0e418 869 UnitDependency d;
d1fab3fe 870 const char *other_id = NULL;
09a65f92 871 int r;
87f0e418
LP
872
873 assert(u);
874 assert(other);
ac155bb8
MS
875 assert(u->manager == other->manager);
876 assert(u->type != _UNIT_TYPE_INVALID);
87f0e418 877
cc916967
LP
878 other = unit_follow_merge(other);
879
23a177ef
LP
880 if (other == u)
881 return 0;
882
ac155bb8 883 if (u->type != other->type)
9e2f7c11
LP
884 return -EINVAL;
885
ac155bb8 886 if (!u->instance != !other->instance)
87f0e418
LP
887 return -EINVAL;
888
8a993b61 889 if (!unit_type_may_alias(u->type)) /* Merging only applies to unit names that support aliases */
934e749e
LP
890 return -EEXIST;
891
ec2ce0c5 892 if (!IN_SET(other->load_state, UNIT_STUB, UNIT_NOT_FOUND))
23a177ef 893 return -EEXIST;
87f0e418 894
ac155bb8 895 if (other->job)
819e213f
LP
896 return -EEXIST;
897
e0209d83
MS
898 if (other->nop_job)
899 return -EEXIST;
900
fdf20a31 901 if (!UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(other)))
819e213f
LP
902 return -EEXIST;
903
d1fab3fe
ZJS
904 if (other->id)
905 other_id = strdupa(other->id);
906
09a65f92
MS
907 /* Make reservations to ensure merge_dependencies() won't fail */
908 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++) {
909 r = reserve_dependencies(u, other, d);
910 /*
911 * We don't rollback reservations if we fail. We don't have
912 * a way to undo reservations. A reservation is not a leak.
913 */
914 if (r < 0)
915 return r;
916 }
917
87f0e418 918 /* Merge names */
7c0b05e5
MS
919 r = merge_names(u, other);
920 if (r < 0)
921 return r;
87f0e418 922
57020a3a 923 /* Redirect all references */
7f7d01ed
ZJS
924 while (other->refs_by_target)
925 unit_ref_set(other->refs_by_target, other->refs_by_target->source, u);
57020a3a 926
87f0e418
LP
927 /* Merge dependencies */
928 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
d1fab3fe 929 merge_dependencies(u, other, other_id, d);
87f0e418 930
ac155bb8
MS
931 other->load_state = UNIT_MERGED;
932 other->merged_into = u;
23a177ef 933
3616a49c
LP
934 /* If there is still some data attached to the other node, we
935 * don't need it anymore, and can free it. */
ac155bb8 936 if (other->load_state != UNIT_STUB)
3616a49c
LP
937 if (UNIT_VTABLE(other)->done)
938 UNIT_VTABLE(other)->done(other);
939
940 unit_add_to_dbus_queue(u);
23a177ef
LP
941 unit_add_to_cleanup_queue(other);
942
943 return 0;
944}
945
946int unit_merge_by_name(Unit *u, const char *name) {
934e749e 947 _cleanup_free_ char *s = NULL;
23a177ef 948 Unit *other;
9e2f7c11 949 int r;
23a177ef
LP
950
951 assert(u);
952 assert(name);
953
7410616c 954 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
ac155bb8 955 if (!u->instance)
9e2f7c11
LP
956 return -EINVAL;
957
7410616c
LP
958 r = unit_name_replace_instance(name, u->instance, &s);
959 if (r < 0)
960 return r;
9e2f7c11
LP
961
962 name = s;
963 }
964
c2756a68 965 other = manager_get_unit(u->manager, name);
7410616c
LP
966 if (other)
967 return unit_merge(u, other);
23a177ef 968
7410616c 969 return unit_add_name(u, name);
23a177ef
LP
970}
971
972Unit* unit_follow_merge(Unit *u) {
973 assert(u);
974
ac155bb8
MS
975 while (u->load_state == UNIT_MERGED)
976 assert_se(u = u->merged_into);
23a177ef
LP
977
978 return u;
979}
980
981int unit_add_exec_dependencies(Unit *u, ExecContext *c) {
ada5e276
YW
982 ExecDirectoryType dt;
983 char **dp;
23a177ef
LP
984 int r;
985
986 assert(u);
987 assert(c);
988
e1e74614 989 if (c->working_directory && !c->working_directory_missing_ok) {
eef85c4a 990 r = unit_require_mounts_for(u, c->working_directory, UNIT_DEPENDENCY_FILE);
36be24c8
ZJS
991 if (r < 0)
992 return r;
993 }
994
995 if (c->root_directory) {
eef85c4a 996 r = unit_require_mounts_for(u, c->root_directory, UNIT_DEPENDENCY_FILE);
36be24c8
ZJS
997 if (r < 0)
998 return r;
999 }
1000
915e6d16 1001 if (c->root_image) {
eef85c4a 1002 r = unit_require_mounts_for(u, c->root_image, UNIT_DEPENDENCY_FILE);
915e6d16
LP
1003 if (r < 0)
1004 return r;
1005 }
1006
72fd1768 1007 for (dt = 0; dt < _EXEC_DIRECTORY_TYPE_MAX; dt++) {
ada5e276
YW
1008 if (!u->manager->prefix[dt])
1009 continue;
1010
1011 STRV_FOREACH(dp, c->directories[dt].paths) {
1012 _cleanup_free_ char *p;
1013
657ee2d8 1014 p = path_join(u->manager->prefix[dt], *dp);
ada5e276
YW
1015 if (!p)
1016 return -ENOMEM;
1017
eef85c4a 1018 r = unit_require_mounts_for(u, p, UNIT_DEPENDENCY_FILE);
ada5e276
YW
1019 if (r < 0)
1020 return r;
1021 }
1022 }
1023
463d0d15 1024 if (!MANAGER_IS_SYSTEM(u->manager))
b46a529c
LP
1025 return 0;
1026
1027 if (c->private_tmp) {
d71f0505
LP
1028 const char *p;
1029
1030 FOREACH_STRING(p, "/tmp", "/var/tmp") {
eef85c4a 1031 r = unit_require_mounts_for(u, p, UNIT_DEPENDENCY_FILE);
d71f0505
LP
1032 if (r < 0)
1033 return r;
1034 }
b46a529c 1035
35d8c19a 1036 r = unit_add_dependency_by_name(u, UNIT_AFTER, SPECIAL_TMPFILES_SETUP_SERVICE, true, UNIT_DEPENDENCY_FILE);
b46a529c
LP
1037 if (r < 0)
1038 return r;
1039 }
1040
52c239d7
LB
1041 if (!IN_SET(c->std_output,
1042 EXEC_OUTPUT_JOURNAL, EXEC_OUTPUT_JOURNAL_AND_CONSOLE,
1043 EXEC_OUTPUT_KMSG, EXEC_OUTPUT_KMSG_AND_CONSOLE,
1044 EXEC_OUTPUT_SYSLOG, EXEC_OUTPUT_SYSLOG_AND_CONSOLE) &&
1045 !IN_SET(c->std_error,
1046 EXEC_OUTPUT_JOURNAL, EXEC_OUTPUT_JOURNAL_AND_CONSOLE,
1047 EXEC_OUTPUT_KMSG, EXEC_OUTPUT_KMSG_AND_CONSOLE,
1048 EXEC_OUTPUT_SYSLOG, EXEC_OUTPUT_SYSLOG_AND_CONSOLE))
23a177ef
LP
1049 return 0;
1050
1051 /* If syslog or kernel logging is requested, make sure our own
1052 * logging daemon is run first. */
1053
35d8c19a 1054 r = unit_add_dependency_by_name(u, UNIT_AFTER, SPECIAL_JOURNALD_SOCKET, true, UNIT_DEPENDENCY_FILE);
b46a529c
LP
1055 if (r < 0)
1056 return r;
23a177ef 1057
87f0e418
LP
1058 return 0;
1059}
1060
87f0e418
LP
1061const char *unit_description(Unit *u) {
1062 assert(u);
1063
ac155bb8
MS
1064 if (u->description)
1065 return u->description;
87f0e418 1066
ac155bb8 1067 return strna(u->id);
87f0e418
LP
1068}
1069
2a8f53c6
ZJS
1070const char *unit_status_string(Unit *u) {
1071 assert(u);
1072
1073 if (u->manager->status_unit_format == STATUS_UNIT_FORMAT_NAME && u->id)
1074 return u->id;
1075
1076 return unit_description(u);
1077}
1078
eef85c4a
LP
1079static void print_unit_dependency_mask(FILE *f, const char *kind, UnitDependencyMask mask, bool *space) {
1080 const struct {
1081 UnitDependencyMask mask;
1082 const char *name;
1083 } table[] = {
1084 { UNIT_DEPENDENCY_FILE, "file" },
1085 { UNIT_DEPENDENCY_IMPLICIT, "implicit" },
1086 { UNIT_DEPENDENCY_DEFAULT, "default" },
1087 { UNIT_DEPENDENCY_UDEV, "udev" },
1088 { UNIT_DEPENDENCY_PATH, "path" },
1089 { UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT, "mountinfo-implicit" },
1090 { UNIT_DEPENDENCY_MOUNTINFO_DEFAULT, "mountinfo-default" },
1091 { UNIT_DEPENDENCY_PROC_SWAP, "proc-swap" },
1092 };
1093 size_t i;
1094
1095 assert(f);
1096 assert(kind);
1097 assert(space);
1098
1099 for (i = 0; i < ELEMENTSOF(table); i++) {
1100
1101 if (mask == 0)
1102 break;
1103
d94a24ca 1104 if (FLAGS_SET(mask, table[i].mask)) {
eef85c4a
LP
1105 if (*space)
1106 fputc(' ', f);
1107 else
1108 *space = true;
1109
1110 fputs(kind, f);
1111 fputs("-", f);
1112 fputs(table[i].name, f);
1113
1114 mask &= ~table[i].mask;
1115 }
1116 }
1117
1118 assert(mask == 0);
1119}
1120
87f0e418 1121void unit_dump(Unit *u, FILE *f, const char *prefix) {
49dbfa7b 1122 char *t, **j;
87f0e418
LP
1123 UnitDependency d;
1124 Iterator i;
47be870b 1125 const char *prefix2;
173e3821 1126 char
a483fb59 1127 timestamp0[FORMAT_TIMESTAMP_MAX],
173e3821
LP
1128 timestamp1[FORMAT_TIMESTAMP_MAX],
1129 timestamp2[FORMAT_TIMESTAMP_MAX],
1130 timestamp3[FORMAT_TIMESTAMP_MAX],
faf919f1
LP
1131 timestamp4[FORMAT_TIMESTAMP_MAX],
1132 timespan[FORMAT_TIMESPAN_MAX];
a7f241db 1133 Unit *following;
eeaedb7c 1134 _cleanup_set_free_ Set *following_set = NULL;
05a98afd 1135 const char *n;
02638280
LP
1136 CGroupMask m;
1137 int r;
87f0e418
LP
1138
1139 assert(u);
ac155bb8 1140 assert(u->type >= 0);
87f0e418 1141
4c940960 1142 prefix = strempty(prefix);
63c372cb 1143 prefix2 = strjoina(prefix, "\t");
87f0e418
LP
1144
1145 fprintf(f,
40d50879 1146 "%s-> Unit %s:\n"
87f0e418 1147 "%s\tDescription: %s\n"
9e2f7c11 1148 "%s\tInstance: %s\n"
87f0e418 1149 "%s\tUnit Load State: %s\n"
2fad8195 1150 "%s\tUnit Active State: %s\n"
b895d155 1151 "%s\tState Change Timestamp: %s\n"
173e3821 1152 "%s\tInactive Exit Timestamp: %s\n"
2fad8195 1153 "%s\tActive Enter Timestamp: %s\n"
701cc384 1154 "%s\tActive Exit Timestamp: %s\n"
173e3821 1155 "%s\tInactive Enter Timestamp: %s\n"
f2f725e5 1156 "%s\tMay GC: %s\n"
9444b1f2 1157 "%s\tNeed Daemon Reload: %s\n"
c2756a68 1158 "%s\tTransient: %s\n"
f5869324 1159 "%s\tPerpetual: %s\n"
5afe510c 1160 "%s\tGarbage Collection Mode: %s\n"
4ad49000
LP
1161 "%s\tSlice: %s\n"
1162 "%s\tCGroup: %s\n"
aae7e17f 1163 "%s\tCGroup realized: %s\n",
ac155bb8 1164 prefix, u->id,
87f0e418 1165 prefix, unit_description(u),
ac155bb8
MS
1166 prefix, strna(u->instance),
1167 prefix, unit_load_state_to_string(u->load_state),
2fad8195 1168 prefix, unit_active_state_to_string(unit_active_state(u)),
a483fb59 1169 prefix, strna(format_timestamp(timestamp0, sizeof(timestamp0), u->state_change_timestamp.realtime)),
ac155bb8
MS
1170 prefix, strna(format_timestamp(timestamp1, sizeof(timestamp1), u->inactive_exit_timestamp.realtime)),
1171 prefix, strna(format_timestamp(timestamp2, sizeof(timestamp2), u->active_enter_timestamp.realtime)),
1172 prefix, strna(format_timestamp(timestamp3, sizeof(timestamp3), u->active_exit_timestamp.realtime)),
1173 prefix, strna(format_timestamp(timestamp4, sizeof(timestamp4), u->inactive_enter_timestamp.realtime)),
f2f725e5 1174 prefix, yes_no(unit_may_gc(u)),
9444b1f2 1175 prefix, yes_no(unit_need_daemon_reload(u)),
c2756a68 1176 prefix, yes_no(u->transient),
f5869324 1177 prefix, yes_no(u->perpetual),
5afe510c 1178 prefix, collect_mode_to_string(u->collect_mode),
4ad49000
LP
1179 prefix, strna(unit_slice_name(u)),
1180 prefix, strna(u->cgroup_path),
aae7e17f
FB
1181 prefix, yes_no(u->cgroup_realized));
1182
1183 if (u->cgroup_realized_mask != 0) {
1184 _cleanup_free_ char *s = NULL;
1185 (void) cg_mask_to_string(u->cgroup_realized_mask, &s);
02638280
LP
1186 fprintf(f, "%s\tCGroup realized mask: %s\n", prefix, strnull(s));
1187 }
0adf88b6 1188
02638280
LP
1189 if (u->cgroup_enabled_mask != 0) {
1190 _cleanup_free_ char *s = NULL;
1191 (void) cg_mask_to_string(u->cgroup_enabled_mask, &s);
1192 fprintf(f, "%s\tCGroup enabled mask: %s\n", prefix, strnull(s));
1193 }
0adf88b6 1194
02638280
LP
1195 m = unit_get_own_mask(u);
1196 if (m != 0) {
1197 _cleanup_free_ char *s = NULL;
1198 (void) cg_mask_to_string(m, &s);
1199 fprintf(f, "%s\tCGroup own mask: %s\n", prefix, strnull(s));
aae7e17f 1200 }
0adf88b6 1201
02638280
LP
1202 m = unit_get_members_mask(u);
1203 if (m != 0) {
aae7e17f 1204 _cleanup_free_ char *s = NULL;
02638280 1205 (void) cg_mask_to_string(m, &s);
aae7e17f
FB
1206 fprintf(f, "%s\tCGroup members mask: %s\n", prefix, strnull(s));
1207 }
0301abf4 1208
0adf88b6
LP
1209 m = unit_get_delegate_mask(u);
1210 if (m != 0) {
1211 _cleanup_free_ char *s = NULL;
1212 (void) cg_mask_to_string(m, &s);
1213 fprintf(f, "%s\tCGroup delegate mask: %s\n", prefix, strnull(s));
1214 }
1215
ac155bb8 1216 SET_FOREACH(t, u->names, i)
87f0e418
LP
1217 fprintf(f, "%s\tName: %s\n", prefix, t);
1218
4b58153d
LP
1219 if (!sd_id128_is_null(u->invocation_id))
1220 fprintf(f, "%s\tInvocation ID: " SD_ID128_FORMAT_STR "\n",
1221 prefix, SD_ID128_FORMAT_VAL(u->invocation_id));
1222
49dbfa7b
LP
1223 STRV_FOREACH(j, u->documentation)
1224 fprintf(f, "%s\tDocumentation: %s\n", prefix, *j);
1225
eeaedb7c
LP
1226 following = unit_following(u);
1227 if (following)
ac155bb8 1228 fprintf(f, "%s\tFollowing: %s\n", prefix, following->id);
8fe914ec 1229
eeaedb7c
LP
1230 r = unit_following_set(u, &following_set);
1231 if (r >= 0) {
1232 Unit *other;
1233
1234 SET_FOREACH(other, following_set, i)
1235 fprintf(f, "%s\tFollowing Set Member: %s\n", prefix, other->id);
1236 }
1237
ac155bb8
MS
1238 if (u->fragment_path)
1239 fprintf(f, "%s\tFragment Path: %s\n", prefix, u->fragment_path);
23a177ef 1240
1b64d026
LP
1241 if (u->source_path)
1242 fprintf(f, "%s\tSource Path: %s\n", prefix, u->source_path);
1243
ae7a7182 1244 STRV_FOREACH(j, u->dropin_paths)
2875e22b 1245 fprintf(f, "%s\tDropIn Path: %s\n", prefix, *j);
ae7a7182 1246
e7dfbb4e
LP
1247 if (u->failure_action != EMERGENCY_ACTION_NONE)
1248 fprintf(f, "%s\tFailure Action: %s\n", prefix, emergency_action_to_string(u->failure_action));
7af67e9a
LP
1249 if (u->failure_action_exit_status >= 0)
1250 fprintf(f, "%s\tFailure Action Exit Status: %i\n", prefix, u->failure_action_exit_status);
e7dfbb4e
LP
1251 if (u->success_action != EMERGENCY_ACTION_NONE)
1252 fprintf(f, "%s\tSuccess Action: %s\n", prefix, emergency_action_to_string(u->success_action));
7af67e9a
LP
1253 if (u->success_action_exit_status >= 0)
1254 fprintf(f, "%s\tSuccess Action Exit Status: %i\n", prefix, u->success_action_exit_status);
e7dfbb4e 1255
36c16a7c 1256 if (u->job_timeout != USEC_INFINITY)
2fa4092c 1257 fprintf(f, "%s\tJob Timeout: %s\n", prefix, format_timespan(timespan, sizeof(timespan), u->job_timeout, 0));
faf919f1 1258
87a47f99
LN
1259 if (u->job_timeout_action != EMERGENCY_ACTION_NONE)
1260 fprintf(f, "%s\tJob Timeout Action: %s\n", prefix, emergency_action_to_string(u->job_timeout_action));
f189ab18
LP
1261
1262 if (u->job_timeout_reboot_arg)
1263 fprintf(f, "%s\tJob Timeout Reboot Argument: %s\n", prefix, u->job_timeout_reboot_arg);
1264
59fccdc5
LP
1265 condition_dump_list(u->conditions, f, prefix, condition_type_to_string);
1266 condition_dump_list(u->asserts, f, prefix, assert_type_to_string);
52661efd 1267
ac155bb8 1268 if (dual_timestamp_is_set(&u->condition_timestamp))
2791a8f8
LP
1269 fprintf(f,
1270 "%s\tCondition Timestamp: %s\n"
1271 "%s\tCondition Result: %s\n",
ac155bb8
MS
1272 prefix, strna(format_timestamp(timestamp1, sizeof(timestamp1), u->condition_timestamp.realtime)),
1273 prefix, yes_no(u->condition_result));
2791a8f8 1274
59fccdc5
LP
1275 if (dual_timestamp_is_set(&u->assert_timestamp))
1276 fprintf(f,
1277 "%s\tAssert Timestamp: %s\n"
1278 "%s\tAssert Result: %s\n",
1279 prefix, strna(format_timestamp(timestamp1, sizeof(timestamp1), u->assert_timestamp.realtime)),
1280 prefix, yes_no(u->assert_result));
1281
87f0e418 1282 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++) {
eef85c4a 1283 UnitDependencyInfo di;
87f0e418
LP
1284 Unit *other;
1285
eef85c4a
LP
1286 HASHMAP_FOREACH_KEY(di.data, other, u->dependencies[d], i) {
1287 bool space = false;
1288
1289 fprintf(f, "%s\t%s: %s (", prefix, unit_dependency_to_string(d), other->id);
1290
1291 print_unit_dependency_mask(f, "origin", di.origin_mask, &space);
1292 print_unit_dependency_mask(f, "destination", di.destination_mask, &space);
1293
1294 fputs(")\n", f);
1295 }
87f0e418
LP
1296 }
1297
eef85c4a
LP
1298 if (!hashmap_isempty(u->requires_mounts_for)) {
1299 UnitDependencyInfo di;
1300 const char *path;
1301
1302 HASHMAP_FOREACH_KEY(di.data, path, u->requires_mounts_for, i) {
1303 bool space = false;
7c8fa05c 1304
eef85c4a 1305 fprintf(f, "%s\tRequiresMountsFor: %s (", prefix, path);
7c8fa05c 1306
eef85c4a
LP
1307 print_unit_dependency_mask(f, "origin", di.origin_mask, &space);
1308 print_unit_dependency_mask(f, "destination", di.destination_mask, &space);
1309
1310 fputs(")\n", f);
1311 }
7c8fa05c
LP
1312 }
1313
ac155bb8 1314 if (u->load_state == UNIT_LOADED) {
ab1f0633 1315
b0650475 1316 fprintf(f,
a40eb732 1317 "%s\tStopWhenUnneeded: %s\n"
b5e9dba8
LP
1318 "%s\tRefuseManualStart: %s\n"
1319 "%s\tRefuseManualStop: %s\n"
222ae6a8 1320 "%s\tDefaultDependencies: %s\n"
d420282b 1321 "%s\tOnFailureJobMode: %s\n"
36b4a7ba 1322 "%s\tIgnoreOnIsolate: %s\n",
ac155bb8
MS
1323 prefix, yes_no(u->stop_when_unneeded),
1324 prefix, yes_no(u->refuse_manual_start),
1325 prefix, yes_no(u->refuse_manual_stop),
1326 prefix, yes_no(u->default_dependencies),
d420282b 1327 prefix, job_mode_to_string(u->on_failure_job_mode),
36b4a7ba 1328 prefix, yes_no(u->ignore_on_isolate));
ac155bb8 1329
23a177ef
LP
1330 if (UNIT_VTABLE(u)->dump)
1331 UNIT_VTABLE(u)->dump(u, f, prefix2);
b0650475 1332
ac155bb8 1333 } else if (u->load_state == UNIT_MERGED)
b0650475
LP
1334 fprintf(f,
1335 "%s\tMerged into: %s\n",
ac155bb8
MS
1336 prefix, u->merged_into->id);
1337 else if (u->load_state == UNIT_ERROR)
4bbccb02 1338 fprintf(f, "%s\tLoad Error Code: %s\n", prefix, strerror_safe(u->load_error));
8821a00f 1339
05a98afd
LP
1340 for (n = sd_bus_track_first(u->bus_track); n; n = sd_bus_track_next(u->bus_track))
1341 fprintf(f, "%s\tBus Ref: %s\n", prefix, n);
87f0e418 1342
ac155bb8
MS
1343 if (u->job)
1344 job_dump(u->job, f, prefix2);
87f0e418 1345
e0209d83
MS
1346 if (u->nop_job)
1347 job_dump(u->nop_job, f, prefix2);
87f0e418
LP
1348}
1349
1350/* Common implementation for multiple backends */
e537352b 1351int unit_load_fragment_and_dropin(Unit *u) {
23a177ef
LP
1352 int r;
1353
1354 assert(u);
23a177ef 1355
e48614c4 1356 /* Load a .{service,socket,...} file */
4ad49000
LP
1357 r = unit_load_fragment(u);
1358 if (r < 0)
23a177ef
LP
1359 return r;
1360
ac155bb8 1361 if (u->load_state == UNIT_STUB)
23a177ef
LP
1362 return -ENOENT;
1363
9e4ea9cc
ZJS
1364 /* Load drop-in directory data. If u is an alias, we might be reloading the
1365 * target unit needlessly. But we cannot be sure which drops-ins have already
1366 * been loaded and which not, at least without doing complicated book-keeping,
1367 * so let's always reread all drop-ins. */
1368 return unit_load_dropin(unit_follow_merge(u));
23a177ef
LP
1369}
1370
1371/* Common implementation for multiple backends */
e537352b 1372int unit_load_fragment_and_dropin_optional(Unit *u) {
23a177ef 1373 int r;
87f0e418
LP
1374
1375 assert(u);
1376
23a177ef
LP
1377 /* Same as unit_load_fragment_and_dropin(), but whether
1378 * something can be loaded or not doesn't matter. */
1379
e9e8cbc8 1380 /* Load a .service/.socket/.slice/… file */
4ad49000
LP
1381 r = unit_load_fragment(u);
1382 if (r < 0)
87f0e418
LP
1383 return r;
1384
ac155bb8
MS
1385 if (u->load_state == UNIT_STUB)
1386 u->load_state = UNIT_LOADED;
d46de8a1 1387
9e4ea9cc
ZJS
1388 /* Load drop-in directory data */
1389 return unit_load_dropin(unit_follow_merge(u));
87f0e418
LP
1390}
1391
19496554
MS
1392void unit_add_to_target_deps_queue(Unit *u) {
1393 Manager *m = u->manager;
1394
1395 assert(u);
1396
1397 if (u->in_target_deps_queue)
1398 return;
1399
1400 LIST_PREPEND(target_deps_queue, m->target_deps_queue, u);
1401 u->in_target_deps_queue = true;
1402}
1403
bba34eed 1404int unit_add_default_target_dependency(Unit *u, Unit *target) {
98bc2000
LP
1405 assert(u);
1406 assert(target);
1407
ac155bb8 1408 if (target->type != UNIT_TARGET)
98bc2000
LP
1409 return 0;
1410
35b8ca3a 1411 /* Only add the dependency if both units are loaded, so that
bba34eed 1412 * that loop check below is reliable */
ac155bb8
MS
1413 if (u->load_state != UNIT_LOADED ||
1414 target->load_state != UNIT_LOADED)
bba34eed
LP
1415 return 0;
1416
21256a2b
LP
1417 /* If either side wants no automatic dependencies, then let's
1418 * skip this */
ac155bb8
MS
1419 if (!u->default_dependencies ||
1420 !target->default_dependencies)
21256a2b
LP
1421 return 0;
1422
98bc2000 1423 /* Don't create loops */
eef85c4a 1424 if (hashmap_get(target->dependencies[UNIT_BEFORE], u))
98bc2000
LP
1425 return 0;
1426
eef85c4a 1427 return unit_add_dependency(target, UNIT_AFTER, u, true, UNIT_DEPENDENCY_DEFAULT);
98bc2000
LP
1428}
1429
e954c9cf 1430static int unit_add_slice_dependencies(Unit *u) {
eef85c4a 1431 UnitDependencyMask mask;
e954c9cf 1432 assert(u);
b81884e7 1433
35b7ff80 1434 if (!UNIT_HAS_CGROUP_CONTEXT(u))
e954c9cf
LP
1435 return 0;
1436
eef85c4a
LP
1437 /* Slice units are implicitly ordered against their parent slices (as this relationship is encoded in the
1438 name), while all other units are ordered based on configuration (as in their case Slice= configures the
1439 relationship). */
1440 mask = u->type == UNIT_SLICE ? UNIT_DEPENDENCY_IMPLICIT : UNIT_DEPENDENCY_FILE;
1441
e954c9cf 1442 if (UNIT_ISSET(u->slice))
eef85c4a 1443 return unit_add_two_dependencies(u, UNIT_AFTER, UNIT_REQUIRES, UNIT_DEREF(u->slice), true, mask);
e954c9cf 1444
8c8da0e0 1445 if (unit_has_name(u, SPECIAL_ROOT_SLICE))
d1fab3fe
ZJS
1446 return 0;
1447
5a724170 1448 return unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_REQUIRES, SPECIAL_ROOT_SLICE, true, mask);
98bc2000
LP
1449}
1450
e954c9cf 1451static int unit_add_mount_dependencies(Unit *u) {
eef85c4a
LP
1452 UnitDependencyInfo di;
1453 const char *path;
1454 Iterator i;
9588bc32
LP
1455 int r;
1456
1457 assert(u);
1458
eef85c4a
LP
1459 HASHMAP_FOREACH_KEY(di.data, path, u->requires_mounts_for, i) {
1460 char prefix[strlen(path) + 1];
9588bc32 1461
eef85c4a 1462 PATH_FOREACH_PREFIX_MORE(prefix, path) {
c7c89abb 1463 _cleanup_free_ char *p = NULL;
9588bc32
LP
1464 Unit *m;
1465
c7c89abb 1466 r = unit_name_from_path(prefix, ".mount", &p);
9588bc32
LP
1467 if (r < 0)
1468 return r;
c7c89abb
FB
1469
1470 m = manager_get_unit(u->manager, p);
1471 if (!m) {
1472 /* Make sure to load the mount unit if
1473 * it exists. If so the dependencies
1474 * on this unit will be added later
1475 * during the loading of the mount
1476 * unit. */
1477 (void) manager_load_unit_prepare(u->manager, p, NULL, NULL, &m);
9588bc32 1478 continue;
c7c89abb 1479 }
9588bc32
LP
1480 if (m == u)
1481 continue;
1482
1483 if (m->load_state != UNIT_LOADED)
1484 continue;
1485
eef85c4a 1486 r = unit_add_dependency(u, UNIT_AFTER, m, true, di.origin_mask);
9588bc32
LP
1487 if (r < 0)
1488 return r;
1489
1490 if (m->fragment_path) {
eef85c4a 1491 r = unit_add_dependency(u, UNIT_REQUIRES, m, true, di.origin_mask);
9588bc32
LP
1492 if (r < 0)
1493 return r;
1494 }
1495 }
1496 }
1497
1498 return 0;
1499}
1500
95ae05c0
WC
1501static int unit_add_startup_units(Unit *u) {
1502 CGroupContext *c;
5269eb6b 1503 int r;
95ae05c0
WC
1504
1505 c = unit_get_cgroup_context(u);
db785129
LP
1506 if (!c)
1507 return 0;
1508
d53d9474 1509 if (c->startup_cpu_shares == CGROUP_CPU_SHARES_INVALID &&
13c31542 1510 c->startup_io_weight == CGROUP_WEIGHT_INVALID &&
d53d9474 1511 c->startup_blockio_weight == CGROUP_BLKIO_WEIGHT_INVALID)
db785129
LP
1512 return 0;
1513
5269eb6b
LP
1514 r = set_ensure_allocated(&u->manager->startup_units, NULL);
1515 if (r < 0)
1516 return r;
1517
756c09e6 1518 return set_put(u->manager->startup_units, u);
95ae05c0
WC
1519}
1520
87f0e418
LP
1521int unit_load(Unit *u) {
1522 int r;
1523
1524 assert(u);
1525
ac155bb8 1526 if (u->in_load_queue) {
71fda00f 1527 LIST_REMOVE(load_queue, u->manager->load_queue, u);
ac155bb8 1528 u->in_load_queue = false;
87f0e418
LP
1529 }
1530
ac155bb8 1531 if (u->type == _UNIT_TYPE_INVALID)
e537352b
LP
1532 return -EINVAL;
1533
ac155bb8 1534 if (u->load_state != UNIT_STUB)
87f0e418
LP
1535 return 0;
1536
4f4afc88 1537 if (u->transient_file) {
66fa4bdd
LP
1538 /* Finalize transient file: if this is a transient unit file, as soon as we reach unit_load() the setup
1539 * is complete, hence let's synchronize the unit file we just wrote to disk. */
1540
4f4afc88
LP
1541 r = fflush_and_check(u->transient_file);
1542 if (r < 0)
1543 goto fail;
1544
50fb00b7 1545 u->transient_file = safe_fclose(u->transient_file);
f76707da 1546 u->fragment_mtime = now(CLOCK_REALTIME);
4f4afc88
LP
1547 }
1548
c2756a68
LP
1549 if (UNIT_VTABLE(u)->load) {
1550 r = UNIT_VTABLE(u)->load(u);
1551 if (r < 0)
87f0e418 1552 goto fail;
c2756a68 1553 }
23a177ef 1554
ac155bb8 1555 if (u->load_state == UNIT_STUB) {
23a177ef
LP
1556 r = -ENOENT;
1557 goto fail;
1558 }
1559
7c8fa05c 1560 if (u->load_state == UNIT_LOADED) {
19496554 1561 unit_add_to_target_deps_queue(u);
e954c9cf
LP
1562
1563 r = unit_add_slice_dependencies(u);
1564 if (r < 0)
1565 goto fail;
c2756a68 1566
e954c9cf 1567 r = unit_add_mount_dependencies(u);
7c8fa05c 1568 if (r < 0)
c2756a68 1569 goto fail;
7c8fa05c 1570
95ae05c0
WC
1571 r = unit_add_startup_units(u);
1572 if (r < 0)
1573 goto fail;
1574
eef85c4a 1575 if (u->on_failure_job_mode == JOB_ISOLATE && hashmap_size(u->dependencies[UNIT_ON_FAILURE]) > 1) {
f2341e0a 1576 log_unit_error(u, "More than one OnFailure= dependencies specified but OnFailureJobMode=isolate set. Refusing.");
6f40aa45 1577 r = -ENOEXEC;
c2756a68
LP
1578 goto fail;
1579 }
bc432dc7 1580
a2df3ea4
MK
1581 if (u->job_running_timeout != USEC_INFINITY && u->job_running_timeout > u->job_timeout)
1582 log_unit_warning(u, "JobRunningTimeoutSec= is greater than JobTimeoutSec=, it has no effect.");
1583
5af88058
LP
1584 /* We finished loading, let's ensure our parents recalculate the members mask */
1585 unit_invalidate_cgroup_members_masks(u);
f68319bb
LP
1586 }
1587
ac155bb8 1588 assert((u->load_state != UNIT_MERGED) == !u->merged_into);
23a177ef
LP
1589
1590 unit_add_to_dbus_queue(unit_follow_merge(u));
701cc384 1591 unit_add_to_gc_queue(u);
87f0e418 1592
87f0e418
LP
1593 return 0;
1594
1595fail:
c4555ad8
LP
1596 /* We convert ENOEXEC errors to the UNIT_BAD_SETTING load state here. Configuration parsing code should hence
1597 * return ENOEXEC to ensure units are placed in this state after loading */
1598
1599 u->load_state = u->load_state == UNIT_STUB ? UNIT_NOT_FOUND :
1600 r == -ENOEXEC ? UNIT_BAD_SETTING :
1601 UNIT_ERROR;
ac155bb8 1602 u->load_error = r;
c4555ad8 1603
c1e1601e 1604 unit_add_to_dbus_queue(u);
9a46fc3b 1605 unit_add_to_gc_queue(u);
23a177ef 1606
c4555ad8 1607 return log_unit_debug_errno(u, r, "Failed to load configuration: %m");
87f0e418
LP
1608}
1609
f9f88198
YW
1610_printf_(7, 8)
1611static int log_unit_internal(void *userdata, int level, int error, const char *file, int line, const char *func, const char *format, ...) {
1612 Unit *u = userdata;
1613 va_list ap;
1614 int r;
49365733 1615
f9f88198
YW
1616 va_start(ap, format);
1617 if (u)
1618 r = log_object_internalv(level, error, file, line, func,
1619 u->manager->unit_log_field,
1620 u->id,
1621 u->manager->invocation_log_field,
1622 u->invocation_id_string,
1623 format, ap);
1624 else
1625 r = log_internalv(level, error, file, line, func, format, ap);
1626 va_end(ap);
49365733 1627
f9f88198 1628 return r;
49365733
LP
1629}
1630
97a3f4ee 1631static bool unit_test_condition(Unit *u) {
90bbc946
LP
1632 assert(u);
1633
ac155bb8 1634 dual_timestamp_get(&u->condition_timestamp);
f9f88198 1635 u->condition_result = condition_test_list(u->conditions, condition_type_to_string, log_unit_internal, u);
90bbc946 1636
e18f8852
LP
1637 unit_add_to_dbus_queue(u);
1638
ac155bb8 1639 return u->condition_result;
90bbc946
LP
1640}
1641
97a3f4ee 1642static bool unit_test_assert(Unit *u) {
59fccdc5
LP
1643 assert(u);
1644
1645 dual_timestamp_get(&u->assert_timestamp);
f9f88198 1646 u->assert_result = condition_test_list(u->asserts, assert_type_to_string, log_unit_internal, u);
59fccdc5 1647
e18f8852
LP
1648 unit_add_to_dbus_queue(u);
1649
59fccdc5
LP
1650 return u->assert_result;
1651}
1652
df446f96 1653void unit_status_printf(Unit *u, const char *status, const char *unit_status_msg_format) {
5b262f74
LP
1654 const char *d;
1655
2a8f53c6 1656 d = unit_status_string(u);
5b262f74
LP
1657 if (log_get_show_color())
1658 d = strjoina(ANSI_HIGHLIGHT, d, ANSI_NORMAL);
1659
df446f96 1660 DISABLE_WARNING_FORMAT_NONLITERAL;
5b262f74 1661 manager_status_printf(u->manager, STATUS_TYPE_NORMAL, status, unit_status_msg_format, d);
df446f96
LP
1662 REENABLE_WARNING;
1663}
1664
97a3f4ee 1665int unit_test_start_limit(Unit *u) {
429926e9
TR
1666 const char *reason;
1667
6bf0f408
LP
1668 assert(u);
1669
7994ac1d 1670 if (ratelimit_below(&u->start_limit)) {
6bf0f408
LP
1671 u->start_limit_hit = false;
1672 return 0;
1673 }
1674
1675 log_unit_warning(u, "Start request repeated too quickly.");
1676 u->start_limit_hit = true;
1677
429926e9
TR
1678 reason = strjoina("unit ", u->id, " failed");
1679
36c4dc08
LP
1680 emergency_action(u->manager, u->start_limit_action,
1681 EMERGENCY_ACTION_IS_WATCHDOG|EMERGENCY_ACTION_WARN,
1682 u->reboot_arg, -1, reason);
1683
1684 return -ECANCELED;
6bf0f408
LP
1685}
1686
c891efaf 1687bool unit_shall_confirm_spawn(Unit *u) {
631b676b 1688 assert(u);
c891efaf
FB
1689
1690 if (manager_is_confirm_spawn_disabled(u->manager))
1691 return false;
1692
1693 /* For some reasons units remaining in the same process group
1694 * as PID 1 fail to acquire the console even if it's not used
1695 * by any process. So skip the confirmation question for them. */
1696 return !unit_get_exec_context(u)->same_pgrp;
1697}
1698
631b676b
LP
1699static bool unit_verify_deps(Unit *u) {
1700 Unit *other;
1701 Iterator j;
eef85c4a 1702 void *v;
631b676b
LP
1703
1704 assert(u);
1705
1706 /* Checks whether all BindsTo= dependencies of this unit are fulfilled — if they are also combined with
1707 * After=. We do not check Requires= or Requisite= here as they only should have an effect on the job
1708 * processing, but do not have any effect afterwards. We don't check BindsTo= dependencies that are not used in
1709 * conjunction with After= as for them any such check would make things entirely racy. */
1710
eef85c4a 1711 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_BINDS_TO], j) {
631b676b 1712
eef85c4a 1713 if (!hashmap_contains(u->dependencies[UNIT_AFTER], other))
631b676b
LP
1714 continue;
1715
1716 if (!UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(other))) {
1717 log_unit_notice(u, "Bound to unit %s, but unit isn't active.", other->id);
1718 return false;
1719 }
1720 }
1721
1722 return true;
1723}
1724
9adb6959 1725/* Errors that aren't really errors:
6bf0f408 1726 * -EALREADY: Unit is already started.
9adb6959 1727 * -ECOMM: Condition failed
6bf0f408 1728 * -EAGAIN: An operation is already in progress. Retry later.
9adb6959
LP
1729 *
1730 * Errors that are real errors:
1731 * -EBADR: This unit type does not support starting.
2de9b979 1732 * -ECANCELED: Start limit hit, too many requests for now
6bf0f408
LP
1733 * -EPROTO: Assert failed
1734 * -EINVAL: Unit not loaded
1735 * -EOPNOTSUPP: Unit type not supported
631b676b 1736 * -ENOLINK: The necessary dependencies are not fulfilled.
d4fd1cf2 1737 * -ESTALE: This unit has been started before and can't be started a second time
a4191c9f 1738 * -ENOENT: This is a triggering unit and unit to trigger is not loaded
87f0e418
LP
1739 */
1740int unit_start(Unit *u) {
1741 UnitActiveState state;
92ab323c 1742 Unit *following;
2de9b979 1743 int r;
87f0e418
LP
1744
1745 assert(u);
1746
5766aca8
LP
1747 /* If this is already started, then this will succeed. Note that this will even succeed if this unit
1748 * is not startable by the user. This is relied on to detect when we need to wait for units and when
1749 * waiting is finished. */
87f0e418
LP
1750 state = unit_active_state(u);
1751 if (UNIT_IS_ACTIVE_OR_RELOADING(state))
1752 return -EALREADY;
380dc8b0
LP
1753 if (state == UNIT_MAINTENANCE)
1754 return -EAGAIN;
87f0e418 1755
6bf0f408
LP
1756 /* Units that aren't loaded cannot be started */
1757 if (u->load_state != UNIT_LOADED)
1758 return -EINVAL;
1759
d4fd1cf2
LP
1760 /* Refuse starting scope units more than once */
1761 if (UNIT_VTABLE(u)->once_only && dual_timestamp_is_set(&u->inactive_enter_timestamp))
1762 return -ESTALE;
1763
5766aca8
LP
1764 /* If the conditions failed, don't do anything at all. If we already are activating this call might
1765 * still be useful to speed up activation in case there is some hold-off time, but we don't want to
1766 * recheck the condition in that case. */
a82e5507 1767 if (state != UNIT_ACTIVATING &&
2de9b979
LP
1768 !unit_test_condition(u)) {
1769
1770 /* Let's also check the start limit here. Normally, the start limit is only checked by the
1771 * .start() method of the unit type after it did some additional checks verifying everything
1772 * is in order (so that those other checks can propagate errors properly). However, if a
1773 * condition check doesn't hold we don't get that far but we should still ensure we are not
1774 * called in a tight loop without a rate limit check enforced, hence do the check here. Note
1775 * that ECOMM is generally not a reason for a job to fail, unlike most other errors here,
1776 * hence the chance is big that any triggering unit for us will trigger us again. Note this
1777 * condition check is a bit different from the condition check inside the per-unit .start()
1778 * function, as this one will not change the unit's state in any way (and we shouldn't here,
1779 * after all the condition failed). */
1780
1781 r = unit_test_start_limit(u);
1782 if (r < 0)
1783 return r;
1784
5766aca8 1785 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(ECOMM), "Starting requested but condition failed. Not starting unit.");
2de9b979 1786 }
52661efd 1787
59fccdc5
LP
1788 /* If the asserts failed, fail the entire job */
1789 if (state != UNIT_ACTIVATING &&
5766aca8
LP
1790 !unit_test_assert(u))
1791 return log_unit_notice_errno(u, SYNTHETIC_ERRNO(EPROTO), "Starting requested but asserts failed.");
59fccdc5 1792
5766aca8
LP
1793 /* Units of types that aren't supported cannot be started. Note that we do this test only after the
1794 * condition checks, so that we rather return condition check errors (which are usually not
1795 * considered a true failure) than "not supported" errors (which are considered a failure).
d11a7645
LP
1796 */
1797 if (!unit_supported(u))
1798 return -EOPNOTSUPP;
1799
5766aca8
LP
1800 /* Let's make sure that the deps really are in order before we start this. Normally the job engine
1801 * should have taken care of this already, but let's check this here again. After all, our
1802 * dependencies might not be in effect anymore, due to a reload or due to a failed condition. */
631b676b
LP
1803 if (!unit_verify_deps(u))
1804 return -ENOLINK;
1805
92ab323c 1806 /* Forward to the main object, if we aren't it. */
52990c2e
ZJS
1807 following = unit_following(u);
1808 if (following) {
f2341e0a 1809 log_unit_debug(u, "Redirecting start request from %s to %s.", u->id, following->id);
92ab323c
LP
1810 return unit_start(following);
1811 }
1812
1813 /* If it is stopped, but we cannot start it, then fail */
1814 if (!UNIT_VTABLE(u)->start)
1815 return -EBADR;
1816
5766aca8
LP
1817 /* We don't suppress calls to ->start() here when we are already starting, to allow this request to
1818 * be used as a "hurry up" call, for example when the unit is in some "auto restart" state where it
1819 * waits for a holdoff timer to elapse before it will start again. */
87f0e418 1820
c1e1601e 1821 unit_add_to_dbus_queue(u);
9e58ff9c 1822
d1a34ae9 1823 return UNIT_VTABLE(u)->start(u);
87f0e418
LP
1824}
1825
1826bool unit_can_start(Unit *u) {
1827 assert(u);
1828
8ff4d2ab
LP
1829 if (u->load_state != UNIT_LOADED)
1830 return false;
1831
1832 if (!unit_supported(u))
1833 return false;
1834
d4fd1cf2
LP
1835 /* Scope units may be started only once */
1836 if (UNIT_VTABLE(u)->once_only && dual_timestamp_is_set(&u->inactive_exit_timestamp))
1837 return false;
1838
87f0e418
LP
1839 return !!UNIT_VTABLE(u)->start;
1840}
1841
2528a7a6
LP
1842bool unit_can_isolate(Unit *u) {
1843 assert(u);
1844
1845 return unit_can_start(u) &&
ac155bb8 1846 u->allow_isolate;
2528a7a6
LP
1847}
1848
87f0e418
LP
1849/* Errors:
1850 * -EBADR: This unit type does not support stopping.
1851 * -EALREADY: Unit is already stopped.
1852 * -EAGAIN: An operation is already in progress. Retry later.
1853 */
1854int unit_stop(Unit *u) {
1855 UnitActiveState state;
92ab323c 1856 Unit *following;
87f0e418
LP
1857
1858 assert(u);
1859
87f0e418 1860 state = unit_active_state(u);
fdf20a31 1861 if (UNIT_IS_INACTIVE_OR_FAILED(state))
87f0e418
LP
1862 return -EALREADY;
1863
0faacd47
LP
1864 following = unit_following(u);
1865 if (following) {
f2341e0a 1866 log_unit_debug(u, "Redirecting stop request from %s to %s.", u->id, following->id);
92ab323c
LP
1867 return unit_stop(following);
1868 }
1869
7898b0cf
LP
1870 if (!UNIT_VTABLE(u)->stop)
1871 return -EBADR;
1872
c1e1601e 1873 unit_add_to_dbus_queue(u);
9e58ff9c 1874
d1a34ae9 1875 return UNIT_VTABLE(u)->stop(u);
87f0e418
LP
1876}
1877
f5869324
LP
1878bool unit_can_stop(Unit *u) {
1879 assert(u);
1880
1881 if (!unit_supported(u))
1882 return false;
1883
1884 if (u->perpetual)
1885 return false;
1886
1887 return !!UNIT_VTABLE(u)->stop;
1888}
1889
87f0e418
LP
1890/* Errors:
1891 * -EBADR: This unit type does not support reloading.
1892 * -ENOEXEC: Unit is not started.
1893 * -EAGAIN: An operation is already in progress. Retry later.
1894 */
1895int unit_reload(Unit *u) {
1896 UnitActiveState state;
92ab323c 1897 Unit *following;
87f0e418
LP
1898
1899 assert(u);
1900
ac155bb8 1901 if (u->load_state != UNIT_LOADED)
6124958c
LP
1902 return -EINVAL;
1903
87f0e418
LP
1904 if (!unit_can_reload(u))
1905 return -EBADR;
1906
1907 state = unit_active_state(u);
e364ad06 1908 if (state == UNIT_RELOADING)
6255af75 1909 return -EAGAIN;
87f0e418 1910
6a371e23 1911 if (state != UNIT_ACTIVE) {
f2341e0a 1912 log_unit_warning(u, "Unit cannot be reloaded because it is inactive.");
87f0e418 1913 return -ENOEXEC;
6a371e23 1914 }
87f0e418 1915
e48614c4
ZJS
1916 following = unit_following(u);
1917 if (following) {
f2341e0a 1918 log_unit_debug(u, "Redirecting reload request from %s to %s.", u->id, following->id);
92ab323c
LP
1919 return unit_reload(following);
1920 }
1921
c1e1601e 1922 unit_add_to_dbus_queue(u);
82a2b6bb 1923
f54bcca5
JR
1924 if (!UNIT_VTABLE(u)->reload) {
1925 /* Unit doesn't have a reload function, but we need to propagate the reload anyway */
2ad2e41a 1926 unit_notify(u, unit_active_state(u), unit_active_state(u), 0);
f54bcca5
JR
1927 return 0;
1928 }
1929
d1a34ae9 1930 return UNIT_VTABLE(u)->reload(u);
87f0e418
LP
1931}
1932
1933bool unit_can_reload(Unit *u) {
1934 assert(u);
1935
f54bcca5
JR
1936 if (UNIT_VTABLE(u)->can_reload)
1937 return UNIT_VTABLE(u)->can_reload(u);
87f0e418 1938
eef85c4a 1939 if (!hashmap_isempty(u->dependencies[UNIT_PROPAGATES_RELOAD_TO]))
87f0e418
LP
1940 return true;
1941
f54bcca5 1942 return UNIT_VTABLE(u)->reload;
87f0e418
LP
1943}
1944
a3c1168a
LP
1945bool unit_is_unneeded(Unit *u) {
1946 static const UnitDependency deps[] = {
be7d9ff7 1947 UNIT_REQUIRED_BY,
084918ba 1948 UNIT_REQUISITE_OF,
be7d9ff7
LP
1949 UNIT_WANTED_BY,
1950 UNIT_BOUND_BY,
1951 };
a3c1168a 1952 size_t j;
f3bff0eb
LP
1953
1954 assert(u);
1955
ac155bb8 1956 if (!u->stop_when_unneeded)
a3c1168a 1957 return false;
f3bff0eb 1958
a3c1168a
LP
1959 /* Don't clean up while the unit is transitioning or is even inactive. */
1960 if (!UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
1961 return false;
1962 if (u->job)
1963 return false;
f3bff0eb 1964
a3c1168a 1965 for (j = 0; j < ELEMENTSOF(deps); j++) {
eef85c4a
LP
1966 Unit *other;
1967 Iterator i;
1968 void *v;
1969
fda09318 1970 /* If a dependent unit has a job queued, is active or transitioning, or is marked for
a3c1168a 1971 * restart, then don't clean this one up. */
b81884e7 1972
a3c1168a 1973 HASHMAP_FOREACH_KEY(v, other, u->dependencies[deps[j]], i) {
93d4cb09 1974 if (other->job)
a3c1168a
LP
1975 return false;
1976
1977 if (!UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(other)))
1978 return false;
1979
1980 if (unit_will_restart(other))
1981 return false;
1982 }
bea355da
LP
1983 }
1984
a3c1168a
LP
1985 return true;
1986}
f3bff0eb 1987
a3c1168a
LP
1988static void check_unneeded_dependencies(Unit *u) {
1989
1990 static const UnitDependency deps[] = {
1991 UNIT_REQUIRES,
1992 UNIT_REQUISITE,
1993 UNIT_WANTS,
1994 UNIT_BINDS_TO,
1995 };
1996 size_t j;
1997
1998 assert(u);
1999
2000 /* Add all units this unit depends on to the queue that processes StopWhenUnneeded= behaviour. */
2001
2002 for (j = 0; j < ELEMENTSOF(deps); j++) {
2003 Unit *other;
2004 Iterator i;
2005 void *v;
2006
2007 HASHMAP_FOREACH_KEY(v, other, u->dependencies[deps[j]], i)
fda09318 2008 unit_submit_to_stop_when_unneeded_queue(other);
a3c1168a 2009 }
f3bff0eb
LP
2010}
2011
ff502445 2012static void unit_check_binds_to(Unit *u) {
4afd3348 2013 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
ff502445
LP
2014 bool stop = false;
2015 Unit *other;
2016 Iterator i;
eef85c4a 2017 void *v;
67bfdc97 2018 int r;
ff502445
LP
2019
2020 assert(u);
2021
2022 if (u->job)
2023 return;
2024
2025 if (unit_active_state(u) != UNIT_ACTIVE)
2026 return;
2027
eef85c4a 2028 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_BINDS_TO], i) {
ff502445
LP
2029 if (other->job)
2030 continue;
13ddc3fc
ZJS
2031
2032 if (!other->coldplugged)
2033 /* We might yet create a job for the other unit… */
2034 continue;
ff502445
LP
2035
2036 if (!UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(other)))
2037 continue;
2038
2039 stop = true;
98f738b6 2040 break;
ff502445
LP
2041 }
2042
2043 if (!stop)
2044 return;
2045
595bfe7d 2046 /* If stopping a unit fails continuously we might enter a stop
67bfdc97
LP
2047 * loop here, hence stop acting on the service being
2048 * unnecessary after a while. */
7994ac1d 2049 if (!ratelimit_below(&u->auto_stop_ratelimit)) {
67bfdc97
LP
2050 log_unit_warning(u, "Unit is bound to inactive unit %s, but not stopping since we tried this too often recently.", other->id);
2051 return;
2052 }
2053
98f738b6 2054 assert(other);
f2341e0a 2055 log_unit_info(u, "Unit is bound to inactive unit %s. Stopping, too.", other->id);
ff502445
LP
2056
2057 /* A unit we need to run is gone. Sniff. Let's stop this. */
50cbaba4 2058 r = manager_add_job(u->manager, JOB_STOP, u, JOB_FAIL, NULL, &error, NULL);
67bfdc97 2059 if (r < 0)
4bd29fe5 2060 log_unit_warning_errno(u, r, "Failed to enqueue stop job, ignoring: %s", bus_error_message(&error, r));
ff502445
LP
2061}
2062
87f0e418
LP
2063static void retroactively_start_dependencies(Unit *u) {
2064 Iterator i;
2065 Unit *other;
eef85c4a 2066 void *v;
87f0e418
LP
2067
2068 assert(u);
2069 assert(UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)));
2070
eef85c4a
LP
2071 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_REQUIRES], i)
2072 if (!hashmap_get(u->dependencies[UNIT_AFTER], other) &&
b81884e7 2073 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
50cbaba4 2074 manager_add_job(u->manager, JOB_START, other, JOB_REPLACE, NULL, NULL, NULL);
b81884e7 2075
eef85c4a
LP
2076 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_BINDS_TO], i)
2077 if (!hashmap_get(u->dependencies[UNIT_AFTER], other) &&
b81884e7 2078 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
50cbaba4 2079 manager_add_job(u->manager, JOB_START, other, JOB_REPLACE, NULL, NULL, NULL);
87f0e418 2080
eef85c4a
LP
2081 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_WANTS], i)
2082 if (!hashmap_get(u->dependencies[UNIT_AFTER], other) &&
b81884e7 2083 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
50cbaba4 2084 manager_add_job(u->manager, JOB_START, other, JOB_FAIL, NULL, NULL, NULL);
87f0e418 2085
eef85c4a 2086 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_CONFLICTS], i)
b81884e7 2087 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
50cbaba4 2088 manager_add_job(u->manager, JOB_STOP, other, JOB_REPLACE, NULL, NULL, NULL);
69dd2852 2089
eef85c4a 2090 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_CONFLICTED_BY], i)
b81884e7 2091 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
50cbaba4 2092 manager_add_job(u->manager, JOB_STOP, other, JOB_REPLACE, NULL, NULL, NULL);
87f0e418
LP
2093}
2094
2095static void retroactively_stop_dependencies(Unit *u) {
87f0e418 2096 Unit *other;
eef85c4a
LP
2097 Iterator i;
2098 void *v;
87f0e418
LP
2099
2100 assert(u);
2101 assert(UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(u)));
2102
b81884e7 2103 /* Pull down units which are bound to us recursively if enabled */
eef85c4a 2104 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_BOUND_BY], i)
b81884e7 2105 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
50cbaba4 2106 manager_add_job(u->manager, JOB_STOP, other, JOB_REPLACE, NULL, NULL, NULL);
cd0504d0
MS
2107}
2108
3ecaa09b 2109void unit_start_on_failure(Unit *u) {
c0daa706
LP
2110 Unit *other;
2111 Iterator i;
eef85c4a 2112 void *v;
7f66b026 2113 int r;
c0daa706
LP
2114
2115 assert(u);
2116
eef85c4a 2117 if (hashmap_size(u->dependencies[UNIT_ON_FAILURE]) <= 0)
222ae6a8
LP
2118 return;
2119
f2341e0a 2120 log_unit_info(u, "Triggering OnFailure= dependencies.");
222ae6a8 2121
eef85c4a 2122 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_ON_FAILURE], i) {
7f66b026 2123 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
222ae6a8 2124
50cbaba4 2125 r = manager_add_job(u->manager, JOB_START, other, u->on_failure_job_mode, NULL, &error, NULL);
c1b6628d 2126 if (r < 0)
7f66b026 2127 log_unit_warning_errno(u, r, "Failed to enqueue OnFailure= job, ignoring: %s", bus_error_message(&error, r));
222ae6a8 2128 }
c0daa706
LP
2129}
2130
3ecaa09b
LP
2131void unit_trigger_notify(Unit *u) {
2132 Unit *other;
2133 Iterator i;
eef85c4a 2134 void *v;
3ecaa09b
LP
2135
2136 assert(u);
2137
eef85c4a 2138 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_TRIGGERED_BY], i)
3ecaa09b
LP
2139 if (UNIT_VTABLE(other)->trigger_notify)
2140 UNIT_VTABLE(other)->trigger_notify(other, u);
2141}
2142
915b1d01 2143static int unit_log_resources(Unit *u) {
bc40a20e
LP
2144 struct iovec iovec[1 + _CGROUP_IP_ACCOUNTING_METRIC_MAX + _CGROUP_IO_ACCOUNTING_METRIC_MAX + 4];
2145 bool any_traffic = false, have_ip_accounting = false, any_io = false, have_io_accounting = false;
2146 _cleanup_free_ char *igress = NULL, *egress = NULL, *rr = NULL, *wr = NULL;
915b1d01 2147 size_t n_message_parts = 0, n_iovec = 0;
bc40a20e 2148 char* message_parts[1 + 2 + 2 + 1], *t;
915b1d01
LP
2149 nsec_t nsec = NSEC_INFINITY;
2150 CGroupIPAccountingMetric m;
2151 size_t i;
2152 int r;
2153 const char* const ip_fields[_CGROUP_IP_ACCOUNTING_METRIC_MAX] = {
2154 [CGROUP_IP_INGRESS_BYTES] = "IP_METRIC_INGRESS_BYTES",
2155 [CGROUP_IP_INGRESS_PACKETS] = "IP_METRIC_INGRESS_PACKETS",
2156 [CGROUP_IP_EGRESS_BYTES] = "IP_METRIC_EGRESS_BYTES",
2157 [CGROUP_IP_EGRESS_PACKETS] = "IP_METRIC_EGRESS_PACKETS",
2158 };
bc40a20e
LP
2159 const char* const io_fields[_CGROUP_IO_ACCOUNTING_METRIC_MAX] = {
2160 [CGROUP_IO_READ_BYTES] = "IO_METRIC_READ_BYTES",
2161 [CGROUP_IO_WRITE_BYTES] = "IO_METRIC_WRITE_BYTES",
2162 [CGROUP_IO_READ_OPERATIONS] = "IO_METRIC_READ_OPERATIONS",
2163 [CGROUP_IO_WRITE_OPERATIONS] = "IO_METRIC_WRITE_OPERATIONS",
2164 };
915b1d01
LP
2165
2166 assert(u);
2167
2168 /* Invoked whenever a unit enters failed or dead state. Logs information about consumed resources if resource
2169 * accounting was enabled for a unit. It does this in two ways: a friendly human readable string with reduced
2170 * information and the complete data in structured fields. */
2171
2172 (void) unit_get_cpu_usage(u, &nsec);
2173 if (nsec != NSEC_INFINITY) {
2174 char buf[FORMAT_TIMESPAN_MAX] = "";
2175
2176 /* Format the CPU time for inclusion in the structured log message */
2177 if (asprintf(&t, "CPU_USAGE_NSEC=%" PRIu64, nsec) < 0) {
2178 r = log_oom();
2179 goto finish;
2180 }
2181 iovec[n_iovec++] = IOVEC_MAKE_STRING(t);
2182
2183 /* Format the CPU time for inclusion in the human language message string */
2184 format_timespan(buf, sizeof(buf), nsec / NSEC_PER_USEC, USEC_PER_MSEC);
ec9d636b 2185 t = strjoin("consumed ", buf, " CPU time");
915b1d01
LP
2186 if (!t) {
2187 r = log_oom();
2188 goto finish;
2189 }
2190
2191 message_parts[n_message_parts++] = t;
2192 }
2193
bc40a20e
LP
2194 for (CGroupIOAccountingMetric k = 0; k < _CGROUP_IO_ACCOUNTING_METRIC_MAX; k++) {
2195 char buf[FORMAT_BYTES_MAX] = "";
2196 uint64_t value = UINT64_MAX;
2197
2198 assert(io_fields[k]);
2199
2200 (void) unit_get_io_accounting(u, k, k > 0, &value);
2201 if (value == UINT64_MAX)
2202 continue;
2203
2204 have_io_accounting = true;
2205 if (value > 0)
2206 any_io = true;
2207
2208 /* Format IO accounting data for inclusion in the structured log message */
2209 if (asprintf(&t, "%s=%" PRIu64, io_fields[k], value) < 0) {
2210 r = log_oom();
2211 goto finish;
2212 }
2213 iovec[n_iovec++] = IOVEC_MAKE_STRING(t);
2214
2215 /* Format the IO accounting data for inclusion in the human language message string, but only
2216 * for the bytes counters (and not for the operations counters) */
2217 if (k == CGROUP_IO_READ_BYTES) {
2218 assert(!rr);
2219 rr = strjoin("read ", format_bytes(buf, sizeof(buf), value), " from disk");
2220 if (!rr) {
2221 r = log_oom();
2222 goto finish;
2223 }
2224 } else if (k == CGROUP_IO_WRITE_BYTES) {
2225 assert(!wr);
2226 wr = strjoin("written ", format_bytes(buf, sizeof(buf), value), " to disk");
2227 if (!wr) {
2228 r = log_oom();
2229 goto finish;
2230 }
2231 }
2232 }
2233
2234 if (have_io_accounting) {
2235 if (any_io) {
2236 if (rr)
2237 message_parts[n_message_parts++] = TAKE_PTR(rr);
2238 if (wr)
2239 message_parts[n_message_parts++] = TAKE_PTR(wr);
2240
2241 } else {
2242 char *k;
2243
2244 k = strdup("no IO");
2245 if (!k) {
2246 r = log_oom();
2247 goto finish;
2248 }
2249
2250 message_parts[n_message_parts++] = k;
2251 }
2252 }
2253
915b1d01
LP
2254 for (m = 0; m < _CGROUP_IP_ACCOUNTING_METRIC_MAX; m++) {
2255 char buf[FORMAT_BYTES_MAX] = "";
2256 uint64_t value = UINT64_MAX;
2257
2258 assert(ip_fields[m]);
2259
2260 (void) unit_get_ip_accounting(u, m, &value);
2261 if (value == UINT64_MAX)
2262 continue;
82044702
LP
2263
2264 have_ip_accounting = true;
a87b1faa
LP
2265 if (value > 0)
2266 any_traffic = true;
915b1d01
LP
2267
2268 /* Format IP accounting data for inclusion in the structured log message */
2269 if (asprintf(&t, "%s=%" PRIu64, ip_fields[m], value) < 0) {
2270 r = log_oom();
2271 goto finish;
2272 }
2273 iovec[n_iovec++] = IOVEC_MAKE_STRING(t);
2274
2275 /* Format the IP accounting data for inclusion in the human language message string, but only for the
2276 * bytes counters (and not for the packets counters) */
a87b1faa
LP
2277 if (m == CGROUP_IP_INGRESS_BYTES) {
2278 assert(!igress);
ec9d636b 2279 igress = strjoin("received ", format_bytes(buf, sizeof(buf), value), " IP traffic");
a87b1faa
LP
2280 if (!igress) {
2281 r = log_oom();
2282 goto finish;
2283 }
2284 } else if (m == CGROUP_IP_EGRESS_BYTES) {
2285 assert(!egress);
ec9d636b 2286 egress = strjoin("sent ", format_bytes(buf, sizeof(buf), value), " IP traffic");
a87b1faa
LP
2287 if (!egress) {
2288 r = log_oom();
2289 goto finish;
2290 }
2291 }
2292 }
2293
82044702
LP
2294 if (have_ip_accounting) {
2295 if (any_traffic) {
2296 if (igress)
2297 message_parts[n_message_parts++] = TAKE_PTR(igress);
2298 if (egress)
2299 message_parts[n_message_parts++] = TAKE_PTR(egress);
a87b1faa 2300
82044702
LP
2301 } else {
2302 char *k;
915b1d01 2303
82044702
LP
2304 k = strdup("no IP traffic");
2305 if (!k) {
2306 r = log_oom();
2307 goto finish;
2308 }
2309
2310 message_parts[n_message_parts++] = k;
2311 }
915b1d01
LP
2312 }
2313
2314 /* Is there any accounting data available at all? */
2315 if (n_iovec == 0) {
2316 r = 0;
2317 goto finish;
2318 }
2319
2320 if (n_message_parts == 0)
a87b1faa 2321 t = strjoina("MESSAGE=", u->id, ": Completed.");
915b1d01
LP
2322 else {
2323 _cleanup_free_ char *joined;
2324
2325 message_parts[n_message_parts] = NULL;
2326
2327 joined = strv_join(message_parts, ", ");
2328 if (!joined) {
2329 r = log_oom();
2330 goto finish;
2331 }
2332
ec9d636b 2333 joined[0] = ascii_toupper(joined[0]);
a87b1faa 2334 t = strjoina("MESSAGE=", u->id, ": ", joined, ".");
915b1d01
LP
2335 }
2336
2337 /* The following four fields we allocate on the stack or are static strings, we hence don't want to free them,
2338 * and hence don't increase n_iovec for them */
2339 iovec[n_iovec] = IOVEC_MAKE_STRING(t);
2340 iovec[n_iovec + 1] = IOVEC_MAKE_STRING("MESSAGE_ID=" SD_MESSAGE_UNIT_RESOURCES_STR);
2341
2342 t = strjoina(u->manager->unit_log_field, u->id);
2343 iovec[n_iovec + 2] = IOVEC_MAKE_STRING(t);
2344
2345 t = strjoina(u->manager->invocation_log_field, u->invocation_id_string);
2346 iovec[n_iovec + 3] = IOVEC_MAKE_STRING(t);
2347
2348 log_struct_iovec(LOG_INFO, iovec, n_iovec + 4);
2349 r = 0;
2350
2351finish:
2352 for (i = 0; i < n_message_parts; i++)
2353 free(message_parts[i]);
2354
2355 for (i = 0; i < n_iovec; i++)
2356 free(iovec[i].iov_base);
2357
2358 return r;
2359
2360}
2361
adefcf28
LP
2362static void unit_update_on_console(Unit *u) {
2363 bool b;
2364
2365 assert(u);
2366
2367 b = unit_needs_console(u);
2368 if (u->on_console == b)
2369 return;
2370
2371 u->on_console = b;
2372 if (b)
2373 manager_ref_console(u->manager);
2374 else
2375 manager_unref_console(u->manager);
adefcf28
LP
2376}
2377
6eb65e7c
LP
2378static void unit_emit_audit_start(Unit *u) {
2379 assert(u);
2380
2381 if (u->type != UNIT_SERVICE)
2382 return;
2383
2384 /* Write audit record if we have just finished starting up */
2385 manager_send_unit_audit(u->manager, u, AUDIT_SERVICE_START, true);
2386 u->in_audit = true;
2387}
2388
2389static void unit_emit_audit_stop(Unit *u, UnitActiveState state) {
2390 assert(u);
2391
2392 if (u->type != UNIT_SERVICE)
2393 return;
2394
2395 if (u->in_audit) {
2396 /* Write audit record if we have just finished shutting down */
2397 manager_send_unit_audit(u->manager, u, AUDIT_SERVICE_STOP, state == UNIT_INACTIVE);
2398 u->in_audit = false;
2399 } else {
2400 /* Hmm, if there was no start record written write it now, so that we always have a nice pair */
2401 manager_send_unit_audit(u->manager, u, AUDIT_SERVICE_START, state == UNIT_INACTIVE);
2402
2403 if (state == UNIT_INACTIVE)
2404 manager_send_unit_audit(u->manager, u, AUDIT_SERVICE_STOP, true);
2405 }
2406}
2407
16c74914
LP
2408static bool unit_process_job(Job *j, UnitActiveState ns, UnitNotifyFlags flags) {
2409 bool unexpected = false;
2410
2411 assert(j);
2412
2413 if (j->state == JOB_WAITING)
2414
2415 /* So we reached a different state for this job. Let's see if we can run it now if it failed previously
2416 * due to EAGAIN. */
2417 job_add_to_run_queue(j);
2418
2419 /* Let's check whether the unit's new state constitutes a finished job, or maybe contradicts a running job and
2420 * hence needs to invalidate jobs. */
2421
2422 switch (j->type) {
2423
2424 case JOB_START:
2425 case JOB_VERIFY_ACTIVE:
2426
2427 if (UNIT_IS_ACTIVE_OR_RELOADING(ns))
2428 job_finish_and_invalidate(j, JOB_DONE, true, false);
2429 else if (j->state == JOB_RUNNING && ns != UNIT_ACTIVATING) {
2430 unexpected = true;
2431
2432 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
2433 job_finish_and_invalidate(j, ns == UNIT_FAILED ? JOB_FAILED : JOB_DONE, true, false);
2434 }
2435
2436 break;
2437
2438 case JOB_RELOAD:
2439 case JOB_RELOAD_OR_START:
2440 case JOB_TRY_RELOAD:
2441
2442 if (j->state == JOB_RUNNING) {
2443 if (ns == UNIT_ACTIVE)
2444 job_finish_and_invalidate(j, (flags & UNIT_NOTIFY_RELOAD_FAILURE) ? JOB_FAILED : JOB_DONE, true, false);
2445 else if (!IN_SET(ns, UNIT_ACTIVATING, UNIT_RELOADING)) {
2446 unexpected = true;
2447
2448 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
2449 job_finish_and_invalidate(j, ns == UNIT_FAILED ? JOB_FAILED : JOB_DONE, true, false);
2450 }
2451 }
2452
2453 break;
2454
2455 case JOB_STOP:
2456 case JOB_RESTART:
2457 case JOB_TRY_RESTART:
2458
2459 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
2460 job_finish_and_invalidate(j, JOB_DONE, true, false);
2461 else if (j->state == JOB_RUNNING && ns != UNIT_DEACTIVATING) {
2462 unexpected = true;
2463 job_finish_and_invalidate(j, JOB_FAILED, true, false);
2464 }
2465
2466 break;
2467
2468 default:
2469 assert_not_reached("Job type unknown");
2470 }
2471
2472 return unexpected;
2473}
2474
2ad2e41a 2475void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, UnitNotifyFlags flags) {
429926e9 2476 const char *reason;
8559b3b7 2477 Manager *m;
a096ed36 2478
87f0e418
LP
2479 assert(u);
2480 assert(os < _UNIT_ACTIVE_STATE_MAX);
2481 assert(ns < _UNIT_ACTIVE_STATE_MAX);
87f0e418 2482
8559b3b7
LP
2483 /* Note that this is called for all low-level state changes, even if they might map to the same high-level
2484 * UnitActiveState! That means that ns == os is an expected behavior here. For example: if a mount point is
2485 * remounted this function will be called too! */
87f0e418 2486
546ac4f0
MS
2487 m = u->manager;
2488
3c4832ad
LP
2489 /* Let's enqueue the change signal early. In case this unit has a job associated we want that this unit is in
2490 * the bus queue, so that any job change signal queued will force out the unit change signal first. */
2491 unit_add_to_dbus_queue(u);
2492
f755e3b7 2493 /* Update timestamps for state changes */
2c289ea8 2494 if (!MANAGER_IS_RELOADING(m)) {
a483fb59 2495 dual_timestamp_get(&u->state_change_timestamp);
173e3821 2496
bdbf9951 2497 if (UNIT_IS_INACTIVE_OR_FAILED(os) && !UNIT_IS_INACTIVE_OR_FAILED(ns))
a483fb59 2498 u->inactive_exit_timestamp = u->state_change_timestamp;
bdbf9951 2499 else if (!UNIT_IS_INACTIVE_OR_FAILED(os) && UNIT_IS_INACTIVE_OR_FAILED(ns))
a483fb59 2500 u->inactive_enter_timestamp = u->state_change_timestamp;
bdbf9951
LP
2501
2502 if (!UNIT_IS_ACTIVE_OR_RELOADING(os) && UNIT_IS_ACTIVE_OR_RELOADING(ns))
a483fb59 2503 u->active_enter_timestamp = u->state_change_timestamp;
bdbf9951 2504 else if (UNIT_IS_ACTIVE_OR_RELOADING(os) && !UNIT_IS_ACTIVE_OR_RELOADING(ns))
a483fb59 2505 u->active_exit_timestamp = u->state_change_timestamp;
bdbf9951 2506 }
87f0e418 2507
865cc19a 2508 /* Keep track of failed units */
8724defe 2509 (void) manager_update_failed_units(m, u, ns == UNIT_FAILED);
f755e3b7 2510
d3070fbd
LP
2511 /* Make sure the cgroup and state files are always removed when we become inactive */
2512 if (UNIT_IS_INACTIVE_OR_FAILED(ns)) {
efdb0237 2513 unit_prune_cgroup(u);
d3070fbd
LP
2514 unit_unlink_state_files(u);
2515 }
fb385181 2516
adefcf28 2517 unit_update_on_console(u);
7ed9f6cd 2518
2c289ea8 2519 if (!MANAGER_IS_RELOADING(m)) {
a1c7334b
LP
2520 bool unexpected;
2521
2522 /* Let's propagate state changes to the job */
2523 if (u->job)
2524 unexpected = unit_process_job(u->job, ns, flags);
2525 else
2526 unexpected = true;
f3bff0eb 2527
a1c7334b
LP
2528 /* If this state change happened without being requested by a job, then let's retroactively start or
2529 * stop dependencies. We skip that step when deserializing, since we don't want to create any
2530 * additional jobs just because something is already activated. */
bdbf9951
LP
2531
2532 if (unexpected) {
2533 if (UNIT_IS_INACTIVE_OR_FAILED(os) && UNIT_IS_ACTIVE_OR_ACTIVATING(ns))
2534 retroactively_start_dependencies(u);
2535 else if (UNIT_IS_ACTIVE_OR_ACTIVATING(os) && UNIT_IS_INACTIVE_OR_DEACTIVATING(ns))
2536 retroactively_stop_dependencies(u);
2537 }
5de9682c 2538
cd0504d0 2539 /* stop unneeded units regardless if going down was expected or not */
a3c1168a 2540 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
cd0504d0
MS
2541 check_unneeded_dependencies(u);
2542
bdbf9951 2543 if (ns != os && ns == UNIT_FAILED) {
ed77d407 2544 log_unit_debug(u, "Unit entered failed state.");
2ad2e41a
LP
2545
2546 if (!(flags & UNIT_NOTIFY_WILL_AUTO_RESTART))
2547 unit_start_on_failure(u);
cd6d0a45 2548 }
e537352b 2549
256f65d0
LP
2550 if (UNIT_IS_ACTIVE_OR_RELOADING(ns) && !UNIT_IS_ACTIVE_OR_RELOADING(os)) {
2551 /* This unit just finished starting up */
3b2775c5 2552
6eb65e7c 2553 unit_emit_audit_start(u);
546ac4f0 2554 manager_send_unit_plymouth(m, u);
256f65d0 2555 }
bdbf9951 2556
256f65d0 2557 if (UNIT_IS_INACTIVE_OR_FAILED(ns) && !UNIT_IS_INACTIVE_OR_FAILED(os)) {
915b1d01 2558 /* This unit just stopped/failed. */
256f65d0 2559
6eb65e7c 2560 unit_emit_audit_stop(u, ns);
915b1d01 2561 unit_log_resources(u);
cd6d0a45 2562 }
f278026d
LP
2563 }
2564
31dc1ca3
LP
2565 manager_recheck_journal(m);
2566 manager_recheck_dbus(m);
e63ebf71 2567
3ecaa09b 2568 unit_trigger_notify(u);
3b2775c5 2569
8724defe 2570 if (!MANAGER_IS_RELOADING(m)) {
8559b3b7 2571 /* Maybe we finished startup and are now ready for being stopped because unneeded? */
fda09318 2572 unit_submit_to_stop_when_unneeded_queue(u);
c1e1601e 2573
8559b3b7
LP
2574 /* Maybe we finished startup, but something we needed has vanished? Let's die then. (This happens when
2575 * something BindsTo= to a Type=oneshot unit, as these units go directly from starting to inactive,
ff502445
LP
2576 * without ever entering started.) */
2577 unit_check_binds_to(u);
53c35a76 2578
429926e9
TR
2579 if (os != UNIT_FAILED && ns == UNIT_FAILED) {
2580 reason = strjoina("unit ", u->id, " failed");
36c4dc08 2581 emergency_action(m, u->failure_action, 0, u->reboot_arg, unit_failure_action_exit_status(u), reason);
429926e9
TR
2582 } else if (!UNIT_IS_INACTIVE_OR_FAILED(os) && ns == UNIT_INACTIVE) {
2583 reason = strjoina("unit ", u->id, " succeeded");
36c4dc08 2584 emergency_action(m, u->success_action, 0, u->reboot_arg, unit_success_action_exit_status(u), reason);
429926e9 2585 }
ff502445
LP
2586 }
2587
701cc384 2588 unit_add_to_gc_queue(u);
87f0e418
LP
2589}
2590
f75f613d 2591int unit_watch_pid(Unit *u, pid_t pid, bool exclusive) {
62a76913 2592 int r;
a911bb9a 2593
87f0e418 2594 assert(u);
62a76913 2595 assert(pid_is_valid(pid));
87f0e418 2596
62a76913 2597 /* Watch a specific PID */
5ba6985b 2598
f75f613d
FB
2599 /* Caller might be sure that this PID belongs to this unit only. Let's take this
2600 * opportunity to remove any stalled references to this PID as they can be created
2601 * easily (when watching a process which is not our direct child). */
2602 if (exclusive)
2603 manager_unwatch_pid(u->manager, pid);
2604
d5099efc 2605 r = set_ensure_allocated(&u->pids, NULL);
5ba6985b
LP
2606 if (r < 0)
2607 return r;
2608
62a76913 2609 r = hashmap_ensure_allocated(&u->manager->watch_pids, NULL);
a911bb9a
LP
2610 if (r < 0)
2611 return r;
2612
62a76913
LP
2613 /* First try, let's add the unit keyed by "pid". */
2614 r = hashmap_put(u->manager->watch_pids, PID_TO_PTR(pid), u);
2615 if (r == -EEXIST) {
2616 Unit **array;
2617 bool found = false;
2618 size_t n = 0;
05e343b7 2619
62a76913
LP
2620 /* OK, the "pid" key is already assigned to a different unit. Let's see if the "-pid" key (which points
2621 * to an array of Units rather than just a Unit), lists us already. */
a911bb9a 2622
62a76913
LP
2623 array = hashmap_get(u->manager->watch_pids, PID_TO_PTR(-pid));
2624 if (array)
2625 for (; array[n]; n++)
2626 if (array[n] == u)
2627 found = true;
a911bb9a 2628
62a76913
LP
2629 if (found) /* Found it already? if so, do nothing */
2630 r = 0;
2631 else {
2632 Unit **new_array;
2633
2634 /* Allocate a new array */
2635 new_array = new(Unit*, n + 2);
2636 if (!new_array)
2637 return -ENOMEM;
2638
2639 memcpy_safe(new_array, array, sizeof(Unit*) * n);
2640 new_array[n] = u;
2641 new_array[n+1] = NULL;
2642
2643 /* Add or replace the old array */
2644 r = hashmap_replace(u->manager->watch_pids, PID_TO_PTR(-pid), new_array);
2645 if (r < 0) {
2646 free(new_array);
2647 return r;
2648 }
2649
2650 free(array);
2651 }
2652 } else if (r < 0)
2653 return r;
2654
2655 r = set_put(u->pids, PID_TO_PTR(pid));
2656 if (r < 0)
2657 return r;
2658
2659 return 0;
87f0e418
LP
2660}
2661
2662void unit_unwatch_pid(Unit *u, pid_t pid) {
62a76913
LP
2663 Unit **array;
2664
87f0e418 2665 assert(u);
62a76913
LP
2666 assert(pid_is_valid(pid));
2667
2668 /* First let's drop the unit in case it's keyed as "pid". */
2669 (void) hashmap_remove_value(u->manager->watch_pids, PID_TO_PTR(pid), u);
2670
2671 /* Then, let's also drop the unit, in case it's in the array keyed by -pid */
2672 array = hashmap_get(u->manager->watch_pids, PID_TO_PTR(-pid));
2673 if (array) {
2674 size_t n, m = 0;
2675
2676 /* Let's iterate through the array, dropping our own entry */
2677 for (n = 0; array[n]; n++)
2678 if (array[n] != u)
2679 array[m++] = array[n];
2680 array[m] = NULL;
2681
2682 if (m == 0) {
2683 /* The array is now empty, remove the entire entry */
2684 assert(hashmap_remove(u->manager->watch_pids, PID_TO_PTR(-pid)) == array);
2685 free(array);
2686 }
2687 }
87f0e418 2688
fea72cc0 2689 (void) set_remove(u->pids, PID_TO_PTR(pid));
a911bb9a
LP
2690}
2691
bd44e61b
LP
2692void unit_unwatch_all_pids(Unit *u) {
2693 assert(u);
2694
2695 while (!set_isempty(u->pids))
fea72cc0 2696 unit_unwatch_pid(u, PTR_TO_PID(set_first(u->pids)));
bd44e61b 2697
efdb0237 2698 u->pids = set_free(u->pids);
a911bb9a
LP
2699}
2700
50be4f4a
LP
2701static void unit_tidy_watch_pids(Unit *u) {
2702 pid_t except1, except2;
a911bb9a
LP
2703 Iterator i;
2704 void *e;
2705
2706 assert(u);
2707
2708 /* Cleans dead PIDs from our list */
2709
50be4f4a
LP
2710 except1 = unit_main_pid(u);
2711 except2 = unit_control_pid(u);
2712
a911bb9a 2713 SET_FOREACH(e, u->pids, i) {
fea72cc0 2714 pid_t pid = PTR_TO_PID(e);
a911bb9a
LP
2715
2716 if (pid == except1 || pid == except2)
2717 continue;
2718
9f5650ae 2719 if (!pid_is_unwaited(pid))
bd44e61b 2720 unit_unwatch_pid(u, pid);
a911bb9a 2721 }
87f0e418
LP
2722}
2723
50be4f4a
LP
2724static int on_rewatch_pids_event(sd_event_source *s, void *userdata) {
2725 Unit *u = userdata;
2726
2727 assert(s);
2728 assert(u);
2729
2730 unit_tidy_watch_pids(u);
2731 unit_watch_all_pids(u);
2732
2733 /* If the PID set is empty now, then let's finish this off. */
2734 unit_synthesize_cgroup_empty_event(u);
2735
2736 return 0;
2737}
2738
2739int unit_enqueue_rewatch_pids(Unit *u) {
2740 int r;
2741
2742 assert(u);
2743
2744 if (!u->cgroup_path)
2745 return -ENOENT;
2746
2747 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
2748 if (r < 0)
2749 return r;
2750 if (r > 0) /* On unified we can use proper notifications */
2751 return 0;
2752
2753 /* Enqueues a low-priority job that will clean up dead PIDs from our list of PIDs to watch and subscribe to new
2754 * PIDs that might have appeared. We do this in a delayed job because the work might be quite slow, as it
2755 * involves issuing kill(pid, 0) on all processes we watch. */
2756
2757 if (!u->rewatch_pids_event_source) {
2758 _cleanup_(sd_event_source_unrefp) sd_event_source *s = NULL;
2759
2760 r = sd_event_add_defer(u->manager->event, &s, on_rewatch_pids_event, u);
2761 if (r < 0)
2762 return log_error_errno(r, "Failed to allocate event source for tidying watched PIDs: %m");
2763
2764 r = sd_event_source_set_priority(s, SD_EVENT_PRIORITY_IDLE);
2765 if (r < 0)
2766 return log_error_errno(r, "Failed to adjust priority of event source for tidying watched PIDs: m");
2767
2768 (void) sd_event_source_set_description(s, "tidy-watch-pids");
2769
2770 u->rewatch_pids_event_source = TAKE_PTR(s);
2771 }
2772
2773 r = sd_event_source_set_enabled(u->rewatch_pids_event_source, SD_EVENT_ONESHOT);
2774 if (r < 0)
2775 return log_error_errno(r, "Failed to enable event source for tidying watched PIDs: %m");
2776
2777 return 0;
2778}
2779
2780void unit_dequeue_rewatch_pids(Unit *u) {
2781 int r;
2782 assert(u);
2783
2784 if (!u->rewatch_pids_event_source)
2785 return;
2786
2787 r = sd_event_source_set_enabled(u->rewatch_pids_event_source, SD_EVENT_OFF);
2788 if (r < 0)
2789 log_warning_errno(r, "Failed to disable event source for tidying watched PIDs, ignoring: %m");
2790
2791 u->rewatch_pids_event_source = sd_event_source_unref(u->rewatch_pids_event_source);
2792}
2793
87f0e418
LP
2794bool unit_job_is_applicable(Unit *u, JobType j) {
2795 assert(u);
2796 assert(j >= 0 && j < _JOB_TYPE_MAX);
2797
2798 switch (j) {
2799
2800 case JOB_VERIFY_ACTIVE:
2801 case JOB_START:
e0209d83 2802 case JOB_NOP:
f5869324
LP
2803 /* Note that we don't check unit_can_start() here. That's because .device units and suchlike are not
2804 * startable by us but may appear due to external events, and it thus makes sense to permit enqueing
2805 * jobs for it. */
87f0e418
LP
2806 return true;
2807
f5869324
LP
2808 case JOB_STOP:
2809 /* Similar as above. However, perpetual units can never be stopped (neither explicitly nor due to
2810 * external events), hence it makes no sense to permit enqueing such a request either. */
2811 return !u->perpetual;
2812
87f0e418
LP
2813 case JOB_RESTART:
2814 case JOB_TRY_RESTART:
f5869324 2815 return unit_can_stop(u) && unit_can_start(u);
87f0e418
LP
2816
2817 case JOB_RELOAD:
3282591d 2818 case JOB_TRY_RELOAD:
87f0e418
LP
2819 return unit_can_reload(u);
2820
2821 case JOB_RELOAD_OR_START:
2822 return unit_can_reload(u) && unit_can_start(u);
2823
2824 default:
2825 assert_not_reached("Invalid job type");
2826 }
2827}
2828
f2341e0a
LP
2829static void maybe_warn_about_dependency(Unit *u, const char *other, UnitDependency dependency) {
2830 assert(u);
d1fab3fe 2831
f2341e0a
LP
2832 /* Only warn about some unit types */
2833 if (!IN_SET(dependency, UNIT_CONFLICTS, UNIT_CONFLICTED_BY, UNIT_BEFORE, UNIT_AFTER, UNIT_ON_FAILURE, UNIT_TRIGGERS, UNIT_TRIGGERED_BY))
2834 return;
3f3cc397 2835
f2341e0a
LP
2836 if (streq_ptr(u->id, other))
2837 log_unit_warning(u, "Dependency %s=%s dropped", unit_dependency_to_string(dependency), u->id);
2838 else
2839 log_unit_warning(u, "Dependency %s=%s dropped, merged into %s", unit_dependency_to_string(dependency), strna(other), u->id);
d1fab3fe
ZJS
2840}
2841
eef85c4a
LP
2842static int unit_add_dependency_hashmap(
2843 Hashmap **h,
2844 Unit *other,
2845 UnitDependencyMask origin_mask,
2846 UnitDependencyMask destination_mask) {
2847
2848 UnitDependencyInfo info;
2849 int r;
2850
2851 assert(h);
2852 assert(other);
2853 assert(origin_mask < _UNIT_DEPENDENCY_MASK_FULL);
2854 assert(destination_mask < _UNIT_DEPENDENCY_MASK_FULL);
2855 assert(origin_mask > 0 || destination_mask > 0);
2856
2857 r = hashmap_ensure_allocated(h, NULL);
2858 if (r < 0)
2859 return r;
2860
2861 assert_cc(sizeof(void*) == sizeof(info));
2862
2863 info.data = hashmap_get(*h, other);
2864 if (info.data) {
2865 /* Entry already exists. Add in our mask. */
2866
d94a24ca
ZJS
2867 if (FLAGS_SET(origin_mask, info.origin_mask) &&
2868 FLAGS_SET(destination_mask, info.destination_mask))
eef85c4a
LP
2869 return 0; /* NOP */
2870
2871 info.origin_mask |= origin_mask;
2872 info.destination_mask |= destination_mask;
2873
2874 r = hashmap_update(*h, other, info.data);
2875 } else {
2876 info = (UnitDependencyInfo) {
2877 .origin_mask = origin_mask,
2878 .destination_mask = destination_mask,
2879 };
2880
2881 r = hashmap_put(*h, other, info.data);
2882 }
2883 if (r < 0)
2884 return r;
2885
2886 return 1;
2887}
2888
2889int unit_add_dependency(
2890 Unit *u,
2891 UnitDependency d,
2892 Unit *other,
2893 bool add_reference,
2894 UnitDependencyMask mask) {
87f0e418
LP
2895
2896 static const UnitDependency inverse_table[_UNIT_DEPENDENCY_MAX] = {
2897 [UNIT_REQUIRES] = UNIT_REQUIRED_BY,
87f0e418 2898 [UNIT_WANTS] = UNIT_WANTED_BY,
be7d9ff7 2899 [UNIT_REQUISITE] = UNIT_REQUISITE_OF,
7f2cddae 2900 [UNIT_BINDS_TO] = UNIT_BOUND_BY,
60649f17 2901 [UNIT_PART_OF] = UNIT_CONSISTS_OF,
be7d9ff7 2902 [UNIT_REQUIRED_BY] = UNIT_REQUIRES,
be7d9ff7 2903 [UNIT_REQUISITE_OF] = UNIT_REQUISITE,
be7d9ff7 2904 [UNIT_WANTED_BY] = UNIT_WANTS,
7f2cddae 2905 [UNIT_BOUND_BY] = UNIT_BINDS_TO,
60649f17 2906 [UNIT_CONSISTS_OF] = UNIT_PART_OF,
69dd2852
LP
2907 [UNIT_CONFLICTS] = UNIT_CONFLICTED_BY,
2908 [UNIT_CONFLICTED_BY] = UNIT_CONFLICTS,
87f0e418 2909 [UNIT_BEFORE] = UNIT_AFTER,
701cc384 2910 [UNIT_AFTER] = UNIT_BEFORE,
5de9682c 2911 [UNIT_ON_FAILURE] = _UNIT_DEPENDENCY_INVALID,
701cc384 2912 [UNIT_REFERENCES] = UNIT_REFERENCED_BY,
57020a3a
LP
2913 [UNIT_REFERENCED_BY] = UNIT_REFERENCES,
2914 [UNIT_TRIGGERS] = UNIT_TRIGGERED_BY,
4dcc1cb4 2915 [UNIT_TRIGGERED_BY] = UNIT_TRIGGERS,
7f2cddae 2916 [UNIT_PROPAGATES_RELOAD_TO] = UNIT_RELOAD_PROPAGATED_FROM,
85e9a101 2917 [UNIT_RELOAD_PROPAGATED_FROM] = UNIT_PROPAGATES_RELOAD_TO,
613b411c 2918 [UNIT_JOINS_NAMESPACE_OF] = UNIT_JOINS_NAMESPACE_OF,
87f0e418 2919 };
eef85c4a
LP
2920 Unit *original_u = u, *original_other = other;
2921 int r;
87f0e418
LP
2922
2923 assert(u);
2924 assert(d >= 0 && d < _UNIT_DEPENDENCY_MAX);
87f0e418
LP
2925 assert(other);
2926
9f151f29
LP
2927 u = unit_follow_merge(u);
2928 other = unit_follow_merge(other);
2929
87f0e418
LP
2930 /* We won't allow dependencies on ourselves. We will not
2931 * consider them an error however. */
d1fab3fe 2932 if (u == other) {
eef85c4a 2933 maybe_warn_about_dependency(original_u, original_other->id, d);
87f0e418 2934 return 0;
d1fab3fe 2935 }
87f0e418 2936
eef85c4a
LP
2937 if ((d == UNIT_BEFORE && other->type == UNIT_DEVICE) ||
2938 (d == UNIT_AFTER && u->type == UNIT_DEVICE)) {
dd5e7000
ZJS
2939 log_unit_warning(u, "Dependency Before=%s ignored (.device units cannot be delayed)", other->id);
2940 return 0;
2941 }
2942
eef85c4a 2943 r = unit_add_dependency_hashmap(u->dependencies + d, other, mask, 0);
613b411c 2944 if (r < 0)
87f0e418
LP
2945 return r;
2946
eef85c4a
LP
2947 if (inverse_table[d] != _UNIT_DEPENDENCY_INVALID && inverse_table[d] != d) {
2948 r = unit_add_dependency_hashmap(other->dependencies + inverse_table[d], u, 0, mask);
613b411c
LP
2949 if (r < 0)
2950 return r;
2951 }
2952
2953 if (add_reference) {
eef85c4a 2954 r = unit_add_dependency_hashmap(u->dependencies + UNIT_REFERENCES, other, mask, 0);
613b411c 2955 if (r < 0)
5de9682c
LP
2956 return r;
2957
eef85c4a 2958 r = unit_add_dependency_hashmap(other->dependencies + UNIT_REFERENCED_BY, u, 0, mask);
613b411c 2959 if (r < 0)
701cc384 2960 return r;
613b411c 2961 }
87f0e418 2962
c1e1601e 2963 unit_add_to_dbus_queue(u);
87f0e418
LP
2964 return 0;
2965}
0301abf4 2966
eef85c4a 2967int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference, UnitDependencyMask mask) {
2c966c03
LP
2968 int r;
2969
2970 assert(u);
2971
eef85c4a 2972 r = unit_add_dependency(u, d, other, add_reference, mask);
3f3cc397 2973 if (r < 0)
2c966c03
LP
2974 return r;
2975
eef85c4a 2976 return unit_add_dependency(u, e, other, add_reference, mask);
2c966c03
LP
2977}
2978
23e8c796 2979static int resolve_template(Unit *u, const char *name, char **buf, const char **ret) {
7410616c 2980 int r;
9e2f7c11
LP
2981
2982 assert(u);
23e8c796 2983 assert(name);
7410616c
LP
2984 assert(buf);
2985 assert(ret);
9e2f7c11 2986
7410616c
LP
2987 if (!unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
2988 *buf = NULL;
2989 *ret = name;
2990 return 0;
9e2f7c11
LP
2991 }
2992
ac155bb8 2993 if (u->instance)
7410616c 2994 r = unit_name_replace_instance(name, u->instance, buf);
9e2f7c11 2995 else {
ae018d9b 2996 _cleanup_free_ char *i = NULL;
9e2f7c11 2997
7410616c
LP
2998 r = unit_name_to_prefix(u->id, &i);
2999 if (r < 0)
3000 return r;
9e2f7c11 3001
7410616c 3002 r = unit_name_replace_instance(name, i, buf);
9e2f7c11 3003 }
7410616c
LP
3004 if (r < 0)
3005 return r;
9e2f7c11 3006
7410616c
LP
3007 *ret = *buf;
3008 return 0;
9e2f7c11
LP
3009}
3010
35d8c19a 3011int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, bool add_reference, UnitDependencyMask mask) {
7410616c 3012 _cleanup_free_ char *buf = NULL;
09b6b09f
LP
3013 Unit *other;
3014 int r;
3015
9e2f7c11 3016 assert(u);
35d8c19a 3017 assert(name);
09b6b09f 3018
23e8c796 3019 r = resolve_template(u, name, &buf, &name);
7410616c
LP
3020 if (r < 0)
3021 return r;
09b6b09f 3022
35d8c19a 3023 r = manager_load_unit(u->manager, name, NULL, NULL, &other);
8afbb8e1
LP
3024 if (r < 0)
3025 return r;
9e2f7c11 3026
eef85c4a 3027 return unit_add_dependency(u, d, other, add_reference, mask);
09b6b09f
LP
3028}
3029
5a724170 3030int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, bool add_reference, UnitDependencyMask mask) {
7410616c 3031 _cleanup_free_ char *buf = NULL;
2c966c03
LP
3032 Unit *other;
3033 int r;
2c966c03
LP
3034
3035 assert(u);
5a724170 3036 assert(name);
2c966c03 3037
23e8c796 3038 r = resolve_template(u, name, &buf, &name);
7410616c
LP
3039 if (r < 0)
3040 return r;
2c966c03 3041
5a724170 3042 r = manager_load_unit(u->manager, name, NULL, NULL, &other);
3f3cc397 3043 if (r < 0)
68eda4bd 3044 return r;
2c966c03 3045
eef85c4a 3046 return unit_add_two_dependencies(u, d, e, other, add_reference, mask);
2c966c03
LP
3047}
3048
0301abf4 3049int set_unit_path(const char *p) {
0301abf4 3050 /* This is mostly for debug purposes */
cbe46ead 3051 if (setenv("SYSTEMD_UNIT_PATH", p, 1) < 0)
26d04f86 3052 return -errno;
0301abf4
LP
3053
3054 return 0;
3055}
88066b3a 3056
ea430986 3057char *unit_dbus_path(Unit *u) {
ea430986
LP
3058 assert(u);
3059
ac155bb8 3060 if (!u->id)
04ade7d2
LP
3061 return NULL;
3062
48899192 3063 return unit_dbus_path_from_name(u->id);
ea430986
LP
3064}
3065
4b58153d
LP
3066char *unit_dbus_path_invocation_id(Unit *u) {
3067 assert(u);
3068
3069 if (sd_id128_is_null(u->invocation_id))
3070 return NULL;
3071
3072 return unit_dbus_path_from_name(u->invocation_id_string);
3073}
3074
d79200e2
LP
3075int unit_set_slice(Unit *u, Unit *slice) {
3076 assert(u);
3077 assert(slice);
3078
3079 /* Sets the unit slice if it has not been set before. Is extra
3080 * careful, to only allow this for units that actually have a
3081 * cgroup context. Also, we don't allow to set this for slices
3082 * (since the parent slice is derived from the name). Make
3083 * sure the unit we set is actually a slice. */
3084
3085 if (!UNIT_HAS_CGROUP_CONTEXT(u))
3086 return -EOPNOTSUPP;
3087
3088 if (u->type == UNIT_SLICE)
3089 return -EINVAL;
3090
102ef982
LP
3091 if (unit_active_state(u) != UNIT_INACTIVE)
3092 return -EBUSY;
3093
d79200e2
LP
3094 if (slice->type != UNIT_SLICE)
3095 return -EINVAL;
3096
efdb0237
LP
3097 if (unit_has_name(u, SPECIAL_INIT_SCOPE) &&
3098 !unit_has_name(slice, SPECIAL_ROOT_SLICE))
3099 return -EPERM;
3100
d79200e2
LP
3101 if (UNIT_DEREF(u->slice) == slice)
3102 return 0;
3103
99e66921
TH
3104 /* Disallow slice changes if @u is already bound to cgroups */
3105 if (UNIT_ISSET(u->slice) && u->cgroup_realized)
d79200e2
LP
3106 return -EBUSY;
3107
7f7d01ed 3108 unit_ref_set(&u->slice, u, slice);
d79200e2
LP
3109 return 1;
3110}
3111
3112int unit_set_default_slice(Unit *u) {
a8833944 3113 const char *slice_name;
a016b922
LP
3114 Unit *slice;
3115 int r;
3116
3117 assert(u);
3118
9444b1f2 3119 if (UNIT_ISSET(u->slice))
a016b922
LP
3120 return 0;
3121
a8833944
LP
3122 if (u->instance) {
3123 _cleanup_free_ char *prefix = NULL, *escaped = NULL;
68eda4bd 3124
a8833944
LP
3125 /* Implicitly place all instantiated units in their
3126 * own per-template slice */
3127
7410616c
LP
3128 r = unit_name_to_prefix(u->id, &prefix);
3129 if (r < 0)
3130 return r;
a8833944
LP
3131
3132 /* The prefix is already escaped, but it might include
3133 * "-" which has a special meaning for slice units,
3134 * hence escape it here extra. */
7410616c 3135 escaped = unit_name_escape(prefix);
a8833944
LP
3136 if (!escaped)
3137 return -ENOMEM;
3138
463d0d15 3139 if (MANAGER_IS_SYSTEM(u->manager))
00e7b3c8 3140 slice_name = strjoina("system-", escaped, ".slice");
a8833944 3141 else
00e7b3c8 3142 slice_name = strjoina(escaped, ".slice");
a8833944
LP
3143 } else
3144 slice_name =
463d0d15 3145 MANAGER_IS_SYSTEM(u->manager) && !unit_has_name(u, SPECIAL_INIT_SCOPE)
a8833944
LP
3146 ? SPECIAL_SYSTEM_SLICE
3147 : SPECIAL_ROOT_SLICE;
3148
3149 r = manager_load_unit(u->manager, slice_name, NULL, NULL, &slice);
a016b922
LP
3150 if (r < 0)
3151 return r;
3152
d79200e2 3153 return unit_set_slice(u, slice);
a016b922
LP
3154}
3155
9444b1f2
LP
3156const char *unit_slice_name(Unit *u) {
3157 assert(u);
3158
3159 if (!UNIT_ISSET(u->slice))
3160 return NULL;
3161
3162 return UNIT_DEREF(u->slice)->id;
3163}
3164
f6ff8c29 3165int unit_load_related_unit(Unit *u, const char *type, Unit **_found) {
78edb35a 3166 _cleanup_free_ char *t = NULL;
f6ff8c29
LP
3167 int r;
3168
3169 assert(u);
3170 assert(type);
3171 assert(_found);
3172
7410616c
LP
3173 r = unit_name_change_suffix(u->id, type, &t);
3174 if (r < 0)
3175 return r;
3176 if (unit_has_name(u, t))
3177 return -EINVAL;
f6ff8c29 3178
ac155bb8 3179 r = manager_load_unit(u->manager, t, NULL, NULL, _found);
9e2f7c11 3180 assert(r < 0 || *_found != u);
f6ff8c29
LP
3181 return r;
3182}
3183
bbc29086
DM
3184static int signal_name_owner_changed(sd_bus_message *message, void *userdata, sd_bus_error *error) {
3185 const char *name, *old_owner, *new_owner;
3186 Unit *u = userdata;
3187 int r;
3188
3189 assert(message);
3190 assert(u);
3191
3192 r = sd_bus_message_read(message, "sss", &name, &old_owner, &new_owner);
3193 if (r < 0) {
3194 bus_log_parse_error(r);
3195 return 0;
3196 }
3197
a8ea93a5
LP
3198 old_owner = empty_to_null(old_owner);
3199 new_owner = empty_to_null(new_owner);
b0076268 3200
bbc29086
DM
3201 if (UNIT_VTABLE(u)->bus_name_owner_change)
3202 UNIT_VTABLE(u)->bus_name_owner_change(u, name, old_owner, new_owner);
3203
3204 return 0;
3205}
3206
9806e87d
LP
3207int unit_install_bus_match(Unit *u, sd_bus *bus, const char *name) {
3208 const char *match;
bbc29086 3209
9806e87d
LP
3210 assert(u);
3211 assert(bus);
3212 assert(name);
bbc29086
DM
3213
3214 if (u->match_bus_slot)
3215 return -EBUSY;
3216
9806e87d 3217 match = strjoina("type='signal',"
81d62103
ZJS
3218 "sender='org.freedesktop.DBus',"
3219 "path='/org/freedesktop/DBus',"
3220 "interface='org.freedesktop.DBus',"
3221 "member='NameOwnerChanged',"
3222 "arg0='", name, "'");
bbc29086 3223
75152a4d 3224 return sd_bus_add_match_async(bus, &u->match_bus_slot, match, signal_name_owner_changed, NULL, u);
bbc29086
DM
3225}
3226
05e343b7 3227int unit_watch_bus_name(Unit *u, const char *name) {
bbc29086
DM
3228 int r;
3229
05e343b7
LP
3230 assert(u);
3231 assert(name);
3232
3233 /* Watch a specific name on the bus. We only support one unit
3234 * watching each name for now. */
3235
bbc29086
DM
3236 if (u->manager->api_bus) {
3237 /* If the bus is already available, install the match directly.
3238 * Otherwise, just put the name in the list. bus_setup_api() will take care later. */
9806e87d 3239 r = unit_install_bus_match(u, u->manager->api_bus, name);
bbc29086 3240 if (r < 0)
8ea823b6 3241 return log_warning_errno(r, "Failed to subscribe to NameOwnerChanged signal for '%s': %m", name);
bbc29086
DM
3242 }
3243
3244 r = hashmap_put(u->manager->watch_bus, name, u);
3245 if (r < 0) {
3246 u->match_bus_slot = sd_bus_slot_unref(u->match_bus_slot);
3247 return log_warning_errno(r, "Failed to put bus name to hashmap: %m");
3248 }
3249
3250 return 0;
05e343b7
LP
3251}
3252
3253void unit_unwatch_bus_name(Unit *u, const char *name) {
3254 assert(u);
3255 assert(name);
3256
8367fea5 3257 (void) hashmap_remove_value(u->manager->watch_bus, name, u);
bbc29086 3258 u->match_bus_slot = sd_bus_slot_unref(u->match_bus_slot);
05e343b7
LP
3259}
3260
a16e1123
LP
3261bool unit_can_serialize(Unit *u) {
3262 assert(u);
3263
3264 return UNIT_VTABLE(u)->serialize && UNIT_VTABLE(u)->deserialize_item;
3265}
3266
d68c645b 3267static int serialize_cgroup_mask(FILE *f, const char *key, CGroupMask mask) {
8b108bd0 3268 _cleanup_free_ char *s = NULL;
d68c645b 3269 int r;
8b108bd0
FB
3270
3271 assert(f);
3272 assert(key);
3273
d68c645b
LP
3274 if (mask == 0)
3275 return 0;
3276
3277 r = cg_mask_to_string(mask, &s);
3278 if (r < 0)
3279 return log_error_errno(r, "Failed to format cgroup mask: %m");
3280
3281 return serialize_item(f, key, s);
8b108bd0
FB
3282}
3283
b82f71c7 3284static const char *const ip_accounting_metric_field[_CGROUP_IP_ACCOUNTING_METRIC_MAX] = {
6b659ed8
LP
3285 [CGROUP_IP_INGRESS_BYTES] = "ip-accounting-ingress-bytes",
3286 [CGROUP_IP_INGRESS_PACKETS] = "ip-accounting-ingress-packets",
3287 [CGROUP_IP_EGRESS_BYTES] = "ip-accounting-egress-bytes",
3288 [CGROUP_IP_EGRESS_PACKETS] = "ip-accounting-egress-packets",
3289};
3290
fbe14fc9
LP
3291static const char *const io_accounting_metric_field_base[_CGROUP_IO_ACCOUNTING_METRIC_MAX] = {
3292 [CGROUP_IO_READ_BYTES] = "io-accounting-read-bytes-base",
3293 [CGROUP_IO_WRITE_BYTES] = "io-accounting-write-bytes-base",
3294 [CGROUP_IO_READ_OPERATIONS] = "io-accounting-read-operations-base",
3295 [CGROUP_IO_WRITE_OPERATIONS] = "io-accounting-write-operations-base",
3296};
3297
3298static const char *const io_accounting_metric_field_last[_CGROUP_IO_ACCOUNTING_METRIC_MAX] = {
3299 [CGROUP_IO_READ_BYTES] = "io-accounting-read-bytes-last",
3300 [CGROUP_IO_WRITE_BYTES] = "io-accounting-write-bytes-last",
3301 [CGROUP_IO_READ_OPERATIONS] = "io-accounting-read-operations-last",
3302 [CGROUP_IO_WRITE_OPERATIONS] = "io-accounting-write-operations-last",
3303};
3304
6b78f9b4 3305int unit_serialize(Unit *u, FILE *f, FDSet *fds, bool serialize_jobs) {
6b659ed8 3306 CGroupIPAccountingMetric m;
a16e1123
LP
3307 int r;
3308
3309 assert(u);
3310 assert(f);
3311 assert(fds);
3312
9bdb98c5 3313 if (unit_can_serialize(u)) {
9bdb98c5 3314 r = UNIT_VTABLE(u)->serialize(u, f, fds);
613b411c
LP
3315 if (r < 0)
3316 return r;
e0209d83
MS
3317 }
3318
d68c645b 3319 (void) serialize_dual_timestamp(f, "state-change-timestamp", &u->state_change_timestamp);
a483fb59 3320
d68c645b
LP
3321 (void) serialize_dual_timestamp(f, "inactive-exit-timestamp", &u->inactive_exit_timestamp);
3322 (void) serialize_dual_timestamp(f, "active-enter-timestamp", &u->active_enter_timestamp);
3323 (void) serialize_dual_timestamp(f, "active-exit-timestamp", &u->active_exit_timestamp);
3324 (void) serialize_dual_timestamp(f, "inactive-enter-timestamp", &u->inactive_enter_timestamp);
a483fb59 3325
d68c645b
LP
3326 (void) serialize_dual_timestamp(f, "condition-timestamp", &u->condition_timestamp);
3327 (void) serialize_dual_timestamp(f, "assert-timestamp", &u->assert_timestamp);
2791a8f8 3328
ac155bb8 3329 if (dual_timestamp_is_set(&u->condition_timestamp))
d68c645b 3330 (void) serialize_bool(f, "condition-result", u->condition_result);
10717a1a 3331
59fccdc5 3332 if (dual_timestamp_is_set(&u->assert_timestamp))
d68c645b 3333 (void) serialize_bool(f, "assert-result", u->assert_result);
59fccdc5 3334
d68c645b
LP
3335 (void) serialize_bool(f, "transient", u->transient);
3336 (void) serialize_bool(f, "in-audit", u->in_audit);
fe700f46 3337
d68c645b
LP
3338 (void) serialize_bool(f, "exported-invocation-id", u->exported_invocation_id);
3339 (void) serialize_bool(f, "exported-log-level-max", u->exported_log_level_max);
3340 (void) serialize_bool(f, "exported-log-extra-fields", u->exported_log_extra_fields);
3341 (void) serialize_bool(f, "exported-log-rate-limit-interval", u->exported_log_rate_limit_interval);
3342 (void) serialize_bool(f, "exported-log-rate-limit-burst", u->exported_log_rate_limit_burst);
0e699122 3343
d68c645b 3344 (void) serialize_item_format(f, "cpu-usage-base", "%" PRIu64, u->cpu_usage_base);
fe700f46 3345 if (u->cpu_usage_last != NSEC_INFINITY)
d68c645b 3346 (void) serialize_item_format(f, "cpu-usage-last", "%" PRIu64, u->cpu_usage_last);
c2756a68 3347
afcfaa69
LP
3348 if (u->oom_kill_last > 0)
3349 (void) serialize_item_format(f, "oom-kill-last", "%" PRIu64, u->oom_kill_last);
3350
fbe14fc9
LP
3351 for (CGroupIOAccountingMetric im = 0; im < _CGROUP_IO_ACCOUNTING_METRIC_MAX; im++) {
3352 (void) serialize_item_format(f, io_accounting_metric_field_base[im], "%" PRIu64, u->io_accounting_base[im]);
3353
3354 if (u->io_accounting_last[im] != UINT64_MAX)
3355 (void) serialize_item_format(f, io_accounting_metric_field_last[im], "%" PRIu64, u->io_accounting_last[im]);
3356 }
3357
c2756a68 3358 if (u->cgroup_path)
d68c645b
LP
3359 (void) serialize_item(f, "cgroup", u->cgroup_path);
3360
3361 (void) serialize_bool(f, "cgroup-realized", u->cgroup_realized);
3362 (void) serialize_cgroup_mask(f, "cgroup-realized-mask", u->cgroup_realized_mask);
3363 (void) serialize_cgroup_mask(f, "cgroup-enabled-mask", u->cgroup_enabled_mask);
3364 (void) serialize_cgroup_mask(f, "cgroup-invalidated-mask", u->cgroup_invalidated_mask);
c2756a68 3365
00d9ef85 3366 if (uid_is_valid(u->ref_uid))
d68c645b 3367 (void) serialize_item_format(f, "ref-uid", UID_FMT, u->ref_uid);
00d9ef85 3368 if (gid_is_valid(u->ref_gid))
d68c645b 3369 (void) serialize_item_format(f, "ref-gid", GID_FMT, u->ref_gid);
00d9ef85 3370
4b58153d 3371 if (!sd_id128_is_null(u->invocation_id))
d68c645b 3372 (void) serialize_item_format(f, "invocation-id", SD_ID128_FORMAT_STR, SD_ID128_FORMAT_VAL(u->invocation_id));
4b58153d 3373
05a98afd
LP
3374 bus_track_serialize(u->bus_track, f, "ref");
3375
6b659ed8
LP
3376 for (m = 0; m < _CGROUP_IP_ACCOUNTING_METRIC_MAX; m++) {
3377 uint64_t v;
3378
3379 r = unit_get_ip_accounting(u, m, &v);
3380 if (r >= 0)
d68c645b 3381 (void) serialize_item_format(f, ip_accounting_metric_field[m], "%" PRIu64, v);
6b659ed8
LP
3382 }
3383
613b411c
LP
3384 if (serialize_jobs) {
3385 if (u->job) {
d68c645b 3386 fputs("job\n", f);
05a98afd 3387 job_serialize(u->job, f);
613b411c
LP
3388 }
3389
3390 if (u->nop_job) {
d68c645b 3391 fputs("job\n", f);
05a98afd 3392 job_serialize(u->nop_job, f);
613b411c
LP
3393 }
3394 }
3395
a16e1123
LP
3396 /* End marker */
3397 fputc('\n', f);
3398 return 0;
3399}
3400
b17c9620
LP
3401static int unit_deserialize_job(Unit *u, FILE *f) {
3402 _cleanup_(job_freep) Job *j = NULL;
3403 int r;
3404
3405 assert(u);
3406 assert(f);
3407
3408 j = job_new_raw(u);
3409 if (!j)
3410 return log_oom();
3411
3412 r = job_deserialize(j, f);
3413 if (r < 0)
3414 return r;
3415
3416 r = job_install_deserialized(j);
3417 if (r < 0)
3418 return r;
3419
3420 TAKE_PTR(j);
3421 return 0;
3422}
3423
a16e1123
LP
3424int unit_deserialize(Unit *u, FILE *f, FDSet *fds) {
3425 int r;
3426
3427 assert(u);
3428 assert(f);
3429 assert(fds);
3430
a16e1123 3431 for (;;) {
8948b341 3432 _cleanup_free_ char *line = NULL;
8948b341 3433 char *l, *v;
83f18c91 3434 ssize_t m;
a16e1123
LP
3435 size_t k;
3436
8948b341
LP
3437 r = read_line(f, LONG_LINE_MAX, &line);
3438 if (r < 0)
3439 return log_error_errno(r, "Failed to read serialization line: %m");
3440 if (r == 0) /* eof */
3441 break;
a16e1123
LP
3442
3443 l = strstrip(line);
8948b341 3444 if (isempty(l)) /* End marker */
a483fb59 3445 break;
a16e1123
LP
3446
3447 k = strcspn(l, "=");
3448
3449 if (l[k] == '=') {
3450 l[k] = 0;
3451 v = l+k+1;
3452 } else
3453 v = l+k;
3454
cca098b0 3455 if (streq(l, "job")) {
39a18c60 3456 if (v[0] == '\0') {
b17c9620
LP
3457 /* New-style serialized job */
3458 r = unit_deserialize_job(u, f);
3459 if (r < 0)
e0209d83 3460 return r;
b17c9620 3461 } else /* Legacy for pre-44 */
ed10fa8c 3462 log_unit_warning(u, "Update from too old systemd versions are unsupported, cannot deserialize job: %s", v);
cca098b0 3463 continue;
a483fb59 3464 } else if (streq(l, "state-change-timestamp")) {
d68c645b 3465 (void) deserialize_dual_timestamp(v, &u->state_change_timestamp);
a483fb59 3466 continue;
8aaf019b 3467 } else if (streq(l, "inactive-exit-timestamp")) {
d68c645b 3468 (void) deserialize_dual_timestamp(v, &u->inactive_exit_timestamp);
8aaf019b
LP
3469 continue;
3470 } else if (streq(l, "active-enter-timestamp")) {
d68c645b 3471 (void) deserialize_dual_timestamp(v, &u->active_enter_timestamp);
8aaf019b
LP
3472 continue;
3473 } else if (streq(l, "active-exit-timestamp")) {
d68c645b 3474 (void) deserialize_dual_timestamp(v, &u->active_exit_timestamp);
8aaf019b
LP
3475 continue;
3476 } else if (streq(l, "inactive-enter-timestamp")) {
d68c645b 3477 (void) deserialize_dual_timestamp(v, &u->inactive_enter_timestamp);
8aaf019b 3478 continue;
2791a8f8 3479 } else if (streq(l, "condition-timestamp")) {
d68c645b 3480 (void) deserialize_dual_timestamp(v, &u->condition_timestamp);
2791a8f8 3481 continue;
59fccdc5 3482 } else if (streq(l, "assert-timestamp")) {
d68c645b 3483 (void) deserialize_dual_timestamp(v, &u->assert_timestamp);
59fccdc5 3484 continue;
2791a8f8 3485 } else if (streq(l, "condition-result")) {
2791a8f8 3486
e911de99
LP
3487 r = parse_boolean(v);
3488 if (r < 0)
f2341e0a 3489 log_unit_debug(u, "Failed to parse condition result value %s, ignoring.", v);
2791a8f8 3490 else
e911de99 3491 u->condition_result = r;
efbac6d2
LP
3492
3493 continue;
c2756a68 3494
59fccdc5 3495 } else if (streq(l, "assert-result")) {
59fccdc5 3496
e911de99
LP
3497 r = parse_boolean(v);
3498 if (r < 0)
f2341e0a 3499 log_unit_debug(u, "Failed to parse assert result value %s, ignoring.", v);
59fccdc5 3500 else
e911de99 3501 u->assert_result = r;
59fccdc5
LP
3502
3503 continue;
3504
c2756a68 3505 } else if (streq(l, "transient")) {
c2756a68 3506
e911de99
LP
3507 r = parse_boolean(v);
3508 if (r < 0)
f2341e0a 3509 log_unit_debug(u, "Failed to parse transient bool %s, ignoring.", v);
c2756a68 3510 else
e911de99 3511 u->transient = r;
c2756a68
LP
3512
3513 continue;
e911de99 3514
0e699122
LP
3515 } else if (streq(l, "in-audit")) {
3516
3517 r = parse_boolean(v);
3518 if (r < 0)
3519 log_unit_debug(u, "Failed to parse in-audit bool %s, ignoring.", v);
3520 else
3521 u->in_audit = r;
3522
3523 continue;
3524
d3070fbd
LP
3525 } else if (streq(l, "exported-invocation-id")) {
3526
3527 r = parse_boolean(v);
3528 if (r < 0)
3529 log_unit_debug(u, "Failed to parse exported invocation ID bool %s, ignoring.", v);
3530 else
3531 u->exported_invocation_id = r;
3532
3533 continue;
3534
3535 } else if (streq(l, "exported-log-level-max")) {
3536
3537 r = parse_boolean(v);
3538 if (r < 0)
3539 log_unit_debug(u, "Failed to parse exported log level max bool %s, ignoring.", v);
3540 else
3541 u->exported_log_level_max = r;
3542
3543 continue;
3544
3545 } else if (streq(l, "exported-log-extra-fields")) {
3546
3547 r = parse_boolean(v);
3548 if (r < 0)
3549 log_unit_debug(u, "Failed to parse exported log extra fields bool %s, ignoring.", v);
3550 else
3551 u->exported_log_extra_fields = r;
3552
3553 continue;
3554
90fc172e
AZ
3555 } else if (streq(l, "exported-log-rate-limit-interval")) {
3556
3557 r = parse_boolean(v);
3558 if (r < 0)
3559 log_unit_debug(u, "Failed to parse exported log rate limit interval %s, ignoring.", v);
3560 else
3561 u->exported_log_rate_limit_interval = r;
3562
3563 continue;
3564
3565 } else if (streq(l, "exported-log-rate-limit-burst")) {
3566
3567 r = parse_boolean(v);
3568 if (r < 0)
3569 log_unit_debug(u, "Failed to parse exported log rate limit burst %s, ignoring.", v);
3570 else
3571 u->exported_log_rate_limit_burst = r;
3572
3573 continue;
3574
fe700f46 3575 } else if (STR_IN_SET(l, "cpu-usage-base", "cpuacct-usage-base")) {
5ad096b3 3576
66ebf6c0 3577 r = safe_atou64(v, &u->cpu_usage_base);
5ad096b3 3578 if (r < 0)
fe700f46
LP
3579 log_unit_debug(u, "Failed to parse CPU usage base %s, ignoring.", v);
3580
3581 continue;
3582
3583 } else if (streq(l, "cpu-usage-last")) {
3584
3585 r = safe_atou64(v, &u->cpu_usage_last);
3586 if (r < 0)
3587 log_unit_debug(u, "Failed to read CPU usage last %s, ignoring.", v);
5ad096b3 3588
0f908397 3589 continue;
4e595329 3590
afcfaa69
LP
3591 } else if (streq(l, "oom-kill-last")) {
3592
3593 r = safe_atou64(v, &u->oom_kill_last);
3594 if (r < 0)
3595 log_unit_debug(u, "Failed to read OOM kill last %s, ignoring.", v);
3596
3597 continue;
3598
e911de99 3599 } else if (streq(l, "cgroup")) {
72673e86 3600
e911de99
LP
3601 r = unit_set_cgroup_path(u, v);
3602 if (r < 0)
f2341e0a 3603 log_unit_debug_errno(u, r, "Failed to set cgroup path %s, ignoring: %m", v);
4e595329 3604
efdb0237 3605 (void) unit_watch_cgroup(u);
afcfaa69 3606 (void) unit_watch_cgroup_memory(u);
efdb0237 3607
de1d4f9b
WF
3608 continue;
3609 } else if (streq(l, "cgroup-realized")) {
3610 int b;
3611
3612 b = parse_boolean(v);
3613 if (b < 0)
3614 log_unit_debug(u, "Failed to parse cgroup-realized bool %s, ignoring.", v);
3615 else
3616 u->cgroup_realized = b;
3617
c2756a68 3618 continue;
00d9ef85 3619
8b108bd0
FB
3620 } else if (streq(l, "cgroup-realized-mask")) {
3621
3622 r = cg_mask_from_string(v, &u->cgroup_realized_mask);
3623 if (r < 0)
3624 log_unit_debug(u, "Failed to parse cgroup-realized-mask %s, ignoring.", v);
3625 continue;
3626
3627 } else if (streq(l, "cgroup-enabled-mask")) {
3628
3629 r = cg_mask_from_string(v, &u->cgroup_enabled_mask);
3630 if (r < 0)
3631 log_unit_debug(u, "Failed to parse cgroup-enabled-mask %s, ignoring.", v);
3632 continue;
3633
17f14955 3634 } else if (streq(l, "cgroup-invalidated-mask")) {
906c06f6 3635
17f14955 3636 r = cg_mask_from_string(v, &u->cgroup_invalidated_mask);
906c06f6 3637 if (r < 0)
17f14955 3638 log_unit_debug(u, "Failed to parse cgroup-invalidated-mask %s, ignoring.", v);
906c06f6
DM
3639 continue;
3640
00d9ef85
LP
3641 } else if (streq(l, "ref-uid")) {
3642 uid_t uid;
3643
3644 r = parse_uid(v, &uid);
3645 if (r < 0)
3646 log_unit_debug(u, "Failed to parse referenced UID %s, ignoring.", v);
3647 else
3648 unit_ref_uid_gid(u, uid, GID_INVALID);
3649
3650 continue;
3651
3652 } else if (streq(l, "ref-gid")) {
3653 gid_t gid;
3654
3655 r = parse_gid(v, &gid);
3656 if (r < 0)
3657 log_unit_debug(u, "Failed to parse referenced GID %s, ignoring.", v);
3658 else
3659 unit_ref_uid_gid(u, UID_INVALID, gid);
3660
5f616d5f
LP
3661 continue;
3662
05a98afd
LP
3663 } else if (streq(l, "ref")) {
3664
3665 r = strv_extend(&u->deserialized_refs, v);
3666 if (r < 0)
d68c645b 3667 return log_oom();
05a98afd 3668
4b58153d
LP
3669 continue;
3670 } else if (streq(l, "invocation-id")) {
3671 sd_id128_t id;
3672
3673 r = sd_id128_from_string(v, &id);
3674 if (r < 0)
3675 log_unit_debug(u, "Failed to parse invocation id %s, ignoring.", v);
3676 else {
3677 r = unit_set_invocation_id(u, id);
3678 if (r < 0)
3679 log_unit_warning_errno(u, r, "Failed to set invocation ID for unit: %m");
3680 }
3681
00d9ef85 3682 continue;
8aaf019b 3683 }
cca098b0 3684
6b659ed8 3685 /* Check if this is an IP accounting metric serialization field */
83f18c91
LP
3686 m = string_table_lookup(ip_accounting_metric_field, ELEMENTSOF(ip_accounting_metric_field), l);
3687 if (m >= 0) {
6b659ed8
LP
3688 uint64_t c;
3689
3690 r = safe_atou64(v, &c);
3691 if (r < 0)
3692 log_unit_debug(u, "Failed to parse IP accounting value %s, ignoring.", v);
3693 else
3694 u->ip_accounting_extra[m] = c;
3695 continue;
3696 }
3697
fbe14fc9
LP
3698 m = string_table_lookup(io_accounting_metric_field_base, ELEMENTSOF(io_accounting_metric_field_base), l);
3699 if (m >= 0) {
3700 uint64_t c;
3701
3702 r = safe_atou64(v, &c);
3703 if (r < 0)
3704 log_unit_debug(u, "Failed to parse IO accounting base value %s, ignoring.", v);
3705 else
3706 u->io_accounting_base[m] = c;
3707 continue;
3708 }
3709
3710 m = string_table_lookup(io_accounting_metric_field_last, ELEMENTSOF(io_accounting_metric_field_last), l);
3711 if (m >= 0) {
3712 uint64_t c;
3713
3714 r = safe_atou64(v, &c);
3715 if (r < 0)
3716 log_unit_debug(u, "Failed to parse IO accounting last value %s, ignoring.", v);
3717 else
3718 u->io_accounting_last[m] = c;
3719 continue;
3720 }
3721
9bdb98c5 3722 if (unit_can_serialize(u)) {
e8a565cb
YW
3723 r = exec_runtime_deserialize_compat(u, l, v, fds);
3724 if (r < 0) {
3725 log_unit_warning(u, "Failed to deserialize runtime parameter '%s', ignoring.", l);
3726 continue;
9bdb98c5
LP
3727 }
3728
e8a565cb
YW
3729 /* Returns positive if key was handled by the call */
3730 if (r > 0)
3731 continue;
3732
9bdb98c5 3733 r = UNIT_VTABLE(u)->deserialize_item(u, l, v, fds);
613b411c 3734 if (r < 0)
f2341e0a 3735 log_unit_warning(u, "Failed to deserialize unit parameter '%s', ignoring.", l);
613b411c 3736 }
a16e1123 3737 }
a483fb59
LP
3738
3739 /* Versions before 228 did not carry a state change timestamp. In this case, take the current time. This is
3740 * useful, so that timeouts based on this timestamp don't trigger too early, and is in-line with the logic from
1f133e0d 3741 * before 228 where the base for timeouts was not persistent across reboots. */
a483fb59
LP
3742
3743 if (!dual_timestamp_is_set(&u->state_change_timestamp))
3744 dual_timestamp_get(&u->state_change_timestamp);
3745
58d83430
LP
3746 /* Let's make sure that everything that is deserialized also gets any potential new cgroup settings applied
3747 * after we are done. For that we invalidate anything already realized, so that we can realize it again. */
3748 unit_invalidate_cgroup(u, _CGROUP_MASK_ALL);
3749 unit_invalidate_cgroup_bpf(u);
3750
a483fb59 3751 return 0;
a16e1123
LP
3752}
3753
8948b341
LP
3754int unit_deserialize_skip(FILE *f) {
3755 int r;
07429866
ZJS
3756 assert(f);
3757
3758 /* Skip serialized data for this unit. We don't know what it is. */
3759
3760 for (;;) {
8948b341
LP
3761 _cleanup_free_ char *line = NULL;
3762 char *l;
07429866 3763
8948b341
LP
3764 r = read_line(f, LONG_LINE_MAX, &line);
3765 if (r < 0)
3766 return log_error_errno(r, "Failed to read serialization line: %m");
3767 if (r == 0)
3768 return 0;
07429866 3769
07429866
ZJS
3770 l = strstrip(line);
3771
3772 /* End marker */
3773 if (isempty(l))
8948b341 3774 return 1;
07429866
ZJS
3775 }
3776}
3777
eef85c4a 3778int unit_add_node_dependency(Unit *u, const char *what, bool wants, UnitDependency dep, UnitDependencyMask mask) {
6e2ef85b 3779 Unit *device;
68eda4bd 3780 _cleanup_free_ char *e = NULL;
6e2ef85b
LP
3781 int r;
3782
3783 assert(u);
3784
6e2ef85b 3785 /* Adds in links to the device node that this unit is based on */
47bc12e1
LP
3786 if (isempty(what))
3787 return 0;
6e2ef85b 3788
8407a5d0 3789 if (!is_device_path(what))
6e2ef85b
LP
3790 return 0;
3791
47bc12e1
LP
3792 /* When device units aren't supported (such as in a
3793 * container), don't create dependencies on them. */
1c2e9646 3794 if (!unit_type_supported(UNIT_DEVICE))
47bc12e1
LP
3795 return 0;
3796
7410616c
LP
3797 r = unit_name_from_path(what, ".device", &e);
3798 if (r < 0)
3799 return r;
6e2ef85b 3800
ac155bb8 3801 r = manager_load_unit(u->manager, e, NULL, NULL, &device);
6e2ef85b
LP
3802 if (r < 0)
3803 return r;
3804
ebc8968b
FB
3805 if (dep == UNIT_REQUIRES && device_shall_be_bound_by(device, u))
3806 dep = UNIT_BINDS_TO;
3807
9d06297e 3808 r = unit_add_two_dependencies(u, UNIT_AFTER,
463d0d15 3809 MANAGER_IS_SYSTEM(u->manager) ? dep : UNIT_WANTS,
eef85c4a 3810 device, true, mask);
faa368e3 3811 if (r < 0)
6e2ef85b
LP
3812 return r;
3813
faa368e3 3814 if (wants) {
eef85c4a 3815 r = unit_add_dependency(device, UNIT_WANTS, u, false, mask);
faa368e3 3816 if (r < 0)
6e2ef85b 3817 return r;
faa368e3 3818 }
6e2ef85b
LP
3819
3820 return 0;
3821}
a16e1123 3822
be847e82 3823int unit_coldplug(Unit *u) {
05a98afd
LP
3824 int r = 0, q;
3825 char **i;
cca098b0
LP
3826
3827 assert(u);
3828
f0831ed2 3829 /* Make sure we don't enter a loop, when coldplugging recursively. */
f78f265f
LP
3830 if (u->coldplugged)
3831 return 0;
3832
3833 u->coldplugged = true;
3834
05a98afd
LP
3835 STRV_FOREACH(i, u->deserialized_refs) {
3836 q = bus_unit_track_add_name(u, *i);
3837 if (q < 0 && r >= 0)
3838 r = q;
3839 }
3840 u->deserialized_refs = strv_free(u->deserialized_refs);
cca098b0 3841
05a98afd
LP
3842 if (UNIT_VTABLE(u)->coldplug) {
3843 q = UNIT_VTABLE(u)->coldplug(u);
3844 if (q < 0 && r >= 0)
3845 r = q;
3846 }
5a6158b6 3847
05a98afd
LP
3848 if (u->job) {
3849 q = job_coldplug(u->job);
3850 if (q < 0 && r >= 0)
3851 r = q;
3852 }
cca098b0 3853
05a98afd 3854 return r;
cca098b0
LP
3855}
3856
f0831ed2
LP
3857void unit_catchup(Unit *u) {
3858 assert(u);
3859
3860 if (UNIT_VTABLE(u)->catchup)
3861 UNIT_VTABLE(u)->catchup(u);
3862}
3863
ba25d39e 3864static bool fragment_mtime_newer(const char *path, usec_t mtime, bool path_masked) {
21b95806
ZJS
3865 struct stat st;
3866
3867 if (!path)
3868 return false;
3869
77969722
LP
3870 /* If the source is some virtual kernel file system, then we assume we watch it anyway, and hence pretend we
3871 * are never out-of-date. */
3872 if (PATH_STARTSWITH_SET(path, "/proc", "/sys"))
3873 return false;
3874
21b95806
ZJS
3875 if (stat(path, &st) < 0)
3876 /* What, cannot access this anymore? */
3877 return true;
3878
ba25d39e
ZJS
3879 if (path_masked)
3880 /* For masked files check if they are still so */
3881 return !null_or_empty(&st);
3882 else
3a8db9fe 3883 /* For non-empty files check the mtime */
87ec20ef 3884 return timespec_load(&st.st_mtim) > mtime;
21b95806
ZJS
3885
3886 return false;
3887}
3888
45fb0699 3889bool unit_need_daemon_reload(Unit *u) {
ae7a7182
OS
3890 _cleanup_strv_free_ char **t = NULL;
3891 char **path;
1b64d026 3892
45fb0699
LP
3893 assert(u);
3894
ba25d39e
ZJS
3895 /* For unit files, we allow masking… */
3896 if (fragment_mtime_newer(u->fragment_path, u->fragment_mtime,
3897 u->load_state == UNIT_MASKED))
21b95806 3898 return true;
5f4b19f4 3899
ba25d39e
ZJS
3900 /* Source paths should not be masked… */
3901 if (fragment_mtime_newer(u->source_path, u->source_mtime, false))
ab932a62 3902 return true;
ae7a7182 3903
19a44dfe
LR
3904 if (u->load_state == UNIT_LOADED)
3905 (void) unit_find_dropin_paths(u, &t);
ab932a62
LP
3906 if (!strv_equal(u->dropin_paths, t))
3907 return true;
6d10d308 3908
ba25d39e 3909 /* … any drop-ins that are masked are simply omitted from the list. */
ab932a62 3910 STRV_FOREACH(path, u->dropin_paths)
ba25d39e 3911 if (fragment_mtime_newer(*path, u->dropin_mtime, false))
ab932a62 3912 return true;
21b95806 3913
ab932a62 3914 return false;
45fb0699
LP
3915}
3916
fdf20a31 3917void unit_reset_failed(Unit *u) {
5632e374
LP
3918 assert(u);
3919
fdf20a31
MM
3920 if (UNIT_VTABLE(u)->reset_failed)
3921 UNIT_VTABLE(u)->reset_failed(u);
6bf0f408
LP
3922
3923 RATELIMIT_RESET(u->start_limit);
3924 u->start_limit_hit = false;
5632e374
LP
3925}
3926
a7f241db
LP
3927Unit *unit_following(Unit *u) {
3928 assert(u);
3929
3930 if (UNIT_VTABLE(u)->following)
3931 return UNIT_VTABLE(u)->following(u);
3932
3933 return NULL;
3934}
3935
31afa0a4 3936bool unit_stop_pending(Unit *u) {
18ffdfda
LP
3937 assert(u);
3938
31afa0a4
LP
3939 /* This call does check the current state of the unit. It's
3940 * hence useful to be called from state change calls of the
3941 * unit itself, where the state isn't updated yet. This is
3942 * different from unit_inactive_or_pending() which checks both
3943 * the current state and for a queued job. */
18ffdfda 3944
31afa0a4
LP
3945 return u->job && u->job->type == JOB_STOP;
3946}
3947
3948bool unit_inactive_or_pending(Unit *u) {
3949 assert(u);
3950
3951 /* Returns true if the unit is inactive or going down */
18ffdfda 3952
d956ac29
LP
3953 if (UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(u)))
3954 return true;
3955
31afa0a4 3956 if (unit_stop_pending(u))
18ffdfda
LP
3957 return true;
3958
3959 return false;
3960}
3961
31afa0a4 3962bool unit_active_or_pending(Unit *u) {
f976f3f6
LP
3963 assert(u);
3964
f60c2665 3965 /* Returns true if the unit is active or going up */
f976f3f6
LP
3966
3967 if (UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)))
3968 return true;
3969
ac155bb8 3970 if (u->job &&
3742095b 3971 IN_SET(u->job->type, JOB_START, JOB_RELOAD_OR_START, JOB_RESTART))
f976f3f6
LP
3972 return true;
3973
3974 return false;
3975}
3976
deb4e708
MK
3977bool unit_will_restart(Unit *u) {
3978 assert(u);
3979
3980 if (!UNIT_VTABLE(u)->will_restart)
3981 return false;
3982
3983 return UNIT_VTABLE(u)->will_restart(u);
3984}
3985
718db961 3986int unit_kill(Unit *u, KillWho w, int signo, sd_bus_error *error) {
8a0867d6
LP
3987 assert(u);
3988 assert(w >= 0 && w < _KILL_WHO_MAX);
6eb7c172 3989 assert(SIGNAL_VALID(signo));
8a0867d6 3990
8a0867d6 3991 if (!UNIT_VTABLE(u)->kill)
15411c0c 3992 return -EOPNOTSUPP;
8a0867d6 3993
c74f17d9 3994 return UNIT_VTABLE(u)->kill(u, w, signo, error);
8a0867d6
LP
3995}
3996
82659fd7 3997static Set *unit_pid_set(pid_t main_pid, pid_t control_pid) {
af4fa99d 3998 _cleanup_set_free_ Set *pid_set = NULL;
82659fd7
LP
3999 int r;
4000
d5099efc 4001 pid_set = set_new(NULL);
82659fd7
LP
4002 if (!pid_set)
4003 return NULL;
4004
4005 /* Exclude the main/control pids from being killed via the cgroup */
4006 if (main_pid > 0) {
fea72cc0 4007 r = set_put(pid_set, PID_TO_PTR(main_pid));
82659fd7 4008 if (r < 0)
95f14a3e 4009 return NULL;
82659fd7
LP
4010 }
4011
4012 if (control_pid > 0) {
fea72cc0 4013 r = set_put(pid_set, PID_TO_PTR(control_pid));
82659fd7 4014 if (r < 0)
95f14a3e 4015 return NULL;
82659fd7
LP
4016 }
4017
95f14a3e 4018 return TAKE_PTR(pid_set);
82659fd7
LP
4019}
4020
d91c34f2
LP
4021int unit_kill_common(
4022 Unit *u,
4023 KillWho who,
4024 int signo,
4025 pid_t main_pid,
4026 pid_t control_pid,
718db961 4027 sd_bus_error *error) {
d91c34f2 4028
814cc562 4029 int r = 0;
ac5e3a50 4030 bool killed = false;
814cc562 4031
ac5e3a50 4032 if (IN_SET(who, KILL_MAIN, KILL_MAIN_FAIL)) {
814cc562 4033 if (main_pid < 0)
7358dc02 4034 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_PROCESS, "%s units have no main processes", unit_type_to_string(u->type));
52f448c3 4035 else if (main_pid == 0)
7358dc02 4036 return sd_bus_error_set_const(error, BUS_ERROR_NO_SUCH_PROCESS, "No main process to kill");
814cc562
MS
4037 }
4038
ac5e3a50 4039 if (IN_SET(who, KILL_CONTROL, KILL_CONTROL_FAIL)) {
814cc562 4040 if (control_pid < 0)
7358dc02 4041 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_PROCESS, "%s units have no control processes", unit_type_to_string(u->type));
52f448c3 4042 else if (control_pid == 0)
7358dc02 4043 return sd_bus_error_set_const(error, BUS_ERROR_NO_SUCH_PROCESS, "No control process to kill");
814cc562
MS
4044 }
4045
ac5e3a50
JS
4046 if (IN_SET(who, KILL_CONTROL, KILL_CONTROL_FAIL, KILL_ALL, KILL_ALL_FAIL))
4047 if (control_pid > 0) {
814cc562
MS
4048 if (kill(control_pid, signo) < 0)
4049 r = -errno;
ac5e3a50
JS
4050 else
4051 killed = true;
4052 }
814cc562 4053
ac5e3a50
JS
4054 if (IN_SET(who, KILL_MAIN, KILL_MAIN_FAIL, KILL_ALL, KILL_ALL_FAIL))
4055 if (main_pid > 0) {
814cc562
MS
4056 if (kill(main_pid, signo) < 0)
4057 r = -errno;
ac5e3a50
JS
4058 else
4059 killed = true;
4060 }
814cc562 4061
ac5e3a50 4062 if (IN_SET(who, KILL_ALL, KILL_ALL_FAIL) && u->cgroup_path) {
814cc562
MS
4063 _cleanup_set_free_ Set *pid_set = NULL;
4064 int q;
4065
82659fd7
LP
4066 /* Exclude the main/control pids from being killed via the cgroup */
4067 pid_set = unit_pid_set(main_pid, control_pid);
814cc562
MS
4068 if (!pid_set)
4069 return -ENOMEM;
4070
1d98fef1 4071 q = cg_kill_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, signo, 0, pid_set, NULL, NULL);
4c701096 4072 if (q < 0 && !IN_SET(q, -EAGAIN, -ESRCH, -ENOENT))
814cc562 4073 r = q;
ac5e3a50
JS
4074 else
4075 killed = true;
814cc562
MS
4076 }
4077
201f0c91 4078 if (r == 0 && !killed && IN_SET(who, KILL_ALL_FAIL, KILL_CONTROL_FAIL))
ac5e3a50
JS
4079 return -ESRCH;
4080
814cc562
MS
4081 return r;
4082}
4083
6210e7fc
LP
4084int unit_following_set(Unit *u, Set **s) {
4085 assert(u);
4086 assert(s);
4087
4088 if (UNIT_VTABLE(u)->following_set)
4089 return UNIT_VTABLE(u)->following_set(u, s);
4090
4091 *s = NULL;
4092 return 0;
4093}
4094
a4375746 4095UnitFileState unit_get_unit_file_state(Unit *u) {
0ec0deaa
LP
4096 int r;
4097
a4375746
LP
4098 assert(u);
4099
0ec0deaa
LP
4100 if (u->unit_file_state < 0 && u->fragment_path) {
4101 r = unit_file_get_state(
463d0d15 4102 u->manager->unit_file_scope,
0ec0deaa 4103 NULL,
9ea3a0e7 4104 u->id,
0ec0deaa
LP
4105 &u->unit_file_state);
4106 if (r < 0)
4107 u->unit_file_state = UNIT_FILE_BAD;
4108 }
a4375746 4109
ac155bb8 4110 return u->unit_file_state;
a4375746
LP
4111}
4112
d2dc52db
LP
4113int unit_get_unit_file_preset(Unit *u) {
4114 assert(u);
4115
4116 if (u->unit_file_preset < 0 && u->fragment_path)
4117 u->unit_file_preset = unit_file_query_preset(
463d0d15 4118 u->manager->unit_file_scope,
0ec0deaa
LP
4119 NULL,
4120 basename(u->fragment_path));
d2dc52db
LP
4121
4122 return u->unit_file_preset;
4123}
4124
7f7d01ed 4125Unit* unit_ref_set(UnitRef *ref, Unit *source, Unit *target) {
57020a3a 4126 assert(ref);
7f7d01ed
ZJS
4127 assert(source);
4128 assert(target);
57020a3a 4129
7f7d01ed 4130 if (ref->target)
57020a3a
LP
4131 unit_ref_unset(ref);
4132
7f7d01ed
ZJS
4133 ref->source = source;
4134 ref->target = target;
4135 LIST_PREPEND(refs_by_target, target->refs_by_target, ref);
4136 return target;
57020a3a
LP
4137}
4138
4139void unit_ref_unset(UnitRef *ref) {
4140 assert(ref);
4141
7f7d01ed 4142 if (!ref->target)
57020a3a
LP
4143 return;
4144
b75102e5
LP
4145 /* We are about to drop a reference to the unit, make sure the garbage collection has a look at it as it might
4146 * be unreferenced now. */
7f7d01ed 4147 unit_add_to_gc_queue(ref->target);
b75102e5 4148
7f7d01ed
ZJS
4149 LIST_REMOVE(refs_by_target, ref->target->refs_by_target, ref);
4150 ref->source = ref->target = NULL;
57020a3a
LP
4151}
4152
29206d46
LP
4153static int user_from_unit_name(Unit *u, char **ret) {
4154
4155 static const uint8_t hash_key[] = {
4156 0x58, 0x1a, 0xaf, 0xe6, 0x28, 0x58, 0x4e, 0x96,
4157 0xb4, 0x4e, 0xf5, 0x3b, 0x8c, 0x92, 0x07, 0xec
4158 };
4159
4160 _cleanup_free_ char *n = NULL;
4161 int r;
4162
4163 r = unit_name_to_prefix(u->id, &n);
4164 if (r < 0)
4165 return r;
4166
4167 if (valid_user_group_name(n)) {
ae2a15bc 4168 *ret = TAKE_PTR(n);
29206d46
LP
4169 return 0;
4170 }
4171
4172 /* If we can't use the unit name as a user name, then let's hash it and use that */
4173 if (asprintf(ret, "_du%016" PRIx64, siphash24(n, strlen(n), hash_key)) < 0)
4174 return -ENOMEM;
4175
4176 return 0;
4177}
4178
598459ce
LP
4179int unit_patch_contexts(Unit *u) {
4180 CGroupContext *cc;
4181 ExecContext *ec;
cba6e062
LP
4182 unsigned i;
4183 int r;
4184
e06c73cc 4185 assert(u);
e06c73cc 4186
598459ce
LP
4187 /* Patch in the manager defaults into the exec and cgroup
4188 * contexts, _after_ the rest of the settings have been
4189 * initialized */
085afe36 4190
598459ce
LP
4191 ec = unit_get_exec_context(u);
4192 if (ec) {
4193 /* This only copies in the ones that need memory */
4194 for (i = 0; i < _RLIMIT_MAX; i++)
4195 if (u->manager->rlimit[i] && !ec->rlimit[i]) {
4196 ec->rlimit[i] = newdup(struct rlimit, u->manager->rlimit[i], 1);
4197 if (!ec->rlimit[i])
4198 return -ENOMEM;
4199 }
4200
463d0d15 4201 if (MANAGER_IS_USER(u->manager) &&
598459ce
LP
4202 !ec->working_directory) {
4203
4204 r = get_home_dir(&ec->working_directory);
4205 if (r < 0)
4206 return r;
4c08c824
LP
4207
4208 /* Allow user services to run, even if the
4209 * home directory is missing */
4210 ec->working_directory_missing_ok = true;
cba6e062
LP
4211 }
4212
598459ce 4213 if (ec->private_devices)
2cd0a735 4214 ec->capability_bounding_set &= ~((UINT64_C(1) << CAP_MKNOD) | (UINT64_C(1) << CAP_SYS_RAWIO));
502d704e
DH
4215
4216 if (ec->protect_kernel_modules)
4217 ec->capability_bounding_set &= ~(UINT64_C(1) << CAP_SYS_MODULE);
29206d46
LP
4218
4219 if (ec->dynamic_user) {
4220 if (!ec->user) {
4221 r = user_from_unit_name(u, &ec->user);
4222 if (r < 0)
4223 return r;
4224 }
4225
4226 if (!ec->group) {
4227 ec->group = strdup(ec->user);
4228 if (!ec->group)
4229 return -ENOMEM;
4230 }
4231
bf65b7e0
LP
4232 /* If the dynamic user option is on, let's make sure that the unit can't leave its
4233 * UID/GID around in the file system or on IPC objects. Hence enforce a strict
4234 * sandbox. */
63bb64a0 4235
29206d46 4236 ec->private_tmp = true;
00d9ef85 4237 ec->remove_ipc = true;
63bb64a0
LP
4238 ec->protect_system = PROTECT_SYSTEM_STRICT;
4239 if (ec->protect_home == PROTECT_HOME_NO)
4240 ec->protect_home = PROTECT_HOME_READ_ONLY;
bf65b7e0
LP
4241
4242 /* Make sure this service can neither benefit from SUID/SGID binaries nor create
4243 * them. */
4244 ec->no_new_privileges = true;
4245 ec->restrict_suid_sgid = true;
29206d46 4246 }
cba6e062
LP
4247 }
4248
598459ce 4249 cc = unit_get_cgroup_context(u);
fe65e88b 4250 if (cc && ec) {
f513e420 4251
fe65e88b 4252 if (ec->private_devices &&
598459ce
LP
4253 cc->device_policy == CGROUP_AUTO)
4254 cc->device_policy = CGROUP_CLOSED;
fe65e88b
YW
4255
4256 if (ec->root_image &&
4257 (cc->device_policy != CGROUP_AUTO || cc->device_allow)) {
4258
4259 /* When RootImage= is specified, the following devices are touched. */
4260 r = cgroup_add_device_allow(cc, "/dev/loop-control", "rw");
4261 if (r < 0)
4262 return r;
4263
4264 r = cgroup_add_device_allow(cc, "block-loop", "rwm");
4265 if (r < 0)
4266 return r;
4267
4268 r = cgroup_add_device_allow(cc, "block-blkext", "rwm");
4269 if (r < 0)
4270 return r;
4271 }
598459ce 4272 }
f1660f96 4273
cba6e062 4274 return 0;
e06c73cc
LP
4275}
4276
3ef63c31
LP
4277ExecContext *unit_get_exec_context(Unit *u) {
4278 size_t offset;
4279 assert(u);
4280
598459ce
LP
4281 if (u->type < 0)
4282 return NULL;
4283
3ef63c31
LP
4284 offset = UNIT_VTABLE(u)->exec_context_offset;
4285 if (offset <= 0)
4286 return NULL;
4287
4288 return (ExecContext*) ((uint8_t*) u + offset);
4289}
4290
718db961
LP
4291KillContext *unit_get_kill_context(Unit *u) {
4292 size_t offset;
4293 assert(u);
4294
598459ce
LP
4295 if (u->type < 0)
4296 return NULL;
4297
718db961
LP
4298 offset = UNIT_VTABLE(u)->kill_context_offset;
4299 if (offset <= 0)
4300 return NULL;
4301
4302 return (KillContext*) ((uint8_t*) u + offset);
4303}
4304
4ad49000
LP
4305CGroupContext *unit_get_cgroup_context(Unit *u) {
4306 size_t offset;
4307
598459ce
LP
4308 if (u->type < 0)
4309 return NULL;
4310
4ad49000
LP
4311 offset = UNIT_VTABLE(u)->cgroup_context_offset;
4312 if (offset <= 0)
4313 return NULL;
4314
4315 return (CGroupContext*) ((uint8_t*) u + offset);
4316}
4317
613b411c
LP
4318ExecRuntime *unit_get_exec_runtime(Unit *u) {
4319 size_t offset;
4320
598459ce
LP
4321 if (u->type < 0)
4322 return NULL;
4323
613b411c
LP
4324 offset = UNIT_VTABLE(u)->exec_runtime_offset;
4325 if (offset <= 0)
4326 return NULL;
4327
4328 return *(ExecRuntime**) ((uint8_t*) u + offset);
4329}
4330
2e59b241 4331static const char* unit_drop_in_dir(Unit *u, UnitWriteFlags flags) {
3f5e8115
LP
4332 assert(u);
4333
2e59b241 4334 if (UNIT_WRITE_FLAGS_NOOP(flags))
4f4afc88
LP
4335 return NULL;
4336
39591351
LP
4337 if (u->transient) /* Redirect drop-ins for transient units always into the transient directory. */
4338 return u->manager->lookup_paths.transient;
26d04f86 4339
2e59b241 4340 if (flags & UNIT_PERSISTENT)
4f4afc88 4341 return u->manager->lookup_paths.persistent_control;
26d04f86 4342
2e59b241
LP
4343 if (flags & UNIT_RUNTIME)
4344 return u->manager->lookup_paths.runtime_control;
4345
39591351 4346 return NULL;
71645aca
LP
4347}
4348
2e59b241
LP
4349char* unit_escape_setting(const char *s, UnitWriteFlags flags, char **buf) {
4350 char *ret = NULL;
4351
4352 if (!s)
4353 return NULL;
4354
4355 /* Escapes the input string as requested. Returns the escaped string. If 'buf' is specified then the allocated
4356 * return buffer pointer is also written to *buf, except if no escaping was necessary, in which case *buf is
4357 * set to NULL, and the input pointer is returned as-is. This means the return value always contains a properly
4358 * escaped version, but *buf when passed only contains a pointer if an allocation was necessary. If *buf is
4359 * not specified, then the return value always needs to be freed. Callers can use this to optimize memory
4360 * allocations. */
4361
4362 if (flags & UNIT_ESCAPE_SPECIFIERS) {
4363 ret = specifier_escape(s);
4364 if (!ret)
4365 return NULL;
4366
4367 s = ret;
4368 }
4369
4370 if (flags & UNIT_ESCAPE_C) {
4371 char *a;
4372
4373 a = cescape(s);
4374 free(ret);
4375 if (!a)
4376 return NULL;
4377
4378 ret = a;
4379 }
4380
4381 if (buf) {
4382 *buf = ret;
4383 return ret ?: (char*) s;
4384 }
4385
4386 return ret ?: strdup(s);
4387}
4388
4389char* unit_concat_strv(char **l, UnitWriteFlags flags) {
4390 _cleanup_free_ char *result = NULL;
4391 size_t n = 0, allocated = 0;
ae2a15bc 4392 char **i;
2e59b241
LP
4393
4394 /* Takes a list of strings, escapes them, and concatenates them. This may be used to format command lines in a
4395 * way suitable for ExecStart= stanzas */
4396
4397 STRV_FOREACH(i, l) {
4398 _cleanup_free_ char *buf = NULL;
4399 const char *p;
4400 size_t a;
4401 char *q;
4402
4403 p = unit_escape_setting(*i, flags, &buf);
4404 if (!p)
4405 return NULL;
4406
4407 a = (n > 0) + 1 + strlen(p) + 1; /* separating space + " + entry + " */
4408 if (!GREEDY_REALLOC(result, allocated, n + a + 1))
4409 return NULL;
4410
4411 q = result + n;
4412 if (n > 0)
4413 *(q++) = ' ';
4414
4415 *(q++) = '"';
4416 q = stpcpy(q, p);
4417 *(q++) = '"';
4418
4419 n += a;
4420 }
4421
4422 if (!GREEDY_REALLOC(result, allocated, n + 1))
4423 return NULL;
4424
4425 result[n] = 0;
4426
ae2a15bc 4427 return TAKE_PTR(result);
2e59b241
LP
4428}
4429
4430int unit_write_setting(Unit *u, UnitWriteFlags flags, const char *name, const char *data) {
4431 _cleanup_free_ char *p = NULL, *q = NULL, *escaped = NULL;
2a9a6f8a 4432 const char *dir, *wrapped;
26d04f86 4433 int r;
71645aca
LP
4434
4435 assert(u);
2e59b241
LP
4436 assert(name);
4437 assert(data);
4438
4439 if (UNIT_WRITE_FLAGS_NOOP(flags))
4440 return 0;
4441
4442 data = unit_escape_setting(data, flags, &escaped);
4443 if (!data)
4444 return -ENOMEM;
4445
4446 /* Prefix the section header. If we are writing this out as transient file, then let's suppress this if the
4447 * previous section header is the same */
4448
4449 if (flags & UNIT_PRIVATE) {
4450 if (!UNIT_VTABLE(u)->private_section)
4451 return -EINVAL;
4452
4453 if (!u->transient_file || u->last_section_private < 0)
4454 data = strjoina("[", UNIT_VTABLE(u)->private_section, "]\n", data);
4455 else if (u->last_section_private == 0)
4456 data = strjoina("\n[", UNIT_VTABLE(u)->private_section, "]\n", data);
4457 } else {
4458 if (!u->transient_file || u->last_section_private < 0)
4459 data = strjoina("[Unit]\n", data);
4460 else if (u->last_section_private > 0)
4461 data = strjoina("\n[Unit]\n", data);
4462 }
71645aca 4463
4f4afc88
LP
4464 if (u->transient_file) {
4465 /* When this is a transient unit file in creation, then let's not create a new drop-in but instead
4466 * write to the transient unit file. */
4467 fputs(data, u->transient_file);
4f4afc88 4468
2e59b241
LP
4469 if (!endswith(data, "\n"))
4470 fputc('\n', u->transient_file);
4471
4472 /* Remember which section we wrote this entry to */
4473 u->last_section_private = !!(flags & UNIT_PRIVATE);
8e2af478 4474 return 0;
2e59b241 4475 }
8e2af478 4476
2e59b241 4477 dir = unit_drop_in_dir(u, flags);
39591351
LP
4478 if (!dir)
4479 return -EINVAL;
71645aca 4480
2a9a6f8a 4481 wrapped = strjoina("# This is a drop-in unit file extension, created via \"systemctl set-property\"\n"
3f71dec5 4482 "# or an equivalent operation. Do not edit.\n",
2a9a6f8a
ZJS
4483 data,
4484 "\n");
e20b2a86 4485
815b09d3 4486 r = drop_in_file(dir, u->id, 50, name, &p, &q);
adb76a70
WC
4487 if (r < 0)
4488 return r;
4489
45639f1b 4490 (void) mkdir_p_label(p, 0755);
2a9a6f8a 4491 r = write_string_file_atomic_label(q, wrapped);
adb76a70
WC
4492 if (r < 0)
4493 return r;
4494
815b09d3 4495 r = strv_push(&u->dropin_paths, q);
adb76a70
WC
4496 if (r < 0)
4497 return r;
815b09d3 4498 q = NULL;
adb76a70 4499
adb76a70
WC
4500 strv_uniq(u->dropin_paths);
4501
4502 u->dropin_mtime = now(CLOCK_REALTIME);
4503
4504 return 0;
26d04f86 4505}
71645aca 4506
2e59b241 4507int unit_write_settingf(Unit *u, UnitWriteFlags flags, const char *name, const char *format, ...) {
b9ec9359
LP
4508 _cleanup_free_ char *p = NULL;
4509 va_list ap;
4510 int r;
4511
4512 assert(u);
4513 assert(name);
4514 assert(format);
4515
2e59b241 4516 if (UNIT_WRITE_FLAGS_NOOP(flags))
b9ec9359
LP
4517 return 0;
4518
4519 va_start(ap, format);
4520 r = vasprintf(&p, format, ap);
4521 va_end(ap);
4522
4523 if (r < 0)
4524 return -ENOMEM;
4525
2e59b241 4526 return unit_write_setting(u, flags, name, p);
b9ec9359 4527}
71645aca 4528
c2756a68 4529int unit_make_transient(Unit *u) {
0126c8f3 4530 _cleanup_free_ char *path = NULL;
4f4afc88 4531 FILE *f;
4f4afc88 4532
c2756a68
LP
4533 assert(u);
4534
3f5e8115
LP
4535 if (!UNIT_VTABLE(u)->can_transient)
4536 return -EOPNOTSUPP;
4537
45639f1b
LP
4538 (void) mkdir_p_label(u->manager->lookup_paths.transient, 0755);
4539
657ee2d8 4540 path = path_join(u->manager->lookup_paths.transient, u->id);
4f4afc88
LP
4541 if (!path)
4542 return -ENOMEM;
4543
4544 /* Let's open the file we'll write the transient settings into. This file is kept open as long as we are
4545 * creating the transient, and is closed in unit_load(), as soon as we start loading the file. */
4546
78e334b5 4547 RUN_WITH_UMASK(0022) {
4f4afc88 4548 f = fopen(path, "we");
0126c8f3 4549 if (!f)
78e334b5 4550 return -errno;
4f4afc88
LP
4551 }
4552
0126c8f3 4553 safe_fclose(u->transient_file);
4f4afc88
LP
4554 u->transient_file = f;
4555
0126c8f3 4556 free_and_replace(u->fragment_path, path);
7c65093a 4557
7c65093a
LP
4558 u->source_path = mfree(u->source_path);
4559 u->dropin_paths = strv_free(u->dropin_paths);
4560 u->fragment_mtime = u->source_mtime = u->dropin_mtime = 0;
4561
4f4afc88
LP
4562 u->load_state = UNIT_STUB;
4563 u->load_error = 0;
4564 u->transient = true;
4565
7c65093a
LP
4566 unit_add_to_dbus_queue(u);
4567 unit_add_to_gc_queue(u);
c2756a68 4568
4f4afc88
LP
4569 fputs("# This is a transient unit file, created programmatically via the systemd API. Do not edit.\n",
4570 u->transient_file);
4571
3f5e8115 4572 return 0;
c2756a68
LP
4573}
4574
c53d2d54 4575static int log_kill(pid_t pid, int sig, void *userdata) {
1d98fef1
LP
4576 _cleanup_free_ char *comm = NULL;
4577
4578 (void) get_process_comm(pid, &comm);
4579
4580 /* Don't log about processes marked with brackets, under the assumption that these are temporary processes
4581 only, like for example systemd's own PAM stub process. */
4582 if (comm && comm[0] == '(')
c53d2d54 4583 return 0;
1d98fef1
LP
4584
4585 log_unit_notice(userdata,
4586 "Killing process " PID_FMT " (%s) with signal SIG%s.",
4587 pid,
4588 strna(comm),
4589 signal_to_string(sig));
c53d2d54
DB
4590
4591 return 1;
1d98fef1
LP
4592}
4593
4594static int operation_to_signal(KillContext *c, KillOperation k) {
4595 assert(c);
4596
4597 switch (k) {
4598
4599 case KILL_TERMINATE:
4600 case KILL_TERMINATE_AND_LOG:
4601 return c->kill_signal;
4602
4603 case KILL_KILL:
fbb48d4c 4604 return c->final_kill_signal;
1d98fef1 4605
c87700a1
AZ
4606 case KILL_WATCHDOG:
4607 return c->watchdog_signal;
1d98fef1
LP
4608
4609 default:
4610 assert_not_reached("KillOperation unknown");
4611 }
4612}
4613
cd2086fe
LP
4614int unit_kill_context(
4615 Unit *u,
4616 KillContext *c,
db2cb23b 4617 KillOperation k,
cd2086fe
LP
4618 pid_t main_pid,
4619 pid_t control_pid,
4620 bool main_pid_alien) {
4621
1d98fef1 4622 bool wait_for_exit = false, send_sighup;
59ec09a8 4623 cg_kill_log_func_t log_func = NULL;
b821a397 4624 int sig, r;
cd2086fe
LP
4625
4626 assert(u);
4627 assert(c);
4628
59ec09a8
ZJS
4629 /* Kill the processes belonging to this unit, in preparation for shutting the unit down.
4630 * Returns > 0 if we killed something worth waiting for, 0 otherwise. */
1d98fef1 4631
cd2086fe
LP
4632 if (c->kill_mode == KILL_NONE)
4633 return 0;
4634
1d98fef1
LP
4635 sig = operation_to_signal(c, k);
4636
4637 send_sighup =
4638 c->send_sighup &&
4639 IN_SET(k, KILL_TERMINATE, KILL_TERMINATE_AND_LOG) &&
4640 sig != SIGHUP;
4641
59ec09a8
ZJS
4642 if (k != KILL_TERMINATE || IN_SET(sig, SIGKILL, SIGABRT))
4643 log_func = log_kill;
cd2086fe
LP
4644
4645 if (main_pid > 0) {
1d98fef1
LP
4646 if (log_func)
4647 log_func(main_pid, sig, u);
cd2086fe 4648
1d98fef1 4649 r = kill_and_sigcont(main_pid, sig);
cd2086fe
LP
4650 if (r < 0 && r != -ESRCH) {
4651 _cleanup_free_ char *comm = NULL;
1d98fef1 4652 (void) get_process_comm(main_pid, &comm);
cd2086fe 4653
b821a397 4654 log_unit_warning_errno(u, r, "Failed to kill main process " PID_FMT " (%s), ignoring: %m", main_pid, strna(comm));
82659fd7 4655 } else {
bc6aed7b
LP
4656 if (!main_pid_alien)
4657 wait_for_exit = true;
82659fd7 4658
1d98fef1 4659 if (r != -ESRCH && send_sighup)
d0667321 4660 (void) kill(main_pid, SIGHUP);
82659fd7 4661 }
cd2086fe
LP
4662 }
4663
4664 if (control_pid > 0) {
1d98fef1
LP
4665 if (log_func)
4666 log_func(control_pid, sig, u);
cd2086fe 4667
1d98fef1 4668 r = kill_and_sigcont(control_pid, sig);
cd2086fe
LP
4669 if (r < 0 && r != -ESRCH) {
4670 _cleanup_free_ char *comm = NULL;
1d98fef1 4671 (void) get_process_comm(control_pid, &comm);
cd2086fe 4672
b821a397 4673 log_unit_warning_errno(u, r, "Failed to kill control process " PID_FMT " (%s), ignoring: %m", control_pid, strna(comm));
82659fd7 4674 } else {
cd2086fe 4675 wait_for_exit = true;
82659fd7 4676
1d98fef1 4677 if (r != -ESRCH && send_sighup)
d0667321 4678 (void) kill(control_pid, SIGHUP);
82659fd7 4679 }
cd2086fe
LP
4680 }
4681
b821a397
LP
4682 if (u->cgroup_path &&
4683 (c->kill_mode == KILL_CONTROL_GROUP || (c->kill_mode == KILL_MIXED && k == KILL_KILL))) {
cd2086fe
LP
4684 _cleanup_set_free_ Set *pid_set = NULL;
4685
82659fd7
LP
4686 /* Exclude the main/control pids from being killed via the cgroup */
4687 pid_set = unit_pid_set(main_pid, control_pid);
cd2086fe
LP
4688 if (!pid_set)
4689 return -ENOMEM;
4690
1d98fef1
LP
4691 r = cg_kill_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path,
4692 sig,
4693 CGROUP_SIGCONT|CGROUP_IGNORE_SELF,
4694 pid_set,
4695 log_func, u);
cd2086fe 4696 if (r < 0) {
4c701096 4697 if (!IN_SET(r, -EAGAIN, -ESRCH, -ENOENT))
b821a397
LP
4698 log_unit_warning_errno(u, r, "Failed to kill control group %s, ignoring: %m", u->cgroup_path);
4699
82659fd7 4700 } else if (r > 0) {
bc6aed7b 4701
1d9cc876
LP
4702 /* FIXME: For now, on the legacy hierarchy, we will not wait for the cgroup members to die if
4703 * we are running in a container or if this is a delegation unit, simply because cgroup
4704 * notification is unreliable in these cases. It doesn't work at all in containers, and outside
4705 * of containers it can be confused easily by left-over directories in the cgroup — which
4706 * however should not exist in non-delegated units. On the unified hierarchy that's different,
4707 * there we get proper events. Hence rely on them. */
efdb0237 4708
c22800e4 4709 if (cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER) > 0 ||
1d9cc876 4710 (detect_container() == 0 && !unit_cgroup_delegate(u)))
e9db43d5 4711 wait_for_exit = true;
58ea275a 4712
1d98fef1 4713 if (send_sighup) {
82659fd7
LP
4714 set_free(pid_set);
4715
4716 pid_set = unit_pid_set(main_pid, control_pid);
4717 if (!pid_set)
4718 return -ENOMEM;
4719
1d98fef1
LP
4720 cg_kill_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path,
4721 SIGHUP,
4722 CGROUP_IGNORE_SELF,
4723 pid_set,
4724 NULL, NULL);
82659fd7
LP
4725 }
4726 }
cd2086fe
LP
4727 }
4728
4729 return wait_for_exit;
4730}
4731
eef85c4a 4732int unit_require_mounts_for(Unit *u, const char *path, UnitDependencyMask mask) {
ca8700e9 4733 _cleanup_free_ char *p = NULL;
eef85c4a 4734 UnitDependencyInfo di;
a57f7e2c
LP
4735 int r;
4736
4737 assert(u);
4738 assert(path);
4739
eef85c4a
LP
4740 /* Registers a unit for requiring a certain path and all its prefixes. We keep a hashtable of these paths in
4741 * the unit (from the path to the UnitDependencyInfo structure indicating how to the dependency came to
4742 * be). However, we build a prefix table for all possible prefixes so that new appearing mount units can easily
4743 * determine which units to make themselves a dependency of. */
a57f7e2c 4744
70b64bd3
ZJS
4745 if (!path_is_absolute(path))
4746 return -EINVAL;
4747
548f6937 4748 r = hashmap_ensure_allocated(&u->requires_mounts_for, &path_hash_ops);
eef85c4a
LP
4749 if (r < 0)
4750 return r;
4751
a57f7e2c
LP
4752 p = strdup(path);
4753 if (!p)
4754 return -ENOMEM;
4755
106bf8e4 4756 path = path_simplify(p, true);
a57f7e2c 4757
ca8700e9 4758 if (!path_is_normalized(path))
a57f7e2c 4759 return -EPERM;
a57f7e2c 4760
ca8700e9 4761 if (hashmap_contains(u->requires_mounts_for, path))
a57f7e2c 4762 return 0;
a57f7e2c 4763
eef85c4a
LP
4764 di = (UnitDependencyInfo) {
4765 .origin_mask = mask
4766 };
4767
ca8700e9
ZJS
4768 r = hashmap_put(u->requires_mounts_for, path, di.data);
4769 if (r < 0)
a57f7e2c 4770 return r;
ca8700e9 4771 p = NULL;
a57f7e2c 4772
4cb06c59 4773 char prefix[strlen(path) + 1];
ca8700e9 4774 PATH_FOREACH_PREFIX_MORE(prefix, path) {
a57f7e2c
LP
4775 Set *x;
4776
4777 x = hashmap_get(u->manager->units_requiring_mounts_for, prefix);
4778 if (!x) {
ca8700e9 4779 _cleanup_free_ char *q = NULL;
a57f7e2c 4780
548f6937 4781 r = hashmap_ensure_allocated(&u->manager->units_requiring_mounts_for, &path_hash_ops);
742f41ad
LP
4782 if (r < 0)
4783 return r;
a57f7e2c
LP
4784
4785 q = strdup(prefix);
4786 if (!q)
4787 return -ENOMEM;
4788
d5099efc 4789 x = set_new(NULL);
ca8700e9 4790 if (!x)
a57f7e2c 4791 return -ENOMEM;
a57f7e2c
LP
4792
4793 r = hashmap_put(u->manager->units_requiring_mounts_for, q, x);
4794 if (r < 0) {
a57f7e2c
LP
4795 set_free(x);
4796 return r;
4797 }
ca8700e9 4798 q = NULL;
a57f7e2c
LP
4799 }
4800
4801 r = set_put(x, u);
4802 if (r < 0)
4803 return r;
4804 }
4805
4806 return 0;
4807}
4808
613b411c
LP
4809int unit_setup_exec_runtime(Unit *u) {
4810 ExecRuntime **rt;
4811 size_t offset;
613b411c 4812 Unit *other;
eef85c4a
LP
4813 Iterator i;
4814 void *v;
e8a565cb 4815 int r;
613b411c
LP
4816
4817 offset = UNIT_VTABLE(u)->exec_runtime_offset;
4818 assert(offset > 0);
4819
06b643e7 4820 /* Check if there already is an ExecRuntime for this unit? */
613b411c
LP
4821 rt = (ExecRuntime**) ((uint8_t*) u + offset);
4822 if (*rt)
4823 return 0;
4824
4825 /* Try to get it from somebody else */
eef85c4a 4826 HASHMAP_FOREACH_KEY(v, other, u->dependencies[UNIT_JOINS_NAMESPACE_OF], i) {
e8a565cb
YW
4827 r = exec_runtime_acquire(u->manager, NULL, other->id, false, rt);
4828 if (r == 1)
4829 return 1;
613b411c
LP
4830 }
4831
e8a565cb 4832 return exec_runtime_acquire(u->manager, unit_get_exec_context(u), u->id, true, rt);
613b411c
LP
4833}
4834
29206d46
LP
4835int unit_setup_dynamic_creds(Unit *u) {
4836 ExecContext *ec;
4837 DynamicCreds *dcreds;
4838 size_t offset;
4839
4840 assert(u);
4841
4842 offset = UNIT_VTABLE(u)->dynamic_creds_offset;
4843 assert(offset > 0);
4844 dcreds = (DynamicCreds*) ((uint8_t*) u + offset);
4845
4846 ec = unit_get_exec_context(u);
4847 assert(ec);
4848
4849 if (!ec->dynamic_user)
4850 return 0;
4851
4852 return dynamic_creds_acquire(dcreds, u->manager, ec->user, ec->group);
4853}
4854
1c2e9646
LP
4855bool unit_type_supported(UnitType t) {
4856 if (_unlikely_(t < 0))
4857 return false;
4858 if (_unlikely_(t >= _UNIT_TYPE_MAX))
4859 return false;
4860
4861 if (!unit_vtable[t]->supported)
4862 return true;
4863
4864 return unit_vtable[t]->supported();
4865}
4866
8b4305c7
LP
4867void unit_warn_if_dir_nonempty(Unit *u, const char* where) {
4868 int r;
4869
4870 assert(u);
4871 assert(where);
4872
4873 r = dir_is_empty(where);
3f602115 4874 if (r > 0 || r == -ENOTDIR)
8b4305c7
LP
4875 return;
4876 if (r < 0) {
4877 log_unit_warning_errno(u, r, "Failed to check directory %s: %m", where);
4878 return;
4879 }
4880
4881 log_struct(LOG_NOTICE,
2b044526 4882 "MESSAGE_ID=" SD_MESSAGE_OVERMOUNTING_STR,
8b4305c7 4883 LOG_UNIT_ID(u),
f1c50bec 4884 LOG_UNIT_INVOCATION_ID(u),
8b4305c7 4885 LOG_UNIT_MESSAGE(u, "Directory %s to mount over is not empty, mounting anyway.", where),
a1230ff9 4886 "WHERE=%s", where);
8b4305c7
LP
4887}
4888
25cd4964 4889int unit_fail_if_noncanonical(Unit *u, const char* where) {
58d9d89b 4890 _cleanup_free_ char *canonical_where = NULL;
8b4305c7
LP
4891 int r;
4892
4893 assert(u);
4894 assert(where);
4895
25cd4964 4896 r = chase_symlinks(where, NULL, CHASE_NONEXISTENT, &canonical_where);
8b4305c7 4897 if (r < 0) {
25cd4964 4898 log_unit_debug_errno(u, r, "Failed to check %s for symlinks, ignoring: %m", where);
8b4305c7
LP
4899 return 0;
4900 }
25cd4964
AJ
4901
4902 /* We will happily ignore a trailing slash (or any redundant slashes) */
4903 if (path_equal(where, canonical_where))
8b4305c7
LP
4904 return 0;
4905
25cd4964 4906 /* No need to mention "." or "..", they would already have been rejected by unit_name_from_path() */
8b4305c7 4907 log_struct(LOG_ERR,
2b044526 4908 "MESSAGE_ID=" SD_MESSAGE_OVERMOUNTING_STR,
8b4305c7 4909 LOG_UNIT_ID(u),
f1c50bec 4910 LOG_UNIT_INVOCATION_ID(u),
25cd4964 4911 LOG_UNIT_MESSAGE(u, "Mount path %s is not canonical (contains a symlink).", where),
a1230ff9 4912 "WHERE=%s", where);
8b4305c7
LP
4913
4914 return -ELOOP;
4915}
0f13f3bd
LP
4916
4917bool unit_is_pristine(Unit *u) {
4918 assert(u);
4919
7c65093a 4920 /* Check if the unit already exists or is already around,
0f13f3bd
LP
4921 * in a number of different ways. Note that to cater for unit
4922 * types such as slice, we are generally fine with units that
e9e8cbc8
ZJS
4923 * are marked UNIT_LOADED even though nothing was actually
4924 * loaded, as those unit types don't require a file on disk. */
0f13f3bd
LP
4925
4926 return !(!IN_SET(u->load_state, UNIT_NOT_FOUND, UNIT_LOADED) ||
4927 u->fragment_path ||
4928 u->source_path ||
4929 !strv_isempty(u->dropin_paths) ||
0f13f3bd
LP
4930 u->job ||
4931 u->merged_into);
4932}
291d565a
LP
4933
4934pid_t unit_control_pid(Unit *u) {
4935 assert(u);
4936
4937 if (UNIT_VTABLE(u)->control_pid)
4938 return UNIT_VTABLE(u)->control_pid(u);
4939
4940 return 0;
4941}
4942
4943pid_t unit_main_pid(Unit *u) {
4944 assert(u);
4945
4946 if (UNIT_VTABLE(u)->main_pid)
4947 return UNIT_VTABLE(u)->main_pid(u);
4948
4949 return 0;
4950}
00d9ef85
LP
4951
4952static void unit_unref_uid_internal(
4953 Unit *u,
4954 uid_t *ref_uid,
4955 bool destroy_now,
4956 void (*_manager_unref_uid)(Manager *m, uid_t uid, bool destroy_now)) {
4957
4958 assert(u);
4959 assert(ref_uid);
4960 assert(_manager_unref_uid);
4961
4962 /* Generic implementation of both unit_unref_uid() and unit_unref_gid(), under the assumption that uid_t and
4963 * gid_t are actually the same time, with the same validity rules.
4964 *
4965 * Drops a reference to UID/GID from a unit. */
4966
4967 assert_cc(sizeof(uid_t) == sizeof(gid_t));
4968 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
4969
4970 if (!uid_is_valid(*ref_uid))
4971 return;
4972
4973 _manager_unref_uid(u->manager, *ref_uid, destroy_now);
4974 *ref_uid = UID_INVALID;
4975}
4976
4977void unit_unref_uid(Unit *u, bool destroy_now) {
4978 unit_unref_uid_internal(u, &u->ref_uid, destroy_now, manager_unref_uid);
4979}
4980
4981void unit_unref_gid(Unit *u, bool destroy_now) {
4982 unit_unref_uid_internal(u, (uid_t*) &u->ref_gid, destroy_now, manager_unref_gid);
4983}
4984
4985static int unit_ref_uid_internal(
4986 Unit *u,
4987 uid_t *ref_uid,
4988 uid_t uid,
4989 bool clean_ipc,
4990 int (*_manager_ref_uid)(Manager *m, uid_t uid, bool clean_ipc)) {
4991
4992 int r;
4993
4994 assert(u);
4995 assert(ref_uid);
4996 assert(uid_is_valid(uid));
4997 assert(_manager_ref_uid);
4998
4999 /* Generic implementation of both unit_ref_uid() and unit_ref_guid(), under the assumption that uid_t and gid_t
5000 * are actually the same type, and have the same validity rules.
5001 *
5002 * Adds a reference on a specific UID/GID to this unit. Each unit referencing the same UID/GID maintains a
5003 * reference so that we can destroy the UID/GID's IPC resources as soon as this is requested and the counter
5004 * drops to zero. */
5005
5006 assert_cc(sizeof(uid_t) == sizeof(gid_t));
5007 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
5008
5009 if (*ref_uid == uid)
5010 return 0;
5011
5012 if (uid_is_valid(*ref_uid)) /* Already set? */
5013 return -EBUSY;
5014
5015 r = _manager_ref_uid(u->manager, uid, clean_ipc);
5016 if (r < 0)
5017 return r;
5018
5019 *ref_uid = uid;
5020 return 1;
5021}
5022
5023int unit_ref_uid(Unit *u, uid_t uid, bool clean_ipc) {
5024 return unit_ref_uid_internal(u, &u->ref_uid, uid, clean_ipc, manager_ref_uid);
5025}
5026
5027int unit_ref_gid(Unit *u, gid_t gid, bool clean_ipc) {
5028 return unit_ref_uid_internal(u, (uid_t*) &u->ref_gid, (uid_t) gid, clean_ipc, manager_ref_gid);
5029}
5030
5031static int unit_ref_uid_gid_internal(Unit *u, uid_t uid, gid_t gid, bool clean_ipc) {
5032 int r = 0, q = 0;
5033
5034 assert(u);
5035
5036 /* Reference both a UID and a GID in one go. Either references both, or neither. */
5037
5038 if (uid_is_valid(uid)) {
5039 r = unit_ref_uid(u, uid, clean_ipc);
5040 if (r < 0)
5041 return r;
5042 }
5043
5044 if (gid_is_valid(gid)) {
5045 q = unit_ref_gid(u, gid, clean_ipc);
5046 if (q < 0) {
5047 if (r > 0)
5048 unit_unref_uid(u, false);
5049
5050 return q;
5051 }
5052 }
5053
5054 return r > 0 || q > 0;
5055}
5056
5057int unit_ref_uid_gid(Unit *u, uid_t uid, gid_t gid) {
5058 ExecContext *c;
5059 int r;
5060
5061 assert(u);
5062
5063 c = unit_get_exec_context(u);
5064
5065 r = unit_ref_uid_gid_internal(u, uid, gid, c ? c->remove_ipc : false);
5066 if (r < 0)
5067 return log_unit_warning_errno(u, r, "Couldn't add UID/GID reference to unit, proceeding without: %m");
5068
5069 return r;
5070}
5071
5072void unit_unref_uid_gid(Unit *u, bool destroy_now) {
5073 assert(u);
5074
5075 unit_unref_uid(u, destroy_now);
5076 unit_unref_gid(u, destroy_now);
5077}
5078
5079void unit_notify_user_lookup(Unit *u, uid_t uid, gid_t gid) {
5080 int r;
5081
5082 assert(u);
5083
5084 /* This is invoked whenever one of the forked off processes let's us know the UID/GID its user name/group names
5085 * resolved to. We keep track of which UID/GID is currently assigned in order to be able to destroy its IPC
5086 * objects when no service references the UID/GID anymore. */
5087
5088 r = unit_ref_uid_gid(u, uid, gid);
5089 if (r > 0)
37d0b962 5090 unit_add_to_dbus_queue(u);
00d9ef85 5091}
4b58153d
LP
5092
5093int unit_set_invocation_id(Unit *u, sd_id128_t id) {
5094 int r;
5095
5096 assert(u);
5097
5098 /* Set the invocation ID for this unit. If we cannot, this will not roll back, but reset the whole thing. */
5099
5100 if (sd_id128_equal(u->invocation_id, id))
5101 return 0;
5102
5103 if (!sd_id128_is_null(u->invocation_id))
5104 (void) hashmap_remove_value(u->manager->units_by_invocation_id, &u->invocation_id, u);
5105
5106 if (sd_id128_is_null(id)) {
5107 r = 0;
5108 goto reset;
5109 }
5110
5111 r = hashmap_ensure_allocated(&u->manager->units_by_invocation_id, &id128_hash_ops);
5112 if (r < 0)
5113 goto reset;
5114
5115 u->invocation_id = id;
5116 sd_id128_to_string(id, u->invocation_id_string);
5117
5118 r = hashmap_put(u->manager->units_by_invocation_id, &u->invocation_id, u);
5119 if (r < 0)
5120 goto reset;
5121
5122 return 0;
5123
5124reset:
5125 u->invocation_id = SD_ID128_NULL;
5126 u->invocation_id_string[0] = 0;
5127 return r;
5128}
5129
5130int unit_acquire_invocation_id(Unit *u) {
5131 sd_id128_t id;
5132 int r;
5133
5134 assert(u);
5135
5136 r = sd_id128_randomize(&id);
5137 if (r < 0)
5138 return log_unit_error_errno(u, r, "Failed to generate invocation ID for unit: %m");
5139
5140 r = unit_set_invocation_id(u, id);
5141 if (r < 0)
5142 return log_unit_error_errno(u, r, "Failed to set invocation ID for unit: %m");
5143
af92c603 5144 unit_add_to_dbus_queue(u);
4b58153d
LP
5145 return 0;
5146}
f0d47797 5147
1ad6e8b3
LP
5148int unit_set_exec_params(Unit *u, ExecParameters *p) {
5149 int r;
5150
7960b0c7
LP
5151 assert(u);
5152 assert(p);
f0d47797 5153
004c7f16 5154 /* Copy parameters from manager */
1ad6e8b3
LP
5155 r = manager_get_effective_environment(u->manager, &p->environment);
5156 if (r < 0)
5157 return r;
5158
004c7f16
LP
5159 p->confirm_spawn = manager_get_confirm_spawn(u->manager);
5160 p->cgroup_supported = u->manager->cgroup_supported;
5161 p->prefix = u->manager->prefix;
5162 SET_FLAG(p->flags, EXEC_PASS_LOG_UNIT|EXEC_CHOWN_DIRECTORIES, MANAGER_IS_SYSTEM(u->manager));
5163
5238e957 5164 /* Copy parameters from unit */
7960b0c7 5165 p->cgroup_path = u->cgroup_path;
1d9cc876 5166 SET_FLAG(p->flags, EXEC_CGROUP_DELEGATE, unit_cgroup_delegate(u));
1ad6e8b3
LP
5167
5168 return 0;
f0d47797 5169}
a79279c7 5170
4c253ed1 5171int unit_fork_helper_process(Unit *u, const char *name, pid_t *ret) {
a79279c7
LP
5172 int r;
5173
5174 assert(u);
5175 assert(ret);
5176
5177 /* Forks off a helper process and makes sure it is a member of the unit's cgroup. Returns == 0 in the child,
5178 * and > 0 in the parent. The pid parameter is always filled in with the child's PID. */
5179
5180 (void) unit_realize_cgroup(u);
5181
4c253ed1
LP
5182 r = safe_fork(name, FORK_REOPEN_LOG, ret);
5183 if (r != 0)
5184 return r;
a79279c7 5185
4c253ed1
LP
5186 (void) default_signals(SIGNALS_CRASH_HANDLER, SIGNALS_IGNORE, -1);
5187 (void) ignore_signals(SIGPIPE, -1);
a79279c7 5188
4c253ed1 5189 (void) prctl(PR_SET_PDEATHSIG, SIGTERM);
a79279c7 5190
4c253ed1
LP
5191 if (u->cgroup_path) {
5192 r = cg_attach_everywhere(u->manager->cgroup_supported, u->cgroup_path, 0, NULL, NULL);
5193 if (r < 0) {
5194 log_unit_error_errno(u, r, "Failed to join unit cgroup %s: %m", u->cgroup_path);
5195 _exit(EXIT_CGROUP);
a79279c7 5196 }
a79279c7
LP
5197 }
5198
4c253ed1 5199 return 0;
a79279c7 5200}
c999cf38
LP
5201
5202static void unit_update_dependency_mask(Unit *u, UnitDependency d, Unit *other, UnitDependencyInfo di) {
5203 assert(u);
5204 assert(d >= 0);
5205 assert(d < _UNIT_DEPENDENCY_MAX);
5206 assert(other);
5207
5208 if (di.origin_mask == 0 && di.destination_mask == 0) {
5209 /* No bit set anymore, let's drop the whole entry */
5210 assert_se(hashmap_remove(u->dependencies[d], other));
5211 log_unit_debug(u, "%s lost dependency %s=%s", u->id, unit_dependency_to_string(d), other->id);
5212 } else
5213 /* Mask was reduced, let's update the entry */
5214 assert_se(hashmap_update(u->dependencies[d], other, di.data) == 0);
5215}
5216
5217void unit_remove_dependencies(Unit *u, UnitDependencyMask mask) {
5218 UnitDependency d;
5219
5220 assert(u);
5221
5222 /* Removes all dependencies u has on other units marked for ownership by 'mask'. */
5223
5224 if (mask == 0)
5225 return;
5226
5227 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++) {
5228 bool done;
5229
5230 do {
5231 UnitDependencyInfo di;
5232 Unit *other;
5233 Iterator i;
5234
5235 done = true;
5236
5237 HASHMAP_FOREACH_KEY(di.data, other, u->dependencies[d], i) {
5238 UnitDependency q;
5239
5240 if ((di.origin_mask & ~mask) == di.origin_mask)
5241 continue;
5242 di.origin_mask &= ~mask;
5243 unit_update_dependency_mask(u, d, other, di);
5244
5245 /* We updated the dependency from our unit to the other unit now. But most dependencies
5246 * imply a reverse dependency. Hence, let's delete that one too. For that we go through
5247 * all dependency types on the other unit and delete all those which point to us and
5248 * have the right mask set. */
5249
5250 for (q = 0; q < _UNIT_DEPENDENCY_MAX; q++) {
5251 UnitDependencyInfo dj;
5252
5253 dj.data = hashmap_get(other->dependencies[q], u);
5254 if ((dj.destination_mask & ~mask) == dj.destination_mask)
5255 continue;
5256 dj.destination_mask &= ~mask;
5257
5258 unit_update_dependency_mask(other, q, u, dj);
5259 }
5260
5261 unit_add_to_gc_queue(other);
5262
5263 done = false;
5264 break;
5265 }
5266
5267 } while (!done);
5268 }
5269}
d3070fbd
LP
5270
5271static int unit_export_invocation_id(Unit *u) {
5272 const char *p;
5273 int r;
5274
5275 assert(u);
5276
5277 if (u->exported_invocation_id)
5278 return 0;
5279
5280 if (sd_id128_is_null(u->invocation_id))
5281 return 0;
5282
5283 p = strjoina("/run/systemd/units/invocation:", u->id);
5284 r = symlink_atomic(u->invocation_id_string, p);
5285 if (r < 0)
5286 return log_unit_debug_errno(u, r, "Failed to create invocation ID symlink %s: %m", p);
5287
5288 u->exported_invocation_id = true;
5289 return 0;
5290}
5291
5292static int unit_export_log_level_max(Unit *u, const ExecContext *c) {
5293 const char *p;
5294 char buf[2];
5295 int r;
5296
5297 assert(u);
5298 assert(c);
5299
5300 if (u->exported_log_level_max)
5301 return 0;
5302
5303 if (c->log_level_max < 0)
5304 return 0;
5305
5306 assert(c->log_level_max <= 7);
5307
5308 buf[0] = '0' + c->log_level_max;
5309 buf[1] = 0;
5310
5311 p = strjoina("/run/systemd/units/log-level-max:", u->id);
5312 r = symlink_atomic(buf, p);
5313 if (r < 0)
5314 return log_unit_debug_errno(u, r, "Failed to create maximum log level symlink %s: %m", p);
5315
5316 u->exported_log_level_max = true;
5317 return 0;
5318}
5319
5320static int unit_export_log_extra_fields(Unit *u, const ExecContext *c) {
5321 _cleanup_close_ int fd = -1;
5322 struct iovec *iovec;
5323 const char *p;
5324 char *pattern;
5325 le64_t *sizes;
5326 ssize_t n;
5327 size_t i;
5328 int r;
5329
5330 if (u->exported_log_extra_fields)
5331 return 0;
5332
5333 if (c->n_log_extra_fields <= 0)
5334 return 0;
5335
5336 sizes = newa(le64_t, c->n_log_extra_fields);
5337 iovec = newa(struct iovec, c->n_log_extra_fields * 2);
5338
5339 for (i = 0; i < c->n_log_extra_fields; i++) {
5340 sizes[i] = htole64(c->log_extra_fields[i].iov_len);
5341
5342 iovec[i*2] = IOVEC_MAKE(sizes + i, sizeof(le64_t));
5343 iovec[i*2+1] = c->log_extra_fields[i];
5344 }
5345
5346 p = strjoina("/run/systemd/units/log-extra-fields:", u->id);
5347 pattern = strjoina(p, ".XXXXXX");
5348
5349 fd = mkostemp_safe(pattern);
5350 if (fd < 0)
5351 return log_unit_debug_errno(u, fd, "Failed to create extra fields file %s: %m", p);
5352
5353 n = writev(fd, iovec, c->n_log_extra_fields*2);
5354 if (n < 0) {
5355 r = log_unit_debug_errno(u, errno, "Failed to write extra fields: %m");
5356 goto fail;
5357 }
5358
5359 (void) fchmod(fd, 0644);
5360
5361 if (rename(pattern, p) < 0) {
5362 r = log_unit_debug_errno(u, errno, "Failed to rename extra fields file: %m");
5363 goto fail;
5364 }
5365
5366 u->exported_log_extra_fields = true;
5367 return 0;
5368
5369fail:
5370 (void) unlink(pattern);
5371 return r;
5372}
5373
90fc172e
AZ
5374static int unit_export_log_rate_limit_interval(Unit *u, const ExecContext *c) {
5375 _cleanup_free_ char *buf = NULL;
5376 const char *p;
5377 int r;
5378
5379 assert(u);
5380 assert(c);
5381
5382 if (u->exported_log_rate_limit_interval)
5383 return 0;
5384
5385 if (c->log_rate_limit_interval_usec == 0)
5386 return 0;
5387
5388 p = strjoina("/run/systemd/units/log-rate-limit-interval:", u->id);
5389
5390 if (asprintf(&buf, "%" PRIu64, c->log_rate_limit_interval_usec) < 0)
5391 return log_oom();
5392
5393 r = symlink_atomic(buf, p);
5394 if (r < 0)
5395 return log_unit_debug_errno(u, r, "Failed to create log rate limit interval symlink %s: %m", p);
5396
5397 u->exported_log_rate_limit_interval = true;
5398 return 0;
5399}
5400
5401static int unit_export_log_rate_limit_burst(Unit *u, const ExecContext *c) {
5402 _cleanup_free_ char *buf = NULL;
5403 const char *p;
5404 int r;
5405
5406 assert(u);
5407 assert(c);
5408
5409 if (u->exported_log_rate_limit_burst)
5410 return 0;
5411
5412 if (c->log_rate_limit_burst == 0)
5413 return 0;
5414
5415 p = strjoina("/run/systemd/units/log-rate-limit-burst:", u->id);
5416
5417 if (asprintf(&buf, "%u", c->log_rate_limit_burst) < 0)
5418 return log_oom();
5419
5420 r = symlink_atomic(buf, p);
5421 if (r < 0)
5422 return log_unit_debug_errno(u, r, "Failed to create log rate limit burst symlink %s: %m", p);
5423
5424 u->exported_log_rate_limit_burst = true;
5425 return 0;
5426}
5427
d3070fbd
LP
5428void unit_export_state_files(Unit *u) {
5429 const ExecContext *c;
5430
5431 assert(u);
5432
5433 if (!u->id)
5434 return;
5435
5436 if (!MANAGER_IS_SYSTEM(u->manager))
5437 return;
5438
638cece4 5439 if (MANAGER_IS_TEST_RUN(u->manager))
8f632531
LP
5440 return;
5441
d3070fbd
LP
5442 /* Exports a couple of unit properties to /run/systemd/units/, so that journald can quickly query this data
5443 * from there. Ideally, journald would use IPC to query this, like everybody else, but that's hard, as long as
5444 * the IPC system itself and PID 1 also log to the journal.
5445 *
5446 * Note that these files really shouldn't be considered API for anyone else, as use a runtime file system as
5447 * IPC replacement is not compatible with today's world of file system namespaces. However, this doesn't really
5448 * apply to communication between the journal and systemd, as we assume that these two daemons live in the same
5449 * namespace at least.
5450 *
5451 * Note that some of the "files" exported here are actually symlinks and not regular files. Symlinks work
5452 * better for storing small bits of data, in particular as we can write them with two system calls, and read
5453 * them with one. */
5454
5455 (void) unit_export_invocation_id(u);
5456
5457 c = unit_get_exec_context(u);
5458 if (c) {
5459 (void) unit_export_log_level_max(u, c);
5460 (void) unit_export_log_extra_fields(u, c);
90fc172e
AZ
5461 (void) unit_export_log_rate_limit_interval(u, c);
5462 (void) unit_export_log_rate_limit_burst(u, c);
d3070fbd
LP
5463 }
5464}
5465
5466void unit_unlink_state_files(Unit *u) {
5467 const char *p;
5468
5469 assert(u);
5470
5471 if (!u->id)
5472 return;
5473
5474 if (!MANAGER_IS_SYSTEM(u->manager))
5475 return;
5476
5477 /* Undoes the effect of unit_export_state() */
5478
5479 if (u->exported_invocation_id) {
5480 p = strjoina("/run/systemd/units/invocation:", u->id);
5481 (void) unlink(p);
5482
5483 u->exported_invocation_id = false;
5484 }
5485
5486 if (u->exported_log_level_max) {
5487 p = strjoina("/run/systemd/units/log-level-max:", u->id);
5488 (void) unlink(p);
5489
5490 u->exported_log_level_max = false;
5491 }
5492
5493 if (u->exported_log_extra_fields) {
5494 p = strjoina("/run/systemd/units/extra-fields:", u->id);
5495 (void) unlink(p);
5496
5497 u->exported_log_extra_fields = false;
5498 }
90fc172e
AZ
5499
5500 if (u->exported_log_rate_limit_interval) {
5501 p = strjoina("/run/systemd/units/log-rate-limit-interval:", u->id);
5502 (void) unlink(p);
5503
5504 u->exported_log_rate_limit_interval = false;
5505 }
5506
5507 if (u->exported_log_rate_limit_burst) {
5508 p = strjoina("/run/systemd/units/log-rate-limit-burst:", u->id);
5509 (void) unlink(p);
5510
5511 u->exported_log_rate_limit_burst = false;
5512 }
d3070fbd 5513}
5afe510c 5514
3c7416b6
LP
5515int unit_prepare_exec(Unit *u) {
5516 int r;
5517
5518 assert(u);
5519
fab34748
KL
5520 /* Load any custom firewall BPF programs here once to test if they are existing and actually loadable.
5521 * Fail here early since later errors in the call chain unit_realize_cgroup to cgroup_context_apply are ignored. */
5522 r = bpf_firewall_load_custom(u);
5523 if (r < 0)
5524 return r;
5525
3c7416b6
LP
5526 /* Prepares everything so that we can fork of a process for this unit */
5527
5528 (void) unit_realize_cgroup(u);
5529
5530 if (u->reset_accounting) {
9b2559a1 5531 (void) unit_reset_accounting(u);
3c7416b6
LP
5532 u->reset_accounting = false;
5533 }
5534
5535 unit_export_state_files(u);
5536
5537 r = unit_setup_exec_runtime(u);
5538 if (r < 0)
5539 return r;
5540
5541 r = unit_setup_dynamic_creds(u);
5542 if (r < 0)
5543 return r;
5544
5545 return 0;
5546}
5547
c53d2d54 5548static int log_leftover(pid_t pid, int sig, void *userdata) {
a4634b21
LP
5549 _cleanup_free_ char *comm = NULL;
5550
5551 (void) get_process_comm(pid, &comm);
5552
5553 if (comm && comm[0] == '(') /* Most likely our own helper process (PAM?), ignore */
c53d2d54 5554 return 0;
a4634b21
LP
5555
5556 log_unit_warning(userdata,
5557 "Found left-over process " PID_FMT " (%s) in control group while starting unit. Ignoring.\n"
5558 "This usually indicates unclean termination of a previous run, or service implementation deficiencies.",
5559 pid, strna(comm));
c53d2d54
DB
5560
5561 return 1;
a4634b21
LP
5562}
5563
c53d2d54 5564int unit_warn_leftover_processes(Unit *u) {
a4634b21
LP
5565 assert(u);
5566
5567 (void) unit_pick_cgroup_path(u);
5568
5569 if (!u->cgroup_path)
c53d2d54 5570 return 0;
a4634b21 5571
c53d2d54 5572 return cg_kill_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, 0, 0, NULL, log_leftover, u);
a4634b21
LP
5573}
5574
bb2c7685
LP
5575bool unit_needs_console(Unit *u) {
5576 ExecContext *ec;
5577 UnitActiveState state;
5578
5579 assert(u);
5580
5581 state = unit_active_state(u);
5582
5583 if (UNIT_IS_INACTIVE_OR_FAILED(state))
5584 return false;
5585
5586 if (UNIT_VTABLE(u)->needs_console)
5587 return UNIT_VTABLE(u)->needs_console(u);
5588
5589 /* If this unit type doesn't implement this call, let's use a generic fallback implementation: */
5590 ec = unit_get_exec_context(u);
5591 if (!ec)
5592 return false;
5593
5594 return exec_context_may_touch_console(ec);
5595}
5596
81e9871e
LP
5597const char *unit_label_path(Unit *u) {
5598 const char *p;
5599
5600 /* Returns the file system path to use for MAC access decisions, i.e. the file to read the SELinux label off
5601 * when validating access checks. */
5602
5603 p = u->source_path ?: u->fragment_path;
5604 if (!p)
5605 return NULL;
5606
5607 /* If a unit is masked, then don't read the SELinux label of /dev/null, as that really makes no sense */
5608 if (path_equal(p, "/dev/null"))
5609 return NULL;
5610
5611 return p;
5612}
5613
6592b975
LP
5614int unit_pid_attachable(Unit *u, pid_t pid, sd_bus_error *error) {
5615 int r;
5616
5617 assert(u);
5618
5619 /* Checks whether the specified PID is generally good for attaching, i.e. a valid PID, not our manager itself,
5620 * and not a kernel thread either */
5621
5622 /* First, a simple range check */
5623 if (!pid_is_valid(pid))
5624 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Process identifier " PID_FMT " is not valid.", pid);
5625
5626 /* Some extra safety check */
5627 if (pid == 1 || pid == getpid_cached())
3fe91079 5628 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Process " PID_FMT " is a manager process, refusing.", pid);
6592b975
LP
5629
5630 /* Don't even begin to bother with kernel threads */
5631 r = is_kernel_thread(pid);
5632 if (r == -ESRCH)
5633 return sd_bus_error_setf(error, SD_BUS_ERROR_UNIX_PROCESS_ID_UNKNOWN, "Process with ID " PID_FMT " does not exist.", pid);
5634 if (r < 0)
5635 return sd_bus_error_set_errnof(error, r, "Failed to determine whether process " PID_FMT " is a kernel thread: %m", pid);
5636 if (r > 0)
5637 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Process " PID_FMT " is a kernel thread, refusing.", pid);
5638
5639 return 0;
5640}
5641
523ee2d4
LP
5642void unit_log_success(Unit *u) {
5643 assert(u);
5644
5645 log_struct(LOG_INFO,
5646 "MESSAGE_ID=" SD_MESSAGE_UNIT_SUCCESS_STR,
5647 LOG_UNIT_ID(u),
5648 LOG_UNIT_INVOCATION_ID(u),
5649 LOG_UNIT_MESSAGE(u, "Succeeded."));
5650}
5651
7c047d74
LP
5652void unit_log_failure(Unit *u, const char *result) {
5653 assert(u);
5654 assert(result);
5655
5656 log_struct(LOG_WARNING,
5657 "MESSAGE_ID=" SD_MESSAGE_UNIT_FAILURE_RESULT_STR,
5658 LOG_UNIT_ID(u),
5659 LOG_UNIT_INVOCATION_ID(u),
5660 LOG_UNIT_MESSAGE(u, "Failed with result '%s'.", result),
5661 "UNIT_RESULT=%s", result);
5662}
5663
91bbd9b7
LP
5664void unit_log_process_exit(
5665 Unit *u,
5666 int level,
5667 const char *kind,
5668 const char *command,
5669 int code,
5670 int status) {
5671
5672 assert(u);
5673 assert(kind);
5674
5675 if (code != CLD_EXITED)
5676 level = LOG_WARNING;
5677
5678 log_struct(level,
5679 "MESSAGE_ID=" SD_MESSAGE_UNIT_PROCESS_EXIT_STR,
5680 LOG_UNIT_MESSAGE(u, "%s exited, code=%s, status=%i/%s",
5681 kind,
5682 sigchld_code_to_string(code), status,
5683 strna(code == CLD_EXITED
5684 ? exit_status_to_string(status, EXIT_STATUS_FULL)
5685 : signal_to_string(status))),
5686 "EXIT_CODE=%s", sigchld_code_to_string(code),
5687 "EXIT_STATUS=%i", status,
5688 "COMMAND=%s", strna(command),
5689 LOG_UNIT_ID(u),
5690 LOG_UNIT_INVOCATION_ID(u));
5691}
5692
7af67e9a
LP
5693int unit_exit_status(Unit *u) {
5694 assert(u);
5695
5696 /* Returns the exit status to propagate for the most recent cycle of this unit. Returns a value in the range
5697 * 0…255 if there's something to propagate. EOPNOTSUPP if the concept does not apply to this unit type, ENODATA
5698 * if no data is currently known (for example because the unit hasn't deactivated yet) and EBADE if the main
5699 * service process has exited abnormally (signal/coredump). */
5700
5701 if (!UNIT_VTABLE(u)->exit_status)
5702 return -EOPNOTSUPP;
5703
5704 return UNIT_VTABLE(u)->exit_status(u);
5705}
5706
5707int unit_failure_action_exit_status(Unit *u) {
5708 int r;
5709
5710 assert(u);
5711
5712 /* Returns the exit status to propagate on failure, or an error if there's nothing to propagate */
5713
5714 if (u->failure_action_exit_status >= 0)
5715 return u->failure_action_exit_status;
5716
5717 r = unit_exit_status(u);
5718 if (r == -EBADE) /* Exited, but not cleanly (i.e. by signal or such) */
5719 return 255;
5720
5721 return r;
5722}
5723
5724int unit_success_action_exit_status(Unit *u) {
5725 int r;
5726
5727 assert(u);
5728
5729 /* Returns the exit status to propagate on success, or an error if there's nothing to propagate */
5730
5731 if (u->success_action_exit_status >= 0)
5732 return u->success_action_exit_status;
5733
5734 r = unit_exit_status(u);
5735 if (r == -EBADE) /* Exited, but not cleanly (i.e. by signal or such) */
5736 return 255;
5737
5738 return r;
5739}
5740
a4191c9f
LP
5741int unit_test_trigger_loaded(Unit *u) {
5742 Unit *trigger;
5743
5744 /* Tests whether the unit to trigger is loaded */
5745
5746 trigger = UNIT_TRIGGER(u);
5747 if (!trigger)
5748 return log_unit_error_errno(u, SYNTHETIC_ERRNO(ENOENT), "Refusing to start, unit to trigger not loaded.");
5749 if (trigger->load_state != UNIT_LOADED)
5750 return log_unit_error_errno(u, SYNTHETIC_ERRNO(ENOENT), "Refusing to start, unit %s to trigger not loaded.", u->id);
5751
5752 return 0;
5753}
5754
380dc8b0
LP
5755int unit_clean(Unit *u, ExecCleanMask mask) {
5756 UnitActiveState state;
5757
5758 assert(u);
5759
5760 /* Special return values:
5761 *
5762 * -EOPNOTSUPP → cleaning not supported for this unit type
5763 * -EUNATCH → cleaning not defined for this resource type
5764 * -EBUSY → unit currently can't be cleaned since it's running or not properly loaded, or has
5765 * a job queued or similar
5766 */
5767
5768 if (!UNIT_VTABLE(u)->clean)
5769 return -EOPNOTSUPP;
5770
5771 if (mask == 0)
5772 return -EUNATCH;
5773
5774 if (u->load_state != UNIT_LOADED)
5775 return -EBUSY;
5776
5777 if (u->job)
5778 return -EBUSY;
5779
5780 state = unit_active_state(u);
5781 if (!IN_SET(state, UNIT_INACTIVE))
5782 return -EBUSY;
5783
5784 return UNIT_VTABLE(u)->clean(u, mask);
5785}
5786
5787int unit_can_clean(Unit *u, ExecCleanMask *ret) {
5788 assert(u);
5789
5790 if (!UNIT_VTABLE(u)->clean ||
5791 u->load_state != UNIT_LOADED) {
5792 *ret = 0;
5793 return 0;
5794 }
5795
5796 /* When the clean() method is set, can_clean() really should be set too */
5797 assert(UNIT_VTABLE(u)->can_clean);
5798
5799 return UNIT_VTABLE(u)->can_clean(u, ret);
5800}
5801
5afe510c
LP
5802static const char* const collect_mode_table[_COLLECT_MODE_MAX] = {
5803 [COLLECT_INACTIVE] = "inactive",
5804 [COLLECT_INACTIVE_OR_FAILED] = "inactive-or-failed",
5805};
5806
5807DEFINE_STRING_TABLE_LOOKUP(collect_mode, CollectMode);