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