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