]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/unit.h
core: Check unit start rate limiting earlier
[thirdparty/systemd.git] / src / core / unit.h
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3
4 #include <stdbool.h>
5 #include <stdlib.h>
6 #include <unistd.h>
7
8 #include "sd-id128.h"
9
10 #include "bpf-program.h"
11 #include "condition.h"
12 #include "emergency-action.h"
13 #include "list.h"
14 #include "show-status.h"
15 #include "set.h"
16 #include "unit-file.h"
17 #include "cgroup.h"
18
19 typedef struct UnitRef UnitRef;
20
21 typedef enum KillOperation {
22 KILL_TERMINATE,
23 KILL_TERMINATE_AND_LOG,
24 KILL_RESTART,
25 KILL_KILL,
26 KILL_WATCHDOG,
27 _KILL_OPERATION_MAX,
28 _KILL_OPERATION_INVALID = -EINVAL,
29 } KillOperation;
30
31 typedef enum CollectMode {
32 COLLECT_INACTIVE,
33 COLLECT_INACTIVE_OR_FAILED,
34 _COLLECT_MODE_MAX,
35 _COLLECT_MODE_INVALID = -EINVAL,
36 } CollectMode;
37
38 static inline bool UNIT_IS_ACTIVE_OR_RELOADING(UnitActiveState t) {
39 return IN_SET(t, UNIT_ACTIVE, UNIT_RELOADING);
40 }
41
42 static inline bool UNIT_IS_ACTIVE_OR_ACTIVATING(UnitActiveState t) {
43 return IN_SET(t, UNIT_ACTIVE, UNIT_ACTIVATING, UNIT_RELOADING);
44 }
45
46 static inline bool UNIT_IS_INACTIVE_OR_DEACTIVATING(UnitActiveState t) {
47 return IN_SET(t, UNIT_INACTIVE, UNIT_FAILED, UNIT_DEACTIVATING);
48 }
49
50 static inline bool UNIT_IS_INACTIVE_OR_FAILED(UnitActiveState t) {
51 return IN_SET(t, UNIT_INACTIVE, UNIT_FAILED);
52 }
53
54 static inline bool UNIT_IS_LOAD_COMPLETE(UnitLoadState t) {
55 return t >= 0 && t < _UNIT_LOAD_STATE_MAX && t != UNIT_STUB && t != UNIT_MERGED;
56 }
57
58 /* Stores the 'reason' a dependency was created as a bit mask, i.e. due to which configuration source it came to be. We
59 * use this so that we can selectively flush out parts of dependencies again. Note that the same dependency might be
60 * created as a result of multiple "reasons", hence the bitmask. */
61 typedef enum UnitDependencyMask {
62 /* Configured directly by the unit file, .wants/.requires symlink or drop-in, or as an immediate result of a
63 * non-dependency option configured that way. */
64 UNIT_DEPENDENCY_FILE = 1 << 0,
65
66 /* As unconditional implicit dependency (not affected by unit configuration — except by the unit name and
67 * type) */
68 UNIT_DEPENDENCY_IMPLICIT = 1 << 1,
69
70 /* A dependency effected by DefaultDependencies=yes. Note that dependencies marked this way are conceptually
71 * just a subset of UNIT_DEPENDENCY_FILE, as DefaultDependencies= is itself a unit file setting that can only
72 * be set in unit files. We make this two separate bits only to help debugging how dependencies came to be. */
73 UNIT_DEPENDENCY_DEFAULT = 1 << 2,
74
75 /* A dependency created from udev rules */
76 UNIT_DEPENDENCY_UDEV = 1 << 3,
77
78 /* A dependency created because of some unit's RequiresMountsFor= setting */
79 UNIT_DEPENDENCY_PATH = 1 << 4,
80
81 /* A dependency created because of data read from /proc/self/mountinfo and no other configuration source */
82 UNIT_DEPENDENCY_MOUNTINFO_IMPLICIT = 1 << 5,
83
84 /* A dependency created because of data read from /proc/self/mountinfo, but conditionalized by
85 * DefaultDependencies= and thus also involving configuration from UNIT_DEPENDENCY_FILE sources */
86 UNIT_DEPENDENCY_MOUNTINFO_DEFAULT = 1 << 6,
87
88 /* A dependency created because of data read from /proc/swaps and no other configuration source */
89 UNIT_DEPENDENCY_PROC_SWAP = 1 << 7,
90
91 _UNIT_DEPENDENCY_MASK_FULL = (1 << 8) - 1,
92 } UnitDependencyMask;
93
94 /* The Unit's dependencies[] hashmaps use this structure as value. It has the same size as a void pointer, and thus can
95 * be stored directly as hashmap value, without any indirection. Note that this stores two masks, as both the origin
96 * and the destination of a dependency might have created it. */
97 typedef union UnitDependencyInfo {
98 void *data;
99 struct {
100 UnitDependencyMask origin_mask:16;
101 UnitDependencyMask destination_mask:16;
102 } _packed_;
103 } UnitDependencyInfo;
104
105 /* Newer LLVM versions don't like implicit casts from large pointer types to smaller enums, hence let's add
106 * explicit type-safe helpers for that. */
107 static inline UnitDependency UNIT_DEPENDENCY_FROM_PTR(const void *p) {
108 return PTR_TO_INT(p);
109 }
110
111 static inline void* UNIT_DEPENDENCY_TO_PTR(UnitDependency d) {
112 return INT_TO_PTR(d);
113 }
114
115 #include "job.h"
116
117 struct UnitRef {
118 /* Keeps tracks of references to a unit. This is useful so
119 * that we can merge two units if necessary and correct all
120 * references to them */
121
122 Unit *source, *target;
123 LIST_FIELDS(UnitRef, refs_by_target);
124 };
125
126 typedef struct Unit {
127 Manager *manager;
128
129 UnitType type;
130 UnitLoadState load_state;
131 Unit *merged_into;
132
133 char *id; /* The one special name that we use for identification */
134 char *instance;
135
136 Set *aliases; /* All the other names. */
137
138 /* For each dependency type we can look up another Hashmap with this, whose key is a Unit* object,
139 * and whose value encodes why the dependency exists, using the UnitDependencyInfo type. i.e. a
140 * Hashmap(UnitDependency → Hashmap(Unit* → UnitDependencyInfo)) */
141 Hashmap *dependencies;
142
143 /* Similar, for RequiresMountsFor= path dependencies. The key is the path, the value the
144 * UnitDependencyInfo type */
145 Hashmap *requires_mounts_for;
146
147 char *description;
148 char **documentation;
149
150 char *fragment_path; /* if loaded from a config file this is the primary path to it */
151 char *source_path; /* if converted, the source file */
152 char **dropin_paths;
153
154 usec_t fragment_not_found_timestamp_hash;
155 usec_t fragment_mtime;
156 usec_t source_mtime;
157 usec_t dropin_mtime;
158
159 /* If this is a transient unit we are currently writing, this is where we are writing it to */
160 FILE *transient_file;
161
162 /* Freezer state */
163 sd_bus_message *pending_freezer_message;
164 FreezerState freezer_state;
165
166 /* Job timeout and action to take */
167 EmergencyAction job_timeout_action;
168 usec_t job_timeout;
169 usec_t job_running_timeout;
170 char *job_timeout_reboot_arg;
171
172 /* If there is something to do with this unit, then this is the installed job for it */
173 Job *job;
174
175 /* JOB_NOP jobs are special and can be installed without disturbing the real job. */
176 Job *nop_job;
177
178 /* The slot used for watching NameOwnerChanged signals */
179 sd_bus_slot *match_bus_slot;
180 sd_bus_slot *get_name_owner_slot;
181
182 /* References to this unit from clients */
183 sd_bus_track *bus_track;
184 char **deserialized_refs;
185
186 /* References to this */
187 LIST_HEAD(UnitRef, refs_by_target);
188
189 /* Conditions to check */
190 LIST_HEAD(Condition, conditions);
191 LIST_HEAD(Condition, asserts);
192
193 dual_timestamp condition_timestamp;
194 dual_timestamp assert_timestamp;
195
196 /* Updated whenever the low-level state changes */
197 dual_timestamp state_change_timestamp;
198
199 /* Updated whenever the (high-level) active state enters or leaves the active or inactive states */
200 dual_timestamp inactive_exit_timestamp;
201 dual_timestamp active_enter_timestamp;
202 dual_timestamp active_exit_timestamp;
203 dual_timestamp inactive_enter_timestamp;
204
205 /* Per type list */
206 LIST_FIELDS(Unit, units_by_type);
207
208 /* Load queue */
209 LIST_FIELDS(Unit, load_queue);
210
211 /* D-Bus queue */
212 LIST_FIELDS(Unit, dbus_queue);
213
214 /* Cleanup queue */
215 LIST_FIELDS(Unit, cleanup_queue);
216
217 /* GC queue */
218 LIST_FIELDS(Unit, gc_queue);
219
220 /* CGroup realize members queue */
221 LIST_FIELDS(Unit, cgroup_realize_queue);
222
223 /* cgroup empty queue */
224 LIST_FIELDS(Unit, cgroup_empty_queue);
225
226 /* cgroup OOM queue */
227 LIST_FIELDS(Unit, cgroup_oom_queue);
228
229 /* Target dependencies queue */
230 LIST_FIELDS(Unit, target_deps_queue);
231
232 /* Queue of units with StopWhenUnneeded= set that shall be checked for clean-up. */
233 LIST_FIELDS(Unit, stop_when_unneeded_queue);
234
235 /* Queue of units that have an Uphold= dependency from some other unit, and should be checked for starting */
236 LIST_FIELDS(Unit, start_when_upheld_queue);
237
238 /* Queue of units that have a BindTo= dependency on some other unit, and should possibly be shut down */
239 LIST_FIELDS(Unit, stop_when_bound_queue);
240
241 /* PIDs we keep an eye on. Note that a unit might have many
242 * more, but these are the ones we care enough about to
243 * process SIGCHLD for */
244 Set *pids;
245
246 /* Used in SIGCHLD and sd_notify() message event invocation logic to avoid that we dispatch the same event
247 * multiple times on the same unit. */
248 unsigned sigchldgen;
249 unsigned notifygen;
250
251 /* Used during GC sweeps */
252 unsigned gc_marker;
253
254 /* Error code when we didn't manage to load the unit (negative) */
255 int load_error;
256
257 /* Put a ratelimit on unit starting */
258 RateLimit start_ratelimit;
259 EmergencyAction start_limit_action;
260
261 /* The unit has been marked for reload, restart, etc. Stored as 1u << marker1 | 1u << marker2. */
262 unsigned markers;
263
264 /* What to do on failure or success */
265 EmergencyAction success_action, failure_action;
266 int success_action_exit_status, failure_action_exit_status;
267 char *reboot_arg;
268
269 /* Make sure we never enter endless loops with the StopWhenUnneeded=, BindsTo=, Uphold= logic */
270 RateLimit auto_start_stop_ratelimit;
271
272 /* Reference to a specific UID/GID */
273 uid_t ref_uid;
274 gid_t ref_gid;
275
276 /* Cached unit file state and preset */
277 UnitFileState unit_file_state;
278 int unit_file_preset;
279
280 /* Where the cpu.stat or cpuacct.usage was at the time the unit was started */
281 nsec_t cpu_usage_base;
282 nsec_t cpu_usage_last; /* the most recently read value */
283
284 /* The current counter of processes sent SIGKILL by systemd-oomd */
285 uint64_t managed_oom_kill_last;
286
287 /* The current counter of the oom_kill field in the memory.events cgroup attribute */
288 uint64_t oom_kill_last;
289
290 /* Where the io.stat data was at the time the unit was started */
291 uint64_t io_accounting_base[_CGROUP_IO_ACCOUNTING_METRIC_MAX];
292 uint64_t io_accounting_last[_CGROUP_IO_ACCOUNTING_METRIC_MAX]; /* the most recently read value */
293
294 /* Counterparts in the cgroup filesystem */
295 char *cgroup_path;
296 CGroupMask cgroup_realized_mask; /* In which hierarchies does this unit's cgroup exist? (only relevant on cgroup v1) */
297 CGroupMask cgroup_enabled_mask; /* Which controllers are enabled (or more correctly: enabled for the children) for this unit's cgroup? (only relevant on cgroup v2) */
298 CGroupMask cgroup_invalidated_mask; /* A mask specifying controllers which shall be considered invalidated, and require re-realization */
299 CGroupMask cgroup_members_mask; /* A cache for the controllers required by all children of this cgroup (only relevant for slice units) */
300
301 /* Inotify watch descriptors for watching cgroup.events and memory.events on cgroupv2 */
302 int cgroup_control_inotify_wd;
303 int cgroup_memory_inotify_wd;
304
305 /* Device Controller BPF program */
306 BPFProgram *bpf_device_control_installed;
307
308 /* IP BPF Firewalling/accounting */
309 int ip_accounting_ingress_map_fd;
310 int ip_accounting_egress_map_fd;
311 uint64_t ip_accounting_extra[_CGROUP_IP_ACCOUNTING_METRIC_MAX];
312
313 int ipv4_allow_map_fd;
314 int ipv6_allow_map_fd;
315 int ipv4_deny_map_fd;
316 int ipv6_deny_map_fd;
317 BPFProgram *ip_bpf_ingress, *ip_bpf_ingress_installed;
318 BPFProgram *ip_bpf_egress, *ip_bpf_egress_installed;
319
320 Set *ip_bpf_custom_ingress;
321 Set *ip_bpf_custom_ingress_installed;
322 Set *ip_bpf_custom_egress;
323 Set *ip_bpf_custom_egress_installed;
324
325 /* BPF programs managed (e.g. loaded to kernel) by an entity external to systemd,
326 * attached to unit cgroup by provided program fd and attach type. */
327 Hashmap *bpf_foreign_by_key;
328
329 FDSet *initial_socket_bind_link_fds;
330 #if BPF_FRAMEWORK
331 /* BPF links to BPF programs attached to cgroup/bind{4|6} hooks and
332 * responsible for allowing or denying a unit to bind(2) to a socket
333 * address. */
334 struct bpf_link *ipv4_socket_bind_link;
335 struct bpf_link *ipv6_socket_bind_link;
336 #endif
337
338 FDSet *initial_restric_ifaces_link_fds;
339 #if BPF_FRAMEWORK
340 struct bpf_link *restrict_ifaces_ingress_bpf_link;
341 struct bpf_link *restrict_ifaces_egress_bpf_link;
342 #endif
343
344 /* Low-priority event source which is used to remove watched PIDs that have gone away, and subscribe to any new
345 * ones which might have appeared. */
346 sd_event_source *rewatch_pids_event_source;
347
348 /* How to start OnSuccess=/OnFailure= units */
349 JobMode on_success_job_mode;
350 JobMode on_failure_job_mode;
351
352 /* Tweaking the GC logic */
353 CollectMode collect_mode;
354
355 /* The current invocation ID */
356 sd_id128_t invocation_id;
357 char invocation_id_string[SD_ID128_STRING_MAX]; /* useful when logging */
358
359 /* Garbage collect us we nobody wants or requires us anymore */
360 bool stop_when_unneeded;
361
362 /* Create default dependencies */
363 bool default_dependencies;
364
365 /* Refuse manual starting, allow starting only indirectly via dependency. */
366 bool refuse_manual_start;
367
368 /* Don't allow the user to stop this unit manually, allow stopping only indirectly via dependency. */
369 bool refuse_manual_stop;
370
371 /* Allow isolation requests */
372 bool allow_isolate;
373
374 /* Ignore this unit when isolating */
375 bool ignore_on_isolate;
376
377 /* Did the last condition check succeed? */
378 bool condition_result;
379 bool assert_result;
380
381 /* Is this a transient unit? */
382 bool transient;
383
384 /* Is this a unit that is always running and cannot be stopped? */
385 bool perpetual;
386
387 /* Booleans indicating membership of this unit in the various queues */
388 bool in_load_queue:1;
389 bool in_dbus_queue:1;
390 bool in_cleanup_queue:1;
391 bool in_gc_queue:1;
392 bool in_cgroup_realize_queue:1;
393 bool in_cgroup_empty_queue:1;
394 bool in_cgroup_oom_queue:1;
395 bool in_target_deps_queue:1;
396 bool in_stop_when_unneeded_queue:1;
397 bool in_start_when_upheld_queue:1;
398 bool in_stop_when_bound_queue:1;
399
400 bool sent_dbus_new_signal:1;
401
402 bool job_running_timeout_set:1;
403
404 bool in_audit:1;
405 bool on_console:1;
406
407 bool cgroup_realized:1;
408 bool cgroup_members_mask_valid:1;
409
410 /* Reset cgroup accounting next time we fork something off */
411 bool reset_accounting:1;
412
413 bool start_limit_hit:1;
414
415 /* Did we already invoke unit_coldplug() for this unit? */
416 bool coldplugged:1;
417
418 /* For transient units: whether to add a bus track reference after creating the unit */
419 bool bus_track_add:1;
420
421 /* Remember which unit state files we created */
422 bool exported_invocation_id:1;
423 bool exported_log_level_max:1;
424 bool exported_log_extra_fields:1;
425 bool exported_log_ratelimit_interval:1;
426 bool exported_log_ratelimit_burst:1;
427
428 /* Whether we warned about clamping the CPU quota period */
429 bool warned_clamping_cpu_quota_period:1;
430
431 /* When writing transient unit files, stores which section we stored last. If < 0, we didn't write any yet. If
432 * == 0 we are in the [Unit] section, if > 0 we are in the unit type-specific section. */
433 signed int last_section_private:2;
434 } Unit;
435
436 typedef struct UnitStatusMessageFormats {
437 const char *starting_stopping[2];
438 const char *finished_start_job[_JOB_RESULT_MAX];
439 const char *finished_stop_job[_JOB_RESULT_MAX];
440 /* If this entry is present, it'll be called to provide a context-dependent format string,
441 * or NULL to fall back to finished_{start,stop}_job; if those are NULL too, fall back to generic. */
442 const char *(*finished_job)(Unit *u, JobType t, JobResult result);
443 } UnitStatusMessageFormats;
444
445 /* Flags used when writing drop-in files or transient unit files */
446 typedef enum UnitWriteFlags {
447 /* Write a runtime unit file or drop-in (i.e. one below /run) */
448 UNIT_RUNTIME = 1 << 0,
449
450 /* Write a persistent drop-in (i.e. one below /etc) */
451 UNIT_PERSISTENT = 1 << 1,
452
453 /* Place this item in the per-unit-type private section, instead of [Unit] */
454 UNIT_PRIVATE = 1 << 2,
455
456 /* Apply specifier escaping before writing */
457 UNIT_ESCAPE_SPECIFIERS = 1 << 3,
458
459 /* Apply C escaping before writing */
460 UNIT_ESCAPE_C = 1 << 4,
461 } UnitWriteFlags;
462
463 /* Returns true if neither persistent, nor runtime storage is requested, i.e. this is a check invocation only */
464 static inline bool UNIT_WRITE_FLAGS_NOOP(UnitWriteFlags flags) {
465 return (flags & (UNIT_RUNTIME|UNIT_PERSISTENT)) == 0;
466 }
467
468 #include "kill.h"
469
470 typedef struct UnitVTable {
471 /* How much memory does an object of this unit type need */
472 size_t object_size;
473
474 /* If greater than 0, the offset into the object where
475 * ExecContext is found, if the unit type has that */
476 size_t exec_context_offset;
477
478 /* If greater than 0, the offset into the object where
479 * CGroupContext is found, if the unit type has that */
480 size_t cgroup_context_offset;
481
482 /* If greater than 0, the offset into the object where
483 * KillContext is found, if the unit type has that */
484 size_t kill_context_offset;
485
486 /* If greater than 0, the offset into the object where the
487 * pointer to ExecRuntime is found, if the unit type has
488 * that */
489 size_t exec_runtime_offset;
490
491 /* If greater than 0, the offset into the object where the pointer to DynamicCreds is found, if the unit type
492 * has that. */
493 size_t dynamic_creds_offset;
494
495 /* The name of the configuration file section with the private settings of this unit */
496 const char *private_section;
497
498 /* Config file sections this unit type understands, separated
499 * by NUL chars */
500 const char *sections;
501
502 /* This should reset all type-specific variables. This should
503 * not allocate memory, and is called with zero-initialized
504 * data. It should hence only initialize variables that need
505 * to be set != 0. */
506 void (*init)(Unit *u);
507
508 /* This should free all type-specific variables. It should be
509 * idempotent. */
510 void (*done)(Unit *u);
511
512 /* Actually load data from disk. This may fail, and should set
513 * load_state to UNIT_LOADED, UNIT_MERGED or leave it at
514 * UNIT_STUB if no configuration could be found. */
515 int (*load)(Unit *u);
516
517 /* During deserialization we only record the intended state to return to. With coldplug() we actually put the
518 * deserialized state in effect. This is where unit_notify() should be called to start things up. Note that
519 * this callback is invoked *before* we leave the reloading state of the manager, i.e. *before* we consider the
520 * reloading to be complete. Thus, this callback should just restore the exact same state for any unit that was
521 * in effect before the reload, i.e. units should not catch up with changes happened during the reload. That's
522 * what catchup() below is for. */
523 int (*coldplug)(Unit *u);
524
525 /* This is called shortly after all units' coldplug() call was invoked, and *after* the manager left the
526 * reloading state. It's supposed to catch up with state changes due to external events we missed so far (for
527 * example because they took place while we were reloading/reexecing) */
528 void (*catchup)(Unit *u);
529
530 void (*dump)(Unit *u, FILE *f, const char *prefix);
531
532 int (*start)(Unit *u);
533 int (*stop)(Unit *u);
534 int (*reload)(Unit *u);
535
536 int (*kill)(Unit *u, KillWho w, int signo, sd_bus_error *error);
537
538 /* Clear out the various runtime/state/cache/logs/configuration data */
539 int (*clean)(Unit *u, ExecCleanMask m);
540
541 /* Freeze the unit */
542 int (*freeze)(Unit *u);
543 int (*thaw)(Unit *u);
544 bool (*can_freeze)(Unit *u);
545
546 /* Return which kind of data can be cleaned */
547 int (*can_clean)(Unit *u, ExecCleanMask *ret);
548
549 bool (*can_reload)(Unit *u);
550
551 /* Serialize state and file descriptors that should be carried over into the new
552 * instance after reexecution. */
553 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
554
555 /* Restore one item from the serialization */
556 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
557
558 /* Try to match up fds with what we need for this unit */
559 void (*distribute_fds)(Unit *u, FDSet *fds);
560
561 /* Boils down the more complex internal state of this unit to
562 * a simpler one that the engine can understand */
563 UnitActiveState (*active_state)(Unit *u);
564
565 /* Returns the substate specific to this unit type as
566 * string. This is purely information so that we can give the
567 * user a more fine grained explanation in which actual state a
568 * unit is in. */
569 const char* (*sub_state_to_string)(Unit *u);
570
571 /* Additionally to UnitActiveState determine whether unit is to be restarted. */
572 bool (*will_restart)(Unit *u);
573
574 /* Return false when there is a reason to prevent this unit from being gc'ed
575 * even though nothing references it and it isn't active in any way. */
576 bool (*may_gc)(Unit *u);
577
578 /* Return true when the unit is not controlled by the manager (e.g. extrinsic mounts). */
579 bool (*is_extrinsic)(Unit *u);
580
581 /* When the unit is not running and no job for it queued we shall release its runtime resources */
582 void (*release_resources)(Unit *u);
583
584 /* Invoked on every child that died */
585 void (*sigchld_event)(Unit *u, pid_t pid, int code, int status);
586
587 /* Reset failed state if we are in failed state */
588 void (*reset_failed)(Unit *u);
589
590 /* Called whenever any of the cgroups this unit watches for ran empty */
591 void (*notify_cgroup_empty)(Unit *u);
592
593 /* Called whenever an OOM kill event on this unit was seen */
594 void (*notify_cgroup_oom)(Unit *u);
595
596 /* Called whenever a process of this unit sends us a message */
597 void (*notify_message)(Unit *u, const struct ucred *ucred, char * const *tags, FDSet *fds);
598
599 /* Called whenever a name this Unit registered for comes or goes away. */
600 void (*bus_name_owner_change)(Unit *u, const char *new_owner);
601
602 /* Called for each property that is being set */
603 int (*bus_set_property)(Unit *u, const char *name, sd_bus_message *message, UnitWriteFlags flags, sd_bus_error *error);
604
605 /* Called after at least one property got changed to apply the necessary change */
606 int (*bus_commit_properties)(Unit *u);
607
608 /* Return the unit this unit is following */
609 Unit *(*following)(Unit *u);
610
611 /* Return the set of units that are following each other */
612 int (*following_set)(Unit *u, Set **s);
613
614 /* Invoked each time a unit this unit is triggering changes
615 * state or gains/loses a job */
616 void (*trigger_notify)(Unit *u, Unit *trigger);
617
618 /* Called whenever CLOCK_REALTIME made a jump */
619 void (*time_change)(Unit *u);
620
621 /* Called whenever /etc/localtime was modified */
622 void (*timezone_change)(Unit *u);
623
624 /* Returns the next timeout of a unit */
625 int (*get_timeout)(Unit *u, usec_t *timeout);
626
627 /* Returns the main PID if there is any defined, or 0. */
628 pid_t (*main_pid)(Unit *u);
629
630 /* Returns the main PID if there is any defined, or 0. */
631 pid_t (*control_pid)(Unit *u);
632
633 /* Returns true if the unit currently needs access to the console */
634 bool (*needs_console)(Unit *u);
635
636 /* Returns the exit status to propagate in case of FailureAction=exit/SuccessAction=exit; usually returns the
637 * exit code of the "main" process of the service or similar. */
638 int (*exit_status)(Unit *u);
639
640 /* Return a copy of the status string pointer. */
641 const char* (*status_text)(Unit *u);
642
643 /* Like the enumerate() callback further down, but only enumerates the perpetual units, i.e. all units that
644 * unconditionally exist and are always active. The main reason to keep both enumeration functions separate is
645 * philosophical: the state of perpetual units should be put in place by coldplug(), while the state of those
646 * discovered through regular enumeration should be put in place by catchup(), see below. */
647 void (*enumerate_perpetual)(Manager *m);
648
649 /* This is called for each unit type and should be used to enumerate units already existing in the system
650 * internally and load them. However, everything that is loaded here should still stay in inactive state. It is
651 * the job of the catchup() call above to put the units into the discovered state. */
652 void (*enumerate)(Manager *m);
653
654 /* Type specific cleanups. */
655 void (*shutdown)(Manager *m);
656
657 /* If this function is set and returns false all jobs for units
658 * of this type will immediately fail. */
659 bool (*supported)(void);
660
661 /* If this function is set, it's invoked first as part of starting a unit to allow start rate
662 * limiting checks to occur before we do anything else. */
663 int (*test_start_limit)(Unit *u);
664
665 /* The strings to print in status messages */
666 UnitStatusMessageFormats status_message_formats;
667
668 /* True if transient units of this type are OK */
669 bool can_transient;
670
671 /* True if cgroup delegation is permissible */
672 bool can_delegate;
673
674 /* True if the unit type triggers other units, i.e. can have a UNIT_TRIGGERS dependency */
675 bool can_trigger;
676
677 /* True if the unit type knows a failure state, and thus can be source of an OnFailure= dependency */
678 bool can_fail;
679
680 /* True if units of this type shall be startable only once and then never again */
681 bool once_only;
682
683 /* Do not serialize this unit when preparing for root switch */
684 bool exclude_from_switch_root_serialization;
685
686 /* True if queued jobs of this type should be GC'ed if no other job needs them anymore */
687 bool gc_jobs;
688
689 /* True if systemd-oomd can monitor and act on this unit's recursive children's cgroup(s) */
690 bool can_set_managed_oom;
691 } UnitVTable;
692
693 extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX];
694
695 static inline const UnitVTable* UNIT_VTABLE(const Unit *u) {
696 return unit_vtable[u->type];
697 }
698
699 /* For casting a unit into the various unit types */
700 #define DEFINE_CAST(UPPERCASE, MixedCase) \
701 static inline MixedCase* UPPERCASE(Unit *u) { \
702 if (_unlikely_(!u || u->type != UNIT_##UPPERCASE)) \
703 return NULL; \
704 \
705 return (MixedCase*) u; \
706 }
707
708 /* For casting the various unit types into a unit */
709 #define UNIT(u) \
710 ({ \
711 typeof(u) _u_ = (u); \
712 Unit *_w_ = _u_ ? &(_u_)->meta : NULL; \
713 _w_; \
714 })
715
716 #define UNIT_HAS_EXEC_CONTEXT(u) (UNIT_VTABLE(u)->exec_context_offset > 0)
717 #define UNIT_HAS_CGROUP_CONTEXT(u) (UNIT_VTABLE(u)->cgroup_context_offset > 0)
718 #define UNIT_HAS_KILL_CONTEXT(u) (UNIT_VTABLE(u)->kill_context_offset > 0)
719
720 Unit* unit_has_dependency(const Unit *u, UnitDependencyAtom atom, Unit *other);
721 int unit_get_dependency_array(const Unit *u, UnitDependencyAtom atom, Unit ***ret_array);
722
723 static inline Hashmap* unit_get_dependencies(Unit *u, UnitDependency d) {
724 return hashmap_get(u->dependencies, UNIT_DEPENDENCY_TO_PTR(d));
725 }
726
727 static inline Unit* UNIT_TRIGGER(Unit *u) {
728 return unit_has_dependency(u, UNIT_ATOM_TRIGGERS, NULL);
729 }
730
731 static inline Unit* UNIT_GET_SLICE(const Unit *u) {
732 return unit_has_dependency(u, UNIT_ATOM_IN_SLICE, NULL);
733 }
734
735 Unit* unit_new(Manager *m, size_t size);
736 Unit* unit_free(Unit *u);
737 DEFINE_TRIVIAL_CLEANUP_FUNC(Unit *, unit_free);
738
739 int unit_new_for_name(Manager *m, size_t size, const char *name, Unit **ret);
740 int unit_add_name(Unit *u, const char *name);
741
742 int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference, UnitDependencyMask mask);
743 int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference, UnitDependencyMask mask);
744
745 int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, bool add_reference, UnitDependencyMask mask);
746 int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, bool add_reference, UnitDependencyMask mask);
747
748 int unit_add_exec_dependencies(Unit *u, ExecContext *c);
749
750 int unit_choose_id(Unit *u, const char *name);
751 int unit_set_description(Unit *u, const char *description);
752
753 bool unit_may_gc(Unit *u);
754
755 static inline bool unit_is_extrinsic(Unit *u) {
756 return u->perpetual ||
757 (UNIT_VTABLE(u)->is_extrinsic && UNIT_VTABLE(u)->is_extrinsic(u));
758 }
759
760 static inline const char* unit_status_text(Unit *u) {
761 if (u && UNIT_VTABLE(u)->status_text)
762 return UNIT_VTABLE(u)->status_text(u);
763 return NULL;
764 }
765
766 void unit_add_to_load_queue(Unit *u);
767 void unit_add_to_dbus_queue(Unit *u);
768 void unit_add_to_cleanup_queue(Unit *u);
769 void unit_add_to_gc_queue(Unit *u);
770 void unit_add_to_target_deps_queue(Unit *u);
771 void unit_submit_to_stop_when_unneeded_queue(Unit *u);
772 void unit_submit_to_start_when_upheld_queue(Unit *u);
773 void unit_submit_to_stop_when_bound_queue(Unit *u);
774
775 int unit_merge(Unit *u, Unit *other);
776 int unit_merge_by_name(Unit *u, const char *other);
777
778 Unit *unit_follow_merge(Unit *u) _pure_;
779
780 int unit_load_fragment_and_dropin(Unit *u, bool fragment_required);
781 int unit_load(Unit *unit);
782
783 int unit_set_slice(Unit *u, Unit *slice, UnitDependencyMask mask);
784 int unit_set_default_slice(Unit *u);
785
786 const char *unit_description(Unit *u) _pure_;
787 const char *unit_status_string(Unit *u, char **combined);
788
789 bool unit_has_name(const Unit *u, const char *name);
790
791 UnitActiveState unit_active_state(Unit *u);
792 FreezerState unit_freezer_state(Unit *u);
793 int unit_freezer_state_kernel(Unit *u, FreezerState *ret);
794
795 const char* unit_sub_state_to_string(Unit *u);
796
797 bool unit_can_reload(Unit *u) _pure_;
798 bool unit_can_start(Unit *u) _pure_;
799 bool unit_can_stop(Unit *u) _pure_;
800 bool unit_can_isolate(Unit *u) _pure_;
801
802 int unit_start(Unit *u);
803 int unit_stop(Unit *u);
804 int unit_reload(Unit *u);
805
806 int unit_kill(Unit *u, KillWho w, int signo, sd_bus_error *error);
807 int unit_kill_common(Unit *u, KillWho who, int signo, pid_t main_pid, pid_t control_pid, sd_bus_error *error);
808
809 typedef enum UnitNotifyFlags {
810 UNIT_NOTIFY_RELOAD_FAILURE = 1 << 0,
811 UNIT_NOTIFY_WILL_AUTO_RESTART = 1 << 1,
812 } UnitNotifyFlags;
813
814 void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, UnitNotifyFlags flags);
815
816 int unit_watch_pid(Unit *u, pid_t pid, bool exclusive);
817 void unit_unwatch_pid(Unit *u, pid_t pid);
818 void unit_unwatch_all_pids(Unit *u);
819
820 int unit_enqueue_rewatch_pids(Unit *u);
821 void unit_dequeue_rewatch_pids(Unit *u);
822
823 int unit_install_bus_match(Unit *u, sd_bus *bus, const char *name);
824 int unit_watch_bus_name(Unit *u, const char *name);
825 void unit_unwatch_bus_name(Unit *u, const char *name);
826
827 bool unit_job_is_applicable(Unit *u, JobType j);
828
829 int set_unit_path(const char *p);
830
831 char *unit_dbus_path(Unit *u);
832 char *unit_dbus_path_invocation_id(Unit *u);
833
834 int unit_load_related_unit(Unit *u, const char *type, Unit **_found);
835
836 int unit_add_node_dependency(Unit *u, const char *what, UnitDependency d, UnitDependencyMask mask);
837 int unit_add_blockdev_dependency(Unit *u, const char *what, UnitDependencyMask mask);
838
839 int unit_coldplug(Unit *u);
840 void unit_catchup(Unit *u);
841
842 void unit_status_printf(Unit *u, StatusType status_type, const char *status, const char *format, const char *ident) _printf_(4, 0);
843
844 bool unit_need_daemon_reload(Unit *u);
845
846 void unit_reset_failed(Unit *u);
847
848 Unit *unit_following(Unit *u);
849 int unit_following_set(Unit *u, Set **s);
850
851 const char *unit_slice_name(Unit *u);
852
853 bool unit_stop_pending(Unit *u) _pure_;
854 bool unit_inactive_or_pending(Unit *u) _pure_;
855 bool unit_active_or_pending(Unit *u);
856 bool unit_will_restart_default(Unit *u);
857 bool unit_will_restart(Unit *u);
858
859 int unit_add_default_target_dependency(Unit *u, Unit *target);
860
861 void unit_start_on_failure(Unit *u, const char *dependency_name, UnitDependencyAtom atom, JobMode job_mode);
862 void unit_trigger_notify(Unit *u);
863
864 UnitFileState unit_get_unit_file_state(Unit *u);
865 int unit_get_unit_file_preset(Unit *u);
866
867 Unit* unit_ref_set(UnitRef *ref, Unit *source, Unit *target);
868 void unit_ref_unset(UnitRef *ref);
869
870 #define UNIT_DEREF(ref) ((ref).target)
871 #define UNIT_ISSET(ref) (!!(ref).target)
872
873 int unit_patch_contexts(Unit *u);
874
875 ExecContext *unit_get_exec_context(const Unit *u) _pure_;
876 KillContext *unit_get_kill_context(Unit *u) _pure_;
877 CGroupContext *unit_get_cgroup_context(Unit *u) _pure_;
878
879 ExecRuntime *unit_get_exec_runtime(Unit *u) _pure_;
880
881 int unit_setup_exec_runtime(Unit *u);
882 int unit_setup_dynamic_creds(Unit *u);
883
884 char* unit_escape_setting(const char *s, UnitWriteFlags flags, char **buf);
885 char* unit_concat_strv(char **l, UnitWriteFlags flags);
886
887 int unit_write_setting(Unit *u, UnitWriteFlags flags, const char *name, const char *data);
888 int unit_write_settingf(Unit *u, UnitWriteFlags mode, const char *name, const char *format, ...) _printf_(4,5);
889
890 int unit_kill_context(Unit *u, KillContext *c, KillOperation k, pid_t main_pid, pid_t control_pid, bool main_pid_alien);
891
892 int unit_make_transient(Unit *u);
893
894 int unit_require_mounts_for(Unit *u, const char *path, UnitDependencyMask mask);
895
896 bool unit_type_supported(UnitType t);
897
898 bool unit_is_pristine(Unit *u);
899
900 bool unit_is_unneeded(Unit *u);
901 bool unit_is_upheld_by_active(Unit *u, Unit **ret_culprit);
902 bool unit_is_bound_by_inactive(Unit *u, Unit **ret_culprit);
903
904 pid_t unit_control_pid(Unit *u);
905 pid_t unit_main_pid(Unit *u);
906
907 void unit_warn_if_dir_nonempty(Unit *u, const char* where);
908 int unit_fail_if_noncanonical(Unit *u, const char* where);
909
910 int unit_test_start_limit(Unit *u);
911
912 int unit_ref_uid_gid(Unit *u, uid_t uid, gid_t gid);
913 void unit_unref_uid_gid(Unit *u, bool destroy_now);
914
915 void unit_notify_user_lookup(Unit *u, uid_t uid, gid_t gid);
916
917 int unit_set_invocation_id(Unit *u, sd_id128_t id);
918 int unit_acquire_invocation_id(Unit *u);
919
920 bool unit_shall_confirm_spawn(Unit *u);
921
922 int unit_set_exec_params(Unit *s, ExecParameters *p);
923
924 int unit_fork_helper_process(Unit *u, const char *name, pid_t *ret);
925 int unit_fork_and_watch_rm_rf(Unit *u, char **paths, pid_t *ret_pid);
926
927 void unit_remove_dependencies(Unit *u, UnitDependencyMask mask);
928
929 void unit_export_state_files(Unit *u);
930 void unit_unlink_state_files(Unit *u);
931
932 int unit_prepare_exec(Unit *u);
933
934 int unit_log_leftover_process_start(pid_t pid, int sig, void *userdata);
935 int unit_log_leftover_process_stop(pid_t pid, int sig, void *userdata);
936 int unit_warn_leftover_processes(Unit *u, cg_kill_log_func_t log_func);
937
938 bool unit_needs_console(Unit *u);
939
940 const char *unit_label_path(const Unit *u);
941
942 int unit_pid_attachable(Unit *unit, pid_t pid, sd_bus_error *error);
943
944 static inline bool unit_has_job_type(Unit *u, JobType type) {
945 return u && u->job && u->job->type == type;
946 }
947
948 static inline bool unit_log_level_test(const Unit *u, int level) {
949 ExecContext *ec = unit_get_exec_context(u);
950 return !ec || ec->log_level_max < 0 || ec->log_level_max >= LOG_PRI(level);
951 }
952
953 /* unit_log_skip is for cases like ExecCondition= where a unit is considered "done"
954 * after some execution, rather than succeeded or failed. */
955 void unit_log_skip(Unit *u, const char *result);
956 void unit_log_success(Unit *u);
957 void unit_log_failure(Unit *u, const char *result);
958 static inline void unit_log_result(Unit *u, bool success, const char *result) {
959 if (success)
960 unit_log_success(u);
961 else
962 unit_log_failure(u, result);
963 }
964
965 void unit_log_process_exit(Unit *u, const char *kind, const char *command, bool success, int code, int status);
966
967 int unit_exit_status(Unit *u);
968 int unit_success_action_exit_status(Unit *u);
969 int unit_failure_action_exit_status(Unit *u);
970
971 int unit_test_trigger_loaded(Unit *u);
972
973 void unit_destroy_runtime_data(Unit *u, const ExecContext *context);
974 int unit_clean(Unit *u, ExecCleanMask mask);
975 int unit_can_clean(Unit *u, ExecCleanMask *ret_mask);
976
977 bool unit_can_freeze(Unit *u);
978 int unit_freeze(Unit *u);
979 void unit_frozen(Unit *u);
980
981 int unit_thaw(Unit *u);
982 void unit_thawed(Unit *u);
983
984 int unit_freeze_vtable_common(Unit *u);
985 int unit_thaw_vtable_common(Unit *u);
986
987 /* Macros which append UNIT= or USER_UNIT= to the message */
988
989 #define log_unit_full_errno_zerook(unit, level, error, ...) \
990 ({ \
991 const Unit *_u = (unit); \
992 const int _l = (level); \
993 (log_get_max_level() < LOG_PRI(_l) || (_u && !unit_log_level_test(_u, _l))) ? -ERRNO_VALUE(error) : \
994 _u ? log_object_internal(_l, error, PROJECT_FILE, __LINE__, __func__, _u->manager->unit_log_field, _u->id, _u->manager->invocation_log_field, _u->invocation_id_string, ##__VA_ARGS__) : \
995 log_internal(_l, error, PROJECT_FILE, __LINE__, __func__, ##__VA_ARGS__); \
996 })
997
998 #define log_unit_full_errno(unit, level, error, ...) \
999 ({ \
1000 int _error = (error); \
1001 ASSERT_NON_ZERO(_error); \
1002 log_unit_full_errno_zerook(unit, level, _error, ##__VA_ARGS__); \
1003 })
1004
1005 #define log_unit_full(unit, level, ...) (void) log_unit_full_errno_zerook(unit, level, 0, __VA_ARGS__)
1006
1007 #define log_unit_debug(unit, ...) log_unit_full(unit, LOG_DEBUG, __VA_ARGS__)
1008 #define log_unit_info(unit, ...) log_unit_full(unit, LOG_INFO, __VA_ARGS__)
1009 #define log_unit_notice(unit, ...) log_unit_full(unit, LOG_NOTICE, __VA_ARGS__)
1010 #define log_unit_warning(unit, ...) log_unit_full(unit, LOG_WARNING, __VA_ARGS__)
1011 #define log_unit_error(unit, ...) log_unit_full(unit, LOG_ERR, __VA_ARGS__)
1012
1013 #define log_unit_debug_errno(unit, error, ...) log_unit_full_errno(unit, LOG_DEBUG, error, __VA_ARGS__)
1014 #define log_unit_info_errno(unit, error, ...) log_unit_full_errno(unit, LOG_INFO, error, __VA_ARGS__)
1015 #define log_unit_notice_errno(unit, error, ...) log_unit_full_errno(unit, LOG_NOTICE, error, __VA_ARGS__)
1016 #define log_unit_warning_errno(unit, error, ...) log_unit_full_errno(unit, LOG_WARNING, error, __VA_ARGS__)
1017 #define log_unit_error_errno(unit, error, ...) log_unit_full_errno(unit, LOG_ERR, error, __VA_ARGS__)
1018
1019 #define log_unit_struct_errno(unit, level, error, ...) \
1020 ({ \
1021 const Unit *_u = (unit); \
1022 const int _l = (level); \
1023 unit_log_level_test(_u, _l) ? \
1024 log_struct_errno(_l, error, __VA_ARGS__, LOG_UNIT_ID(_u)) : \
1025 -ERRNO_VALUE(error); \
1026 })
1027
1028 #define log_unit_struct(unit, level, ...) log_unit_struct_errno(unit, level, 0, __VA_ARGS__)
1029
1030 #define log_unit_struct_iovec_errno(unit, level, error, iovec, n_iovec) \
1031 ({ \
1032 const int _l = (level); \
1033 unit_log_level_test(unit, _l) ? \
1034 log_struct_iovec_errno(_l, error, iovec, n_iovec) : \
1035 -ERRNO_VALUE(error); \
1036 })
1037
1038 #define log_unit_struct_iovec(unit, level, iovec, n_iovec) log_unit_struct_iovec_errno(unit, level, 0, iovec, n_iovec)
1039
1040 #define LOG_UNIT_MESSAGE(unit, fmt, ...) "MESSAGE=%s: " fmt, (unit)->id, ##__VA_ARGS__
1041 #define LOG_UNIT_ID(unit) (unit)->manager->unit_log_format_string, (unit)->id
1042 #define LOG_UNIT_INVOCATION_ID(unit) (unit)->manager->invocation_log_format_string, (unit)->invocation_id_string
1043
1044 const char* collect_mode_to_string(CollectMode m) _const_;
1045 CollectMode collect_mode_from_string(const char *s) _pure_;
1046
1047 typedef struct UnitForEachDependencyData {
1048 /* Stores state for the FOREACH macro below for iterating through all deps that have any of the
1049 * specified dependency atom bits set */
1050 UnitDependencyAtom match_atom;
1051 Hashmap *by_type, *by_unit;
1052 void *current_type;
1053 Iterator by_type_iterator, by_unit_iterator;
1054 Unit **current_unit;
1055 } UnitForEachDependencyData;
1056
1057 /* Iterates through all dependencies that have a specific atom in the dependency type set. This tries to be
1058 * smart: if the atom is unique, we'll directly go to right entry. Otherwise we'll iterate through the
1059 * per-dependency type hashmap and match all dep that have the right atom set. */
1060 #define _UNIT_FOREACH_DEPENDENCY(other, u, ma, data) \
1061 for (UnitForEachDependencyData data = { \
1062 .match_atom = (ma), \
1063 .by_type = (u)->dependencies, \
1064 .by_type_iterator = ITERATOR_FIRST, \
1065 .current_unit = &(other), \
1066 }; \
1067 ({ \
1068 UnitDependency _dt = _UNIT_DEPENDENCY_INVALID; \
1069 bool _found; \
1070 \
1071 if (data.by_type && ITERATOR_IS_FIRST(data.by_type_iterator)) { \
1072 _dt = unit_dependency_from_unique_atom(data.match_atom); \
1073 if (_dt >= 0) { \
1074 data.by_unit = hashmap_get(data.by_type, UNIT_DEPENDENCY_TO_PTR(_dt)); \
1075 data.current_type = UNIT_DEPENDENCY_TO_PTR(_dt); \
1076 data.by_type = NULL; \
1077 _found = !!data.by_unit; \
1078 } \
1079 } \
1080 if (_dt < 0) \
1081 _found = hashmap_iterate(data.by_type, \
1082 &data.by_type_iterator, \
1083 (void**)&(data.by_unit), \
1084 (const void**) &(data.current_type)); \
1085 _found; \
1086 }); ) \
1087 if ((unit_dependency_to_atom(UNIT_DEPENDENCY_FROM_PTR(data.current_type)) & data.match_atom) != 0) \
1088 for (data.by_unit_iterator = ITERATOR_FIRST; \
1089 hashmap_iterate(data.by_unit, \
1090 &data.by_unit_iterator, \
1091 NULL, \
1092 (const void**) data.current_unit); )
1093
1094 /* Note: this matches deps that have *any* of the atoms specified in match_atom set */
1095 #define UNIT_FOREACH_DEPENDENCY(other, u, match_atom) \
1096 _UNIT_FOREACH_DEPENDENCY(other, u, match_atom, UNIQ_T(data, UNIQ))