]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/manager.h
Configurable Timeouts/Restarts default values
[thirdparty/systemd.git] / src / core / manager.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
60918275 2
c2f1db8f 3#pragma once
60918275 4
a7334b09
LP
5/***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
a7334b09
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
a7334b09 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
60918275
LP
24#include <stdbool.h>
25#include <inttypes.h>
a66d02c3 26#include <stdio.h>
ea430986
LP
27#include <dbus/dbus.h>
28
a16e1123 29#include "fdset.h"
4ad49000 30#include "cgroup-util.h"
a16e1123 31
4f0f902f 32/* Enforce upper limit how many names we allow */
59d1a833 33#define MANAGER_MAX_NAMES 131072 /* 128K */
4f0f902f 34
60918275 35typedef struct Manager Manager;
acbb0225
LP
36typedef enum WatchType WatchType;
37typedef struct Watch Watch;
38
a16e1123
LP
39typedef enum ManagerExitCode {
40 MANAGER_RUNNING,
41 MANAGER_EXIT,
42 MANAGER_RELOAD,
43 MANAGER_REEXECUTE,
b9080b03
FF
44 MANAGER_REBOOT,
45 MANAGER_POWEROFF,
46 MANAGER_HALT,
47 MANAGER_KEXEC,
664f88a7 48 MANAGER_SWITCH_ROOT,
a16e1123
LP
49 _MANAGER_EXIT_CODE_MAX,
50 _MANAGER_EXIT_CODE_INVALID = -1
51} ManagerExitCode;
52
acbb0225
LP
53enum WatchType {
54 WATCH_INVALID,
ef734fd6 55 WATCH_SIGNAL,
8c47c732 56 WATCH_NOTIFY,
acbb0225 57 WATCH_FD,
faf919f1
LP
58 WATCH_UNIT_TIMER,
59 WATCH_JOB_TIMER,
f94ea366 60 WATCH_MOUNT,
4e434314 61 WATCH_SWAP,
ea430986
LP
62 WATCH_UDEV,
63 WATCH_DBUS_WATCH,
8742514c 64 WATCH_DBUS_TIMEOUT,
03b717a3 65 WATCH_TIME_CHANGE,
31a7eb86
ZJS
66 WATCH_JOBS_IN_PROGRESS,
67 WATCH_IDLE_PIPE,
acbb0225
LP
68};
69
70struct Watch {
71 int fd;
72 WatchType type;
ea430986 73 union {
ac155bb8 74 struct Unit *unit;
faf919f1 75 struct Job *job;
ea430986
LP
76 DBusWatch *bus_watch;
77 DBusTimeout *bus_timeout;
78 } data;
cabab516
LP
79 bool fd_is_dupped:1;
80 bool socket_accept:1;
acbb0225 81};
60918275 82
87f0e418 83#include "unit.h"
60918275
LP
84#include "job.h"
85#include "hashmap.h"
86#include "list.h"
87#include "set.h"
ea430986 88#include "dbus.h"
84e3543e 89#include "path-lookup.h"
c17ec25e 90#include "execute.h"
4ad49000 91#include "unit-name.h"
60918275
LP
92
93struct Manager {
87f0e418 94 /* Note that the set of units we know of is allowed to be
35b8ca3a 95 * inconsistent. However the subset of it that is loaded may
87d1515d
LP
96 * not, and the list of jobs may neither. */
97
87f0e418
LP
98 /* Active jobs and units */
99 Hashmap *units; /* name string => Unit object n:1 */
60918275
LP
100 Hashmap *jobs; /* job id => Job object 1:1 */
101
ef734fd6
LP
102 /* To make it easy to iterate through the units of a specific
103 * type we maintain a per type linked list */
ac155bb8 104 LIST_HEAD(Unit, units_by_type[_UNIT_TYPE_MAX]);
ef734fd6 105
87f0e418 106 /* Units that need to be loaded */
ac155bb8 107 LIST_HEAD(Unit, load_queue); /* this is actually more a stack than a queue, but uh. */
60918275 108
034c6ed7
LP
109 /* Jobs that need to be run */
110 LIST_HEAD(Job, run_queue); /* more a stack than a queue, too */
111
c1e1601e
LP
112 /* Units and jobs that have not yet been announced via
113 * D-Bus. When something about a job changes it is added here
114 * if it is not in there yet. This allows easy coalescing of
115 * D-Bus change signals. */
ac155bb8 116 LIST_HEAD(Unit, dbus_unit_queue);
c1e1601e
LP
117 LIST_HEAD(Job, dbus_job_queue);
118
701cc384 119 /* Units to remove */
ac155bb8 120 LIST_HEAD(Unit, cleanup_queue);
23a177ef 121
701cc384 122 /* Units to check when doing GC */
ac155bb8 123 LIST_HEAD(Unit, gc_queue);
701cc384 124
4ad49000
LP
125 /* Units that should be realized */
126 LIST_HEAD(Unit, cgroup_queue);
127
87f0e418 128 Hashmap *watch_pids; /* pid => Unit object n:1 */
9152c765 129
c952c6ec
LP
130 char *notify_socket;
131
8c47c732 132 Watch notify_watch;
9d58f1db 133 Watch signal_watch;
8742514c 134 Watch time_change_watch;
03b717a3 135 Watch jobs_in_progress_watch;
31a7eb86 136 Watch idle_pipe_watch;
9d58f1db 137
9152c765 138 int epoll_fd;
acbb0225 139
9d58f1db 140 unsigned n_snapshots;
ce578209 141
84e3543e 142 LookupPaths lookup_paths;
fe51822e 143 Set *unit_path_cache;
036643a2 144
1137a57c
LP
145 char **environment;
146
e96d6be7
LP
147 usec_t runtime_watchdog;
148 usec_t shutdown_watchdog;
149
915b3753
LP
150 dual_timestamp firmware_timestamp;
151 dual_timestamp loader_timestamp;
152 dual_timestamp kernel_timestamp;
e9ddabc2 153 dual_timestamp initrd_timestamp;
915b3753 154 dual_timestamp userspace_timestamp;
b0c918b9 155 dual_timestamp finish_timestamp;
518d10e9
UTL
156 dual_timestamp generators_start_timestamp;
157 dual_timestamp generators_finish_timestamp;
d9acfb71
TA
158 dual_timestamp unitsload_start_timestamp;
159 dual_timestamp unitsload_finish_timestamp;
8d567588 160
5a1e9937 161 char *generator_unit_path;
07719a21
LP
162 char *generator_unit_path_early;
163 char *generator_unit_path_late;
b2bb3dbe 164
ef734fd6 165 /* Data specific to the device subsystem */
25ac040b 166 struct udev* udev;
f94ea366
LP
167 struct udev_monitor* udev_monitor;
168 Watch udev_watch;
8fe914ec 169 Hashmap *devices_by_sysfs;
ef734fd6
LP
170
171 /* Data specific to the mount subsystem */
172 FILE *proc_self_mountinfo;
173 Watch mount_watch;
ea430986 174
07b0b134
ML
175 /* Data specific to the swap filesystem */
176 FILE *proc_swaps;
e04aad61
LP
177 Hashmap *swaps_by_proc_swaps;
178 bool request_reload;
4e434314 179 Watch swap_watch;
07b0b134 180
ea430986 181 /* Data specific to the D-Bus subsystem */
f278026d 182 DBusConnection *api_bus, *system_bus;
5e8d1c9a
LP
183 DBusServer *private_bus;
184 Set *bus_connections, *bus_connections_for_dispatch;
185
a16e1123
LP
186 DBusMessage *queued_message; /* This is used during reloading:
187 * before the reload we queue the
188 * reply message here, and
189 * afterwards we send it */
7b97f477 190 DBusConnection *queued_message_connection; /* The connection to send the queued message on */
8e274523 191
05e343b7
LP
192 Hashmap *watch_bus; /* D-Bus names => Unit object n:1 */
193 int32_t name_data_slot;
cbd37330 194 int32_t conn_data_slot;
a567261a 195 int32_t subscribed_data_slot;
05e343b7 196
71445ae7
LP
197 bool send_reloading_done;
198
7fab9d01 199 uint32_t current_job_id;
bacbccb7 200 uint32_t default_unit_job_id;
7fab9d01 201
9d58f1db
LP
202 /* Data specific to the Automount subsystem */
203 int dev_autofs_fd;
204
8e274523 205 /* Data specific to the cgroup subsystem */
4ad49000
LP
206 Hashmap *cgroup_unit;
207 CGroupControllerMask cgroup_supported;
9444b1f2 208 char *cgroup_root;
e537352b 209
701cc384
LP
210 int gc_marker;
211 unsigned n_in_gc_queue;
212
35b8ca3a 213 /* Make sure the user cannot accidentally unmount our cgroup
33be102a
LP
214 * file system */
215 int pin_cgroupfs_fd;
216
9d58f1db 217 /* Flags */
67445f4e 218 SystemdRunningAs running_as;
b9080b03 219 ManagerExitCode exit_code:5;
41447faf 220
9d58f1db
LP
221 bool dispatching_load_queue:1;
222 bool dispatching_run_queue:1;
223 bool dispatching_dbus_queue:1;
224
72bc8d00
LP
225 bool taint_usr:1;
226
9e58ff9c 227 bool show_status;
f295f5c0 228 bool confirm_spawn;
31a7eb86 229 bool no_console_output;
d3689161 230
0a494f1f
LP
231 ExecOutput default_std_output, default_std_error;
232
1f19a534
OS
233 usec_t default_restart_usec, default_timeout_start_usec,
234 default_timeout_stop_usec;
235
c93ff2e9
FC
236 struct rlimit *rlimit[RLIMIT_NLIMITS];
237
a7556052
LP
238 /* non-zero if we are reloading or reexecuting, */
239 int n_reloading;
e409f875
LP
240
241 unsigned n_installed_jobs;
76bf48b7 242 unsigned n_failed_jobs;
f2b68789 243
03b717a3 244 /* Jobs in progress watching */
637f8b8e 245 unsigned n_running_jobs;
7ed9f6cd 246 unsigned n_on_console;
03b717a3 247 unsigned jobs_in_progress_iteration;
637f8b8e 248
f2b68789 249 /* Type=idle pipes */
31a7eb86 250 int idle_pipe[4];
664f88a7
LP
251
252 char *switch_root;
253 char *switch_root_init;
a57f7e2c
LP
254
255 /* This maps all possible path prefixes to the units needing
256 * them. It's a hashmap with a path string as key and a Set as
257 * value where Unit objects are contained. */
258 Hashmap *units_requiring_mounts_for;
60918275
LP
259};
260
6fa48533 261int manager_new(SystemdRunningAs running_as, bool reexecuting, Manager **m);
60918275
LP
262void manager_free(Manager *m);
263
a16e1123 264int manager_enumerate(Manager *m);
f50e0a01 265int manager_coldplug(Manager *m);
a16e1123 266int manager_startup(Manager *m, FILE *serialization, FDSet *fds);
f50e0a01 267
60918275 268Job *manager_get_job(Manager *m, uint32_t id);
87f0e418 269Unit *manager_get_unit(Manager *m, const char *name);
60918275 270
a57f7e2c
LP
271int manager_get_unit_by_path(Manager *m, const char *path, const char *suffix, Unit **_found);
272
86fbf370 273int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j);
ea430986 274
398ef8ba
LP
275int manager_load_unit_prepare(Manager *m, const char *name, const char *path, DBusError *e, Unit **_ret);
276int manager_load_unit(Manager *m, const char *name, const char *path, DBusError *e, Unit **_ret);
80fbf05e 277int manager_load_unit_from_dbus_path(Manager *m, const char *s, DBusError *e, Unit **_u);
28247076 278
398ef8ba
LP
279int manager_add_job(Manager *m, JobType type, Unit *unit, JobMode mode, bool force, DBusError *e, Job **_ret);
280int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode mode, bool force, DBusError *e, Job **_ret);
60918275 281
87f0e418 282void manager_dump_units(Manager *s, FILE *f, const char *prefix);
cea8e32e 283void manager_dump_jobs(Manager *s, FILE *f, const char *prefix);
a66d02c3 284
7fad411c
LP
285void manager_clear_jobs(Manager *m);
286
c1e1601e
LP
287unsigned manager_dispatch_load_queue(Manager *m);
288unsigned manager_dispatch_run_queue(Manager *m);
289unsigned manager_dispatch_dbus_queue(Manager *m);
f50e0a01 290
e21fea24 291int manager_environment_add(Manager *m, char **environment);
c93ff2e9 292int manager_set_default_rlimits(Manager *m, struct rlimit **default_rlimit);
b2bb3dbe 293
9152c765 294int manager_loop(Manager *m);
83c60c9f 295
05e343b7
LP
296void manager_dispatch_bus_name_owner_changed(Manager *m, const char *name, const char* old_owner, const char *new_owner);
297void manager_dispatch_bus_query_pid_done(Manager *m, const char *name, pid_t pid);
298
d8d5ab98 299int manager_open_serialization(Manager *m, FILE **_f);
a16e1123 300
b3680f49 301int manager_serialize(Manager *m, FILE *f, FDSet *fds, bool switching_root);
a16e1123 302int manager_deserialize(Manager *m, FILE *f, FDSet *fds);
01e10de3 303int manager_distribute_fds(Manager *m, FDSet *fds);
a16e1123
LP
304
305int manager_reload(Manager *m);
306
44a6b1b6 307bool manager_is_reloading_or_reexecuting(Manager *m) _pure_;
c17ec25e 308
fdf20a31 309void manager_reset_failed(Manager *m);
5632e374 310
4927fcae 311void manager_send_unit_audit(Manager *m, Unit *u, int type, bool success);
e983b760 312void manager_send_unit_plymouth(Manager *m, Unit *u);
4927fcae 313
31afa0a4 314bool manager_unit_inactive_or_pending(Manager *m, const char *name);
8f6df3fa 315
b0c918b9
LP
316void manager_check_finished(Manager *m);
317
5a1e9937
LP
318void manager_run_generators(Manager *m);
319void manager_undo_generators(Manager *m);
320
4cfa2c99 321void manager_recheck_journal(Manager *m);
f1dd0c3f 322
27d340c7 323void manager_set_show_status(Manager *m, bool b);
44b601bc 324void manager_status_printf(Manager *m, bool ephemeral, const char *status, const char *format, ...) _printf_(4,5);
68b29a9f 325
a57f7e2c
LP
326Set *manager_get_units_requiring_mounts_for(Manager *m, const char *path);
327
68b29a9f 328void watch_init(Watch *w);