]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/unit.c
mkosi: Install integritysetup on CentOS/Fedora
[thirdparty/systemd.git] / src / core / unit.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
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"
5f8ba20d 14#include "bpf-foreign.h"
cd09a5f3 15#include "bpf-socket-bind.h"
4f5dd394 16#include "bus-common-errors.h"
8df433d7 17#include "bus-internal.h"
4f5dd394 18#include "bus-util.h"
fdb3deca 19#include "cgroup-setup.h"
c6c18be3 20#include "cgroup-util.h"
f461a28d 21#include "chase.h"
e30bbc90 22#include "core-varlink.h"
4f5dd394
LP
23#include "dbus-unit.h"
24#include "dbus.h"
25#include "dropin.h"
88e4bfa6 26#include "env-util.h"
4f5dd394 27#include "escape.h"
43962c30 28#include "exec-credential.h"
4f5dd394 29#include "execute.h"
6a48d82f 30#include "fd-util.h"
a5c32cff 31#include "fileio-label.h"
ee228be1 32#include "fileio.h"
f97b34a6 33#include "format-util.h"
4b58153d 34#include "id128-util.h"
5cfa33e0 35#include "install.h"
bd1ae178 36#include "iovec-util.h"
0690160e 37#include "label-util.h"
4f5dd394
LP
38#include "load-dropin.h"
39#include "load-fragment.h"
40#include "log.h"
8c41640a 41#include "logarithm.h"
4f5dd394 42#include "macro.h"
35cd0ba5 43#include "mkdir-label.h"
4f5dd394 44#include "path-util.h"
0b452006 45#include "process-util.h"
810ef318 46#include "rm-rf.h"
48b92b37 47#include "serialize.h"
4f5dd394 48#include "set.h"
6eb7c172 49#include "signal-util.h"
d3070fbd 50#include "sparse-endian.h"
e9db43d5 51#include "special.h"
2e59b241 52#include "specifier.h"
8fcde012 53#include "stat-util.h"
d054f0a4 54#include "stdio-util.h"
5afe510c 55#include "string-table.h"
07630cea 56#include "string-util.h"
4f5dd394 57#include "strv.h"
5b262f74 58#include "terminal-util.h"
e4de7287 59#include "tmpfile-util.h"
4f4afc88 60#include "umask-util.h"
4f5dd394 61#include "unit-name.h"
e9db43d5 62#include "unit.h"
b1d4f8e1
LP
63#include "user-util.h"
64#include "virt.h"
91ce91c7
JK
65#if BPF_FRAMEWORK
66#include "bpf-link.h"
67#endif
87f0e418 68
37109b85
ZJS
69/* Thresholds for logging at INFO level about resource consumption */
70#define MENTIONWORTHY_CPU_NSEC (1 * NSEC_PER_SEC)
71#define MENTIONWORTHY_IO_BYTES (1024 * 1024ULL)
72#define MENTIONWORTHY_IP_BYTES (0ULL)
73
74/* Thresholds for logging at INFO level about resource consumption */
75#define NOTICEWORTHY_CPU_NSEC (10*60 * NSEC_PER_SEC) /* 10 minutes */
76#define NOTICEWORTHY_IO_BYTES (10 * 1024 * 1024ULL) /* 10 MB */
77#define NOTICEWORTHY_IP_BYTES (128 * 1024 * 1024ULL) /* 128 MB */
78
87f0e418
LP
79const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX] = {
80 [UNIT_SERVICE] = &service_vtable,
87f0e418
LP
81 [UNIT_SOCKET] = &socket_vtable,
82 [UNIT_TARGET] = &target_vtable,
83 [UNIT_DEVICE] = &device_vtable,
84 [UNIT_MOUNT] = &mount_vtable,
85 [UNIT_AUTOMOUNT] = &automount_vtable,
01f78473 86 [UNIT_SWAP] = &swap_vtable,
e821075a 87 [UNIT_TIMER] = &timer_vtable,
a016b922 88 [UNIT_PATH] = &path_vtable,
6c12b52e 89 [UNIT_SLICE] = &slice_vtable,
5afe510c 90 [UNIT_SCOPE] = &scope_vtable,
87f0e418
LP
91};
92
75db809a 93Unit* unit_new(Manager *m, size_t size) {
87f0e418
LP
94 Unit *u;
95
96 assert(m);
ac155bb8 97 assert(size >= sizeof(Unit));
87f0e418 98
7d17cfbc
MS
99 u = malloc0(size);
100 if (!u)
87f0e418
LP
101 return NULL;
102
ac155bb8
MS
103 u->manager = m;
104 u->type = _UNIT_TYPE_INVALID;
ac155bb8
MS
105 u->default_dependencies = true;
106 u->unit_file_state = _UNIT_FILE_STATE_INVALID;
d2dc52db 107 u->unit_file_preset = -1;
d420282b 108 u->on_failure_job_mode = JOB_REPLACE;
294446dc 109 u->on_success_job_mode = JOB_FAIL;
0bb814c2 110 u->cgroup_control_inotify_wd = -1;
afcfaa69 111 u->cgroup_memory_inotify_wd = -1;
36c16a7c 112 u->job_timeout = USEC_INFINITY;
a2df3ea4 113 u->job_running_timeout = USEC_INFINITY;
00d9ef85
LP
114 u->ref_uid = UID_INVALID;
115 u->ref_gid = GID_INVALID;
fe700f46 116 u->cpu_usage_last = NSEC_INFINITY;
9824ab1f 117
d4bdc202
MY
118 unit_reset_memory_accounting_last(u);
119
120 unit_reset_io_accounting_last(u);
9824ab1f 121
17f14955 122 u->cgroup_invalidated_mask |= CGROUP_MASK_BPF_FIREWALL;
7af67e9a 123 u->failure_action_exit_status = u->success_action_exit_status = -1;
87f0e418 124
254d1313
ZJS
125 u->ip_accounting_ingress_map_fd = -EBADF;
126 u->ip_accounting_egress_map_fd = -EBADF;
cbd2abbb 127
254d1313
ZJS
128 u->ipv4_allow_map_fd = -EBADF;
129 u->ipv6_allow_map_fd = -EBADF;
130 u->ipv4_deny_map_fd = -EBADF;
131 u->ipv6_deny_map_fd = -EBADF;
6a48d82f 132
2e59b241
LP
133 u->last_section_private = -1;
134
fed25720 135 u->start_ratelimit = (const RateLimit) {
c9e120e0 136 m->defaults.start_limit_interval,
fed25720 137 m->defaults.start_limit_burst,
c9e120e0
LP
138 };
139
fed25720 140 u->auto_start_stop_ratelimit = (const RateLimit) { .interval = 10 * USEC_PER_SEC, .burst = 16 };
bea355da 141
87f0e418
LP
142 return u;
143}
144
a581e45a 145int unit_new_for_name(Manager *m, size_t size, const char *name, Unit **ret) {
dc409696 146 _cleanup_(unit_freep) Unit *u = NULL;
a581e45a
LP
147 int r;
148
149 u = unit_new(m, size);
150 if (!u)
151 return -ENOMEM;
152
153 r = unit_add_name(u, name);
dc409696 154 if (r < 0)
a581e45a 155 return r;
a581e45a 156
1cc6c93a
YW
157 *ret = TAKE_PTR(u);
158
a581e45a
LP
159 return r;
160}
161
303ee601 162bool unit_has_name(const Unit *u, const char *name) {
f278026d
LP
163 assert(u);
164 assert(name);
165
4562c355
ZJS
166 return streq_ptr(name, u->id) ||
167 set_contains(u->aliases, name);
f278026d
LP
168}
169
598459ce
LP
170static void unit_init(Unit *u) {
171 CGroupContext *cc;
172 ExecContext *ec;
173 KillContext *kc;
174
175 assert(u);
176 assert(u->manager);
177 assert(u->type >= 0);
178
179 cc = unit_get_cgroup_context(u);
180 if (cc) {
181 cgroup_context_init(cc);
182
183 /* Copy in the manager defaults into the cgroup
184 * context, _before_ the rest of the settings have
185 * been initialized */
186
c9e120e0
LP
187 cc->cpu_accounting = u->manager->defaults.cpu_accounting;
188 cc->io_accounting = u->manager->defaults.io_accounting;
189 cc->blockio_accounting = u->manager->defaults.blockio_accounting;
190 cc->memory_accounting = u->manager->defaults.memory_accounting;
191 cc->tasks_accounting = u->manager->defaults.tasks_accounting;
192 cc->ip_accounting = u->manager->defaults.ip_accounting;
0af20ea2
LP
193
194 if (u->type != UNIT_SLICE)
c9e120e0 195 cc->tasks_max = u->manager->defaults.tasks_max;
6bb00842 196
c9e120e0
LP
197 cc->memory_pressure_watch = u->manager->defaults.memory_pressure_watch;
198 cc->memory_pressure_threshold_usec = u->manager->defaults.memory_pressure_threshold_usec;
598459ce
LP
199 }
200
201 ec = unit_get_exec_context(u);
b1edf445 202 if (ec) {
598459ce
LP
203 exec_context_init(ec);
204
c9e120e0
LP
205 if (u->manager->defaults.oom_score_adjust_set) {
206 ec->oom_score_adjust = u->manager->defaults.oom_score_adjust;
d4a402e4
LP
207 ec->oom_score_adjust_set = true;
208 }
209
5e37d193
FB
210 if (MANAGER_IS_SYSTEM(u->manager))
211 ec->keyring_mode = EXEC_KEYRING_SHARED;
212 else {
213 ec->keyring_mode = EXEC_KEYRING_INHERIT;
214
215 /* User manager might have its umask redefined by PAM or UMask=. In this
216 * case let the units it manages inherit this value by default. They can
217 * still tune this value through their own unit file */
41beeb3e 218 (void) get_process_umask(0, &ec->umask);
5e37d193 219 }
b1edf445
LP
220 }
221
598459ce
LP
222 kc = unit_get_kill_context(u);
223 if (kc)
224 kill_context_init(kc);
225
226 if (UNIT_VTABLE(u)->init)
227 UNIT_VTABLE(u)->init(u);
228}
229
4562c355
ZJS
230static int unit_add_alias(Unit *u, char *donated_name) {
231 int r;
232
233 /* Make sure that u->names is allocated. We may leave u->names
234 * empty if we fail later, but this is not a problem. */
973bc32a 235 r = set_ensure_put(&u->aliases, &string_hash_ops, donated_name);
4562c355
ZJS
236 if (r < 0)
237 return r;
238 assert(r > 0);
239
240 return 0;
241}
242
87f0e418 243int unit_add_name(Unit *u, const char *text) {
4562c355 244 _cleanup_free_ char *name = NULL, *instance = NULL;
87f0e418 245 UnitType t;
87f0e418
LP
246 int r;
247
248 assert(u);
249 assert(text);
250
7410616c 251 if (unit_name_is_valid(text, UNIT_NAME_TEMPLATE)) {
ac155bb8 252 if (!u->instance)
acd1987a
WY
253 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(EINVAL),
254 "instance is not set when adding name '%s': %m", text);
87f0e418 255
4562c355 256 r = unit_name_replace_instance(text, u->instance, &name);
7410616c 257 if (r < 0)
acd1987a
WY
258 return log_unit_debug_errno(u, r,
259 "failed to build instance name from '%s': %m", text);
7410616c 260 } else {
4562c355
ZJS
261 name = strdup(text);
262 if (!name)
7410616c
LP
263 return -ENOMEM;
264 }
87f0e418 265
4562c355 266 if (unit_has_name(u, name))
7410616c 267 return 0;
4562c355
ZJS
268
269 if (hashmap_contains(u->manager->units, name))
acd1987a 270 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(EEXIST),
4562c355 271 "unit already exist when adding name '%s': %m", name);
7410616c 272
4562c355 273 if (!unit_name_is_valid(name, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE))
acd1987a 274 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(EINVAL),
4562c355 275 "name '%s' is invalid: %m", name);
e537352b 276
4562c355 277 t = unit_name_to_type(name);
7410616c 278 if (t < 0)
acd1987a 279 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(EINVAL),
cd990847 280 "failed to derive unit type from name '%s': %m", name);
87f0e418 281
598459ce 282 if (u->type != _UNIT_TYPE_INVALID && t != u->type)
acd1987a
WY
283 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(EINVAL),
284 "unit type is illegal: u->type(%d) and t(%d) for name '%s': %m",
4562c355 285 u->type, t, name);
87f0e418 286
4562c355 287 r = unit_name_to_instance(name, &instance);
e48614c4 288 if (r < 0)
4562c355 289 return log_unit_debug_errno(u, r, "failed to extract instance from name '%s': %m", name);
87f0e418 290
4562c355
ZJS
291 if (instance && !unit_type_may_template(t))
292 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(EINVAL), "templates are not allowed for name '%s': %m", name);
9e2f7c11 293
d383acad
ZJS
294 /* Ensure that this unit either has no instance, or that the instance matches. */
295 if (u->type != _UNIT_TYPE_INVALID && !streq_ptr(u->instance, instance))
acd1987a 296 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(EINVAL),
ada4b34e
ZJS
297 "cannot add name %s, the instances don't match (\"%s\" != \"%s\").",
298 name, instance, u->instance);
9e2f7c11 299
4562c355 300 if (u->id && !unit_type_may_alias(t))
ada4b34e
ZJS
301 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(EEXIST),
302 "cannot add name %s, aliases are not allowed for %s units.",
303 name, unit_type_to_string(t));
9e2f7c11 304
598459ce 305 if (hashmap_size(u->manager->units) >= MANAGER_MAX_NAMES)
ada4b34e 306 return log_unit_warning_errno(u, SYNTHETIC_ERRNO(E2BIG), "cannot add name, manager has too many units: %m");
4f0f902f 307
4562c355
ZJS
308 /* Add name to the global hashmap first, because that's easier to undo */
309 r = hashmap_put(u->manager->units, name, u);
7410616c 310 if (r < 0)
acd1987a 311 return log_unit_debug_errno(u, r, "add unit to hashmap failed for name '%s': %m", text);
87f0e418 312
4562c355
ZJS
313 if (u->id) {
314 r = unit_add_alias(u, name); /* unit_add_alias() takes ownership of the name on success */
315 if (r < 0) {
316 hashmap_remove(u->manager->units, name);
317 return r;
318 }
319 TAKE_PTR(name);
320
321 } else {
322 /* A new name, we don't need the set yet. */
323 assert(u->type == _UNIT_TYPE_INVALID);
324 assert(!u->instance);
325
ac155bb8 326 u->type = t;
4562c355
ZJS
327 u->id = TAKE_PTR(name);
328 u->instance = TAKE_PTR(instance);
9e2f7c11 329
71fda00f 330 LIST_PREPEND(units_by_type, u->manager->units_by_type[t], u);
598459ce 331 unit_init(u);
598459ce 332 }
9e2f7c11 333
598459ce
LP
334 unit_add_to_dbus_queue(u);
335 return 0;
87f0e418
LP
336}
337
0ae97ec1 338int unit_choose_id(Unit *u, const char *name) {
68eda4bd 339 _cleanup_free_ char *t = NULL;
4562c355 340 char *s;
276c3e78 341 int r;
0ae97ec1
LP
342
343 assert(u);
344 assert(name);
345
7410616c 346 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
ac155bb8 347 if (!u->instance)
9e2f7c11
LP
348 return -EINVAL;
349
7410616c
LP
350 r = unit_name_replace_instance(name, u->instance, &t);
351 if (r < 0)
352 return r;
9e2f7c11
LP
353
354 name = t;
355 }
356
4562c355
ZJS
357 if (streq_ptr(u->id, name))
358 return 0; /* Nothing to do. */
359
360 /* Selects one of the aliases of this unit as the id */
361 s = set_get(u->aliases, (char*) name);
9e2f7c11 362 if (!s)
0ae97ec1
LP
363 return -ENOENT;
364
4562c355
ZJS
365 if (u->id) {
366 r = set_remove_and_put(u->aliases, name, u->id);
367 if (r < 0)
368 return r;
369 } else
370 assert_se(set_remove(u->aliases, name)); /* see set_get() above… */
276c3e78 371
4562c355 372 u->id = s; /* Old u->id is now stored in the set, and s is not stored anywhere */
c1e1601e 373 unit_add_to_dbus_queue(u);
9e2f7c11 374
0ae97ec1
LP
375 return 0;
376}
377
f50e0a01 378int unit_set_description(Unit *u, const char *description) {
84b26d51 379 int r;
f50e0a01
LP
380
381 assert(u);
382
84b26d51
LP
383 r = free_and_strdup(&u->description, empty_to_null(description));
384 if (r < 0)
385 return r;
386 if (r > 0)
387 unit_add_to_dbus_queue(u);
c1e1601e 388
f50e0a01
LP
389 return 0;
390}
391
02de9614
ZJS
392static bool unit_success_failure_handler_has_jobs(Unit *unit) {
393 Unit *other;
394
395 UNIT_FOREACH_DEPENDENCY(other, unit, UNIT_ATOM_ON_SUCCESS)
396 if (other->job || other->nop_job)
397 return true;
398
399 UNIT_FOREACH_DEPENDENCY(other, unit, UNIT_ATOM_ON_FAILURE)
400 if (other->job || other->nop_job)
401 return true;
402
403 return false;
404}
405
6ac62d61
LP
406void unit_release_resources(Unit *u) {
407 UnitActiveState state;
1ba84fef 408 ExecContext *ec;
6ac62d61
LP
409
410 assert(u);
411
412 if (u->job || u->nop_job)
413 return;
414
415 if (u->perpetual)
416 return;
417
418 state = unit_active_state(u);
419 if (!IN_SET(state, UNIT_INACTIVE, UNIT_FAILED))
420 return;
421
422 if (unit_will_restart(u))
423 return;
424
1ba84fef
LP
425 ec = unit_get_exec_context(u);
426 if (ec && ec->runtime_directory_preserve_mode == EXEC_PRESERVE_RESTART)
427 exec_context_destroy_runtime_directory(ec, u->manager->prefix[EXEC_DIRECTORY_RUNTIME]);
428
6ac62d61
LP
429 if (UNIT_VTABLE(u)->release_resources)
430 UNIT_VTABLE(u)->release_resources(u);
431}
432
f2f725e5 433bool unit_may_gc(Unit *u) {
a354329f 434 UnitActiveState state;
e98b2fbb 435 int r;
5afe510c 436
701cc384
LP
437 assert(u);
438
6ac62d61
LP
439 /* Checks whether the unit is ready to be unloaded for garbage collection. Returns true when the
440 * unit may be collected, and false if there's some reason to keep it loaded.
2641f02e 441 *
6ac62d61
LP
442 * References from other units are *not* checked here. Instead, this is done in unit_gc_sweep(), but
443 * using markers to properly collect dependency loops.
2641f02e 444 */
5afe510c 445
02de9614 446 if (u->job || u->nop_job)
f2f725e5 447 return false;
6c073082 448
f5869324 449 if (u->perpetual)
f2f725e5 450 return false;
9d576438 451
935f8042
LP
452 /* if we saw a cgroup empty event for this unit, stay around until we processed it so that we remove
453 * the empty cgroup if possible. Similar, process any pending OOM events if they are already queued
454 * before we release the unit. */
455 if (u->in_cgroup_empty_queue || u->in_cgroup_oom_queue)
8db99898
RP
456 return false;
457
af05bb97
LP
458 /* Make sure to send out D-Bus events before we unload the unit */
459 if (u->in_dbus_queue)
460 return false;
461
05a98afd 462 if (sd_bus_track_count(u->bus_track) > 0)
f2f725e5 463 return false;
05a98afd 464
6ac62d61
LP
465 state = unit_active_state(u);
466
467 /* But we keep the unit object around for longer when it is referenced or configured to not be
468 * gc'ed */
5afe510c
LP
469 switch (u->collect_mode) {
470
471 case COLLECT_INACTIVE:
472 if (state != UNIT_INACTIVE)
f2f725e5 473 return false;
5afe510c
LP
474
475 break;
476
477 case COLLECT_INACTIVE_OR_FAILED:
478 if (!IN_SET(state, UNIT_INACTIVE, UNIT_FAILED))
f2f725e5 479 return false;
5afe510c
LP
480
481 break;
482
483 default:
04499a70 484 assert_not_reached();
5afe510c
LP
485 }
486
02de9614
ZJS
487 /* Check if any OnFailure= or on Success= jobs may be pending */
488 if (unit_success_failure_handler_has_jobs(u))
489 return false;
490
e98b2fbb
LP
491 if (u->cgroup_path) {
492 /* If the unit has a cgroup, then check whether there's anything in it. If so, we should stay
493 * around. Units with active processes should never be collected. */
494
495 r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path);
496 if (r < 0)
6178e2f8 497 log_unit_debug_errno(u, r, "Failed to determine whether cgroup %s is empty: %m", empty_to_root(u->cgroup_path));
e98b2fbb 498 if (r <= 0)
f2f725e5 499 return false;
e98b2fbb
LP
500 }
501
6ac62d61
LP
502 if (!UNIT_VTABLE(u)->may_gc)
503 return true;
701cc384 504
6ac62d61 505 return UNIT_VTABLE(u)->may_gc(u);
701cc384
LP
506}
507
87f0e418
LP
508void unit_add_to_load_queue(Unit *u) {
509 assert(u);
ac155bb8 510 assert(u->type != _UNIT_TYPE_INVALID);
87f0e418 511
ac155bb8 512 if (u->load_state != UNIT_STUB || u->in_load_queue)
87f0e418
LP
513 return;
514
71fda00f 515 LIST_PREPEND(load_queue, u->manager->load_queue, u);
ac155bb8 516 u->in_load_queue = true;
87f0e418
LP
517}
518
23a177ef
LP
519void unit_add_to_cleanup_queue(Unit *u) {
520 assert(u);
521
ac155bb8 522 if (u->in_cleanup_queue)
23a177ef
LP
523 return;
524
71fda00f 525 LIST_PREPEND(cleanup_queue, u->manager->cleanup_queue, u);
ac155bb8 526 u->in_cleanup_queue = true;
23a177ef
LP
527}
528
701cc384
LP
529void unit_add_to_gc_queue(Unit *u) {
530 assert(u);
531
ac155bb8 532 if (u->in_gc_queue || u->in_cleanup_queue)
701cc384
LP
533 return;
534
f2f725e5 535 if (!unit_may_gc(u))
701cc384
LP
536 return;
537
c5a97ed1 538 LIST_PREPEND(gc_queue, u->manager->gc_unit_queue, u);
ac155bb8 539 u->in_gc_queue = true;
701cc384
LP
540}
541
c1e1601e
LP
542void unit_add_to_dbus_queue(Unit *u) {
543 assert(u);
ac155bb8 544 assert(u->type != _UNIT_TYPE_INVALID);
c1e1601e 545
ac155bb8 546 if (u->load_state == UNIT_STUB || u->in_dbus_queue)
c1e1601e
LP
547 return;
548
a567261a 549 /* Shortcut things if nobody cares */
8f8f05a9 550 if (sd_bus_track_count(u->manager->subscribed) <= 0 &&
ae572acd 551 sd_bus_track_count(u->bus_track) <= 0 &&
8f8f05a9 552 set_isempty(u->manager->private_buses)) {
ac155bb8 553 u->sent_dbus_new_signal = true;
94b6dfa2
LP
554 return;
555 }
556
71fda00f 557 LIST_PREPEND(dbus_queue, u->manager->dbus_unit_queue, u);
ac155bb8 558 u->in_dbus_queue = true;
c1e1601e
LP
559}
560
fda09318 561void unit_submit_to_stop_when_unneeded_queue(Unit *u) {
a3c1168a
LP
562 assert(u);
563
564 if (u->in_stop_when_unneeded_queue)
565 return;
566
567 if (!u->stop_when_unneeded)
568 return;
569
570 if (!UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
571 return;
572
573 LIST_PREPEND(stop_when_unneeded_queue, u->manager->stop_when_unneeded_queue, u);
574 u->in_stop_when_unneeded_queue = true;
575}
576
0bc488c9
LP
577void unit_submit_to_start_when_upheld_queue(Unit *u) {
578 assert(u);
579
580 if (u->in_start_when_upheld_queue)
581 return;
582
583 if (!UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(u)))
584 return;
585
586 if (!unit_has_dependency(u, UNIT_ATOM_START_STEADILY, NULL))
587 return;
588
589 LIST_PREPEND(start_when_upheld_queue, u->manager->start_when_upheld_queue, u);
590 u->in_start_when_upheld_queue = true;
591}
592
56c59592
LP
593void unit_submit_to_stop_when_bound_queue(Unit *u) {
594 assert(u);
595
596 if (u->in_stop_when_bound_queue)
597 return;
598
599 if (!UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
600 return;
601
602 if (!unit_has_dependency(u, UNIT_ATOM_CANNOT_BE_ACTIVE_WITHOUT, NULL))
603 return;
604
605 LIST_PREPEND(stop_when_bound_queue, u->manager->stop_when_bound_queue, u);
606 u->in_stop_when_bound_queue = true;
607}
608
1ba84fef
LP
609static bool unit_can_release_resources(Unit *u) {
610 ExecContext *ec;
611
612 assert(u);
613
614 if (UNIT_VTABLE(u)->release_resources)
615 return true;
616
617 ec = unit_get_exec_context(u);
618 if (ec && ec->runtime_directory_preserve_mode == EXEC_PRESERVE_RESTART)
619 return true;
620
621 return false;
622}
623
6ac62d61
LP
624void unit_submit_to_release_resources_queue(Unit *u) {
625 assert(u);
626
627 if (u->in_release_resources_queue)
628 return;
629
630 if (u->job || u->nop_job)
631 return;
632
633 if (u->perpetual)
634 return;
635
1ba84fef 636 if (!unit_can_release_resources(u))
6ac62d61
LP
637 return;
638
639 LIST_PREPEND(release_resources_queue, u->manager->release_resources_queue, u);
640 u->in_release_resources_queue = true;
641}
642
15ed3c3a 643static void unit_clear_dependencies(Unit *u) {
87f0e418
LP
644 assert(u);
645
15ed3c3a
LP
646 /* Removes all dependencies configured on u and their reverse dependencies. */
647
648 for (Hashmap *deps; (deps = hashmap_steal_first(u->dependencies));) {
87f0e418 649
15ed3c3a
LP
650 for (Unit *other; (other = hashmap_steal_first_key(deps));) {
651 Hashmap *other_deps;
701cc384 652
15ed3c3a
LP
653 HASHMAP_FOREACH(other_deps, other->dependencies)
654 hashmap_remove(other_deps, u);
655
656 unit_add_to_gc_queue(other);
657 }
658
659 hashmap_free(deps);
87f0e418
LP
660 }
661
15ed3c3a 662 u->dependencies = hashmap_free(u->dependencies);
87f0e418
LP
663}
664
c2756a68 665static void unit_remove_transient(Unit *u) {
c2756a68
LP
666 assert(u);
667
668 if (!u->transient)
669 return;
670
671 if (u->fragment_path)
3f5e8115 672 (void) unlink(u->fragment_path);
c2756a68
LP
673
674 STRV_FOREACH(i, u->dropin_paths) {
39591351 675 _cleanup_free_ char *p = NULL, *pp = NULL;
c2756a68 676
45519d13 677 if (path_extract_directory(*i, &p) < 0) /* Get the drop-in directory from the drop-in file */
39591351
LP
678 continue;
679
45519d13 680 if (path_extract_directory(p, &pp) < 0) /* Get the config directory from the drop-in directory */
39591351
LP
681 continue;
682
683 /* Only drop transient drop-ins */
684 if (!path_equal(u->manager->lookup_paths.transient, pp))
685 continue;
c2756a68 686
39591351
LP
687 (void) unlink(*i);
688 (void) rmdir(p);
c2756a68
LP
689 }
690}
691
a57f7e2c 692static void unit_free_requires_mounts_for(Unit *u) {
eef85c4a 693 assert(u);
a57f7e2c 694
eef85c4a 695 for (;;) {
c2b2df60 696 _cleanup_free_ char *path = NULL;
a57f7e2c 697
eef85c4a
LP
698 path = hashmap_steal_first_key(u->requires_mounts_for);
699 if (!path)
700 break;
701 else {
702 char s[strlen(path) + 1];
a57f7e2c 703
eef85c4a
LP
704 PATH_FOREACH_PREFIX_MORE(s, path) {
705 char *y;
706 Set *x;
707
708 x = hashmap_get2(u->manager->units_requiring_mounts_for, s, (void**) &y);
709 if (!x)
710 continue;
a57f7e2c 711
eef85c4a 712 (void) set_remove(x, u);
a57f7e2c 713
eef85c4a
LP
714 if (set_isempty(x)) {
715 (void) hashmap_remove(u->manager->units_requiring_mounts_for, y);
716 free(y);
717 set_free(x);
718 }
a57f7e2c
LP
719 }
720 }
721 }
722
eef85c4a 723 u->requires_mounts_for = hashmap_free(u->requires_mounts_for);
a57f7e2c
LP
724}
725
598459ce
LP
726static void unit_done(Unit *u) {
727 ExecContext *ec;
728 CGroupContext *cc;
729
730 assert(u);
731
732 if (u->type < 0)
733 return;
734
735 if (UNIT_VTABLE(u)->done)
736 UNIT_VTABLE(u)->done(u);
737
738 ec = unit_get_exec_context(u);
739 if (ec)
740 exec_context_done(ec);
741
742 cc = unit_get_cgroup_context(u);
743 if (cc)
744 cgroup_context_done(cc);
745}
746
75db809a 747Unit* unit_free(Unit *u) {
12f64221 748 Unit *slice;
87f0e418
LP
749 char *t;
750
c9d5c9c0 751 if (!u)
75db809a 752 return NULL;
87f0e418 753
7223d500
LB
754 sd_event_source_disable_unref(u->auto_start_stop_event_source);
755
50fb00b7 756 u->transient_file = safe_fclose(u->transient_file);
4f4afc88 757
2c289ea8 758 if (!MANAGER_IS_RELOADING(u->manager))
c2756a68
LP
759 unit_remove_transient(u);
760
c1e1601e
LP
761 bus_unit_send_removed_signal(u);
762
598459ce 763 unit_done(u);
a013b84b 764
50be4f4a 765 unit_dequeue_rewatch_pids(u);
cf9fd508 766
73458283
YW
767 u->match_bus_slot = sd_bus_slot_unref(u->match_bus_slot);
768 u->bus_track = sd_bus_track_unref(u->bus_track);
05a98afd 769 u->deserialized_refs = strv_free(u->deserialized_refs);
af1e3365 770 u->pending_freezer_invocation = sd_bus_message_unref(u->pending_freezer_invocation);
05a98afd 771
a57f7e2c
LP
772 unit_free_requires_mounts_for(u);
773
90e74a66 774 SET_FOREACH(t, u->aliases)
ac155bb8 775 hashmap_remove_value(u->manager->units, t, u);
4562c355
ZJS
776 if (u->id)
777 hashmap_remove_value(u->manager->units, u->id, u);
87f0e418 778
4b58153d
LP
779 if (!sd_id128_is_null(u->invocation_id))
780 hashmap_remove_value(u->manager->units_by_invocation_id, &u->invocation_id, u);
781
97e7d748
MS
782 if (u->job) {
783 Job *j = u->job;
784 job_uninstall(j);
785 job_free(j);
786 }
964e0949 787
e0209d83
MS
788 if (u->nop_job) {
789 Job *j = u->nop_job;
790 job_uninstall(j);
791 job_free(j);
792 }
793
4c591f39
MK
794 /* A unit is being dropped from the tree, make sure our family is realized properly. Do this after we
795 * detach the unit from slice tree in order to eliminate its effect on controller masks. */
12f64221 796 slice = UNIT_GET_SLICE(u);
d219a2b0 797 unit_clear_dependencies(u);
12f64221
LP
798 if (slice)
799 unit_add_family_to_cgroup_realize_queue(slice);
fb46fca7 800
adefcf28
LP
801 if (u->on_console)
802 manager_unref_console(u->manager);
803
3d027d4d 804 fdset_free(u->initial_socket_bind_link_fds);
91ce91c7
JK
805#if BPF_FRAMEWORK
806 bpf_link_free(u->ipv4_socket_bind_link);
807 bpf_link_free(u->ipv6_socket_bind_link);
808#endif
809
efdb0237 810 unit_release_cgroup(u);
72673e86 811
d3070fbd
LP
812 if (!MANAGER_IS_RELOADING(u->manager))
813 unit_unlink_state_files(u);
814
00d9ef85
LP
815 unit_unref_uid_gid(u, false);
816
5269eb6b 817 (void) manager_update_failed_units(u->manager, u, false);
db785129 818 set_remove(u->manager->startup_units, u);
f755e3b7 819
a911bb9a
LP
820 unit_unwatch_all_pids(u);
821
7f7d01ed
ZJS
822 while (u->refs_by_target)
823 unit_ref_unset(u->refs_by_target);
57020a3a 824
ac155bb8 825 if (u->type != _UNIT_TYPE_INVALID)
71fda00f 826 LIST_REMOVE(units_by_type, u->manager->units_by_type[u->type], u);
ef734fd6 827
ac155bb8 828 if (u->in_load_queue)
71fda00f 829 LIST_REMOVE(load_queue, u->manager->load_queue, u);
87f0e418 830
ac155bb8 831 if (u->in_dbus_queue)
71fda00f 832 LIST_REMOVE(dbus_queue, u->manager->dbus_unit_queue, u);
c1e1601e 833
13e72103
MK
834 if (u->in_cleanup_queue)
835 LIST_REMOVE(cleanup_queue, u->manager->cleanup_queue, u);
836
a2d72e26 837 if (u->in_gc_queue)
c5a97ed1 838 LIST_REMOVE(gc_queue, u->manager->gc_unit_queue, u);
701cc384 839
91a6073e
LP
840 if (u->in_cgroup_realize_queue)
841 LIST_REMOVE(cgroup_realize_queue, u->manager->cgroup_realize_queue, u);
87f0e418 842
09e24654
LP
843 if (u->in_cgroup_empty_queue)
844 LIST_REMOVE(cgroup_empty_queue, u->manager->cgroup_empty_queue, u);
845
13e72103
MK
846 if (u->in_cgroup_oom_queue)
847 LIST_REMOVE(cgroup_oom_queue, u->manager->cgroup_oom_queue, u);
adefcf28 848
19496554
MS
849 if (u->in_target_deps_queue)
850 LIST_REMOVE(target_deps_queue, u->manager->target_deps_queue, u);
851
a3c1168a
LP
852 if (u->in_stop_when_unneeded_queue)
853 LIST_REMOVE(stop_when_unneeded_queue, u->manager->stop_when_unneeded_queue, u);
854
0bc488c9
LP
855 if (u->in_start_when_upheld_queue)
856 LIST_REMOVE(start_when_upheld_queue, u->manager->start_when_upheld_queue, u);
857
56c59592
LP
858 if (u->in_stop_when_bound_queue)
859 LIST_REMOVE(stop_when_bound_queue, u->manager->stop_when_bound_queue, u);
860
6ac62d61
LP
861 if (u->in_release_resources_queue)
862 LIST_REMOVE(release_resources_queue, u->manager->release_resources_queue, u);
863
0fd9c28c 864 bpf_firewall_close(u);
fab34748 865
5f8ba20d
JK
866 hashmap_free(u->bpf_foreign_by_key);
867
76dc1725 868 bpf_program_free(u->bpf_device_control_installed);
084c7007 869
6f50d4f7
MV
870#if BPF_FRAMEWORK
871 bpf_link_free(u->restrict_ifaces_ingress_bpf_link);
872 bpf_link_free(u->restrict_ifaces_egress_bpf_link);
873#endif
874 fdset_free(u->initial_restric_ifaces_link_fds);
875
a946fa9b
ZJS
876 condition_free_list(u->conditions);
877 condition_free_list(u->asserts);
f755e3b7 878
ac155bb8 879 free(u->description);
49dbfa7b 880 strv_free(u->documentation);
ac155bb8 881 free(u->fragment_path);
1b64d026 882 free(u->source_path);
ae7a7182 883 strv_free(u->dropin_paths);
ac155bb8 884 free(u->instance);
87f0e418 885
f189ab18 886 free(u->job_timeout_reboot_arg);
6bf0f408
LP
887 free(u->reboot_arg);
888
23e9a7dd
LP
889 free(u->access_selinux_context);
890
4562c355
ZJS
891 set_free_free(u->aliases);
892 free(u->id);
893
48b92b37
LB
894 activation_details_unref(u->activation_details);
895
75db809a 896 return mfree(u);
87f0e418
LP
897}
898
d9e45bc3
MS
899FreezerState unit_freezer_state(Unit *u) {
900 assert(u);
901
902 return u->freezer_state;
903}
904
905int unit_freezer_state_kernel(Unit *u, FreezerState *ret) {
906 char *values[1] = {};
907 int r;
908
909 assert(u);
910
911 r = cg_get_keyed_attribute(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, "cgroup.events",
912 STRV_MAKE("frozen"), values);
913 if (r < 0)
914 return r;
915
916 r = _FREEZER_STATE_INVALID;
917
918 if (values[0]) {
919 if (streq(values[0], "0"))
920 r = FREEZER_RUNNING;
921 else if (streq(values[0], "1"))
922 r = FREEZER_FROZEN;
923 }
924
925 free(values[0]);
926 *ret = r;
927
928 return 0;
929}
930
87f0e418
LP
931UnitActiveState unit_active_state(Unit *u) {
932 assert(u);
933
ac155bb8 934 if (u->load_state == UNIT_MERGED)
6124958c
LP
935 return unit_active_state(unit_follow_merge(u));
936
937 /* After a reload it might happen that a unit is not correctly
938 * loaded but still has a process around. That's why we won't
fdf20a31 939 * shortcut failed loading to UNIT_INACTIVE_FAILED. */
87f0e418
LP
940
941 return UNIT_VTABLE(u)->active_state(u);
942}
943
10a94420
LP
944const char* unit_sub_state_to_string(Unit *u) {
945 assert(u);
946
947 return UNIT_VTABLE(u)->sub_state_to_string(u);
948}
949
15ed3c3a 950static int unit_merge_names(Unit *u, Unit *other) {
4562c355 951 char *name;
7c0b05e5 952 int r;
87f0e418 953
23a177ef
LP
954 assert(u);
955 assert(other);
956
4562c355 957 r = unit_add_alias(u, other->id);
7c0b05e5
MS
958 if (r < 0)
959 return r;
23a177ef 960
4562c355
ZJS
961 r = set_move(u->aliases, other->aliases);
962 if (r < 0) {
963 set_remove(u->aliases, other->id);
964 return r;
965 }
23a177ef 966
4562c355
ZJS
967 TAKE_PTR(other->id);
968 other->aliases = set_free_free(other->aliases);
23a177ef 969
90e74a66 970 SET_FOREACH(name, u->aliases)
4562c355 971 assert_se(hashmap_replace(u->manager->units, name, u) == 0);
7c0b05e5
MS
972
973 return 0;
87f0e418
LP
974}
975
15ed3c3a
LP
976static int unit_reserve_dependencies(Unit *u, Unit *other) {
977 size_t n_reserve;
978 Hashmap* deps;
979 void *d;
980 int r;
09a65f92
MS
981
982 assert(u);
983 assert(other);
09a65f92 984
15ed3c3a
LP
985 /* Let's reserve some space in the dependency hashmaps so that later on merging the units cannot
986 * fail.
987 *
18fe76eb 988 * First make some room in the per dependency type hashmaps. Using the summed size of both units'
15ed3c3a
LP
989 * hashmaps is an estimate that is likely too high since they probably use some of the same
990 * types. But it's never too low, and that's all we need. */
991
992 n_reserve = MIN(hashmap_size(other->dependencies), LESS_BY((size_t) _UNIT_DEPENDENCY_MAX, hashmap_size(u->dependencies)));
993 if (n_reserve > 0) {
994 r = hashmap_ensure_allocated(&u->dependencies, NULL);
995 if (r < 0)
996 return r;
997
998 r = hashmap_reserve(u->dependencies, n_reserve);
999 if (r < 0)
1000 return r;
1001 }
1002
1003 /* Now, enlarge our per dependency type hashmaps by the number of entries in the same hashmap of the
1004 * other unit's dependencies.
1005 *
1006 * NB: If u does not have a dependency set allocated for some dependency type, there is no need to
1007 * reserve anything for. In that case other's set will be transferred as a whole to u by
1008 * complete_move(). */
1009
1010 HASHMAP_FOREACH_KEY(deps, d, u->dependencies) {
1011 Hashmap *other_deps;
1012
1013 other_deps = hashmap_get(other->dependencies, d);
1014
1015 r = hashmap_reserve(deps, hashmap_size(other_deps));
1016 if (r < 0)
1017 return r;
1018 }
1019
1020 return 0;
1021}
1022
ed991163 1023static bool unit_should_warn_about_dependency(UnitDependency dependency) {
15ed3c3a 1024 /* Only warn about some unit types */
ed991163
YW
1025 return IN_SET(dependency,
1026 UNIT_CONFLICTS,
1027 UNIT_CONFLICTED_BY,
1028 UNIT_BEFORE,
1029 UNIT_AFTER,
1030 UNIT_ON_SUCCESS,
1031 UNIT_ON_FAILURE,
1032 UNIT_TRIGGERS,
1033 UNIT_TRIGGERED_BY);
15ed3c3a
LP
1034}
1035
1036static int unit_per_dependency_type_hashmap_update(
1037 Hashmap *per_type,
1038 Unit *other,
1039 UnitDependencyMask origin_mask,
1040 UnitDependencyMask destination_mask) {
1041
1042 UnitDependencyInfo info;
1043 int r;
1044
1045 assert(other);
1046 assert_cc(sizeof(void*) == sizeof(info));
1047
1048 /* Acquire the UnitDependencyInfo entry for the Unit* we are interested in, and update it if it
1049 * exists, or insert it anew if not. */
09a65f92 1050
15ed3c3a
LP
1051 info.data = hashmap_get(per_type, other);
1052 if (info.data) {
1053 /* Entry already exists. Add in our mask. */
1054
1055 if (FLAGS_SET(origin_mask, info.origin_mask) &&
1056 FLAGS_SET(destination_mask, info.destination_mask))
1057 return 0; /* NOP */
1058
1059 info.origin_mask |= origin_mask;
1060 info.destination_mask |= destination_mask;
1061
1062 r = hashmap_update(per_type, other, info.data);
1063 } else {
1064 info = (UnitDependencyInfo) {
1065 .origin_mask = origin_mask,
1066 .destination_mask = destination_mask,
1067 };
09a65f92 1068
15ed3c3a
LP
1069 r = hashmap_put(per_type, other, info.data);
1070 }
1071 if (r < 0)
1072 return r;
1073
15ed3c3a 1074 return 1;
09a65f92
MS
1075}
1076
c8b3b524
YW
1077static void unit_merge_dependencies(Unit *u, Unit *other) {
1078 Hashmap *deps;
1079 void *dt; /* Actually of type UnitDependency, except that we don't bother casting it here,
1080 * since the hashmaps all want it as void pointer. */
eef85c4a 1081
23a177ef
LP
1082 assert(u);
1083 assert(other);
23a177ef 1084
15ed3c3a
LP
1085 if (u == other)
1086 return;
1087
c8b3b524
YW
1088 /* First, remove dependency to other. */
1089 HASHMAP_FOREACH_KEY(deps, dt, u->dependencies) {
ed991163
YW
1090 if (hashmap_remove(deps, other) && unit_should_warn_about_dependency(UNIT_DEPENDENCY_FROM_PTR(dt)))
1091 log_unit_warning(u, "Dependency %s=%s is dropped, as %s is merged into %s.",
1092 unit_dependency_to_string(UNIT_DEPENDENCY_FROM_PTR(dt)),
1093 other->id, other->id, u->id);
c8b3b524
YW
1094
1095 if (hashmap_isempty(deps))
1096 hashmap_free(hashmap_remove(u->dependencies, dt));
1097 }
1098
15ed3c3a 1099 for (;;) {
5d2a48da 1100 _cleanup_hashmap_free_ Hashmap *other_deps = NULL;
15ed3c3a
LP
1101 UnitDependencyInfo di_back;
1102 Unit *back;
15ed3c3a
LP
1103
1104 /* Let's focus on one dependency type at a time, that 'other' has defined. */
1105 other_deps = hashmap_steal_first_key_and_value(other->dependencies, &dt);
1106 if (!other_deps)
1107 break; /* done! */
1108
4b7918a6
YW
1109 deps = hashmap_get(u->dependencies, dt);
1110
15ed3c3a
LP
1111 /* Now iterate through all dependencies of this dependency type, of 'other'. We refer to the
1112 * referenced units as 'back'. */
1113 HASHMAP_FOREACH_KEY(di_back.data, back, other_deps) {
1114 Hashmap *back_deps;
1115 void *back_dt;
eef85c4a 1116
e66047ff 1117 if (back == u) {
15ed3c3a
LP
1118 /* This is a dependency pointing back to the unit we want to merge with?
1119 * Suppress it (but warn) */
ed991163
YW
1120 if (unit_should_warn_about_dependency(UNIT_DEPENDENCY_FROM_PTR(dt)))
1121 log_unit_warning(u, "Dependency %s=%s in %s is dropped, as %s is merged into %s.",
1122 unit_dependency_to_string(UNIT_DEPENDENCY_FROM_PTR(dt)),
1123 u->id, other->id, other->id, u->id);
1124
4b7918a6 1125 hashmap_remove(other_deps, back);
15ed3c3a
LP
1126 continue;
1127 }
eef85c4a 1128
15ed3c3a
LP
1129 /* Now iterate through all deps of 'back', and fix the ones pointing to 'other' to
1130 * point to 'u' instead. */
1131 HASHMAP_FOREACH_KEY(back_deps, back_dt, back->dependencies) {
1132 UnitDependencyInfo di_move;
eef85c4a 1133
15ed3c3a
LP
1134 di_move.data = hashmap_remove(back_deps, other);
1135 if (!di_move.data)
1136 continue;
eef85c4a 1137
15ed3c3a
LP
1138 assert_se(unit_per_dependency_type_hashmap_update(
1139 back_deps,
1140 u,
1141 di_move.origin_mask,
1142 di_move.destination_mask) >= 0);
1143 }
eef85c4a 1144
15ed3c3a 1145 /* The target unit already has dependencies of this type, let's then merge this individually. */
4b7918a6
YW
1146 if (deps)
1147 assert_se(unit_per_dependency_type_hashmap_update(
1148 deps,
1149 back,
1150 di_back.origin_mask,
1151 di_back.destination_mask) >= 0);
15ed3c3a 1152 }
4b7918a6
YW
1153
1154 /* Now all references towards 'other' of the current type 'dt' are corrected to point to 'u'.
1155 * Lets's now move the deps of type 'dt' from 'other' to 'u'. If the unit does not have
1156 * dependencies of this type, let's move them per type wholesale. */
1157 if (!deps)
1158 assert_se(hashmap_put(u->dependencies, dt, TAKE_PTR(other_deps)) >= 0);
15ed3c3a 1159 }
23a177ef 1160
15ed3c3a 1161 other->dependencies = hashmap_free(other->dependencies);
23a177ef
LP
1162}
1163
1164int unit_merge(Unit *u, Unit *other) {
09a65f92 1165 int r;
87f0e418
LP
1166
1167 assert(u);
1168 assert(other);
ac155bb8
MS
1169 assert(u->manager == other->manager);
1170 assert(u->type != _UNIT_TYPE_INVALID);
87f0e418 1171
cc916967
LP
1172 other = unit_follow_merge(other);
1173
23a177ef
LP
1174 if (other == u)
1175 return 0;
1176
ac155bb8 1177 if (u->type != other->type)
9e2f7c11
LP
1178 return -EINVAL;
1179
8a993b61 1180 if (!unit_type_may_alias(u->type)) /* Merging only applies to unit names that support aliases */
934e749e
LP
1181 return -EEXIST;
1182
ec2ce0c5 1183 if (!IN_SET(other->load_state, UNIT_STUB, UNIT_NOT_FOUND))
23a177ef 1184 return -EEXIST;
87f0e418 1185
d383acad
ZJS
1186 if (!streq_ptr(u->instance, other->instance))
1187 return -EINVAL;
1188
ac155bb8 1189 if (other->job)
819e213f
LP
1190 return -EEXIST;
1191
e0209d83
MS
1192 if (other->nop_job)
1193 return -EEXIST;
1194
fdf20a31 1195 if (!UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(other)))
819e213f
LP
1196 return -EEXIST;
1197
15ed3c3a
LP
1198 /* Make reservations to ensure merge_dependencies() won't fail. We don't rollback reservations if we
1199 * fail. We don't have a way to undo reservations. A reservation is not a leak. */
1200 r = unit_reserve_dependencies(u, other);
1201 if (r < 0)
1202 return r;
09a65f92 1203
57020a3a 1204 /* Redirect all references */
7f7d01ed
ZJS
1205 while (other->refs_by_target)
1206 unit_ref_set(other->refs_by_target, other->refs_by_target->source, u);
57020a3a 1207
87f0e418 1208 /* Merge dependencies */
15ed3c3a 1209 unit_merge_dependencies(u, other);
87f0e418 1210
1d0c81a0
YW
1211 /* Merge names. It is better to do that after merging deps, otherwise the log message contains n/a. */
1212 r = unit_merge_names(u, other);
1213 if (r < 0)
1214 return r;
1215
ac155bb8
MS
1216 other->load_state = UNIT_MERGED;
1217 other->merged_into = u;
23a177ef 1218
48b92b37
LB
1219 if (!u->activation_details)
1220 u->activation_details = activation_details_ref(other->activation_details);
1221
3616a49c
LP
1222 /* If there is still some data attached to the other node, we
1223 * don't need it anymore, and can free it. */
ac155bb8 1224 if (other->load_state != UNIT_STUB)
3616a49c
LP
1225 if (UNIT_VTABLE(other)->done)
1226 UNIT_VTABLE(other)->done(other);
1227
1228 unit_add_to_dbus_queue(u);
23a177ef
LP
1229 unit_add_to_cleanup_queue(other);
1230
1231 return 0;
1232}
1233
1234int unit_merge_by_name(Unit *u, const char *name) {
934e749e 1235 _cleanup_free_ char *s = NULL;
23a177ef 1236 Unit *other;
9e2f7c11 1237 int r;
23a177ef 1238
e8630e69
ZJS
1239 /* Either add name to u, or if a unit with name already exists, merge it with u.
1240 * If name is a template, do the same for name@instance, where instance is u's instance. */
1241
23a177ef
LP
1242 assert(u);
1243 assert(name);
1244
7410616c 1245 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
ac155bb8 1246 if (!u->instance)
9e2f7c11
LP
1247 return -EINVAL;
1248
7410616c
LP
1249 r = unit_name_replace_instance(name, u->instance, &s);
1250 if (r < 0)
1251 return r;
9e2f7c11
LP
1252
1253 name = s;
1254 }
1255
c2756a68 1256 other = manager_get_unit(u->manager, name);
7410616c
LP
1257 if (other)
1258 return unit_merge(u, other);
23a177ef 1259
7410616c 1260 return unit_add_name(u, name);
23a177ef
LP
1261}
1262
1263Unit* unit_follow_merge(Unit *u) {
1264 assert(u);
1265
ac155bb8
MS
1266 while (u->load_state == UNIT_MERGED)
1267 assert_se(u = u->merged_into);
23a177ef
LP
1268
1269 return u;
1270}
1271
1272int unit_add_exec_dependencies(Unit *u, ExecContext *c) {
1273 int r;
1274
1275 assert(u);
1276 assert(c);
1277
a8c5a4c6
YW
1278 /* Unlike unit_add_dependency() or friends, this always returns 0 on success. */
1279
e1e74614 1280 if (c->working_directory && !c->working_directory_missing_ok) {
eef85c4a 1281 r = unit_require_mounts_for(u, c->working_directory, UNIT_DEPENDENCY_FILE);
36be24c8
ZJS
1282 if (r < 0)
1283 return r;
1284 }
1285
1286 if (c->root_directory) {
eef85c4a 1287 r = unit_require_mounts_for(u, c->root_directory, UNIT_DEPENDENCY_FILE);
36be24c8
ZJS
1288 if (r < 0)
1289 return r;
1290 }
1291
915e6d16 1292 if (c->root_image) {
eef85c4a 1293 r = unit_require_mounts_for(u, c->root_image, UNIT_DEPENDENCY_FILE);
915e6d16
LP
1294 if (r < 0)
1295 return r;
1296 }
1297
12375b95 1298 for (ExecDirectoryType dt = 0; dt < _EXEC_DIRECTORY_TYPE_MAX; dt++) {
ada5e276
YW
1299 if (!u->manager->prefix[dt])
1300 continue;
1301
211a3d87 1302 for (size_t i = 0; i < c->directories[dt].n_items; i++) {
c2b2df60 1303 _cleanup_free_ char *p = NULL;
ada5e276 1304
211a3d87 1305 p = path_join(u->manager->prefix[dt], c->directories[dt].items[i].path);
ada5e276
YW
1306 if (!p)
1307 return -ENOMEM;
1308
eef85c4a 1309 r = unit_require_mounts_for(u, p, UNIT_DEPENDENCY_FILE);
ada5e276
YW
1310 if (r < 0)
1311 return r;
1312 }
1313 }
1314
463d0d15 1315 if (!MANAGER_IS_SYSTEM(u->manager))
b46a529c
LP
1316 return 0;
1317
f3b7a79b
LP
1318 /* For the following three directory types we need write access, and /var/ is possibly on the root
1319 * fs. Hence order after systemd-remount-fs.service, to ensure things are writable. */
211a3d87
LB
1320 if (c->directories[EXEC_DIRECTORY_STATE].n_items > 0 ||
1321 c->directories[EXEC_DIRECTORY_CACHE].n_items > 0 ||
1322 c->directories[EXEC_DIRECTORY_LOGS].n_items > 0) {
f3b7a79b
LP
1323 r = unit_add_dependency_by_name(u, UNIT_AFTER, SPECIAL_REMOUNT_FS_SERVICE, true, UNIT_DEPENDENCY_FILE);
1324 if (r < 0)
1325 return r;
1326 }
1327
b46a529c 1328 if (c->private_tmp) {
d71f0505 1329
b2c7d1bb
FB
1330 /* FIXME: for now we make a special case for /tmp and add a weak dependency on
1331 * tmp.mount so /tmp being masked is supported. However there's no reason to treat
1332 * /tmp specifically and masking other mount units should be handled more
1333 * gracefully too, see PR#16894. */
1334 r = unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_WANTS, "tmp.mount", true, UNIT_DEPENDENCY_FILE);
1335 if (r < 0)
1336 return r;
1337
1338 r = unit_require_mounts_for(u, "/var/tmp", UNIT_DEPENDENCY_FILE);
1339 if (r < 0)
1340 return r;
b46a529c 1341
35d8c19a 1342 r = unit_add_dependency_by_name(u, UNIT_AFTER, SPECIAL_TMPFILES_SETUP_SERVICE, true, UNIT_DEPENDENCY_FILE);
b46a529c
LP
1343 if (r < 0)
1344 return r;
1345 }
1346
33b58dfb
LP
1347 if (c->root_image) {
1348 /* We need to wait for /dev/loopX to appear when doing RootImage=, hence let's add an
1349 * implicit dependency on udev */
1350
1351 r = unit_add_dependency_by_name(u, UNIT_AFTER, SPECIAL_UDEVD_SERVICE, true, UNIT_DEPENDENCY_FILE);
1352 if (r < 0)
1353 return r;
1354 }
1355
52c239d7
LB
1356 if (!IN_SET(c->std_output,
1357 EXEC_OUTPUT_JOURNAL, EXEC_OUTPUT_JOURNAL_AND_CONSOLE,
f3dc6af2 1358 EXEC_OUTPUT_KMSG, EXEC_OUTPUT_KMSG_AND_CONSOLE) &&
52c239d7
LB
1359 !IN_SET(c->std_error,
1360 EXEC_OUTPUT_JOURNAL, EXEC_OUTPUT_JOURNAL_AND_CONSOLE,
f3dc6af2 1361 EXEC_OUTPUT_KMSG, EXEC_OUTPUT_KMSG_AND_CONSOLE) &&
91dd5f7c 1362 !c->log_namespace)
23a177ef
LP
1363 return 0;
1364
91dd5f7c
LP
1365 /* If syslog or kernel logging is requested (or log namespacing is), make sure our own logging daemon
1366 * is run first. */
1367
1368 if (c->log_namespace) {
dc5437c7 1369 _cleanup_free_ char *socket_unit = NULL, *varlink_socket_unit = NULL;
23a177ef 1370
91dd5f7c
LP
1371 r = unit_name_build_from_type("systemd-journald", c->log_namespace, UNIT_SOCKET, &socket_unit);
1372 if (r < 0)
1373 return r;
1374
1375 r = unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_REQUIRES, socket_unit, true, UNIT_DEPENDENCY_FILE);
1376 if (r < 0)
1377 return r;
dc5437c7
LP
1378
1379 r = unit_name_build_from_type("systemd-journald-varlink", c->log_namespace, UNIT_SOCKET, &varlink_socket_unit);
1380 if (r < 0)
1381 return r;
1382
1383 r = unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_REQUIRES, varlink_socket_unit, true, UNIT_DEPENDENCY_FILE);
1384 if (r < 0)
1385 return r;
7d202fb3 1386 } else {
91dd5f7c 1387 r = unit_add_dependency_by_name(u, UNIT_AFTER, SPECIAL_JOURNALD_SOCKET, true, UNIT_DEPENDENCY_FILE);
ce18c396
LP
1388 if (r < 0)
1389 return r;
1390 }
1391
7d202fb3
YW
1392 r = unit_add_default_credential_dependencies(u, c);
1393 if (r < 0)
1394 return r;
1395
87f0e418
LP
1396 return 0;
1397}
1398
04d232d8 1399const char* unit_description(Unit *u) {
87f0e418
LP
1400 assert(u);
1401
ac155bb8
MS
1402 if (u->description)
1403 return u->description;
87f0e418 1404
ac155bb8 1405 return strna(u->id);
87f0e418
LP
1406}
1407
e6a16a82 1408const char* unit_status_string(Unit *u, char **ret_combined_buffer) {
2a8f53c6 1409 assert(u);
04d232d8 1410 assert(u->id);
2a8f53c6 1411
04d232d8
ZJS
1412 /* Return u->id, u->description, or "{u->id} - {u->description}".
1413 * Versions with u->description are only used if it is set.
e6a16a82
ZJS
1414 * The last option is used if configured and the caller provided the 'ret_combined_buffer'
1415 * pointer.
1416 *
1417 * Note that *ret_combined_buffer may be set to NULL. */
04d232d8
ZJS
1418
1419 if (!u->description ||
1420 u->manager->status_unit_format == STATUS_UNIT_FORMAT_NAME ||
e6a16a82
ZJS
1421 (u->manager->status_unit_format == STATUS_UNIT_FORMAT_COMBINED && !ret_combined_buffer) ||
1422 streq(u->description, u->id)) {
1423
1424 if (ret_combined_buffer)
1425 *ret_combined_buffer = NULL;
2a8f53c6 1426 return u->id;
e6a16a82 1427 }
2a8f53c6 1428
e6a16a82
ZJS
1429 if (ret_combined_buffer) {
1430 if (u->manager->status_unit_format == STATUS_UNIT_FORMAT_COMBINED) {
1431 *ret_combined_buffer = strjoin(u->id, " - ", u->description);
1432 if (*ret_combined_buffer)
1433 return *ret_combined_buffer;
1434 log_oom(); /* Fall back to ->description */
04d232d8 1435 } else
e6a16a82 1436 *ret_combined_buffer = NULL;
04d232d8
ZJS
1437 }
1438
1439 return u->description;
2a8f53c6
ZJS
1440}
1441
87f0e418 1442/* Common implementation for multiple backends */
c3620770 1443int unit_load_fragment_and_dropin(Unit *u, bool fragment_required) {
23a177ef
LP
1444 int r;
1445
1446 assert(u);
23a177ef 1447
e48614c4 1448 /* Load a .{service,socket,...} file */
4ad49000
LP
1449 r = unit_load_fragment(u);
1450 if (r < 0)
23a177ef
LP
1451 return r;
1452
c3620770
ZJS
1453 if (u->load_state == UNIT_STUB) {
1454 if (fragment_required)
1455 return -ENOENT;
1456
1457 u->load_state = UNIT_LOADED;
1458 }
23a177ef 1459
9e4ea9cc
ZJS
1460 /* Load drop-in directory data. If u is an alias, we might be reloading the
1461 * target unit needlessly. But we cannot be sure which drops-ins have already
1462 * been loaded and which not, at least without doing complicated book-keeping,
1463 * so let's always reread all drop-ins. */
c9e06956
ZJS
1464 r = unit_load_dropin(unit_follow_merge(u));
1465 if (r < 0)
1466 return r;
1467
1468 if (u->source_path) {
1469 struct stat st;
1470
1471 if (stat(u->source_path, &st) >= 0)
1472 u->source_mtime = timespec_load(&st.st_mtim);
1473 else
1474 u->source_mtime = 0;
1475 }
1476
1477 return 0;
23a177ef
LP
1478}
1479
19496554 1480void unit_add_to_target_deps_queue(Unit *u) {
fbd747a4 1481 Manager *m = ASSERT_PTR(ASSERT_PTR(u)->manager);
c9958c4f 1482
19496554
MS
1483 if (u->in_target_deps_queue)
1484 return;
1485
1486 LIST_PREPEND(target_deps_queue, m->target_deps_queue, u);
1487 u->in_target_deps_queue = true;
1488}
1489
bba34eed 1490int unit_add_default_target_dependency(Unit *u, Unit *target) {
98bc2000
LP
1491 assert(u);
1492 assert(target);
1493
ac155bb8 1494 if (target->type != UNIT_TARGET)
98bc2000
LP
1495 return 0;
1496
35b8ca3a 1497 /* Only add the dependency if both units are loaded, so that
bba34eed 1498 * that loop check below is reliable */
ac155bb8
MS
1499 if (u->load_state != UNIT_LOADED ||
1500 target->load_state != UNIT_LOADED)
bba34eed
LP
1501 return 0;
1502
21256a2b
LP
1503 /* If either side wants no automatic dependencies, then let's
1504 * skip this */
ac155bb8
MS
1505 if (!u->default_dependencies ||
1506 !target->default_dependencies)
21256a2b
LP
1507 return 0;
1508
98bc2000 1509 /* Don't create loops */
15ed3c3a 1510 if (unit_has_dependency(target, UNIT_ATOM_BEFORE, u))
98bc2000
LP
1511 return 0;
1512
eef85c4a 1513 return unit_add_dependency(target, UNIT_AFTER, u, true, UNIT_DEPENDENCY_DEFAULT);
98bc2000
LP
1514}
1515
e954c9cf 1516static int unit_add_slice_dependencies(Unit *u) {
12f64221 1517 Unit *slice;
e954c9cf 1518 assert(u);
b81884e7 1519
35b7ff80 1520 if (!UNIT_HAS_CGROUP_CONTEXT(u))
e954c9cf
LP
1521 return 0;
1522
eef85c4a
LP
1523 /* Slice units are implicitly ordered against their parent slices (as this relationship is encoded in the
1524 name), while all other units are ordered based on configuration (as in their case Slice= configures the
1525 relationship). */
f6173cb9 1526 UnitDependencyMask mask = u->type == UNIT_SLICE ? UNIT_DEPENDENCY_IMPLICIT : UNIT_DEPENDENCY_FILE;
eef85c4a 1527
12f64221
LP
1528 slice = UNIT_GET_SLICE(u);
1529 if (slice)
1530 return unit_add_two_dependencies(u, UNIT_AFTER, UNIT_REQUIRES, slice, true, mask);
e954c9cf 1531
8c8da0e0 1532 if (unit_has_name(u, SPECIAL_ROOT_SLICE))
d1fab3fe
ZJS
1533 return 0;
1534
5a724170 1535 return unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_REQUIRES, SPECIAL_ROOT_SLICE, true, mask);
98bc2000
LP
1536}
1537
e954c9cf 1538static int unit_add_mount_dependencies(Unit *u) {
eef85c4a
LP
1539 UnitDependencyInfo di;
1540 const char *path;
a8c5a4c6 1541 bool changed = false;
9588bc32
LP
1542 int r;
1543
1544 assert(u);
1545
90e74a66 1546 HASHMAP_FOREACH_KEY(di.data, path, u->requires_mounts_for) {
eef85c4a 1547 char prefix[strlen(path) + 1];
9588bc32 1548
eef85c4a 1549 PATH_FOREACH_PREFIX_MORE(prefix, path) {
c7c89abb 1550 _cleanup_free_ char *p = NULL;
9588bc32
LP
1551 Unit *m;
1552
c7c89abb 1553 r = unit_name_from_path(prefix, ".mount", &p);
03e52e8c 1554 if (r == -EINVAL)
598a6a84 1555 continue; /* If the path cannot be converted to a mount unit name, then it's
4076ad9d 1556 * not manageable as a unit by systemd, and hence we don't need a
598a6a84 1557 * dependency on it. Let's thus silently ignore the issue. */
9588bc32
LP
1558 if (r < 0)
1559 return r;
c7c89abb
FB
1560
1561 m = manager_get_unit(u->manager, p);
1562 if (!m) {
598a6a84
LP
1563 /* Make sure to load the mount unit if it exists. If so the dependencies on
1564 * this unit will be added later during the loading of the mount unit. */
c7c89abb 1565 (void) manager_load_unit_prepare(u->manager, p, NULL, NULL, &m);
9588bc32 1566 continue;
c7c89abb 1567 }
9588bc32
LP
1568 if (m == u)
1569 continue;
1570
1571 if (m->load_state != UNIT_LOADED)
1572 continue;
1573
eef85c4a 1574 r = unit_add_dependency(u, UNIT_AFTER, m, true, di.origin_mask);
9588bc32
LP
1575 if (r < 0)
1576 return r;
a8c5a4c6 1577 changed = changed || r > 0;
9588bc32
LP
1578
1579 if (m->fragment_path) {
eef85c4a 1580 r = unit_add_dependency(u, UNIT_REQUIRES, m, true, di.origin_mask);
9588bc32
LP
1581 if (r < 0)
1582 return r;
a8c5a4c6 1583 changed = changed || r > 0;
9588bc32
LP
1584 }
1585 }
1586 }
1587
a8c5a4c6 1588 return changed;
9588bc32
LP
1589}
1590
a2db0225
AZ
1591static int unit_add_oomd_dependencies(Unit *u) {
1592 CGroupContext *c;
2a4efebb
ZJS
1593 CGroupMask mask;
1594 int r;
a2db0225
AZ
1595
1596 assert(u);
1597
1598 if (!u->default_dependencies)
1599 return 0;
1600
1601 c = unit_get_cgroup_context(u);
1602 if (!c)
1603 return 0;
1604
2a4efebb 1605 bool wants_oomd = c->moom_swap == MANAGED_OOM_KILL || c->moom_mem_pressure == MANAGED_OOM_KILL;
a2db0225
AZ
1606 if (!wants_oomd)
1607 return 0;
1608
2a4efebb
ZJS
1609 if (!cg_all_unified())
1610 return 0;
1611
1612 r = cg_mask_supported(&mask);
1613 if (r < 0)
1614 return log_debug_errno(r, "Failed to determine supported controllers: %m");
1615
1616 if (!FLAGS_SET(mask, CGROUP_MASK_MEMORY))
1617 return 0;
1618
a8c5a4c6 1619 return unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_WANTS, "systemd-oomd.service", true, UNIT_DEPENDENCY_FILE);
a2db0225
AZ
1620}
1621
95ae05c0 1622static int unit_add_startup_units(Unit *u) {
9dfb6a3a 1623 if (!unit_has_startup_cgroup_constraints(u))
db785129
LP
1624 return 0;
1625
de7fef4b 1626 return set_ensure_put(&u->manager->startup_units, NULL, u);
95ae05c0
WC
1627}
1628
294446dc
LP
1629static int unit_validate_on_failure_job_mode(
1630 Unit *u,
1631 const char *job_mode_setting,
1632 JobMode job_mode,
1633 const char *dependency_name,
1634 UnitDependencyAtom atom) {
1635
1636 Unit *other, *found = NULL;
1637
1638 if (job_mode != JOB_ISOLATE)
1639 return 0;
1640
1641 UNIT_FOREACH_DEPENDENCY(other, u, atom) {
1642 if (!found)
1643 found = other;
1644 else if (found != other)
1645 return log_unit_error_errno(
1646 u, SYNTHETIC_ERRNO(ENOEXEC),
1647 "More than one %s dependencies specified but %sisolate set. Refusing.",
1648 dependency_name, job_mode_setting);
1649 }
1650
1651 return 0;
1652}
1653
87f0e418
LP
1654int unit_load(Unit *u) {
1655 int r;
1656
1657 assert(u);
1658
ac155bb8 1659 if (u->in_load_queue) {
71fda00f 1660 LIST_REMOVE(load_queue, u->manager->load_queue, u);
ac155bb8 1661 u->in_load_queue = false;
87f0e418
LP
1662 }
1663
ac155bb8 1664 if (u->type == _UNIT_TYPE_INVALID)
e537352b
LP
1665 return -EINVAL;
1666
ac155bb8 1667 if (u->load_state != UNIT_STUB)
87f0e418
LP
1668 return 0;
1669
4f4afc88 1670 if (u->transient_file) {
66fa4bdd
LP
1671 /* Finalize transient file: if this is a transient unit file, as soon as we reach unit_load() the setup
1672 * is complete, hence let's synchronize the unit file we just wrote to disk. */
1673
4f4afc88
LP
1674 r = fflush_and_check(u->transient_file);
1675 if (r < 0)
1676 goto fail;
1677
50fb00b7 1678 u->transient_file = safe_fclose(u->transient_file);
f76707da 1679 u->fragment_mtime = now(CLOCK_REALTIME);
4f4afc88
LP
1680 }
1681
c3784a7d
ZJS
1682 r = UNIT_VTABLE(u)->load(u);
1683 if (r < 0)
23a177ef 1684 goto fail;
c3784a7d
ZJS
1685
1686 assert(u->load_state != UNIT_STUB);
23a177ef 1687
7c8fa05c 1688 if (u->load_state == UNIT_LOADED) {
19496554 1689 unit_add_to_target_deps_queue(u);
e954c9cf
LP
1690
1691 r = unit_add_slice_dependencies(u);
1692 if (r < 0)
1693 goto fail;
c2756a68 1694
e954c9cf 1695 r = unit_add_mount_dependencies(u);
7c8fa05c 1696 if (r < 0)
c2756a68 1697 goto fail;
7c8fa05c 1698
a2db0225
AZ
1699 r = unit_add_oomd_dependencies(u);
1700 if (r < 0)
1701 goto fail;
1702
95ae05c0
WC
1703 r = unit_add_startup_units(u);
1704 if (r < 0)
1705 goto fail;
1706
294446dc
LP
1707 r = unit_validate_on_failure_job_mode(u, "OnSuccessJobMode=", u->on_success_job_mode, "OnSuccess=", UNIT_ATOM_ON_SUCCESS);
1708 if (r < 0)
1709 goto fail;
15ed3c3a 1710
294446dc
LP
1711 r = unit_validate_on_failure_job_mode(u, "OnFailureJobMode=", u->on_failure_job_mode, "OnFailure=", UNIT_ATOM_ON_FAILURE);
1712 if (r < 0)
1713 goto fail;
bc432dc7 1714
a2df3ea4
MK
1715 if (u->job_running_timeout != USEC_INFINITY && u->job_running_timeout > u->job_timeout)
1716 log_unit_warning(u, "JobRunningTimeoutSec= is greater than JobTimeoutSec=, it has no effect.");
1717
5af88058
LP
1718 /* We finished loading, let's ensure our parents recalculate the members mask */
1719 unit_invalidate_cgroup_members_masks(u);
f68319bb
LP
1720 }
1721
ac155bb8 1722 assert((u->load_state != UNIT_MERGED) == !u->merged_into);
23a177ef
LP
1723
1724 unit_add_to_dbus_queue(unit_follow_merge(u));
701cc384 1725 unit_add_to_gc_queue(u);
f561e8c6 1726 (void) manager_varlink_send_managed_oom_update(u);
87f0e418 1727
87f0e418
LP
1728 return 0;
1729
1730fail:
81be2388
ZJS
1731 /* We convert ENOEXEC errors to the UNIT_BAD_SETTING load state here. Configuration parsing code
1732 * should hence return ENOEXEC to ensure units are placed in this state after loading. */
c4555ad8
LP
1733
1734 u->load_state = u->load_state == UNIT_STUB ? UNIT_NOT_FOUND :
1735 r == -ENOEXEC ? UNIT_BAD_SETTING :
1736 UNIT_ERROR;
ac155bb8 1737 u->load_error = r;
c4555ad8 1738
c149d2b4
ZJS
1739 /* Record the timestamp on the cache, so that if the cache gets updated between now and the next time
1740 * an attempt is made to load this unit, we know we need to check again. */
7233e91a 1741 if (u->load_state == UNIT_NOT_FOUND)
c2911d48 1742 u->fragment_not_found_timestamp_hash = u->manager->unit_cache_timestamp_hash;
7233e91a 1743
c1e1601e 1744 unit_add_to_dbus_queue(u);
9a46fc3b 1745 unit_add_to_gc_queue(u);
23a177ef 1746
c4555ad8 1747 return log_unit_debug_errno(u, r, "Failed to load configuration: %m");
87f0e418
LP
1748}
1749
f9f88198
YW
1750_printf_(7, 8)
1751static int log_unit_internal(void *userdata, int level, int error, const char *file, int line, const char *func, const char *format, ...) {
1752 Unit *u = userdata;
1753 va_list ap;
1754 int r;
49365733 1755
c2503e35
RH
1756 if (u && !unit_log_level_test(u, level))
1757 return -ERRNO_VALUE(error);
1758
f9f88198
YW
1759 va_start(ap, format);
1760 if (u)
1761 r = log_object_internalv(level, error, file, line, func,
1762 u->manager->unit_log_field,
1763 u->id,
1764 u->manager->invocation_log_field,
1765 u->invocation_id_string,
1766 format, ap);
1767 else
1768 r = log_internalv(level, error, file, line, func, format, ap);
1769 va_end(ap);
49365733 1770
f9f88198 1771 return r;
49365733
LP
1772}
1773
97a3f4ee 1774static bool unit_test_condition(Unit *u) {
a0b191b7
LP
1775 _cleanup_strv_free_ char **env = NULL;
1776 int r;
1777
90bbc946
LP
1778 assert(u);
1779
fa5a0251 1780 dual_timestamp_now(&u->condition_timestamp);
90bbc946 1781
a0b191b7
LP
1782 r = manager_get_effective_environment(u->manager, &env);
1783 if (r < 0) {
1784 log_unit_error_errno(u, r, "Failed to determine effective environment: %m");
d52cc0a5 1785 u->condition_result = true;
a0b191b7
LP
1786 } else
1787 u->condition_result = condition_test_list(
1788 u->conditions,
1789 env,
1790 condition_type_to_string,
1791 log_unit_internal,
1792 u);
e18f8852 1793
a0b191b7 1794 unit_add_to_dbus_queue(u);
ac155bb8 1795 return u->condition_result;
90bbc946
LP
1796}
1797
97a3f4ee 1798static bool unit_test_assert(Unit *u) {
a0b191b7
LP
1799 _cleanup_strv_free_ char **env = NULL;
1800 int r;
1801
59fccdc5
LP
1802 assert(u);
1803
fa5a0251 1804 dual_timestamp_now(&u->assert_timestamp);
59fccdc5 1805
a0b191b7
LP
1806 r = manager_get_effective_environment(u->manager, &env);
1807 if (r < 0) {
1808 log_unit_error_errno(u, r, "Failed to determine effective environment: %m");
1809 u->assert_result = CONDITION_ERROR;
1810 } else
1811 u->assert_result = condition_test_list(
1812 u->asserts,
1813 env,
1814 assert_type_to_string,
1815 log_unit_internal,
1816 u);
e18f8852 1817
a0b191b7 1818 unit_add_to_dbus_queue(u);
59fccdc5
LP
1819 return u->assert_result;
1820}
1821
04d232d8
ZJS
1822void unit_status_printf(Unit *u, StatusType status_type, const char *status, const char *format, const char *ident) {
1823 if (log_get_show_color()) {
1824 if (u->manager->status_unit_format == STATUS_UNIT_FORMAT_COMBINED && strchr(ident, ' '))
1825 ident = strjoina(ANSI_HIGHLIGHT, u->id, ANSI_NORMAL, " - ", u->description);
1826 else
1827 ident = strjoina(ANSI_HIGHLIGHT, ident, ANSI_NORMAL);
1828 }
5b262f74 1829
df446f96 1830 DISABLE_WARNING_FORMAT_NONLITERAL;
04d232d8 1831 manager_status_printf(u->manager, status_type, status, format, ident);
df446f96
LP
1832 REENABLE_WARNING;
1833}
1834
97a3f4ee 1835int unit_test_start_limit(Unit *u) {
429926e9
TR
1836 const char *reason;
1837
6bf0f408
LP
1838 assert(u);
1839
7bf081a1 1840 if (ratelimit_below(&u->start_ratelimit)) {
6bf0f408
LP
1841 u->start_limit_hit = false;
1842 return 0;
1843 }
1844
1845 log_unit_warning(u, "Start request repeated too quickly.");
1846 u->start_limit_hit = true;
1847
429926e9
TR
1848 reason = strjoina("unit ", u->id, " failed");
1849
36c4dc08
LP
1850 emergency_action(u->manager, u->start_limit_action,
1851 EMERGENCY_ACTION_IS_WATCHDOG|EMERGENCY_ACTION_WARN,
1852 u->reboot_arg, -1, reason);
1853
1854 return -ECANCELED;
6bf0f408
LP
1855}
1856
631b676b
LP
1857static bool unit_verify_deps(Unit *u) {
1858 Unit *other;
631b676b
LP
1859
1860 assert(u);
1861
defe63b0
LP
1862 /* Checks whether all BindsTo= dependencies of this unit are fulfilled — if they are also combined
1863 * with After=. We do not check Requires= or Requisite= here as they only should have an effect on
1864 * the job processing, but do not have any effect afterwards. We don't check BindsTo= dependencies
1865 * that are not used in conjunction with After= as for them any such check would make things entirely
1866 * racy. */
631b676b 1867
15ed3c3a 1868 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_CANNOT_BE_ACTIVE_WITHOUT) {
631b676b 1869
15ed3c3a 1870 if (!unit_has_dependency(u, UNIT_ATOM_AFTER, other))
631b676b
LP
1871 continue;
1872
1873 if (!UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(other))) {
1874 log_unit_notice(u, "Bound to unit %s, but unit isn't active.", other->id);
1875 return false;
1876 }
1877 }
1878
1879 return true;
1880}
1881
9adb6959 1882/* Errors that aren't really errors:
6bf0f408 1883 * -EALREADY: Unit is already started.
9adb6959 1884 * -ECOMM: Condition failed
6bf0f408 1885 * -EAGAIN: An operation is already in progress. Retry later.
9adb6959
LP
1886 *
1887 * Errors that are real errors:
1888 * -EBADR: This unit type does not support starting.
2de9b979 1889 * -ECANCELED: Start limit hit, too many requests for now
6bf0f408
LP
1890 * -EPROTO: Assert failed
1891 * -EINVAL: Unit not loaded
1892 * -EOPNOTSUPP: Unit type not supported
631b676b 1893 * -ENOLINK: The necessary dependencies are not fulfilled.
d4fd1cf2 1894 * -ESTALE: This unit has been started before and can't be started a second time
a4191c9f 1895 * -ENOENT: This is a triggering unit and unit to trigger is not loaded
87f0e418 1896 */
48b92b37 1897int unit_start(Unit *u, ActivationDetails *details) {
87f0e418 1898 UnitActiveState state;
92ab323c 1899 Unit *following;
5f37c1a9 1900 int r;
87f0e418
LP
1901
1902 assert(u);
1903
47261967
LP
1904 /* Let's hold off running start jobs for mount units when /proc/self/mountinfo monitor is ratelimited. */
1905 if (UNIT_VTABLE(u)->subsystem_ratelimited) {
1906 r = UNIT_VTABLE(u)->subsystem_ratelimited(u->manager);
1907 if (r < 0)
1908 return r;
1909 if (r > 0)
1910 return -EAGAIN;
1911 }
b161bc39 1912
5766aca8
LP
1913 /* If this is already started, then this will succeed. Note that this will even succeed if this unit
1914 * is not startable by the user. This is relied on to detect when we need to wait for units and when
1915 * waiting is finished. */
87f0e418
LP
1916 state = unit_active_state(u);
1917 if (UNIT_IS_ACTIVE_OR_RELOADING(state))
1918 return -EALREADY;
380dc8b0
LP
1919 if (state == UNIT_MAINTENANCE)
1920 return -EAGAIN;
87f0e418 1921
6bf0f408
LP
1922 /* Units that aren't loaded cannot be started */
1923 if (u->load_state != UNIT_LOADED)
1924 return -EINVAL;
1925
d4fd1cf2
LP
1926 /* Refuse starting scope units more than once */
1927 if (UNIT_VTABLE(u)->once_only && dual_timestamp_is_set(&u->inactive_enter_timestamp))
1928 return -ESTALE;
1929
4e1ac54e 1930 /* If the conditions were unmet, don't do anything at all. If we already are activating this call might
5766aca8
LP
1931 * still be useful to speed up activation in case there is some hold-off time, but we don't want to
1932 * recheck the condition in that case. */
a82e5507 1933 if (state != UNIT_ACTIVATING &&
5af6aa58 1934 !unit_test_condition(u))
4e1ac54e 1935 return log_unit_debug_errno(u, SYNTHETIC_ERRNO(ECOMM), "Starting requested but condition not met. Not starting unit.");
52661efd 1936
59fccdc5
LP
1937 /* If the asserts failed, fail the entire job */
1938 if (state != UNIT_ACTIVATING &&
5766aca8
LP
1939 !unit_test_assert(u))
1940 return log_unit_notice_errno(u, SYNTHETIC_ERRNO(EPROTO), "Starting requested but asserts failed.");
59fccdc5 1941
5766aca8
LP
1942 /* Units of types that aren't supported cannot be started. Note that we do this test only after the
1943 * condition checks, so that we rather return condition check errors (which are usually not
1944 * considered a true failure) than "not supported" errors (which are considered a failure).
d11a7645 1945 */
96cf3ec9 1946 if (!unit_type_supported(u->type))
d11a7645
LP
1947 return -EOPNOTSUPP;
1948
5766aca8
LP
1949 /* Let's make sure that the deps really are in order before we start this. Normally the job engine
1950 * should have taken care of this already, but let's check this here again. After all, our
413e8650 1951 * dependencies might not be in effect anymore, due to a reload or due to an unmet condition. */
631b676b
LP
1952 if (!unit_verify_deps(u))
1953 return -ENOLINK;
1954
92ab323c 1955 /* Forward to the main object, if we aren't it. */
52990c2e
ZJS
1956 following = unit_following(u);
1957 if (following) {
f2341e0a 1958 log_unit_debug(u, "Redirecting start request from %s to %s.", u->id, following->id);
48b92b37 1959 return unit_start(following, details);
92ab323c
LP
1960 }
1961
705578c3
MS
1962 /* Check our ability to start early so that failure conditions don't cause us to enter a busy loop. */
1963 if (UNIT_VTABLE(u)->can_start) {
1964 r = UNIT_VTABLE(u)->can_start(u);
ce2146f5
DDM
1965 if (r < 0)
1966 return r;
1967 }
1968
92ab323c
LP
1969 /* If it is stopped, but we cannot start it, then fail */
1970 if (!UNIT_VTABLE(u)->start)
1971 return -EBADR;
1972
5766aca8
LP
1973 /* We don't suppress calls to ->start() here when we are already starting, to allow this request to
1974 * be used as a "hurry up" call, for example when the unit is in some "auto restart" state where it
1975 * waits for a holdoff timer to elapse before it will start again. */
87f0e418 1976
c1e1601e 1977 unit_add_to_dbus_queue(u);
d9e45bc3 1978 unit_cgroup_freezer_action(u, FREEZER_THAW);
9e58ff9c 1979
48b92b37
LB
1980 if (!u->activation_details) /* Older details object wins */
1981 u->activation_details = activation_details_ref(details);
1982
d1a34ae9 1983 return UNIT_VTABLE(u)->start(u);
87f0e418
LP
1984}
1985
1986bool unit_can_start(Unit *u) {
1987 assert(u);
1988
8ff4d2ab
LP
1989 if (u->load_state != UNIT_LOADED)
1990 return false;
1991
96cf3ec9 1992 if (!unit_type_supported(u->type))
8ff4d2ab
LP
1993 return false;
1994
d4fd1cf2
LP
1995 /* Scope units may be started only once */
1996 if (UNIT_VTABLE(u)->once_only && dual_timestamp_is_set(&u->inactive_exit_timestamp))
1997 return false;
1998
87f0e418
LP
1999 return !!UNIT_VTABLE(u)->start;
2000}
2001
2528a7a6
LP
2002bool unit_can_isolate(Unit *u) {
2003 assert(u);
2004
2005 return unit_can_start(u) &&
ac155bb8 2006 u->allow_isolate;
2528a7a6
LP
2007}
2008
87f0e418
LP
2009/* Errors:
2010 * -EBADR: This unit type does not support stopping.
2011 * -EALREADY: Unit is already stopped.
2012 * -EAGAIN: An operation is already in progress. Retry later.
2013 */
2014int unit_stop(Unit *u) {
2015 UnitActiveState state;
92ab323c 2016 Unit *following;
87f0e418
LP
2017
2018 assert(u);
2019
87f0e418 2020 state = unit_active_state(u);
fdf20a31 2021 if (UNIT_IS_INACTIVE_OR_FAILED(state))
87f0e418
LP
2022 return -EALREADY;
2023
0faacd47
LP
2024 following = unit_following(u);
2025 if (following) {
f2341e0a 2026 log_unit_debug(u, "Redirecting stop request from %s to %s.", u->id, following->id);
92ab323c
LP
2027 return unit_stop(following);
2028 }
2029
7898b0cf
LP
2030 if (!UNIT_VTABLE(u)->stop)
2031 return -EBADR;
2032
c1e1601e 2033 unit_add_to_dbus_queue(u);
d9e45bc3 2034 unit_cgroup_freezer_action(u, FREEZER_THAW);
9e58ff9c 2035
d1a34ae9 2036 return UNIT_VTABLE(u)->stop(u);
87f0e418
LP
2037}
2038
f5869324
LP
2039bool unit_can_stop(Unit *u) {
2040 assert(u);
2041
39c79477
ZJS
2042 /* Note: if we return true here, it does not mean that the unit may be successfully stopped.
2043 * Extrinsic units follow external state and they may stop following external state changes
2044 * (hence we return true here), but an attempt to do this through the manager will fail. */
2045
96cf3ec9 2046 if (!unit_type_supported(u->type))
f5869324
LP
2047 return false;
2048
2049 if (u->perpetual)
2050 return false;
2051
2052 return !!UNIT_VTABLE(u)->stop;
2053}
2054
87f0e418
LP
2055/* Errors:
2056 * -EBADR: This unit type does not support reloading.
2057 * -ENOEXEC: Unit is not started.
2058 * -EAGAIN: An operation is already in progress. Retry later.
2059 */
2060int unit_reload(Unit *u) {
2061 UnitActiveState state;
92ab323c 2062 Unit *following;
87f0e418
LP
2063
2064 assert(u);
2065
ac155bb8 2066 if (u->load_state != UNIT_LOADED)
6124958c
LP
2067 return -EINVAL;
2068
87f0e418
LP
2069 if (!unit_can_reload(u))
2070 return -EBADR;
2071
2072 state = unit_active_state(u);
e364ad06 2073 if (state == UNIT_RELOADING)
6255af75 2074 return -EAGAIN;
87f0e418 2075
d85ff944
YW
2076 if (state != UNIT_ACTIVE)
2077 return log_unit_warning_errno(u, SYNTHETIC_ERRNO(ENOEXEC), "Unit cannot be reloaded because it is inactive.");
87f0e418 2078
e48614c4
ZJS
2079 following = unit_following(u);
2080 if (following) {
f2341e0a 2081 log_unit_debug(u, "Redirecting reload request from %s to %s.", u->id, following->id);
92ab323c
LP
2082 return unit_reload(following);
2083 }
2084
c1e1601e 2085 unit_add_to_dbus_queue(u);
82a2b6bb 2086
f54bcca5
JR
2087 if (!UNIT_VTABLE(u)->reload) {
2088 /* Unit doesn't have a reload function, but we need to propagate the reload anyway */
96b09de5 2089 unit_notify(u, unit_active_state(u), unit_active_state(u), /* reload_success = */ true);
f54bcca5
JR
2090 return 0;
2091 }
2092
d9e45bc3
MS
2093 unit_cgroup_freezer_action(u, FREEZER_THAW);
2094
d1a34ae9 2095 return UNIT_VTABLE(u)->reload(u);
87f0e418
LP
2096}
2097
2098bool unit_can_reload(Unit *u) {
2099 assert(u);
2100
f54bcca5
JR
2101 if (UNIT_VTABLE(u)->can_reload)
2102 return UNIT_VTABLE(u)->can_reload(u);
87f0e418 2103
15ed3c3a 2104 if (unit_has_dependency(u, UNIT_ATOM_PROPAGATES_RELOAD_TO, NULL))
87f0e418
LP
2105 return true;
2106
f54bcca5 2107 return UNIT_VTABLE(u)->reload;
87f0e418
LP
2108}
2109
a3c1168a 2110bool unit_is_unneeded(Unit *u) {
15ed3c3a 2111 Unit *other;
f3bff0eb
LP
2112 assert(u);
2113
ac155bb8 2114 if (!u->stop_when_unneeded)
a3c1168a 2115 return false;
f3bff0eb 2116
a3c1168a 2117 /* Don't clean up while the unit is transitioning or is even inactive. */
116654d2 2118 if (unit_active_state(u) != UNIT_ACTIVE)
a3c1168a
LP
2119 return false;
2120 if (u->job)
2121 return false;
f3bff0eb 2122
15ed3c3a 2123 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_PINS_STOP_WHEN_UNNEEDED) {
fda09318 2124 /* If a dependent unit has a job queued, is active or transitioning, or is marked for
a3c1168a 2125 * restart, then don't clean this one up. */
b81884e7 2126
15ed3c3a
LP
2127 if (other->job)
2128 return false;
a3c1168a 2129
15ed3c3a
LP
2130 if (!UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(other)))
2131 return false;
a3c1168a 2132
15ed3c3a
LP
2133 if (unit_will_restart(other))
2134 return false;
bea355da
LP
2135 }
2136
a3c1168a
LP
2137 return true;
2138}
f3bff0eb 2139
0bc488c9
LP
2140bool unit_is_upheld_by_active(Unit *u, Unit **ret_culprit) {
2141 Unit *other;
2142
2143 assert(u);
2144
2145 /* Checks if the unit needs to be started because it currently is not running, but some other unit
2146 * that is active declared an Uphold= dependencies on it */
2147
2148 if (!UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(u)) || u->job) {
2149 if (ret_culprit)
2150 *ret_culprit = NULL;
2151 return false;
2152 }
2153
2154 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_START_STEADILY) {
2155 if (other->job)
2156 continue;
2157
2158 if (UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(other))) {
2159 if (ret_culprit)
2160 *ret_culprit = other;
2161 return true;
2162 }
2163 }
2164
2165 if (ret_culprit)
2166 *ret_culprit = NULL;
2167 return false;
2168}
2169
56c59592
LP
2170bool unit_is_bound_by_inactive(Unit *u, Unit **ret_culprit) {
2171 Unit *other;
2172
2173 assert(u);
2174
2175 /* Checks whether this unit is bound to another unit that is inactive, i.e. whether we should stop
7802194a 2176 * because the other unit is down. */
56c59592
LP
2177
2178 if (unit_active_state(u) != UNIT_ACTIVE || u->job) {
2179 /* Don't clean up while the unit is transitioning or is even inactive. */
2180 if (ret_culprit)
2181 *ret_culprit = NULL;
2182 return false;
2183 }
2184
2185 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_CANNOT_BE_ACTIVE_WITHOUT) {
2186 if (other->job)
2187 continue;
2188
2189 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(other))) {
3da36106 2190 if (ret_culprit)
56c59592
LP
2191 *ret_culprit = other;
2192
2193 return true;
2194 }
2195 }
2196
2197 if (ret_culprit)
2198 *ret_culprit = NULL;
2199 return false;
2200}
2201
a3c1168a 2202static void check_unneeded_dependencies(Unit *u) {
15ed3c3a 2203 Unit *other;
a3c1168a
LP
2204 assert(u);
2205
2206 /* Add all units this unit depends on to the queue that processes StopWhenUnneeded= behaviour. */
2207
15ed3c3a
LP
2208 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_ADD_STOP_WHEN_UNNEEDED_QUEUE)
2209 unit_submit_to_stop_when_unneeded_queue(other);
f3bff0eb
LP
2210}
2211
0bc488c9
LP
2212static void check_uphold_dependencies(Unit *u) {
2213 Unit *other;
2214 assert(u);
2215
2216 /* Add all units this unit depends on to the queue that processes Uphold= behaviour. */
2217
2218 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_ADD_START_WHEN_UPHELD_QUEUE)
2219 unit_submit_to_start_when_upheld_queue(other);
2220}
2221
56c59592 2222static void check_bound_by_dependencies(Unit *u) {
ff502445 2223 Unit *other;
ff502445
LP
2224 assert(u);
2225
56c59592 2226 /* Add all units this unit depends on to the queue that processes BindsTo= stop behaviour. */
ff502445 2227
56c59592
LP
2228 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_ADD_CANNOT_BE_ACTIVE_WITHOUT_QUEUE)
2229 unit_submit_to_stop_when_bound_queue(other);
ff502445
LP
2230}
2231
87f0e418 2232static void retroactively_start_dependencies(Unit *u) {
87f0e418
LP
2233 Unit *other;
2234
2235 assert(u);
2236 assert(UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)));
2237
15ed3c3a
LP
2238 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_RETROACTIVE_START_REPLACE) /* Requires= + BindsTo= */
2239 if (!unit_has_dependency(u, UNIT_ATOM_AFTER, other) &&
b81884e7 2240 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
50cbaba4 2241 manager_add_job(u->manager, JOB_START, other, JOB_REPLACE, NULL, NULL, NULL);
b81884e7 2242
15ed3c3a
LP
2243 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_RETROACTIVE_START_FAIL) /* Wants= */
2244 if (!unit_has_dependency(u, UNIT_ATOM_AFTER, other) &&
b81884e7 2245 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
50cbaba4 2246 manager_add_job(u->manager, JOB_START, other, JOB_FAIL, NULL, NULL, NULL);
87f0e418 2247
15ed3c3a 2248 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_RETROACTIVE_STOP_ON_START) /* Conflicts= (and inverse) */
b81884e7 2249 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
50cbaba4 2250 manager_add_job(u->manager, JOB_STOP, other, JOB_REPLACE, NULL, NULL, NULL);
87f0e418
LP
2251}
2252
2253static void retroactively_stop_dependencies(Unit *u) {
87f0e418
LP
2254 Unit *other;
2255
2256 assert(u);
2257 assert(UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(u)));
2258
b81884e7 2259 /* Pull down units which are bound to us recursively if enabled */
15ed3c3a 2260 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_RETROACTIVE_STOP_ON_STOP) /* BoundBy= */
b81884e7 2261 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
50cbaba4 2262 manager_add_job(u->manager, JOB_STOP, other, JOB_REPLACE, NULL, NULL, NULL);
cd0504d0
MS
2263}
2264
294446dc
LP
2265void unit_start_on_failure(
2266 Unit *u,
2267 const char *dependency_name,
2268 UnitDependencyAtom atom,
2269 JobMode job_mode) {
2270
82acee14 2271 int n_jobs = -1;
c0daa706 2272 Unit *other;
7f66b026 2273 int r;
c0daa706
LP
2274
2275 assert(u);
294446dc
LP
2276 assert(dependency_name);
2277 assert(IN_SET(atom, UNIT_ATOM_ON_SUCCESS, UNIT_ATOM_ON_FAILURE));
2278
2279 /* Act on OnFailure= and OnSuccess= dependencies */
c0daa706 2280
294446dc 2281 UNIT_FOREACH_DEPENDENCY(other, u, atom) {
7f66b026 2282 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
222ae6a8 2283
82acee14 2284 if (n_jobs < 0) {
294446dc 2285 log_unit_info(u, "Triggering %s dependencies.", dependency_name);
82acee14 2286 n_jobs = 0;
15ed3c3a
LP
2287 }
2288
95c81c55 2289 r = manager_add_job(u->manager, JOB_START, other, job_mode, NULL, &error, NULL);
c1b6628d 2290 if (r < 0)
294446dc
LP
2291 log_unit_warning_errno(
2292 u, r, "Failed to enqueue %s job, ignoring: %s",
2293 dependency_name, bus_error_message(&error, r));
82acee14 2294 n_jobs ++;
222ae6a8 2295 }
294446dc 2296
82acee14 2297 if (n_jobs >= 0)
c0f86d66 2298 log_unit_debug(u, "Triggering %s dependencies done (%i %s).",
82acee14 2299 dependency_name, n_jobs, n_jobs == 1 ? "job" : "jobs");
c0daa706
LP
2300}
2301
3ecaa09b
LP
2302void unit_trigger_notify(Unit *u) {
2303 Unit *other;
3ecaa09b
LP
2304
2305 assert(u);
2306
15ed3c3a 2307 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_TRIGGERED_BY)
3ecaa09b
LP
2308 if (UNIT_VTABLE(other)->trigger_notify)
2309 UNIT_VTABLE(other)->trigger_notify(other, u);
2310}
2311
37109b85
ZJS
2312static int raise_level(int log_level, bool condition_info, bool condition_notice) {
2313 if (condition_notice && log_level > LOG_NOTICE)
2314 return LOG_NOTICE;
2315 if (condition_info && log_level > LOG_INFO)
2316 return LOG_INFO;
2317 return log_level;
2318}
2319
915b1d01 2320static int unit_log_resources(Unit *u) {
aac3384e 2321 struct iovec iovec[1 + 2 + _CGROUP_IP_ACCOUNTING_METRIC_MAX + _CGROUP_IO_ACCOUNTING_METRIC_MAX + 4];
bc40a20e
LP
2322 bool any_traffic = false, have_ip_accounting = false, any_io = false, have_io_accounting = false;
2323 _cleanup_free_ char *igress = NULL, *egress = NULL, *rr = NULL, *wr = NULL;
162392b7 2324 int log_level = LOG_DEBUG; /* May be raised if resources consumed over a threshold */
915b1d01 2325 size_t n_message_parts = 0, n_iovec = 0;
aac3384e 2326 char* message_parts[1 + 2 + 2 + 2 + 1], *t;
915b1d01 2327 nsec_t nsec = NSEC_INFINITY;
aac3384e 2328 uint64_t memory_peak = UINT64_MAX, memory_swap_peak = UINT64_MAX;
915b1d01
LP
2329 int r;
2330 const char* const ip_fields[_CGROUP_IP_ACCOUNTING_METRIC_MAX] = {
2331 [CGROUP_IP_INGRESS_BYTES] = "IP_METRIC_INGRESS_BYTES",
2332 [CGROUP_IP_INGRESS_PACKETS] = "IP_METRIC_INGRESS_PACKETS",
2333 [CGROUP_IP_EGRESS_BYTES] = "IP_METRIC_EGRESS_BYTES",
2334 [CGROUP_IP_EGRESS_PACKETS] = "IP_METRIC_EGRESS_PACKETS",
2335 };
bc40a20e
LP
2336 const char* const io_fields[_CGROUP_IO_ACCOUNTING_METRIC_MAX] = {
2337 [CGROUP_IO_READ_BYTES] = "IO_METRIC_READ_BYTES",
2338 [CGROUP_IO_WRITE_BYTES] = "IO_METRIC_WRITE_BYTES",
2339 [CGROUP_IO_READ_OPERATIONS] = "IO_METRIC_READ_OPERATIONS",
2340 [CGROUP_IO_WRITE_OPERATIONS] = "IO_METRIC_WRITE_OPERATIONS",
2341 };
915b1d01
LP
2342
2343 assert(u);
2344
2345 /* Invoked whenever a unit enters failed or dead state. Logs information about consumed resources if resource
2346 * accounting was enabled for a unit. It does this in two ways: a friendly human readable string with reduced
2347 * information and the complete data in structured fields. */
2348
2349 (void) unit_get_cpu_usage(u, &nsec);
2350 if (nsec != NSEC_INFINITY) {
915b1d01
LP
2351 /* Format the CPU time for inclusion in the structured log message */
2352 if (asprintf(&t, "CPU_USAGE_NSEC=%" PRIu64, nsec) < 0) {
2353 r = log_oom();
2354 goto finish;
2355 }
2356 iovec[n_iovec++] = IOVEC_MAKE_STRING(t);
2357
2358 /* Format the CPU time for inclusion in the human language message string */
5291f26d 2359 t = strjoin("consumed ", FORMAT_TIMESPAN(nsec / NSEC_PER_USEC, USEC_PER_MSEC), " CPU time");
915b1d01
LP
2360 if (!t) {
2361 r = log_oom();
2362 goto finish;
2363 }
2364
2365 message_parts[n_message_parts++] = t;
37109b85
ZJS
2366
2367 log_level = raise_level(log_level,
ef6bb4dd
CG
2368 nsec > MENTIONWORTHY_CPU_NSEC,
2369 nsec > NOTICEWORTHY_CPU_NSEC);
915b1d01
LP
2370 }
2371
9824ab1f 2372 (void) unit_get_memory_accounting(u, CGROUP_MEMORY_PEAK, &memory_peak);
0531bded
FS
2373 if (memory_peak != UINT64_MAX) {
2374 /* Format peak memory for inclusion in the structured log message */
2375 if (asprintf(&t, "MEMORY_PEAK=%" PRIu64, memory_peak) < 0) {
2376 r = log_oom();
2377 goto finish;
2378 }
2379 iovec[n_iovec++] = IOVEC_MAKE_STRING(t);
2380
2381 /* Format peak memory for inclusion in the human language message string */
2382 t = strjoin(FORMAT_BYTES(memory_peak), " memory peak");
2383 if (!t) {
2384 r = log_oom();
2385 goto finish;
2386 }
2387 message_parts[n_message_parts++] = t;
2388 }
2389
9824ab1f 2390 (void) unit_get_memory_accounting(u, CGROUP_MEMORY_SWAP_PEAK, &memory_swap_peak);
aac3384e
FS
2391 if (memory_swap_peak != UINT64_MAX) {
2392 /* Format peak swap memory for inclusion in the structured log message */
2393 if (asprintf(&t, "MEMORY_SWAP_PEAK=%" PRIu64, memory_swap_peak) < 0) {
2394 r = log_oom();
2395 goto finish;
2396 }
2397 iovec[n_iovec++] = IOVEC_MAKE_STRING(t);
2398
2399 /* Format peak swap memory for inclusion in the human language message string */
2400 t = strjoin(FORMAT_BYTES(memory_swap_peak), " memory swap peak");
2401 if (!t) {
2402 r = log_oom();
2403 goto finish;
2404 }
2405 message_parts[n_message_parts++] = t;
2406 }
2407
bc40a20e 2408 for (CGroupIOAccountingMetric k = 0; k < _CGROUP_IO_ACCOUNTING_METRIC_MAX; k++) {
bc40a20e
LP
2409 uint64_t value = UINT64_MAX;
2410
2411 assert(io_fields[k]);
2412
2413 (void) unit_get_io_accounting(u, k, k > 0, &value);
2414 if (value == UINT64_MAX)
2415 continue;
2416
2417 have_io_accounting = true;
2418 if (value > 0)
2419 any_io = true;
2420
2421 /* Format IO accounting data for inclusion in the structured log message */
2422 if (asprintf(&t, "%s=%" PRIu64, io_fields[k], value) < 0) {
2423 r = log_oom();
2424 goto finish;
2425 }
2426 iovec[n_iovec++] = IOVEC_MAKE_STRING(t);
2427
2428 /* Format the IO accounting data for inclusion in the human language message string, but only
2429 * for the bytes counters (and not for the operations counters) */
2430 if (k == CGROUP_IO_READ_BYTES) {
2431 assert(!rr);
2b59bf51 2432 rr = strjoin("read ", strna(FORMAT_BYTES(value)), " from disk");
bc40a20e
LP
2433 if (!rr) {
2434 r = log_oom();
2435 goto finish;
2436 }
2437 } else if (k == CGROUP_IO_WRITE_BYTES) {
2438 assert(!wr);
2b59bf51 2439 wr = strjoin("written ", strna(FORMAT_BYTES(value)), " to disk");
bc40a20e
LP
2440 if (!wr) {
2441 r = log_oom();
2442 goto finish;
2443 }
2444 }
37109b85
ZJS
2445
2446 if (IN_SET(k, CGROUP_IO_READ_BYTES, CGROUP_IO_WRITE_BYTES))
2447 log_level = raise_level(log_level,
2448 value > MENTIONWORTHY_IO_BYTES,
2449 value > NOTICEWORTHY_IO_BYTES);
bc40a20e
LP
2450 }
2451
2452 if (have_io_accounting) {
2453 if (any_io) {
2454 if (rr)
2455 message_parts[n_message_parts++] = TAKE_PTR(rr);
2456 if (wr)
2457 message_parts[n_message_parts++] = TAKE_PTR(wr);
2458
2459 } else {
2460 char *k;
2461
2462 k = strdup("no IO");
2463 if (!k) {
2464 r = log_oom();
2465 goto finish;
2466 }
2467
2468 message_parts[n_message_parts++] = k;
2469 }
2470 }
2471
12375b95 2472 for (CGroupIPAccountingMetric m = 0; m < _CGROUP_IP_ACCOUNTING_METRIC_MAX; m++) {
915b1d01
LP
2473 uint64_t value = UINT64_MAX;
2474
2475 assert(ip_fields[m]);
2476
2477 (void) unit_get_ip_accounting(u, m, &value);
2478 if (value == UINT64_MAX)
2479 continue;
82044702
LP
2480
2481 have_ip_accounting = true;
a87b1faa
LP
2482 if (value > 0)
2483 any_traffic = true;
915b1d01
LP
2484
2485 /* Format IP accounting data for inclusion in the structured log message */
2486 if (asprintf(&t, "%s=%" PRIu64, ip_fields[m], value) < 0) {
2487 r = log_oom();
2488 goto finish;
2489 }
2490 iovec[n_iovec++] = IOVEC_MAKE_STRING(t);
2491
2492 /* Format the IP accounting data for inclusion in the human language message string, but only for the
2493 * bytes counters (and not for the packets counters) */
a87b1faa
LP
2494 if (m == CGROUP_IP_INGRESS_BYTES) {
2495 assert(!igress);
2b59bf51 2496 igress = strjoin("received ", strna(FORMAT_BYTES(value)), " IP traffic");
a87b1faa
LP
2497 if (!igress) {
2498 r = log_oom();
2499 goto finish;
2500 }
2501 } else if (m == CGROUP_IP_EGRESS_BYTES) {
2502 assert(!egress);
2b59bf51 2503 egress = strjoin("sent ", strna(FORMAT_BYTES(value)), " IP traffic");
a87b1faa
LP
2504 if (!egress) {
2505 r = log_oom();
2506 goto finish;
2507 }
2508 }
37109b85
ZJS
2509
2510 if (IN_SET(m, CGROUP_IP_INGRESS_BYTES, CGROUP_IP_EGRESS_BYTES))
2511 log_level = raise_level(log_level,
2512 value > MENTIONWORTHY_IP_BYTES,
2513 value > NOTICEWORTHY_IP_BYTES);
a87b1faa
LP
2514 }
2515
c2503e35
RH
2516 /* This check is here because it is the earliest point following all possible log_level assignments. If
2517 * log_level is assigned anywhere after this point, move this check. */
2518 if (!unit_log_level_test(u, log_level)) {
2519 r = 0;
2520 goto finish;
2521 }
2522
82044702
LP
2523 if (have_ip_accounting) {
2524 if (any_traffic) {
2525 if (igress)
2526 message_parts[n_message_parts++] = TAKE_PTR(igress);
2527 if (egress)
2528 message_parts[n_message_parts++] = TAKE_PTR(egress);
a87b1faa 2529
82044702
LP
2530 } else {
2531 char *k;
915b1d01 2532
82044702
LP
2533 k = strdup("no IP traffic");
2534 if (!k) {
2535 r = log_oom();
2536 goto finish;
2537 }
2538
2539 message_parts[n_message_parts++] = k;
2540 }
915b1d01
LP
2541 }
2542
2543 /* Is there any accounting data available at all? */
2544 if (n_iovec == 0) {
2545 r = 0;
2546 goto finish;
2547 }
2548
2549 if (n_message_parts == 0)
a87b1faa 2550 t = strjoina("MESSAGE=", u->id, ": Completed.");
915b1d01 2551 else {
c2b2df60 2552 _cleanup_free_ char *joined = NULL;
915b1d01
LP
2553
2554 message_parts[n_message_parts] = NULL;
2555
2556 joined = strv_join(message_parts, ", ");
2557 if (!joined) {
2558 r = log_oom();
2559 goto finish;
2560 }
2561
ec9d636b 2562 joined[0] = ascii_toupper(joined[0]);
a87b1faa 2563 t = strjoina("MESSAGE=", u->id, ": ", joined, ".");
915b1d01
LP
2564 }
2565
2566 /* The following four fields we allocate on the stack or are static strings, we hence don't want to free them,
2567 * and hence don't increase n_iovec for them */
2568 iovec[n_iovec] = IOVEC_MAKE_STRING(t);
2569 iovec[n_iovec + 1] = IOVEC_MAKE_STRING("MESSAGE_ID=" SD_MESSAGE_UNIT_RESOURCES_STR);
2570
2571 t = strjoina(u->manager->unit_log_field, u->id);
2572 iovec[n_iovec + 2] = IOVEC_MAKE_STRING(t);
2573
2574 t = strjoina(u->manager->invocation_log_field, u->invocation_id_string);
2575 iovec[n_iovec + 3] = IOVEC_MAKE_STRING(t);
2576
c2503e35 2577 log_unit_struct_iovec(u, log_level, iovec, n_iovec + 4);
915b1d01
LP
2578 r = 0;
2579
2580finish:
24ae45cb 2581 free_many_charp(message_parts, n_message_parts);
915b1d01 2582
12375b95 2583 for (size_t i = 0; i < n_iovec; i++)
915b1d01
LP
2584 free(iovec[i].iov_base);
2585
2586 return r;
2587
2588}
2589
adefcf28
LP
2590static void unit_update_on_console(Unit *u) {
2591 bool b;
2592
2593 assert(u);
2594
2595 b = unit_needs_console(u);
2596 if (u->on_console == b)
2597 return;
2598
2599 u->on_console = b;
2600 if (b)
2601 manager_ref_console(u->manager);
2602 else
2603 manager_unref_console(u->manager);
adefcf28
LP
2604}
2605
6eb65e7c
LP
2606static void unit_emit_audit_start(Unit *u) {
2607 assert(u);
2608
d52b8493 2609 if (UNIT_VTABLE(u)->audit_start_message_type <= 0)
6eb65e7c
LP
2610 return;
2611
2612 /* Write audit record if we have just finished starting up */
d52b8493 2613 manager_send_unit_audit(u->manager, u, UNIT_VTABLE(u)->audit_start_message_type, /* success= */ true);
6eb65e7c
LP
2614 u->in_audit = true;
2615}
2616
2617static void unit_emit_audit_stop(Unit *u, UnitActiveState state) {
2618 assert(u);
2619
d52b8493 2620 if (UNIT_VTABLE(u)->audit_start_message_type <= 0)
6eb65e7c
LP
2621 return;
2622
2623 if (u->in_audit) {
2624 /* Write audit record if we have just finished shutting down */
d52b8493 2625 manager_send_unit_audit(u->manager, u, UNIT_VTABLE(u)->audit_stop_message_type, /* success= */ state == UNIT_INACTIVE);
6eb65e7c
LP
2626 u->in_audit = false;
2627 } else {
2628 /* Hmm, if there was no start record written write it now, so that we always have a nice pair */
d52b8493 2629 manager_send_unit_audit(u->manager, u, UNIT_VTABLE(u)->audit_start_message_type, /* success= */ state == UNIT_INACTIVE);
6eb65e7c
LP
2630
2631 if (state == UNIT_INACTIVE)
d52b8493 2632 manager_send_unit_audit(u->manager, u, UNIT_VTABLE(u)->audit_stop_message_type, /* success= */ true);
6eb65e7c
LP
2633 }
2634}
2635
96b09de5 2636static bool unit_process_job(Job *j, UnitActiveState ns, bool reload_success) {
16c74914 2637 bool unexpected = false;
31cd5f63 2638 JobResult result;
16c74914
LP
2639
2640 assert(j);
2641
2642 if (j->state == JOB_WAITING)
16c74914
LP
2643 /* So we reached a different state for this job. Let's see if we can run it now if it failed previously
2644 * due to EAGAIN. */
2645 job_add_to_run_queue(j);
2646
2647 /* Let's check whether the unit's new state constitutes a finished job, or maybe contradicts a running job and
2648 * hence needs to invalidate jobs. */
2649
2650 switch (j->type) {
2651
2652 case JOB_START:
2653 case JOB_VERIFY_ACTIVE:
2654
2655 if (UNIT_IS_ACTIVE_OR_RELOADING(ns))
2656 job_finish_and_invalidate(j, JOB_DONE, true, false);
2657 else if (j->state == JOB_RUNNING && ns != UNIT_ACTIVATING) {
2658 unexpected = true;
2659
31cd5f63
AZ
2660 if (UNIT_IS_INACTIVE_OR_FAILED(ns)) {
2661 if (ns == UNIT_FAILED)
2662 result = JOB_FAILED;
31cd5f63
AZ
2663 else
2664 result = JOB_DONE;
2665
2666 job_finish_and_invalidate(j, result, true, false);
2667 }
16c74914
LP
2668 }
2669
2670 break;
2671
2672 case JOB_RELOAD:
2673 case JOB_RELOAD_OR_START:
2674 case JOB_TRY_RELOAD:
2675
2676 if (j->state == JOB_RUNNING) {
2677 if (ns == UNIT_ACTIVE)
96b09de5 2678 job_finish_and_invalidate(j, reload_success ? JOB_DONE : JOB_FAILED, true, false);
16c74914
LP
2679 else if (!IN_SET(ns, UNIT_ACTIVATING, UNIT_RELOADING)) {
2680 unexpected = true;
2681
2682 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
2683 job_finish_and_invalidate(j, ns == UNIT_FAILED ? JOB_FAILED : JOB_DONE, true, false);
2684 }
2685 }
2686
2687 break;
2688
2689 case JOB_STOP:
2690 case JOB_RESTART:
2691 case JOB_TRY_RESTART:
2692
2693 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
2694 job_finish_and_invalidate(j, JOB_DONE, true, false);
2695 else if (j->state == JOB_RUNNING && ns != UNIT_DEACTIVATING) {
2696 unexpected = true;
2697 job_finish_and_invalidate(j, JOB_FAILED, true, false);
2698 }
2699
2700 break;
2701
2702 default:
04499a70 2703 assert_not_reached();
16c74914
LP
2704 }
2705
2706 return unexpected;
2707}
2708
96b09de5 2709void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, bool reload_success) {
429926e9 2710 const char *reason;
8559b3b7 2711 Manager *m;
a096ed36 2712
87f0e418
LP
2713 assert(u);
2714 assert(os < _UNIT_ACTIVE_STATE_MAX);
2715 assert(ns < _UNIT_ACTIVE_STATE_MAX);
87f0e418 2716
8559b3b7
LP
2717 /* Note that this is called for all low-level state changes, even if they might map to the same high-level
2718 * UnitActiveState! That means that ns == os is an expected behavior here. For example: if a mount point is
2719 * remounted this function will be called too! */
87f0e418 2720
546ac4f0
MS
2721 m = u->manager;
2722
3c4832ad
LP
2723 /* Let's enqueue the change signal early. In case this unit has a job associated we want that this unit is in
2724 * the bus queue, so that any job change signal queued will force out the unit change signal first. */
2725 unit_add_to_dbus_queue(u);
2726
e30bbc90
AZ
2727 /* Update systemd-oomd on the property/state change */
2728 if (os != ns) {
2729 /* Always send an update if the unit is going into an inactive state so systemd-oomd knows to stop
2730 * monitoring.
2731 * Also send an update whenever the unit goes active; this is to handle a case where an override file
2732 * sets one of the ManagedOOM*= properties to "kill", then later removes it. systemd-oomd needs to
2733 * know to stop monitoring when the unit changes from "kill" -> "auto" on daemon-reload, but we don't
2734 * have the information on the property. Thus, indiscriminately send an update. */
f561e8c6 2735 if (UNIT_IS_INACTIVE_OR_FAILED(ns) || UNIT_IS_ACTIVE_OR_RELOADING(ns))
e30bbc90
AZ
2736 (void) manager_varlink_send_managed_oom_update(u);
2737 }
2738
f755e3b7 2739 /* Update timestamps for state changes */
2c289ea8 2740 if (!MANAGER_IS_RELOADING(m)) {
fa5a0251 2741 dual_timestamp_now(&u->state_change_timestamp);
173e3821 2742
bdbf9951 2743 if (UNIT_IS_INACTIVE_OR_FAILED(os) && !UNIT_IS_INACTIVE_OR_FAILED(ns))
a483fb59 2744 u->inactive_exit_timestamp = u->state_change_timestamp;
bdbf9951 2745 else if (!UNIT_IS_INACTIVE_OR_FAILED(os) && UNIT_IS_INACTIVE_OR_FAILED(ns))
a483fb59 2746 u->inactive_enter_timestamp = u->state_change_timestamp;
bdbf9951
LP
2747
2748 if (!UNIT_IS_ACTIVE_OR_RELOADING(os) && UNIT_IS_ACTIVE_OR_RELOADING(ns))
a483fb59 2749 u->active_enter_timestamp = u->state_change_timestamp;
bdbf9951 2750 else if (UNIT_IS_ACTIVE_OR_RELOADING(os) && !UNIT_IS_ACTIVE_OR_RELOADING(ns))
a483fb59 2751 u->active_exit_timestamp = u->state_change_timestamp;
bdbf9951 2752 }
87f0e418 2753
865cc19a 2754 /* Keep track of failed units */
8724defe 2755 (void) manager_update_failed_units(m, u, ns == UNIT_FAILED);
f755e3b7 2756
d3070fbd
LP
2757 /* Make sure the cgroup and state files are always removed when we become inactive */
2758 if (UNIT_IS_INACTIVE_OR_FAILED(ns)) {
ff68472a
ZJS
2759 SET_FLAG(u->markers,
2760 (1u << UNIT_MARKER_NEEDS_RELOAD)|(1u << UNIT_MARKER_NEEDS_RESTART),
2761 false);
efdb0237 2762 unit_prune_cgroup(u);
d3070fbd 2763 unit_unlink_state_files(u);
ff68472a
ZJS
2764 } else if (ns != os && ns == UNIT_RELOADING)
2765 SET_FLAG(u->markers, 1u << UNIT_MARKER_NEEDS_RELOAD, false);
fb385181 2766
adefcf28 2767 unit_update_on_console(u);
7ed9f6cd 2768
2c289ea8 2769 if (!MANAGER_IS_RELOADING(m)) {
a1c7334b
LP
2770 bool unexpected;
2771
2772 /* Let's propagate state changes to the job */
2773 if (u->job)
96b09de5 2774 unexpected = unit_process_job(u->job, ns, reload_success);
a1c7334b
LP
2775 else
2776 unexpected = true;
f3bff0eb 2777
a1c7334b
LP
2778 /* If this state change happened without being requested by a job, then let's retroactively start or
2779 * stop dependencies. We skip that step when deserializing, since we don't want to create any
2780 * additional jobs just because something is already activated. */
bdbf9951
LP
2781
2782 if (unexpected) {
2783 if (UNIT_IS_INACTIVE_OR_FAILED(os) && UNIT_IS_ACTIVE_OR_ACTIVATING(ns))
2784 retroactively_start_dependencies(u);
2785 else if (UNIT_IS_ACTIVE_OR_ACTIVATING(os) && UNIT_IS_INACTIVE_OR_DEACTIVATING(ns))
2786 retroactively_stop_dependencies(u);
2787 }
5de9682c 2788
bdbf9951 2789 if (ns != os && ns == UNIT_FAILED) {
ed77d407 2790 log_unit_debug(u, "Unit entered failed state.");
49b34f75 2791 unit_start_on_failure(u, "OnFailure=", UNIT_ATOM_ON_FAILURE, u->on_failure_job_mode);
cd6d0a45 2792 }
e537352b 2793
256f65d0
LP
2794 if (UNIT_IS_ACTIVE_OR_RELOADING(ns) && !UNIT_IS_ACTIVE_OR_RELOADING(os)) {
2795 /* This unit just finished starting up */
3b2775c5 2796
6eb65e7c 2797 unit_emit_audit_start(u);
546ac4f0 2798 manager_send_unit_plymouth(m, u);
256f65d0 2799 }
bdbf9951 2800
256f65d0 2801 if (UNIT_IS_INACTIVE_OR_FAILED(ns) && !UNIT_IS_INACTIVE_OR_FAILED(os)) {
915b1d01 2802 /* This unit just stopped/failed. */
256f65d0 2803
6eb65e7c 2804 unit_emit_audit_stop(u, ns);
915b1d01 2805 unit_log_resources(u);
cd6d0a45 2806 }
294446dc 2807
49b34f75 2808 if (ns == UNIT_INACTIVE && !IN_SET(os, UNIT_FAILED, UNIT_INACTIVE, UNIT_MAINTENANCE))
294446dc 2809 unit_start_on_failure(u, "OnSuccess=", UNIT_ATOM_ON_SUCCESS, u->on_success_job_mode);
f278026d
LP
2810 }
2811
31dc1ca3
LP
2812 manager_recheck_journal(m);
2813 manager_recheck_dbus(m);
e63ebf71 2814
3ecaa09b 2815 unit_trigger_notify(u);
3b2775c5 2816
8724defe 2817 if (!MANAGER_IS_RELOADING(m)) {
429926e9
TR
2818 if (os != UNIT_FAILED && ns == UNIT_FAILED) {
2819 reason = strjoina("unit ", u->id, " failed");
36c4dc08 2820 emergency_action(m, u->failure_action, 0, u->reboot_arg, unit_failure_action_exit_status(u), reason);
429926e9
TR
2821 } else if (!UNIT_IS_INACTIVE_OR_FAILED(os) && ns == UNIT_INACTIVE) {
2822 reason = strjoina("unit ", u->id, " succeeded");
36c4dc08 2823 emergency_action(m, u->success_action, 0, u->reboot_arg, unit_success_action_exit_status(u), reason);
429926e9 2824 }
ff502445
LP
2825 }
2826
99e9af25 2827 /* And now, add the unit or depending units to various queues that will act on the new situation if
48008c1c 2828 * needed. These queues generally check for continuous state changes rather than events (like most of
99e9af25
LP
2829 * the state propagation above), and do work deferred instead of instantly, since they typically
2830 * don't want to run during reloading, and usually involve checking combined state of multiple units
2831 * at once. */
2832
2833 if (UNIT_IS_INACTIVE_OR_FAILED(ns)) {
2834 /* Stop unneeded units and bound-by units regardless if going down was expected or not */
2835 check_unneeded_dependencies(u);
2836 check_bound_by_dependencies(u);
2837
2838 /* Maybe someone wants us to remain up? */
2839 unit_submit_to_start_when_upheld_queue(u);
2840
2841 /* Maybe the unit should be GC'ed now? */
2842 unit_add_to_gc_queue(u);
6ac62d61
LP
2843
2844 /* Maybe we can release some resources now? */
2845 unit_submit_to_release_resources_queue(u);
99e9af25
LP
2846 }
2847
2848 if (UNIT_IS_ACTIVE_OR_RELOADING(ns)) {
2849 /* Start uphold units regardless if going up was expected or not */
2850 check_uphold_dependencies(u);
2851
2852 /* Maybe we finished startup and are now ready for being stopped because unneeded? */
2853 unit_submit_to_stop_when_unneeded_queue(u);
2854
2855 /* Maybe we finished startup, but something we needed has vanished? Let's die then. (This happens
2856 * when something BindsTo= to a Type=oneshot unit, as these units go directly from starting to
2857 * inactive, without ever entering started.) */
2858 unit_submit_to_stop_when_bound_queue(u);
2859 }
87f0e418
LP
2860}
2861
495e75ed
LP
2862int unit_watch_pidref(Unit *u, PidRef *pid, bool exclusive) {
2863 _cleanup_(pidref_freep) PidRef *pid_dup = NULL;
62a76913 2864 int r;
a911bb9a 2865
495e75ed 2866 /* Adds a specific PID to the set of PIDs this unit watches. */
87f0e418 2867
495e75ed
LP
2868 assert(u);
2869 assert(pidref_is_set(pid));
5ba6985b 2870
f75f613d
FB
2871 /* Caller might be sure that this PID belongs to this unit only. Let's take this
2872 * opportunity to remove any stalled references to this PID as they can be created
2873 * easily (when watching a process which is not our direct child). */
2874 if (exclusive)
495e75ed
LP
2875 manager_unwatch_pidref(u->manager, pid);
2876
2877 if (set_contains(u->pids, pid)) /* early exit if already being watched */
2878 return 0;
f75f613d 2879
495e75ed 2880 r = pidref_dup(pid, &pid_dup);
5ba6985b
LP
2881 if (r < 0)
2882 return r;
2883
495e75ed 2884 /* First, insert into the set of PIDs maintained by the unit */
4c8d5f02 2885 r = set_ensure_put(&u->pids, &pidref_hash_ops_free, pid_dup);
a911bb9a
LP
2886 if (r < 0)
2887 return r;
2888
495e75ed 2889 pid = TAKE_PTR(pid_dup); /* continue with our copy now that we have installed it properly in our set */
05e343b7 2890
495e75ed 2891 /* Second, insert it into the simple global table, see if that works */
4c8d5f02 2892 r = hashmap_ensure_put(&u->manager->watch_pids, &pidref_hash_ops_free, pid, u);
495e75ed
LP
2893 if (r != -EEXIST)
2894 return r;
a911bb9a 2895
495e75ed
LP
2896 /* OK, the key is already assigned to a different unit. That's fine, then add us via the second
2897 * hashmap that points to an array. */
a911bb9a 2898
495e75ed
LP
2899 PidRef *old_pid = NULL;
2900 Unit **array = hashmap_get2(u->manager->watch_pids_more, pid, (void**) &old_pid);
62a76913 2901
495e75ed
LP
2902 /* Count entries in array */
2903 size_t n = 0;
2904 for (; array && array[n]; n++)
2905 ;
62a76913 2906
495e75ed
LP
2907 /* Allocate a new array */
2908 _cleanup_free_ Unit **new_array = new(Unit*, n + 2);
2909 if (!new_array)
2910 return -ENOMEM;
62a76913 2911
495e75ed
LP
2912 /* Append us to the end */
2913 memcpy_safe(new_array, array, sizeof(Unit*) * n);
2914 new_array[n] = u;
2915 new_array[n+1] = NULL;
62a76913 2916
495e75ed 2917 /* Make sure the hashmap is allocated */
4c8d5f02 2918 r = hashmap_ensure_allocated(&u->manager->watch_pids_more, &pidref_hash_ops_free);
495e75ed 2919 if (r < 0)
62a76913
LP
2920 return r;
2921
495e75ed
LP
2922 /* Add or replace the old array */
2923 r = hashmap_replace(u->manager->watch_pids_more, old_pid ?: pid, new_array);
62a76913
LP
2924 if (r < 0)
2925 return r;
2926
495e75ed
LP
2927 TAKE_PTR(new_array); /* Now part of the hash table */
2928 free(array); /* Which means we can now delete the old version */
62a76913 2929 return 0;
87f0e418
LP
2930}
2931
495e75ed
LP
2932int unit_watch_pid(Unit *u, pid_t pid, bool exclusive) {
2933 _cleanup_(pidref_done) PidRef pidref = PIDREF_NULL;
2934 int r;
62a76913 2935
87f0e418 2936 assert(u);
62a76913
LP
2937 assert(pid_is_valid(pid));
2938
495e75ed
LP
2939 r = pidref_set_pid(&pidref, pid);
2940 if (r < 0)
2941 return r;
62a76913 2942
495e75ed
LP
2943 return unit_watch_pidref(u, &pidref, exclusive);
2944}
12375b95 2945
495e75ed
LP
2946void unit_unwatch_pidref(Unit *u, PidRef *pid) {
2947 assert(u);
2948 assert(pidref_is_set(pid));
2949
2950 /* Remove from the set we maintain for this unit. (And destroy the returned pid eventually) */
2951 _cleanup_(pidref_freep) PidRef *pid1 = set_remove(u->pids, pid);
2952 if (!pid1)
2953 return; /* Early exit if this PID was never watched by us */
2954
2955 /* First let's drop the unit from the simple hash table, if it is included there */
2956 PidRef *pid2 = NULL;
2957 Unit *uu = hashmap_get2(u->manager->watch_pids, pid, (void**) &pid2);
2958
2959 /* Quick validation: iff we are in the watch_pids table then the PidRef object must be the same as in our local pids set */
2960 assert((uu == u) == (pid1 == pid2));
2961
2962 if (uu == u)
2963 /* OK, we are in the first table. Let's remove it there then, and we are done already. */
1c2beeb0 2964 assert_se(hashmap_remove_value(u->manager->watch_pids, pid2, uu));
495e75ed
LP
2965 else {
2966 /* We weren't in the first table, then let's consult the 2nd table that points to an array */
2967 PidRef *pid3 = NULL;
2968 Unit **array = hashmap_get2(u->manager->watch_pids_more, pid, (void**) &pid3);
2969
2970 /* Let's iterate through the array, dropping our own entry */
2971 size_t m = 0, n = 0;
2972 for (; array && array[n]; n++)
62a76913
LP
2973 if (array[n] != u)
2974 array[m++] = array[n];
495e75ed
LP
2975 if (n == m)
2976 return; /* Not there */
2977
2978 array[m] = NULL; /* set trailing NULL marker on the new end */
62a76913
LP
2979
2980 if (m == 0) {
2981 /* The array is now empty, remove the entire entry */
1c2beeb0 2982 assert_se(hashmap_remove_value(u->manager->watch_pids_more, pid3, array));
62a76913 2983 free(array);
495e75ed
LP
2984 } else {
2985 /* The array is not empty, but let's make sure the entry is not keyed by the PidRef
2986 * we will delete, but by the PidRef object of the Unit that is now first in the
2987 * array. */
2988
2989 PidRef *new_pid3 = ASSERT_PTR(set_get(array[0]->pids, pid));
2990 assert_se(hashmap_replace(u->manager->watch_pids_more, new_pid3, array) >= 0);
62a76913
LP
2991 }
2992 }
495e75ed 2993}
87f0e418 2994
495e75ed
LP
2995void unit_unwatch_pid(Unit *u, pid_t pid) {
2996 return unit_unwatch_pidref(u, &PIDREF_MAKE_FROM_PID(pid));
a911bb9a
LP
2997}
2998
bd44e61b
LP
2999void unit_unwatch_all_pids(Unit *u) {
3000 assert(u);
3001
3002 while (!set_isempty(u->pids))
495e75ed 3003 unit_unwatch_pidref(u, set_first(u->pids));
bd44e61b 3004
efdb0237 3005 u->pids = set_free(u->pids);
a911bb9a
LP
3006}
3007
50be4f4a 3008static void unit_tidy_watch_pids(Unit *u) {
495e75ed 3009 PidRef *except1, *except2, *e;
a911bb9a
LP
3010
3011 assert(u);
3012
3013 /* Cleans dead PIDs from our list */
3014
50be4f4a
LP
3015 except1 = unit_main_pid(u);
3016 except2 = unit_control_pid(u);
3017
90e74a66 3018 SET_FOREACH(e, u->pids) {
495e75ed 3019 if (pidref_equal(except1, e) || pidref_equal(except2, e))
a911bb9a
LP
3020 continue;
3021
4d9f092b 3022 if (pidref_is_unwaited(e) <= 0)
495e75ed 3023 unit_unwatch_pidref(u, e);
a911bb9a 3024 }
87f0e418
LP
3025}
3026
50be4f4a 3027static int on_rewatch_pids_event(sd_event_source *s, void *userdata) {
99534007 3028 Unit *u = ASSERT_PTR(userdata);
50be4f4a
LP
3029
3030 assert(s);
50be4f4a
LP
3031
3032 unit_tidy_watch_pids(u);
3033 unit_watch_all_pids(u);
3034
3035 /* If the PID set is empty now, then let's finish this off. */
3036 unit_synthesize_cgroup_empty_event(u);
3037
3038 return 0;
3039}
3040
3041int unit_enqueue_rewatch_pids(Unit *u) {
3042 int r;
3043
3044 assert(u);
3045
3046 if (!u->cgroup_path)
3047 return -ENOENT;
3048
3049 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
3050 if (r < 0)
3051 return r;
3052 if (r > 0) /* On unified we can use proper notifications */
3053 return 0;
3054
3055 /* Enqueues a low-priority job that will clean up dead PIDs from our list of PIDs to watch and subscribe to new
3056 * PIDs that might have appeared. We do this in a delayed job because the work might be quite slow, as it
3057 * involves issuing kill(pid, 0) on all processes we watch. */
3058
3059 if (!u->rewatch_pids_event_source) {
3060 _cleanup_(sd_event_source_unrefp) sd_event_source *s = NULL;
3061
3062 r = sd_event_add_defer(u->manager->event, &s, on_rewatch_pids_event, u);
3063 if (r < 0)
3064 return log_error_errno(r, "Failed to allocate event source for tidying watched PIDs: %m");
3065
3066 r = sd_event_source_set_priority(s, SD_EVENT_PRIORITY_IDLE);
3067 if (r < 0)
28b77ab2 3068 return log_error_errno(r, "Failed to adjust priority of event source for tidying watched PIDs: %m");
50be4f4a
LP
3069
3070 (void) sd_event_source_set_description(s, "tidy-watch-pids");
3071
3072 u->rewatch_pids_event_source = TAKE_PTR(s);
3073 }
3074
3075 r = sd_event_source_set_enabled(u->rewatch_pids_event_source, SD_EVENT_ONESHOT);
3076 if (r < 0)
3077 return log_error_errno(r, "Failed to enable event source for tidying watched PIDs: %m");
3078
3079 return 0;
3080}
3081
3082void unit_dequeue_rewatch_pids(Unit *u) {
3083 int r;
3084 assert(u);
3085
3086 if (!u->rewatch_pids_event_source)
3087 return;
3088
3089 r = sd_event_source_set_enabled(u->rewatch_pids_event_source, SD_EVENT_OFF);
3090 if (r < 0)
3091 log_warning_errno(r, "Failed to disable event source for tidying watched PIDs, ignoring: %m");
3092
5dcadb4c 3093 u->rewatch_pids_event_source = sd_event_source_disable_unref(u->rewatch_pids_event_source);
50be4f4a
LP
3094}
3095
87f0e418
LP
3096bool unit_job_is_applicable(Unit *u, JobType j) {
3097 assert(u);
3098 assert(j >= 0 && j < _JOB_TYPE_MAX);
3099
3100 switch (j) {
3101
3102 case JOB_VERIFY_ACTIVE:
3103 case JOB_START:
e0209d83 3104 case JOB_NOP:
f5869324 3105 /* Note that we don't check unit_can_start() here. That's because .device units and suchlike are not
86b52a39 3106 * startable by us but may appear due to external events, and it thus makes sense to permit enqueuing
f5869324 3107 * jobs for it. */
87f0e418
LP
3108 return true;
3109
f5869324
LP
3110 case JOB_STOP:
3111 /* Similar as above. However, perpetual units can never be stopped (neither explicitly nor due to
86b52a39 3112 * external events), hence it makes no sense to permit enqueuing such a request either. */
f5869324
LP
3113 return !u->perpetual;
3114
87f0e418
LP
3115 case JOB_RESTART:
3116 case JOB_TRY_RESTART:
f5869324 3117 return unit_can_stop(u) && unit_can_start(u);
87f0e418
LP
3118
3119 case JOB_RELOAD:
3282591d 3120 case JOB_TRY_RELOAD:
87f0e418
LP
3121 return unit_can_reload(u);
3122
3123 case JOB_RELOAD_OR_START:
3124 return unit_can_reload(u) && unit_can_start(u);
3125
3126 default:
04499a70 3127 assert_not_reached();
87f0e418
LP
3128 }
3129}
3130
83110824
YW
3131static Hashmap *unit_get_dependency_hashmap_per_type(Unit *u, UnitDependency d) {
3132 Hashmap *deps;
3133
3134 assert(u);
3135 assert(d >= 0 && d < _UNIT_DEPENDENCY_MAX);
3136
3137 deps = hashmap_get(u->dependencies, UNIT_DEPENDENCY_TO_PTR(d));
3138 if (!deps) {
3139 _cleanup_hashmap_free_ Hashmap *h = NULL;
3140
3141 h = hashmap_new(NULL);
3142 if (!h)
3143 return NULL;
3144
3145 if (hashmap_ensure_put(&u->dependencies, NULL, UNIT_DEPENDENCY_TO_PTR(d), h) < 0)
3146 return NULL;
3147
3148 deps = TAKE_PTR(h);
3149 }
3150
3151 return deps;
3152}
3153
3154typedef enum NotifyDependencyFlags {
3155 NOTIFY_DEPENDENCY_UPDATE_FROM = 1 << 0,
3156 NOTIFY_DEPENDENCY_UPDATE_TO = 1 << 1,
3157} NotifyDependencyFlags;
3158
3159static int unit_add_dependency_impl(
eef85c4a
LP
3160 Unit *u,
3161 UnitDependency d,
3162 Unit *other,
eef85c4a 3163 UnitDependencyMask mask) {
87f0e418
LP
3164
3165 static const UnitDependency inverse_table[_UNIT_DEPENDENCY_MAX] = {
fb138166
ZJS
3166 [UNIT_REQUIRES] = UNIT_REQUIRED_BY,
3167 [UNIT_REQUISITE] = UNIT_REQUISITE_OF,
3168 [UNIT_WANTS] = UNIT_WANTED_BY,
3169 [UNIT_BINDS_TO] = UNIT_BOUND_BY,
3170 [UNIT_PART_OF] = UNIT_CONSISTS_OF,
3171 [UNIT_UPHOLDS] = UNIT_UPHELD_BY,
3172 [UNIT_REQUIRED_BY] = UNIT_REQUIRES,
3173 [UNIT_REQUISITE_OF] = UNIT_REQUISITE,
3174 [UNIT_WANTED_BY] = UNIT_WANTS,
3175 [UNIT_BOUND_BY] = UNIT_BINDS_TO,
3176 [UNIT_CONSISTS_OF] = UNIT_PART_OF,
3177 [UNIT_UPHELD_BY] = UNIT_UPHOLDS,
3178 [UNIT_CONFLICTS] = UNIT_CONFLICTED_BY,
3179 [UNIT_CONFLICTED_BY] = UNIT_CONFLICTS,
3180 [UNIT_BEFORE] = UNIT_AFTER,
3181 [UNIT_AFTER] = UNIT_BEFORE,
3182 [UNIT_ON_SUCCESS] = UNIT_ON_SUCCESS_OF,
3183 [UNIT_ON_SUCCESS_OF] = UNIT_ON_SUCCESS,
3184 [UNIT_ON_FAILURE] = UNIT_ON_FAILURE_OF,
3185 [UNIT_ON_FAILURE_OF] = UNIT_ON_FAILURE,
3186 [UNIT_TRIGGERS] = UNIT_TRIGGERED_BY,
3187 [UNIT_TRIGGERED_BY] = UNIT_TRIGGERS,
3188 [UNIT_PROPAGATES_RELOAD_TO] = UNIT_RELOAD_PROPAGATED_FROM,
85e9a101 3189 [UNIT_RELOAD_PROPAGATED_FROM] = UNIT_PROPAGATES_RELOAD_TO,
fb138166
ZJS
3190 [UNIT_PROPAGATES_STOP_TO] = UNIT_STOP_PROPAGATED_FROM,
3191 [UNIT_STOP_PROPAGATED_FROM] = UNIT_PROPAGATES_STOP_TO,
3192 [UNIT_JOINS_NAMESPACE_OF] = UNIT_JOINS_NAMESPACE_OF, /* symmetric! 👓 */
3193 [UNIT_REFERENCES] = UNIT_REFERENCED_BY,
3194 [UNIT_REFERENCED_BY] = UNIT_REFERENCES,
3195 [UNIT_IN_SLICE] = UNIT_SLICE_OF,
3196 [UNIT_SLICE_OF] = UNIT_IN_SLICE,
87f0e418 3197 };
83110824
YW
3198
3199 Hashmap *u_deps, *other_deps;
3200 UnitDependencyInfo u_info, u_info_old, other_info, other_info_old;
3201 NotifyDependencyFlags flags = 0;
3202 int r;
3203
3204 assert(u);
3205 assert(other);
3206 assert(d >= 0 && d < _UNIT_DEPENDENCY_MAX);
3207 assert(inverse_table[d] >= 0 && inverse_table[d] < _UNIT_DEPENDENCY_MAX);
3208 assert(mask > 0 && mask < _UNIT_DEPENDENCY_MASK_FULL);
3209
3210 /* Ensure the following two hashmaps for each unit exist:
3211 * - the top-level dependency hashmap that maps UnitDependency → Hashmap(Unit* → UnitDependencyInfo),
3212 * - the inner hashmap, that maps Unit* → UnitDependencyInfo, for the specified dependency type. */
3213 u_deps = unit_get_dependency_hashmap_per_type(u, d);
3214 if (!u_deps)
3215 return -ENOMEM;
3216
3217 other_deps = unit_get_dependency_hashmap_per_type(other, inverse_table[d]);
3218 if (!other_deps)
3219 return -ENOMEM;
3220
3221 /* Save the original dependency info. */
3222 u_info.data = u_info_old.data = hashmap_get(u_deps, other);
3223 other_info.data = other_info_old.data = hashmap_get(other_deps, u);
3224
3225 /* Update dependency info. */
3226 u_info.origin_mask |= mask;
3227 other_info.destination_mask |= mask;
3228
3229 /* Save updated dependency info. */
3230 if (u_info.data != u_info_old.data) {
3231 r = hashmap_replace(u_deps, other, u_info.data);
3232 if (r < 0)
3233 return r;
3234
3235 flags = NOTIFY_DEPENDENCY_UPDATE_FROM;
3236 }
3237
3238 if (other_info.data != other_info_old.data) {
3239 r = hashmap_replace(other_deps, u, other_info.data);
3240 if (r < 0) {
3241 if (u_info.data != u_info_old.data) {
3242 /* Restore the old dependency. */
3243 if (u_info_old.data)
3244 (void) hashmap_update(u_deps, other, u_info_old.data);
3245 else
3246 hashmap_remove(u_deps, other);
3247 }
3248 return r;
3249 }
3250
3251 flags |= NOTIFY_DEPENDENCY_UPDATE_TO;
3252 }
3253
3254 return flags;
3255}
3256
3257int unit_add_dependency(
3258 Unit *u,
3259 UnitDependency d,
3260 Unit *other,
3261 bool add_reference,
3262 UnitDependencyMask mask) {
3263
15ed3c3a 3264 UnitDependencyAtom a;
eef85c4a 3265 int r;
15ed3c3a
LP
3266
3267 /* Helper to know whether sending a notification is necessary or not: if the dependency is already
3268 * there, no need to notify! */
83110824 3269 NotifyDependencyFlags notify_flags;
87f0e418
LP
3270
3271 assert(u);
3272 assert(d >= 0 && d < _UNIT_DEPENDENCY_MAX);
87f0e418
LP
3273 assert(other);
3274
9f151f29
LP
3275 u = unit_follow_merge(u);
3276 other = unit_follow_merge(other);
15ed3c3a
LP
3277 a = unit_dependency_to_atom(d);
3278 assert(a >= 0);
9f151f29 3279
15ed3c3a 3280 /* We won't allow dependencies on ourselves. We will not consider them an error however. */
d1fab3fe 3281 if (u == other) {
ed991163
YW
3282 if (unit_should_warn_about_dependency(d))
3283 log_unit_warning(u, "Dependency %s=%s is dropped.",
3284 unit_dependency_to_string(d), u->id);
87f0e418 3285 return 0;
d1fab3fe 3286 }
87f0e418 3287
f14d6810
MG
3288 if (u->manager && FLAGS_SET(u->manager->test_run_flags, MANAGER_TEST_RUN_IGNORE_DEPENDENCIES))
3289 return 0;
3290
15ed3c3a
LP
3291 /* Note that ordering a device unit after a unit is permitted since it allows to start its job
3292 * running timeout at a specific time. */
3293 if (FLAGS_SET(a, UNIT_ATOM_BEFORE) && other->type == UNIT_DEVICE) {
b862c257 3294 log_unit_warning(u, "Dependency Before=%s ignored (.device units cannot be delayed)", other->id);
c80a9a33
LP
3295 return 0;
3296 }
3297
15ed3c3a 3298 if (FLAGS_SET(a, UNIT_ATOM_ON_FAILURE) && !UNIT_VTABLE(u)->can_fail) {
c80a9a33
LP
3299 log_unit_warning(u, "Requested dependency OnFailure=%s ignored (%s units cannot fail).", other->id, unit_type_to_string(u->type));
3300 return 0;
3301 }
3302
15ed3c3a 3303 if (FLAGS_SET(a, UNIT_ATOM_TRIGGERS) && !UNIT_VTABLE(u)->can_trigger)
c80a9a33
LP
3304 return log_unit_error_errno(u, SYNTHETIC_ERRNO(EINVAL),
3305 "Requested dependency Triggers=%s refused (%s units cannot trigger other units).", other->id, unit_type_to_string(u->type));
15ed3c3a 3306 if (FLAGS_SET(a, UNIT_ATOM_TRIGGERED_BY) && !UNIT_VTABLE(other)->can_trigger)
c80a9a33
LP
3307 return log_unit_error_errno(u, SYNTHETIC_ERRNO(EINVAL),
3308 "Requested dependency TriggeredBy=%s refused (%s units cannot trigger other units).", other->id, unit_type_to_string(other->type));
3309
d219a2b0
LP
3310 if (FLAGS_SET(a, UNIT_ATOM_IN_SLICE) && other->type != UNIT_SLICE)
3311 return log_unit_error_errno(u, SYNTHETIC_ERRNO(EINVAL),
3312 "Requested dependency Slice=%s refused (%s is not a slice unit).", other->id, other->id);
3313 if (FLAGS_SET(a, UNIT_ATOM_SLICE_OF) && u->type != UNIT_SLICE)
3314 return log_unit_error_errno(u, SYNTHETIC_ERRNO(EINVAL),
3315 "Requested dependency SliceOf=%s refused (%s is not a slice unit).", other->id, u->id);
3316
3317 if (FLAGS_SET(a, UNIT_ATOM_IN_SLICE) && !UNIT_HAS_CGROUP_CONTEXT(u))
3318 return log_unit_error_errno(u, SYNTHETIC_ERRNO(EINVAL),
3319 "Requested dependency Slice=%s refused (%s is not a cgroup unit).", other->id, u->id);
3320
3321 if (FLAGS_SET(a, UNIT_ATOM_SLICE_OF) && !UNIT_HAS_CGROUP_CONTEXT(other))
3322 return log_unit_error_errno(u, SYNTHETIC_ERRNO(EINVAL),
3323 "Requested dependency SliceOf=%s refused (%s is not a cgroup unit).", other->id, other->id);
3324
83110824 3325 r = unit_add_dependency_impl(u, d, other, mask);
613b411c 3326 if (r < 0)
87f0e418 3327 return r;
83110824 3328 notify_flags = r;
613b411c
LP
3329
3330 if (add_reference) {
83110824 3331 r = unit_add_dependency_impl(u, UNIT_REFERENCES, other, mask);
613b411c 3332 if (r < 0)
701cc384 3333 return r;
83110824 3334 notify_flags |= r;
613b411c 3335 }
87f0e418 3336
83110824 3337 if (FLAGS_SET(notify_flags, NOTIFY_DEPENDENCY_UPDATE_FROM))
5177cb0a 3338 unit_add_to_dbus_queue(u);
83110824 3339 if (FLAGS_SET(notify_flags, NOTIFY_DEPENDENCY_UPDATE_TO))
ac17080c 3340 unit_add_to_dbus_queue(other);
15ed3c3a 3341
83110824 3342 return notify_flags != 0;
87f0e418 3343}
0301abf4 3344
eef85c4a 3345int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference, UnitDependencyMask mask) {
5ee8e988 3346 int r = 0, s = 0;
2c966c03
LP
3347
3348 assert(u);
5ee8e988 3349 assert(d >= 0 || e >= 0);
2c966c03 3350
5ee8e988
LB
3351 if (d >= 0) {
3352 r = unit_add_dependency(u, d, other, add_reference, mask);
3353 if (r < 0)
3354 return r;
3355 }
2c966c03 3356
5ee8e988
LB
3357 if (e >= 0) {
3358 s = unit_add_dependency(u, e, other, add_reference, mask);
3359 if (s < 0)
3360 return s;
3361 }
a8c5a4c6
YW
3362
3363 return r > 0 || s > 0;
2c966c03
LP
3364}
3365
23e8c796 3366static int resolve_template(Unit *u, const char *name, char **buf, const char **ret) {
7410616c 3367 int r;
9e2f7c11
LP
3368
3369 assert(u);
23e8c796 3370 assert(name);
7410616c
LP
3371 assert(buf);
3372 assert(ret);
9e2f7c11 3373
7410616c
LP
3374 if (!unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
3375 *buf = NULL;
3376 *ret = name;
3377 return 0;
9e2f7c11
LP
3378 }
3379
ac155bb8 3380 if (u->instance)
7410616c 3381 r = unit_name_replace_instance(name, u->instance, buf);
9e2f7c11 3382 else {
ae018d9b 3383 _cleanup_free_ char *i = NULL;
9e2f7c11 3384
7410616c
LP
3385 r = unit_name_to_prefix(u->id, &i);
3386 if (r < 0)
3387 return r;
9e2f7c11 3388
7410616c 3389 r = unit_name_replace_instance(name, i, buf);
9e2f7c11 3390 }
7410616c
LP
3391 if (r < 0)
3392 return r;
9e2f7c11 3393
7410616c
LP
3394 *ret = *buf;
3395 return 0;
9e2f7c11
LP
3396}
3397
35d8c19a 3398int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, bool add_reference, UnitDependencyMask mask) {
7410616c 3399 _cleanup_free_ char *buf = NULL;
09b6b09f
LP
3400 Unit *other;
3401 int r;
3402
9e2f7c11 3403 assert(u);
35d8c19a 3404 assert(name);
09b6b09f 3405
23e8c796 3406 r = resolve_template(u, name, &buf, &name);
7410616c
LP
3407 if (r < 0)
3408 return r;
09b6b09f 3409
f14d6810
MG
3410 if (u->manager && FLAGS_SET(u->manager->test_run_flags, MANAGER_TEST_RUN_IGNORE_DEPENDENCIES))
3411 return 0;
3412
35d8c19a 3413 r = manager_load_unit(u->manager, name, NULL, NULL, &other);
8afbb8e1
LP
3414 if (r < 0)
3415 return r;
9e2f7c11 3416
eef85c4a 3417 return unit_add_dependency(u, d, other, add_reference, mask);
09b6b09f
LP
3418}
3419
5a724170 3420int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, bool add_reference, UnitDependencyMask mask) {
7410616c 3421 _cleanup_free_ char *buf = NULL;
2c966c03
LP
3422 Unit *other;
3423 int r;
2c966c03
LP
3424
3425 assert(u);
5a724170 3426 assert(name);
2c966c03 3427
23e8c796 3428 r = resolve_template(u, name, &buf, &name);
7410616c
LP
3429 if (r < 0)
3430 return r;
2c966c03 3431
f14d6810
MG
3432 if (u->manager && FLAGS_SET(u->manager->test_run_flags, MANAGER_TEST_RUN_IGNORE_DEPENDENCIES))
3433 return 0;
3434
5a724170 3435 r = manager_load_unit(u->manager, name, NULL, NULL, &other);
3f3cc397 3436 if (r < 0)
68eda4bd 3437 return r;
2c966c03 3438
eef85c4a 3439 return unit_add_two_dependencies(u, d, e, other, add_reference, mask);
2c966c03
LP
3440}
3441
0301abf4 3442int set_unit_path(const char *p) {
0301abf4 3443 /* This is mostly for debug purposes */
7c248223 3444 return RET_NERRNO(setenv("SYSTEMD_UNIT_PATH", p, 1));
0301abf4 3445}
88066b3a 3446
ea430986 3447char *unit_dbus_path(Unit *u) {
ea430986
LP
3448 assert(u);
3449
ac155bb8 3450 if (!u->id)
04ade7d2
LP
3451 return NULL;
3452
48899192 3453 return unit_dbus_path_from_name(u->id);
ea430986
LP
3454}
3455
4b58153d
LP
3456char *unit_dbus_path_invocation_id(Unit *u) {
3457 assert(u);
3458
3459 if (sd_id128_is_null(u->invocation_id))
3460 return NULL;
3461
3462 return unit_dbus_path_from_name(u->invocation_id_string);
3463}
3464
2d3b784d 3465int unit_set_invocation_id(Unit *u, sd_id128_t id) {
db868d45
ZJS
3466 int r;
3467
3468 assert(u);
3469
3470 /* Set the invocation ID for this unit. If we cannot, this will not roll back, but reset the whole thing. */
3471
3472 if (sd_id128_equal(u->invocation_id, id))
3473 return 0;
3474
3475 if (!sd_id128_is_null(u->invocation_id))
3476 (void) hashmap_remove_value(u->manager->units_by_invocation_id, &u->invocation_id, u);
3477
3478 if (sd_id128_is_null(id)) {
3479 r = 0;
3480 goto reset;
3481 }
3482
3483 r = hashmap_ensure_allocated(&u->manager->units_by_invocation_id, &id128_hash_ops);
3484 if (r < 0)
3485 goto reset;
3486
3487 u->invocation_id = id;
3488 sd_id128_to_string(id, u->invocation_id_string);
3489
3490 r = hashmap_put(u->manager->units_by_invocation_id, &u->invocation_id, u);
3491 if (r < 0)
3492 goto reset;
3493
3494 return 0;
3495
3496reset:
3497 u->invocation_id = SD_ID128_NULL;
3498 u->invocation_id_string[0] = 0;
3499 return r;
3500}
3501
899acf5c 3502int unit_set_slice(Unit *u, Unit *slice) {
d219a2b0
LP
3503 int r;
3504
d79200e2
LP
3505 assert(u);
3506 assert(slice);
3507
d219a2b0
LP
3508 /* Sets the unit slice if it has not been set before. Is extra careful, to only allow this for units
3509 * that actually have a cgroup context. Also, we don't allow to set this for slices (since the parent
3510 * slice is derived from the name). Make sure the unit we set is actually a slice. */
d79200e2
LP
3511
3512 if (!UNIT_HAS_CGROUP_CONTEXT(u))
3513 return -EOPNOTSUPP;
3514
3515 if (u->type == UNIT_SLICE)
3516 return -EINVAL;
3517
102ef982
LP
3518 if (unit_active_state(u) != UNIT_INACTIVE)
3519 return -EBUSY;
3520
d79200e2
LP
3521 if (slice->type != UNIT_SLICE)
3522 return -EINVAL;
3523
efdb0237
LP
3524 if (unit_has_name(u, SPECIAL_INIT_SCOPE) &&
3525 !unit_has_name(slice, SPECIAL_ROOT_SLICE))
3526 return -EPERM;
3527
12f64221 3528 if (UNIT_GET_SLICE(u) == slice)
d79200e2
LP
3529 return 0;
3530
99e66921 3531 /* Disallow slice changes if @u is already bound to cgroups */
12f64221 3532 if (UNIT_GET_SLICE(u) && u->cgroup_realized)
d79200e2
LP
3533 return -EBUSY;
3534
899acf5c
AZ
3535 /* Remove any slices assigned prior; we should only have one UNIT_IN_SLICE dependency */
3536 if (UNIT_GET_SLICE(u))
3537 unit_remove_dependencies(u, UNIT_DEPENDENCY_SLICE_PROPERTY);
3538
3539 r = unit_add_dependency(u, UNIT_IN_SLICE, slice, true, UNIT_DEPENDENCY_SLICE_PROPERTY);
d219a2b0
LP
3540 if (r < 0)
3541 return r;
3542
d79200e2
LP
3543 return 1;
3544}
3545
3546int unit_set_default_slice(Unit *u) {
a8833944 3547 const char *slice_name;
a016b922
LP
3548 Unit *slice;
3549 int r;
3550
3551 assert(u);
3552
f14d6810
MG
3553 if (u->manager && FLAGS_SET(u->manager->test_run_flags, MANAGER_TEST_RUN_IGNORE_DEPENDENCIES))
3554 return 0;
3555
12f64221 3556 if (UNIT_GET_SLICE(u))
a016b922
LP
3557 return 0;
3558
a8833944
LP
3559 if (u->instance) {
3560 _cleanup_free_ char *prefix = NULL, *escaped = NULL;
68eda4bd 3561
a8833944
LP
3562 /* Implicitly place all instantiated units in their
3563 * own per-template slice */
3564
7410616c
LP
3565 r = unit_name_to_prefix(u->id, &prefix);
3566 if (r < 0)
3567 return r;
a8833944
LP
3568
3569 /* The prefix is already escaped, but it might include
3570 * "-" which has a special meaning for slice units,
3571 * hence escape it here extra. */
7410616c 3572 escaped = unit_name_escape(prefix);
a8833944
LP
3573 if (!escaped)
3574 return -ENOMEM;
3575
463d0d15 3576 if (MANAGER_IS_SYSTEM(u->manager))
00e7b3c8 3577 slice_name = strjoina("system-", escaped, ".slice");
a8833944 3578 else
7f3b86a4 3579 slice_name = strjoina("app-", escaped, ".slice");
5ee24fa0
ZJS
3580
3581 } else if (unit_is_extrinsic(u))
3582 /* Keep all extrinsic units (e.g. perpetual units and swap and mount units in user mode) in
3583 * the root slice. They don't really belong in one of the subslices. */
3584 slice_name = SPECIAL_ROOT_SLICE;
3585
3586 else if (MANAGER_IS_SYSTEM(u->manager))
3587 slice_name = SPECIAL_SYSTEM_SLICE;
3588 else
3589 slice_name = SPECIAL_APP_SLICE;
a8833944
LP
3590
3591 r = manager_load_unit(u->manager, slice_name, NULL, NULL, &slice);
a016b922
LP
3592 if (r < 0)
3593 return r;
3594
899acf5c 3595 return unit_set_slice(u, slice);
a016b922
LP
3596}
3597
9444b1f2 3598const char *unit_slice_name(Unit *u) {
12f64221 3599 Unit *slice;
9444b1f2
LP
3600 assert(u);
3601
12f64221
LP
3602 slice = UNIT_GET_SLICE(u);
3603 if (!slice)
9444b1f2
LP
3604 return NULL;
3605
12f64221 3606 return slice->id;
9444b1f2
LP
3607}
3608
f6ff8c29 3609int unit_load_related_unit(Unit *u, const char *type, Unit **_found) {
78edb35a 3610 _cleanup_free_ char *t = NULL;
f6ff8c29
LP
3611 int r;
3612
3613 assert(u);
3614 assert(type);
3615 assert(_found);
3616
7410616c
LP
3617 r = unit_name_change_suffix(u->id, type, &t);
3618 if (r < 0)
3619 return r;
3620 if (unit_has_name(u, t))
3621 return -EINVAL;
f6ff8c29 3622
ac155bb8 3623 r = manager_load_unit(u->manager, t, NULL, NULL, _found);
9e2f7c11 3624 assert(r < 0 || *_found != u);
f6ff8c29
LP
3625 return r;
3626}
3627
bbc29086 3628static int signal_name_owner_changed(sd_bus_message *message, void *userdata, sd_bus_error *error) {
fc67a943 3629 const char *new_owner;
99534007 3630 Unit *u = ASSERT_PTR(userdata);
bbc29086
DM
3631 int r;
3632
3633 assert(message);
bbc29086 3634
fc67a943 3635 r = sd_bus_message_read(message, "sss", NULL, NULL, &new_owner);
bbc29086
DM
3636 if (r < 0) {
3637 bus_log_parse_error(r);
3638 return 0;
3639 }
3640
3641 if (UNIT_VTABLE(u)->bus_name_owner_change)
fc67a943 3642 UNIT_VTABLE(u)->bus_name_owner_change(u, empty_to_null(new_owner));
a5a8776a
MJ
3643
3644 return 0;
3645}
3646
3647static int get_name_owner_handler(sd_bus_message *message, void *userdata, sd_bus_error *error) {
3648 const sd_bus_error *e;
3649 const char *new_owner;
99534007 3650 Unit *u = ASSERT_PTR(userdata);
a5a8776a
MJ
3651 int r;
3652
3653 assert(message);
a5a8776a
MJ
3654
3655 u->get_name_owner_slot = sd_bus_slot_unref(u->get_name_owner_slot);
3656
a5a8776a 3657 e = sd_bus_message_get_error(message);
a5a8776a 3658 if (e) {
91053fc9 3659 if (!sd_bus_error_has_name(e, SD_BUS_ERROR_NAME_HAS_NO_OWNER)) {
33322185
YW
3660 r = sd_bus_error_get_errno(e);
3661 log_unit_error_errno(u, r,
3662 "Unexpected error response from GetNameOwner(): %s",
3663 bus_error_message(e, r));
3664 }
a5a8776a 3665
fc67a943
LP
3666 new_owner = NULL;
3667 } else {
3668 r = sd_bus_message_read(message, "s", &new_owner);
3669 if (r < 0)
3670 return bus_log_parse_error(r);
a5a8776a 3671
fc67a943
LP
3672 assert(!isempty(new_owner));
3673 }
a5a8776a
MJ
3674
3675 if (UNIT_VTABLE(u)->bus_name_owner_change)
fc67a943 3676 UNIT_VTABLE(u)->bus_name_owner_change(u, new_owner);
bbc29086
DM
3677
3678 return 0;
3679}
3680
9806e87d 3681int unit_install_bus_match(Unit *u, sd_bus *bus, const char *name) {
8df433d7 3682 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
9806e87d 3683 const char *match;
8df433d7 3684 usec_t timeout_usec = 0;
a5b07847 3685 int r;
bbc29086 3686
9806e87d
LP
3687 assert(u);
3688 assert(bus);
3689 assert(name);
bbc29086 3690
a5b07847 3691 if (u->match_bus_slot || u->get_name_owner_slot)
bbc29086
DM
3692 return -EBUSY;
3693
8df433d7 3694 /* NameOwnerChanged and GetNameOwner is used to detect when a service finished starting up. The dbus
3695 * call timeout shouldn't be earlier than that. If we couldn't get the start timeout, use the default
3696 * value defined above. */
3697 if (UNIT_VTABLE(u)->get_timeout_start_usec)
3698 timeout_usec = UNIT_VTABLE(u)->get_timeout_start_usec(u);
3699
9806e87d 3700 match = strjoina("type='signal',"
81d62103
ZJS
3701 "sender='org.freedesktop.DBus',"
3702 "path='/org/freedesktop/DBus',"
3703 "interface='org.freedesktop.DBus',"
3704 "member='NameOwnerChanged',"
3705 "arg0='", name, "'");
bbc29086 3706
8df433d7 3707 r = bus_add_match_full(
3708 bus,
3709 &u->match_bus_slot,
3710 true,
3711 match,
3712 signal_name_owner_changed,
3713 NULL,
3714 u,
3715 timeout_usec);
a5a8776a
MJ
3716 if (r < 0)
3717 return r;
3718
8df433d7 3719 r = sd_bus_message_new_method_call(
a5b07847 3720 bus,
8df433d7 3721 &m,
a5b07847
LP
3722 "org.freedesktop.DBus",
3723 "/org/freedesktop/DBus",
3724 "org.freedesktop.DBus",
8df433d7 3725 "GetNameOwner");
3726 if (r < 0)
3727 return r;
3728
3729 r = sd_bus_message_append(m, "s", name);
3730 if (r < 0)
3731 return r;
3732
3733 r = sd_bus_call_async(
3734 bus,
3735 &u->get_name_owner_slot,
3736 m,
a5b07847
LP
3737 get_name_owner_handler,
3738 u,
8df433d7 3739 timeout_usec);
3740
a5b07847
LP
3741 if (r < 0) {
3742 u->match_bus_slot = sd_bus_slot_unref(u->match_bus_slot);
3743 return r;
3744 }
3745
3746 log_unit_debug(u, "Watching D-Bus name '%s'.", name);
3747 return 0;
bbc29086
DM
3748}
3749
05e343b7 3750int unit_watch_bus_name(Unit *u, const char *name) {
bbc29086
DM
3751 int r;
3752
05e343b7
LP
3753 assert(u);
3754 assert(name);
3755
3756 /* Watch a specific name on the bus. We only support one unit
3757 * watching each name for now. */
3758
bbc29086
DM
3759 if (u->manager->api_bus) {
3760 /* If the bus is already available, install the match directly.
3761 * Otherwise, just put the name in the list. bus_setup_api() will take care later. */
9806e87d 3762 r = unit_install_bus_match(u, u->manager->api_bus, name);
bbc29086 3763 if (r < 0)
8ea823b6 3764 return log_warning_errno(r, "Failed to subscribe to NameOwnerChanged signal for '%s': %m", name);
bbc29086
DM
3765 }
3766
3767 r = hashmap_put(u->manager->watch_bus, name, u);
3768 if (r < 0) {
3769 u->match_bus_slot = sd_bus_slot_unref(u->match_bus_slot);
a5b07847 3770 u->get_name_owner_slot = sd_bus_slot_unref(u->get_name_owner_slot);
bbc29086
DM
3771 return log_warning_errno(r, "Failed to put bus name to hashmap: %m");
3772 }
3773
3774 return 0;
05e343b7
LP
3775}
3776
3777void unit_unwatch_bus_name(Unit *u, const char *name) {
3778 assert(u);
3779 assert(name);
3780
8367fea5 3781 (void) hashmap_remove_value(u->manager->watch_bus, name, u);
bbc29086 3782 u->match_bus_slot = sd_bus_slot_unref(u->match_bus_slot);
a5a8776a 3783 u->get_name_owner_slot = sd_bus_slot_unref(u->get_name_owner_slot);
05e343b7
LP
3784}
3785
d336ba9f 3786int unit_add_node_dependency(Unit *u, const char *what, UnitDependency dep, UnitDependencyMask mask) {
68eda4bd 3787 _cleanup_free_ char *e = NULL;
44b0d1fd 3788 Unit *device;
6e2ef85b
LP
3789 int r;
3790
3791 assert(u);
3792
6e2ef85b 3793 /* Adds in links to the device node that this unit is based on */
47bc12e1
LP
3794 if (isempty(what))
3795 return 0;
6e2ef85b 3796
8407a5d0 3797 if (!is_device_path(what))
6e2ef85b
LP
3798 return 0;
3799
44b0d1fd 3800 /* When device units aren't supported (such as in a container), don't create dependencies on them. */
1c2e9646 3801 if (!unit_type_supported(UNIT_DEVICE))
47bc12e1
LP
3802 return 0;
3803
7410616c
LP
3804 r = unit_name_from_path(what, ".device", &e);
3805 if (r < 0)
3806 return r;
6e2ef85b 3807
ac155bb8 3808 r = manager_load_unit(u->manager, e, NULL, NULL, &device);
6e2ef85b
LP
3809 if (r < 0)
3810 return r;
3811
ebc8968b
FB
3812 if (dep == UNIT_REQUIRES && device_shall_be_bound_by(device, u))
3813 dep = UNIT_BINDS_TO;
3814
d336ba9f
FB
3815 return unit_add_two_dependencies(u, UNIT_AFTER,
3816 MANAGER_IS_SYSTEM(u->manager) ? dep : UNIT_WANTS,
3817 device, true, mask);
6e2ef85b 3818}
a16e1123 3819
44b0d1fd
LP
3820int unit_add_blockdev_dependency(Unit *u, const char *what, UnitDependencyMask mask) {
3821 _cleanup_free_ char *escaped = NULL, *target = NULL;
3822 int r;
3823
3824 assert(u);
3825
3826 if (isempty(what))
3827 return 0;
3828
3829 if (!path_startswith(what, "/dev/"))
3830 return 0;
3831
3832 /* If we don't support devices, then also don't bother with blockdev@.target */
3833 if (!unit_type_supported(UNIT_DEVICE))
3834 return 0;
3835
3836 r = unit_name_path_escape(what, &escaped);
3837 if (r < 0)
3838 return r;
3839
3840 r = unit_name_build("blockdev", escaped, ".target", &target);
3841 if (r < 0)
3842 return r;
3843
3844 return unit_add_dependency_by_name(u, UNIT_AFTER, target, true, mask);
3845}
3846
be847e82 3847int unit_coldplug(Unit *u) {
95f74928 3848 int r = 0;
cca098b0
LP
3849
3850 assert(u);
3851
f0831ed2 3852 /* Make sure we don't enter a loop, when coldplugging recursively. */
f78f265f
LP
3853 if (u->coldplugged)
3854 return 0;
3855
3856 u->coldplugged = true;
3857
95f74928
MY
3858 STRV_FOREACH(i, u->deserialized_refs)
3859 RET_GATHER(r, bus_unit_track_add_name(u, *i));
3860
05a98afd 3861 u->deserialized_refs = strv_free(u->deserialized_refs);
cca098b0 3862
95f74928
MY
3863 if (UNIT_VTABLE(u)->coldplug)
3864 RET_GATHER(r, UNIT_VTABLE(u)->coldplug(u));
5a6158b6 3865
95f74928
MY
3866 if (u->job)
3867 RET_GATHER(r, job_coldplug(u->job));
3868 if (u->nop_job)
3869 RET_GATHER(r, job_coldplug(u->nop_job));
cca098b0 3870
49b6babb 3871 unit_modify_nft_set(u, /* add = */ true);
05a98afd 3872 return r;
cca098b0
LP
3873}
3874
f0831ed2
LP
3875void unit_catchup(Unit *u) {
3876 assert(u);
3877
3878 if (UNIT_VTABLE(u)->catchup)
3879 UNIT_VTABLE(u)->catchup(u);
869f52f2
DS
3880
3881 unit_cgroup_catchup(u);
f0831ed2
LP
3882}
3883
ba25d39e 3884static bool fragment_mtime_newer(const char *path, usec_t mtime, bool path_masked) {
21b95806
ZJS
3885 struct stat st;
3886
3887 if (!path)
3888 return false;
3889
77969722
LP
3890 /* If the source is some virtual kernel file system, then we assume we watch it anyway, and hence pretend we
3891 * are never out-of-date. */
3892 if (PATH_STARTSWITH_SET(path, "/proc", "/sys"))
3893 return false;
3894
21b95806
ZJS
3895 if (stat(path, &st) < 0)
3896 /* What, cannot access this anymore? */
3897 return true;
3898
ba25d39e
ZJS
3899 if (path_masked)
3900 /* For masked files check if they are still so */
3901 return !null_or_empty(&st);
3902 else
3a8db9fe 3903 /* For non-empty files check the mtime */
87ec20ef 3904 return timespec_load(&st.st_mtim) > mtime;
21b95806
ZJS
3905
3906 return false;
3907}
3908
45fb0699 3909bool unit_need_daemon_reload(Unit *u) {
a82b8b3d 3910 _cleanup_strv_free_ char **dropins = NULL;
1b64d026 3911
45fb0699 3912 assert(u);
a82b8b3d
MY
3913 assert(u->manager);
3914
3915 if (u->manager->unit_file_state_outdated)
3916 return true;
45fb0699 3917
ba25d39e
ZJS
3918 /* For unit files, we allow masking… */
3919 if (fragment_mtime_newer(u->fragment_path, u->fragment_mtime,
3920 u->load_state == UNIT_MASKED))
21b95806 3921 return true;
5f4b19f4 3922
ba25d39e
ZJS
3923 /* Source paths should not be masked… */
3924 if (fragment_mtime_newer(u->source_path, u->source_mtime, false))
ab932a62 3925 return true;
ae7a7182 3926
19a44dfe 3927 if (u->load_state == UNIT_LOADED)
a82b8b3d
MY
3928 (void) unit_find_dropin_paths(u, &dropins);
3929 if (!strv_equal(u->dropin_paths, dropins))
ab932a62 3930 return true;
6d10d308 3931
ba25d39e 3932 /* … any drop-ins that are masked are simply omitted from the list. */
ab932a62 3933 STRV_FOREACH(path, u->dropin_paths)
ba25d39e 3934 if (fragment_mtime_newer(*path, u->dropin_mtime, false))
ab932a62 3935 return true;
21b95806 3936
ab932a62 3937 return false;
45fb0699
LP
3938}
3939
fdf20a31 3940void unit_reset_failed(Unit *u) {
5632e374
LP
3941 assert(u);
3942
fdf20a31
MM
3943 if (UNIT_VTABLE(u)->reset_failed)
3944 UNIT_VTABLE(u)->reset_failed(u);
6bf0f408 3945
7bf081a1 3946 ratelimit_reset(&u->start_ratelimit);
6bf0f408 3947 u->start_limit_hit = false;
5632e374
LP
3948}
3949
a7f241db
LP
3950Unit *unit_following(Unit *u) {
3951 assert(u);
3952
3953 if (UNIT_VTABLE(u)->following)
3954 return UNIT_VTABLE(u)->following(u);
3955
3956 return NULL;
3957}
3958
31afa0a4 3959bool unit_stop_pending(Unit *u) {
18ffdfda
LP
3960 assert(u);
3961
31afa0a4
LP
3962 /* This call does check the current state of the unit. It's
3963 * hence useful to be called from state change calls of the
3964 * unit itself, where the state isn't updated yet. This is
3965 * different from unit_inactive_or_pending() which checks both
3966 * the current state and for a queued job. */
18ffdfda 3967
28a2dfe8 3968 return unit_has_job_type(u, JOB_STOP);
31afa0a4
LP
3969}
3970
3971bool unit_inactive_or_pending(Unit *u) {
3972 assert(u);
3973
3974 /* Returns true if the unit is inactive or going down */
18ffdfda 3975
d956ac29
LP
3976 if (UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(u)))
3977 return true;
3978
31afa0a4 3979 if (unit_stop_pending(u))
18ffdfda
LP
3980 return true;
3981
3982 return false;
3983}
3984
31afa0a4 3985bool unit_active_or_pending(Unit *u) {
f976f3f6
LP
3986 assert(u);
3987
f60c2665 3988 /* Returns true if the unit is active or going up */
f976f3f6
LP
3989
3990 if (UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)))
3991 return true;
3992
ac155bb8 3993 if (u->job &&
3742095b 3994 IN_SET(u->job->type, JOB_START, JOB_RELOAD_OR_START, JOB_RESTART))
f976f3f6
LP
3995 return true;
3996
3997 return false;
3998}
3999
52a12341
YW
4000bool unit_will_restart_default(Unit *u) {
4001 assert(u);
4002
28a2dfe8 4003 return unit_has_job_type(u, JOB_START);
52a12341
YW
4004}
4005
deb4e708
MK
4006bool unit_will_restart(Unit *u) {
4007 assert(u);
4008
4009 if (!UNIT_VTABLE(u)->will_restart)
4010 return false;
4011
4012 return UNIT_VTABLE(u)->will_restart(u);
4013}
4014
38c41427
NK
4015void unit_notify_cgroup_oom(Unit *u, bool managed_oom) {
4016 assert(u);
4017
4018 if (UNIT_VTABLE(u)->notify_cgroup_oom)
4019 UNIT_VTABLE(u)->notify_cgroup_oom(u, managed_oom);
4020}
4021
82659fd7 4022static Set *unit_pid_set(pid_t main_pid, pid_t control_pid) {
af4fa99d 4023 _cleanup_set_free_ Set *pid_set = NULL;
82659fd7
LP
4024 int r;
4025
d5099efc 4026 pid_set = set_new(NULL);
82659fd7
LP
4027 if (!pid_set)
4028 return NULL;
4029
4030 /* Exclude the main/control pids from being killed via the cgroup */
4031 if (main_pid > 0) {
fea72cc0 4032 r = set_put(pid_set, PID_TO_PTR(main_pid));
82659fd7 4033 if (r < 0)
95f14a3e 4034 return NULL;
82659fd7
LP
4035 }
4036
4037 if (control_pid > 0) {
fea72cc0 4038 r = set_put(pid_set, PID_TO_PTR(control_pid));
82659fd7 4039 if (r < 0)
95f14a3e 4040 return NULL;
82659fd7
LP
4041 }
4042
95f14a3e 4043 return TAKE_PTR(pid_set);
82659fd7
LP
4044}
4045
4d1b2df1 4046static int kill_common_log(const PidRef *pid, int signo, void *userdata) {
d9911002 4047 _cleanup_free_ char *comm = NULL;
99534007 4048 Unit *u = ASSERT_PTR(userdata);
d9911002 4049
4d1b2df1
LP
4050 (void) pidref_get_comm(pid, &comm);
4051
d9911002 4052 log_unit_info(u, "Sending signal SIG%s to process " PID_FMT " (%s) on client request.",
4d1b2df1 4053 signal_to_string(signo), pid->pid, strna(comm));
d9911002
LP
4054
4055 return 1;
4056}
4057
37eb258e
LP
4058static int kill_or_sigqueue(PidRef* pidref, int signo, int code, int value) {
4059 assert(pidref_is_set(pidref));
a721cd00
LP
4060 assert(SIGNAL_VALID(signo));
4061
4062 switch (code) {
4063
4064 case SI_USER:
37eb258e
LP
4065 log_debug("Killing " PID_FMT " with signal SIG%s.", pidref->pid, signal_to_string(signo));
4066 return pidref_kill(pidref, signo);
a721cd00
LP
4067
4068 case SI_QUEUE:
37eb258e
LP
4069 log_debug("Enqueuing value %i to " PID_FMT " on signal SIG%s.", value, pidref->pid, signal_to_string(signo));
4070 return pidref_sigqueue(pidref, signo, value);
a721cd00
LP
4071
4072 default:
4073 assert_not_reached();
4074 }
4075}
4076
37eb258e 4077int unit_kill(
d91c34f2
LP
4078 Unit *u,
4079 KillWho who,
4080 int signo,
a721cd00
LP
4081 int code,
4082 int value,
718db961 4083 sd_bus_error *error) {
d91c34f2 4084
37eb258e 4085 PidRef *main_pid, *control_pid;
ac5e3a50 4086 bool killed = false;
a721cd00 4087 int ret = 0, r;
814cc562 4088
8aff7ac4
LP
4089 /* This is the common implementation for explicit user-requested killing of unit processes, shared by
4090 * various unit types. Do not confuse with unit_kill_context(), which is what we use when we want to
4091 * stop a service ourselves. */
4092
a721cd00
LP
4093 assert(u);
4094 assert(who >= 0);
4095 assert(who < _KILL_WHO_MAX);
4096 assert(SIGNAL_VALID(signo));
4097 assert(IN_SET(code, SI_USER, SI_QUEUE));
4098
37eb258e
LP
4099 main_pid = unit_main_pid(u);
4100 control_pid = unit_control_pid(u);
4101
4102 if (!UNIT_HAS_CGROUP_CONTEXT(u) && !main_pid && !control_pid)
4103 return sd_bus_error_setf(error, SD_BUS_ERROR_NOT_SUPPORTED, "Unit type does not support process killing.");
4104
ac5e3a50 4105 if (IN_SET(who, KILL_MAIN, KILL_MAIN_FAIL)) {
37eb258e 4106 if (!main_pid)
7358dc02 4107 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_PROCESS, "%s units have no main processes", unit_type_to_string(u->type));
37eb258e 4108 if (!pidref_is_set(main_pid))
7358dc02 4109 return sd_bus_error_set_const(error, BUS_ERROR_NO_SUCH_PROCESS, "No main process to kill");
814cc562
MS
4110 }
4111
ac5e3a50 4112 if (IN_SET(who, KILL_CONTROL, KILL_CONTROL_FAIL)) {
37eb258e 4113 if (!control_pid)
7358dc02 4114 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_PROCESS, "%s units have no control processes", unit_type_to_string(u->type));
37eb258e 4115 if (!pidref_is_set(control_pid))
7358dc02 4116 return sd_bus_error_set_const(error, BUS_ERROR_NO_SUCH_PROCESS, "No control process to kill");
814cc562
MS
4117 }
4118
37eb258e 4119 if (pidref_is_set(control_pid) &&
a721cd00
LP
4120 IN_SET(who, KILL_CONTROL, KILL_CONTROL_FAIL, KILL_ALL, KILL_ALL_FAIL)) {
4121 _cleanup_free_ char *comm = NULL;
d7d74854 4122 (void) pidref_get_comm(control_pid, &comm);
d9911002 4123
a721cd00
LP
4124 r = kill_or_sigqueue(control_pid, signo, code, value);
4125 if (r < 0) {
4126 ret = r;
4127
4128 /* Report this failure both to the logs and to the client */
4129 sd_bus_error_set_errnof(
4130 error, r,
4131 "Failed to send signal SIG%s to control process " PID_FMT " (%s): %m",
37eb258e 4132 signal_to_string(signo), control_pid->pid, strna(comm));
a721cd00
LP
4133 log_unit_warning_errno(
4134 u, r,
4135 "Failed to send signal SIG%s to control process " PID_FMT " (%s) on client request: %m",
37eb258e 4136 signal_to_string(signo), control_pid->pid, strna(comm));
a721cd00
LP
4137 } else {
4138 log_unit_info(u, "Sent signal SIG%s to control process " PID_FMT " (%s) on client request.",
37eb258e 4139 signal_to_string(signo), control_pid->pid, strna(comm));
a721cd00 4140 killed = true;
ac5e3a50 4141 }
a721cd00 4142 }
814cc562 4143
37eb258e 4144 if (pidref_is_set(main_pid) &&
a721cd00 4145 IN_SET(who, KILL_MAIN, KILL_MAIN_FAIL, KILL_ALL, KILL_ALL_FAIL)) {
a721cd00 4146 _cleanup_free_ char *comm = NULL;
d7d74854 4147 (void) pidref_get_comm(main_pid, &comm);
d9911002 4148
a721cd00
LP
4149 r = kill_or_sigqueue(main_pid, signo, code, value);
4150 if (r < 0) {
4151 if (ret == 0) {
4152 ret = r;
4153
4154 sd_bus_error_set_errnof(
4155 error, r,
4156 "Failed to send signal SIG%s to main process " PID_FMT " (%s): %m",
37eb258e 4157 signal_to_string(signo), main_pid->pid, strna(comm));
d9911002 4158 }
a721cd00
LP
4159
4160 log_unit_warning_errno(
4161 u, r,
4162 "Failed to send signal SIG%s to main process " PID_FMT " (%s) on client request: %m",
37eb258e 4163 signal_to_string(signo), main_pid->pid, strna(comm));
a721cd00
LP
4164
4165 } else {
4166 log_unit_info(u, "Sent signal SIG%s to main process " PID_FMT " (%s) on client request.",
37eb258e 4167 signal_to_string(signo), main_pid->pid, strna(comm));
a721cd00 4168 killed = true;
ac5e3a50 4169 }
a721cd00 4170 }
814cc562 4171
a721cd00
LP
4172 /* Note: if we shall enqueue rather than kill we won't do this via the cgroup mechanism, since it
4173 * doesn't really make much sense (and given that enqueued values are a relatively expensive
4174 * resource, and we shouldn't allow us to be subjects for such allocation sprees) */
4175 if (IN_SET(who, KILL_ALL, KILL_ALL_FAIL) && u->cgroup_path && code == SI_USER) {
814cc562 4176 _cleanup_set_free_ Set *pid_set = NULL;
814cc562 4177
82659fd7 4178 /* Exclude the main/control pids from being killed via the cgroup */
37eb258e 4179 pid_set = unit_pid_set(main_pid ? main_pid->pid : 0, control_pid ? control_pid->pid : 0);
814cc562 4180 if (!pid_set)
d9911002
LP
4181 return log_oom();
4182
bd1791b5 4183 r = cg_kill_recursive(u->cgroup_path, signo, 0, pid_set, kill_common_log, u);
a721cd00
LP
4184 if (r < 0) {
4185 if (!IN_SET(r, -ESRCH, -ENOENT)) {
4186 if (ret == 0) {
4187 ret = r;
4188
d9911002 4189 sd_bus_error_set_errnof(
a721cd00 4190 error, r,
d9911002
LP
4191 "Failed to send signal SIG%s to auxiliary processes: %m",
4192 signal_to_string(signo));
a721cd00 4193 }
d9911002 4194
a721cd00
LP
4195 log_unit_warning_errno(
4196 u, r,
d9911002
LP
4197 "Failed to send signal SIG%s to auxiliary processes on client request: %m",
4198 signal_to_string(signo));
4199 }
4200 } else
ac5e3a50 4201 killed = true;
814cc562
MS
4202 }
4203
2ae0508e 4204 /* If the "fail" versions of the operation are requested, then complain if the set of processes we killed is empty */
a721cd00 4205 if (ret == 0 && !killed && IN_SET(who, KILL_ALL_FAIL, KILL_CONTROL_FAIL, KILL_MAIN_FAIL))
2ae0508e 4206 return sd_bus_error_set_const(error, BUS_ERROR_NO_SUCH_PROCESS, "No matching processes to kill");
ac5e3a50 4207
a721cd00 4208 return ret;
814cc562
MS
4209}
4210
6210e7fc
LP
4211int unit_following_set(Unit *u, Set **s) {
4212 assert(u);
4213 assert(s);
4214
4215 if (UNIT_VTABLE(u)->following_set)
4216 return UNIT_VTABLE(u)->following_set(u, s);
4217
4218 *s = NULL;
4219 return 0;
4220}
4221
a4375746 4222UnitFileState unit_get_unit_file_state(Unit *u) {
0ec0deaa
LP
4223 int r;
4224
a4375746
LP
4225 assert(u);
4226
0ec0deaa
LP
4227 if (u->unit_file_state < 0 && u->fragment_path) {
4228 r = unit_file_get_state(
4870133b 4229 u->manager->runtime_scope,
0ec0deaa 4230 NULL,
9ea3a0e7 4231 u->id,
0ec0deaa
LP
4232 &u->unit_file_state);
4233 if (r < 0)
4234 u->unit_file_state = UNIT_FILE_BAD;
4235 }
a4375746 4236
ac155bb8 4237 return u->unit_file_state;
a4375746
LP
4238}
4239
e77e07f6 4240PresetAction unit_get_unit_file_preset(Unit *u) {
a99626c1
LP
4241 int r;
4242
d2dc52db
LP
4243 assert(u);
4244
a99626c1
LP
4245 if (u->unit_file_preset < 0 && u->fragment_path) {
4246 _cleanup_free_ char *bn = NULL;
4247
4248 r = path_extract_filename(u->fragment_path, &bn);
4249 if (r < 0)
4250 return (u->unit_file_preset = r);
4251
4252 if (r == O_DIRECTORY)
4253 return (u->unit_file_preset = -EISDIR);
4254
d2dc52db 4255 u->unit_file_preset = unit_file_query_preset(
4870133b 4256 u->manager->runtime_scope,
0ec0deaa 4257 NULL,
a99626c1 4258 bn,
8f7b2566 4259 NULL);
a99626c1 4260 }
d2dc52db
LP
4261
4262 return u->unit_file_preset;
4263}
4264
7f7d01ed 4265Unit* unit_ref_set(UnitRef *ref, Unit *source, Unit *target) {
57020a3a 4266 assert(ref);
7f7d01ed
ZJS
4267 assert(source);
4268 assert(target);
57020a3a 4269
7f7d01ed 4270 if (ref->target)
57020a3a
LP
4271 unit_ref_unset(ref);
4272
7f7d01ed
ZJS
4273 ref->source = source;
4274 ref->target = target;
4275 LIST_PREPEND(refs_by_target, target->refs_by_target, ref);
4276 return target;
57020a3a
LP
4277}
4278
4279void unit_ref_unset(UnitRef *ref) {
4280 assert(ref);
4281
7f7d01ed 4282 if (!ref->target)
57020a3a
LP
4283 return;
4284
b75102e5
LP
4285 /* We are about to drop a reference to the unit, make sure the garbage collection has a look at it as it might
4286 * be unreferenced now. */
7f7d01ed 4287 unit_add_to_gc_queue(ref->target);
b75102e5 4288
7f7d01ed
ZJS
4289 LIST_REMOVE(refs_by_target, ref->target->refs_by_target, ref);
4290 ref->source = ref->target = NULL;
57020a3a
LP
4291}
4292
29206d46
LP
4293static int user_from_unit_name(Unit *u, char **ret) {
4294
4295 static const uint8_t hash_key[] = {
4296 0x58, 0x1a, 0xaf, 0xe6, 0x28, 0x58, 0x4e, 0x96,
4297 0xb4, 0x4e, 0xf5, 0x3b, 0x8c, 0x92, 0x07, 0xec
4298 };
4299
4300 _cleanup_free_ char *n = NULL;
4301 int r;
4302
4303 r = unit_name_to_prefix(u->id, &n);
4304 if (r < 0)
4305 return r;
4306
7a8867ab 4307 if (valid_user_group_name(n, 0)) {
ae2a15bc 4308 *ret = TAKE_PTR(n);
29206d46
LP
4309 return 0;
4310 }
4311
4312 /* If we can't use the unit name as a user name, then let's hash it and use that */
4313 if (asprintf(ret, "_du%016" PRIx64, siphash24(n, strlen(n), hash_key)) < 0)
4314 return -ENOMEM;
4315
4316 return 0;
4317}
4318
598459ce
LP
4319int unit_patch_contexts(Unit *u) {
4320 CGroupContext *cc;
4321 ExecContext *ec;
cba6e062
LP
4322 int r;
4323
e06c73cc 4324 assert(u);
e06c73cc 4325
598459ce
LP
4326 /* Patch in the manager defaults into the exec and cgroup
4327 * contexts, _after_ the rest of the settings have been
4328 * initialized */
085afe36 4329
598459ce
LP
4330 ec = unit_get_exec_context(u);
4331 if (ec) {
4332 /* This only copies in the ones that need memory */
12375b95 4333 for (unsigned i = 0; i < _RLIMIT_MAX; i++)
c9e120e0
LP
4334 if (u->manager->defaults.rlimit[i] && !ec->rlimit[i]) {
4335 ec->rlimit[i] = newdup(struct rlimit, u->manager->defaults.rlimit[i], 1);
598459ce
LP
4336 if (!ec->rlimit[i])
4337 return -ENOMEM;
4338 }
4339
463d0d15 4340 if (MANAGER_IS_USER(u->manager) &&
598459ce
LP
4341 !ec->working_directory) {
4342
4343 r = get_home_dir(&ec->working_directory);
4344 if (r < 0)
4345 return r;
4c08c824
LP
4346
4347 /* Allow user services to run, even if the
4348 * home directory is missing */
4349 ec->working_directory_missing_ok = true;
cba6e062
LP
4350 }
4351
598459ce 4352 if (ec->private_devices)
2cd0a735 4353 ec->capability_bounding_set &= ~((UINT64_C(1) << CAP_MKNOD) | (UINT64_C(1) << CAP_SYS_RAWIO));
502d704e
DH
4354
4355 if (ec->protect_kernel_modules)
4356 ec->capability_bounding_set &= ~(UINT64_C(1) << CAP_SYS_MODULE);
29206d46 4357
84703040
KK
4358 if (ec->protect_kernel_logs)
4359 ec->capability_bounding_set &= ~(UINT64_C(1) << CAP_SYSLOG);
4360
fc64760d
KK
4361 if (ec->protect_clock)
4362 ec->capability_bounding_set &= ~((UINT64_C(1) << CAP_SYS_TIME) | (UINT64_C(1) << CAP_WAKE_ALARM));
4363
29206d46
LP
4364 if (ec->dynamic_user) {
4365 if (!ec->user) {
4366 r = user_from_unit_name(u, &ec->user);
4367 if (r < 0)
4368 return r;
4369 }
4370
4371 if (!ec->group) {
4372 ec->group = strdup(ec->user);
4373 if (!ec->group)
4374 return -ENOMEM;
4375 }
4376
bf65b7e0
LP
4377 /* If the dynamic user option is on, let's make sure that the unit can't leave its
4378 * UID/GID around in the file system or on IPC objects. Hence enforce a strict
4379 * sandbox. */
63bb64a0 4380
29206d46 4381 ec->private_tmp = true;
00d9ef85 4382 ec->remove_ipc = true;
63bb64a0
LP
4383 ec->protect_system = PROTECT_SYSTEM_STRICT;
4384 if (ec->protect_home == PROTECT_HOME_NO)
4385 ec->protect_home = PROTECT_HOME_READ_ONLY;
bf65b7e0
LP
4386
4387 /* Make sure this service can neither benefit from SUID/SGID binaries nor create
4388 * them. */
4389 ec->no_new_privileges = true;
4390 ec->restrict_suid_sgid = true;
29206d46 4391 }
a2ab603c
YW
4392
4393 for (ExecDirectoryType dt = 0; dt < _EXEC_DIRECTORY_TYPE_MAX; dt++)
4394 exec_directory_sort(ec->directories + dt);
cba6e062
LP
4395 }
4396
598459ce 4397 cc = unit_get_cgroup_context(u);
fe65e88b 4398 if (cc && ec) {
f513e420 4399
fe65e88b 4400 if (ec->private_devices &&
084870f9
ZJS
4401 cc->device_policy == CGROUP_DEVICE_POLICY_AUTO)
4402 cc->device_policy = CGROUP_DEVICE_POLICY_CLOSED;
fe65e88b 4403
63857bf4
LB
4404 /* Only add these if needed, as they imply that everything else is blocked. */
4405 if (cc->device_policy != CGROUP_DEVICE_POLICY_AUTO || cc->device_allow) {
4406 if (ec->root_image || ec->mount_images) {
4407
4408 /* When RootImage= or MountImages= is specified, the following devices are touched. */
4409 FOREACH_STRING(p, "/dev/loop-control", "/dev/mapper/control") {
a1044811 4410 r = cgroup_context_add_device_allow(cc, p, CGROUP_DEVICE_READ|CGROUP_DEVICE_WRITE);
63857bf4
LB
4411 if (r < 0)
4412 return r;
4413 }
4414 FOREACH_STRING(p, "block-loop", "block-blkext", "block-device-mapper") {
a1044811 4415 r = cgroup_context_add_device_allow(cc, p, CGROUP_DEVICE_READ|CGROUP_DEVICE_WRITE|CGROUP_DEVICE_MKNOD);
63857bf4
LB
4416 if (r < 0)
4417 return r;
4418 }
fe65e88b 4419
63857bf4
LB
4420 /* Make sure "block-loop" can be resolved, i.e. make sure "loop" shows up in /proc/devices.
4421 * Same for mapper and verity. */
4422 FOREACH_STRING(p, "modprobe@loop.service", "modprobe@dm_mod.service", "modprobe@dm_verity.service") {
4423 r = unit_add_two_dependencies_by_name(u, UNIT_AFTER, UNIT_WANTS, p, true, UNIT_DEPENDENCY_FILE);
4424 if (r < 0)
4425 return r;
4426 }
0cffae95 4427 }
867af728 4428
63857bf4 4429 if (ec->protect_clock) {
a1044811 4430 r = cgroup_context_add_device_allow(cc, "char-rtc", CGROUP_DEVICE_READ);
0cffae95
LB
4431 if (r < 0)
4432 return r;
4433 }
398dc7d3
LB
4434
4435 /* If there are encrypted credentials we might need to access the TPM. */
50a4217b 4436 if (exec_context_has_encrypted_credentials(ec)) {
a1044811 4437 r = cgroup_context_add_device_allow(cc, "char-tpm", CGROUP_DEVICE_READ|CGROUP_DEVICE_WRITE);
d5902569
AD
4438 if (r < 0)
4439 return r;
4440 }
fe65e88b 4441 }
598459ce 4442 }
f1660f96 4443
cba6e062 4444 return 0;
e06c73cc
LP
4445}
4446
c2503e35 4447ExecContext *unit_get_exec_context(const Unit *u) {
3ef63c31
LP
4448 size_t offset;
4449 assert(u);
4450
598459ce
LP
4451 if (u->type < 0)
4452 return NULL;
4453
3ef63c31
LP
4454 offset = UNIT_VTABLE(u)->exec_context_offset;
4455 if (offset <= 0)
4456 return NULL;
4457
4458 return (ExecContext*) ((uint8_t*) u + offset);
4459}
4460
718db961
LP
4461KillContext *unit_get_kill_context(Unit *u) {
4462 size_t offset;
4463 assert(u);
4464
598459ce
LP
4465 if (u->type < 0)
4466 return NULL;
4467
718db961
LP
4468 offset = UNIT_VTABLE(u)->kill_context_offset;
4469 if (offset <= 0)
4470 return NULL;
4471
4472 return (KillContext*) ((uint8_t*) u + offset);
4473}
4474
4ad49000
LP
4475CGroupContext *unit_get_cgroup_context(Unit *u) {
4476 size_t offset;
4477
598459ce
LP
4478 if (u->type < 0)
4479 return NULL;
4480
4ad49000
LP
4481 offset = UNIT_VTABLE(u)->cgroup_context_offset;
4482 if (offset <= 0)
4483 return NULL;
4484
4485 return (CGroupContext*) ((uint8_t*) u + offset);
4486}
4487
28135da3 4488ExecRuntime *unit_get_exec_runtime(Unit *u) {
613b411c
LP
4489 size_t offset;
4490
598459ce
LP
4491 if (u->type < 0)
4492 return NULL;
4493
613b411c
LP
4494 offset = UNIT_VTABLE(u)->exec_runtime_offset;
4495 if (offset <= 0)
4496 return NULL;
4497
28135da3 4498 return *(ExecRuntime**) ((uint8_t*) u + offset);
613b411c
LP
4499}
4500
2e59b241 4501static const char* unit_drop_in_dir(Unit *u, UnitWriteFlags flags) {
3f5e8115
LP
4502 assert(u);
4503
2e59b241 4504 if (UNIT_WRITE_FLAGS_NOOP(flags))
4f4afc88
LP
4505 return NULL;
4506
39591351
LP
4507 if (u->transient) /* Redirect drop-ins for transient units always into the transient directory. */
4508 return u->manager->lookup_paths.transient;
26d04f86 4509
2e59b241 4510 if (flags & UNIT_PERSISTENT)
4f4afc88 4511 return u->manager->lookup_paths.persistent_control;
26d04f86 4512
2e59b241
LP
4513 if (flags & UNIT_RUNTIME)
4514 return u->manager->lookup_paths.runtime_control;
4515
39591351 4516 return NULL;
71645aca
LP
4517}
4518
68ecb48b
ZJS
4519const char* unit_escape_setting(const char *s, UnitWriteFlags flags, char **buf) {
4520 assert(s);
8c41640a 4521 assert(popcount(flags & (UNIT_ESCAPE_EXEC_SYNTAX_ENV | UNIT_ESCAPE_EXEC_SYNTAX | UNIT_ESCAPE_C)) <= 1);
68ecb48b 4522 assert(buf);
24536beb
ZJS
4523
4524 _cleanup_free_ char *t = NULL;
2e59b241 4525
68ecb48b
ZJS
4526 /* Returns a string with any escaping done. If no escaping was necessary, *buf is set to NULL, and
4527 * the input pointer is returned as-is. If an allocation was needed, the return buffer pointer is
4528 * written to *buf. This means the return value always contains a properly escaped version, but *buf
4529 * only contains a pointer if an allocation was made. Callers can use this to optimize memory
4530 * allocations. */
2e59b241
LP
4531
4532 if (flags & UNIT_ESCAPE_SPECIFIERS) {
24536beb
ZJS
4533 t = specifier_escape(s);
4534 if (!t)
2e59b241
LP
4535 return NULL;
4536
24536beb 4537 s = t;
2e59b241
LP
4538 }
4539
4a055e5a 4540 /* We either do C-escaping or shell-escaping, to additionally escape characters that we parse for
e7416db1 4541 * ExecStart= and friends, i.e. '$' and quotes. */
24536beb 4542
8c41640a 4543 if (flags & (UNIT_ESCAPE_EXEC_SYNTAX_ENV | UNIT_ESCAPE_EXEC_SYNTAX)) {
e7416db1
ZJS
4544 char *t2;
4545
8c41640a
ZJS
4546 if (flags & UNIT_ESCAPE_EXEC_SYNTAX_ENV) {
4547 t2 = strreplace(s, "$", "$$");
4548 if (!t2)
4549 return NULL;
4550 free_and_replace(t, t2);
4551 }
e7416db1 4552
8c41640a 4553 t2 = shell_escape(t ?: s, "\"");
24536beb
ZJS
4554 if (!t2)
4555 return NULL;
4556 free_and_replace(t, t2);
4557
4558 s = t;
2e59b241 4559
24536beb 4560 } else if (flags & UNIT_ESCAPE_C) {
e7416db1
ZJS
4561 char *t2;
4562
4563 t2 = cescape(s);
24536beb 4564 if (!t2)
2e59b241 4565 return NULL;
24536beb 4566 free_and_replace(t, t2);
2e59b241 4567
24536beb 4568 s = t;
2e59b241
LP
4569 }
4570
68ecb48b
ZJS
4571 *buf = TAKE_PTR(t);
4572 return s;
2e59b241
LP
4573}
4574
4575char* unit_concat_strv(char **l, UnitWriteFlags flags) {
4576 _cleanup_free_ char *result = NULL;
319a4f4b 4577 size_t n = 0;
2e59b241 4578
24536beb
ZJS
4579 /* Takes a list of strings, escapes them, and concatenates them. This may be used to format command
4580 * lines in a way suitable for ExecStart= stanzas. */
2e59b241
LP
4581
4582 STRV_FOREACH(i, l) {
4583 _cleanup_free_ char *buf = NULL;
4584 const char *p;
4585 size_t a;
4586 char *q;
4587
4588 p = unit_escape_setting(*i, flags, &buf);
4589 if (!p)
4590 return NULL;
4591
4592 a = (n > 0) + 1 + strlen(p) + 1; /* separating space + " + entry + " */
319a4f4b 4593 if (!GREEDY_REALLOC(result, n + a + 1))
2e59b241
LP
4594 return NULL;
4595
4596 q = result + n;
4597 if (n > 0)
4598 *(q++) = ' ';
4599
4600 *(q++) = '"';
4601 q = stpcpy(q, p);
4602 *(q++) = '"';
4603
4604 n += a;
4605 }
4606
319a4f4b 4607 if (!GREEDY_REALLOC(result, n + 1))
2e59b241
LP
4608 return NULL;
4609
4610 result[n] = 0;
4611
ae2a15bc 4612 return TAKE_PTR(result);
2e59b241
LP
4613}
4614
4615int unit_write_setting(Unit *u, UnitWriteFlags flags, const char *name, const char *data) {
4616 _cleanup_free_ char *p = NULL, *q = NULL, *escaped = NULL;
2a9a6f8a 4617 const char *dir, *wrapped;
26d04f86 4618 int r;
71645aca
LP
4619
4620 assert(u);
2e59b241
LP
4621 assert(name);
4622 assert(data);
4623
4624 if (UNIT_WRITE_FLAGS_NOOP(flags))
4625 return 0;
4626
4627 data = unit_escape_setting(data, flags, &escaped);
4628 if (!data)
4629 return -ENOMEM;
4630
4631 /* Prefix the section header. If we are writing this out as transient file, then let's suppress this if the
4632 * previous section header is the same */
4633
4634 if (flags & UNIT_PRIVATE) {
4635 if (!UNIT_VTABLE(u)->private_section)
4636 return -EINVAL;
4637
4638 if (!u->transient_file || u->last_section_private < 0)
4639 data = strjoina("[", UNIT_VTABLE(u)->private_section, "]\n", data);
4640 else if (u->last_section_private == 0)
4641 data = strjoina("\n[", UNIT_VTABLE(u)->private_section, "]\n", data);
4642 } else {
4643 if (!u->transient_file || u->last_section_private < 0)
4644 data = strjoina("[Unit]\n", data);
4645 else if (u->last_section_private > 0)
4646 data = strjoina("\n[Unit]\n", data);
4647 }
71645aca 4648
4f4afc88
LP
4649 if (u->transient_file) {
4650 /* When this is a transient unit file in creation, then let's not create a new drop-in but instead
4651 * write to the transient unit file. */
4652 fputs(data, u->transient_file);
4f4afc88 4653
2e59b241
LP
4654 if (!endswith(data, "\n"))
4655 fputc('\n', u->transient_file);
4656
4657 /* Remember which section we wrote this entry to */
4658 u->last_section_private = !!(flags & UNIT_PRIVATE);
8e2af478 4659 return 0;
2e59b241 4660 }
8e2af478 4661
2e59b241 4662 dir = unit_drop_in_dir(u, flags);
39591351
LP
4663 if (!dir)
4664 return -EINVAL;
71645aca 4665
2a9a6f8a 4666 wrapped = strjoina("# This is a drop-in unit file extension, created via \"systemctl set-property\"\n"
3f71dec5 4667 "# or an equivalent operation. Do not edit.\n",
2a9a6f8a
ZJS
4668 data,
4669 "\n");
e20b2a86 4670
815b09d3 4671 r = drop_in_file(dir, u->id, 50, name, &p, &q);
adb76a70
WC
4672 if (r < 0)
4673 return r;
4674
45639f1b 4675 (void) mkdir_p_label(p, 0755);
4dba44a5
ZJS
4676
4677 /* Make sure the drop-in dir is registered in our path cache. This way we don't need to stupidly
4678 * recreate the cache after every drop-in we write. */
4679 if (u->manager->unit_path_cache) {
be327321 4680 r = set_put_strdup(&u->manager->unit_path_cache, p);
4dba44a5
ZJS
4681 if (r < 0)
4682 return r;
4683 }
4684
2a9a6f8a 4685 r = write_string_file_atomic_label(q, wrapped);
adb76a70
WC
4686 if (r < 0)
4687 return r;
4688
815b09d3 4689 r = strv_push(&u->dropin_paths, q);
adb76a70
WC
4690 if (r < 0)
4691 return r;
815b09d3 4692 q = NULL;
adb76a70 4693
adb76a70
WC
4694 strv_uniq(u->dropin_paths);
4695
4696 u->dropin_mtime = now(CLOCK_REALTIME);
4697
4698 return 0;
26d04f86 4699}
71645aca 4700
2e59b241 4701int unit_write_settingf(Unit *u, UnitWriteFlags flags, const char *name, const char *format, ...) {
b9ec9359
LP
4702 _cleanup_free_ char *p = NULL;
4703 va_list ap;
4704 int r;
4705
4706 assert(u);
4707 assert(name);
4708 assert(format);
4709
2e59b241 4710 if (UNIT_WRITE_FLAGS_NOOP(flags))
b9ec9359
LP
4711 return 0;
4712
4713 va_start(ap, format);
4714 r = vasprintf(&p, format, ap);
4715 va_end(ap);
4716
4717 if (r < 0)
4718 return -ENOMEM;
4719
2e59b241 4720 return unit_write_setting(u, flags, name, p);
b9ec9359 4721}
71645aca 4722
c2756a68 4723int unit_make_transient(Unit *u) {
0126c8f3 4724 _cleanup_free_ char *path = NULL;
4f4afc88 4725 FILE *f;
4f4afc88 4726
c2756a68
LP
4727 assert(u);
4728
3f5e8115
LP
4729 if (!UNIT_VTABLE(u)->can_transient)
4730 return -EOPNOTSUPP;
4731
45639f1b
LP
4732 (void) mkdir_p_label(u->manager->lookup_paths.transient, 0755);
4733
657ee2d8 4734 path = path_join(u->manager->lookup_paths.transient, u->id);
4f4afc88
LP
4735 if (!path)
4736 return -ENOMEM;
4737
4738 /* Let's open the file we'll write the transient settings into. This file is kept open as long as we are
4739 * creating the transient, and is closed in unit_load(), as soon as we start loading the file. */
4740
2053593f 4741 WITH_UMASK(0022) {
4f4afc88 4742 f = fopen(path, "we");
0126c8f3 4743 if (!f)
78e334b5 4744 return -errno;
4f4afc88
LP
4745 }
4746
0126c8f3 4747 safe_fclose(u->transient_file);
4f4afc88
LP
4748 u->transient_file = f;
4749
0126c8f3 4750 free_and_replace(u->fragment_path, path);
7c65093a 4751
7c65093a
LP
4752 u->source_path = mfree(u->source_path);
4753 u->dropin_paths = strv_free(u->dropin_paths);
4754 u->fragment_mtime = u->source_mtime = u->dropin_mtime = 0;
4755
4f4afc88
LP
4756 u->load_state = UNIT_STUB;
4757 u->load_error = 0;
4758 u->transient = true;
4759
7c65093a
LP
4760 unit_add_to_dbus_queue(u);
4761 unit_add_to_gc_queue(u);
c2756a68 4762
4f4afc88
LP
4763 fputs("# This is a transient unit file, created programmatically via the systemd API. Do not edit.\n",
4764 u->transient_file);
4765
3f5e8115 4766 return 0;
c2756a68
LP
4767}
4768
4d1b2df1 4769static int log_kill(const PidRef *pid, int sig, void *userdata) {
1d98fef1
LP
4770 _cleanup_free_ char *comm = NULL;
4771
4d1b2df1
LP
4772 assert(pidref_is_set(pid));
4773
4774 (void) pidref_get_comm(pid, &comm);
1d98fef1
LP
4775
4776 /* Don't log about processes marked with brackets, under the assumption that these are temporary processes
4777 only, like for example systemd's own PAM stub process. */
4778 if (comm && comm[0] == '(')
500cd2e8 4779 /* Although we didn't log anything, as this callback is used in unit_kill_context we must return 1
4780 * here to let the manager know that a process was killed. */
4781 return 1;
1d98fef1
LP
4782
4783 log_unit_notice(userdata,
4784 "Killing process " PID_FMT " (%s) with signal SIG%s.",
4d1b2df1 4785 pid->pid,
1d98fef1
LP
4786 strna(comm),
4787 signal_to_string(sig));
c53d2d54
DB
4788
4789 return 1;
1d98fef1
LP
4790}
4791
efa75d70
LP
4792static int operation_to_signal(
4793 const KillContext *c,
4794 KillOperation k,
4795 bool *ret_noteworthy) {
4796
1d98fef1
LP
4797 assert(c);
4798
4799 switch (k) {
4800
4801 case KILL_TERMINATE:
4802 case KILL_TERMINATE_AND_LOG:
efa75d70 4803 *ret_noteworthy = false;
1d98fef1
LP
4804 return c->kill_signal;
4805
a232ebcc 4806 case KILL_RESTART:
efa75d70 4807 *ret_noteworthy = false;
a232ebcc
ZJS
4808 return restart_kill_signal(c);
4809
1d98fef1 4810 case KILL_KILL:
efa75d70 4811 *ret_noteworthy = true;
fbb48d4c 4812 return c->final_kill_signal;
1d98fef1 4813
c87700a1 4814 case KILL_WATCHDOG:
efa75d70 4815 *ret_noteworthy = true;
c87700a1 4816 return c->watchdog_signal;
1d98fef1
LP
4817
4818 default:
04499a70 4819 assert_not_reached();
1d98fef1
LP
4820 }
4821}
4822
cd2086fe
LP
4823int unit_kill_context(
4824 Unit *u,
4825 KillContext *c,
db2cb23b 4826 KillOperation k,
7901288a
LP
4827 PidRef* main_pid,
4828 PidRef* control_pid,
cd2086fe
LP
4829 bool main_pid_alien) {
4830
1d98fef1 4831 bool wait_for_exit = false, send_sighup;
59ec09a8 4832 cg_kill_log_func_t log_func = NULL;
b821a397 4833 int sig, r;
cd2086fe
LP
4834
4835 assert(u);
4836 assert(c);
4837
8aff7ac4
LP
4838 /* Kill the processes belonging to this unit, in preparation for shutting the unit down. Returns > 0
4839 * if we killed something worth waiting for, 0 otherwise. Do not confuse with unit_kill_common()
4840 * which is used for user-requested killing of unit processes. */
1d98fef1 4841
cd2086fe
LP
4842 if (c->kill_mode == KILL_NONE)
4843 return 0;
4844
4ab1670f
ZJS
4845 bool noteworthy;
4846 sig = operation_to_signal(c, k, &noteworthy);
4847 if (noteworthy)
4848 log_func = log_kill;
1d98fef1
LP
4849
4850 send_sighup =
4851 c->send_sighup &&
4852 IN_SET(k, KILL_TERMINATE, KILL_TERMINATE_AND_LOG) &&
4853 sig != SIGHUP;
4854
7901288a 4855 if (pidref_is_set(main_pid)) {
1d98fef1 4856 if (log_func)
4d1b2df1 4857 log_func(main_pid, sig, u);
cd2086fe 4858
7901288a 4859 r = pidref_kill_and_sigcont(main_pid, sig);
cd2086fe
LP
4860 if (r < 0 && r != -ESRCH) {
4861 _cleanup_free_ char *comm = NULL;
d7d74854 4862 (void) pidref_get_comm(main_pid, &comm);
cd2086fe 4863
7901288a 4864 log_unit_warning_errno(u, r, "Failed to kill main process " PID_FMT " (%s), ignoring: %m", main_pid->pid, strna(comm));
82659fd7 4865 } else {
bc6aed7b
LP
4866 if (!main_pid_alien)
4867 wait_for_exit = true;
82659fd7 4868
1d98fef1 4869 if (r != -ESRCH && send_sighup)
7901288a 4870 (void) pidref_kill(main_pid, SIGHUP);
82659fd7 4871 }
cd2086fe
LP
4872 }
4873
7901288a 4874 if (pidref_is_set(control_pid)) {
1d98fef1 4875 if (log_func)
4d1b2df1 4876 log_func(control_pid, sig, u);
cd2086fe 4877
7901288a 4878 r = pidref_kill_and_sigcont(control_pid, sig);
cd2086fe
LP
4879 if (r < 0 && r != -ESRCH) {
4880 _cleanup_free_ char *comm = NULL;
d7d74854 4881 (void) pidref_get_comm(control_pid, &comm);
cd2086fe 4882
7901288a 4883 log_unit_warning_errno(u, r, "Failed to kill control process " PID_FMT " (%s), ignoring: %m", control_pid->pid, strna(comm));
82659fd7 4884 } else {
cd2086fe 4885 wait_for_exit = true;
82659fd7 4886
1d98fef1 4887 if (r != -ESRCH && send_sighup)
7901288a 4888 (void) pidref_kill(control_pid, SIGHUP);
82659fd7 4889 }
cd2086fe
LP
4890 }
4891
b821a397
LP
4892 if (u->cgroup_path &&
4893 (c->kill_mode == KILL_CONTROL_GROUP || (c->kill_mode == KILL_MIXED && k == KILL_KILL))) {
cd2086fe
LP
4894 _cleanup_set_free_ Set *pid_set = NULL;
4895
82659fd7 4896 /* Exclude the main/control pids from being killed via the cgroup */
7901288a 4897 pid_set = unit_pid_set(main_pid ? main_pid->pid : 0, control_pid ? control_pid->pid : 0);
cd2086fe
LP
4898 if (!pid_set)
4899 return -ENOMEM;
4900
bd1791b5
LP
4901 r = cg_kill_recursive(
4902 u->cgroup_path,
4903 sig,
4904 CGROUP_SIGCONT|CGROUP_IGNORE_SELF,
4905 pid_set,
4906 log_func, u);
cd2086fe 4907 if (r < 0) {
4c701096 4908 if (!IN_SET(r, -EAGAIN, -ESRCH, -ENOENT))
6178e2f8 4909 log_unit_warning_errno(u, r, "Failed to kill control group %s, ignoring: %m", empty_to_root(u->cgroup_path));
b821a397 4910
82659fd7 4911 } else if (r > 0) {
bc6aed7b 4912
1d9cc876
LP
4913 /* FIXME: For now, on the legacy hierarchy, we will not wait for the cgroup members to die if
4914 * we are running in a container or if this is a delegation unit, simply because cgroup
4915 * notification is unreliable in these cases. It doesn't work at all in containers, and outside
4916 * of containers it can be confused easily by left-over directories in the cgroup — which
4917 * however should not exist in non-delegated units. On the unified hierarchy that's different,
4918 * there we get proper events. Hence rely on them. */
efdb0237 4919
c22800e4 4920 if (cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER) > 0 ||
1d9cc876 4921 (detect_container() == 0 && !unit_cgroup_delegate(u)))
e9db43d5 4922 wait_for_exit = true;
58ea275a 4923
1d98fef1 4924 if (send_sighup) {
82659fd7
LP
4925 set_free(pid_set);
4926
7901288a 4927 pid_set = unit_pid_set(main_pid ? main_pid->pid : 0, control_pid ? control_pid->pid : 0);
82659fd7
LP
4928 if (!pid_set)
4929 return -ENOMEM;
4930
bd1791b5
LP
4931 (void) cg_kill_recursive(
4932 u->cgroup_path,
4933 SIGHUP,
4934 CGROUP_IGNORE_SELF,
4935 pid_set,
4936 /* kill_log= */ NULL,
4937 /* userdata= */ NULL);
82659fd7
LP
4938 }
4939 }
cd2086fe
LP
4940 }
4941
4942 return wait_for_exit;
4943}
4944
eef85c4a 4945int unit_require_mounts_for(Unit *u, const char *path, UnitDependencyMask mask) {
a57f7e2c
LP
4946 int r;
4947
4948 assert(u);
4949 assert(path);
4950
ac19bdd0
ZJS
4951 /* Registers a unit for requiring a certain path and all its prefixes. We keep a hashtable of these
4952 * paths in the unit (from the path to the UnitDependencyInfo structure indicating how to the
4953 * dependency came to be). However, we build a prefix table for all possible prefixes so that new
4954 * appearing mount units can easily determine which units to make themselves a dependency of. */
a57f7e2c 4955
70b64bd3
ZJS
4956 if (!path_is_absolute(path))
4957 return -EINVAL;
4958
ac19bdd0
ZJS
4959 if (hashmap_contains(u->requires_mounts_for, path)) /* Exit quickly if the path is already covered. */
4960 return 0;
eef85c4a 4961
ac19bdd0
ZJS
4962 /* Use the canonical form of the path as the stored key. We call path_is_normalized()
4963 * only after simplification, since path_is_normalized() rejects paths with '.'.
4964 * path_is_normalized() also verifies that the path fits in PATH_MAX. */
cf3d95b2
YW
4965 _cleanup_free_ char *p = NULL;
4966 r = path_simplify_alloc(path, &p);
4967 if (r < 0)
4968 return r;
4969 path = p;
a57f7e2c 4970
ca8700e9 4971 if (!path_is_normalized(path))
a57f7e2c 4972 return -EPERM;
a57f7e2c 4973
ac19bdd0 4974 UnitDependencyInfo di = {
eef85c4a
LP
4975 .origin_mask = mask
4976 };
4977
ac19bdd0 4978 r = hashmap_ensure_put(&u->requires_mounts_for, &path_hash_ops, p, di.data);
ca8700e9 4979 if (r < 0)
a57f7e2c 4980 return r;
ac19bdd0
ZJS
4981 assert(r > 0);
4982 TAKE_PTR(p); /* path remains a valid pointer to the string stored in the hashmap */
a57f7e2c 4983
4cb06c59 4984 char prefix[strlen(path) + 1];
ca8700e9 4985 PATH_FOREACH_PREFIX_MORE(prefix, path) {
a57f7e2c
LP
4986 Set *x;
4987
4988 x = hashmap_get(u->manager->units_requiring_mounts_for, prefix);
4989 if (!x) {
ca8700e9 4990 _cleanup_free_ char *q = NULL;
a57f7e2c 4991
548f6937 4992 r = hashmap_ensure_allocated(&u->manager->units_requiring_mounts_for, &path_hash_ops);
742f41ad
LP
4993 if (r < 0)
4994 return r;
a57f7e2c
LP
4995
4996 q = strdup(prefix);
4997 if (!q)
4998 return -ENOMEM;
4999
d5099efc 5000 x = set_new(NULL);
ca8700e9 5001 if (!x)
a57f7e2c 5002 return -ENOMEM;
a57f7e2c
LP
5003
5004 r = hashmap_put(u->manager->units_requiring_mounts_for, q, x);
5005 if (r < 0) {
a57f7e2c
LP
5006 set_free(x);
5007 return r;
5008 }
ca8700e9 5009 q = NULL;
a57f7e2c
LP
5010 }
5011
5012 r = set_put(x, u);
5013 if (r < 0)
5014 return r;
5015 }
5016
5017 return 0;
5018}
5019
613b411c 5020int unit_setup_exec_runtime(Unit *u) {
28135da3 5021 _cleanup_(exec_shared_runtime_unrefp) ExecSharedRuntime *esr = NULL;
15220772 5022 _cleanup_(dynamic_creds_unrefp) DynamicCreds *dcreds = NULL;
83123a44 5023 _cleanup_set_free_ Set *units = NULL;
28135da3 5024 ExecRuntime **rt;
15220772 5025 ExecContext *ec;
613b411c 5026 size_t offset;
613b411c 5027 Unit *other;
e8a565cb 5028 int r;
613b411c
LP
5029
5030 offset = UNIT_VTABLE(u)->exec_runtime_offset;
5031 assert(offset > 0);
5032
28135da3
DDM
5033 /* Check if there already is an ExecRuntime for this unit? */
5034 rt = (ExecRuntime**) ((uint8_t*) u + offset);
613b411c
LP
5035 if (*rt)
5036 return 0;
5037
15220772
DDM
5038 ec = unit_get_exec_context(u);
5039 assert(ec);
5040
83123a44
YW
5041 r = unit_get_transitive_dependency_set(u, UNIT_ATOM_JOINS_NAMESPACE_OF, &units);
5042 if (r < 0)
5043 return r;
5044
613b411c 5045 /* Try to get it from somebody else */
83123a44 5046 SET_FOREACH(other, units) {
28135da3
DDM
5047 r = exec_shared_runtime_acquire(u->manager, NULL, other->id, false, &esr);
5048 if (r < 0)
5049 return r;
5050 if (r > 0)
5051 break;
5052 }
5053
5054 if (!esr) {
15220772 5055 r = exec_shared_runtime_acquire(u->manager, ec, u->id, true, &esr);
28135da3
DDM
5056 if (r < 0)
5057 return r;
613b411c
LP
5058 }
5059
15220772
DDM
5060 if (ec->dynamic_user) {
5061 r = dynamic_creds_make(u->manager, ec->user, ec->group, &dcreds);
5062 if (r < 0)
5063 return r;
5064 }
5065
9c0c6701 5066 r = exec_runtime_make(u, ec, esr, dcreds, rt);
28135da3
DDM
5067 if (r < 0)
5068 return r;
5069
5070 TAKE_PTR(esr);
15220772 5071 TAKE_PTR(dcreds);
28135da3
DDM
5072
5073 return r;
613b411c
LP
5074}
5075
1c2e9646 5076bool unit_type_supported(UnitType t) {
88e4bfa6
MS
5077 static int8_t cache[_UNIT_TYPE_MAX] = {}; /* -1: disabled, 1: enabled: 0: don't know */
5078 int r;
5079
ffcf54d4 5080 assert(t >= 0 && t < _UNIT_TYPE_MAX);
1c2e9646 5081
88e4bfa6
MS
5082 if (cache[t] == 0) {
5083 char *e;
5084
5085 e = strjoina("SYSTEMD_SUPPORT_", unit_type_to_string(t));
5086
5087 r = getenv_bool(ascii_strupper(e));
5088 if (r < 0 && r != -ENXIO)
5089 log_debug_errno(r, "Failed to parse $%s, ignoring: %m", e);
5090
5091 cache[t] = r == 0 ? -1 : 1;
5092 }
5093 if (cache[t] < 0)
5094 return false;
5095
1c2e9646
LP
5096 if (!unit_vtable[t]->supported)
5097 return true;
5098
5099 return unit_vtable[t]->supported();
5100}
5101
8b4305c7
LP
5102void unit_warn_if_dir_nonempty(Unit *u, const char* where) {
5103 int r;
5104
5105 assert(u);
5106 assert(where);
5107
c2503e35
RH
5108 if (!unit_log_level_test(u, LOG_NOTICE))
5109 return;
5110
db55bbf2 5111 r = dir_is_empty(where, /* ignore_hidden_or_backup= */ false);
3f602115 5112 if (r > 0 || r == -ENOTDIR)
8b4305c7
LP
5113 return;
5114 if (r < 0) {
5115 log_unit_warning_errno(u, r, "Failed to check directory %s: %m", where);
5116 return;
5117 }
5118
c2503e35
RH
5119 log_unit_struct(u, LOG_NOTICE,
5120 "MESSAGE_ID=" SD_MESSAGE_OVERMOUNTING_STR,
5121 LOG_UNIT_INVOCATION_ID(u),
5122 LOG_UNIT_MESSAGE(u, "Directory %s to mount over is not empty, mounting anyway.", where),
5123 "WHERE=%s", where);
8b4305c7
LP
5124}
5125
25cd4964 5126int unit_fail_if_noncanonical(Unit *u, const char* where) {
58d9d89b 5127 _cleanup_free_ char *canonical_where = NULL;
8b4305c7
LP
5128 int r;
5129
5130 assert(u);
5131 assert(where);
5132
f461a28d 5133 r = chase(where, NULL, CHASE_NONEXISTENT, &canonical_where, NULL);
8b4305c7 5134 if (r < 0) {
25cd4964 5135 log_unit_debug_errno(u, r, "Failed to check %s for symlinks, ignoring: %m", where);
8b4305c7
LP
5136 return 0;
5137 }
25cd4964
AJ
5138
5139 /* We will happily ignore a trailing slash (or any redundant slashes) */
5140 if (path_equal(where, canonical_where))
8b4305c7
LP
5141 return 0;
5142
25cd4964 5143 /* No need to mention "." or "..", they would already have been rejected by unit_name_from_path() */
c2503e35
RH
5144 log_unit_struct(u, LOG_ERR,
5145 "MESSAGE_ID=" SD_MESSAGE_OVERMOUNTING_STR,
5146 LOG_UNIT_INVOCATION_ID(u),
5147 LOG_UNIT_MESSAGE(u, "Mount path %s is not canonical (contains a symlink).", where),
5148 "WHERE=%s", where);
8b4305c7
LP
5149
5150 return -ELOOP;
5151}
0f13f3bd
LP
5152
5153bool unit_is_pristine(Unit *u) {
5154 assert(u);
5155
1f832446
ZJS
5156 /* Check if the unit already exists or is already around, in a number of different ways. Note that to
5157 * cater for unit types such as slice, we are generally fine with units that are marked UNIT_LOADED
5158 * even though nothing was actually loaded, as those unit types don't require a file on disk.
5159 *
5160 * Note that we don't check for drop-ins here, because we allow drop-ins for transient units
5161 * identically to non-transient units, both unit-specific and hierarchical. E.g. for a-b-c.service:
5162 * service.d/….conf, a-.service.d/….conf, a-b-.service.d/….conf, a-b-c.service.d/….conf.
5163 */
0f13f3bd 5164
b146a734
ZJS
5165 return IN_SET(u->load_state, UNIT_NOT_FOUND, UNIT_LOADED) &&
5166 !u->fragment_path &&
5167 !u->source_path &&
b146a734
ZJS
5168 !u->job &&
5169 !u->merged_into;
0f13f3bd 5170}
291d565a 5171
37eb258e 5172PidRef* unit_control_pid(Unit *u) {
291d565a
LP
5173 assert(u);
5174
5175 if (UNIT_VTABLE(u)->control_pid)
5176 return UNIT_VTABLE(u)->control_pid(u);
5177
37eb258e 5178 return NULL;
291d565a
LP
5179}
5180
37eb258e 5181PidRef* unit_main_pid(Unit *u) {
291d565a
LP
5182 assert(u);
5183
5184 if (UNIT_VTABLE(u)->main_pid)
5185 return UNIT_VTABLE(u)->main_pid(u);
5186
37eb258e 5187 return NULL;
291d565a 5188}
00d9ef85 5189
3bb48b19
TM
5190static void unit_modify_user_nft_set(Unit *u, bool add, NFTSetSource source, uint32_t element) {
5191 int r;
5192
5193 assert(u);
5194
5195 if (!MANAGER_IS_SYSTEM(u->manager))
5196 return;
5197
5198 CGroupContext *c;
5199 c = unit_get_cgroup_context(u);
5200 if (!c)
5201 return;
5202
5203 if (!u->manager->fw_ctx) {
5204 r = fw_ctx_new_full(&u->manager->fw_ctx, /* init_tables= */ false);
5205 if (r < 0)
5206 return;
5207
5208 assert(u->manager->fw_ctx);
5209 }
5210
5211 FOREACH_ARRAY(nft_set, c->nft_set_context.sets, c->nft_set_context.n_sets) {
5212 if (nft_set->source != source)
5213 continue;
5214
5215 r = nft_set_element_modify_any(u->manager->fw_ctx, add, nft_set->nfproto, nft_set->table, nft_set->set, &element, sizeof(element));
5216 if (r < 0)
5217 log_warning_errno(r, "Failed to %s NFT set: family %s, table %s, set %s, ID %u, ignoring: %m",
5218 add? "add" : "delete", nfproto_to_string(nft_set->nfproto), nft_set->table, nft_set->set, element);
5219 else
5220 log_debug("%s NFT set: family %s, table %s, set %s, ID %u",
5221 add? "Added" : "Deleted", nfproto_to_string(nft_set->nfproto), nft_set->table, nft_set->set, element);
5222 }
5223}
5224
00d9ef85
LP
5225static void unit_unref_uid_internal(
5226 Unit *u,
5227 uid_t *ref_uid,
5228 bool destroy_now,
5229 void (*_manager_unref_uid)(Manager *m, uid_t uid, bool destroy_now)) {
5230
5231 assert(u);
5232 assert(ref_uid);
5233 assert(_manager_unref_uid);
5234
5235 /* Generic implementation of both unit_unref_uid() and unit_unref_gid(), under the assumption that uid_t and
5236 * gid_t are actually the same time, with the same validity rules.
5237 *
5238 * Drops a reference to UID/GID from a unit. */
5239
5240 assert_cc(sizeof(uid_t) == sizeof(gid_t));
5241 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
5242
5243 if (!uid_is_valid(*ref_uid))
5244 return;
5245
5246 _manager_unref_uid(u->manager, *ref_uid, destroy_now);
5247 *ref_uid = UID_INVALID;
5248}
5249
b90cf102 5250static void unit_unref_uid(Unit *u, bool destroy_now) {
3bb48b19
TM
5251 assert(u);
5252
5253 unit_modify_user_nft_set(u, /* add = */ false, NFT_SET_SOURCE_USER, u->ref_uid);
5254
00d9ef85
LP
5255 unit_unref_uid_internal(u, &u->ref_uid, destroy_now, manager_unref_uid);
5256}
5257
b90cf102 5258static void unit_unref_gid(Unit *u, bool destroy_now) {
3bb48b19
TM
5259 assert(u);
5260
5261 unit_modify_user_nft_set(u, /* add = */ false, NFT_SET_SOURCE_GROUP, u->ref_gid);
5262
00d9ef85
LP
5263 unit_unref_uid_internal(u, (uid_t*) &u->ref_gid, destroy_now, manager_unref_gid);
5264}
5265
b90cf102
LP
5266void unit_unref_uid_gid(Unit *u, bool destroy_now) {
5267 assert(u);
5268
5269 unit_unref_uid(u, destroy_now);
5270 unit_unref_gid(u, destroy_now);
5271}
5272
00d9ef85
LP
5273static int unit_ref_uid_internal(
5274 Unit *u,
5275 uid_t *ref_uid,
5276 uid_t uid,
5277 bool clean_ipc,
5278 int (*_manager_ref_uid)(Manager *m, uid_t uid, bool clean_ipc)) {
5279
5280 int r;
5281
5282 assert(u);
5283 assert(ref_uid);
5284 assert(uid_is_valid(uid));
5285 assert(_manager_ref_uid);
5286
5287 /* Generic implementation of both unit_ref_uid() and unit_ref_guid(), under the assumption that uid_t and gid_t
5288 * are actually the same type, and have the same validity rules.
5289 *
5290 * Adds a reference on a specific UID/GID to this unit. Each unit referencing the same UID/GID maintains a
5291 * reference so that we can destroy the UID/GID's IPC resources as soon as this is requested and the counter
5292 * drops to zero. */
5293
5294 assert_cc(sizeof(uid_t) == sizeof(gid_t));
5295 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
5296
5297 if (*ref_uid == uid)
5298 return 0;
5299
5300 if (uid_is_valid(*ref_uid)) /* Already set? */
5301 return -EBUSY;
5302
5303 r = _manager_ref_uid(u->manager, uid, clean_ipc);
5304 if (r < 0)
5305 return r;
5306
5307 *ref_uid = uid;
5308 return 1;
5309}
5310
b90cf102 5311static int unit_ref_uid(Unit *u, uid_t uid, bool clean_ipc) {
00d9ef85
LP
5312 return unit_ref_uid_internal(u, &u->ref_uid, uid, clean_ipc, manager_ref_uid);
5313}
5314
b90cf102 5315static int unit_ref_gid(Unit *u, gid_t gid, bool clean_ipc) {
00d9ef85
LP
5316 return unit_ref_uid_internal(u, (uid_t*) &u->ref_gid, (uid_t) gid, clean_ipc, manager_ref_gid);
5317}
5318
5319static int unit_ref_uid_gid_internal(Unit *u, uid_t uid, gid_t gid, bool clean_ipc) {
5320 int r = 0, q = 0;
5321
5322 assert(u);
5323
5324 /* Reference both a UID and a GID in one go. Either references both, or neither. */
5325
5326 if (uid_is_valid(uid)) {
5327 r = unit_ref_uid(u, uid, clean_ipc);
5328 if (r < 0)
5329 return r;
5330 }
5331
5332 if (gid_is_valid(gid)) {
5333 q = unit_ref_gid(u, gid, clean_ipc);
5334 if (q < 0) {
5335 if (r > 0)
5336 unit_unref_uid(u, false);
5337
5338 return q;
5339 }
5340 }
5341
5342 return r > 0 || q > 0;
5343}
5344
5345int unit_ref_uid_gid(Unit *u, uid_t uid, gid_t gid) {
5346 ExecContext *c;
5347 int r;
5348
5349 assert(u);
5350
5351 c = unit_get_exec_context(u);
5352
5353 r = unit_ref_uid_gid_internal(u, uid, gid, c ? c->remove_ipc : false);
5354 if (r < 0)
5355 return log_unit_warning_errno(u, r, "Couldn't add UID/GID reference to unit, proceeding without: %m");
5356
3bb48b19
TM
5357 unit_modify_user_nft_set(u, /* add = */ true, NFT_SET_SOURCE_USER, uid);
5358 unit_modify_user_nft_set(u, /* add = */ true, NFT_SET_SOURCE_GROUP, gid);
5359
00d9ef85
LP
5360 return r;
5361}
5362
00d9ef85
LP
5363void unit_notify_user_lookup(Unit *u, uid_t uid, gid_t gid) {
5364 int r;
5365
5366 assert(u);
5367
5368 /* This is invoked whenever one of the forked off processes let's us know the UID/GID its user name/group names
5369 * resolved to. We keep track of which UID/GID is currently assigned in order to be able to destroy its IPC
5370 * objects when no service references the UID/GID anymore. */
5371
5372 r = unit_ref_uid_gid(u, uid, gid);
5373 if (r > 0)
37d0b962 5374 unit_add_to_dbus_queue(u);
00d9ef85 5375}
4b58153d 5376
4b58153d
LP
5377int unit_acquire_invocation_id(Unit *u) {
5378 sd_id128_t id;
5379 int r;
5380
5381 assert(u);
5382
5383 r = sd_id128_randomize(&id);
5384 if (r < 0)
5385 return log_unit_error_errno(u, r, "Failed to generate invocation ID for unit: %m");
5386
5387 r = unit_set_invocation_id(u, id);
5388 if (r < 0)
5389 return log_unit_error_errno(u, r, "Failed to set invocation ID for unit: %m");
5390
af92c603 5391 unit_add_to_dbus_queue(u);
4b58153d
LP
5392 return 0;
5393}
f0d47797 5394
1ad6e8b3 5395int unit_set_exec_params(Unit *u, ExecParameters *p) {
bb5232b6 5396 const char *confirm_spawn;
1ad6e8b3
LP
5397 int r;
5398
7960b0c7
LP
5399 assert(u);
5400 assert(p);
f0d47797 5401
004c7f16 5402 /* Copy parameters from manager */
1ad6e8b3
LP
5403 r = manager_get_effective_environment(u->manager, &p->environment);
5404 if (r < 0)
5405 return r;
5406
170d978b
LP
5407 p->runtime_scope = u->manager->runtime_scope;
5408
bb5232b6
LB
5409 confirm_spawn = manager_get_confirm_spawn(u->manager);
5410 if (confirm_spawn) {
5411 p->confirm_spawn = strdup(confirm_spawn);
5412 if (!p->confirm_spawn)
5413 return -ENOMEM;
5414 }
5415
004c7f16
LP
5416 p->cgroup_supported = u->manager->cgroup_supported;
5417 p->prefix = u->manager->prefix;
5418 SET_FLAG(p->flags, EXEC_PASS_LOG_UNIT|EXEC_CHOWN_DIRECTORIES, MANAGER_IS_SYSTEM(u->manager));
5419
5238e957 5420 /* Copy parameters from unit */
7960b0c7 5421 p->cgroup_path = u->cgroup_path;
1d9cc876 5422 SET_FLAG(p->flags, EXEC_CGROUP_DELEGATE, unit_cgroup_delegate(u));
1ad6e8b3 5423
2ad591a3
LP
5424 p->received_credentials_directory = u->manager->received_credentials_directory;
5425 p->received_encrypted_credentials_directory = u->manager->received_encrypted_credentials_directory;
bb0c0d6f 5426
c8ccd444 5427 p->shall_confirm_spawn = u->manager->confirm_spawn;
154eb43f
LB
5428
5429 p->fallback_smack_process_label = u->manager->defaults.smack_process_label;
5430
5431 if (u->manager->restrict_fs && p->bpf_outer_map_fd < 0) {
5432 int fd = lsm_bpf_map_restrict_fs_fd(u);
5433 if (fd < 0)
5434 return fd;
5435
5436 p->bpf_outer_map_fd = fd;
5437 }
5438
b646fc32
LB
5439 p->user_lookup_fd = u->manager->user_lookup_fds[1];
5440
5441 p->cgroup_id = u->cgroup_id;
5442 p->invocation_id = u->invocation_id;
5443 sd_id128_to_string(p->invocation_id, p->invocation_id_string);
5444 p->unit_id = strdup(u->id);
5445 if (!p->unit_id)
5446 return -ENOMEM;
154eb43f 5447
1ad6e8b3 5448 return 0;
f0d47797 5449}
a79279c7 5450
4775b55d
LP
5451int unit_fork_helper_process(Unit *u, const char *name, PidRef *ret) {
5452 pid_t pid;
a79279c7
LP
5453 int r;
5454
5455 assert(u);
5456 assert(ret);
5457
5458 /* Forks off a helper process and makes sure it is a member of the unit's cgroup. Returns == 0 in the child,
5459 * and > 0 in the parent. The pid parameter is always filled in with the child's PID. */
5460
5461 (void) unit_realize_cgroup(u);
5462
e9ccae31 5463 r = safe_fork(name, FORK_REOPEN_LOG|FORK_DEATHSIG_SIGTERM, &pid);
4775b55d
LP
5464 if (r < 0)
5465 return r;
5466 if (r > 0) {
5467 _cleanup_(pidref_done) PidRef pidref = PIDREF_NULL;
5468 int q;
5469
5470 /* Parent */
5471
5472 q = pidref_set_pid(&pidref, pid);
5473 if (q < 0)
5474 return q;
5475
5476 *ret = TAKE_PIDREF(pidref);
4c253ed1 5477 return r;
4775b55d
LP
5478 }
5479
5480 /* Child */
a79279c7 5481
9c274488
LP
5482 (void) default_signals(SIGNALS_CRASH_HANDLER, SIGNALS_IGNORE);
5483 (void) ignore_signals(SIGPIPE);
a79279c7 5484
4c253ed1
LP
5485 if (u->cgroup_path) {
5486 r = cg_attach_everywhere(u->manager->cgroup_supported, u->cgroup_path, 0, NULL, NULL);
5487 if (r < 0) {
6178e2f8 5488 log_unit_error_errno(u, r, "Failed to join unit cgroup %s: %m", empty_to_root(u->cgroup_path));
4c253ed1 5489 _exit(EXIT_CGROUP);
a79279c7 5490 }
a79279c7
LP
5491 }
5492
4c253ed1 5493 return 0;
a79279c7 5494}
c999cf38 5495
4775b55d
LP
5496int unit_fork_and_watch_rm_rf(Unit *u, char **paths, PidRef *ret_pid) {
5497 _cleanup_(pidref_done) PidRef pid = PIDREF_NULL;
810ef318
YW
5498 int r;
5499
5500 assert(u);
5501 assert(ret_pid);
5502
5503 r = unit_fork_helper_process(u, "(sd-rmrf)", &pid);
5504 if (r < 0)
5505 return r;
5506 if (r == 0) {
5507 int ret = EXIT_SUCCESS;
810ef318
YW
5508
5509 STRV_FOREACH(i, paths) {
5510 r = rm_rf(*i, REMOVE_ROOT|REMOVE_PHYSICAL|REMOVE_MISSING_OK);
5511 if (r < 0) {
5512 log_error_errno(r, "Failed to remove '%s': %m", *i);
5513 ret = EXIT_FAILURE;
5514 }
5515 }
5516
5517 _exit(ret);
5518 }
5519
495e75ed 5520 r = unit_watch_pidref(u, &pid, /* exclusive= */ true);
810ef318
YW
5521 if (r < 0)
5522 return r;
5523
4775b55d 5524 *ret_pid = TAKE_PIDREF(pid);
810ef318
YW
5525 return 0;
5526}
5527
15ed3c3a
LP
5528static void unit_update_dependency_mask(Hashmap *deps, Unit *other, UnitDependencyInfo di) {
5529 assert(deps);
c999cf38
LP
5530 assert(other);
5531
15ed3c3a 5532 if (di.origin_mask == 0 && di.destination_mask == 0)
c999cf38 5533 /* No bit set anymore, let's drop the whole entry */
15ed3c3a
LP
5534 assert_se(hashmap_remove(deps, other));
5535 else
c999cf38 5536 /* Mask was reduced, let's update the entry */
15ed3c3a 5537 assert_se(hashmap_update(deps, other, di.data) == 0);
c999cf38
LP
5538}
5539
5540void unit_remove_dependencies(Unit *u, UnitDependencyMask mask) {
15ed3c3a 5541 Hashmap *deps;
c999cf38
LP
5542 assert(u);
5543
5544 /* Removes all dependencies u has on other units marked for ownership by 'mask'. */
5545
5546 if (mask == 0)
5547 return;
5548
15ed3c3a 5549 HASHMAP_FOREACH(deps, u->dependencies) {
c999cf38
LP
5550 bool done;
5551
5552 do {
5553 UnitDependencyInfo di;
5554 Unit *other;
c999cf38
LP
5555
5556 done = true;
5557
15ed3c3a
LP
5558 HASHMAP_FOREACH_KEY(di.data, other, deps) {
5559 Hashmap *other_deps;
5560
1d6cc5d0 5561 if (FLAGS_SET(~mask, di.origin_mask))
c999cf38 5562 continue;
15ed3c3a 5563
c999cf38 5564 di.origin_mask &= ~mask;
15ed3c3a 5565 unit_update_dependency_mask(deps, other, di);
c999cf38 5566
defe63b0
LP
5567 /* We updated the dependency from our unit to the other unit now. But most
5568 * dependencies imply a reverse dependency. Hence, let's delete that one
5569 * too. For that we go through all dependency types on the other unit and
5570 * delete all those which point to us and have the right mask set. */
c999cf38 5571
15ed3c3a 5572 HASHMAP_FOREACH(other_deps, other->dependencies) {
c999cf38
LP
5573 UnitDependencyInfo dj;
5574
15ed3c3a 5575 dj.data = hashmap_get(other_deps, u);
1d6cc5d0 5576 if (FLAGS_SET(~mask, dj.destination_mask))
c999cf38 5577 continue;
c999cf38 5578
15ed3c3a
LP
5579 dj.destination_mask &= ~mask;
5580 unit_update_dependency_mask(other_deps, u, dj);
c999cf38
LP
5581 }
5582
5583 unit_add_to_gc_queue(other);
5584
156ba52b
YW
5585 /* The unit 'other' may not be wanted by the unit 'u'. */
5586 unit_submit_to_stop_when_unneeded_queue(other);
5587
c999cf38
LP
5588 done = false;
5589 break;
5590 }
5591
5592 } while (!done);
5593 }
5594}
d3070fbd 5595
2f8c48b6
AZ
5596static int unit_get_invocation_path(Unit *u, char **ret) {
5597 char *p;
5598 int r;
5599
5600 assert(u);
5601 assert(ret);
5602
5603 if (MANAGER_IS_SYSTEM(u->manager))
5604 p = strjoin("/run/systemd/units/invocation:", u->id);
5605 else {
5606 _cleanup_free_ char *user_path = NULL;
5607 r = xdg_user_runtime_dir(&user_path, "/systemd/units/invocation:");
5608 if (r < 0)
5609 return r;
5610 p = strjoin(user_path, u->id);
5611 }
5612
5613 if (!p)
5614 return -ENOMEM;
5615
5616 *ret = p;
5617 return 0;
5618}
5619
d3070fbd 5620static int unit_export_invocation_id(Unit *u) {
2f8c48b6 5621 _cleanup_free_ char *p = NULL;
d3070fbd
LP
5622 int r;
5623
5624 assert(u);
5625
5626 if (u->exported_invocation_id)
5627 return 0;
5628
5629 if (sd_id128_is_null(u->invocation_id))
5630 return 0;
5631
2f8c48b6
AZ
5632 r = unit_get_invocation_path(u, &p);
5633 if (r < 0)
5634 return log_unit_debug_errno(u, r, "Failed to get invocation path: %m");
5635
a3f5fd96 5636 r = symlink_atomic_label(u->invocation_id_string, p);
d3070fbd
LP
5637 if (r < 0)
5638 return log_unit_debug_errno(u, r, "Failed to create invocation ID symlink %s: %m", p);
5639
5640 u->exported_invocation_id = true;
5641 return 0;
5642}
5643
5644static int unit_export_log_level_max(Unit *u, const ExecContext *c) {
5645 const char *p;
5646 char buf[2];
5647 int r;
5648
5649 assert(u);
5650 assert(c);
5651
5652 if (u->exported_log_level_max)
5653 return 0;
5654
5655 if (c->log_level_max < 0)
5656 return 0;
5657
5658 assert(c->log_level_max <= 7);
5659
5660 buf[0] = '0' + c->log_level_max;
5661 buf[1] = 0;
5662
5663 p = strjoina("/run/systemd/units/log-level-max:", u->id);
5664 r = symlink_atomic(buf, p);
5665 if (r < 0)
5666 return log_unit_debug_errno(u, r, "Failed to create maximum log level symlink %s: %m", p);
5667
5668 u->exported_log_level_max = true;
5669 return 0;
5670}
5671
5672static int unit_export_log_extra_fields(Unit *u, const ExecContext *c) {
254d1313 5673 _cleanup_close_ int fd = -EBADF;
d3070fbd
LP
5674 struct iovec *iovec;
5675 const char *p;
5676 char *pattern;
5677 le64_t *sizes;
5678 ssize_t n;
d3070fbd
LP
5679 int r;
5680
5681 if (u->exported_log_extra_fields)
5682 return 0;
5683
5684 if (c->n_log_extra_fields <= 0)
5685 return 0;
5686
5687 sizes = newa(le64_t, c->n_log_extra_fields);
5688 iovec = newa(struct iovec, c->n_log_extra_fields * 2);
5689
12375b95 5690 for (size_t i = 0; i < c->n_log_extra_fields; i++) {
d3070fbd
LP
5691 sizes[i] = htole64(c->log_extra_fields[i].iov_len);
5692
5693 iovec[i*2] = IOVEC_MAKE(sizes + i, sizeof(le64_t));
5694 iovec[i*2+1] = c->log_extra_fields[i];
5695 }
5696
5697 p = strjoina("/run/systemd/units/log-extra-fields:", u->id);
5698 pattern = strjoina(p, ".XXXXXX");
5699
5700 fd = mkostemp_safe(pattern);
5701 if (fd < 0)
5702 return log_unit_debug_errno(u, fd, "Failed to create extra fields file %s: %m", p);
5703
5704 n = writev(fd, iovec, c->n_log_extra_fields*2);
5705 if (n < 0) {
5706 r = log_unit_debug_errno(u, errno, "Failed to write extra fields: %m");
5707 goto fail;
5708 }
5709
5710 (void) fchmod(fd, 0644);
5711
5712 if (rename(pattern, p) < 0) {
5713 r = log_unit_debug_errno(u, errno, "Failed to rename extra fields file: %m");
5714 goto fail;
5715 }
5716
5717 u->exported_log_extra_fields = true;
5718 return 0;
5719
5720fail:
5721 (void) unlink(pattern);
5722 return r;
5723}
5724
5ac1530e 5725static int unit_export_log_ratelimit_interval(Unit *u, const ExecContext *c) {
90fc172e
AZ
5726 _cleanup_free_ char *buf = NULL;
5727 const char *p;
5728 int r;
5729
5730 assert(u);
5731 assert(c);
5732
5ac1530e 5733 if (u->exported_log_ratelimit_interval)
90fc172e
AZ
5734 return 0;
5735
5ac1530e 5736 if (c->log_ratelimit_interval_usec == 0)
90fc172e
AZ
5737 return 0;
5738
5739 p = strjoina("/run/systemd/units/log-rate-limit-interval:", u->id);
5740
5ac1530e 5741 if (asprintf(&buf, "%" PRIu64, c->log_ratelimit_interval_usec) < 0)
90fc172e
AZ
5742 return log_oom();
5743
5744 r = symlink_atomic(buf, p);
5745 if (r < 0)
5746 return log_unit_debug_errno(u, r, "Failed to create log rate limit interval symlink %s: %m", p);
5747
5ac1530e 5748 u->exported_log_ratelimit_interval = true;
90fc172e
AZ
5749 return 0;
5750}
5751
5ac1530e 5752static int unit_export_log_ratelimit_burst(Unit *u, const ExecContext *c) {
90fc172e
AZ
5753 _cleanup_free_ char *buf = NULL;
5754 const char *p;
5755 int r;
5756
5757 assert(u);
5758 assert(c);
5759
5ac1530e 5760 if (u->exported_log_ratelimit_burst)
90fc172e
AZ
5761 return 0;
5762
5ac1530e 5763 if (c->log_ratelimit_burst == 0)
90fc172e
AZ
5764 return 0;
5765
5766 p = strjoina("/run/systemd/units/log-rate-limit-burst:", u->id);
5767
5ac1530e 5768 if (asprintf(&buf, "%u", c->log_ratelimit_burst) < 0)
90fc172e
AZ
5769 return log_oom();
5770
5771 r = symlink_atomic(buf, p);
5772 if (r < 0)
5773 return log_unit_debug_errno(u, r, "Failed to create log rate limit burst symlink %s: %m", p);
5774
5ac1530e 5775 u->exported_log_ratelimit_burst = true;
90fc172e
AZ
5776 return 0;
5777}
5778
d3070fbd
LP
5779void unit_export_state_files(Unit *u) {
5780 const ExecContext *c;
5781
5782 assert(u);
5783
5784 if (!u->id)
5785 return;
5786
638cece4 5787 if (MANAGER_IS_TEST_RUN(u->manager))
8f632531
LP
5788 return;
5789
d3070fbd
LP
5790 /* Exports a couple of unit properties to /run/systemd/units/, so that journald can quickly query this data
5791 * from there. Ideally, journald would use IPC to query this, like everybody else, but that's hard, as long as
5792 * the IPC system itself and PID 1 also log to the journal.
5793 *
5794 * Note that these files really shouldn't be considered API for anyone else, as use a runtime file system as
5795 * IPC replacement is not compatible with today's world of file system namespaces. However, this doesn't really
5796 * apply to communication between the journal and systemd, as we assume that these two daemons live in the same
5797 * namespace at least.
5798 *
5799 * Note that some of the "files" exported here are actually symlinks and not regular files. Symlinks work
5800 * better for storing small bits of data, in particular as we can write them with two system calls, and read
5801 * them with one. */
5802
5803 (void) unit_export_invocation_id(u);
5804
2f8c48b6
AZ
5805 if (!MANAGER_IS_SYSTEM(u->manager))
5806 return;
5807
d3070fbd
LP
5808 c = unit_get_exec_context(u);
5809 if (c) {
5810 (void) unit_export_log_level_max(u, c);
5811 (void) unit_export_log_extra_fields(u, c);
5ac1530e
ZJS
5812 (void) unit_export_log_ratelimit_interval(u, c);
5813 (void) unit_export_log_ratelimit_burst(u, c);
d3070fbd
LP
5814 }
5815}
5816
5817void unit_unlink_state_files(Unit *u) {
5818 const char *p;
5819
5820 assert(u);
5821
5822 if (!u->id)
5823 return;
5824
d3070fbd
LP
5825 /* Undoes the effect of unit_export_state() */
5826
5827 if (u->exported_invocation_id) {
2f8c48b6
AZ
5828 _cleanup_free_ char *invocation_path = NULL;
5829 int r = unit_get_invocation_path(u, &invocation_path);
5830 if (r >= 0) {
5831 (void) unlink(invocation_path);
5832 u->exported_invocation_id = false;
5833 }
d3070fbd
LP
5834 }
5835
2f8c48b6
AZ
5836 if (!MANAGER_IS_SYSTEM(u->manager))
5837 return;
5838
d3070fbd
LP
5839 if (u->exported_log_level_max) {
5840 p = strjoina("/run/systemd/units/log-level-max:", u->id);
5841 (void) unlink(p);
5842
5843 u->exported_log_level_max = false;
5844 }
5845
5846 if (u->exported_log_extra_fields) {
5847 p = strjoina("/run/systemd/units/extra-fields:", u->id);
5848 (void) unlink(p);
5849
5850 u->exported_log_extra_fields = false;
5851 }
90fc172e 5852
5ac1530e 5853 if (u->exported_log_ratelimit_interval) {
90fc172e
AZ
5854 p = strjoina("/run/systemd/units/log-rate-limit-interval:", u->id);
5855 (void) unlink(p);
5856
5ac1530e 5857 u->exported_log_ratelimit_interval = false;
90fc172e
AZ
5858 }
5859
5ac1530e 5860 if (u->exported_log_ratelimit_burst) {
90fc172e
AZ
5861 p = strjoina("/run/systemd/units/log-rate-limit-burst:", u->id);
5862 (void) unlink(p);
5863
5ac1530e 5864 u->exported_log_ratelimit_burst = false;
90fc172e 5865 }
d3070fbd 5866}
5afe510c 5867
3c7416b6
LP
5868int unit_prepare_exec(Unit *u) {
5869 int r;
5870
5871 assert(u);
5872
fab34748
KL
5873 /* Load any custom firewall BPF programs here once to test if they are existing and actually loadable.
5874 * Fail here early since later errors in the call chain unit_realize_cgroup to cgroup_context_apply are ignored. */
5875 r = bpf_firewall_load_custom(u);
5876 if (r < 0)
5877 return r;
5878
3c7416b6
LP
5879 /* Prepares everything so that we can fork of a process for this unit */
5880
5881 (void) unit_realize_cgroup(u);
5882
5883 if (u->reset_accounting) {
9b2559a1 5884 (void) unit_reset_accounting(u);
3c7416b6
LP
5885 u->reset_accounting = false;
5886 }
5887
5888 unit_export_state_files(u);
5889
5890 r = unit_setup_exec_runtime(u);
5891 if (r < 0)
5892 return r;
5893
3c7416b6
LP
5894 return 0;
5895}
5896
4c425434
LP
5897static bool ignore_leftover_process(const char *comm) {
5898 return comm && comm[0] == '('; /* Most likely our own helper process (PAM?), ignore */
5899}
5900
4d1b2df1 5901int unit_log_leftover_process_start(const PidRef *pid, int sig, void *userdata) {
a4634b21
LP
5902 _cleanup_free_ char *comm = NULL;
5903
4d1b2df1
LP
5904 assert(pidref_is_set(pid));
5905
5906 (void) pidref_get_comm(pid, &comm);
a4634b21 5907
4c425434 5908 if (ignore_leftover_process(comm))
c53d2d54 5909 return 0;
a4634b21 5910
4c425434
LP
5911 /* During start we print a warning */
5912
a4634b21
LP
5913 log_unit_warning(userdata,
5914 "Found left-over process " PID_FMT " (%s) in control group while starting unit. Ignoring.\n"
5915 "This usually indicates unclean termination of a previous run, or service implementation deficiencies.",
4d1b2df1 5916 pid->pid, strna(comm));
c53d2d54
DB
5917
5918 return 1;
a4634b21
LP
5919}
5920
4d1b2df1 5921int unit_log_leftover_process_stop(const PidRef *pid, int sig, void *userdata) {
4c425434
LP
5922 _cleanup_free_ char *comm = NULL;
5923
4d1b2df1
LP
5924 assert(pidref_is_set(pid));
5925
5926 (void) pidref_get_comm(pid, &comm);
4c425434
LP
5927
5928 if (ignore_leftover_process(comm))
5929 return 0;
5930
5931 /* During stop we only print an informational message */
5932
5933 log_unit_info(userdata,
5934 "Unit process " PID_FMT " (%s) remains running after unit stopped.",
4d1b2df1 5935 pid->pid, strna(comm));
4c425434
LP
5936
5937 return 1;
5938}
5939
5940int unit_warn_leftover_processes(Unit *u, cg_kill_log_func_t log_func) {
a4634b21
LP
5941 assert(u);
5942
5943 (void) unit_pick_cgroup_path(u);
5944
5945 if (!u->cgroup_path)
c53d2d54 5946 return 0;
a4634b21 5947
bd1791b5
LP
5948 return cg_kill_recursive(
5949 u->cgroup_path,
5950 /* sig= */ 0,
5951 /* flags= */ 0,
5952 /* set= */ NULL,
5953 log_func,
5954 u);
a4634b21
LP
5955}
5956
bb2c7685
LP
5957bool unit_needs_console(Unit *u) {
5958 ExecContext *ec;
5959 UnitActiveState state;
5960
5961 assert(u);
5962
5963 state = unit_active_state(u);
5964
5965 if (UNIT_IS_INACTIVE_OR_FAILED(state))
5966 return false;
5967
5968 if (UNIT_VTABLE(u)->needs_console)
5969 return UNIT_VTABLE(u)->needs_console(u);
5970
5971 /* If this unit type doesn't implement this call, let's use a generic fallback implementation: */
5972 ec = unit_get_exec_context(u);
5973 if (!ec)
5974 return false;
5975
5976 return exec_context_may_touch_console(ec);
5977}
5978
495e75ed 5979int unit_pid_attachable(Unit *u, PidRef *pid, sd_bus_error *error) {
6592b975
LP
5980 int r;
5981
5982 assert(u);
5983
5984 /* Checks whether the specified PID is generally good for attaching, i.e. a valid PID, not our manager itself,
5985 * and not a kernel thread either */
5986
5987 /* First, a simple range check */
495e75ed
LP
5988 if (!pidref_is_set(pid))
5989 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Process identifier is not valid.");
6592b975
LP
5990
5991 /* Some extra safety check */
a7a87769 5992 if (pid->pid == 1 || pidref_is_self(pid))
495e75ed 5993 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Process " PID_FMT " is a manager process, refusing.", pid->pid);
6592b975
LP
5994
5995 /* Don't even begin to bother with kernel threads */
fc87713b 5996 r = pidref_is_kernel_thread(pid);
6592b975 5997 if (r == -ESRCH)
495e75ed 5998 return sd_bus_error_setf(error, SD_BUS_ERROR_UNIX_PROCESS_ID_UNKNOWN, "Process with ID " PID_FMT " does not exist.", pid->pid);
6592b975 5999 if (r < 0)
495e75ed 6000 return sd_bus_error_set_errnof(error, r, "Failed to determine whether process " PID_FMT " is a kernel thread: %m", pid->pid);
6592b975 6001 if (r > 0)
495e75ed 6002 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Process " PID_FMT " is a kernel thread, refusing.", pid->pid);
6592b975
LP
6003
6004 return 0;
6005}
6006
523ee2d4
LP
6007void unit_log_success(Unit *u) {
6008 assert(u);
6009
edf2ee22
JM
6010 /* Let's show message "Deactivated successfully" in debug mode (when manager is user) rather than in info mode.
6011 * This message has low information value for regular users and it might be a bit overwhelming on a system with
6012 * a lot of devices. */
6013 log_unit_struct(u,
6014 MANAGER_IS_USER(u->manager) ? LOG_DEBUG : LOG_INFO,
c2503e35
RH
6015 "MESSAGE_ID=" SD_MESSAGE_UNIT_SUCCESS_STR,
6016 LOG_UNIT_INVOCATION_ID(u),
6017 LOG_UNIT_MESSAGE(u, "Deactivated successfully."));
523ee2d4
LP
6018}
6019
7c047d74
LP
6020void unit_log_failure(Unit *u, const char *result) {
6021 assert(u);
6022 assert(result);
6023
c2503e35
RH
6024 log_unit_struct(u, LOG_WARNING,
6025 "MESSAGE_ID=" SD_MESSAGE_UNIT_FAILURE_RESULT_STR,
6026 LOG_UNIT_INVOCATION_ID(u),
6027 LOG_UNIT_MESSAGE(u, "Failed with result '%s'.", result),
6028 "UNIT_RESULT=%s", result);
7c047d74
LP
6029}
6030
31cd5f63
AZ
6031void unit_log_skip(Unit *u, const char *result) {
6032 assert(u);
6033 assert(result);
6034
c2503e35
RH
6035 log_unit_struct(u, LOG_INFO,
6036 "MESSAGE_ID=" SD_MESSAGE_UNIT_SKIPPED_STR,
6037 LOG_UNIT_INVOCATION_ID(u),
6038 LOG_UNIT_MESSAGE(u, "Skipped due to '%s'.", result),
6039 "UNIT_RESULT=%s", result);
31cd5f63
AZ
6040}
6041
91bbd9b7
LP
6042void unit_log_process_exit(
6043 Unit *u,
91bbd9b7
LP
6044 const char *kind,
6045 const char *command,
5cc2cd1c 6046 bool success,
91bbd9b7
LP
6047 int code,
6048 int status) {
6049
5cc2cd1c
ZJS
6050 int level;
6051
91bbd9b7
LP
6052 assert(u);
6053 assert(kind);
6054
5cc2cd1c
ZJS
6055 /* If this is a successful exit, let's log about the exit code on DEBUG level. If this is a failure
6056 * and the process exited on its own via exit(), then let's make this a NOTICE, under the assumption
6057 * that the service already logged the reason at a higher log level on its own. Otherwise, make it a
6058 * WARNING. */
6059 if (success)
6060 level = LOG_DEBUG;
6061 else if (code == CLD_EXITED)
6062 level = LOG_NOTICE;
6063 else
91bbd9b7
LP
6064 level = LOG_WARNING;
6065
c2503e35
RH
6066 log_unit_struct(u, level,
6067 "MESSAGE_ID=" SD_MESSAGE_UNIT_PROCESS_EXIT_STR,
58441bc1 6068 LOG_UNIT_MESSAGE(u, "%s exited, code=%s, status=%i/%s%s",
c2503e35
RH
6069 kind,
6070 sigchld_code_to_string(code), status,
6071 strna(code == CLD_EXITED
6072 ? exit_status_to_string(status, EXIT_STATUS_FULL)
58441bc1
ZJS
6073 : signal_to_string(status)),
6074 success ? " (success)" : ""),
c2503e35
RH
6075 "EXIT_CODE=%s", sigchld_code_to_string(code),
6076 "EXIT_STATUS=%i", status,
6077 "COMMAND=%s", strna(command),
6078 LOG_UNIT_INVOCATION_ID(u));
91bbd9b7
LP
6079}
6080
7af67e9a
LP
6081int unit_exit_status(Unit *u) {
6082 assert(u);
6083
6084 /* Returns the exit status to propagate for the most recent cycle of this unit. Returns a value in the range
6085 * 0…255 if there's something to propagate. EOPNOTSUPP if the concept does not apply to this unit type, ENODATA
6086 * if no data is currently known (for example because the unit hasn't deactivated yet) and EBADE if the main
6087 * service process has exited abnormally (signal/coredump). */
6088
6089 if (!UNIT_VTABLE(u)->exit_status)
6090 return -EOPNOTSUPP;
6091
6092 return UNIT_VTABLE(u)->exit_status(u);
6093}
6094
6095int unit_failure_action_exit_status(Unit *u) {
6096 int r;
6097
6098 assert(u);
6099
6100 /* Returns the exit status to propagate on failure, or an error if there's nothing to propagate */
6101
6102 if (u->failure_action_exit_status >= 0)
6103 return u->failure_action_exit_status;
6104
6105 r = unit_exit_status(u);
6106 if (r == -EBADE) /* Exited, but not cleanly (i.e. by signal or such) */
6107 return 255;
6108
6109 return r;
6110}
6111
6112int unit_success_action_exit_status(Unit *u) {
6113 int r;
6114
6115 assert(u);
6116
6117 /* Returns the exit status to propagate on success, or an error if there's nothing to propagate */
6118
6119 if (u->success_action_exit_status >= 0)
6120 return u->success_action_exit_status;
6121
6122 r = unit_exit_status(u);
6123 if (r == -EBADE) /* Exited, but not cleanly (i.e. by signal or such) */
6124 return 255;
6125
6126 return r;
6127}
6128
a4191c9f
LP
6129int unit_test_trigger_loaded(Unit *u) {
6130 Unit *trigger;
6131
6132 /* Tests whether the unit to trigger is loaded */
6133
6134 trigger = UNIT_TRIGGER(u);
6135 if (!trigger)
e7b9f4d9
ZJS
6136 return log_unit_error_errno(u, SYNTHETIC_ERRNO(ENOENT),
6137 "Refusing to start, no unit to trigger.");
a4191c9f 6138 if (trigger->load_state != UNIT_LOADED)
e7b9f4d9
ZJS
6139 return log_unit_error_errno(u, SYNTHETIC_ERRNO(ENOENT),
6140 "Refusing to start, unit %s to trigger not loaded.", trigger->id);
a4191c9f
LP
6141
6142 return 0;
6143}
6144
bb0c0d6f
LP
6145void unit_destroy_runtime_data(Unit *u, const ExecContext *context) {
6146 assert(u);
6147 assert(context);
6148
1ba84fef
LP
6149 /* EXEC_PRESERVE_RESTART is handled via unit_release_resources()! */
6150 if (context->runtime_directory_preserve_mode == EXEC_PRESERVE_NO)
95939aed 6151 exec_context_destroy_runtime_directory(context, u->manager->prefix[EXEC_DIRECTORY_RUNTIME]);
bb0c0d6f 6152
1e122561 6153 exec_context_destroy_credentials(u);
b9f976fb 6154 exec_context_destroy_mount_ns_dir(u);
95939aed
YW
6155}
6156
380dc8b0
LP
6157int unit_clean(Unit *u, ExecCleanMask mask) {
6158 UnitActiveState state;
6159
6160 assert(u);
6161
6162 /* Special return values:
6163 *
6164 * -EOPNOTSUPP → cleaning not supported for this unit type
6165 * -EUNATCH → cleaning not defined for this resource type
6166 * -EBUSY → unit currently can't be cleaned since it's running or not properly loaded, or has
6167 * a job queued or similar
6168 */
6169
6170 if (!UNIT_VTABLE(u)->clean)
6171 return -EOPNOTSUPP;
6172
6173 if (mask == 0)
6174 return -EUNATCH;
6175
6176 if (u->load_state != UNIT_LOADED)
6177 return -EBUSY;
6178
6179 if (u->job)
6180 return -EBUSY;
6181
6182 state = unit_active_state(u);
4f06325c 6183 if (state != UNIT_INACTIVE)
380dc8b0
LP
6184 return -EBUSY;
6185
6186 return UNIT_VTABLE(u)->clean(u, mask);
6187}
6188
6189int unit_can_clean(Unit *u, ExecCleanMask *ret) {
6190 assert(u);
6191
6192 if (!UNIT_VTABLE(u)->clean ||
6193 u->load_state != UNIT_LOADED) {
6194 *ret = 0;
6195 return 0;
6196 }
6197
6198 /* When the clean() method is set, can_clean() really should be set too */
6199 assert(UNIT_VTABLE(u)->can_clean);
6200
6201 return UNIT_VTABLE(u)->can_clean(u, ret);
6202}
6203
f882c102
DDM
6204bool unit_can_start_refuse_manual(Unit *u) {
6205 return unit_can_start(u) && !u->refuse_manual_start;
6206}
6207
6208bool unit_can_stop_refuse_manual(Unit *u) {
6209 return unit_can_stop(u) && !u->refuse_manual_stop;
6210}
6211
6212bool unit_can_isolate_refuse_manual(Unit *u) {
6213 return unit_can_isolate(u) && !u->refuse_manual_start;
6214}
6215
d9e45bc3
MS
6216bool unit_can_freeze(Unit *u) {
6217 assert(u);
6218
6219 if (UNIT_VTABLE(u)->can_freeze)
6220 return UNIT_VTABLE(u)->can_freeze(u);
6221
6222 return UNIT_VTABLE(u)->freeze;
6223}
6224
6225void unit_frozen(Unit *u) {
6226 assert(u);
6227
6228 u->freezer_state = FREEZER_FROZEN;
6229
3d19e122 6230 bus_unit_send_pending_freezer_message(u, false);
d9e45bc3
MS
6231}
6232
6233void unit_thawed(Unit *u) {
6234 assert(u);
6235
6236 u->freezer_state = FREEZER_RUNNING;
6237
3d19e122 6238 bus_unit_send_pending_freezer_message(u, false);
d9e45bc3
MS
6239}
6240
6241static int unit_freezer_action(Unit *u, FreezerAction action) {
6242 UnitActiveState s;
6243 int (*method)(Unit*);
6244 int r;
6245
6246 assert(u);
6247 assert(IN_SET(action, FREEZER_FREEZE, FREEZER_THAW));
6248
6249 method = action == FREEZER_FREEZE ? UNIT_VTABLE(u)->freeze : UNIT_VTABLE(u)->thaw;
6250 if (!method || !cg_freezer_supported())
6251 return -EOPNOTSUPP;
6252
6253 if (u->job)
6254 return -EBUSY;
6255
6256 if (u->load_state != UNIT_LOADED)
6257 return -EHOSTDOWN;
6258
6259 s = unit_active_state(u);
6260 if (s != UNIT_ACTIVE)
6261 return -EHOSTDOWN;
6262
3d19e122 6263 if ((IN_SET(u->freezer_state, FREEZER_FREEZING, FREEZER_THAWING) && action == FREEZER_FREEZE) ||
6264 (u->freezer_state == FREEZER_THAWING && action == FREEZER_THAW))
d9e45bc3
MS
6265 return -EALREADY;
6266
6267 r = method(u);
6268 if (r <= 0)
6269 return r;
6270
d171e72e
YW
6271 assert(IN_SET(u->freezer_state, FREEZER_FREEZING, FREEZER_THAWING));
6272
d9e45bc3
MS
6273 return 1;
6274}
6275
6276int unit_freeze(Unit *u) {
6277 return unit_freezer_action(u, FREEZER_FREEZE);
6278}
6279
6280int unit_thaw(Unit *u) {
6281 return unit_freezer_action(u, FREEZER_THAW);
6282}
6283
6284/* Wrappers around low-level cgroup freezer operations common for service and scope units */
6285int unit_freeze_vtable_common(Unit *u) {
6286 return unit_cgroup_freezer_action(u, FREEZER_FREEZE);
6287}
6288
6289int unit_thaw_vtable_common(Unit *u) {
6290 return unit_cgroup_freezer_action(u, FREEZER_THAW);
6291}
6292
6e548561 6293Condition *unit_find_failed_condition(Unit *u) {
03677889 6294 Condition *failed_trigger = NULL;
6e548561
DDM
6295 bool has_succeeded_trigger = false;
6296
6297 if (u->condition_result)
6298 return NULL;
6299
6300 LIST_FOREACH(conditions, c, u->conditions)
6301 if (c->trigger) {
6302 if (c->result == CONDITION_SUCCEEDED)
6303 has_succeeded_trigger = true;
6304 else if (!failed_trigger)
6305 failed_trigger = c;
6306 } else if (c->result != CONDITION_SUCCEEDED)
6307 return c;
6308
6309 return failed_trigger && !has_succeeded_trigger ? failed_trigger : NULL;
6310}
6311
5afe510c
LP
6312static const char* const collect_mode_table[_COLLECT_MODE_MAX] = {
6313 [COLLECT_INACTIVE] = "inactive",
6314 [COLLECT_INACTIVE_OR_FAILED] = "inactive-or-failed",
6315};
6316
6317DEFINE_STRING_TABLE_LOOKUP(collect_mode, CollectMode);
15ed3c3a
LP
6318
6319Unit* unit_has_dependency(const Unit *u, UnitDependencyAtom atom, Unit *other) {
6320 Unit *i;
6321
6322 assert(u);
6323
6324 /* Checks if the unit has a dependency on 'other' with the specified dependency atom. If 'other' is
6325 * NULL checks if the unit has *any* dependency of that atom. Returns 'other' if found (or if 'other'
6326 * is NULL the first entry found), or NULL if not found. */
6327
6328 UNIT_FOREACH_DEPENDENCY(i, u, atom)
6329 if (!other || other == i)
6330 return i;
6331
6332 return NULL;
6333}
6334
6335int unit_get_dependency_array(const Unit *u, UnitDependencyAtom atom, Unit ***ret_array) {
6336 _cleanup_free_ Unit **array = NULL;
6337 size_t n = 0;
6338 Unit *other;
6339
6340 assert(u);
6341 assert(ret_array);
6342
6343 /* Gets a list of units matching a specific atom as array. This is useful when iterating through
6344 * dependencies while modifying them: the array is an "atomic snapshot" of sorts, that can be read
48008c1c 6345 * while the dependency table is continuously updated. */
15ed3c3a
LP
6346
6347 UNIT_FOREACH_DEPENDENCY(other, u, atom) {
6348 if (!GREEDY_REALLOC(array, n + 1))
6349 return -ENOMEM;
6350
6351 array[n++] = other;
6352 }
6353
6354 *ret_array = TAKE_PTR(array);
6355
6356 assert(n <= INT_MAX);
6357 return (int) n;
6358}
48b92b37 6359
83123a44
YW
6360int unit_get_transitive_dependency_set(Unit *u, UnitDependencyAtom atom, Set **ret) {
6361 _cleanup_set_free_ Set *units = NULL, *queue = NULL;
6362 Unit *other;
6363 int r;
6364
6365 assert(u);
6366 assert(ret);
6367
6368 /* Similar to unit_get_dependency_array(), but also search the same dependency in other units. */
6369
6370 do {
6371 UNIT_FOREACH_DEPENDENCY(other, u, atom) {
6372 r = set_ensure_put(&units, NULL, other);
6373 if (r < 0)
6374 return r;
6375 if (r == 0)
6376 continue;
6377 r = set_ensure_put(&queue, NULL, other);
6378 if (r < 0)
6379 return r;
6380 }
6381 } while ((u = set_steal_first(queue)));
6382
6383 *ret = TAKE_PTR(units);
6384 return 0;
6385}
6386
e9276800
LP
6387int unit_arm_timer(
6388 Unit *u,
6389 sd_event_source **source,
6390 bool relative,
6391 usec_t usec,
6392 sd_event_time_handler_t handler) {
6393
6394 int r;
6395
6396 assert(u);
6397 assert(source);
6398 assert(handler);
6399
6400 if (*source) {
6401 if (usec == USEC_INFINITY)
6402 return sd_event_source_set_enabled(*source, SD_EVENT_OFF);
6403
6404 r = (relative ? sd_event_source_set_time_relative : sd_event_source_set_time)(*source, usec);
6405 if (r < 0)
6406 return r;
6407
6408 return sd_event_source_set_enabled(*source, SD_EVENT_ONESHOT);
6409 }
6410
6411 if (usec == USEC_INFINITY)
6412 return 0;
6413
6414 r = (relative ? sd_event_add_time_relative : sd_event_add_time)(
6415 u->manager->event,
6416 source,
6417 CLOCK_MONOTONIC,
6418 usec, 0,
6419 handler,
6420 u);
6421 if (r < 0)
6422 return r;
6423
6424 const char *d = strjoina(unit_type_to_string(u->type), "-timer");
6425 (void) sd_event_source_set_description(*source, d);
6426
6427 return 0;
6428}
6429
a8157796
LP
6430static int unit_get_nice(Unit *u) {
6431 ExecContext *ec;
6432
6433 ec = unit_get_exec_context(u);
6434 return ec ? ec->nice : 0;
6435}
6436
6437static uint64_t unit_get_cpu_weight(Unit *u) {
6438 CGroupContext *cc;
6439
6440 cc = unit_get_cgroup_context(u);
6441 return cc ? cgroup_context_cpu_weight(cc, manager_state(u->manager)) : CGROUP_WEIGHT_DEFAULT;
6442}
6443
6444int unit_compare_priority(Unit *a, Unit *b) {
6445 int ret;
6446
6447 ret = CMP(a->type, b->type);
6448 if (ret != 0)
6449 return -ret;
6450
6451 ret = CMP(unit_get_cpu_weight(a), unit_get_cpu_weight(b));
6452 if (ret != 0)
6453 return -ret;
6454
6455 ret = CMP(unit_get_nice(a), unit_get_nice(b));
6456 if (ret != 0)
6457 return ret;
6458
6459 return strcmp(a->id, b->id);
6460}
6461
48b92b37 6462const ActivationDetailsVTable * const activation_details_vtable[_UNIT_TYPE_MAX] = {
4c420328 6463 [UNIT_PATH] = &activation_details_path_vtable,
c8bc7519 6464 [UNIT_TIMER] = &activation_details_timer_vtable,
48b92b37
LB
6465};
6466
6467ActivationDetails *activation_details_new(Unit *trigger_unit) {
6468 _cleanup_free_ ActivationDetails *details = NULL;
6469
6470 assert(trigger_unit);
6471 assert(trigger_unit->type != _UNIT_TYPE_INVALID);
6472 assert(trigger_unit->id);
6473
6474 details = malloc0(activation_details_vtable[trigger_unit->type]->object_size);
6475 if (!details)
6476 return NULL;
6477
6478 *details = (ActivationDetails) {
6479 .n_ref = 1,
6480 .trigger_unit_type = trigger_unit->type,
6481 };
6482
6483 details->trigger_unit_name = strdup(trigger_unit->id);
6484 if (!details->trigger_unit_name)
6485 return NULL;
6486
6487 if (ACTIVATION_DETAILS_VTABLE(details)->init)
6488 ACTIVATION_DETAILS_VTABLE(details)->init(details, trigger_unit);
6489
6490 return TAKE_PTR(details);
6491}
6492
6493static ActivationDetails *activation_details_free(ActivationDetails *details) {
6494 if (!details)
6495 return NULL;
6496
6497 if (ACTIVATION_DETAILS_VTABLE(details)->done)
6498 ACTIVATION_DETAILS_VTABLE(details)->done(details);
6499
6500 free(details->trigger_unit_name);
6501
6502 return mfree(details);
6503}
6504
6505void activation_details_serialize(ActivationDetails *details, FILE *f) {
6506 if (!details || details->trigger_unit_type == _UNIT_TYPE_INVALID)
6507 return;
6508
6509 (void) serialize_item(f, "activation-details-unit-type", unit_type_to_string(details->trigger_unit_type));
6510 if (details->trigger_unit_name)
6511 (void) serialize_item(f, "activation-details-unit-name", details->trigger_unit_name);
6512 if (ACTIVATION_DETAILS_VTABLE(details)->serialize)
6513 ACTIVATION_DETAILS_VTABLE(details)->serialize(details, f);
6514}
6515
6516int activation_details_deserialize(const char *key, const char *value, ActivationDetails **details) {
e8dba806
FS
6517 int r;
6518
48b92b37
LB
6519 assert(key);
6520 assert(value);
6521 assert(details);
6522
6523 if (!*details) {
6524 UnitType t;
6525
6526 if (!streq(key, "activation-details-unit-type"))
6527 return -EINVAL;
6528
6529 t = unit_type_from_string(value);
210cb8d6
YW
6530 if (t < 0)
6531 return t;
6532
6533 /* The activation details vtable has defined ops only for path and timer units */
6534 if (!activation_details_vtable[t])
48b92b37
LB
6535 return -EINVAL;
6536
6537 *details = malloc0(activation_details_vtable[t]->object_size);
6538 if (!*details)
6539 return -ENOMEM;
6540
6541 **details = (ActivationDetails) {
6542 .n_ref = 1,
6543 .trigger_unit_type = t,
6544 };
6545
6546 return 0;
6547 }
6548
6549 if (streq(key, "activation-details-unit-name")) {
e8dba806
FS
6550 r = free_and_strdup(&(*details)->trigger_unit_name, value);
6551 if (r < 0)
6552 return r;
48b92b37
LB
6553
6554 return 0;
6555 }
6556
6557 if (ACTIVATION_DETAILS_VTABLE(*details)->deserialize)
6558 return ACTIVATION_DETAILS_VTABLE(*details)->deserialize(key, value, details);
6559
6560 return -EINVAL;
6561}
6562
6563int activation_details_append_env(ActivationDetails *details, char ***strv) {
6564 int r = 0;
6565
6566 assert(strv);
6567
6568 if (!details)
6569 return 0;
6570
6571 if (!isempty(details->trigger_unit_name)) {
6572 char *s = strjoin("TRIGGER_UNIT=", details->trigger_unit_name);
6573 if (!s)
6574 return -ENOMEM;
6575
6576 r = strv_consume(strv, TAKE_PTR(s));
6577 if (r < 0)
6578 return r;
6579 }
6580
6581 if (ACTIVATION_DETAILS_VTABLE(details)->append_env) {
6582 r = ACTIVATION_DETAILS_VTABLE(details)->append_env(details, strv);
6583 if (r < 0)
6584 return r;
6585 }
6586
6587 return r + !isempty(details->trigger_unit_name); /* Return the number of variables added to the env block */
6588}
6589
6590int activation_details_append_pair(ActivationDetails *details, char ***strv) {
6591 int r = 0;
6592
6593 assert(strv);
6594
6595 if (!details)
6596 return 0;
6597
6598 if (!isempty(details->trigger_unit_name)) {
6599 r = strv_extend(strv, "trigger_unit");
6600 if (r < 0)
6601 return r;
6602
6603 r = strv_extend(strv, details->trigger_unit_name);
6604 if (r < 0)
6605 return r;
6606 }
6607
6608 if (ACTIVATION_DETAILS_VTABLE(details)->append_env) {
6609 r = ACTIVATION_DETAILS_VTABLE(details)->append_pair(details, strv);
6610 if (r < 0)
6611 return r;
6612 }
6613
6614 return r + !isempty(details->trigger_unit_name); /* Return the number of pairs added to the strv */
6615}
6616
6617DEFINE_TRIVIAL_REF_UNREF_FUNC(ActivationDetails, activation_details, activation_details_free);