]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/unit-serialize.c
pid1: add SurviveFinalKillSignal= to skip units on final sigterm/sigkill spree
[thirdparty/systemd.git] / src / core / unit-serialize.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include "bpf-socket-bind.h"
4 #include "bus-util.h"
5 #include "dbus.h"
6 #include "fileio-label.h"
7 #include "fileio.h"
8 #include "format-util.h"
9 #include "parse-util.h"
10 #include "restrict-ifaces.h"
11 #include "serialize.h"
12 #include "string-table.h"
13 #include "unit-serialize.h"
14 #include "user-util.h"
15
16 static int serialize_cgroup_mask(FILE *f, const char *key, CGroupMask mask) {
17 _cleanup_free_ char *s = NULL;
18 int r;
19
20 assert(f);
21 assert(key);
22
23 if (mask == 0)
24 return 0;
25
26 r = cg_mask_to_string(mask, &s);
27 if (r < 0)
28 return log_error_errno(r, "Failed to format cgroup mask: %m");
29
30 return serialize_item(f, key, s);
31 }
32
33 /* Make sure out values fit in the bitfield. */
34 assert_cc(_UNIT_MARKER_MAX <= sizeof(((Unit){}).markers) * 8);
35
36 static int serialize_markers(FILE *f, unsigned markers) {
37 assert(f);
38
39 if (markers == 0)
40 return 0;
41
42 fputs("markers=", f);
43 for (UnitMarker m = 0; m < _UNIT_MARKER_MAX; m++)
44 if (FLAGS_SET(markers, 1u << m))
45 fputs(unit_marker_to_string(m), f);
46 fputc('\n', f);
47 return 0;
48 }
49
50 static int deserialize_markers(Unit *u, const char *value) {
51 assert(u);
52 assert(value);
53 int r;
54
55 for (const char *p = value;;) {
56 _cleanup_free_ char *word = NULL;
57
58 r = extract_first_word(&p, &word, NULL, 0);
59 if (r <= 0)
60 return r;
61
62 UnitMarker m = unit_marker_from_string(word);
63 if (m < 0) {
64 log_unit_debug_errno(u, m, "Unknown unit marker \"%s\", ignoring.", word);
65 continue;
66 }
67
68 u->markers |= 1u << m;
69 }
70 }
71
72 static const char *const ip_accounting_metric_field[_CGROUP_IP_ACCOUNTING_METRIC_MAX] = {
73 [CGROUP_IP_INGRESS_BYTES] = "ip-accounting-ingress-bytes",
74 [CGROUP_IP_INGRESS_PACKETS] = "ip-accounting-ingress-packets",
75 [CGROUP_IP_EGRESS_BYTES] = "ip-accounting-egress-bytes",
76 [CGROUP_IP_EGRESS_PACKETS] = "ip-accounting-egress-packets",
77 };
78
79 static const char *const io_accounting_metric_field_base[_CGROUP_IO_ACCOUNTING_METRIC_MAX] = {
80 [CGROUP_IO_READ_BYTES] = "io-accounting-read-bytes-base",
81 [CGROUP_IO_WRITE_BYTES] = "io-accounting-write-bytes-base",
82 [CGROUP_IO_READ_OPERATIONS] = "io-accounting-read-operations-base",
83 [CGROUP_IO_WRITE_OPERATIONS] = "io-accounting-write-operations-base",
84 };
85
86 static const char *const io_accounting_metric_field_last[_CGROUP_IO_ACCOUNTING_METRIC_MAX] = {
87 [CGROUP_IO_READ_BYTES] = "io-accounting-read-bytes-last",
88 [CGROUP_IO_WRITE_BYTES] = "io-accounting-write-bytes-last",
89 [CGROUP_IO_READ_OPERATIONS] = "io-accounting-read-operations-last",
90 [CGROUP_IO_WRITE_OPERATIONS] = "io-accounting-write-operations-last",
91 };
92
93 int unit_serialize(Unit *u, FILE *f, FDSet *fds, bool switching_root) {
94 int r;
95
96 assert(u);
97 assert(f);
98 assert(fds);
99
100 if (switching_root && UNIT_VTABLE(u)->exclude_from_switch_root_serialization) {
101 /* In the new root, paths for mounts and automounts will be different, so it doesn't make
102 * much sense to serialize things. API file systems will be moved to the new root, but we
103 * don't have mount units for those. */
104 log_unit_debug(u, "not serializing before switch-root");
105 return 0;
106 }
107
108 /* Start marker */
109 fputs(u->id, f);
110 fputc('\n', f);
111
112 assert(!!UNIT_VTABLE(u)->serialize == !!UNIT_VTABLE(u)->deserialize_item);
113
114 if (UNIT_VTABLE(u)->serialize) {
115 r = UNIT_VTABLE(u)->serialize(u, f, fds);
116 if (r < 0)
117 return r;
118 }
119
120 (void) serialize_dual_timestamp(f, "state-change-timestamp", &u->state_change_timestamp);
121
122 (void) serialize_dual_timestamp(f, "inactive-exit-timestamp", &u->inactive_exit_timestamp);
123 (void) serialize_dual_timestamp(f, "active-enter-timestamp", &u->active_enter_timestamp);
124 (void) serialize_dual_timestamp(f, "active-exit-timestamp", &u->active_exit_timestamp);
125 (void) serialize_dual_timestamp(f, "inactive-enter-timestamp", &u->inactive_enter_timestamp);
126
127 (void) serialize_dual_timestamp(f, "condition-timestamp", &u->condition_timestamp);
128 (void) serialize_dual_timestamp(f, "assert-timestamp", &u->assert_timestamp);
129
130 if (dual_timestamp_is_set(&u->condition_timestamp))
131 (void) serialize_bool(f, "condition-result", u->condition_result);
132
133 if (dual_timestamp_is_set(&u->assert_timestamp))
134 (void) serialize_bool(f, "assert-result", u->assert_result);
135
136 (void) serialize_bool(f, "transient", u->transient);
137 (void) serialize_bool(f, "in-audit", u->in_audit);
138
139 (void) serialize_bool(f, "exported-invocation-id", u->exported_invocation_id);
140 (void) serialize_bool(f, "exported-log-level-max", u->exported_log_level_max);
141 (void) serialize_bool(f, "exported-log-extra-fields", u->exported_log_extra_fields);
142 (void) serialize_bool(f, "exported-log-rate-limit-interval", u->exported_log_ratelimit_interval);
143 (void) serialize_bool(f, "exported-log-rate-limit-burst", u->exported_log_ratelimit_burst);
144
145 (void) serialize_item_format(f, "cpu-usage-base", "%" PRIu64, u->cpu_usage_base);
146 if (u->cpu_usage_last != NSEC_INFINITY)
147 (void) serialize_item_format(f, "cpu-usage-last", "%" PRIu64, u->cpu_usage_last);
148
149 if (u->managed_oom_kill_last > 0)
150 (void) serialize_item_format(f, "managed-oom-kill-last", "%" PRIu64, u->managed_oom_kill_last);
151
152 if (u->oom_kill_last > 0)
153 (void) serialize_item_format(f, "oom-kill-last", "%" PRIu64, u->oom_kill_last);
154
155 for (CGroupIOAccountingMetric im = 0; im < _CGROUP_IO_ACCOUNTING_METRIC_MAX; im++) {
156 (void) serialize_item_format(f, io_accounting_metric_field_base[im], "%" PRIu64, u->io_accounting_base[im]);
157
158 if (u->io_accounting_last[im] != UINT64_MAX)
159 (void) serialize_item_format(f, io_accounting_metric_field_last[im], "%" PRIu64, u->io_accounting_last[im]);
160 }
161
162 if (u->cgroup_path)
163 (void) serialize_item(f, "cgroup", u->cgroup_path);
164
165 (void) serialize_bool(f, "cgroup-realized", u->cgroup_realized);
166 (void) serialize_cgroup_mask(f, "cgroup-realized-mask", u->cgroup_realized_mask);
167 (void) serialize_cgroup_mask(f, "cgroup-enabled-mask", u->cgroup_enabled_mask);
168 (void) serialize_cgroup_mask(f, "cgroup-invalidated-mask", u->cgroup_invalidated_mask);
169
170 (void) bpf_serialize_socket_bind(u, f, fds);
171
172 (void) bpf_program_serialize_attachment(f, fds, "ip-bpf-ingress-installed", u->ip_bpf_ingress_installed);
173 (void) bpf_program_serialize_attachment(f, fds, "ip-bpf-egress-installed", u->ip_bpf_egress_installed);
174 (void) bpf_program_serialize_attachment(f, fds, "bpf-device-control-installed", u->bpf_device_control_installed);
175 (void) bpf_program_serialize_attachment_set(f, fds, "ip-bpf-custom-ingress-installed", u->ip_bpf_custom_ingress_installed);
176 (void) bpf_program_serialize_attachment_set(f, fds, "ip-bpf-custom-egress-installed", u->ip_bpf_custom_egress_installed);
177
178 (void) serialize_restrict_network_interfaces(u, f, fds);
179
180 if (uid_is_valid(u->ref_uid))
181 (void) serialize_item_format(f, "ref-uid", UID_FMT, u->ref_uid);
182 if (gid_is_valid(u->ref_gid))
183 (void) serialize_item_format(f, "ref-gid", GID_FMT, u->ref_gid);
184
185 if (!sd_id128_is_null(u->invocation_id))
186 (void) serialize_item_format(f, "invocation-id", SD_ID128_FORMAT_STR, SD_ID128_FORMAT_VAL(u->invocation_id));
187
188 (void) serialize_item_format(f, "freezer-state", "%s", freezer_state_to_string(unit_freezer_state(u)));
189 (void) serialize_markers(f, u->markers);
190
191 bus_track_serialize(u->bus_track, f, "ref");
192
193 for (CGroupIPAccountingMetric m = 0; m < _CGROUP_IP_ACCOUNTING_METRIC_MAX; m++) {
194 uint64_t v;
195
196 r = unit_get_ip_accounting(u, m, &v);
197 if (r >= 0)
198 (void) serialize_item_format(f, ip_accounting_metric_field[m], "%" PRIu64, v);
199 }
200
201 if (!switching_root) {
202 if (u->job) {
203 fputs("job\n", f);
204 job_serialize(u->job, f);
205 }
206
207 if (u->nop_job) {
208 fputs("job\n", f);
209 job_serialize(u->nop_job, f);
210 }
211 }
212
213 /* End marker */
214 fputc('\n', f);
215 return 0;
216 }
217
218 static int unit_deserialize_job(Unit *u, FILE *f) {
219 _cleanup_(job_freep) Job *j = NULL;
220 int r;
221
222 assert(u);
223 assert(f);
224
225 j = job_new_raw(u);
226 if (!j)
227 return log_oom();
228
229 r = job_deserialize(j, f);
230 if (r < 0)
231 return r;
232
233 r = job_install_deserialized(j);
234 if (r < 0)
235 return r;
236
237 TAKE_PTR(j);
238 return 0;
239 }
240
241 #define MATCH_DESERIALIZE(key, l, v, parse_func, target) \
242 ({ \
243 bool _deserialize_matched = streq(l, key); \
244 if (_deserialize_matched) { \
245 int _deserialize_r = parse_func(v); \
246 if (_deserialize_r < 0) \
247 log_unit_debug_errno(u, _deserialize_r, \
248 "Failed to parse \"%s=%s\", ignoring.", l, v); \
249 else \
250 target = _deserialize_r; \
251 }; \
252 _deserialize_matched; \
253 })
254
255 #define MATCH_DESERIALIZE_IMMEDIATE(key, l, v, parse_func, target) \
256 ({ \
257 bool _deserialize_matched = streq(l, key); \
258 if (_deserialize_matched) { \
259 int _deserialize_r = parse_func(v, &target); \
260 if (_deserialize_r < 0) \
261 log_unit_debug_errno(u, _deserialize_r, \
262 "Failed to parse \"%s=%s\", ignoring", l, v); \
263 }; \
264 _deserialize_matched; \
265 })
266
267 int unit_deserialize(Unit *u, FILE *f, FDSet *fds) {
268 int r;
269
270 assert(u);
271 assert(f);
272 assert(fds);
273
274 for (;;) {
275 _cleanup_free_ char *l = NULL;
276 ssize_t m;
277 size_t k;
278 char *v;
279
280 r = deserialize_read_line(f, &l);
281 if (r < 0)
282 return r;
283 if (r == 0) /* eof or end marker */
284 break;
285
286 k = strcspn(l, "=");
287
288 if (l[k] == '=') {
289 l[k] = 0;
290 v = l+k+1;
291 } else
292 v = l+k;
293
294 if (streq(l, "job")) {
295 if (v[0] == '\0') {
296 /* New-style serialized job */
297 r = unit_deserialize_job(u, f);
298 if (r < 0)
299 return r;
300 } else /* Legacy for pre-44 */
301 log_unit_warning(u, "Update from too old systemd versions are unsupported, cannot deserialize job: %s", v);
302 continue;
303 } else if (streq(l, "state-change-timestamp")) {
304 (void) deserialize_dual_timestamp(v, &u->state_change_timestamp);
305 continue;
306 } else if (streq(l, "inactive-exit-timestamp")) {
307 (void) deserialize_dual_timestamp(v, &u->inactive_exit_timestamp);
308 continue;
309 } else if (streq(l, "active-enter-timestamp")) {
310 (void) deserialize_dual_timestamp(v, &u->active_enter_timestamp);
311 continue;
312 } else if (streq(l, "active-exit-timestamp")) {
313 (void) deserialize_dual_timestamp(v, &u->active_exit_timestamp);
314 continue;
315 } else if (streq(l, "inactive-enter-timestamp")) {
316 (void) deserialize_dual_timestamp(v, &u->inactive_enter_timestamp);
317 continue;
318 } else if (streq(l, "condition-timestamp")) {
319 (void) deserialize_dual_timestamp(v, &u->condition_timestamp);
320 continue;
321 } else if (streq(l, "assert-timestamp")) {
322 (void) deserialize_dual_timestamp(v, &u->assert_timestamp);
323 continue;
324
325 } else if (MATCH_DESERIALIZE("condition-result", l, v, parse_boolean, u->condition_result))
326 continue;
327
328 else if (MATCH_DESERIALIZE("assert-result", l, v, parse_boolean, u->assert_result))
329 continue;
330
331 else if (MATCH_DESERIALIZE("transient", l, v, parse_boolean, u->transient))
332 continue;
333
334 else if (MATCH_DESERIALIZE("in-audit", l, v, parse_boolean, u->in_audit))
335 continue;
336
337 else if (MATCH_DESERIALIZE("exported-invocation-id", l, v, parse_boolean, u->exported_invocation_id))
338 continue;
339
340 else if (MATCH_DESERIALIZE("exported-log-level-max", l, v, parse_boolean, u->exported_log_level_max))
341 continue;
342
343 else if (MATCH_DESERIALIZE("exported-log-extra-fields", l, v, parse_boolean, u->exported_log_extra_fields))
344 continue;
345
346 else if (MATCH_DESERIALIZE("exported-log-rate-limit-interval", l, v, parse_boolean, u->exported_log_ratelimit_interval))
347 continue;
348
349 else if (MATCH_DESERIALIZE("exported-log-rate-limit-burst", l, v, parse_boolean, u->exported_log_ratelimit_burst))
350 continue;
351
352 else if (MATCH_DESERIALIZE_IMMEDIATE("cpu-usage-base", l, v, safe_atou64, u->cpu_usage_base) ||
353 MATCH_DESERIALIZE_IMMEDIATE("cpuacct-usage-base", l, v, safe_atou64, u->cpu_usage_base))
354 continue;
355
356 else if (MATCH_DESERIALIZE_IMMEDIATE("cpu-usage-last", l, v, safe_atou64, u->cpu_usage_last))
357 continue;
358
359 else if (MATCH_DESERIALIZE_IMMEDIATE("managed-oom-kill-last", l, v, safe_atou64, u->managed_oom_kill_last))
360 continue;
361
362 else if (MATCH_DESERIALIZE_IMMEDIATE("oom-kill-last", l, v, safe_atou64, u->oom_kill_last))
363 continue;
364
365 else if (streq(l, "cgroup")) {
366 r = unit_set_cgroup_path(u, v);
367 if (r < 0)
368 log_unit_debug_errno(u, r, "Failed to set cgroup path %s, ignoring: %m", v);
369
370 (void) unit_watch_cgroup(u);
371 (void) unit_watch_cgroup_memory(u);
372
373 continue;
374
375 } else if (MATCH_DESERIALIZE("cgroup-realized", l, v, parse_boolean, u->cgroup_realized))
376 continue;
377
378 else if (MATCH_DESERIALIZE_IMMEDIATE("cgroup-realized-mask", l, v, cg_mask_from_string, u->cgroup_realized_mask))
379 continue;
380
381 else if (MATCH_DESERIALIZE_IMMEDIATE("cgroup-enabled-mask", l, v, cg_mask_from_string, u->cgroup_enabled_mask))
382 continue;
383
384 else if (MATCH_DESERIALIZE_IMMEDIATE("cgroup-invalidated-mask", l, v, cg_mask_from_string, u->cgroup_invalidated_mask))
385 continue;
386
387 else if (STR_IN_SET(l, "ipv4-socket-bind-bpf-link-fd", "ipv6-socket-bind-bpf-link-fd")) {
388 int fd;
389
390 if ((fd = parse_fd(v)) < 0 || !fdset_contains(fds, fd))
391 log_unit_debug(u, "Failed to parse %s value: %s, ignoring.", l, v);
392 else {
393 if (fdset_remove(fds, fd) < 0) {
394 log_unit_debug(u, "Failed to remove %s value=%d from fdset", l, fd);
395 continue;
396 }
397
398 (void) bpf_socket_bind_add_initial_link_fd(u, fd);
399 }
400 continue;
401
402 } else if (streq(l, "ip-bpf-ingress-installed")) {
403 (void) bpf_program_deserialize_attachment(v, fds, &u->ip_bpf_ingress_installed);
404 continue;
405 } else if (streq(l, "ip-bpf-egress-installed")) {
406 (void) bpf_program_deserialize_attachment(v, fds, &u->ip_bpf_egress_installed);
407 continue;
408 } else if (streq(l, "bpf-device-control-installed")) {
409 (void) bpf_program_deserialize_attachment(v, fds, &u->bpf_device_control_installed);
410 continue;
411
412 } else if (streq(l, "ip-bpf-custom-ingress-installed")) {
413 (void) bpf_program_deserialize_attachment_set(v, fds, &u->ip_bpf_custom_ingress_installed);
414 continue;
415 } else if (streq(l, "ip-bpf-custom-egress-installed")) {
416 (void) bpf_program_deserialize_attachment_set(v, fds, &u->ip_bpf_custom_egress_installed);
417 continue;
418
419 } else if (streq(l, "restrict-ifaces-bpf-fd")) {
420 int fd;
421
422 if ((fd = parse_fd(v)) < 0 || !fdset_contains(fds, fd)) {
423 log_unit_debug(u, "Failed to parse restrict-ifaces-bpf-fd value: %s", v);
424 continue;
425 }
426 if (fdset_remove(fds, fd) < 0) {
427 log_unit_debug(u, "Failed to remove restrict-ifaces-bpf-fd %d from fdset", fd);
428 continue;
429 }
430
431 (void) restrict_network_interfaces_add_initial_link_fd(u, fd);
432 continue;
433
434 } else if (streq(l, "ref-uid")) {
435 uid_t uid;
436
437 r = parse_uid(v, &uid);
438 if (r < 0)
439 log_unit_debug(u, "Failed to parse \"%s=%s\", ignoring.", l, v);
440 else
441 unit_ref_uid_gid(u, uid, GID_INVALID);
442 continue;
443
444 } else if (streq(l, "ref-gid")) {
445 gid_t gid;
446
447 r = parse_gid(v, &gid);
448 if (r < 0)
449 log_unit_debug(u, "Failed to parse \"%s=%s\", ignoring.", l, v);
450 else
451 unit_ref_uid_gid(u, UID_INVALID, gid);
452 continue;
453
454 } else if (streq(l, "ref")) {
455 r = strv_extend(&u->deserialized_refs, v);
456 if (r < 0)
457 return log_oom();
458 continue;
459
460 } else if (streq(l, "invocation-id")) {
461 sd_id128_t id;
462
463 r = sd_id128_from_string(v, &id);
464 if (r < 0)
465 log_unit_debug(u, "Failed to parse \"%s=%s\", ignoring.", l, v);
466 else {
467 r = unit_set_invocation_id(u, id);
468 if (r < 0)
469 log_unit_warning_errno(u, r, "Failed to set invocation ID for unit: %m");
470 }
471
472 continue;
473
474 } else if (MATCH_DESERIALIZE("freezer-state", l, v, freezer_state_from_string, u->freezer_state))
475 continue;
476
477 else if (streq(l, "markers")) {
478 r = deserialize_markers(u, v);
479 if (r < 0)
480 log_unit_debug_errno(u, r, "Failed to deserialize \"%s=%s\", ignoring: %m", l, v);
481 continue;
482 }
483
484 /* Check if this is an IP accounting metric serialization field */
485 m = string_table_lookup(ip_accounting_metric_field, ELEMENTSOF(ip_accounting_metric_field), l);
486 if (m >= 0) {
487 uint64_t c;
488
489 r = safe_atou64(v, &c);
490 if (r < 0)
491 log_unit_debug(u, "Failed to parse IP accounting value %s, ignoring.", v);
492 else
493 u->ip_accounting_extra[m] = c;
494 continue;
495 }
496
497 m = string_table_lookup(io_accounting_metric_field_base, ELEMENTSOF(io_accounting_metric_field_base), l);
498 if (m >= 0) {
499 uint64_t c;
500
501 r = safe_atou64(v, &c);
502 if (r < 0)
503 log_unit_debug(u, "Failed to parse IO accounting base value %s, ignoring.", v);
504 else
505 u->io_accounting_base[m] = c;
506 continue;
507 }
508
509 m = string_table_lookup(io_accounting_metric_field_last, ELEMENTSOF(io_accounting_metric_field_last), l);
510 if (m >= 0) {
511 uint64_t c;
512
513 r = safe_atou64(v, &c);
514 if (r < 0)
515 log_unit_debug(u, "Failed to parse IO accounting last value %s, ignoring.", v);
516 else
517 u->io_accounting_last[m] = c;
518 continue;
519 }
520
521 r = exec_shared_runtime_deserialize_compat(u, l, v, fds);
522 if (r < 0) {
523 log_unit_warning(u, "Failed to deserialize runtime parameter '%s', ignoring.", l);
524 continue;
525 } else if (r > 0)
526 /* Returns positive if key was handled by the call */
527 continue;
528
529 if (UNIT_VTABLE(u)->deserialize_item) {
530 r = UNIT_VTABLE(u)->deserialize_item(u, l, v, fds);
531 if (r < 0)
532 log_unit_warning(u, "Failed to deserialize unit parameter '%s', ignoring.", l);
533 }
534 }
535
536 /* Versions before 228 did not carry a state change timestamp. In this case, take the current
537 * time. This is useful, so that timeouts based on this timestamp don't trigger too early, and is
538 * in-line with the logic from before 228 where the base for timeouts was not persistent across
539 * reboots. */
540
541 if (!dual_timestamp_is_set(&u->state_change_timestamp))
542 dual_timestamp_get(&u->state_change_timestamp);
543
544 /* Let's make sure that everything that is deserialized also gets any potential new cgroup settings
545 * applied after we are done. For that we invalidate anything already realized, so that we can
546 * realize it again. */
547 if (u->cgroup_realized) {
548 unit_invalidate_cgroup(u, _CGROUP_MASK_ALL);
549 unit_invalidate_cgroup_bpf(u);
550 }
551
552 return 0;
553 }
554
555 int unit_deserialize_skip(FILE *f) {
556 int r;
557 assert(f);
558
559 /* Skip serialized data for this unit. We don't know what it is. */
560
561 for (;;) {
562 _cleanup_free_ char *line = NULL;
563 char *l;
564
565 r = read_line(f, LONG_LINE_MAX, &line);
566 if (r < 0)
567 return log_error_errno(r, "Failed to read serialization line: %m");
568 if (r == 0)
569 return 0;
570
571 l = strstrip(line);
572
573 /* End marker */
574 if (isempty(l))
575 return 1;
576 }
577 }
578
579 static void print_unit_dependency_mask(FILE *f, const char *kind, UnitDependencyMask mask, bool *space) {
580 const struct {
581 UnitDependencyMask mask;
582 const char *name;
583 } table[] = {
584 { UNIT_DEPENDENCY_FILE, "file" },
585 { UNIT_DEPENDENCY_IMPLICIT, "implicit" },
586 { UNIT_DEPENDENCY_DEFAULT, "default" },
587 { UNIT_DEPENDENCY_UDEV, "udev" },
588 { UNIT_DEPENDENCY_PATH, "path" },
589 { UNIT_DEPENDENCY_MOUNT_FILE, "mount-file" },
590 { UNIT_DEPENDENCY_MOUNTINFO, "mountinfo" },
591 { UNIT_DEPENDENCY_PROC_SWAP, "proc-swap" },
592 { UNIT_DEPENDENCY_SLICE_PROPERTY, "slice-property" },
593 };
594
595 assert(f);
596 assert(kind);
597 assert(space);
598
599 for (size_t i = 0; i < ELEMENTSOF(table); i++) {
600
601 if (mask == 0)
602 break;
603
604 if (FLAGS_SET(mask, table[i].mask)) {
605 if (*space)
606 fputc(' ', f);
607 else
608 *space = true;
609
610 fputs(kind, f);
611 fputs("-", f);
612 fputs(table[i].name, f);
613
614 mask &= ~table[i].mask;
615 }
616 }
617
618 assert(mask == 0);
619 }
620
621 void unit_dump(Unit *u, FILE *f, const char *prefix) {
622 char *t;
623 const char *prefix2;
624 Unit *following;
625 _cleanup_set_free_ Set *following_set = NULL;
626 CGroupMask m;
627 int r;
628
629 assert(u);
630 assert(u->type >= 0);
631
632 prefix = strempty(prefix);
633 prefix2 = strjoina(prefix, "\t");
634
635 fprintf(f,
636 "%s-> Unit %s:\n",
637 prefix, u->id);
638
639 SET_FOREACH(t, u->aliases)
640 fprintf(f, "%s\tAlias: %s\n", prefix, t);
641
642 fprintf(f,
643 "%s\tDescription: %s\n"
644 "%s\tInstance: %s\n"
645 "%s\tUnit Load State: %s\n"
646 "%s\tUnit Active State: %s\n"
647 "%s\tState Change Timestamp: %s\n"
648 "%s\tInactive Exit Timestamp: %s\n"
649 "%s\tActive Enter Timestamp: %s\n"
650 "%s\tActive Exit Timestamp: %s\n"
651 "%s\tInactive Enter Timestamp: %s\n"
652 "%s\tMay GC: %s\n"
653 "%s\tNeed Daemon Reload: %s\n"
654 "%s\tTransient: %s\n"
655 "%s\tPerpetual: %s\n"
656 "%s\tGarbage Collection Mode: %s\n",
657 prefix, unit_description(u),
658 prefix, strna(u->instance),
659 prefix, unit_load_state_to_string(u->load_state),
660 prefix, unit_active_state_to_string(unit_active_state(u)),
661 prefix, strna(FORMAT_TIMESTAMP(u->state_change_timestamp.realtime)),
662 prefix, strna(FORMAT_TIMESTAMP(u->inactive_exit_timestamp.realtime)),
663 prefix, strna(FORMAT_TIMESTAMP(u->active_enter_timestamp.realtime)),
664 prefix, strna(FORMAT_TIMESTAMP(u->active_exit_timestamp.realtime)),
665 prefix, strna(FORMAT_TIMESTAMP(u->inactive_enter_timestamp.realtime)),
666 prefix, yes_no(unit_may_gc(u)),
667 prefix, yes_no(unit_need_daemon_reload(u)),
668 prefix, yes_no(u->transient),
669 prefix, yes_no(u->perpetual),
670 prefix, collect_mode_to_string(u->collect_mode));
671
672 if (u->markers != 0) {
673 fprintf(f, "%s\tMarkers:", prefix);
674
675 for (UnitMarker marker = 0; marker < _UNIT_MARKER_MAX; marker++)
676 if (FLAGS_SET(u->markers, 1u << marker))
677 fprintf(f, " %s", unit_marker_to_string(marker));
678 fputs("\n", f);
679 }
680
681 if (UNIT_HAS_CGROUP_CONTEXT(u)) {
682 fprintf(f,
683 "%s\tSlice: %s\n"
684 "%s\tCGroup: %s\n"
685 "%s\tCGroup realized: %s\n",
686 prefix, strna(unit_slice_name(u)),
687 prefix, strna(u->cgroup_path),
688 prefix, yes_no(u->cgroup_realized));
689
690 if (u->cgroup_realized_mask != 0) {
691 _cleanup_free_ char *s = NULL;
692 (void) cg_mask_to_string(u->cgroup_realized_mask, &s);
693 fprintf(f, "%s\tCGroup realized mask: %s\n", prefix, strnull(s));
694 }
695
696 if (u->cgroup_enabled_mask != 0) {
697 _cleanup_free_ char *s = NULL;
698 (void) cg_mask_to_string(u->cgroup_enabled_mask, &s);
699 fprintf(f, "%s\tCGroup enabled mask: %s\n", prefix, strnull(s));
700 }
701
702 m = unit_get_own_mask(u);
703 if (m != 0) {
704 _cleanup_free_ char *s = NULL;
705 (void) cg_mask_to_string(m, &s);
706 fprintf(f, "%s\tCGroup own mask: %s\n", prefix, strnull(s));
707 }
708
709 m = unit_get_members_mask(u);
710 if (m != 0) {
711 _cleanup_free_ char *s = NULL;
712 (void) cg_mask_to_string(m, &s);
713 fprintf(f, "%s\tCGroup members mask: %s\n", prefix, strnull(s));
714 }
715
716 m = unit_get_delegate_mask(u);
717 if (m != 0) {
718 _cleanup_free_ char *s = NULL;
719 (void) cg_mask_to_string(m, &s);
720 fprintf(f, "%s\tCGroup delegate mask: %s\n", prefix, strnull(s));
721 }
722 }
723
724 if (!sd_id128_is_null(u->invocation_id))
725 fprintf(f, "%s\tInvocation ID: " SD_ID128_FORMAT_STR "\n",
726 prefix, SD_ID128_FORMAT_VAL(u->invocation_id));
727
728 STRV_FOREACH(j, u->documentation)
729 fprintf(f, "%s\tDocumentation: %s\n", prefix, *j);
730
731 if (u->access_selinux_context)
732 fprintf(f, "%s\tAccess SELinux Context: %s\n", prefix, u->access_selinux_context);
733
734 following = unit_following(u);
735 if (following)
736 fprintf(f, "%s\tFollowing: %s\n", prefix, following->id);
737
738 r = unit_following_set(u, &following_set);
739 if (r >= 0) {
740 Unit *other;
741
742 SET_FOREACH(other, following_set)
743 fprintf(f, "%s\tFollowing Set Member: %s\n", prefix, other->id);
744 }
745
746 if (u->fragment_path)
747 fprintf(f, "%s\tFragment Path: %s\n", prefix, u->fragment_path);
748
749 if (u->source_path)
750 fprintf(f, "%s\tSource Path: %s\n", prefix, u->source_path);
751
752 STRV_FOREACH(j, u->dropin_paths)
753 fprintf(f, "%s\tDropIn Path: %s\n", prefix, *j);
754
755 if (u->failure_action != EMERGENCY_ACTION_NONE)
756 fprintf(f, "%s\tFailure Action: %s\n", prefix, emergency_action_to_string(u->failure_action));
757 if (u->failure_action_exit_status >= 0)
758 fprintf(f, "%s\tFailure Action Exit Status: %i\n", prefix, u->failure_action_exit_status);
759 if (u->success_action != EMERGENCY_ACTION_NONE)
760 fprintf(f, "%s\tSuccess Action: %s\n", prefix, emergency_action_to_string(u->success_action));
761 if (u->success_action_exit_status >= 0)
762 fprintf(f, "%s\tSuccess Action Exit Status: %i\n", prefix, u->success_action_exit_status);
763
764 if (u->job_timeout != USEC_INFINITY)
765 fprintf(f, "%s\tJob Timeout: %s\n", prefix, FORMAT_TIMESPAN(u->job_timeout, 0));
766
767 if (u->job_timeout_action != EMERGENCY_ACTION_NONE)
768 fprintf(f, "%s\tJob Timeout Action: %s\n", prefix, emergency_action_to_string(u->job_timeout_action));
769
770 if (u->job_timeout_reboot_arg)
771 fprintf(f, "%s\tJob Timeout Reboot Argument: %s\n", prefix, u->job_timeout_reboot_arg);
772
773 condition_dump_list(u->conditions, f, prefix, condition_type_to_string);
774 condition_dump_list(u->asserts, f, prefix, assert_type_to_string);
775
776 if (dual_timestamp_is_set(&u->condition_timestamp))
777 fprintf(f,
778 "%s\tCondition Timestamp: %s\n"
779 "%s\tCondition Result: %s\n",
780 prefix, strna(FORMAT_TIMESTAMP(u->condition_timestamp.realtime)),
781 prefix, yes_no(u->condition_result));
782
783 if (dual_timestamp_is_set(&u->assert_timestamp))
784 fprintf(f,
785 "%s\tAssert Timestamp: %s\n"
786 "%s\tAssert Result: %s\n",
787 prefix, strna(FORMAT_TIMESTAMP(u->assert_timestamp.realtime)),
788 prefix, yes_no(u->assert_result));
789
790 for (UnitDependency d = 0; d < _UNIT_DEPENDENCY_MAX; d++) {
791 UnitDependencyInfo di;
792 Unit *other;
793
794 HASHMAP_FOREACH_KEY(di.data, other, unit_get_dependencies(u, d)) {
795 bool space = false;
796
797 fprintf(f, "%s\t%s: %s (", prefix, unit_dependency_to_string(d), other->id);
798
799 print_unit_dependency_mask(f, "origin", di.origin_mask, &space);
800 print_unit_dependency_mask(f, "destination", di.destination_mask, &space);
801
802 fputs(")\n", f);
803 }
804 }
805
806 if (!hashmap_isempty(u->requires_mounts_for)) {
807 UnitDependencyInfo di;
808 const char *path;
809
810 HASHMAP_FOREACH_KEY(di.data, path, u->requires_mounts_for) {
811 bool space = false;
812
813 fprintf(f, "%s\tRequiresMountsFor: %s (", prefix, path);
814
815 print_unit_dependency_mask(f, "origin", di.origin_mask, &space);
816 print_unit_dependency_mask(f, "destination", di.destination_mask, &space);
817
818 fputs(")\n", f);
819 }
820 }
821
822 if (u->load_state == UNIT_LOADED) {
823
824 fprintf(f,
825 "%s\tStopWhenUnneeded: %s\n"
826 "%s\tRefuseManualStart: %s\n"
827 "%s\tRefuseManualStop: %s\n"
828 "%s\tDefaultDependencies: %s\n"
829 "%s\tSurviveFinalKillSignal: %s\n"
830 "%s\tOnSuccessJobMode: %s\n"
831 "%s\tOnFailureJobMode: %s\n"
832 "%s\tIgnoreOnIsolate: %s\n",
833 prefix, yes_no(u->stop_when_unneeded),
834 prefix, yes_no(u->refuse_manual_start),
835 prefix, yes_no(u->refuse_manual_stop),
836 prefix, yes_no(u->default_dependencies),
837 prefix, yes_no(u->survive_final_kill_signal),
838 prefix, job_mode_to_string(u->on_success_job_mode),
839 prefix, job_mode_to_string(u->on_failure_job_mode),
840 prefix, yes_no(u->ignore_on_isolate));
841
842 if (UNIT_VTABLE(u)->dump)
843 UNIT_VTABLE(u)->dump(u, f, prefix2);
844
845 } else if (u->load_state == UNIT_MERGED)
846 fprintf(f,
847 "%s\tMerged into: %s\n",
848 prefix, u->merged_into->id);
849 else if (u->load_state == UNIT_ERROR) {
850 errno = abs(u->load_error);
851 fprintf(f, "%s\tLoad Error Code: %m\n", prefix);
852 }
853
854 for (const char *n = sd_bus_track_first(u->bus_track); n; n = sd_bus_track_next(u->bus_track))
855 fprintf(f, "%s\tBus Ref: %s\n", prefix, n);
856
857 if (u->job)
858 job_dump(u->job, f, prefix2);
859
860 if (u->nop_job)
861 job_dump(u->nop_job, f, prefix2);
862 }