]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/unit.h
core: add bpf-foreign unit helpers
[thirdparty/systemd.git] / src / core / unit.h
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
c2f1db8f 2#pragma once
87f0e418
LP
3
4#include <stdbool.h>
5#include <stdlib.h>
bbc9006e 6#include <unistd.h>
87f0e418 7
2d3b784d
ZJS
8#include "sd-id128.h"
9
6a48d82f 10#include "bpf-program.h"
134e56dc 11#include "condition.h"
87a47f99 12#include "emergency-action.h"
71d35b6b 13#include "list.h"
5bcf34eb 14#include "show-status.h"
fab34748 15#include "set.h"
5cfa33e0 16#include "unit-file.h"
6b659ed8 17#include "cgroup.h"
87f0e418 18
57b7a260
FS
19typedef struct UnitRef UnitRef;
20
db2cb23b
UTL
21typedef enum KillOperation {
22 KILL_TERMINATE,
1d98fef1 23 KILL_TERMINATE_AND_LOG,
a232ebcc 24 KILL_RESTART,
db2cb23b 25 KILL_KILL,
c87700a1 26 KILL_WATCHDOG,
4940c0b0 27 _KILL_OPERATION_MAX,
2d93c20e 28 _KILL_OPERATION_INVALID = -EINVAL,
db2cb23b
UTL
29} KillOperation;
30
5afe510c
LP
31typedef enum CollectMode {
32 COLLECT_INACTIVE,
33 COLLECT_INACTIVE_OR_FAILED,
34 _COLLECT_MODE_MAX,
2d93c20e 35 _COLLECT_MODE_INVALID = -EINVAL,
5afe510c
LP
36} CollectMode;
37
87f0e418 38static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
3742095b 39 return IN_SET(t, UNIT_ACTIVE, UNIT_RELOADING);
87f0e418
LP
40}
41
42static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
3742095b 43 return IN_SET(t, UNIT_ACTIVE, UNIT_ACTIVATING, UNIT_RELOADING);
87f0e418
LP
44}
45
46static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
3742095b 47 return IN_SET(t, UNIT_INACTIVE, UNIT_FAILED, UNIT_DEACTIVATING);
6124958c
LP
48}
49
fdf20a31 50static inline bool UNIT_IS_INACTIVE_OR_FAILED(UnitActiveState t) {
3742095b 51 return IN_SET(t, UNIT_INACTIVE, UNIT_FAILED);
87f0e418
LP
52}
53
0377cd29
LP
54static inline bool UNIT_IS_LOAD_COMPLETE(UnitLoadState t) {
55 return t >= 0 && t < _UNIT_LOAD_STATE_MAX && t != UNIT_STUB && t != UNIT_MERGED;
56}
57
eef85c4a
LP
58/* Stores the 'reason' a dependency was created as a bit mask, i.e. due to which configuration source it came to be. We
59 * use this so that we can selectively flush out parts of dependencies again. Note that the same dependency might be
60 * created as a result of multiple "reasons", hence the bitmask. */
61typedef enum UnitDependencyMask {
5238e957 62 /* Configured directly by the unit file, .wants/.requires symlink or drop-in, or as an immediate result of a
eef85c4a
LP
63 * non-dependency option configured that way. */
64 UNIT_DEPENDENCY_FILE = 1 << 0,
65
66 /* As unconditional implicit dependency (not affected by unit configuration — except by the unit name and
67 * type) */
68 UNIT_DEPENDENCY_IMPLICIT = 1 << 1,
69
70 /* A dependency effected by DefaultDependencies=yes. Note that dependencies marked this way are conceptually
71 * just a subset of UNIT_DEPENDENCY_FILE, as DefaultDependencies= is itself a unit file setting that can only
72 * be set in unit files. We make this two separate bits only to help debugging how dependencies came to be. */
73 UNIT_DEPENDENCY_DEFAULT = 1 << 2,
74
75 /* A dependency created from udev rules */
76 UNIT_DEPENDENCY_UDEV = 1 << 3,
77
78 /* A dependency created because of some unit's RequiresMountsFor= setting */
79 UNIT_DEPENDENCY_PATH = 1 << 4,
80
81 /* A dependency created because of data read from /proc/self/mountinfo and no other configuration source */
82 UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT = 1 << 5,
83
84 /* A dependency created because of data read from /proc/self/mountinfo, but conditionalized by
85 * DefaultDependencies= and thus also involving configuration from UNIT_DEPENDENCY_FILE sources */
86 UNIT_DEPENDENCY_MOUNTINFO_DEFAULT = 1 << 6,
87
88 /* A dependency created because of data read from /proc/swaps and no other configuration source */
89 UNIT_DEPENDENCY_PROC_SWAP = 1 << 7,
90
ef31828d 91 _UNIT_DEPENDENCY_MASK_FULL = (1 << 8) - 1,
eef85c4a
LP
92} UnitDependencyMask;
93
94/* The Unit's dependencies[] hashmaps use this structure as value. It has the same size as a void pointer, and thus can
95 * be stored directly as hashmap value, without any indirection. Note that this stores two masks, as both the origin
96 * and the destination of a dependency might have created it. */
97typedef union UnitDependencyInfo {
98 void *data;
99 struct {
100 UnitDependencyMask origin_mask:16;
101 UnitDependencyMask destination_mask:16;
102 } _packed_;
103} UnitDependencyInfo;
104
ef734fd6
LP
105#include "job.h"
106
a016b922
LP
107struct UnitRef {
108 /* Keeps tracks of references to a unit. This is useful so
109 * that we can merge two units if necessary and correct all
110 * references to them */
111
7f7d01ed
ZJS
112 Unit *source, *target;
113 LIST_FIELDS(UnitRef, refs_by_target);
a016b922
LP
114};
115
57b7a260 116typedef struct Unit {
87f0e418 117 Manager *manager;
23a177ef 118
87f0e418
LP
119 UnitType type;
120 UnitLoadState load_state;
23a177ef 121 Unit *merged_into;
87f0e418 122
4562c355 123 char *id; /* The one special name that we use for identification */
9e2f7c11 124 char *instance;
87f0e418 125
4562c355 126 Set *aliases; /* All the other names. */
87f0e418 127
eef85c4a
LP
128 /* For each dependency type we maintain a Hashmap whose key is the Unit* object, and the value encodes why the
129 * dependency exists, using the UnitDependencyInfo type */
130 Hashmap *dependencies[_UNIT_DEPENDENCY_MAX];
131
132 /* Similar, for RequiresMountsFor= path dependencies. The key is the path, the value the UnitDependencyInfo type */
133 Hashmap *requires_mounts_for;
7c8fa05c 134
87f0e418 135 char *description;
49dbfa7b 136 char **documentation;
faf919f1 137
6be1e7d5 138 char *fragment_path; /* if loaded from a config file this is the primary path to it */
1b64d026 139 char *source_path; /* if converted, the source file */
ae7a7182 140 char **dropin_paths;
f78f265f 141
c2911d48 142 usec_t fragment_not_found_timestamp_hash;
45fb0699 143 usec_t fragment_mtime;
1b64d026 144 usec_t source_mtime;
ae7a7182 145 usec_t dropin_mtime;
87f0e418 146
4f4afc88
LP
147 /* If this is a transient unit we are currently writing, this is where we are writing it to */
148 FILE *transient_file;
149
8c2524c7
ZJS
150 /* Freezer state */
151 sd_bus_message *pending_freezer_message;
152 FreezerState freezer_state;
153
154 /* Job timeout and action to take */
155 EmergencyAction job_timeout_action;
156 usec_t job_timeout;
157 usec_t job_running_timeout;
158 char *job_timeout_reboot_arg;
159
e0209d83 160 /* If there is something to do with this unit, then this is the installed job for it */
87f0e418
LP
161 Job *job;
162
e0209d83
MS
163 /* JOB_NOP jobs are special and can be installed without disturbing the real job. */
164 Job *nop_job;
165
bbc29086
DM
166 /* The slot used for watching NameOwnerChanged signals */
167 sd_bus_slot *match_bus_slot;
a5a8776a 168 sd_bus_slot *get_name_owner_slot;
bbc29086 169
05a98afd
LP
170 /* References to this unit from clients */
171 sd_bus_track *bus_track;
172 char **deserialized_refs;
173
57020a3a 174 /* References to this */
7f7d01ed 175 LIST_HEAD(UnitRef, refs_by_target);
57020a3a 176
52661efd
LP
177 /* Conditions to check */
178 LIST_HEAD(Condition, conditions);
59fccdc5 179 LIST_HEAD(Condition, asserts);
52661efd 180
90bbc946 181 dual_timestamp condition_timestamp;
59fccdc5 182 dual_timestamp assert_timestamp;
90bbc946 183
a483fb59
LP
184 /* Updated whenever the low-level state changes */
185 dual_timestamp state_change_timestamp;
186
187 /* Updated whenever the (high-level) active state enters or leaves the active or inactive states */
63983207
LP
188 dual_timestamp inactive_exit_timestamp;
189 dual_timestamp active_enter_timestamp;
190 dual_timestamp active_exit_timestamp;
191 dual_timestamp inactive_enter_timestamp;
87f0e418 192
a016b922
LP
193 UnitRef slice;
194
ef734fd6 195 /* Per type list */
ac155bb8 196 LIST_FIELDS(Unit, units_by_type);
c1e1601e 197
701cc384 198 /* Load queue */
ac155bb8 199 LIST_FIELDS(Unit, load_queue);
701cc384 200
c1e1601e 201 /* D-Bus queue */
ac155bb8 202 LIST_FIELDS(Unit, dbus_queue);
23a177ef
LP
203
204 /* Cleanup queue */
ac155bb8 205 LIST_FIELDS(Unit, cleanup_queue);
9d58f1db 206
701cc384 207 /* GC queue */
ac155bb8 208 LIST_FIELDS(Unit, gc_queue);
701cc384 209
4ad49000 210 /* CGroup realize members queue */
91a6073e 211 LIST_FIELDS(Unit, cgroup_realize_queue);
4ad49000 212
09e24654
LP
213 /* cgroup empty queue */
214 LIST_FIELDS(Unit, cgroup_empty_queue);
215
afcfaa69
LP
216 /* cgroup OOM queue */
217 LIST_FIELDS(Unit, cgroup_oom_queue);
218
19496554
MS
219 /* Target dependencies queue */
220 LIST_FIELDS(Unit, target_deps_queue);
221
a3c1168a
LP
222 /* Queue of units with StopWhenUnneeded set that shell be checked for clean-up. */
223 LIST_FIELDS(Unit, stop_when_unneeded_queue);
224
a911bb9a
LP
225 /* PIDs we keep an eye on. Note that a unit might have many
226 * more, but these are the ones we care enough about to
227 * process SIGCHLD for */
228 Set *pids;
229
62a76913
LP
230 /* Used in SIGCHLD and sd_notify() message event invocation logic to avoid that we dispatch the same event
231 * multiple times on the same unit. */
232 unsigned sigchldgen;
233 unsigned notifygen;
36f20ae3 234
701cc384 235 /* Used during GC sweeps */
eced69b3 236 unsigned gc_marker;
701cc384 237
8821a00f
LP
238 /* Error code when we didn't manage to load the unit (negative) */
239 int load_error;
240
6bf0f408 241 /* Put a ratelimit on unit starting */
7bf081a1 242 RateLimit start_ratelimit;
87a47f99 243 EmergencyAction start_limit_action;
53c35a76 244
ff68472a
ZJS
245 /* The unit has been marked for reload, restart, etc. Stored as 1u << marker1 | 1u << marker2. */
246 unsigned markers;
247
7af67e9a
LP
248 /* What to do on failure or success */
249 EmergencyAction success_action, failure_action;
250 int success_action_exit_status, failure_action_exit_status;
6bf0f408
LP
251 char *reboot_arg;
252
67bfdc97
LP
253 /* Make sure we never enter endless loops with the check unneeded logic, or the BindsTo= logic */
254 RateLimit auto_stop_ratelimit;
bea355da 255
00d9ef85
LP
256 /* Reference to a specific UID/GID */
257 uid_t ref_uid;
258 gid_t ref_gid;
259
d2dc52db 260 /* Cached unit file state and preset */
a4375746 261 UnitFileState unit_file_state;
d2dc52db 262 int unit_file_preset;
a4375746 263
66ebf6c0
TH
264 /* Where the cpu.stat or cpuacct.usage was at the time the unit was started */
265 nsec_t cpu_usage_base;
fe700f46 266 nsec_t cpu_usage_last; /* the most recently read value */
5ad096b3 267
fe8d22fb
AZ
268 /* The current counter of processes sent SIGKILL by systemd-oomd */
269 uint64_t managed_oom_kill_last;
270
271 /* The current counter of the oom_kill field in the memory.events cgroup attribute */
afcfaa69
LP
272 uint64_t oom_kill_last;
273
fbe14fc9
LP
274 /* Where the io.stat data was at the time the unit was started */
275 uint64_t io_accounting_base[_CGROUP_IO_ACCOUNTING_METRIC_MAX];
276 uint64_t io_accounting_last[_CGROUP_IO_ACCOUNTING_METRIC_MAX]; /* the most recently read value */
277
7c52a17b
ZJS
278 /* Counterparts in the cgroup filesystem */
279 char *cgroup_path;
4e1dfa45
CD
280 CGroupMask cgroup_realized_mask; /* In which hierarchies does this unit's cgroup exist? (only relevant on cgroup v1) */
281 CGroupMask cgroup_enabled_mask; /* Which controllers are enabled (or more correctly: enabled for the children) for this unit's cgroup? (only relevant on cgroup v2) */
5238e957 282 CGroupMask cgroup_invalidated_mask; /* A mask specifying controllers which shall be considered invalidated, and require re-realization */
5a62e5e2 283 CGroupMask cgroup_members_mask; /* A cache for the controllers required by all children of this cgroup (only relevant for slice units) */
afcfaa69
LP
284
285 /* Inotify watch descriptors for watching cgroup.events and memory.events on cgroupv2 */
0bb814c2 286 int cgroup_control_inotify_wd;
afcfaa69 287 int cgroup_memory_inotify_wd;
7c52a17b 288
084c7007
RG
289 /* Device Controller BPF program */
290 BPFProgram *bpf_device_control_installed;
291
6a48d82f
DM
292 /* IP BPF Firewalling/accounting */
293 int ip_accounting_ingress_map_fd;
294 int ip_accounting_egress_map_fd;
295
296 int ipv4_allow_map_fd;
297 int ipv6_allow_map_fd;
298 int ipv4_deny_map_fd;
299 int ipv6_deny_map_fd;
300
aa2b6f1d
LP
301 BPFProgram *ip_bpf_ingress, *ip_bpf_ingress_installed;
302 BPFProgram *ip_bpf_egress, *ip_bpf_egress_installed;
fab34748
KL
303 Set *ip_bpf_custom_ingress;
304 Set *ip_bpf_custom_ingress_installed;
305 Set *ip_bpf_custom_egress;
306 Set *ip_bpf_custom_egress_installed;
6a48d82f 307
5f8ba20d
JK
308 /* BPF programs managed (e.g. loaded to kernel) by an entity external to systemd,
309 * attached to unit cgroup by provided program fd and attach type. */
310 Hashmap *bpf_foreign_by_key;
311
6b659ed8
LP
312 uint64_t ip_accounting_extra[_CGROUP_IP_ACCOUNTING_METRIC_MAX];
313
50be4f4a
LP
314 /* Low-priority event source which is used to remove watched PIDs that have gone away, and subscribe to any new
315 * ones which might have appeared. */
316 sd_event_source *rewatch_pids_event_source;
317
7c52a17b
ZJS
318 /* How to start OnFailure units */
319 JobMode on_failure_job_mode;
320
5afe510c
LP
321 /* Tweaking the GC logic */
322 CollectMode collect_mode;
323
4b58153d
LP
324 /* The current invocation ID */
325 sd_id128_t invocation_id;
326 char invocation_id_string[SD_ID128_STRING_MAX]; /* useful when logging */
327
9d58f1db
LP
328 /* Garbage collect us we nobody wants or requires us anymore */
329 bool stop_when_unneeded;
330
35b8ca3a 331 /* Create default dependencies */
a40eb732
LP
332 bool default_dependencies;
333
b5e9dba8
LP
334 /* Refuse manual starting, allow starting only indirectly via dependency. */
335 bool refuse_manual_start;
336
337 /* Don't allow the user to stop this unit manually, allow stopping only indirectly via dependency. */
338 bool refuse_manual_stop;
339
2528a7a6
LP
340 /* Allow isolation requests */
341 bool allow_isolate;
342
c8f4d764
LP
343 /* Ignore this unit when isolating */
344 bool ignore_on_isolate;
345
49f43d5f 346 /* Did the last condition check succeed? */
90bbc946 347 bool condition_result;
59fccdc5 348 bool assert_result;
90bbc946 349
c2756a68
LP
350 /* Is this a transient unit? */
351 bool transient;
352
f5869324
LP
353 /* Is this a unit that is always running and cannot be stopped? */
354 bool perpetual;
355
66fa4bdd 356 /* Booleans indicating membership of this unit in the various queues */
9d58f1db
LP
357 bool in_load_queue:1;
358 bool in_dbus_queue:1;
359 bool in_cleanup_queue:1;
701cc384 360 bool in_gc_queue:1;
91a6073e 361 bool in_cgroup_realize_queue:1;
09e24654 362 bool in_cgroup_empty_queue:1;
afcfaa69 363 bool in_cgroup_oom_queue:1;
19496554 364 bool in_target_deps_queue:1;
a3c1168a 365 bool in_stop_when_unneeded_queue:1;
701cc384 366
9d58f1db 367 bool sent_dbus_new_signal:1;
6c073082 368
8c2524c7
ZJS
369 bool job_running_timeout_set:1;
370
cd6d0a45 371 bool in_audit:1;
adefcf28 372 bool on_console:1;
a57f7e2c
LP
373
374 bool cgroup_realized:1;
bc432dc7 375 bool cgroup_members_mask_valid:1;
f78f265f 376
3c7416b6
LP
377 /* Reset cgroup accounting next time we fork something off */
378 bool reset_accounting:1;
379
6bf0f408
LP
380 bool start_limit_hit:1;
381
f78f265f 382 /* Did we already invoke unit_coldplug() for this unit? */
f8a30ce5 383 bool coldplugged:1;
05a98afd
LP
384
385 /* For transient units: whether to add a bus track reference after creating the unit */
386 bool bus_track_add:1;
d3070fbd
LP
387
388 /* Remember which unit state files we created */
389 bool exported_invocation_id:1;
390 bool exported_log_level_max:1;
391 bool exported_log_extra_fields:1;
5ac1530e
ZJS
392 bool exported_log_ratelimit_interval:1;
393 bool exported_log_ratelimit_burst:1;
2e59b241 394
527ede0c
FB
395 /* Whether we warned about clamping the CPU quota period */
396 bool warned_clamping_cpu_quota_period:1;
397
2e59b241
LP
398 /* When writing transient unit files, stores which section we stored last. If < 0, we didn't write any yet. If
399 * == 0 we are in the [Unit] section, if > 0 we are in the unit type-specific section. */
845d247a 400 signed int last_section_private:2;
57b7a260 401} Unit;
87f0e418 402
57b7a260 403typedef struct UnitStatusMessageFormats {
c6918296
MS
404 const char *starting_stopping[2];
405 const char *finished_start_job[_JOB_RESULT_MAX];
406 const char *finished_stop_job[_JOB_RESULT_MAX];
eda0cbf0
ZJS
407 /* If this entry is present, it'll be called to provide a context-dependent format string,
408 * or NULL to fall back to finished_{start,stop}_job; if those are NULL too, fall back to generic. */
409 const char *(*finished_job)(Unit *u, JobType t, JobResult result);
57b7a260 410} UnitStatusMessageFormats;
c6918296 411
2e59b241
LP
412/* Flags used when writing drop-in files or transient unit files */
413typedef enum UnitWriteFlags {
414 /* Write a runtime unit file or drop-in (i.e. one below /run) */
415 UNIT_RUNTIME = 1 << 0,
416
417 /* Write a persistent drop-in (i.e. one below /etc) */
418 UNIT_PERSISTENT = 1 << 1,
419
420 /* Place this item in the per-unit-type private section, instead of [Unit] */
421 UNIT_PRIVATE = 1 << 2,
422
423 /* Apply specifier escaping before writing */
424 UNIT_ESCAPE_SPECIFIERS = 1 << 3,
425
426 /* Apply C escaping before writing */
427 UNIT_ESCAPE_C = 1 << 4,
428} UnitWriteFlags;
429
430/* Returns true if neither persistent, nor runtime storage is requested, i.e. this is a check invocation only */
6529ccfa
LP
431static inline bool UNIT_WRITE_FLAGS_NOOP(UnitWriteFlags flags) {
432 return (flags & (UNIT_RUNTIME|UNIT_PERSISTENT)) == 0;
433}
8e2af478 434
57b7a260
FS
435#include "kill.h"
436
437typedef struct UnitVTable {
7d17cfbc
MS
438 /* How much memory does an object of this unit type need */
439 size_t object_size;
440
3ef63c31
LP
441 /* If greater than 0, the offset into the object where
442 * ExecContext is found, if the unit type has that */
443 size_t exec_context_offset;
444
4ad49000
LP
445 /* If greater than 0, the offset into the object where
446 * CGroupContext is found, if the unit type has that */
447 size_t cgroup_context_offset;
448
718db961
LP
449 /* If greater than 0, the offset into the object where
450 * KillContext is found, if the unit type has that */
451 size_t kill_context_offset;
452
613b411c
LP
453 /* If greater than 0, the offset into the object where the
454 * pointer to ExecRuntime is found, if the unit type has
455 * that */
456 size_t exec_runtime_offset;
457
29206d46
LP
458 /* If greater than 0, the offset into the object where the pointer to DynamicCreds is found, if the unit type
459 * has that. */
460 size_t dynamic_creds_offset;
461
ee33e53a 462 /* The name of the configuration file section with the private settings of this unit */
4ad49000 463 const char *private_section;
71645aca 464
f975e971
LP
465 /* Config file sections this unit type understands, separated
466 * by NUL chars */
467 const char *sections;
468
e537352b 469 /* This should reset all type-specific variables. This should
a16e1123
LP
470 * not allocate memory, and is called with zero-initialized
471 * data. It should hence only initialize variables that need
472 * to be set != 0. */
e537352b
LP
473 void (*init)(Unit *u);
474
a16e1123
LP
475 /* This should free all type-specific variables. It should be
476 * idempotent. */
477 void (*done)(Unit *u);
478
e537352b
LP
479 /* Actually load data from disk. This may fail, and should set
480 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
481 * UNIT_STUB if no configuration could be found. */
482 int (*load)(Unit *u);
483
f0831ed2 484 /* During deserialization we only record the intended state to return to. With coldplug() we actually put the
a95c0505
LP
485 * deserialized state in effect. This is where unit_notify() should be called to start things up. Note that
486 * this callback is invoked *before* we leave the reloading state of the manager, i.e. *before* we consider the
487 * reloading to be complete. Thus, this callback should just restore the exact same state for any unit that was
488 * in effect before the reload, i.e. units should not catch up with changes happened during the reload. That's
489 * what catchup() below is for. */
be847e82 490 int (*coldplug)(Unit *u);
87f0e418 491
a95c0505
LP
492 /* This is called shortly after all units' coldplug() call was invoked, and *after* the manager left the
493 * reloading state. It's supposed to catch up with state changes due to external events we missed so far (for
494 * example because they took place while we were reloading/reexecing) */
f0831ed2
LP
495 void (*catchup)(Unit *u);
496
87f0e418
LP
497 void (*dump)(Unit *u, FILE *f, const char *prefix);
498
499 int (*start)(Unit *u);
500 int (*stop)(Unit *u);
501 int (*reload)(Unit *u);
502
718db961 503 int (*kill)(Unit *u, KillWho w, int signo, sd_bus_error *error);
8a0867d6 504
380dc8b0
LP
505 /* Clear out the various runtime/state/cache/logs/configuration data */
506 int (*clean)(Unit *u, ExecCleanMask m);
507
d9e45bc3
MS
508 /* Freeze the unit */
509 int (*freeze)(Unit *u);
510 int (*thaw)(Unit *u);
511 bool (*can_freeze)(Unit *u);
512
380dc8b0
LP
513 /* Return which kind of data can be cleaned */
514 int (*can_clean)(Unit *u, ExecCleanMask *ret);
515
87f0e418
LP
516 bool (*can_reload)(Unit *u);
517
a16e1123
LP
518 /* Write all data that cannot be restored from other sources
519 * away using unit_serialize_item() */
520 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
521
522 /* Restore one item from the serialization */
523 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
524
01e10de3 525 /* Try to match up fds with what we need for this unit */
9ff1a6f1 526 void (*distribute_fds)(Unit *u, FDSet *fds);
01e10de3 527
87f0e418
LP
528 /* Boils down the more complex internal state of this unit to
529 * a simpler one that the engine can understand */
530 UnitActiveState (*active_state)(Unit *u);
531
10a94420
LP
532 /* Returns the substate specific to this unit type as
533 * string. This is purely information so that we can give the
35b8ca3a 534 * user a more fine grained explanation in which actual state a
10a94420
LP
535 * unit is in. */
536 const char* (*sub_state_to_string)(Unit *u);
537
deb4e708
MK
538 /* Additionally to UnitActiveState determine whether unit is to be restarted. */
539 bool (*will_restart)(Unit *u);
540
f2f725e5
ZJS
541 /* Return false when there is a reason to prevent this unit from being gc'ed
542 * even though nothing references it and it isn't active in any way. */
543 bool (*may_gc)(Unit *u);
701cc384 544
39c79477
ZJS
545 /* Return true when the unit is not controlled by the manager (e.g. extrinsic mounts). */
546 bool (*is_extrinsic)(Unit *u);
547
7eb2a8a1
LP
548 /* When the unit is not running and no job for it queued we shall release its runtime resources */
549 void (*release_resources)(Unit *u);
a354329f 550
718db961 551 /* Invoked on every child that died */
87f0e418 552 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
7824bbeb 553
fdf20a31
MM
554 /* Reset failed state if we are in failed state */
555 void (*reset_failed)(Unit *u);
5632e374 556
afcfaa69 557 /* Called whenever any of the cgroups this unit watches for ran empty */
4ad49000 558 void (*notify_cgroup_empty)(Unit *u);
8e274523 559
afcfaa69
LP
560 /* Called whenever an OOM kill event on this unit was seen */
561 void (*notify_cgroup_oom)(Unit *u);
562
8c47c732 563 /* Called whenever a process of this unit sends us a message */
fcee2755 564 void (*notify_message)(Unit *u, const struct ucred *ucred, char * const *tags, FDSet *fds);
8c47c732 565
00d9ef85 566 /* Called whenever a name this Unit registered for comes or goes away. */
fc67a943 567 void (*bus_name_owner_change)(Unit *u, const char *new_owner);
05e343b7 568
8e2af478 569 /* Called for each property that is being set */
2e59b241 570 int (*bus_set_property)(Unit *u, const char *name, sd_bus_message *message, UnitWriteFlags flags, sd_bus_error *error);
8e2af478
LP
571
572 /* Called after at least one property got changed to apply the necessary change */
573 int (*bus_commit_properties)(Unit *u);
574
a7f241db
LP
575 /* Return the unit this unit is following */
576 Unit *(*following)(Unit *u);
577
6210e7fc
LP
578 /* Return the set of units that are following each other */
579 int (*following_set)(Unit *u, Set **s);
580
3ecaa09b
LP
581 /* Invoked each time a unit this unit is triggering changes
582 * state or gains/loses a job */
583 void (*trigger_notify)(Unit *u, Unit *trigger);
584
8742514c
LP
585 /* Called whenever CLOCK_REALTIME made a jump */
586 void (*time_change)(Unit *u);
587
bbf5fd8e
LP
588 /* Called whenever /etc/localtime was modified */
589 void (*timezone_change)(Unit *u);
590
7a7821c8
LP
591 /* Returns the next timeout of a unit */
592 int (*get_timeout)(Unit *u, usec_t *timeout);
68db7a3b 593
291d565a
LP
594 /* Returns the main PID if there is any defined, or 0. */
595 pid_t (*main_pid)(Unit *u);
596
597 /* Returns the main PID if there is any defined, or 0. */
598 pid_t (*control_pid)(Unit *u);
599
bb2c7685
LP
600 /* Returns true if the unit currently needs access to the console */
601 bool (*needs_console)(Unit *u);
602
7af67e9a
LP
603 /* Returns the exit status to propagate in case of FailureAction=exit/SuccessAction=exit; usually returns the
604 * exit code of the "main" process of the service or similar. */
605 int (*exit_status)(Unit *u);
606
04eb582a
LP
607 /* Like the enumerate() callback further down, but only enumerates the perpetual units, i.e. all units that
608 * unconditionally exist and are always active. The main reason to keep both enumeration functions separate is
609 * philosophical: the state of perpetual units should be put in place by coldplug(), while the state of those
610 * discovered through regular enumeration should be put in place by catchup(), see below. */
611 void (*enumerate_perpetual)(Manager *m);
612
f0831ed2
LP
613 /* This is called for each unit type and should be used to enumerate units already existing in the system
614 * internally and load them. However, everything that is loaded here should still stay in inactive state. It is
04eb582a 615 * the job of the catchup() call above to put the units into the discovered state. */
ba64af90 616 void (*enumerate)(Manager *m);
f50e0a01
LP
617
618 /* Type specific cleanups. */
7824bbeb 619 void (*shutdown)(Manager *m);
9d58f1db 620
0faacd47
LP
621 /* If this function is set and return false all jobs for units
622 * of this type will immediately fail. */
1c2e9646 623 bool (*supported)(void);
0faacd47 624
718db961 625 /* The strings to print in status messages */
c6918296
MS
626 UnitStatusMessageFormats status_message_formats;
627
c2756a68
LP
628 /* True if transient units of this type are OK */
629 bool can_transient:1;
c5a97ed1 630
1d9cc876
LP
631 /* True if cgroup delegation is permissible */
632 bool can_delegate:1;
633
c80a9a33
LP
634 /* True if the unit type triggers other units, i.e. can have a UNIT_TRIGGERS dependency */
635 bool can_trigger:1;
636
637 /* True if the unit type knows a failure state, and thus can be source of an OnFailure= dependency */
638 bool can_fail:1;
639
d4fd1cf2
LP
640 /* True if units of this type shall be startable only once and then never again */
641 bool once_only:1;
642
c5a97ed1
LP
643 /* True if queued jobs of this type should be GC'ed if no other job needs them anymore */
644 bool gc_jobs:1;
4d824a4e
AZ
645
646 /* True if systemd-oomd can monitor and act on this unit's recursive children's cgroup(s) */
647 bool can_set_managed_oom:1;
57b7a260 648} UnitVTable;
87f0e418
LP
649
650extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
651
6529ccfa
LP
652static inline const UnitVTable* UNIT_VTABLE(Unit *u) {
653 return unit_vtable[u->type];
654}
87f0e418
LP
655
656/* For casting a unit into the various unit types */
657#define DEFINE_CAST(UPPERCASE, MixedCase) \
658 static inline MixedCase* UPPERCASE(Unit *u) { \
ac155bb8 659 if (_unlikely_(!u || u->type != UNIT_##UPPERCASE)) \
87f0e418
LP
660 return NULL; \
661 \
662 return (MixedCase*) u; \
663 }
664
665/* For casting the various unit types into a unit */
bbf11206
LP
666#define UNIT(u) \
667 ({ \
668 typeof(u) _u_ = (u); \
669 Unit *_w_ = _u_ ? &(_u_)->meta : NULL; \
670 _w_; \
671 })
87f0e418 672
35b7ff80
LP
673#define UNIT_HAS_EXEC_CONTEXT(u) (UNIT_VTABLE(u)->exec_context_offset > 0)
674#define UNIT_HAS_CGROUP_CONTEXT(u) (UNIT_VTABLE(u)->cgroup_context_offset > 0)
675#define UNIT_HAS_KILL_CONTEXT(u) (UNIT_VTABLE(u)->kill_context_offset > 0)
676
6529ccfa
LP
677static inline Unit* UNIT_TRIGGER(Unit *u) {
678 return hashmap_first_key(u->dependencies[UNIT_TRIGGERS]);
679}
3ecaa09b 680
75db809a
ZJS
681Unit* unit_new(Manager *m, size_t size);
682Unit* unit_free(Unit *u);
dc409696 683DEFINE_TRIVIAL_CLEANUP_FUNC(Unit *, unit_free);
87f0e418 684
a581e45a 685int unit_new_for_name(Manager *m, size_t size, const char *name, Unit **ret);
87f0e418 686int unit_add_name(Unit *u, const char *name);
9e2f7c11 687
eef85c4a
LP
688int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference, UnitDependencyMask mask);
689int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference, UnitDependencyMask mask);
2c966c03 690
35d8c19a 691int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, bool add_reference, UnitDependencyMask mask);
5a724170 692int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, bool add_reference, UnitDependencyMask mask);
2c966c03 693
23a177ef
LP
694int unit_add_exec_dependencies(Unit *u, ExecContext *c);
695
0ae97ec1 696int unit_choose_id(Unit *u, const char *name);
f50e0a01 697int unit_set_description(Unit *u, const char *description);
87f0e418 698
f2f725e5 699bool unit_may_gc(Unit *u);
701cc384 700
39c79477
ZJS
701static inline bool unit_is_extrinsic(Unit *u) {
702 return u->perpetual ||
703 (UNIT_VTABLE(u)->is_extrinsic && UNIT_VTABLE(u)->is_extrinsic(u));
704}
705
87f0e418 706void unit_add_to_load_queue(Unit *u);
c1e1601e 707void unit_add_to_dbus_queue(Unit *u);
23a177ef 708void unit_add_to_cleanup_queue(Unit *u);
701cc384 709void unit_add_to_gc_queue(Unit *u);
19496554 710void unit_add_to_target_deps_queue(Unit *u);
fda09318 711void unit_submit_to_stop_when_unneeded_queue(Unit *u);
87f0e418
LP
712
713int unit_merge(Unit *u, Unit *other);
23a177ef
LP
714int unit_merge_by_name(Unit *u, const char *other);
715
44a6b1b6 716Unit *unit_follow_merge(Unit *u) _pure_;
87f0e418 717
c3620770 718int unit_load_fragment_and_dropin(Unit *u, bool fragment_required);
87f0e418
LP
719int unit_load(Unit *unit);
720
d79200e2
LP
721int unit_set_slice(Unit *u, Unit *slice);
722int unit_set_default_slice(Unit *u);
a016b922 723
44a6b1b6 724const char *unit_description(Unit *u) _pure_;
2a8f53c6 725const char *unit_status_string(Unit *u) _pure_;
87f0e418 726
303ee601 727bool unit_has_name(const Unit *u, const char *name);
f278026d 728
87f0e418 729UnitActiveState unit_active_state(Unit *u);
d9e45bc3
MS
730FreezerState unit_freezer_state(Unit *u);
731int unit_freezer_state_kernel(Unit *u, FreezerState *ret);
87f0e418 732
10a94420
LP
733const char* unit_sub_state_to_string(Unit *u);
734
44a6b1b6
ZJS
735bool unit_can_reload(Unit *u) _pure_;
736bool unit_can_start(Unit *u) _pure_;
f5869324 737bool unit_can_stop(Unit *u) _pure_;
44a6b1b6 738bool unit_can_isolate(Unit *u) _pure_;
87f0e418
LP
739
740int unit_start(Unit *u);
741int unit_stop(Unit *u);
742int unit_reload(Unit *u);
743
718db961
LP
744int unit_kill(Unit *u, KillWho w, int signo, sd_bus_error *error);
745int unit_kill_common(Unit *u, KillWho who, int signo, pid_t main_pid, pid_t control_pid, sd_bus_error *error);
8a0867d6 746
2ad2e41a 747typedef enum UnitNotifyFlags {
ef31828d
LP
748 UNIT_NOTIFY_RELOAD_FAILURE = 1 << 0,
749 UNIT_NOTIFY_WILL_AUTO_RESTART = 1 << 1,
2ad2e41a
LP
750} UnitNotifyFlags;
751
752void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, UnitNotifyFlags flags);
87f0e418 753
f75f613d 754int unit_watch_pid(Unit *u, pid_t pid, bool exclusive);
87f0e418 755void unit_unwatch_pid(Unit *u, pid_t pid);
a911bb9a
LP
756void unit_unwatch_all_pids(Unit *u);
757
50be4f4a
LP
758int unit_enqueue_rewatch_pids(Unit *u);
759void unit_dequeue_rewatch_pids(Unit *u);
87f0e418 760
9806e87d 761int unit_install_bus_match(Unit *u, sd_bus *bus, const char *name);
05e343b7
LP
762int unit_watch_bus_name(Unit *u, const char *name);
763void unit_unwatch_bus_name(Unit *u, const char *name);
764
87f0e418
LP
765bool unit_job_is_applicable(Unit *u, JobType j);
766
0301abf4
LP
767int set_unit_path(const char *p);
768
50159e6a 769char *unit_dbus_path(Unit *u);
4b58153d 770char *unit_dbus_path_invocation_id(Unit *u);
50159e6a 771
f6ff8c29
LP
772int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
773
44a6b1b6 774bool unit_can_serialize(Unit *u) _pure_;
a34ceba6 775
d336ba9f 776int unit_add_node_dependency(Unit *u, const char *what, UnitDependency d, UnitDependencyMask mask);
44b0d1fd 777int unit_add_blockdev_dependency(Unit *u, const char *what, UnitDependencyMask mask);
6e2ef85b 778
be847e82 779int unit_coldplug(Unit *u);
f0831ed2 780void unit_catchup(Unit *u);
cca098b0 781
5bcf34eb 782void unit_status_printf(Unit *u, StatusType status_type, const char *status, const char *unit_status_msg_format) _printf_(4, 0);
9e58ff9c 783
45fb0699
LP
784bool unit_need_daemon_reload(Unit *u);
785
fdf20a31 786void unit_reset_failed(Unit *u);
5632e374 787
a7f241db 788Unit *unit_following(Unit *u);
eeaedb7c 789int unit_following_set(Unit *u, Set **s);
a7f241db 790
9444b1f2
LP
791const char *unit_slice_name(Unit *u);
792
44a6b1b6
ZJS
793bool unit_stop_pending(Unit *u) _pure_;
794bool unit_inactive_or_pending(Unit *u) _pure_;
31afa0a4 795bool unit_active_or_pending(Unit *u);
52a12341 796bool unit_will_restart_default(Unit *u);
deb4e708 797bool unit_will_restart(Unit *u);
18ffdfda 798
bba34eed
LP
799int unit_add_default_target_dependency(Unit *u, Unit *target);
800
3ecaa09b
LP
801void unit_start_on_failure(Unit *u);
802void unit_trigger_notify(Unit *u);
c0daa706 803
a4375746 804UnitFileState unit_get_unit_file_state(Unit *u);
d2dc52db 805int unit_get_unit_file_preset(Unit *u);
a4375746 806
7f7d01ed 807Unit* unit_ref_set(UnitRef *ref, Unit *source, Unit *target);
57020a3a
LP
808void unit_ref_unset(UnitRef *ref);
809
7f7d01ed
ZJS
810#define UNIT_DEREF(ref) ((ref).target)
811#define UNIT_ISSET(ref) (!!(ref).target)
57020a3a 812
598459ce 813int unit_patch_contexts(Unit *u);
e06c73cc 814
44a6b1b6 815ExecContext *unit_get_exec_context(Unit *u) _pure_;
718db961 816KillContext *unit_get_kill_context(Unit *u) _pure_;
4ad49000 817CGroupContext *unit_get_cgroup_context(Unit *u) _pure_;
598459ce 818
613b411c
LP
819ExecRuntime *unit_get_exec_runtime(Unit *u) _pure_;
820
821int unit_setup_exec_runtime(Unit *u);
29206d46 822int unit_setup_dynamic_creds(Unit *u);
3ef63c31 823
2e59b241
LP
824char* unit_escape_setting(const char *s, UnitWriteFlags flags, char **buf);
825char* unit_concat_strv(char **l, UnitWriteFlags flags);
b9ec9359 826
2e59b241
LP
827int unit_write_setting(Unit *u, UnitWriteFlags flags, const char *name, const char *data);
828int unit_write_settingf(Unit *u, UnitWriteFlags mode, const char *name, const char *format, ...) _printf_(4,5);
b9ec9359 829
db2cb23b 830int unit_kill_context(Unit *u, KillContext *c, KillOperation k, pid_t main_pid, pid_t control_pid, bool main_pid_alien);
cd2086fe 831
c2756a68
LP
832int unit_make_transient(Unit *u);
833
eef85c4a 834int unit_require_mounts_for(Unit *u, const char *path, UnitDependencyMask mask);
a57f7e2c 835
1c2e9646
LP
836bool unit_type_supported(UnitType t);
837
0f13f3bd
LP
838bool unit_is_pristine(Unit *u);
839
a3c1168a
LP
840bool unit_is_unneeded(Unit *u);
841
291d565a
LP
842pid_t unit_control_pid(Unit *u);
843pid_t unit_main_pid(Unit *u);
844
8b4305c7 845void unit_warn_if_dir_nonempty(Unit *u, const char* where);
25cd4964 846int unit_fail_if_noncanonical(Unit *u, const char* where);
8b4305c7 847
97a3f4ee 848int unit_test_start_limit(Unit *u);
07299350 849
00d9ef85
LP
850int unit_ref_uid_gid(Unit *u, uid_t uid, gid_t gid);
851void unit_unref_uid_gid(Unit *u, bool destroy_now);
852
853void unit_notify_user_lookup(Unit *u, uid_t uid, gid_t gid);
854
2d3b784d 855int unit_set_invocation_id(Unit *u, sd_id128_t id);
4b58153d
LP
856int unit_acquire_invocation_id(Unit *u);
857
c891efaf
FB
858bool unit_shall_confirm_spawn(Unit *u);
859
1ad6e8b3 860int unit_set_exec_params(Unit *s, ExecParameters *p);
f0d47797 861
4c253ed1 862int unit_fork_helper_process(Unit *u, const char *name, pid_t *ret);
810ef318 863int unit_fork_and_watch_rm_rf(Unit *u, char **paths, pid_t *ret_pid);
a79279c7 864
c999cf38
LP
865void unit_remove_dependencies(Unit *u, UnitDependencyMask mask);
866
d3070fbd
LP
867void unit_export_state_files(Unit *u);
868void unit_unlink_state_files(Unit *u);
869
3c7416b6
LP
870int unit_prepare_exec(Unit *u);
871
4c425434
LP
872int unit_log_leftover_process_start(pid_t pid, int sig, void *userdata);
873int unit_log_leftover_process_stop(pid_t pid, int sig, void *userdata);
874int unit_warn_leftover_processes(Unit *u, cg_kill_log_func_t log_func);
a4634b21 875
bb2c7685
LP
876bool unit_needs_console(Unit *u);
877
f156e60c 878const char *unit_label_path(const Unit *u);
81e9871e 879
6592b975
LP
880int unit_pid_attachable(Unit *unit, pid_t pid, sd_bus_error *error);
881
28a2dfe8
ZJS
882static inline bool unit_has_job_type(Unit *u, JobType type) {
883 return u && u->job && u->job->type == type;
884}
885
31cd5f63
AZ
886/* unit_log_skip is for cases like ExecCondition= where a unit is considered "done"
887 * after some execution, rather than succeeded or failed. */
888void unit_log_skip(Unit *u, const char *result);
523ee2d4 889void unit_log_success(Unit *u);
7c047d74 890void unit_log_failure(Unit *u, const char *result);
aac99f30
ZJS
891static inline void unit_log_result(Unit *u, bool success, const char *result) {
892 if (success)
893 unit_log_success(u);
894 else
895 unit_log_failure(u, result);
896}
897
5cc2cd1c 898void unit_log_process_exit(Unit *u, const char *kind, const char *command, bool success, int code, int status);
7c047d74 899
7af67e9a
LP
900int unit_exit_status(Unit *u);
901int unit_success_action_exit_status(Unit *u);
902int unit_failure_action_exit_status(Unit *u);
903
a4191c9f
LP
904int unit_test_trigger_loaded(Unit *u);
905
bb0c0d6f 906void unit_destroy_runtime_data(Unit *u, const ExecContext *context);
380dc8b0
LP
907int unit_clean(Unit *u, ExecCleanMask mask);
908int unit_can_clean(Unit *u, ExecCleanMask *ret_mask);
909
d9e45bc3
MS
910bool unit_can_freeze(Unit *u);
911int unit_freeze(Unit *u);
912void unit_frozen(Unit *u);
913
914int unit_thaw(Unit *u);
915void unit_thawed(Unit *u);
916
917int unit_freeze_vtable_common(Unit *u);
918int unit_thaw_vtable_common(Unit *u);
919
e8e581bf
ZJS
920/* Macros which append UNIT= or USER_UNIT= to the message */
921
8ed6f81b 922#define log_unit_full_errno(unit, level, error, ...) \
f2341e0a 923 ({ \
8dec4a9d 924 const Unit *_u = (unit); \
c5bc2c01
LB
925 (log_get_max_level() < LOG_PRI(level)) ? -ERRNO_VALUE(error) : \
926 _u ? log_object_internal(level, error, PROJECT_FILE, __LINE__, __func__, _u->manager->unit_log_field, _u->id, _u->manager->invocation_log_field, _u->invocation_id_string, ##__VA_ARGS__) : \
927 log_internal(level, error, PROJECT_FILE, __LINE__, __func__, ##__VA_ARGS__); \
f2341e0a
LP
928 })
929
8ed6f81b
YW
930#define log_unit_full(unit, level, ...) (void) log_unit_full_errno(unit, level, 0, __VA_ARGS__)
931
932#define log_unit_debug(unit, ...) log_unit_full_errno(unit, LOG_DEBUG, 0, __VA_ARGS__)
933#define log_unit_info(unit, ...) log_unit_full(unit, LOG_INFO, __VA_ARGS__)
934#define log_unit_notice(unit, ...) log_unit_full(unit, LOG_NOTICE, __VA_ARGS__)
935#define log_unit_warning(unit, ...) log_unit_full(unit, LOG_WARNING, __VA_ARGS__)
936#define log_unit_error(unit, ...) log_unit_full(unit, LOG_ERR, __VA_ARGS__)
937
938#define log_unit_debug_errno(unit, error, ...) log_unit_full_errno(unit, LOG_DEBUG, error, __VA_ARGS__)
939#define log_unit_info_errno(unit, error, ...) log_unit_full_errno(unit, LOG_INFO, error, __VA_ARGS__)
940#define log_unit_notice_errno(unit, error, ...) log_unit_full_errno(unit, LOG_NOTICE, error, __VA_ARGS__)
941#define log_unit_warning_errno(unit, error, ...) log_unit_full_errno(unit, LOG_WARNING, error, __VA_ARGS__)
942#define log_unit_error_errno(unit, error, ...) log_unit_full_errno(unit, LOG_ERR, error, __VA_ARGS__)
f2341e0a
LP
943
944#define LOG_UNIT_MESSAGE(unit, fmt, ...) "MESSAGE=%s: " fmt, (unit)->id, ##__VA_ARGS__
945#define LOG_UNIT_ID(unit) (unit)->manager->unit_log_format_string, (unit)->id
f1c50bec 946#define LOG_UNIT_INVOCATION_ID(unit) (unit)->manager->invocation_log_format_string, (unit)->invocation_id_string
5afe510c
LP
947
948const char* collect_mode_to_string(CollectMode m) _const_;
949CollectMode collect_mode_from_string(const char *s) _pure_;