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