]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/manager.h
6047c025322d6828768f5314d46b71fe732e8dd3
[thirdparty/systemd.git] / src / core / manager.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 This file is part of systemd.
6
7 Copyright 2010 Lennart Poettering
8 ***/
9
10 #include <stdbool.h>
11 #include <stdio.h>
12
13 #include "sd-bus.h"
14 #include "sd-event.h"
15
16 #include "cgroup-util.h"
17 #include "fdset.h"
18 #include "hashmap.h"
19 #include "ip-address-access.h"
20 #include "list.h"
21 #include "ratelimit.h"
22
23 struct libmnt_monitor;
24
25 /* Enforce upper limit how many names we allow */
26 #define MANAGER_MAX_NAMES 131072 /* 128K */
27
28 typedef struct Manager Manager;
29
30 typedef enum ManagerState {
31 MANAGER_INITIALIZING,
32 MANAGER_STARTING,
33 MANAGER_RUNNING,
34 MANAGER_DEGRADED,
35 MANAGER_MAINTENANCE,
36 MANAGER_STOPPING,
37 _MANAGER_STATE_MAX,
38 _MANAGER_STATE_INVALID = -1
39 } ManagerState;
40
41 typedef enum ManagerExitCode {
42 MANAGER_OK,
43 MANAGER_EXIT,
44 MANAGER_RELOAD,
45 MANAGER_REEXECUTE,
46 MANAGER_REBOOT,
47 MANAGER_POWEROFF,
48 MANAGER_HALT,
49 MANAGER_KEXEC,
50 MANAGER_SWITCH_ROOT,
51 _MANAGER_EXIT_CODE_MAX,
52 _MANAGER_EXIT_CODE_INVALID = -1
53 } ManagerExitCode;
54
55 typedef enum StatusType {
56 STATUS_TYPE_EPHEMERAL,
57 STATUS_TYPE_NORMAL,
58 STATUS_TYPE_EMERGENCY,
59 } StatusType;
60
61 typedef enum ManagerTimestamp {
62 MANAGER_TIMESTAMP_FIRMWARE,
63 MANAGER_TIMESTAMP_LOADER,
64 MANAGER_TIMESTAMP_KERNEL,
65 MANAGER_TIMESTAMP_INITRD,
66 MANAGER_TIMESTAMP_USERSPACE,
67 MANAGER_TIMESTAMP_FINISH,
68
69 MANAGER_TIMESTAMP_SECURITY_START,
70 MANAGER_TIMESTAMP_SECURITY_FINISH,
71 MANAGER_TIMESTAMP_GENERATORS_START,
72 MANAGER_TIMESTAMP_GENERATORS_FINISH,
73 MANAGER_TIMESTAMP_UNITS_LOAD_START,
74 MANAGER_TIMESTAMP_UNITS_LOAD_FINISH,
75 _MANAGER_TIMESTAMP_MAX,
76 _MANAGER_TIMESTAMP_INVALID = -1,
77 } ManagerTimestamp;
78
79 #include "execute.h"
80 #include "job.h"
81 #include "path-lookup.h"
82 #include "show-status.h"
83 #include "unit-name.h"
84
85 enum {
86 /* 0 = run normally */
87 MANAGER_TEST_RUN_MINIMAL = 1 << 1, /* create basic data structures */
88 MANAGER_TEST_RUN_BASIC = 1 << 2, /* interact with the environment */
89 MANAGER_TEST_RUN_ENV_GENERATORS = 1 << 3, /* also run env generators */
90 MANAGER_TEST_RUN_GENERATORS = 1 << 4, /* also run unit generators */
91 MANAGER_TEST_FULL = MANAGER_TEST_RUN_BASIC | MANAGER_TEST_RUN_ENV_GENERATORS | MANAGER_TEST_RUN_GENERATORS,
92 };
93 assert_cc((MANAGER_TEST_FULL & UINT8_MAX) == MANAGER_TEST_FULL);
94
95 struct Manager {
96 /* Note that the set of units we know of is allowed to be
97 * inconsistent. However the subset of it that is loaded may
98 * not, and the list of jobs may neither. */
99
100 /* Active jobs and units */
101 Hashmap *units; /* name string => Unit object n:1 */
102 Hashmap *units_by_invocation_id;
103 Hashmap *jobs; /* job id => Job object 1:1 */
104
105 /* To make it easy to iterate through the units of a specific
106 * type we maintain a per type linked list */
107 LIST_HEAD(Unit, units_by_type[_UNIT_TYPE_MAX]);
108
109 /* Units that need to be loaded */
110 LIST_HEAD(Unit, load_queue); /* this is actually more a stack than a queue, but uh. */
111
112 /* Jobs that need to be run */
113 LIST_HEAD(Job, run_queue); /* more a stack than a queue, too */
114
115 /* Units and jobs that have not yet been announced via
116 * D-Bus. When something about a job changes it is added here
117 * if it is not in there yet. This allows easy coalescing of
118 * D-Bus change signals. */
119 LIST_HEAD(Unit, dbus_unit_queue);
120 LIST_HEAD(Job, dbus_job_queue);
121
122 /* Units to remove */
123 LIST_HEAD(Unit, cleanup_queue);
124
125 /* Units and jobs to check when doing GC */
126 LIST_HEAD(Unit, gc_unit_queue);
127 LIST_HEAD(Job, gc_job_queue);
128
129 /* Units that should be realized */
130 LIST_HEAD(Unit, cgroup_realize_queue);
131
132 /* Units whose cgroup ran empty */
133 LIST_HEAD(Unit, cgroup_empty_queue);
134
135 /* Target units whose default target dependencies haven't been set yet */
136 LIST_HEAD(Unit, target_deps_queue);
137
138 sd_event *event;
139
140 /* This maps PIDs we care about to units that are interested in. We allow multiple units to he interested in
141 * the same PID and multiple PIDs to be relevant to the same unit. Since in most cases only a single unit will
142 * be interested in the same PID we use a somewhat special encoding here: the first unit interested in a PID is
143 * stored directly in the hashmap, keyed by the PID unmodified. If there are other units interested too they'll
144 * be stored in a NULL-terminated array, and keyed by the negative PID. This is safe as pid_t is signed and
145 * negative PIDs are not used for regular processes but process groups, which we don't care about in this
146 * context, but this allows us to use the negative range for our own purposes. */
147 Hashmap *watch_pids; /* pid => unit as well as -pid => array of units */
148
149 /* A set contains all units which cgroup should be refreshed after startup */
150 Set *startup_units;
151
152 /* A set which contains all currently failed units */
153 Set *failed_units;
154
155 sd_event_source *run_queue_event_source;
156
157 char *notify_socket;
158 int notify_fd;
159 sd_event_source *notify_event_source;
160
161 int cgroups_agent_fd;
162 sd_event_source *cgroups_agent_event_source;
163
164 int signal_fd;
165 sd_event_source *signal_event_source;
166
167 sd_event_source *sigchld_event_source;
168
169 int time_change_fd;
170 sd_event_source *time_change_event_source;
171
172 sd_event_source *jobs_in_progress_event_source;
173
174 int user_lookup_fds[2];
175 sd_event_source *user_lookup_event_source;
176
177 sd_event_source *sync_bus_names_event_source;
178
179 UnitFileScope unit_file_scope;
180 LookupPaths lookup_paths;
181 Set *unit_path_cache;
182
183 char **environment;
184
185 usec_t runtime_watchdog;
186 usec_t shutdown_watchdog;
187
188 dual_timestamp timestamps[_MANAGER_TIMESTAMP_MAX];
189
190 struct udev* udev;
191
192 /* Data specific to the device subsystem */
193 struct udev_monitor* udev_monitor;
194 sd_event_source *udev_event_source;
195 Hashmap *devices_by_sysfs;
196
197 /* Data specific to the mount subsystem */
198 struct libmnt_monitor *mount_monitor;
199 sd_event_source *mount_event_source;
200
201 /* Data specific to the swap filesystem */
202 FILE *proc_swaps;
203 sd_event_source *swap_event_source;
204 Hashmap *swaps_by_devnode;
205
206 /* Data specific to the D-Bus subsystem */
207 sd_bus *api_bus, *system_bus;
208 Set *private_buses;
209 int private_listen_fd;
210 sd_event_source *private_listen_event_source;
211
212 /* Contains all the clients that are subscribed to signals via
213 the API bus. Note that private bus connections are always
214 considered subscribes, since they last for very short only,
215 and it is much simpler that way. */
216 sd_bus_track *subscribed;
217 char **deserialized_subscribed;
218
219 /* This is used during reloading: before the reload we queue
220 * the reply message here, and afterwards we send it */
221 sd_bus_message *queued_message;
222
223 Hashmap *watch_bus; /* D-Bus names => Unit object n:1 */
224
225 bool send_reloading_done;
226
227 uint32_t current_job_id;
228 uint32_t default_unit_job_id;
229
230 /* Data specific to the Automount subsystem */
231 int dev_autofs_fd;
232
233 /* Data specific to the cgroup subsystem */
234 Hashmap *cgroup_unit;
235 CGroupMask cgroup_supported;
236 char *cgroup_root;
237
238 /* Notifications from cgroups, when the unified hierarchy is used is done via inotify. */
239 int cgroup_inotify_fd;
240 sd_event_source *cgroup_inotify_event_source;
241 Hashmap *cgroup_inotify_wd_unit;
242
243 /* A defer event for handling cgroup empty events and processing them after SIGCHLD in all cases. */
244 sd_event_source *cgroup_empty_event_source;
245
246 /* Make sure the user cannot accidentally unmount our cgroup
247 * file system */
248 int pin_cgroupfs_fd;
249
250 unsigned gc_marker;
251
252 /* Flags */
253 ManagerExitCode exit_code:5;
254
255 bool dispatching_load_queue:1;
256 bool dispatching_dbus_queue:1;
257
258 bool taint_usr:1;
259
260 /* Have we already sent out the READY=1 notification? */
261 bool ready_sent:1;
262
263 /* Have we already printed the taint line if necessary? */
264 bool taint_logged:1;
265
266 /* Have we ever changed the "kernel.pid_max" sysctl? */
267 bool sysctl_pid_max_changed:1;
268
269 unsigned test_run_flags:8;
270
271 /* If non-zero, exit with the following value when the systemd
272 * process terminate. Useful for containers: systemd-nspawn could get
273 * the return value. */
274 uint8_t return_value;
275
276 ShowStatus show_status;
277 char *confirm_spawn;
278 bool no_console_output;
279 bool service_watchdogs;
280
281 ExecOutput default_std_output, default_std_error;
282
283 usec_t default_restart_usec, default_timeout_start_usec, default_timeout_stop_usec;
284
285 usec_t default_start_limit_interval;
286 unsigned default_start_limit_burst;
287
288 bool default_cpu_accounting;
289 bool default_memory_accounting;
290 bool default_io_accounting;
291 bool default_blockio_accounting;
292 bool default_tasks_accounting;
293 bool default_ip_accounting;
294
295 uint64_t default_tasks_max;
296 usec_t default_timer_accuracy_usec;
297
298 struct rlimit *rlimit[_RLIMIT_MAX];
299
300 /* non-zero if we are reloading or reexecuting, */
301 int n_reloading;
302
303 unsigned n_installed_jobs;
304 unsigned n_failed_jobs;
305
306 /* Jobs in progress watching */
307 unsigned n_running_jobs;
308 unsigned n_on_console;
309 unsigned jobs_in_progress_iteration;
310
311 /* Do we have any outstanding password prompts? */
312 int have_ask_password;
313 int ask_password_inotify_fd;
314 sd_event_source *ask_password_event_source;
315
316 /* Type=idle pipes */
317 int idle_pipe[4];
318 sd_event_source *idle_pipe_event_source;
319
320 char *switch_root;
321 char *switch_root_init;
322
323 /* This maps all possible path prefixes to the units needing
324 * them. It's a hashmap with a path string as key and a Set as
325 * value where Unit objects are contained. */
326 Hashmap *units_requiring_mounts_for;
327
328 /* Used for processing polkit authorization responses */
329 Hashmap *polkit_registry;
330
331 /* Dynamic users/groups, indexed by their name */
332 Hashmap *dynamic_users;
333
334 /* Keep track of all UIDs and GIDs any of our services currently use. This is useful for the RemoveIPC= logic. */
335 Hashmap *uid_refs;
336 Hashmap *gid_refs;
337
338 /* ExecRuntime, indexed by their owner unit id */
339 Hashmap *exec_runtime_by_id;
340
341 /* When the user hits C-A-D more than 7 times per 2s, do something immediately... */
342 RateLimit ctrl_alt_del_ratelimit;
343 EmergencyAction cad_burst_action;
344
345 const char *unit_log_field;
346 const char *unit_log_format_string;
347
348 const char *invocation_log_field;
349 const char *invocation_log_format_string;
350
351 int first_boot; /* tri-state */
352
353 /* Prefixes of e.g. RuntimeDirectory= */
354 char *prefix[_EXEC_DIRECTORY_TYPE_MAX];
355
356 /* Used in the SIGCHLD and sd_notify() message invocation logic to avoid that we dispatch the same event
357 * multiple times on the same unit. */
358 unsigned sigchldgen;
359 unsigned notifygen;
360 };
361
362 #define MANAGER_IS_SYSTEM(m) ((m)->unit_file_scope == UNIT_FILE_SYSTEM)
363 #define MANAGER_IS_USER(m) ((m)->unit_file_scope != UNIT_FILE_SYSTEM)
364
365 #define MANAGER_IS_RELOADING(m) ((m)->n_reloading > 0)
366
367 #define MANAGER_IS_FINISHED(m) (dual_timestamp_is_set((m)->timestamps + MANAGER_TIMESTAMP_FINISH))
368
369 /* The exit code is set to OK as soon as we enter the main loop, and set otherwise as soon as we are done with it */
370 #define MANAGER_IS_RUNNING(m) ((m)->exit_code == MANAGER_OK)
371
372 int manager_new(UnitFileScope scope, unsigned test_run_flags, Manager **m);
373 Manager* manager_free(Manager *m);
374 DEFINE_TRIVIAL_CLEANUP_FUNC(Manager*, manager_free);
375
376 void manager_enumerate(Manager *m);
377 int manager_startup(Manager *m, FILE *serialization, FDSet *fds);
378
379 Job *manager_get_job(Manager *m, uint32_t id);
380 Unit *manager_get_unit(Manager *m, const char *name);
381
382 int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j);
383
384 int manager_load_unit_prepare(Manager *m, const char *name, const char *path, sd_bus_error *e, Unit **_ret);
385 int manager_load_unit(Manager *m, const char *name, const char *path, sd_bus_error *e, Unit **_ret);
386 int manager_load_unit_from_dbus_path(Manager *m, const char *s, sd_bus_error *e, Unit **_u);
387
388 int manager_add_job(Manager *m, JobType type, Unit *unit, JobMode mode, sd_bus_error *e, Job **_ret);
389 int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode mode, sd_bus_error *e, Job **_ret);
390 int manager_add_job_by_name_and_warn(Manager *m, JobType type, const char *name, JobMode mode, Job **ret);
391 int manager_propagate_reload(Manager *m, Unit *unit, JobMode mode, sd_bus_error *e);
392
393 void manager_dump_units(Manager *s, FILE *f, const char *prefix);
394 void manager_dump_jobs(Manager *s, FILE *f, const char *prefix);
395 void manager_dump(Manager *s, FILE *f, const char *prefix);
396 int manager_get_dump_string(Manager *m, char **ret);
397
398 void manager_clear_jobs(Manager *m);
399
400 unsigned manager_dispatch_load_queue(Manager *m);
401
402 int manager_environment_add(Manager *m, char **minus, char **plus);
403 int manager_set_default_rlimits(Manager *m, struct rlimit **default_rlimit);
404
405 int manager_loop(Manager *m);
406
407 int manager_open_serialization(Manager *m, FILE **_f);
408
409 int manager_serialize(Manager *m, FILE *f, FDSet *fds, bool switching_root);
410 int manager_deserialize(Manager *m, FILE *f, FDSet *fds);
411
412 int manager_reload(Manager *m);
413
414 void manager_reset_failed(Manager *m);
415
416 void manager_send_unit_audit(Manager *m, Unit *u, int type, bool success);
417 void manager_send_unit_plymouth(Manager *m, Unit *u);
418
419 bool manager_unit_inactive_or_pending(Manager *m, const char *name);
420
421 void manager_check_finished(Manager *m);
422
423 void manager_recheck_dbus(Manager *m);
424 void manager_recheck_journal(Manager *m);
425
426 void manager_set_show_status(Manager *m, ShowStatus mode);
427 void manager_set_first_boot(Manager *m, bool b);
428
429 void manager_status_printf(Manager *m, StatusType type, const char *status, const char *format, ...) _printf_(4,5);
430 void manager_flip_auto_status(Manager *m, bool enable);
431
432 Set *manager_get_units_requiring_mounts_for(Manager *m, const char *path);
433
434 ManagerState manager_state(Manager *m);
435
436 int manager_update_failed_units(Manager *m, Unit *u, bool failed);
437
438 void manager_unref_uid(Manager *m, uid_t uid, bool destroy_now);
439 int manager_ref_uid(Manager *m, uid_t uid, bool clean_ipc);
440
441 void manager_unref_gid(Manager *m, gid_t gid, bool destroy_now);
442 int manager_ref_gid(Manager *m, gid_t gid, bool destroy_now);
443
444 void manager_vacuum_uid_refs(Manager *m);
445 void manager_vacuum_gid_refs(Manager *m);
446
447 void manager_serialize_uid_refs(Manager *m, FILE *f);
448 void manager_deserialize_uid_refs_one(Manager *m, const char *value);
449
450 void manager_serialize_gid_refs(Manager *m, FILE *f);
451 void manager_deserialize_gid_refs_one(Manager *m, const char *value);
452
453 char *manager_taint_string(Manager *m);
454
455 void manager_ref_console(Manager *m);
456 void manager_unref_console(Manager *m);
457
458 const char *manager_state_to_string(ManagerState m) _const_;
459 ManagerState manager_state_from_string(const char *s) _pure_;
460
461 const char *manager_get_confirm_spawn(Manager *m);
462 bool manager_is_confirm_spawn_disabled(Manager *m);
463 void manager_disable_confirm_spawn(void);
464
465 const char *manager_timestamp_to_string(ManagerTimestamp m) _const_;
466 ManagerTimestamp manager_timestamp_from_string(const char *s) _pure_;