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