]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/unit.h
core: implement per unit journal rate limiting
[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
7c8fa05c
LP
185 /* All units which have requires_mounts_for set */
186 LIST_FIELDS(Unit, has_requires_mounts_for);
187
701cc384 188 /* Load queue */
ac155bb8 189 LIST_FIELDS(Unit, load_queue);
701cc384 190
c1e1601e 191 /* D-Bus queue */
ac155bb8 192 LIST_FIELDS(Unit, dbus_queue);
23a177ef
LP
193
194 /* Cleanup queue */
ac155bb8 195 LIST_FIELDS(Unit, cleanup_queue);
9d58f1db 196
701cc384 197 /* GC queue */
ac155bb8 198 LIST_FIELDS(Unit, gc_queue);
701cc384 199
4ad49000 200 /* CGroup realize members queue */
91a6073e 201 LIST_FIELDS(Unit, cgroup_realize_queue);
4ad49000 202
09e24654
LP
203 /* cgroup empty queue */
204 LIST_FIELDS(Unit, cgroup_empty_queue);
205
19496554
MS
206 /* Target dependencies queue */
207 LIST_FIELDS(Unit, target_deps_queue);
208
a3c1168a
LP
209 /* Queue of units with StopWhenUnneeded set that shell be checked for clean-up. */
210 LIST_FIELDS(Unit, stop_when_unneeded_queue);
211
a911bb9a
LP
212 /* PIDs we keep an eye on. Note that a unit might have many
213 * more, but these are the ones we care enough about to
214 * process SIGCHLD for */
215 Set *pids;
216
62a76913
LP
217 /* Used in SIGCHLD and sd_notify() message event invocation logic to avoid that we dispatch the same event
218 * multiple times on the same unit. */
219 unsigned sigchldgen;
220 unsigned notifygen;
36f20ae3 221
701cc384 222 /* Used during GC sweeps */
eced69b3 223 unsigned gc_marker;
701cc384 224
8821a00f
LP
225 /* Error code when we didn't manage to load the unit (negative) */
226 int load_error;
227
6bf0f408
LP
228 /* Put a ratelimit on unit starting */
229 RateLimit start_limit;
87a47f99 230 EmergencyAction start_limit_action;
53c35a76
LP
231
232 EmergencyAction failure_action;
e7dfbb4e 233 EmergencyAction success_action;
6bf0f408
LP
234 char *reboot_arg;
235
67bfdc97
LP
236 /* Make sure we never enter endless loops with the check unneeded logic, or the BindsTo= logic */
237 RateLimit auto_stop_ratelimit;
bea355da 238
00d9ef85
LP
239 /* Reference to a specific UID/GID */
240 uid_t ref_uid;
241 gid_t ref_gid;
242
d2dc52db 243 /* Cached unit file state and preset */
a4375746 244 UnitFileState unit_file_state;
d2dc52db 245 int unit_file_preset;
a4375746 246
66ebf6c0
TH
247 /* Where the cpu.stat or cpuacct.usage was at the time the unit was started */
248 nsec_t cpu_usage_base;
fe700f46 249 nsec_t cpu_usage_last; /* the most recently read value */
5ad096b3 250
7c52a17b
ZJS
251 /* Counterparts in the cgroup filesystem */
252 char *cgroup_path;
efdb0237 253 CGroupMask cgroup_realized_mask;
ccf78df1 254 CGroupMask cgroup_enabled_mask;
17f14955 255 CGroupMask cgroup_invalidated_mask;
efdb0237
LP
256 CGroupMask cgroup_subtree_mask;
257 CGroupMask cgroup_members_mask;
258 int cgroup_inotify_wd;
7c52a17b 259
084c7007
RG
260 /* Device Controller BPF program */
261 BPFProgram *bpf_device_control_installed;
262
6a48d82f
DM
263 /* IP BPF Firewalling/accounting */
264 int ip_accounting_ingress_map_fd;
265 int ip_accounting_egress_map_fd;
266
267 int ipv4_allow_map_fd;
268 int ipv6_allow_map_fd;
269 int ipv4_deny_map_fd;
270 int ipv6_deny_map_fd;
271
aa2b6f1d
LP
272 BPFProgram *ip_bpf_ingress, *ip_bpf_ingress_installed;
273 BPFProgram *ip_bpf_egress, *ip_bpf_egress_installed;
6a48d82f 274
6b659ed8
LP
275 uint64_t ip_accounting_extra[_CGROUP_IP_ACCOUNTING_METRIC_MAX];
276
50be4f4a
LP
277 /* Low-priority event source which is used to remove watched PIDs that have gone away, and subscribe to any new
278 * ones which might have appeared. */
279 sd_event_source *rewatch_pids_event_source;
280
7c52a17b
ZJS
281 /* How to start OnFailure units */
282 JobMode on_failure_job_mode;
283
5afe510c
LP
284 /* Tweaking the GC logic */
285 CollectMode collect_mode;
286
4b58153d
LP
287 /* The current invocation ID */
288 sd_id128_t invocation_id;
289 char invocation_id_string[SD_ID128_STRING_MAX]; /* useful when logging */
290
9d58f1db
LP
291 /* Garbage collect us we nobody wants or requires us anymore */
292 bool stop_when_unneeded;
293
35b8ca3a 294 /* Create default dependencies */
a40eb732
LP
295 bool default_dependencies;
296
b5e9dba8
LP
297 /* Refuse manual starting, allow starting only indirectly via dependency. */
298 bool refuse_manual_start;
299
300 /* Don't allow the user to stop this unit manually, allow stopping only indirectly via dependency. */
301 bool refuse_manual_stop;
302
2528a7a6
LP
303 /* Allow isolation requests */
304 bool allow_isolate;
305
c8f4d764
LP
306 /* Ignore this unit when isolating */
307 bool ignore_on_isolate;
308
49f43d5f 309 /* Did the last condition check succeed? */
90bbc946 310 bool condition_result;
59fccdc5 311 bool assert_result;
90bbc946 312
c2756a68
LP
313 /* Is this a transient unit? */
314 bool transient;
315
f5869324
LP
316 /* Is this a unit that is always running and cannot be stopped? */
317 bool perpetual;
318
9d58f1db
LP
319 bool in_load_queue:1;
320 bool in_dbus_queue:1;
321 bool in_cleanup_queue:1;
701cc384 322 bool in_gc_queue:1;
91a6073e 323 bool in_cgroup_realize_queue:1;
09e24654 324 bool in_cgroup_empty_queue:1;
19496554 325 bool in_target_deps_queue:1;
a3c1168a 326 bool in_stop_when_unneeded_queue:1;
701cc384 327
9d58f1db 328 bool sent_dbus_new_signal:1;
6c073082 329
cd6d0a45 330 bool in_audit:1;
adefcf28 331 bool on_console:1;
a57f7e2c
LP
332
333 bool cgroup_realized:1;
bc432dc7
LP
334 bool cgroup_members_mask_valid:1;
335 bool cgroup_subtree_mask_valid:1;
f78f265f 336
3c7416b6
LP
337 /* Reset cgroup accounting next time we fork something off */
338 bool reset_accounting:1;
339
6bf0f408
LP
340 bool start_limit_hit:1;
341
f78f265f 342 /* Did we already invoke unit_coldplug() for this unit? */
f8a30ce5 343 bool coldplugged:1;
05a98afd
LP
344
345 /* For transient units: whether to add a bus track reference after creating the unit */
346 bool bus_track_add:1;
d3070fbd
LP
347
348 /* Remember which unit state files we created */
349 bool exported_invocation_id:1;
350 bool exported_log_level_max:1;
351 bool exported_log_extra_fields:1;
90fc172e
AZ
352 bool exported_log_rate_limit_interval:1;
353 bool exported_log_rate_limit_burst:1;
2e59b241
LP
354
355 /* When writing transient unit files, stores which section we stored last. If < 0, we didn't write any yet. If
356 * == 0 we are in the [Unit] section, if > 0 we are in the unit type-specific section. */
845d247a 357 signed int last_section_private:2;
57b7a260 358} Unit;
87f0e418 359
57b7a260 360typedef struct UnitStatusMessageFormats {
c6918296
MS
361 const char *starting_stopping[2];
362 const char *finished_start_job[_JOB_RESULT_MAX];
363 const char *finished_stop_job[_JOB_RESULT_MAX];
57b7a260 364} UnitStatusMessageFormats;
c6918296 365
2e59b241
LP
366/* Flags used when writing drop-in files or transient unit files */
367typedef enum UnitWriteFlags {
368 /* Write a runtime unit file or drop-in (i.e. one below /run) */
369 UNIT_RUNTIME = 1 << 0,
370
371 /* Write a persistent drop-in (i.e. one below /etc) */
372 UNIT_PERSISTENT = 1 << 1,
373
374 /* Place this item in the per-unit-type private section, instead of [Unit] */
375 UNIT_PRIVATE = 1 << 2,
376
377 /* Apply specifier escaping before writing */
378 UNIT_ESCAPE_SPECIFIERS = 1 << 3,
379
380 /* Apply C escaping before writing */
381 UNIT_ESCAPE_C = 1 << 4,
382} UnitWriteFlags;
383
384/* Returns true if neither persistent, nor runtime storage is requested, i.e. this is a check invocation only */
385#define UNIT_WRITE_FLAGS_NOOP(flags) (((flags) & (UNIT_RUNTIME|UNIT_PERSISTENT)) == 0)
8e2af478 386
57b7a260
FS
387#include "kill.h"
388
389typedef struct UnitVTable {
7d17cfbc
MS
390 /* How much memory does an object of this unit type need */
391 size_t object_size;
392
3ef63c31
LP
393 /* If greater than 0, the offset into the object where
394 * ExecContext is found, if the unit type has that */
395 size_t exec_context_offset;
396
4ad49000
LP
397 /* If greater than 0, the offset into the object where
398 * CGroupContext is found, if the unit type has that */
399 size_t cgroup_context_offset;
400
718db961
LP
401 /* If greater than 0, the offset into the object where
402 * KillContext is found, if the unit type has that */
403 size_t kill_context_offset;
404
613b411c
LP
405 /* If greater than 0, the offset into the object where the
406 * pointer to ExecRuntime is found, if the unit type has
407 * that */
408 size_t exec_runtime_offset;
409
29206d46
LP
410 /* If greater than 0, the offset into the object where the pointer to DynamicCreds is found, if the unit type
411 * has that. */
412 size_t dynamic_creds_offset;
413
ee33e53a 414 /* The name of the configuration file section with the private settings of this unit */
4ad49000 415 const char *private_section;
71645aca 416
f975e971
LP
417 /* Config file sections this unit type understands, separated
418 * by NUL chars */
419 const char *sections;
420
e537352b 421 /* This should reset all type-specific variables. This should
a16e1123
LP
422 * not allocate memory, and is called with zero-initialized
423 * data. It should hence only initialize variables that need
424 * to be set != 0. */
e537352b
LP
425 void (*init)(Unit *u);
426
a16e1123
LP
427 /* This should free all type-specific variables. It should be
428 * idempotent. */
429 void (*done)(Unit *u);
430
e537352b
LP
431 /* Actually load data from disk. This may fail, and should set
432 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
433 * UNIT_STUB if no configuration could be found. */
434 int (*load)(Unit *u);
435
f0831ed2
LP
436 /* During deserialization we only record the intended state to return to. With coldplug() we actually put the
437 * deserialized state in effect. This is where unit_notify() should be called to start things up. */
be847e82 438 int (*coldplug)(Unit *u);
87f0e418 439
f0831ed2
LP
440 /* This is called shortly after all units' coldplug() call was invoked. It's supposed to catch up state changes
441 * we missed so far (for example because they took place while we were reloading/reexecing) */
442 void (*catchup)(Unit *u);
443
87f0e418
LP
444 void (*dump)(Unit *u, FILE *f, const char *prefix);
445
446 int (*start)(Unit *u);
447 int (*stop)(Unit *u);
448 int (*reload)(Unit *u);
449
718db961 450 int (*kill)(Unit *u, KillWho w, int signo, sd_bus_error *error);
8a0867d6 451
87f0e418
LP
452 bool (*can_reload)(Unit *u);
453
a16e1123
LP
454 /* Write all data that cannot be restored from other sources
455 * away using unit_serialize_item() */
456 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
457
458 /* Restore one item from the serialization */
459 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
460
01e10de3 461 /* Try to match up fds with what we need for this unit */
9ff1a6f1 462 void (*distribute_fds)(Unit *u, FDSet *fds);
01e10de3 463
87f0e418
LP
464 /* Boils down the more complex internal state of this unit to
465 * a simpler one that the engine can understand */
466 UnitActiveState (*active_state)(Unit *u);
467
10a94420
LP
468 /* Returns the substate specific to this unit type as
469 * string. This is purely information so that we can give the
35b8ca3a 470 * user a more fine grained explanation in which actual state a
10a94420
LP
471 * unit is in. */
472 const char* (*sub_state_to_string)(Unit *u);
473
deb4e708
MK
474 /* Additionally to UnitActiveState determine whether unit is to be restarted. */
475 bool (*will_restart)(Unit *u);
476
f2f725e5
ZJS
477 /* Return false when there is a reason to prevent this unit from being gc'ed
478 * even though nothing references it and it isn't active in any way. */
479 bool (*may_gc)(Unit *u);
701cc384 480
7eb2a8a1
LP
481 /* When the unit is not running and no job for it queued we shall release its runtime resources */
482 void (*release_resources)(Unit *u);
a354329f 483
718db961 484 /* Invoked on every child that died */
87f0e418 485 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
7824bbeb 486
fdf20a31
MM
487 /* Reset failed state if we are in failed state */
488 void (*reset_failed)(Unit *u);
5632e374 489
05e343b7
LP
490 /* Called whenever any of the cgroups this unit watches for
491 * ran empty */
4ad49000 492 void (*notify_cgroup_empty)(Unit *u);
8e274523 493
8c47c732 494 /* Called whenever a process of this unit sends us a message */
db256aab 495 void (*notify_message)(Unit *u, const struct ucred *ucred, char **tags, FDSet *fds);
8c47c732 496
00d9ef85 497 /* Called whenever a name this Unit registered for comes or goes away. */
05e343b7
LP
498 void (*bus_name_owner_change)(Unit *u, const char *name, const char *old_owner, const char *new_owner);
499
8e2af478 500 /* Called for each property that is being set */
2e59b241 501 int (*bus_set_property)(Unit *u, const char *name, sd_bus_message *message, UnitWriteFlags flags, sd_bus_error *error);
8e2af478
LP
502
503 /* Called after at least one property got changed to apply the necessary change */
504 int (*bus_commit_properties)(Unit *u);
505
a7f241db
LP
506 /* Return the unit this unit is following */
507 Unit *(*following)(Unit *u);
508
6210e7fc
LP
509 /* Return the set of units that are following each other */
510 int (*following_set)(Unit *u, Set **s);
511
3ecaa09b
LP
512 /* Invoked each time a unit this unit is triggering changes
513 * state or gains/loses a job */
514 void (*trigger_notify)(Unit *u, Unit *trigger);
515
8742514c
LP
516 /* Called whenever CLOCK_REALTIME made a jump */
517 void (*time_change)(Unit *u);
518
bbf5fd8e
LP
519 /* Called whenever /etc/localtime was modified */
520 void (*timezone_change)(Unit *u);
521
7a7821c8
LP
522 /* Returns the next timeout of a unit */
523 int (*get_timeout)(Unit *u, usec_t *timeout);
68db7a3b 524
291d565a
LP
525 /* Returns the main PID if there is any defined, or 0. */
526 pid_t (*main_pid)(Unit *u);
527
528 /* Returns the main PID if there is any defined, or 0. */
529 pid_t (*control_pid)(Unit *u);
530
bb2c7685
LP
531 /* Returns true if the unit currently needs access to the console */
532 bool (*needs_console)(Unit *u);
533
04eb582a
LP
534 /* Like the enumerate() callback further down, but only enumerates the perpetual units, i.e. all units that
535 * unconditionally exist and are always active. The main reason to keep both enumeration functions separate is
536 * philosophical: the state of perpetual units should be put in place by coldplug(), while the state of those
537 * discovered through regular enumeration should be put in place by catchup(), see below. */
538 void (*enumerate_perpetual)(Manager *m);
539
f0831ed2
LP
540 /* This is called for each unit type and should be used to enumerate units already existing in the system
541 * internally and load them. However, everything that is loaded here should still stay in inactive state. It is
04eb582a 542 * the job of the catchup() call above to put the units into the discovered 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
d4fd1cf2
LP
564 /* True if units of this type shall be startable only once and then never again */
565 bool once_only:1;
566
c5a97ed1
LP
567 /* True if queued jobs of this type should be GC'ed if no other job needs them anymore */
568 bool gc_jobs:1;
57b7a260 569} UnitVTable;
87f0e418
LP
570
571extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
572
ac155bb8 573#define UNIT_VTABLE(u) unit_vtable[(u)->type]
87f0e418
LP
574
575/* For casting a unit into the various unit types */
576#define DEFINE_CAST(UPPERCASE, MixedCase) \
577 static inline MixedCase* UPPERCASE(Unit *u) { \
ac155bb8 578 if (_unlikely_(!u || u->type != UNIT_##UPPERCASE)) \
87f0e418
LP
579 return NULL; \
580 \
581 return (MixedCase*) u; \
582 }
583
584/* For casting the various unit types into a unit */
ac155bb8 585#define UNIT(u) (&(u)->meta)
87f0e418 586
35b7ff80
LP
587#define UNIT_HAS_EXEC_CONTEXT(u) (UNIT_VTABLE(u)->exec_context_offset > 0)
588#define UNIT_HAS_CGROUP_CONTEXT(u) (UNIT_VTABLE(u)->cgroup_context_offset > 0)
589#define UNIT_HAS_KILL_CONTEXT(u) (UNIT_VTABLE(u)->kill_context_offset > 0)
590
eef85c4a 591#define UNIT_TRIGGER(u) ((Unit*) hashmap_first_key((u)->dependencies[UNIT_TRIGGERS]))
3ecaa09b 592
7d17cfbc 593Unit *unit_new(Manager *m, size_t size);
87f0e418 594void unit_free(Unit *u);
dc409696 595DEFINE_TRIVIAL_CLEANUP_FUNC(Unit *, unit_free);
87f0e418 596
a581e45a 597int unit_new_for_name(Manager *m, size_t size, const char *name, Unit **ret);
87f0e418 598int unit_add_name(Unit *u, const char *name);
9e2f7c11 599
eef85c4a
LP
600int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference, UnitDependencyMask mask);
601int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference, UnitDependencyMask mask);
2c966c03 602
35d8c19a 603int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, bool add_reference, UnitDependencyMask mask);
5a724170 604int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, bool add_reference, UnitDependencyMask mask);
2c966c03 605
23a177ef
LP
606int unit_add_exec_dependencies(Unit *u, ExecContext *c);
607
0ae97ec1 608int unit_choose_id(Unit *u, const char *name);
f50e0a01 609int unit_set_description(Unit *u, const char *description);
87f0e418 610
f2f725e5 611bool unit_may_gc(Unit *u);
701cc384 612
87f0e418 613void unit_add_to_load_queue(Unit *u);
c1e1601e 614void unit_add_to_dbus_queue(Unit *u);
23a177ef 615void unit_add_to_cleanup_queue(Unit *u);
701cc384 616void unit_add_to_gc_queue(Unit *u);
19496554 617void unit_add_to_target_deps_queue(Unit *u);
fda09318 618void unit_submit_to_stop_when_unneeded_queue(Unit *u);
87f0e418
LP
619
620int unit_merge(Unit *u, Unit *other);
23a177ef
LP
621int unit_merge_by_name(Unit *u, const char *other);
622
44a6b1b6 623Unit *unit_follow_merge(Unit *u) _pure_;
87f0e418 624
e537352b
LP
625int unit_load_fragment_and_dropin(Unit *u);
626int unit_load_fragment_and_dropin_optional(Unit *u);
87f0e418
LP
627int unit_load(Unit *unit);
628
d79200e2
LP
629int unit_set_slice(Unit *u, Unit *slice);
630int unit_set_default_slice(Unit *u);
a016b922 631
44a6b1b6 632const char *unit_description(Unit *u) _pure_;
87f0e418 633
f278026d
LP
634bool unit_has_name(Unit *u, const char *name);
635
87f0e418
LP
636UnitActiveState unit_active_state(Unit *u);
637
10a94420
LP
638const char* unit_sub_state_to_string(Unit *u);
639
87f0e418
LP
640void unit_dump(Unit *u, FILE *f, const char *prefix);
641
44a6b1b6
ZJS
642bool unit_can_reload(Unit *u) _pure_;
643bool unit_can_start(Unit *u) _pure_;
f5869324 644bool unit_can_stop(Unit *u) _pure_;
44a6b1b6 645bool unit_can_isolate(Unit *u) _pure_;
87f0e418
LP
646
647int unit_start(Unit *u);
648int unit_stop(Unit *u);
649int unit_reload(Unit *u);
650
718db961
LP
651int unit_kill(Unit *u, KillWho w, int signo, sd_bus_error *error);
652int unit_kill_common(Unit *u, KillWho who, int signo, pid_t main_pid, pid_t control_pid, sd_bus_error *error);
8a0867d6 653
2ad2e41a 654typedef enum UnitNotifyFlags {
ef31828d
LP
655 UNIT_NOTIFY_RELOAD_FAILURE = 1 << 0,
656 UNIT_NOTIFY_WILL_AUTO_RESTART = 1 << 1,
2ad2e41a
LP
657} UnitNotifyFlags;
658
659void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, UnitNotifyFlags flags);
87f0e418 660
87f0e418
LP
661int unit_watch_pid(Unit *u, pid_t pid);
662void unit_unwatch_pid(Unit *u, pid_t pid);
a911bb9a
LP
663void unit_unwatch_all_pids(Unit *u);
664
50be4f4a
LP
665int unit_enqueue_rewatch_pids(Unit *u);
666void unit_dequeue_rewatch_pids(Unit *u);
87f0e418 667
9806e87d 668int unit_install_bus_match(Unit *u, sd_bus *bus, const char *name);
05e343b7
LP
669int unit_watch_bus_name(Unit *u, const char *name);
670void unit_unwatch_bus_name(Unit *u, const char *name);
671
87f0e418
LP
672bool unit_job_is_applicable(Unit *u, JobType j);
673
0301abf4
LP
674int set_unit_path(const char *p);
675
50159e6a 676char *unit_dbus_path(Unit *u);
4b58153d 677char *unit_dbus_path_invocation_id(Unit *u);
50159e6a 678
f6ff8c29
LP
679int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
680
44a6b1b6 681bool unit_can_serialize(Unit *u) _pure_;
a34ceba6 682
6b78f9b4 683int unit_serialize(Unit *u, FILE *f, FDSet *fds, bool serialize_jobs);
a16e1123 684int unit_deserialize(Unit *u, FILE *f, FDSet *fds);
07429866 685void unit_deserialize_skip(FILE *f);
a16e1123 686
a34ceba6
LP
687int unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value);
688int unit_serialize_item_escaped(Unit *u, FILE *f, const char *key, const char *value);
689int unit_serialize_item_fd(Unit *u, FILE *f, FDSet *fds, const char *key, int fd);
690void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *value, ...) _printf_(4,5);
691
eef85c4a 692int unit_add_node_dependency(Unit *u, const char *what, bool wants, UnitDependency d, UnitDependencyMask mask);
6e2ef85b 693
be847e82 694int unit_coldplug(Unit *u);
f0831ed2 695void unit_catchup(Unit *u);
cca098b0 696
44b601bc 697void unit_status_printf(Unit *u, const char *status, const char *unit_status_msg_format) _printf_(3, 0);
d1a34ae9 698void unit_status_emit_starting_stopping_reloading(Unit *u, JobType t);
9e58ff9c 699
45fb0699
LP
700bool unit_need_daemon_reload(Unit *u);
701
fdf20a31 702void unit_reset_failed(Unit *u);
5632e374 703
a7f241db 704Unit *unit_following(Unit *u);
eeaedb7c 705int unit_following_set(Unit *u, Set **s);
a7f241db 706
9444b1f2
LP
707const char *unit_slice_name(Unit *u);
708
44a6b1b6
ZJS
709bool unit_stop_pending(Unit *u) _pure_;
710bool unit_inactive_or_pending(Unit *u) _pure_;
31afa0a4 711bool unit_active_or_pending(Unit *u);
deb4e708 712bool unit_will_restart(Unit *u);
18ffdfda 713
bba34eed
LP
714int unit_add_default_target_dependency(Unit *u, Unit *target);
715
3ecaa09b
LP
716void unit_start_on_failure(Unit *u);
717void unit_trigger_notify(Unit *u);
c0daa706 718
a4375746 719UnitFileState unit_get_unit_file_state(Unit *u);
d2dc52db 720int unit_get_unit_file_preset(Unit *u);
a4375746 721
7f7d01ed 722Unit* unit_ref_set(UnitRef *ref, Unit *source, Unit *target);
57020a3a
LP
723void unit_ref_unset(UnitRef *ref);
724
7f7d01ed
ZJS
725#define UNIT_DEREF(ref) ((ref).target)
726#define UNIT_ISSET(ref) (!!(ref).target)
57020a3a 727
598459ce 728int unit_patch_contexts(Unit *u);
e06c73cc 729
44a6b1b6 730ExecContext *unit_get_exec_context(Unit *u) _pure_;
718db961 731KillContext *unit_get_kill_context(Unit *u) _pure_;
4ad49000 732CGroupContext *unit_get_cgroup_context(Unit *u) _pure_;
598459ce 733
613b411c
LP
734ExecRuntime *unit_get_exec_runtime(Unit *u) _pure_;
735
736int unit_setup_exec_runtime(Unit *u);
29206d46 737int unit_setup_dynamic_creds(Unit *u);
3ef63c31 738
2e59b241
LP
739char* unit_escape_setting(const char *s, UnitWriteFlags flags, char **buf);
740char* unit_concat_strv(char **l, UnitWriteFlags flags);
b9ec9359 741
2e59b241
LP
742int unit_write_setting(Unit *u, UnitWriteFlags flags, const char *name, const char *data);
743int unit_write_settingf(Unit *u, UnitWriteFlags mode, const char *name, const char *format, ...) _printf_(4,5);
b9ec9359 744
db2cb23b 745int unit_kill_context(Unit *u, KillContext *c, KillOperation k, pid_t main_pid, pid_t control_pid, bool main_pid_alien);
cd2086fe 746
c2756a68
LP
747int unit_make_transient(Unit *u);
748
eef85c4a 749int unit_require_mounts_for(Unit *u, const char *path, UnitDependencyMask mask);
a57f7e2c 750
1c2e9646
LP
751bool unit_type_supported(UnitType t);
752
0f13f3bd
LP
753bool unit_is_pristine(Unit *u);
754
a3c1168a
LP
755bool unit_is_unneeded(Unit *u);
756
291d565a
LP
757pid_t unit_control_pid(Unit *u);
758pid_t unit_main_pid(Unit *u);
759
1c2e9646
LP
760static inline bool unit_supported(Unit *u) {
761 return unit_type_supported(u->type);
762}
763
8b4305c7 764void unit_warn_if_dir_nonempty(Unit *u, const char* where);
25cd4964 765int unit_fail_if_noncanonical(Unit *u, const char* where);
8b4305c7 766
07299350
LP
767int unit_start_limit_test(Unit *u);
768
00d9ef85
LP
769void unit_unref_uid(Unit *u, bool destroy_now);
770int unit_ref_uid(Unit *u, uid_t uid, bool clean_ipc);
771
772void unit_unref_gid(Unit *u, bool destroy_now);
773int unit_ref_gid(Unit *u, gid_t gid, bool clean_ipc);
774
775int unit_ref_uid_gid(Unit *u, uid_t uid, gid_t gid);
776void unit_unref_uid_gid(Unit *u, bool destroy_now);
777
778void unit_notify_user_lookup(Unit *u, uid_t uid, gid_t gid);
779
4b58153d
LP
780int unit_set_invocation_id(Unit *u, sd_id128_t id);
781int unit_acquire_invocation_id(Unit *u);
782
c891efaf
FB
783bool unit_shall_confirm_spawn(Unit *u);
784
f0d47797
LP
785void unit_set_exec_params(Unit *s, ExecParameters *p);
786
4c253ed1 787int unit_fork_helper_process(Unit *u, const char *name, pid_t *ret);
a79279c7 788
c999cf38
LP
789void unit_remove_dependencies(Unit *u, UnitDependencyMask mask);
790
d3070fbd
LP
791void unit_export_state_files(Unit *u);
792void unit_unlink_state_files(Unit *u);
793
3c7416b6
LP
794int unit_prepare_exec(Unit *u);
795
a4634b21
LP
796void unit_warn_leftover_processes(Unit *u);
797
bb2c7685
LP
798bool unit_needs_console(Unit *u);
799
81e9871e
LP
800const char *unit_label_path(Unit *u);
801
6592b975
LP
802int unit_pid_attachable(Unit *unit, pid_t pid, sd_bus_error *error);
803
e8e581bf
ZJS
804/* Macros which append UNIT= or USER_UNIT= to the message */
805
f2341e0a
LP
806#define log_unit_full(unit, level, error, ...) \
807 ({ \
8dec4a9d 808 const Unit *_u = (unit); \
4b58153d 809 _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
810 log_internal(level, error, __FILE__, __LINE__, __func__, ##__VA_ARGS__); \
811 })
812
813#define log_unit_debug(unit, ...) log_unit_full(unit, LOG_DEBUG, 0, ##__VA_ARGS__)
814#define log_unit_info(unit, ...) log_unit_full(unit, LOG_INFO, 0, ##__VA_ARGS__)
815#define log_unit_notice(unit, ...) log_unit_full(unit, LOG_NOTICE, 0, ##__VA_ARGS__)
816#define log_unit_warning(unit, ...) log_unit_full(unit, LOG_WARNING, 0, ##__VA_ARGS__)
817#define log_unit_error(unit, ...) log_unit_full(unit, LOG_ERR, 0, ##__VA_ARGS__)
818
819#define log_unit_debug_errno(unit, error, ...) log_unit_full(unit, LOG_DEBUG, error, ##__VA_ARGS__)
820#define log_unit_info_errno(unit, error, ...) log_unit_full(unit, LOG_INFO, error, ##__VA_ARGS__)
821#define log_unit_notice_errno(unit, error, ...) log_unit_full(unit, LOG_NOTICE, error, ##__VA_ARGS__)
822#define log_unit_warning_errno(unit, error, ...) log_unit_full(unit, LOG_WARNING, error, ##__VA_ARGS__)
823#define log_unit_error_errno(unit, error, ...) log_unit_full(unit, LOG_ERR, error, ##__VA_ARGS__)
824
825#define LOG_UNIT_MESSAGE(unit, fmt, ...) "MESSAGE=%s: " fmt, (unit)->id, ##__VA_ARGS__
826#define LOG_UNIT_ID(unit) (unit)->manager->unit_log_format_string, (unit)->id
f1c50bec 827#define LOG_UNIT_INVOCATION_ID(unit) (unit)->manager->invocation_log_format_string, (unit)->invocation_id_string
5afe510c
LP
828
829const char* collect_mode_to_string(CollectMode m) _const_;
830CollectMode collect_mode_from_string(const char *s) _pure_;