]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/unit.h
basic/log: always ignore errno from the enviornment (#8841)
[thirdparty/systemd.git] / src / core / unit.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
c2f1db8f 2#pragma once
87f0e418 3
a7334b09
LP
4/***
5 This file is part of systemd.
6
7 Copyright 2010 Lennart Poettering
a7334b09
LP
8***/
9
87f0e418
LP
10#include <stdbool.h>
11#include <stdlib.h>
bbc9006e 12#include <unistd.h>
87f0e418 13
ac155bb8 14typedef struct Unit Unit;
87f0e418 15typedef struct UnitVTable UnitVTable;
57020a3a 16typedef struct UnitRef UnitRef;
c6918296 17typedef struct UnitStatusMessageFormats UnitStatusMessageFormats;
87f0e418 18
6a48d82f 19#include "bpf-program.h"
134e56dc 20#include "condition.h"
87a47f99 21#include "emergency-action.h"
a4375746 22#include "install.h"
71d35b6b 23#include "list.h"
0a9f8ed0 24#include "unit-name.h"
6b659ed8 25#include "cgroup.h"
87f0e418 26
db2cb23b
UTL
27typedef enum KillOperation {
28 KILL_TERMINATE,
1d98fef1 29 KILL_TERMINATE_AND_LOG,
db2cb23b
UTL
30 KILL_KILL,
31 KILL_ABORT,
4940c0b0
LP
32 _KILL_OPERATION_MAX,
33 _KILL_OPERATION_INVALID = -1
db2cb23b
UTL
34} KillOperation;
35
5afe510c
LP
36typedef enum CollectMode {
37 COLLECT_INACTIVE,
38 COLLECT_INACTIVE_OR_FAILED,
39 _COLLECT_MODE_MAX,
40 _COLLECT_MODE_INVALID = -1,
41} CollectMode;
42
87f0e418 43static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
3742095b 44 return IN_SET(t, UNIT_ACTIVE, UNIT_RELOADING);
87f0e418
LP
45}
46
47static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
3742095b 48 return IN_SET(t, UNIT_ACTIVE, UNIT_ACTIVATING, UNIT_RELOADING);
87f0e418
LP
49}
50
51static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
3742095b 52 return IN_SET(t, UNIT_INACTIVE, UNIT_FAILED, UNIT_DEACTIVATING);
6124958c
LP
53}
54
fdf20a31 55static inline bool UNIT_IS_INACTIVE_OR_FAILED(UnitActiveState t) {
3742095b 56 return IN_SET(t, UNIT_INACTIVE, UNIT_FAILED);
87f0e418
LP
57}
58
eef85c4a
LP
59/* Stores the 'reason' a dependency was created as a bit mask, i.e. due to which configuration source it came to be. We
60 * use this so that we can selectively flush out parts of dependencies again. Note that the same dependency might be
61 * created as a result of multiple "reasons", hence the bitmask. */
62typedef enum UnitDependencyMask {
63 /* Configured directly by the unit file, .wants/.requries symlink or drop-in, or as an immediate result of a
64 * non-dependency option configured that way. */
65 UNIT_DEPENDENCY_FILE = 1 << 0,
66
67 /* As unconditional implicit dependency (not affected by unit configuration — except by the unit name and
68 * type) */
69 UNIT_DEPENDENCY_IMPLICIT = 1 << 1,
70
71 /* A dependency effected by DefaultDependencies=yes. Note that dependencies marked this way are conceptually
72 * just a subset of UNIT_DEPENDENCY_FILE, as DefaultDependencies= is itself a unit file setting that can only
73 * be set in unit files. We make this two separate bits only to help debugging how dependencies came to be. */
74 UNIT_DEPENDENCY_DEFAULT = 1 << 2,
75
76 /* A dependency created from udev rules */
77 UNIT_DEPENDENCY_UDEV = 1 << 3,
78
79 /* A dependency created because of some unit's RequiresMountsFor= setting */
80 UNIT_DEPENDENCY_PATH = 1 << 4,
81
82 /* A dependency created because of data read from /proc/self/mountinfo and no other configuration source */
83 UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT = 1 << 5,
84
85 /* A dependency created because of data read from /proc/self/mountinfo, but conditionalized by
86 * DefaultDependencies= and thus also involving configuration from UNIT_DEPENDENCY_FILE sources */
87 UNIT_DEPENDENCY_MOUNTINFO_DEFAULT = 1 << 6,
88
89 /* A dependency created because of data read from /proc/swaps and no other configuration source */
90 UNIT_DEPENDENCY_PROC_SWAP = 1 << 7,
91
92 _UNIT_DEPENDENCY_MASK_FULL = (1 << 8) - 1,
93} UnitDependencyMask;
94
95/* The Unit's dependencies[] hashmaps use this structure as value. It has the same size as a void pointer, and thus can
96 * be stored directly as hashmap value, without any indirection. Note that this stores two masks, as both the origin
97 * and the destination of a dependency might have created it. */
98typedef union UnitDependencyInfo {
99 void *data;
100 struct {
101 UnitDependencyMask origin_mask:16;
102 UnitDependencyMask destination_mask:16;
103 } _packed_;
104} UnitDependencyInfo;
105
ef734fd6
LP
106#include "job.h"
107
a016b922
LP
108struct UnitRef {
109 /* Keeps tracks of references to a unit. This is useful so
110 * that we can merge two units if necessary and correct all
111 * references to them */
112
7f7d01ed
ZJS
113 Unit *source, *target;
114 LIST_FIELDS(UnitRef, refs_by_target);
a016b922
LP
115};
116
906c06f6
DM
117typedef enum UnitCGroupBPFState {
118 UNIT_CGROUP_BPF_OFF = 0,
119 UNIT_CGROUP_BPF_ON = 1,
120 UNIT_CGROUP_BPF_INVALIDATED = -1,
121} UnitCGroupBPFState;
122
ac155bb8 123struct Unit {
87f0e418 124 Manager *manager;
23a177ef 125
87f0e418
LP
126 UnitType type;
127 UnitLoadState load_state;
23a177ef 128 Unit *merged_into;
87f0e418
LP
129
130 char *id; /* One name is special because we use it for identification. Points to an entry in the names set */
9e2f7c11 131 char *instance;
87f0e418
LP
132
133 Set *names;
87f0e418 134
eef85c4a
LP
135 /* For each dependency type we maintain a Hashmap whose key is the Unit* object, and the value encodes why the
136 * dependency exists, using the UnitDependencyInfo type */
137 Hashmap *dependencies[_UNIT_DEPENDENCY_MAX];
138
139 /* Similar, for RequiresMountsFor= path dependencies. The key is the path, the value the UnitDependencyInfo type */
140 Hashmap *requires_mounts_for;
7c8fa05c 141
87f0e418 142 char *description;
49dbfa7b 143 char **documentation;
faf919f1 144
6be1e7d5 145 char *fragment_path; /* if loaded from a config file this is the primary path to it */
1b64d026 146 char *source_path; /* if converted, the source file */
ae7a7182 147 char **dropin_paths;
f78f265f 148
45fb0699 149 usec_t fragment_mtime;
1b64d026 150 usec_t source_mtime;
ae7a7182 151 usec_t dropin_mtime;
87f0e418 152
4f4afc88
LP
153 /* If this is a transient unit we are currently writing, this is where we are writing it to */
154 FILE *transient_file;
155
e0209d83 156 /* If there is something to do with this unit, then this is the installed job for it */
87f0e418
LP
157 Job *job;
158
e0209d83
MS
159 /* JOB_NOP jobs are special and can be installed without disturbing the real job. */
160 Job *nop_job;
161
bbc29086
DM
162 /* The slot used for watching NameOwnerChanged signals */
163 sd_bus_slot *match_bus_slot;
164
05a98afd
LP
165 /* References to this unit from clients */
166 sd_bus_track *bus_track;
167 char **deserialized_refs;
168
f189ab18 169 /* Job timeout and action to take */
faf919f1 170 usec_t job_timeout;
a2df3ea4 171 usec_t job_running_timeout;
eae51da3 172 bool job_running_timeout_set:1;
87a47f99 173 EmergencyAction job_timeout_action;
f189ab18 174 char *job_timeout_reboot_arg;
faf919f1 175
57020a3a 176 /* References to this */
7f7d01ed 177 LIST_HEAD(UnitRef, refs_by_target);
57020a3a 178
52661efd
LP
179 /* Conditions to check */
180 LIST_HEAD(Condition, conditions);
59fccdc5 181 LIST_HEAD(Condition, asserts);
52661efd 182
90bbc946 183 dual_timestamp condition_timestamp;
59fccdc5 184 dual_timestamp assert_timestamp;
90bbc946 185
a483fb59
LP
186 /* Updated whenever the low-level state changes */
187 dual_timestamp state_change_timestamp;
188
189 /* Updated whenever the (high-level) active state enters or leaves the active or inactive states */
63983207
LP
190 dual_timestamp inactive_exit_timestamp;
191 dual_timestamp active_enter_timestamp;
192 dual_timestamp active_exit_timestamp;
193 dual_timestamp inactive_enter_timestamp;
87f0e418 194
a016b922
LP
195 UnitRef slice;
196
ef734fd6 197 /* Per type list */
ac155bb8 198 LIST_FIELDS(Unit, units_by_type);
c1e1601e 199
7c8fa05c
LP
200 /* All units which have requires_mounts_for set */
201 LIST_FIELDS(Unit, has_requires_mounts_for);
202
701cc384 203 /* Load queue */
ac155bb8 204 LIST_FIELDS(Unit, load_queue);
701cc384 205
c1e1601e 206 /* D-Bus queue */
ac155bb8 207 LIST_FIELDS(Unit, dbus_queue);
23a177ef
LP
208
209 /* Cleanup queue */
ac155bb8 210 LIST_FIELDS(Unit, cleanup_queue);
9d58f1db 211
701cc384 212 /* GC queue */
ac155bb8 213 LIST_FIELDS(Unit, gc_queue);
701cc384 214
4ad49000 215 /* CGroup realize members queue */
91a6073e 216 LIST_FIELDS(Unit, cgroup_realize_queue);
4ad49000 217
09e24654
LP
218 /* cgroup empty queue */
219 LIST_FIELDS(Unit, cgroup_empty_queue);
220
19496554
MS
221 /* Target dependencies queue */
222 LIST_FIELDS(Unit, target_deps_queue);
223
a911bb9a
LP
224 /* PIDs we keep an eye on. Note that a unit might have many
225 * more, but these are the ones we care enough about to
226 * process SIGCHLD for */
227 Set *pids;
228
62a76913
LP
229 /* Used in SIGCHLD and sd_notify() message event invocation logic to avoid that we dispatch the same event
230 * multiple times on the same unit. */
231 unsigned sigchldgen;
232 unsigned notifygen;
36f20ae3 233
701cc384 234 /* Used during GC sweeps */
eced69b3 235 unsigned gc_marker;
701cc384 236
8821a00f
LP
237 /* Error code when we didn't manage to load the unit (negative) */
238 int load_error;
239
6bf0f408
LP
240 /* Put a ratelimit on unit starting */
241 RateLimit start_limit;
87a47f99 242 EmergencyAction start_limit_action;
53c35a76
LP
243
244 EmergencyAction failure_action;
e7dfbb4e 245 EmergencyAction success_action;
6bf0f408
LP
246 char *reboot_arg;
247
67bfdc97
LP
248 /* Make sure we never enter endless loops with the check unneeded logic, or the BindsTo= logic */
249 RateLimit auto_stop_ratelimit;
bea355da 250
00d9ef85
LP
251 /* Reference to a specific UID/GID */
252 uid_t ref_uid;
253 gid_t ref_gid;
254
d2dc52db 255 /* Cached unit file state and preset */
a4375746 256 UnitFileState unit_file_state;
d2dc52db 257 int unit_file_preset;
a4375746 258
66ebf6c0
TH
259 /* Where the cpu.stat or cpuacct.usage was at the time the unit was started */
260 nsec_t cpu_usage_base;
fe700f46 261 nsec_t cpu_usage_last; /* the most recently read value */
5ad096b3 262
7c52a17b
ZJS
263 /* Counterparts in the cgroup filesystem */
264 char *cgroup_path;
efdb0237 265 CGroupMask cgroup_realized_mask;
ccf78df1 266 CGroupMask cgroup_enabled_mask;
efdb0237
LP
267 CGroupMask cgroup_subtree_mask;
268 CGroupMask cgroup_members_mask;
269 int cgroup_inotify_wd;
7c52a17b 270
6a48d82f
DM
271 /* IP BPF Firewalling/accounting */
272 int ip_accounting_ingress_map_fd;
273 int ip_accounting_egress_map_fd;
274
275 int ipv4_allow_map_fd;
276 int ipv6_allow_map_fd;
277 int ipv4_deny_map_fd;
278 int ipv6_deny_map_fd;
279
aa2b6f1d
LP
280 BPFProgram *ip_bpf_ingress, *ip_bpf_ingress_installed;
281 BPFProgram *ip_bpf_egress, *ip_bpf_egress_installed;
6a48d82f 282
6b659ed8
LP
283 uint64_t ip_accounting_extra[_CGROUP_IP_ACCOUNTING_METRIC_MAX];
284
7c52a17b
ZJS
285 /* How to start OnFailure units */
286 JobMode on_failure_job_mode;
287
5afe510c
LP
288 /* Tweaking the GC logic */
289 CollectMode collect_mode;
290
4b58153d
LP
291 /* The current invocation ID */
292 sd_id128_t invocation_id;
293 char invocation_id_string[SD_ID128_STRING_MAX]; /* useful when logging */
294
9d58f1db
LP
295 /* Garbage collect us we nobody wants or requires us anymore */
296 bool stop_when_unneeded;
297
35b8ca3a 298 /* Create default dependencies */
a40eb732
LP
299 bool default_dependencies;
300
b5e9dba8
LP
301 /* Refuse manual starting, allow starting only indirectly via dependency. */
302 bool refuse_manual_start;
303
304 /* Don't allow the user to stop this unit manually, allow stopping only indirectly via dependency. */
305 bool refuse_manual_stop;
306
2528a7a6
LP
307 /* Allow isolation requests */
308 bool allow_isolate;
309
c8f4d764
LP
310 /* Ignore this unit when isolating */
311 bool ignore_on_isolate;
312
49f43d5f 313 /* Did the last condition check succeed? */
90bbc946 314 bool condition_result;
59fccdc5 315 bool assert_result;
90bbc946 316
c2756a68
LP
317 /* Is this a transient unit? */
318 bool transient;
319
f5869324
LP
320 /* Is this a unit that is always running and cannot be stopped? */
321 bool perpetual;
322
9d58f1db
LP
323 bool in_load_queue:1;
324 bool in_dbus_queue:1;
325 bool in_cleanup_queue:1;
701cc384 326 bool in_gc_queue:1;
91a6073e 327 bool in_cgroup_realize_queue:1;
09e24654 328 bool in_cgroup_empty_queue:1;
19496554 329 bool in_target_deps_queue:1;
701cc384 330
9d58f1db 331 bool sent_dbus_new_signal:1;
6c073082 332
cd6d0a45 333 bool in_audit:1;
adefcf28 334 bool on_console:1;
a57f7e2c
LP
335
336 bool cgroup_realized:1;
bc432dc7
LP
337 bool cgroup_members_mask_valid:1;
338 bool cgroup_subtree_mask_valid:1;
f78f265f 339
906c06f6
DM
340 UnitCGroupBPFState cgroup_bpf_state:2;
341
3c7416b6
LP
342 /* Reset cgroup accounting next time we fork something off */
343 bool reset_accounting:1;
344
6bf0f408
LP
345 bool start_limit_hit:1;
346
f78f265f 347 /* Did we already invoke unit_coldplug() for this unit? */
f8a30ce5 348 bool coldplugged:1;
05a98afd
LP
349
350 /* For transient units: whether to add a bus track reference after creating the unit */
351 bool bus_track_add:1;
d3070fbd
LP
352
353 /* Remember which unit state files we created */
354 bool exported_invocation_id:1;
355 bool exported_log_level_max:1;
356 bool exported_log_extra_fields:1;
2e59b241
LP
357
358 /* When writing transient unit files, stores which section we stored last. If < 0, we didn't write any yet. If
359 * == 0 we are in the [Unit] section, if > 0 we are in the unit type-specific section. */
360 int last_section_private:2;
87f0e418
LP
361};
362
c6918296
MS
363struct UnitStatusMessageFormats {
364 const char *starting_stopping[2];
365 const char *finished_start_job[_JOB_RESULT_MAX];
366 const char *finished_stop_job[_JOB_RESULT_MAX];
367};
368
2e59b241
LP
369/* Flags used when writing drop-in files or transient unit files */
370typedef enum UnitWriteFlags {
371 /* Write a runtime unit file or drop-in (i.e. one below /run) */
372 UNIT_RUNTIME = 1 << 0,
373
374 /* Write a persistent drop-in (i.e. one below /etc) */
375 UNIT_PERSISTENT = 1 << 1,
376
377 /* Place this item in the per-unit-type private section, instead of [Unit] */
378 UNIT_PRIVATE = 1 << 2,
379
380 /* Apply specifier escaping before writing */
381 UNIT_ESCAPE_SPECIFIERS = 1 << 3,
382
383 /* Apply C escaping before writing */
384 UNIT_ESCAPE_C = 1 << 4,
385} UnitWriteFlags;
386
387/* Returns true if neither persistent, nor runtime storage is requested, i.e. this is a check invocation only */
388#define UNIT_WRITE_FLAGS_NOOP(flags) (((flags) & (UNIT_RUNTIME|UNIT_PERSISTENT)) == 0)
8e2af478 389
71d35b6b 390#include "automount.h"
87f0e418 391#include "device.h"
c1ff5570 392#include "path.h"
6c12b52e 393#include "scope.h"
71d35b6b
TA
394#include "slice.h"
395#include "socket.h"
396#include "swap.h"
397#include "target.h"
398#include "timer.h"
87f0e418 399
87f0e418 400struct UnitVTable {
7d17cfbc
MS
401 /* How much memory does an object of this unit type need */
402 size_t object_size;
403
3ef63c31
LP
404 /* If greater than 0, the offset into the object where
405 * ExecContext is found, if the unit type has that */
406 size_t exec_context_offset;
407
4ad49000
LP
408 /* If greater than 0, the offset into the object where
409 * CGroupContext is found, if the unit type has that */
410 size_t cgroup_context_offset;
411
718db961
LP
412 /* If greater than 0, the offset into the object where
413 * KillContext is found, if the unit type has that */
414 size_t kill_context_offset;
415
613b411c
LP
416 /* If greater than 0, the offset into the object where the
417 * pointer to ExecRuntime is found, if the unit type has
418 * that */
419 size_t exec_runtime_offset;
420
29206d46
LP
421 /* If greater than 0, the offset into the object where the pointer to DynamicCreds is found, if the unit type
422 * has that. */
423 size_t dynamic_creds_offset;
424
ee33e53a 425 /* The name of the configuration file section with the private settings of this unit */
4ad49000 426 const char *private_section;
71645aca 427
f975e971
LP
428 /* Config file sections this unit type understands, separated
429 * by NUL chars */
430 const char *sections;
431
e537352b 432 /* This should reset all type-specific variables. This should
a16e1123
LP
433 * not allocate memory, and is called with zero-initialized
434 * data. It should hence only initialize variables that need
435 * to be set != 0. */
e537352b
LP
436 void (*init)(Unit *u);
437
a16e1123
LP
438 /* This should free all type-specific variables. It should be
439 * idempotent. */
440 void (*done)(Unit *u);
441
e537352b
LP
442 /* Actually load data from disk. This may fail, and should set
443 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
444 * UNIT_STUB if no configuration could be found. */
445 int (*load)(Unit *u);
446
c5315881 447 /* If a lot of units got created via enumerate(), this is
be847e82
LP
448 * where to actually set the state and call unit_notify(). */
449 int (*coldplug)(Unit *u);
87f0e418
LP
450
451 void (*dump)(Unit *u, FILE *f, const char *prefix);
452
453 int (*start)(Unit *u);
454 int (*stop)(Unit *u);
455 int (*reload)(Unit *u);
456
718db961 457 int (*kill)(Unit *u, KillWho w, int signo, sd_bus_error *error);
8a0867d6 458
87f0e418
LP
459 bool (*can_reload)(Unit *u);
460
a16e1123
LP
461 /* Write all data that cannot be restored from other sources
462 * away using unit_serialize_item() */
463 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
464
465 /* Restore one item from the serialization */
466 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
467
01e10de3 468 /* Try to match up fds with what we need for this unit */
9ff1a6f1 469 void (*distribute_fds)(Unit *u, FDSet *fds);
01e10de3 470
87f0e418
LP
471 /* Boils down the more complex internal state of this unit to
472 * a simpler one that the engine can understand */
473 UnitActiveState (*active_state)(Unit *u);
474
10a94420
LP
475 /* Returns the substate specific to this unit type as
476 * string. This is purely information so that we can give the
35b8ca3a 477 * user a more fine grained explanation in which actual state a
10a94420
LP
478 * unit is in. */
479 const char* (*sub_state_to_string)(Unit *u);
480
deb4e708
MK
481 /* Additionally to UnitActiveState determine whether unit is to be restarted. */
482 bool (*will_restart)(Unit *u);
483
f2f725e5
ZJS
484 /* Return false when there is a reason to prevent this unit from being gc'ed
485 * even though nothing references it and it isn't active in any way. */
486 bool (*may_gc)(Unit *u);
701cc384 487
7eb2a8a1
LP
488 /* When the unit is not running and no job for it queued we shall release its runtime resources */
489 void (*release_resources)(Unit *u);
a354329f 490
718db961 491 /* Invoked on every child that died */
87f0e418 492 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
7824bbeb 493
fdf20a31
MM
494 /* Reset failed state if we are in failed state */
495 void (*reset_failed)(Unit *u);
5632e374 496
05e343b7
LP
497 /* Called whenever any of the cgroups this unit watches for
498 * ran empty */
4ad49000 499 void (*notify_cgroup_empty)(Unit *u);
8e274523 500
8c47c732 501 /* Called whenever a process of this unit sends us a message */
db256aab 502 void (*notify_message)(Unit *u, const struct ucred *ucred, char **tags, FDSet *fds);
8c47c732 503
00d9ef85 504 /* Called whenever a name this Unit registered for comes or goes away. */
05e343b7
LP
505 void (*bus_name_owner_change)(Unit *u, const char *name, const char *old_owner, const char *new_owner);
506
8e2af478 507 /* Called for each property that is being set */
2e59b241 508 int (*bus_set_property)(Unit *u, const char *name, sd_bus_message *message, UnitWriteFlags flags, sd_bus_error *error);
8e2af478
LP
509
510 /* Called after at least one property got changed to apply the necessary change */
511 int (*bus_commit_properties)(Unit *u);
512
a7f241db
LP
513 /* Return the unit this unit is following */
514 Unit *(*following)(Unit *u);
515
6210e7fc
LP
516 /* Return the set of units that are following each other */
517 int (*following_set)(Unit *u, Set **s);
518
3ecaa09b
LP
519 /* Invoked each time a unit this unit is triggering changes
520 * state or gains/loses a job */
521 void (*trigger_notify)(Unit *u, Unit *trigger);
522
8742514c
LP
523 /* Called whenever CLOCK_REALTIME made a jump */
524 void (*time_change)(Unit *u);
525
7a7821c8
LP
526 /* Returns the next timeout of a unit */
527 int (*get_timeout)(Unit *u, usec_t *timeout);
68db7a3b 528
291d565a
LP
529 /* Returns the main PID if there is any defined, or 0. */
530 pid_t (*main_pid)(Unit *u);
531
532 /* Returns the main PID if there is any defined, or 0. */
533 pid_t (*control_pid)(Unit *u);
534
bb2c7685
LP
535 /* Returns true if the unit currently needs access to the console */
536 bool (*needs_console)(Unit *u);
537
f50e0a01
LP
538 /* This is called for each unit type and should be used to
539 * enumerate existing devices and load them. However,
540 * everything that is loaded here should still stay in
541 * inactive state. It is the job of the coldplug() call above
542 * to put the units into the initial state. */
ba64af90 543 void (*enumerate)(Manager *m);
f50e0a01
LP
544
545 /* Type specific cleanups. */
7824bbeb 546 void (*shutdown)(Manager *m);
9d58f1db 547
0faacd47
LP
548 /* If this function is set and return false all jobs for units
549 * of this type will immediately fail. */
1c2e9646 550 bool (*supported)(void);
0faacd47 551
718db961
LP
552 /* The bus vtable */
553 const sd_bus_vtable *bus_vtable;
554
718db961 555 /* The strings to print in status messages */
c6918296
MS
556 UnitStatusMessageFormats status_message_formats;
557
c2756a68
LP
558 /* True if transient units of this type are OK */
559 bool can_transient:1;
c5a97ed1 560
1d9cc876
LP
561 /* True if cgroup delegation is permissible */
562 bool can_delegate:1;
563
c5a97ed1
LP
564 /* True if queued jobs of this type should be GC'ed if no other job needs them anymore */
565 bool gc_jobs:1;
87f0e418
LP
566};
567
568extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
569
ac155bb8 570#define UNIT_VTABLE(u) unit_vtable[(u)->type]
87f0e418
LP
571
572/* For casting a unit into the various unit types */
573#define DEFINE_CAST(UPPERCASE, MixedCase) \
574 static inline MixedCase* UPPERCASE(Unit *u) { \
ac155bb8 575 if (_unlikely_(!u || u->type != UNIT_##UPPERCASE)) \
87f0e418
LP
576 return NULL; \
577 \
578 return (MixedCase*) u; \
579 }
580
581/* For casting the various unit types into a unit */
ac155bb8 582#define UNIT(u) (&(u)->meta)
87f0e418 583
35b7ff80
LP
584#define UNIT_HAS_EXEC_CONTEXT(u) (UNIT_VTABLE(u)->exec_context_offset > 0)
585#define UNIT_HAS_CGROUP_CONTEXT(u) (UNIT_VTABLE(u)->cgroup_context_offset > 0)
586#define UNIT_HAS_KILL_CONTEXT(u) (UNIT_VTABLE(u)->kill_context_offset > 0)
587
eef85c4a 588#define UNIT_TRIGGER(u) ((Unit*) hashmap_first_key((u)->dependencies[UNIT_TRIGGERS]))
3ecaa09b 589
87f0e418 590DEFINE_CAST(SERVICE, Service);
e821075a 591DEFINE_CAST(SOCKET, Socket);
87f0e418
LP
592DEFINE_CAST(TARGET, Target);
593DEFINE_CAST(DEVICE, Device);
594DEFINE_CAST(MOUNT, Mount);
595DEFINE_CAST(AUTOMOUNT, Automount);
07b0b134 596DEFINE_CAST(SWAP, Swap);
e821075a 597DEFINE_CAST(TIMER, Timer);
01f78473 598DEFINE_CAST(PATH, Path);
a016b922 599DEFINE_CAST(SLICE, Slice);
6c12b52e 600DEFINE_CAST(SCOPE, Scope);
87f0e418 601
7d17cfbc 602Unit *unit_new(Manager *m, size_t size);
87f0e418 603void unit_free(Unit *u);
dc409696 604DEFINE_TRIVIAL_CLEANUP_FUNC(Unit *, unit_free);
87f0e418 605
a581e45a 606int unit_new_for_name(Manager *m, size_t size, const char *name, Unit **ret);
87f0e418 607int unit_add_name(Unit *u, const char *name);
9e2f7c11 608
eef85c4a
LP
609int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference, UnitDependencyMask mask);
610int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference, UnitDependencyMask mask);
2c966c03 611
eef85c4a
LP
612int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference, UnitDependencyMask mask);
613int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference, UnitDependencyMask mask);
2c966c03 614
23a177ef
LP
615int unit_add_exec_dependencies(Unit *u, ExecContext *c);
616
0ae97ec1 617int unit_choose_id(Unit *u, const char *name);
f50e0a01 618int unit_set_description(Unit *u, const char *description);
87f0e418 619
f2f725e5 620bool unit_may_gc(Unit *u);
701cc384 621
87f0e418 622void unit_add_to_load_queue(Unit *u);
c1e1601e 623void unit_add_to_dbus_queue(Unit *u);
23a177ef 624void unit_add_to_cleanup_queue(Unit *u);
701cc384 625void unit_add_to_gc_queue(Unit *u);
19496554 626void unit_add_to_target_deps_queue(Unit *u);
87f0e418
LP
627
628int unit_merge(Unit *u, Unit *other);
23a177ef
LP
629int unit_merge_by_name(Unit *u, const char *other);
630
44a6b1b6 631Unit *unit_follow_merge(Unit *u) _pure_;
87f0e418 632
e537352b
LP
633int unit_load_fragment_and_dropin(Unit *u);
634int unit_load_fragment_and_dropin_optional(Unit *u);
87f0e418
LP
635int unit_load(Unit *unit);
636
d79200e2
LP
637int unit_set_slice(Unit *u, Unit *slice);
638int unit_set_default_slice(Unit *u);
a016b922 639
44a6b1b6 640const char *unit_description(Unit *u) _pure_;
87f0e418 641
f278026d
LP
642bool unit_has_name(Unit *u, const char *name);
643
87f0e418
LP
644UnitActiveState unit_active_state(Unit *u);
645
10a94420
LP
646const char* unit_sub_state_to_string(Unit *u);
647
87f0e418
LP
648void unit_dump(Unit *u, FILE *f, const char *prefix);
649
44a6b1b6
ZJS
650bool unit_can_reload(Unit *u) _pure_;
651bool unit_can_start(Unit *u) _pure_;
f5869324 652bool unit_can_stop(Unit *u) _pure_;
44a6b1b6 653bool unit_can_isolate(Unit *u) _pure_;
87f0e418
LP
654
655int unit_start(Unit *u);
656int unit_stop(Unit *u);
657int unit_reload(Unit *u);
658
718db961
LP
659int unit_kill(Unit *u, KillWho w, int signo, sd_bus_error *error);
660int unit_kill_common(Unit *u, KillWho who, int signo, pid_t main_pid, pid_t control_pid, sd_bus_error *error);
8a0867d6 661
e2f3b44c 662void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, bool reload_success);
87f0e418 663
87f0e418
LP
664int unit_watch_pid(Unit *u, pid_t pid);
665void unit_unwatch_pid(Unit *u, pid_t pid);
a911bb9a
LP
666void unit_unwatch_all_pids(Unit *u);
667
668void unit_tidy_watch_pids(Unit *u, pid_t except1, pid_t except2);
87f0e418 669
9806e87d 670int unit_install_bus_match(Unit *u, sd_bus *bus, const char *name);
05e343b7
LP
671int unit_watch_bus_name(Unit *u, const char *name);
672void unit_unwatch_bus_name(Unit *u, const char *name);
673
87f0e418
LP
674bool unit_job_is_applicable(Unit *u, JobType j);
675
0301abf4
LP
676int set_unit_path(const char *p);
677
50159e6a 678char *unit_dbus_path(Unit *u);
4b58153d 679char *unit_dbus_path_invocation_id(Unit *u);
50159e6a 680
f6ff8c29
LP
681int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
682
44a6b1b6 683bool unit_can_serialize(Unit *u) _pure_;
a34ceba6 684
6b78f9b4 685int unit_serialize(Unit *u, FILE *f, FDSet *fds, bool serialize_jobs);
a16e1123 686int unit_deserialize(Unit *u, FILE *f, FDSet *fds);
07429866 687void unit_deserialize_skip(FILE *f);
a16e1123 688
a34ceba6
LP
689int unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value);
690int unit_serialize_item_escaped(Unit *u, FILE *f, const char *key, const char *value);
691int unit_serialize_item_fd(Unit *u, FILE *f, FDSet *fds, const char *key, int fd);
692void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *value, ...) _printf_(4,5);
693
eef85c4a 694int unit_add_node_dependency(Unit *u, const char *what, bool wants, UnitDependency d, UnitDependencyMask mask);
6e2ef85b 695
be847e82 696int unit_coldplug(Unit *u);
cca098b0 697
44b601bc 698void unit_status_printf(Unit *u, const char *status, const char *unit_status_msg_format) _printf_(3, 0);
d1a34ae9 699void unit_status_emit_starting_stopping_reloading(Unit *u, JobType t);
9e58ff9c 700
45fb0699
LP
701bool unit_need_daemon_reload(Unit *u);
702
fdf20a31 703void unit_reset_failed(Unit *u);
5632e374 704
a7f241db 705Unit *unit_following(Unit *u);
eeaedb7c 706int unit_following_set(Unit *u, Set **s);
a7f241db 707
9444b1f2
LP
708const char *unit_slice_name(Unit *u);
709
44a6b1b6
ZJS
710bool unit_stop_pending(Unit *u) _pure_;
711bool unit_inactive_or_pending(Unit *u) _pure_;
31afa0a4 712bool unit_active_or_pending(Unit *u);
deb4e708 713bool unit_will_restart(Unit *u);
18ffdfda 714
bba34eed
LP
715int unit_add_default_target_dependency(Unit *u, Unit *target);
716
3ecaa09b
LP
717void unit_start_on_failure(Unit *u);
718void unit_trigger_notify(Unit *u);
c0daa706 719
a4375746 720UnitFileState unit_get_unit_file_state(Unit *u);
d2dc52db 721int unit_get_unit_file_preset(Unit *u);
a4375746 722
7f7d01ed 723Unit* unit_ref_set(UnitRef *ref, Unit *source, Unit *target);
57020a3a
LP
724void unit_ref_unset(UnitRef *ref);
725
7f7d01ed
ZJS
726#define UNIT_DEREF(ref) ((ref).target)
727#define UNIT_ISSET(ref) (!!(ref).target)
57020a3a 728
598459ce 729int unit_patch_contexts(Unit *u);
e06c73cc 730
44a6b1b6 731ExecContext *unit_get_exec_context(Unit *u) _pure_;
718db961 732KillContext *unit_get_kill_context(Unit *u) _pure_;
4ad49000 733CGroupContext *unit_get_cgroup_context(Unit *u) _pure_;
598459ce 734
613b411c
LP
735ExecRuntime *unit_get_exec_runtime(Unit *u) _pure_;
736
737int unit_setup_exec_runtime(Unit *u);
29206d46 738int unit_setup_dynamic_creds(Unit *u);
3ef63c31 739
2e59b241
LP
740char* unit_escape_setting(const char *s, UnitWriteFlags flags, char **buf);
741char* unit_concat_strv(char **l, UnitWriteFlags flags);
b9ec9359 742
2e59b241
LP
743int unit_write_setting(Unit *u, UnitWriteFlags flags, const char *name, const char *data);
744int unit_write_settingf(Unit *u, UnitWriteFlags mode, const char *name, const char *format, ...) _printf_(4,5);
b9ec9359 745
db2cb23b 746int unit_kill_context(Unit *u, KillContext *c, KillOperation k, pid_t main_pid, pid_t control_pid, bool main_pid_alien);
cd2086fe 747
c2756a68
LP
748int unit_make_transient(Unit *u);
749
eef85c4a 750int unit_require_mounts_for(Unit *u, const char *path, UnitDependencyMask mask);
a57f7e2c 751
1c2e9646
LP
752bool unit_type_supported(UnitType t);
753
0f13f3bd
LP
754bool unit_is_pristine(Unit *u);
755
291d565a
LP
756pid_t unit_control_pid(Unit *u);
757pid_t unit_main_pid(Unit *u);
758
1c2e9646
LP
759static inline bool unit_supported(Unit *u) {
760 return unit_type_supported(u->type);
761}
762
8b4305c7 763void unit_warn_if_dir_nonempty(Unit *u, const char* where);
25cd4964 764int unit_fail_if_noncanonical(Unit *u, const char* where);
8b4305c7 765
07299350
LP
766int unit_start_limit_test(Unit *u);
767
00d9ef85
LP
768void unit_unref_uid(Unit *u, bool destroy_now);
769int unit_ref_uid(Unit *u, uid_t uid, bool clean_ipc);
770
771void unit_unref_gid(Unit *u, bool destroy_now);
772int unit_ref_gid(Unit *u, gid_t gid, bool clean_ipc);
773
774int unit_ref_uid_gid(Unit *u, uid_t uid, gid_t gid);
775void unit_unref_uid_gid(Unit *u, bool destroy_now);
776
777void unit_notify_user_lookup(Unit *u, uid_t uid, gid_t gid);
778
4b58153d
LP
779int unit_set_invocation_id(Unit *u, sd_id128_t id);
780int unit_acquire_invocation_id(Unit *u);
781
c891efaf
FB
782bool unit_shall_confirm_spawn(Unit *u);
783
f0d47797
LP
784void unit_set_exec_params(Unit *s, ExecParameters *p);
785
4c253ed1 786int unit_fork_helper_process(Unit *u, const char *name, pid_t *ret);
a79279c7 787
c999cf38
LP
788void unit_remove_dependencies(Unit *u, UnitDependencyMask mask);
789
d3070fbd
LP
790void unit_export_state_files(Unit *u);
791void unit_unlink_state_files(Unit *u);
792
3c7416b6
LP
793int unit_prepare_exec(Unit *u);
794
a4634b21
LP
795void unit_warn_leftover_processes(Unit *u);
796
bb2c7685
LP
797bool unit_needs_console(Unit *u);
798
81e9871e
LP
799const char *unit_label_path(Unit *u);
800
6592b975
LP
801int unit_pid_attachable(Unit *unit, pid_t pid, sd_bus_error *error);
802
e8e581bf
ZJS
803/* Macros which append UNIT= or USER_UNIT= to the message */
804
f2341e0a
LP
805#define log_unit_full(unit, level, error, ...) \
806 ({ \
8dec4a9d 807 const Unit *_u = (unit); \
4b58153d 808 _u ? log_object_internal(level, error, __FILE__, __LINE__, __func__, _u->manager->unit_log_field, _u->id, _u->manager->invocation_log_field, _u->invocation_id_string, ##__VA_ARGS__) : \
f2341e0a
LP
809 log_internal(level, error, __FILE__, __LINE__, __func__, ##__VA_ARGS__); \
810 })
811
812#define log_unit_debug(unit, ...) log_unit_full(unit, LOG_DEBUG, 0, ##__VA_ARGS__)
813#define log_unit_info(unit, ...) log_unit_full(unit, LOG_INFO, 0, ##__VA_ARGS__)
814#define log_unit_notice(unit, ...) log_unit_full(unit, LOG_NOTICE, 0, ##__VA_ARGS__)
815#define log_unit_warning(unit, ...) log_unit_full(unit, LOG_WARNING, 0, ##__VA_ARGS__)
816#define log_unit_error(unit, ...) log_unit_full(unit, LOG_ERR, 0, ##__VA_ARGS__)
817
818#define log_unit_debug_errno(unit, error, ...) log_unit_full(unit, LOG_DEBUG, error, ##__VA_ARGS__)
819#define log_unit_info_errno(unit, error, ...) log_unit_full(unit, LOG_INFO, error, ##__VA_ARGS__)
820#define log_unit_notice_errno(unit, error, ...) log_unit_full(unit, LOG_NOTICE, error, ##__VA_ARGS__)
821#define log_unit_warning_errno(unit, error, ...) log_unit_full(unit, LOG_WARNING, error, ##__VA_ARGS__)
822#define log_unit_error_errno(unit, error, ...) log_unit_full(unit, LOG_ERR, error, ##__VA_ARGS__)
823
824#define LOG_UNIT_MESSAGE(unit, fmt, ...) "MESSAGE=%s: " fmt, (unit)->id, ##__VA_ARGS__
825#define LOG_UNIT_ID(unit) (unit)->manager->unit_log_format_string, (unit)->id
f1c50bec 826#define LOG_UNIT_INVOCATION_ID(unit) (unit)->manager->invocation_log_format_string, (unit)->invocation_id_string
5afe510c
LP
827
828const char* collect_mode_to_string(CollectMode m) _const_;
829CollectMode collect_mode_from_string(const char *s) _pure_;