]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/manager.c
socket-util: fix socket_get_family()
[thirdparty/systemd.git] / src / core / manager.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
a7334b09 2
60918275 3#include <errno.h>
400f1a33
LP
4#include <fcntl.h>
5#include <linux/kd.h>
e46b13c8 6#include <sys/epoll.h>
400f1a33 7#include <sys/inotify.h>
e1414003 8#include <sys/ioctl.h>
ca6ce62d 9#include <sys/mount.h>
400f1a33 10#include <sys/reboot.h>
8742514c 11#include <sys/timerfd.h>
40efaaed 12#include <sys/utsname.h>
400f1a33
LP
13#include <sys/wait.h>
14#include <unistd.h>
830f6caa 15
349cc4a5 16#if HAVE_AUDIT
4927fcae 17#include <libaudit.h>
830f6caa 18#endif
60918275 19
718db961 20#include "sd-daemon.h"
718db961 21#include "sd-messages.h"
3536f49e 22#include "sd-path.h"
81527be1 23
57b7a260 24#include "all-units.h"
d68c645b 25#include "alloc-util.h"
400f1a33
LP
26#include "audit-fd.h"
27#include "boot-timestamps.h"
28#include "bus-common-errors.h"
29#include "bus-error.h"
30#include "bus-kernel.h"
31#include "bus-util.h"
00d9ef85 32#include "clean-ipc.h"
af6b0ecc 33#include "clock-util.h"
29e6b0c1 34#include "common-signal.h"
28db6fbf 35#include "constants.h"
19d22d43 36#include "core-varlink.h"
786d19fd 37#include "creds-util.h"
400f1a33
LP
38#include "dbus-job.h"
39#include "dbus-manager.h"
40#include "dbus-unit.h"
41#include "dbus.h"
d063a527 42#include "dirent-util.h"
400f1a33 43#include "env-util.h"
4f5dd394 44#include "escape.h"
ec75e8e0 45#include "event-util.h"
89711996 46#include "exec-util.h"
d3070fbd 47#include "execute.h"
400f1a33 48#include "exit-status.h"
3ffd4af2 49#include "fd-util.h"
0d39fa9c 50#include "fileio.h"
385093b7 51#include "generator-setup.h"
60918275 52#include "hashmap.h"
baa6a42d 53#include "initrd-util.h"
9e5fd717 54#include "inotify-util.h"
5cfa33e0 55#include "install.h"
19d22d43 56#include "io-util.h"
d3070fbd 57#include "label.h"
d904afc7 58#include "load-fragment.h"
786d19fd 59#include "locale-setup.h"
16354eff 60#include "log.h"
400f1a33 61#include "macro.h"
3ffd4af2 62#include "manager.h"
2a341bb9 63#include "manager-dump.h"
a01ba4b2 64#include "manager-serialize.h"
0a970718 65#include "memory-util.h"
35cd0ba5 66#include "mkdir-label.h"
ca6ce62d 67#include "mount-util.h"
4bd03515 68#include "os-util.h"
6bedfcbb 69#include "parse-util.h"
400f1a33
LP
70#include "path-lookup.h"
71#include "path-util.h"
72#include "process-util.h"
6bb00842 73#include "psi-util.h"
ea430986 74#include "ratelimit.h"
31ce987c 75#include "rlimit-util.h"
c6878637 76#include "rm-rf.h"
45ae2f72 77#include "selinux-util.h"
400f1a33 78#include "signal-util.h"
57b7a260 79#include "socket-util.h"
514f4ef5 80#include "special.h"
8fcde012 81#include "stat-util.h"
8b43440b 82#include "string-table.h"
07630cea 83#include "string-util.h"
400f1a33 84#include "strv.h"
dd1db3c2 85#include "strxcpyx.h"
6123dfaa 86#include "sysctl-util.h"
a6ecbf83 87#include "syslog-util.h"
400f1a33
LP
88#include "terminal-util.h"
89#include "time-util.h"
90#include "transaction.h"
63e8df04 91#include "uid-range.h"
affb60b1 92#include "umask-util.h"
400f1a33 93#include "unit-name.h"
00d9ef85 94#include "user-util.h"
5dc4c17f 95#include "virt.h"
e96d6be7 96#include "watchdog.h"
60918275 97
a47806fa 98#define NOTIFY_RCVBUF_SIZE (8*1024*1024)
d8fdc620 99#define CGROUPS_AGENT_RCVBUF_SIZE (8*1024*1024)
a47806fa 100
03b717a3 101/* Initial delay and the interval for printing status messages about running jobs */
1b4154a8
ZJS
102#define JOBS_IN_PROGRESS_WAIT_USEC (2*USEC_PER_SEC)
103#define JOBS_IN_PROGRESS_QUIET_WAIT_USEC (25*USEC_PER_SEC)
fd08a840 104#define JOBS_IN_PROGRESS_PERIOD_USEC (USEC_PER_SEC / 3)
03b717a3
MS
105#define JOBS_IN_PROGRESS_PERIOD_DIVISOR 3
106
5238e957 107/* If there are more than 1K bus messages queue across our API and direct buses, then let's not add more on top until
e0a08581
LP
108 * the queue gets more empty. */
109#define MANAGER_BUS_BUSY_THRESHOLD 1024LU
110
111/* How many units and jobs to process of the bus queue before returning to the event loop. */
112#define MANAGER_BUS_MESSAGE_BUDGET 100U
113
718db961 114static int manager_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
d8fdc620 115static int manager_dispatch_cgroups_agent_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
718db961
LP
116static int manager_dispatch_signal_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
117static int manager_dispatch_time_change_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
118static int manager_dispatch_idle_pipe_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
00d9ef85 119static int manager_dispatch_user_lookup_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
718db961 120static int manager_dispatch_jobs_in_progress(sd_event_source *source, usec_t usec, void *userdata);
752b5905 121static int manager_dispatch_run_queue(sd_event_source *source, void *userdata);
575b300b 122static int manager_dispatch_sigchld(sd_event_source *source, void *userdata);
bbf5fd8e 123static int manager_dispatch_timezone_change(sd_event_source *source, const struct inotify_event *event, void *userdata);
64691d20 124static int manager_run_environment_generators(Manager *m);
e801700e 125static int manager_run_generators(Manager *m);
06a4eb07 126static void manager_vacuum(Manager *m);
718db961 127
1b4154a8 128static usec_t manager_watch_jobs_next_time(Manager *m) {
3889fc6f
ZJS
129 usec_t timeout;
130
131 if (MANAGER_IS_USER(m))
132 /* Let the user manager without a timeout show status quickly, so the system manager can make
133 * use of it, if it wants to. */
134 timeout = JOBS_IN_PROGRESS_WAIT_USEC * 2 / 3;
135 else if (show_status_on(m->show_status))
136 /* When status is on, just use the usual timeout. */
137 timeout = JOBS_IN_PROGRESS_WAIT_USEC;
138 else
139 timeout = JOBS_IN_PROGRESS_QUIET_WAIT_USEC;
140
141 return usec_add(now(CLOCK_MONOTONIC), timeout);
1b4154a8
ZJS
142}
143
2ae56591 144static void manager_watch_jobs_in_progress(Manager *m) {
e5723c89 145 usec_t next;
cfa9677b 146 int r;
e5723c89 147
718db961 148 assert(m);
03b717a3 149
42bf1ae1
FB
150 /* We do not want to show the cylon animation if the user
151 * needs to confirm service executions otherwise confirmation
152 * messages will be screwed by the cylon animation. */
b0eb2944 153 if (!manager_is_confirm_spawn_disabled(m))
42bf1ae1
FB
154 return;
155
718db961 156 if (m->jobs_in_progress_event_source)
2ae56591 157 return;
03b717a3 158
1b4154a8 159 next = manager_watch_jobs_next_time(m);
cfa9677b 160 r = sd_event_add_time(
6a0f1f6d
LP
161 m->event,
162 &m->jobs_in_progress_event_source,
163 CLOCK_MONOTONIC,
164 next, 0,
165 manager_dispatch_jobs_in_progress, m);
cfa9677b
MM
166 if (r < 0)
167 return;
7dfbe2e3
TG
168
169 (void) sd_event_source_set_description(m->jobs_in_progress_event_source, "manager-jobs-in-progress");
03b717a3
MS
170}
171
fbd0b64f 172#define CYLON_BUFFER_EXTRA (2*STRLEN(ANSI_RED) + STRLEN(ANSI_HIGHLIGHT_RED) + 2*STRLEN(ANSI_NORMAL))
03b717a3 173
03b717a3
MS
174static void draw_cylon(char buffer[], size_t buflen, unsigned width, unsigned pos) {
175 char *p = buffer;
176
177 assert(buflen >= CYLON_BUFFER_EXTRA + width + 1);
178 assert(pos <= width+1); /* 0 or width+1 mean that the center light is behind the corner */
179
180 if (pos > 1) {
6282c859
MS
181 if (pos > 2)
182 p = mempset(p, ' ', pos-2);
64c3610b
FB
183 if (log_get_show_color())
184 p = stpcpy(p, ANSI_RED);
03b717a3
MS
185 *p++ = '*';
186 }
187
188 if (pos > 0 && pos <= width) {
64c3610b
FB
189 if (log_get_show_color())
190 p = stpcpy(p, ANSI_HIGHLIGHT_RED);
03b717a3
MS
191 *p++ = '*';
192 }
193
64c3610b
FB
194 if (log_get_show_color())
195 p = stpcpy(p, ANSI_NORMAL);
03b717a3
MS
196
197 if (pos < width) {
64c3610b
FB
198 if (log_get_show_color())
199 p = stpcpy(p, ANSI_RED);
03b717a3 200 *p++ = '*';
6282c859
MS
201 if (pos < width-1)
202 p = mempset(p, ' ', width-1-pos);
64c3610b
FB
203 if (log_get_show_color())
204 strcpy(p, ANSI_NORMAL);
03b717a3 205 }
03b717a3
MS
206}
207
1addc46c 208static void manager_flip_auto_status(Manager *m, bool enable, const char *reason) {
f755e3b7
LP
209 assert(m);
210
cb8ccb22
ZJS
211 if (enable) {
212 if (m->show_status == SHOW_STATUS_AUTO)
7365a296 213 manager_set_show_status(m, SHOW_STATUS_TEMPORARY, reason);
cb8ccb22
ZJS
214 } else {
215 if (m->show_status == SHOW_STATUS_TEMPORARY)
7365a296 216 manager_set_show_status(m, SHOW_STATUS_AUTO, reason);
cb8ccb22
ZJS
217 }
218}
219
03b717a3 220static void manager_print_jobs_in_progress(Manager *m) {
03b717a3 221 Job *j;
03b717a3
MS
222 unsigned counter = 0, print_nr;
223 char cylon[6 + CYLON_BUFFER_EXTRA + 1];
224 unsigned cylon_pos;
4c989f89 225 uint64_t timeout = 0;
03b717a3 226
718db961 227 assert(m);
9c3349e2 228 assert(m->n_running_jobs > 0);
718db961 229
7365a296 230 manager_flip_auto_status(m, true, "delay");
d450b6f2 231
03b717a3
MS
232 print_nr = (m->jobs_in_progress_iteration / JOBS_IN_PROGRESS_PERIOD_DIVISOR) % m->n_running_jobs;
233
90e74a66 234 HASHMAP_FOREACH(j, m->jobs)
03b717a3
MS
235 if (j->state == JOB_RUNNING && counter++ == print_nr)
236 break;
237
e970a72e
MS
238 /* m->n_running_jobs must be consistent with the contents of m->jobs,
239 * so the above loop must have succeeded in finding j. */
240 assert(counter == print_nr + 1);
51d122af 241 assert(j);
5a82a91a 242
03b717a3
MS
243 cylon_pos = m->jobs_in_progress_iteration % 14;
244 if (cylon_pos >= 8)
245 cylon_pos = 14 - cylon_pos;
246 draw_cylon(cylon, sizeof(cylon), 6, cylon_pos);
247
8bb310c3
ZJS
248 m->jobs_in_progress_iteration++;
249
3889fc6f 250 char job_of_n[STRLEN("( of ) ") + DECIMAL_STR_MAX(unsigned)*2] = "";
5291f26d 251 if (m->n_running_jobs > 1)
3889fc6f 252 xsprintf(job_of_n, "(%u of %u) ", counter, m->n_running_jobs);
03b717a3 253
4c989f89 254 (void) job_get_timeout(j, &timeout);
8bb310c3 255
04d232d8
ZJS
256 /* We want to use enough information for the user to identify previous lines talking about the same
257 * unit, but keep the message as short as possible. So if 'Starting foo.service' or 'Starting
3889fc6f 258 * foo.service - Description' were used, 'foo.service' is enough here. On the other hand, if we used
04d232d8
ZJS
259 * 'Starting Description' before, then we shall also use 'Description' here. So we pass NULL as the
260 * second argument to unit_status_string(). */
261 const char *ident = unit_status_string(j->unit, NULL);
262
3889fc6f 263 const char *time = FORMAT_TIMESPAN(now(CLOCK_MONOTONIC) - j->begin_usec, 1*USEC_PER_SEC);
4c989f89 264 const char *limit = timeout > 0 ? FORMAT_TIMESPAN(timeout - j->begin_usec, 1*USEC_PER_SEC) : "no limit";
3889fc6f
ZJS
265
266 if (m->status_unit_format == STATUS_UNIT_FORMAT_DESCRIPTION)
267 /* When using 'Description', we effectively don't have enough space to show the nested status
268 * without ellipsization, so let's not even try. */
269 manager_status_printf(m, STATUS_TYPE_EPHEMERAL, cylon,
270 "%sA %s job is running for %s (%s / %s)",
271 job_of_n,
272 job_type_to_string(j->type),
273 ident,
274 time, limit);
275 else {
276 const char *status_text = unit_status_text(j->unit);
277
278 manager_status_printf(m, STATUS_TYPE_EPHEMERAL, cylon,
279 "%sJob %s/%s running (%s / %s)%s%s",
280 job_of_n,
281 ident,
282 job_type_to_string(j->type),
283 time, limit,
284 status_text ? ": " : "",
285 strempty(status_text));
286 }
287
288 sd_notifyf(false,
289 "STATUS=%sUser job %s/%s running (%s / %s)...",
290 job_of_n,
291 ident,
292 job_type_to_string(j->type),
293 time, limit);
294 m->status_ready = false;
03b717a3
MS
295}
296
e46b13c8 297static int have_ask_password(void) {
c2b2df60 298 _cleanup_closedir_ DIR *dir = NULL;
e46b13c8
ZJS
299
300 dir = opendir("/run/systemd/ask-password");
301 if (!dir) {
302 if (errno == ENOENT)
303 return false;
304 else
305 return -errno;
306 }
307
c7f0d9e5 308 FOREACH_DIRENT_ALL(de, dir, return -errno)
e46b13c8
ZJS
309 if (startswith(de->d_name, "ask."))
310 return true;
8fb3f009 311 return false;
e46b13c8
ZJS
312}
313
314static int manager_dispatch_ask_password_fd(sd_event_source *source,
315 int fd, uint32_t revents, void *userdata) {
99534007 316 Manager *m = ASSERT_PTR(userdata);
e46b13c8 317
665dfe93 318 (void) flush_fd(fd);
e46b13c8
ZJS
319
320 m->have_ask_password = have_ask_password();
321 if (m->have_ask_password < 0)
322 /* Log error but continue. Negative have_ask_password
323 * is treated as unknown status. */
c33b3297 324 log_error_errno(m->have_ask_password, "Failed to list /run/systemd/ask-password: %m");
e46b13c8
ZJS
325
326 return 0;
327}
328
329static void manager_close_ask_password(Manager *m) {
330 assert(m);
331
5dcadb4c 332 m->ask_password_event_source = sd_event_source_disable_unref(m->ask_password_event_source);
90990e28 333 m->ask_password_inotify_fd = safe_close(m->ask_password_inotify_fd);
e46b13c8
ZJS
334 m->have_ask_password = -EINVAL;
335}
336
337static int manager_check_ask_password(Manager *m) {
338 int r;
339
340 assert(m);
341
342 if (!m->ask_password_event_source) {
343 assert(m->ask_password_inotify_fd < 0);
344
17e4b070 345 (void) mkdir_p_label("/run/systemd/ask-password", 0755);
e46b13c8
ZJS
346
347 m->ask_password_inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC);
4a62c710 348 if (m->ask_password_inotify_fd < 0)
330b8fb3 349 return log_error_errno(errno, "Failed to create inotify object: %m");
e46b13c8 350
27c3112d
FB
351 r = inotify_add_watch_and_warn(m->ask_password_inotify_fd,
352 "/run/systemd/ask-password",
353 IN_CREATE|IN_DELETE|IN_MOVE);
354 if (r < 0) {
e46b13c8 355 manager_close_ask_password(m);
27c3112d 356 return r;
e46b13c8
ZJS
357 }
358
359 r = sd_event_add_io(m->event, &m->ask_password_event_source,
360 m->ask_password_inotify_fd, EPOLLIN,
361 manager_dispatch_ask_password_fd, m);
362 if (r < 0) {
df3d3bdf 363 log_error_errno(r, "Failed to add event source for /run/systemd/ask-password: %m");
e46b13c8 364 manager_close_ask_password(m);
df3d3bdf 365 return r;
e46b13c8
ZJS
366 }
367
7dfbe2e3
TG
368 (void) sd_event_source_set_description(m->ask_password_event_source, "manager-ask-password");
369
e46b13c8
ZJS
370 /* Queries might have been added meanwhile... */
371 manager_dispatch_ask_password_fd(m->ask_password_event_source,
372 m->ask_password_inotify_fd, EPOLLIN, m);
373 }
374
375 return m->have_ask_password;
376}
377
31a7eb86 378static int manager_watch_idle_pipe(Manager *m) {
31a7eb86
ZJS
379 int r;
380
718db961
LP
381 assert(m);
382
383 if (m->idle_pipe_event_source)
31a7eb86
ZJS
384 return 0;
385
386 if (m->idle_pipe[2] < 0)
387 return 0;
388
151b9b96 389 r = sd_event_add_io(m->event, &m->idle_pipe_event_source, m->idle_pipe[2], EPOLLIN, manager_dispatch_idle_pipe_fd, m);
23bbb0de
MS
390 if (r < 0)
391 return log_error_errno(r, "Failed to watch idle pipe: %m");
31a7eb86 392
7dfbe2e3
TG
393 (void) sd_event_source_set_description(m->idle_pipe_event_source, "manager-idle-pipe");
394
31a7eb86 395 return 0;
31a7eb86
ZJS
396}
397
718db961
LP
398static void manager_close_idle_pipe(Manager *m) {
399 assert(m);
31a7eb86 400
5dcadb4c 401 m->idle_pipe_event_source = sd_event_source_disable_unref(m->idle_pipe_event_source);
cd72bd8a 402
3d94f76c
LP
403 safe_close_pair(m->idle_pipe);
404 safe_close_pair(m->idle_pipe + 2);
31a7eb86
ZJS
405}
406
8742514c 407static int manager_setup_time_change(Manager *m) {
718db961 408 int r;
b92bea5d 409
718db961 410 assert(m);
8742514c 411
638cece4 412 if (MANAGER_IS_TEST_RUN(m))
0d8c31ff
ZJS
413 return 0;
414
5dcadb4c 415 m->time_change_event_source = sd_event_source_disable_unref(m->time_change_event_source);
7feedd18 416
ec75e8e0 417 r = event_add_time_change(m->event, &m->time_change_event_source, manager_dispatch_time_change_fd, m);
23bbb0de
MS
418 if (r < 0)
419 return log_error_errno(r, "Failed to create time change event source: %m");
8742514c 420
a5cc7e5a
LP
421 /* Schedule this slightly earlier than the .timer event sources */
422 r = sd_event_source_set_priority(m->time_change_event_source, SD_EVENT_PRIORITY_NORMAL-1);
423 if (r < 0)
424 return log_error_errno(r, "Failed to set priority of time change event sources: %m");
425
8742514c
LP
426 log_debug("Set up TFD_TIMER_CANCEL_ON_SET timerfd.");
427
428 return 0;
429}
430
bbf5fd8e
LP
431static int manager_read_timezone_stat(Manager *m) {
432 struct stat st;
433 bool changed;
434
435 assert(m);
436
437 /* Read the current stat() data of /etc/localtime so that we detect changes */
438 if (lstat("/etc/localtime", &st) < 0) {
439 log_debug_errno(errno, "Failed to stat /etc/localtime, ignoring: %m");
440 changed = m->etc_localtime_accessible;
441 m->etc_localtime_accessible = false;
442 } else {
443 usec_t k;
444
445 k = timespec_load(&st.st_mtim);
446 changed = !m->etc_localtime_accessible || k != m->etc_localtime_mtime;
447
448 m->etc_localtime_mtime = k;
449 m->etc_localtime_accessible = true;
450 }
451
452 return changed;
453}
454
455static int manager_setup_timezone_change(Manager *m) {
a5cc7e5a 456 _cleanup_(sd_event_source_unrefp) sd_event_source *new_event = NULL;
bbf5fd8e
LP
457 int r;
458
459 assert(m);
460
638cece4 461 if (MANAGER_IS_TEST_RUN(m))
bbf5fd8e
LP
462 return 0;
463
464 /* We watch /etc/localtime for three events: change of the link count (which might mean removal from /etc even
465 * though another link might be kept), renames, and file close operations after writing. Note we don't bother
466 * with IN_DELETE_SELF, as that would just report when the inode is removed entirely, i.e. after the link count
467 * went to zero and all fds to it are closed.
468 *
469 * Note that we never follow symlinks here. This is a simplification, but should cover almost all cases
470 * correctly.
471 *
472 * Note that we create the new event source first here, before releasing the old one. This should optimize
473 * behaviour as this way sd-event can reuse the old watch in case the inode didn't change. */
474
475 r = sd_event_add_inotify(m->event, &new_event, "/etc/localtime",
476 IN_ATTRIB|IN_MOVE_SELF|IN_CLOSE_WRITE|IN_DONT_FOLLOW, manager_dispatch_timezone_change, m);
0cb21d8c
LP
477 if (r == -ENOENT) {
478 /* If the file doesn't exist yet, subscribe to /etc instead, and wait until it is created either by
479 * O_CREATE or by rename() */
480
481 log_debug_errno(r, "/etc/localtime doesn't exist yet, watching /etc instead.");
bbf5fd8e
LP
482 r = sd_event_add_inotify(m->event, &new_event, "/etc",
483 IN_CREATE|IN_MOVED_TO|IN_ONLYDIR, manager_dispatch_timezone_change, m);
0cb21d8c 484 }
bbf5fd8e
LP
485 if (r < 0)
486 return log_error_errno(r, "Failed to create timezone change event source: %m");
487
a5cc7e5a
LP
488 /* Schedule this slightly earlier than the .timer event sources */
489 r = sd_event_source_set_priority(new_event, SD_EVENT_PRIORITY_NORMAL-1);
490 if (r < 0)
491 return log_error_errno(r, "Failed to set priority of timezone change event sources: %m");
492
bbf5fd8e 493 sd_event_source_unref(m->timezone_change_event_source);
a5cc7e5a 494 m->timezone_change_event_source = TAKE_PTR(new_event);
bbf5fd8e
LP
495
496 return 0;
497}
498
80876c20 499static int enable_special_signals(Manager *m) {
254d1313 500 _cleanup_close_ int fd = -EBADF;
80876c20
LP
501
502 assert(m);
503
638cece4 504 if (MANAGER_IS_TEST_RUN(m))
37453b3a
EV
505 return 0;
506
a41b539e 507 /* Enable that we get SIGINT on control-alt-del. In containers
c9999773
LP
508 * this will fail with EPERM (older) or EINVAL (newer), so
509 * ignore that. */
4c701096 510 if (reboot(RB_DISABLE_CAD) < 0 && !IN_SET(errno, EPERM, EINVAL))
56f64d95 511 log_warning_errno(errno, "Failed to enable ctrl-alt-del handling: %m");
80876c20 512
a41b539e
LP
513 fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC);
514 if (fd < 0) {
515 /* Support systems without virtual console */
516 if (fd != -ENOENT)
56f64d95 517 log_warning_errno(errno, "Failed to open /dev/tty0: %m");
a41b539e 518 } else {
80876c20
LP
519 /* Enable that we get SIGWINCH on kbrequest */
520 if (ioctl(fd, KDSIGACCEPT, SIGWINCH) < 0)
56f64d95 521 log_warning_errno(errno, "Failed to enable kbrequest handling: %m");
80876c20
LP
522 }
523
524 return 0;
525}
526
8750ac02
ZJS
527#define RTSIG_IF_AVAILABLE(signum) (signum <= SIGRTMAX ? signum : -1)
528
ce578209 529static int manager_setup_signals(Manager *m) {
b92bea5d
ZJS
530 struct sigaction sa = {
531 .sa_handler = SIG_DFL,
532 .sa_flags = SA_NOCLDSTOP|SA_RESTART,
533 };
718db961
LP
534 sigset_t mask;
535 int r;
60918275 536
ce578209
LP
537 assert(m);
538
57c0c30e
LP
539 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
540
4dffec14
LP
541 /* We make liberal use of realtime signals here. On
542 * Linux/glibc we have 30 of them (with the exception of Linux
543 * on hppa, see below), between SIGRTMIN+0 ... SIGRTMIN+30
544 * (aka SIGRTMAX). */
7d793605 545
4dffec14 546 assert_se(sigemptyset(&mask) == 0);
7d793605
LP
547 sigset_add_many(&mask,
548 SIGCHLD, /* Child died */
549 SIGTERM, /* Reexecute daemon */
550 SIGHUP, /* Reload configuration */
54d04cd1 551 SIGUSR1, /* systemd: reconnect to D-Bus */
7d793605
LP
552 SIGUSR2, /* systemd: dump status */
553 SIGINT, /* Kernel sends us this on control-alt-del */
554 SIGWINCH, /* Kernel sends us this on kbrequest (alt-arrowup) */
555 SIGPWR, /* Some kernel drivers and upsd send us this on power failure */
4dffec14 556
7d793605 557 SIGRTMIN+0, /* systemd: start default.target */
0003d1ab 558 SIGRTMIN+1, /* systemd: isolate rescue.target */
7d793605
LP
559 SIGRTMIN+2, /* systemd: isolate emergency.target */
560 SIGRTMIN+3, /* systemd: start halt.target */
561 SIGRTMIN+4, /* systemd: start poweroff.target */
562 SIGRTMIN+5, /* systemd: start reboot.target */
0003d1ab 563 SIGRTMIN+6, /* systemd: start kexec.target */
4dffec14
LP
564
565 /* ... space for more special targets ... */
566
0003d1ab
LP
567 SIGRTMIN+13, /* systemd: Immediate halt */
568 SIGRTMIN+14, /* systemd: Immediate poweroff */
569 SIGRTMIN+15, /* systemd: Immediate reboot */
570 SIGRTMIN+16, /* systemd: Immediate kexec */
4dffec14 571
29e6b0c1
LP
572 /* ... space for one more immediate system state change ... */
573
574 SIGRTMIN+18, /* systemd: control command */
575
576 /* ... space ... */
4dffec14 577
0658666b
LP
578 SIGRTMIN+20, /* systemd: enable status messages */
579 SIGRTMIN+21, /* systemd: disable status messages */
253ee27a
LP
580 SIGRTMIN+22, /* systemd: set log level to LOG_DEBUG */
581 SIGRTMIN+23, /* systemd: set log level to LOG_INFO */
600b704e 582 SIGRTMIN+24, /* systemd: Immediate exit (--user only) */
463aef23 583 SIGRTMIN+25, /* systemd: reexecute manager */
4dffec14 584
8750ac02
ZJS
585 /* Apparently Linux on hppa had fewer RT signals until v3.18,
586 * SIGRTMAX was SIGRTMIN+25, and then SIGRTMIN was lowered,
587 * see commit v3.17-7614-g1f25df2eff.
588 *
589 * We cannot unconditionally make use of those signals here,
590 * so let's use a runtime check. Since these commands are
591 * accessible by different means and only really a safety
592 * net, the missing functionality on hppa shouldn't matter.
593 */
594
595 RTSIG_IF_AVAILABLE(SIGRTMIN+26), /* systemd: set log target to journal-or-kmsg */
596 RTSIG_IF_AVAILABLE(SIGRTMIN+27), /* systemd: set log target to console */
597 RTSIG_IF_AVAILABLE(SIGRTMIN+28), /* systemd: set log target to kmsg */
598 RTSIG_IF_AVAILABLE(SIGRTMIN+29), /* systemd: set log target to syslog-or-kmsg (obsolete) */
4dffec14
LP
599
600 /* ... one free signal here SIGRTMIN+30 ... */
7d793605 601 -1);
ce578209
LP
602 assert_se(sigprocmask(SIG_SETMASK, &mask, NULL) == 0);
603
718db961
LP
604 m->signal_fd = signalfd(-1, &mask, SFD_NONBLOCK|SFD_CLOEXEC);
605 if (m->signal_fd < 0)
ce578209
LP
606 return -errno;
607
151b9b96 608 r = sd_event_add_io(m->event, &m->signal_event_source, m->signal_fd, EPOLLIN, manager_dispatch_signal_fd, m);
718db961
LP
609 if (r < 0)
610 return r;
ce578209 611
7dfbe2e3
TG
612 (void) sd_event_source_set_description(m->signal_event_source, "manager-signal");
613
d8fdc620
LP
614 /* Process signals a bit earlier than the rest of things, but later than notify_fd processing, so that the
615 * notify processing can still figure out to which process/service a message belongs, before we reap the
616 * process. Also, process this before handling cgroup notifications, so that we always collect child exit
617 * status information before detecting that there's no process in a cgroup. */
618 r = sd_event_source_set_priority(m->signal_event_source, SD_EVENT_PRIORITY_NORMAL-6);
29083707
LP
619 if (r < 0)
620 return r;
621
463d0d15 622 if (MANAGER_IS_SYSTEM(m))
80876c20 623 return enable_special_signals(m);
e1414003 624
ce578209
LP
625 return 0;
626}
627
1ad6e8b3 628static char** sanitize_environment(char **l) {
f069efb4 629
47cf8ff2 630 /* Let's remove some environment variables that we need ourselves to communicate with our clients */
f069efb4 631 strv_env_unset_many(
1ad6e8b3 632 l,
8047ac8f
LP
633 "CACHE_DIRECTORY",
634 "CONFIGURATION_DIRECTORY",
bb0c0d6f 635 "CREDENTIALS_DIRECTORY",
47cf8ff2
LP
636 "EXIT_CODE",
637 "EXIT_STATUS",
638 "INVOCATION_ID",
639 "JOURNAL_STREAM",
640 "LISTEN_FDNAMES",
641 "LISTEN_FDS",
642 "LISTEN_PID",
8047ac8f 643 "LOGS_DIRECTORY",
c792a2e5 644 "LOG_NAMESPACE",
f069efb4
LP
645 "MAINPID",
646 "MANAGERPID",
6bb00842
LP
647 "MEMORY_PRESSURE_WATCH",
648 "MEMORY_PRESSURE_WRITE",
c792a2e5
LP
649 "MONITOR_EXIT_CODE",
650 "MONITOR_EXIT_STATUS",
651 "MONITOR_INVOCATION_ID",
652 "MONITOR_SERVICE_RESULT",
653 "MONITOR_UNIT",
47cf8ff2 654 "NOTIFY_SOCKET",
dcf3c3c3 655 "PIDFILE",
47cf8ff2
LP
656 "REMOTE_ADDR",
657 "REMOTE_PORT",
8047ac8f 658 "RUNTIME_DIRECTORY",
47cf8ff2 659 "SERVICE_RESULT",
8047ac8f 660 "STATE_DIRECTORY",
c792a2e5
LP
661 "SYSTEMD_EXEC_PID",
662 "TRIGGER_PATH",
663 "TRIGGER_TIMER_MONOTONIC_USEC",
664 "TRIGGER_TIMER_REALTIME_USEC",
665 "TRIGGER_UNIT",
f069efb4
LP
666 "WATCHDOG_PID",
667 "WATCHDOG_USEC",
668 NULL);
47cf8ff2
LP
669
670 /* Let's order the environment alphabetically, just to make it pretty */
305757d8 671 return strv_sort(l);
f069efb4
LP
672}
673
79a224c4 674int manager_default_environment(Manager *m) {
db11487d
ZJS
675 int r;
676
71ecc858
LP
677 assert(m);
678
1ad6e8b3
LP
679 m->transient_environment = strv_free(m->transient_environment);
680
463d0d15 681 if (MANAGER_IS_SYSTEM(m)) {
c792a2e5
LP
682 /* The system manager always starts with a clean environment for its children. It does not
683 * import the kernel's or the parents' exported variables.
e21fea24 684 *
c792a2e5
LP
685 * The initial passed environment is untouched to keep /proc/self/environ valid; it is used
686 * for tagging the init process inside containers. */
1ad6e8b3 687 m->transient_environment = strv_new("PATH=" DEFAULT_PATH);
db11487d
ZJS
688 if (!m->transient_environment)
689 return log_oom();
e21fea24
KS
690
691 /* Import locale variables LC_*= from configuration */
1ad6e8b3 692 (void) locale_setup(&m->transient_environment);
db11487d 693 } else {
aaf057c4 694 /* The user manager passes its own environment along to its children, except for $PATH. */
1ad6e8b3 695 m->transient_environment = strv_copy(environ);
db11487d
ZJS
696 if (!m->transient_environment)
697 return log_oom();
698
aaf057c4 699 r = strv_env_replace_strdup(&m->transient_environment, "PATH=" DEFAULT_USER_PATH);
db11487d
ZJS
700 if (r < 0)
701 return log_oom();
db11487d 702 }
8b55b8c4 703
1ad6e8b3 704 sanitize_environment(m->transient_environment);
e21fea24 705 return 0;
71ecc858
LP
706}
707
3536f49e
YW
708static int manager_setup_prefix(Manager *m) {
709 struct table_entry {
710 uint64_t type;
711 const char *suffix;
712 };
713
72fd1768 714 static const struct table_entry paths_system[_EXEC_DIRECTORY_TYPE_MAX] = {
9978e631
ZJS
715 [EXEC_DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME, NULL },
716 [EXEC_DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE, NULL },
717 [EXEC_DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE, NULL },
718 [EXEC_DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS, NULL },
3536f49e
YW
719 [EXEC_DIRECTORY_CONFIGURATION] = { SD_PATH_SYSTEM_CONFIGURATION, NULL },
720 };
721
72fd1768 722 static const struct table_entry paths_user[_EXEC_DIRECTORY_TYPE_MAX] = {
9978e631
ZJS
723 [EXEC_DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME, NULL },
724 [EXEC_DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION, NULL },
725 [EXEC_DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE, NULL },
726 [EXEC_DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
727 [EXEC_DIRECTORY_CONFIGURATION] = { SD_PATH_USER_CONFIGURATION, NULL },
3536f49e
YW
728 };
729
3536f49e
YW
730 assert(m);
731
24b45970
ZJS
732 const struct table_entry *p = MANAGER_IS_SYSTEM(m) ? paths_system : paths_user;
733 int r;
3536f49e 734
24b45970 735 for (ExecDirectoryType i = 0; i < _EXEC_DIRECTORY_TYPE_MAX; i++) {
51327bcc 736 r = sd_path_lookup(p[i].type, p[i].suffix, &m->prefix[i]);
3536f49e 737 if (r < 0)
998df7ce
ZJS
738 return log_warning_errno(r, "Failed to lookup %s path: %m",
739 exec_directory_type_to_string(i));
3536f49e
YW
740 }
741
742 return 0;
743}
744
e8630e69
ZJS
745static void manager_free_unit_name_maps(Manager *m) {
746 m->unit_id_map = hashmap_free(m->unit_id_map);
747 m->unit_name_map = hashmap_free(m->unit_name_map);
3fb2326f 748 m->unit_path_cache = set_free(m->unit_path_cache);
c2911d48 749 m->unit_cache_timestamp_hash = 0;
e8630e69
ZJS
750}
751
279d81dd
LP
752static int manager_setup_run_queue(Manager *m) {
753 int r;
754
755 assert(m);
756 assert(!m->run_queue_event_source);
757
758 r = sd_event_add_defer(m->event, &m->run_queue_event_source, manager_dispatch_run_queue, m);
759 if (r < 0)
760 return r;
761
762 r = sd_event_source_set_priority(m->run_queue_event_source, SD_EVENT_PRIORITY_IDLE);
763 if (r < 0)
764 return r;
765
766 r = sd_event_source_set_enabled(m->run_queue_event_source, SD_EVENT_OFF);
767 if (r < 0)
768 return r;
769
770 (void) sd_event_source_set_description(m->run_queue_event_source, "manager-run-queue");
771
772 return 0;
773}
774
575b300b
LP
775static int manager_setup_sigchld_event_source(Manager *m) {
776 int r;
777
778 assert(m);
779 assert(!m->sigchld_event_source);
780
781 r = sd_event_add_defer(m->event, &m->sigchld_event_source, manager_dispatch_sigchld, m);
782 if (r < 0)
783 return r;
784
785 r = sd_event_source_set_priority(m->sigchld_event_source, SD_EVENT_PRIORITY_NORMAL-7);
786 if (r < 0)
787 return r;
788
789 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_OFF);
790 if (r < 0)
791 return r;
792
793 (void) sd_event_source_set_description(m->sigchld_event_source, "manager-sigchld");
794
795 return 0;
796}
797
29e6b0c1
LP
798int manager_setup_memory_pressure_event_source(Manager *m) {
799 int r;
800
801 assert(m);
802
803 m->memory_pressure_event_source = sd_event_source_disable_unref(m->memory_pressure_event_source);
804
805 r = sd_event_add_memory_pressure(m->event, &m->memory_pressure_event_source, NULL, NULL);
806 if (r < 0)
807 log_full_errno(ERRNO_IS_NOT_SUPPORTED(r) || ERRNO_IS_PRIVILEGE(r) || (r == -EHOSTDOWN) ? LOG_DEBUG : LOG_NOTICE, r,
808 "Failed to establish memory pressure event source, ignoring: %m");
6bb00842
LP
809 else if (m->default_memory_pressure_threshold_usec != USEC_INFINITY) {
810
811 /* If there's a default memory pressure threshold set, also apply it to the service manager itself */
812 r = sd_event_source_set_memory_pressure_period(
813 m->memory_pressure_event_source,
814 m->default_memory_pressure_threshold_usec,
815 MEMORY_PRESSURE_DEFAULT_WINDOW_USEC);
816 if (r < 0)
817 log_warning_errno(r, "Failed to adjust memory pressure threshold, ignoring: %m");
818 }
29e6b0c1
LP
819
820 return 0;
821}
822
2ad591a3
LP
823static int manager_find_credentials_dirs(Manager *m) {
824 const char *e;
825 int r;
826
827 assert(m);
828
829 r = get_credentials_dir(&e);
830 if (r < 0) {
831 if (r != -ENXIO)
832 log_debug_errno(r, "Failed to determine credentials directory, ignoring: %m");
833 } else {
834 m->received_credentials_directory = strdup(e);
835 if (!m->received_credentials_directory)
836 return -ENOMEM;
837 }
838
839 r = get_encrypted_credentials_dir(&e);
840 if (r < 0) {
841 if (r != -ENXIO)
842 log_debug_errno(r, "Failed to determine encrypted credentials directory, ignoring: %m");
843 } else {
844 m->received_encrypted_credentials_directory = strdup(e);
845 if (!m->received_encrypted_credentials_directory)
846 return -ENOMEM;
847 }
848
849 return 0;
850}
851
d35fe8c0 852void manager_set_switching_root(Manager *m, bool switching_root) {
7fa49280
LP
853 assert(m);
854
d35fe8c0
FB
855 m->switching_root = MANAGER_IS_SYSTEM(m) && switching_root;
856}
857
b380b643 858int manager_new(LookupScope scope, ManagerTestRunFlags test_run_flags, Manager **_m) {
c70cac54 859 _cleanup_(manager_freep) Manager *m = NULL;
e3dd987c 860 int r;
8e274523
LP
861
862 assert(_m);
b380b643 863 assert(IN_SET(scope, LOOKUP_SCOPE_SYSTEM, LOOKUP_SCOPE_USER));
ce578209 864
3ad228ce 865 m = new(Manager, 1);
915b3753 866 if (!m)
8e274523 867 return -ENOMEM;
60918275 868
3ad228ce
LP
869 *m = (Manager) {
870 .unit_file_scope = scope,
871 .objective = _MANAGER_OBJECTIVE_INVALID,
872
36cf4507
ZJS
873 .status_unit_format = STATUS_UNIT_FORMAT_DEFAULT,
874
3ad228ce
LP
875 .default_timer_accuracy_usec = USEC_PER_MINUTE,
876 .default_memory_accounting = MEMORY_ACCOUNTING_DEFAULT,
877 .default_tasks_accounting = true,
3a0f06c4 878 .default_tasks_max = TASKS_MAX_UNSET,
e4c7b5f5
ZJS
879 .default_timeout_start_usec = manager_default_timeout(scope == LOOKUP_SCOPE_SYSTEM),
880 .default_timeout_stop_usec = manager_default_timeout(scope == LOOKUP_SCOPE_SYSTEM),
3ad228ce 881 .default_restart_usec = DEFAULT_RESTART_USEC,
e4c7b5f5 882 .default_device_timeout_usec = manager_default_timeout(scope == LOOKUP_SCOPE_SYSTEM),
3ad228ce
LP
883
884 .original_log_level = -1,
885 .original_log_target = _LOG_TARGET_INVALID,
886
986935cf
FB
887 .watchdog_overridden[WATCHDOG_RUNTIME] = USEC_INFINITY,
888 .watchdog_overridden[WATCHDOG_REBOOT] = USEC_INFINITY,
889 .watchdog_overridden[WATCHDOG_KEXEC] = USEC_INFINITY,
5717062e 890 .watchdog_overridden[WATCHDOG_PRETIMEOUT] = USEC_INFINITY,
986935cf 891
44a41954
FB
892 .show_status_overridden = _SHOW_STATUS_INVALID,
893
254d1313
ZJS
894 .notify_fd = -EBADF,
895 .cgroups_agent_fd = -EBADF,
896 .signal_fd = -EBADF,
19ee48a6 897 .user_lookup_fds = PIPE_EBADF,
254d1313
ZJS
898 .private_listen_fd = -EBADF,
899 .dev_autofs_fd = -EBADF,
900 .cgroup_inotify_fd = -EBADF,
901 .pin_cgroupfs_fd = -EBADF,
902 .ask_password_inotify_fd = -EBADF,
903 .idle_pipe = { -EBADF, -EBADF, -EBADF, -EBADF},
3ad228ce
LP
904
905 /* start as id #1, so that we can leave #0 around as "null-like" value */
906 .current_job_id = 1,
907
908 .have_ask_password = -EINVAL, /* we don't know */
909 .first_boot = -1,
910 .test_run_flags = test_run_flags,
afcfaa69
LP
911
912 .default_oom_policy = OOM_STOP,
6bb00842
LP
913
914 .default_memory_pressure_watch = CGROUP_PRESSURE_WATCH_AUTO,
915 .default_memory_pressure_threshold_usec = USEC_INFINITY,
3ad228ce 916 };
80876c20 917
349cc4a5 918#if ENABLE_EFI
463d0d15 919 if (MANAGER_IS_SYSTEM(m) && detect_container() <= 0)
9f9f0342
LP
920 boot_timestamps(m->timestamps + MANAGER_TIMESTAMP_USERSPACE,
921 m->timestamps + MANAGER_TIMESTAMP_FIRMWARE,
922 m->timestamps + MANAGER_TIMESTAMP_LOADER);
463d0d15
LP
923#endif
924
f2341e0a 925 /* Prepare log fields we can use for structured logging */
463d0d15
LP
926 if (MANAGER_IS_SYSTEM(m)) {
927 m->unit_log_field = "UNIT=";
928 m->unit_log_format_string = "UNIT=%s";
4b58153d
LP
929
930 m->invocation_log_field = "INVOCATION_ID=";
f1c50bec 931 m->invocation_log_format_string = "INVOCATION_ID=%s";
463d0d15
LP
932 } else {
933 m->unit_log_field = "USER_UNIT=";
934 m->unit_log_format_string = "USER_UNIT=%s";
4b58153d
LP
935
936 m->invocation_log_field = "USER_INVOCATION_ID=";
f1c50bec 937 m->invocation_log_format_string = "USER_INVOCATION_ID=%s";
463d0d15 938 }
f2341e0a 939
2e5c94b9 940 /* Reboot immediately if the user hits C-A-D more often than 7x per 2s */
7d1e61ca 941 m->ctrl_alt_del_ratelimit = (const RateLimit) { .interval = 2 * USEC_PER_SEC, .burst = 7 };
2e5c94b9 942
e21fea24
KS
943 r = manager_default_environment(m);
944 if (r < 0)
c70cac54 945 return r;
1137a57c 946
d5099efc 947 r = hashmap_ensure_allocated(&m->units, &string_hash_ops);
718db961 948 if (r < 0)
c70cac54 949 return r;
60918275 950
548f6937 951 r = hashmap_ensure_allocated(&m->cgroup_unit, &path_hash_ops);
718db961 952 if (r < 0)
c70cac54 953 return r;
9152c765 954
d5099efc 955 r = hashmap_ensure_allocated(&m->watch_bus, &string_hash_ops);
718db961 956 if (r < 0)
c70cac54 957 return r;
05e343b7 958
da8e1782
MO
959 r = prioq_ensure_allocated(&m->run_queue, compare_job_priority);
960 if (r < 0)
961 return r;
962
e8112e67 963 r = manager_setup_prefix(m);
718db961 964 if (r < 0)
c70cac54 965 return r;
8742514c 966
2ad591a3
LP
967 r = manager_find_credentials_dirs(m);
968 if (r < 0)
969 return r;
bb0c0d6f 970
e8112e67 971 r = sd_event_default(&m->event);
8742514c 972 if (r < 0)
c70cac54 973 return r;
9152c765 974
e8112e67 975 r = manager_setup_run_queue(m);
a1d32bac 976 if (r < 0)
c70cac54 977 return r;
8e274523 978
5dd2f5ff 979 if (FLAGS_SET(test_run_flags, MANAGER_TEST_RUN_MINIMAL)) {
e8112e67
ZJS
980 m->cgroup_root = strdup("");
981 if (!m->cgroup_root)
982 return -ENOMEM;
983 } else {
984 r = manager_setup_signals(m);
985 if (r < 0)
986 return r;
8c47c732 987
e8112e67
ZJS
988 r = manager_setup_cgroup(m);
989 if (r < 0)
990 return r;
575b300b 991
e8112e67
ZJS
992 r = manager_setup_time_change(m);
993 if (r < 0)
994 return r;
9670d583 995
bbf5fd8e
LP
996 r = manager_read_timezone_stat(m);
997 if (r < 0)
998 return r;
999
ea5c5f68 1000 (void) manager_setup_timezone_change(m);
bbf5fd8e 1001
e8112e67
ZJS
1002 r = manager_setup_sigchld_event_source(m);
1003 if (r < 0)
1004 return r;
b1994387 1005
29e6b0c1
LP
1006 r = manager_setup_memory_pressure_event_source(m);
1007 if (r < 0)
1008 return r;
1009
b1994387 1010#if HAVE_LIBBPF
ba187c9c 1011 if (MANAGER_IS_SYSTEM(m) && lsm_bpf_supported(/* initialize = */ true)) {
b1994387
ILG
1012 r = lsm_bpf_setup(m);
1013 if (r < 0)
299d9417 1014 log_warning_errno(r, "Failed to setup LSM BPF, ignoring: %m");
b1994387
ILG
1015 }
1016#endif
e8112e67 1017 }
e27fe688 1018
2f8c48b6
AZ
1019 if (test_run_flags == 0) {
1020 if (MANAGER_IS_SYSTEM(m))
1021 r = mkdir_label("/run/systemd/units", 0755);
1022 else {
1023 _cleanup_free_ char *units_path = NULL;
1024 r = xdg_user_runtime_dir(&units_path, "/systemd/units");
1025 if (r < 0)
1026 return r;
1027 r = mkdir_p_label(units_path, 0755);
1028 }
1029
d3070fbd 1030 if (r < 0 && r != -EEXIST)
c70cac54 1031 return r;
d3070fbd
LP
1032 }
1033
e27fe688
LP
1034 m->taint_usr =
1035 !in_initrd() &&
db55bbf2 1036 dir_is_empty("/usr", /* ignore_hidden_or_backup= */ false) > 0;
e27fe688 1037
232f6754
ZJS
1038 /* Note that we do not set up the notify fd here. We do that after deserialization,
1039 * since they might have gotten serialized across the reexec. */
3536f49e 1040
1cc6c93a
YW
1041 *_m = TAKE_PTR(m);
1042
8e274523 1043 return 0;
60918275
LP
1044}
1045
d86f9d52 1046static int manager_setup_notify(Manager *m) {
7181dbdb 1047 int r;
d86f9d52 1048
638cece4 1049 if (MANAGER_IS_TEST_RUN(m))
0d8c31ff
ZJS
1050 return 0;
1051
d86f9d52 1052 if (m->notify_fd < 0) {
254d1313 1053 _cleanup_close_ int fd = -EBADF;
f36a9d59
ZJS
1054 union sockaddr_union sa;
1055 socklen_t sa_len;
d86f9d52
LP
1056
1057 /* First free all secondary fields */
a1e58e8e 1058 m->notify_socket = mfree(m->notify_socket);
5dcadb4c 1059 m->notify_event_source = sd_event_source_disable_unref(m->notify_event_source);
d86f9d52
LP
1060
1061 fd = socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
4a62c710
MS
1062 if (fd < 0)
1063 return log_error_errno(errno, "Failed to allocate notification socket: %m");
d86f9d52 1064
28e7e934 1065 fd_increase_rxbuf(fd, NOTIFY_RCVBUF_SIZE);
a47806fa 1066
b910cc72 1067 m->notify_socket = path_join(m->prefix[EXEC_DIRECTORY_RUNTIME], "systemd/notify");
498e87d6
LP
1068 if (!m->notify_socket)
1069 return log_oom();
1070
f36a9d59
ZJS
1071 r = sockaddr_un_set_path(&sa.un, m->notify_socket);
1072 if (r < 0)
1073 return log_error_errno(r, "Notify socket '%s' not valid for AF_UNIX socket address, refusing.",
1074 m->notify_socket);
1075 sa_len = r;
15a3e96f 1076
498e87d6 1077 (void) mkdir_parents_label(m->notify_socket, 0755);
fbda85b0 1078 (void) sockaddr_un_unlink(&sa.un);
7181dbdb 1079
45ae2f72 1080 r = mac_selinux_bind(fd, &sa.sa, sa_len);
4a62c710 1081 if (r < 0)
45ae2f72 1082 return log_error_errno(r, "bind(%s) failed: %m", m->notify_socket);
d86f9d52 1083
2ff48e98 1084 r = setsockopt_int(fd, SOL_SOCKET, SO_PASSCRED, true);
4a62c710 1085 if (r < 0)
2ff48e98 1086 return log_error_errno(r, "SO_PASSCRED failed: %m");
d86f9d52 1087
c10d6bdb 1088 m->notify_fd = TAKE_FD(fd);
d86f9d52
LP
1089
1090 log_debug("Using notification socket %s", m->notify_socket);
1091 }
1092
1093 if (!m->notify_event_source) {
151b9b96 1094 r = sd_event_add_io(m->event, &m->notify_event_source, m->notify_fd, EPOLLIN, manager_dispatch_notify_fd, m);
895b3a7b
MS
1095 if (r < 0)
1096 return log_error_errno(r, "Failed to allocate notify event source: %m");
d86f9d52 1097
d8fdc620
LP
1098 /* Process notification messages a bit earlier than SIGCHLD, so that we can still identify to which
1099 * service an exit message belongs. */
575b300b 1100 r = sd_event_source_set_priority(m->notify_event_source, SD_EVENT_PRIORITY_NORMAL-8);
23bbb0de
MS
1101 if (r < 0)
1102 return log_error_errno(r, "Failed to set priority of notify event source: %m");
7dfbe2e3
TG
1103
1104 (void) sd_event_source_set_description(m->notify_event_source, "manager-notify");
d86f9d52
LP
1105 }
1106
1107 return 0;
1108}
1109
d8fdc620
LP
1110static int manager_setup_cgroups_agent(Manager *m) {
1111
1112 static const union sockaddr_union sa = {
1113 .un.sun_family = AF_UNIX,
1114 .un.sun_path = "/run/systemd/cgroups-agent",
1115 };
1116 int r;
1117
1118 /* This creates a listening socket we receive cgroups agent messages on. We do not use D-Bus for delivering
1119 * these messages from the cgroups agent binary to PID 1, as the cgroups agent binary is very short-living, and
1120 * each instance of it needs a new D-Bus connection. Since D-Bus connections are SOCK_STREAM/AF_UNIX, on
1121 * overloaded systems the backlog of the D-Bus socket becomes relevant, as not more than the configured number
1122 * of D-Bus connections may be queued until the kernel will start dropping further incoming connections,
1123 * possibly resulting in lost cgroups agent messages. To avoid this, we'll use a private SOCK_DGRAM/AF_UNIX
1124 * socket, where no backlog is relevant as communication may take place without an actual connect() cycle, and
1125 * we thus won't lose messages.
1126 *
1127 * Note that PID 1 will forward the agent message to system bus, so that the user systemd instance may listen
1128 * to it. The system instance hence listens on this special socket, but the user instances listen on the system
1129 * bus for these messages. */
1130
638cece4 1131 if (MANAGER_IS_TEST_RUN(m))
d8fdc620
LP
1132 return 0;
1133
1134 if (!MANAGER_IS_SYSTEM(m))
1135 return 0;
1136
c22800e4 1137 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
b4cccbc1
LP
1138 if (r < 0)
1139 return log_error_errno(r, "Failed to determine whether unified cgroups hierarchy is used: %m");
1140 if (r > 0) /* We don't need this anymore on the unified hierarchy */
d8fdc620
LP
1141 return 0;
1142
1143 if (m->cgroups_agent_fd < 0) {
254d1313 1144 _cleanup_close_ int fd = -EBADF;
d8fdc620
LP
1145
1146 /* First free all secondary fields */
5dcadb4c 1147 m->cgroups_agent_event_source = sd_event_source_disable_unref(m->cgroups_agent_event_source);
d8fdc620
LP
1148
1149 fd = socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
1150 if (fd < 0)
1151 return log_error_errno(errno, "Failed to allocate cgroups agent socket: %m");
1152
28e7e934 1153 fd_increase_rxbuf(fd, CGROUPS_AGENT_RCVBUF_SIZE);
d8fdc620 1154
155b6876 1155 (void) sockaddr_un_unlink(&sa.un);
d8fdc620
LP
1156
1157 /* Only allow root to connect to this socket */
2053593f 1158 WITH_UMASK(0077)
fc2fffe7 1159 r = bind(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un));
d8fdc620
LP
1160 if (r < 0)
1161 return log_error_errno(errno, "bind(%s) failed: %m", sa.un.sun_path);
1162
0b7e8b32 1163 m->cgroups_agent_fd = TAKE_FD(fd);
d8fdc620
LP
1164 }
1165
1166 if (!m->cgroups_agent_event_source) {
1167 r = sd_event_add_io(m->event, &m->cgroups_agent_event_source, m->cgroups_agent_fd, EPOLLIN, manager_dispatch_cgroups_agent_fd, m);
1168 if (r < 0)
1169 return log_error_errno(r, "Failed to allocate cgroups agent event source: %m");
1170
cbe83389
LP
1171 /* Process cgroups notifications early. Note that when the agent notification is received
1172 * we'll just enqueue the unit in the cgroup empty queue, hence pick a high priority than
1173 * that. Also see handling of cgroup inotify for the unified cgroup stuff. */
1174 r = sd_event_source_set_priority(m->cgroups_agent_event_source, SD_EVENT_PRIORITY_NORMAL-9);
d8fdc620
LP
1175 if (r < 0)
1176 return log_error_errno(r, "Failed to set priority of cgroups agent event source: %m");
1177
1178 (void) sd_event_source_set_description(m->cgroups_agent_event_source, "manager-cgroups-agent");
1179 }
1180
1181 return 0;
1182}
1183
00d9ef85
LP
1184static int manager_setup_user_lookup_fd(Manager *m) {
1185 int r;
1186
1187 assert(m);
1188
1189 /* Set up the socket pair used for passing UID/GID resolution results from forked off processes to PID
1190 * 1. Background: we can't do name lookups (NSS) from PID 1, since it might involve IPC and thus activation,
1191 * and we might hence deadlock on ourselves. Hence we do all user/group lookups asynchronously from the forked
1192 * off processes right before executing the binaries to start. In order to be able to clean up any IPC objects
1193 * created by a unit (see RemoveIPC=) we need to know in PID 1 the used UID/GID of the executed processes,
1194 * hence we establish this communication channel so that forked off processes can pass their UID/GID
1195 * information back to PID 1. The forked off processes send their resolved UID/GID to PID 1 in a simple
1196 * datagram, along with their unit name, so that we can share one communication socket pair among all units for
1197 * this purpose.
1198 *
1199 * You might wonder why we need a communication channel for this that is independent of the usual notification
1200 * socket scheme (i.e. $NOTIFY_SOCKET). The primary difference is about trust: data sent via the $NOTIFY_SOCKET
1201 * channel is only accepted if it originates from the right unit and if reception was enabled for it. The user
1202 * lookup socket OTOH is only accessible by PID 1 and its children until they exec(), and always available.
1203 *
1204 * Note that this function is called under two circumstances: when we first initialize (in which case we
1205 * allocate both the socket pair and the event source to listen on it), and when we deserialize after a reload
1206 * (in which case the socket pair already exists but we still need to allocate the event source for it). */
1207
1208 if (m->user_lookup_fds[0] < 0) {
1209
1210 /* Free all secondary fields */
1211 safe_close_pair(m->user_lookup_fds);
5dcadb4c 1212 m->user_lookup_event_source = sd_event_source_disable_unref(m->user_lookup_event_source);
00d9ef85
LP
1213
1214 if (socketpair(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0, m->user_lookup_fds) < 0)
1215 return log_error_errno(errno, "Failed to allocate user lookup socket: %m");
1216
28e7e934 1217 (void) fd_increase_rxbuf(m->user_lookup_fds[0], NOTIFY_RCVBUF_SIZE);
00d9ef85
LP
1218 }
1219
1220 if (!m->user_lookup_event_source) {
1221 r = sd_event_add_io(m->event, &m->user_lookup_event_source, m->user_lookup_fds[0], EPOLLIN, manager_dispatch_user_lookup_fd, m);
1222 if (r < 0)
1223 return log_error_errno(errno, "Failed to allocate user lookup event source: %m");
1224
1225 /* Process even earlier than the notify event source, so that we always know first about valid UID/GID
1226 * resolutions */
67ae4e8d 1227 r = sd_event_source_set_priority(m->user_lookup_event_source, SD_EVENT_PRIORITY_NORMAL-11);
00d9ef85 1228 if (r < 0)
5238e957 1229 return log_error_errno(errno, "Failed to set priority of user lookup event source: %m");
00d9ef85
LP
1230
1231 (void) sd_event_source_set_description(m->user_lookup_event_source, "user-lookup");
1232 }
1233
1234 return 0;
1235}
1236
23a177ef 1237static unsigned manager_dispatch_cleanup_queue(Manager *m) {
595ed347 1238 Unit *u;
23a177ef
LP
1239 unsigned n = 0;
1240
1241 assert(m);
1242
595ed347
MS
1243 while ((u = m->cleanup_queue)) {
1244 assert(u->in_cleanup_queue);
23a177ef 1245
595ed347 1246 unit_free(u);
23a177ef
LP
1247 n++;
1248 }
1249
1250 return n;
1251}
1252
eced69b3 1253enum {
35b8ca3a 1254 GC_OFFSET_IN_PATH, /* This one is on the path we were traveling */
eced69b3
LP
1255 GC_OFFSET_UNSURE, /* No clue */
1256 GC_OFFSET_GOOD, /* We still need this unit */
1257 GC_OFFSET_BAD, /* We don't need this unit anymore */
1258 _GC_OFFSET_MAX
1259};
1260
00d9ef85 1261static void unit_gc_mark_good(Unit *u, unsigned gc_marker) {
4892084f
LN
1262 Unit *other;
1263
1264 u->gc_marker = gc_marker + GC_OFFSET_GOOD;
1265
1266 /* Recursively mark referenced units as GOOD as well */
15ed3c3a 1267 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_REFERENCES)
4892084f
LN
1268 if (other->gc_marker == gc_marker + GC_OFFSET_UNSURE)
1269 unit_gc_mark_good(other, gc_marker);
1270}
1271
eced69b3 1272static void unit_gc_sweep(Unit *u, unsigned gc_marker) {
701cc384 1273 Unit *other;
eced69b3 1274 bool is_bad;
701cc384
LP
1275
1276 assert(u);
1277
4c701096
YW
1278 if (IN_SET(u->gc_marker - gc_marker,
1279 GC_OFFSET_GOOD, GC_OFFSET_BAD, GC_OFFSET_UNSURE, GC_OFFSET_IN_PATH))
701cc384
LP
1280 return;
1281
ac155bb8 1282 if (u->in_cleanup_queue)
701cc384
LP
1283 goto bad;
1284
f2f725e5 1285 if (!unit_may_gc(u))
701cc384
LP
1286 goto good;
1287
ac155bb8 1288 u->gc_marker = gc_marker + GC_OFFSET_IN_PATH;
eced69b3
LP
1289
1290 is_bad = true;
1291
15ed3c3a 1292 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_REFERENCED_BY) {
701cc384
LP
1293 unit_gc_sweep(other, gc_marker);
1294
ac155bb8 1295 if (other->gc_marker == gc_marker + GC_OFFSET_GOOD)
701cc384 1296 goto good;
eced69b3 1297
ac155bb8 1298 if (other->gc_marker != gc_marker + GC_OFFSET_BAD)
eced69b3 1299 is_bad = false;
701cc384
LP
1300 }
1301
ef3fc326
ZJS
1302 LIST_FOREACH(refs_by_target, ref, u->refs_by_target) {
1303 unit_gc_sweep(ref->source, gc_marker);
2641f02e 1304
ef3fc326
ZJS
1305 if (ref->source->gc_marker == gc_marker + GC_OFFSET_GOOD)
1306 goto good;
2641f02e 1307
ef3fc326
ZJS
1308 if (ref->source->gc_marker != gc_marker + GC_OFFSET_BAD)
1309 is_bad = false;
2641f02e 1310 }
701cc384 1311
eced69b3
LP
1312 if (is_bad)
1313 goto bad;
1314
1315 /* We were unable to find anything out about this entry, so
1316 * let's investigate it later */
ac155bb8 1317 u->gc_marker = gc_marker + GC_OFFSET_UNSURE;
eced69b3
LP
1318 unit_add_to_gc_queue(u);
1319 return;
1320
701cc384 1321bad:
eced69b3
LP
1322 /* We definitely know that this one is not useful anymore, so
1323 * let's mark it for deletion */
ac155bb8 1324 u->gc_marker = gc_marker + GC_OFFSET_BAD;
eced69b3 1325 unit_add_to_cleanup_queue(u);
701cc384
LP
1326 return;
1327
1328good:
4892084f 1329 unit_gc_mark_good(u, gc_marker);
701cc384
LP
1330}
1331
c5a97ed1
LP
1332static unsigned manager_dispatch_gc_unit_queue(Manager *m) {
1333 unsigned n = 0, gc_marker;
595ed347 1334 Unit *u;
701cc384
LP
1335
1336 assert(m);
1337
cf1265e1 1338 /* log_debug("Running GC..."); */
701cc384 1339
eced69b3
LP
1340 m->gc_marker += _GC_OFFSET_MAX;
1341 if (m->gc_marker + _GC_OFFSET_MAX <= _GC_OFFSET_MAX)
c9c0cadb 1342 m->gc_marker = 1;
701cc384 1343
eced69b3
LP
1344 gc_marker = m->gc_marker;
1345
c5a97ed1 1346 while ((u = m->gc_unit_queue)) {
595ed347 1347 assert(u->in_gc_queue);
701cc384 1348
595ed347 1349 unit_gc_sweep(u, gc_marker);
eced69b3 1350
c5a97ed1 1351 LIST_REMOVE(gc_queue, m->gc_unit_queue, u);
595ed347 1352 u->in_gc_queue = false;
701cc384
LP
1353
1354 n++;
1355
4c701096
YW
1356 if (IN_SET(u->gc_marker - gc_marker,
1357 GC_OFFSET_BAD, GC_OFFSET_UNSURE)) {
cc3bc3e6 1358 if (u->id)
f2341e0a 1359 log_unit_debug(u, "Collecting.");
595ed347
MS
1360 u->gc_marker = gc_marker + GC_OFFSET_BAD;
1361 unit_add_to_cleanup_queue(u);
701cc384
LP
1362 }
1363 }
1364
701cc384
LP
1365 return n;
1366}
1367
c5a97ed1
LP
1368static unsigned manager_dispatch_gc_job_queue(Manager *m) {
1369 unsigned n = 0;
1370 Job *j;
1371
1372 assert(m);
1373
1374 while ((j = m->gc_job_queue)) {
1375 assert(j->in_gc_queue);
1376
1377 LIST_REMOVE(gc_queue, m->gc_job_queue, j);
1378 j->in_gc_queue = false;
1379
1380 n++;
1381
2ab3050f 1382 if (!job_may_gc(j))
c5a97ed1
LP
1383 continue;
1384
1385 log_unit_debug(j->unit, "Collecting job.");
1386 (void) job_finish_and_invalidate(j, JOB_COLLECTED, false, false);
1387 }
1388
1389 return n;
1390}
1391
a3c1168a
LP
1392static unsigned manager_dispatch_stop_when_unneeded_queue(Manager *m) {
1393 unsigned n = 0;
1394 Unit *u;
1395 int r;
1396
1397 assert(m);
1398
1399 while ((u = m->stop_when_unneeded_queue)) {
1400 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a3c1168a
LP
1401
1402 assert(u->in_stop_when_unneeded_queue);
1403 LIST_REMOVE(stop_when_unneeded_queue, m->stop_when_unneeded_queue, u);
1404 u->in_stop_when_unneeded_queue = false;
1405
1406 n++;
1407
1408 if (!unit_is_unneeded(u))
1409 continue;
1410
1411 log_unit_debug(u, "Unit is not needed anymore.");
1412
1413 /* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
1414 * service being unnecessary after a while. */
1415
0bc488c9 1416 if (!ratelimit_below(&u->auto_start_stop_ratelimit)) {
a3c1168a
LP
1417 log_unit_warning(u, "Unit not needed anymore, but not stopping since we tried this too often recently.");
1418 continue;
1419 }
1420
1421 /* Ok, nobody needs us anymore. Sniff. Then let's commit suicide */
50cbaba4 1422 r = manager_add_job(u->manager, JOB_STOP, u, JOB_FAIL, NULL, &error, NULL);
a3c1168a
LP
1423 if (r < 0)
1424 log_unit_warning_errno(u, r, "Failed to enqueue stop job, ignoring: %s", bus_error_message(&error, r));
1425 }
1426
1427 return n;
1428}
1429
0bc488c9
LP
1430static unsigned manager_dispatch_start_when_upheld_queue(Manager *m) {
1431 unsigned n = 0;
1432 Unit *u;
1433 int r;
1434
1435 assert(m);
1436
1437 while ((u = m->start_when_upheld_queue)) {
1438 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1439 Unit *culprit = NULL;
1440
1441 assert(u->in_start_when_upheld_queue);
1442 LIST_REMOVE(start_when_upheld_queue, m->start_when_upheld_queue, u);
1443 u->in_start_when_upheld_queue = false;
1444
1445 n++;
1446
1447 if (!unit_is_upheld_by_active(u, &culprit))
1448 continue;
1449
1450 log_unit_debug(u, "Unit is started because upheld by active unit %s.", culprit->id);
1451
1452 /* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
1453 * service being unnecessary after a while. */
1454
1455 if (!ratelimit_below(&u->auto_start_stop_ratelimit)) {
1456 log_unit_warning(u, "Unit needs to be started because active unit %s upholds it, but not starting since we tried this too often recently.", culprit->id);
1457 continue;
1458 }
1459
1460 r = manager_add_job(u->manager, JOB_START, u, JOB_FAIL, NULL, &error, NULL);
1461 if (r < 0)
1462 log_unit_warning_errno(u, r, "Failed to enqueue start job, ignoring: %s", bus_error_message(&error, r));
1463 }
1464
1465 return n;
1466}
1467
56c59592
LP
1468static unsigned manager_dispatch_stop_when_bound_queue(Manager *m) {
1469 unsigned n = 0;
1470 Unit *u;
1471 int r;
1472
1473 assert(m);
1474
1475 while ((u = m->stop_when_bound_queue)) {
1476 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1477 Unit *culprit = NULL;
1478
1479 assert(u->in_stop_when_bound_queue);
1480 LIST_REMOVE(stop_when_bound_queue, m->stop_when_bound_queue, u);
1481 u->in_stop_when_bound_queue = false;
1482
1483 n++;
1484
1485 if (!unit_is_bound_by_inactive(u, &culprit))
1486 continue;
1487
1488 log_unit_debug(u, "Unit is stopped because bound to inactive unit %s.", culprit->id);
1489
1490 /* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
1491 * service being unnecessary after a while. */
1492
1493 if (!ratelimit_below(&u->auto_start_stop_ratelimit)) {
1494 log_unit_warning(u, "Unit needs to be stopped because it is bound to inactive unit %s it, but not stopping since we tried this too often recently.", culprit->id);
1495 continue;
1496 }
1497
1498 r = manager_add_job(u->manager, JOB_STOP, u, JOB_REPLACE, NULL, &error, NULL);
1499 if (r < 0)
1500 log_unit_warning_errno(u, r, "Failed to enqueue stop job, ignoring: %s", bus_error_message(&error, r));
1501 }
1502
1503 return n;
1504}
1505
a16e1123 1506static void manager_clear_jobs_and_units(Manager *m) {
a16e1123 1507 Unit *u;
60918275
LP
1508
1509 assert(m);
1510
87f0e418
LP
1511 while ((u = hashmap_first(m->units)))
1512 unit_free(u);
964e0949
LP
1513
1514 manager_dispatch_cleanup_queue(m);
1515
1516 assert(!m->load_queue);
da8e1782 1517 assert(prioq_isempty(m->run_queue));
964e0949
LP
1518 assert(!m->dbus_unit_queue);
1519 assert(!m->dbus_job_queue);
1520 assert(!m->cleanup_queue);
c5a97ed1
LP
1521 assert(!m->gc_unit_queue);
1522 assert(!m->gc_job_queue);
13e72103
MK
1523 assert(!m->cgroup_realize_queue);
1524 assert(!m->cgroup_empty_queue);
1525 assert(!m->cgroup_oom_queue);
1526 assert(!m->target_deps_queue);
a3c1168a 1527 assert(!m->stop_when_unneeded_queue);
0bc488c9 1528 assert(!m->start_when_upheld_queue);
56c59592 1529 assert(!m->stop_when_bound_queue);
964e0949 1530
964e0949
LP
1531 assert(hashmap_isempty(m->jobs));
1532 assert(hashmap_isempty(m->units));
9e9e2b72
MS
1533
1534 m->n_on_console = 0;
1535 m->n_running_jobs = 0;
1e75824c
MK
1536 m->n_installed_jobs = 0;
1537 m->n_failed_jobs = 0;
a16e1123
LP
1538}
1539
06d8d842 1540Manager* manager_free(Manager *m) {
06d8d842
ZJS
1541 if (!m)
1542 return NULL;
a16e1123
LP
1543
1544 manager_clear_jobs_and_units(m);
23a177ef 1545
24b45970 1546 for (UnitType c = 0; c < _UNIT_TYPE_MAX; c++)
7824bbeb
LP
1547 if (unit_vtable[c]->shutdown)
1548 unit_vtable[c]->shutdown(m);
1549
86036b26
LP
1550 /* Keep the cgroup hierarchy in place except when we know we are going down for good */
1551 manager_shutdown_cgroup(m, IN_SET(m->objective, MANAGER_EXIT, MANAGER_REBOOT, MANAGER_POWEROFF, MANAGER_HALT, MANAGER_KEXEC));
8e274523 1552
07a78643 1553 lookup_paths_flush_generator(&m->lookup_paths);
5a1e9937 1554
5e8d1c9a 1555 bus_done(m);
19d22d43 1556 manager_varlink_done(m);
ea430986 1557
e8a565cb
YW
1558 exec_runtime_vacuum(m);
1559 hashmap_free(m->exec_runtime_by_id);
1560
29206d46
LP
1561 dynamic_user_vacuum(m, false);
1562 hashmap_free(m->dynamic_users);
1563
87f0e418 1564 hashmap_free(m->units);
4b58153d 1565 hashmap_free(m->units_by_invocation_id);
60918275 1566 hashmap_free(m->jobs);
62a76913 1567 hashmap_free(m->watch_pids);
05e343b7 1568 hashmap_free(m->watch_bus);
9152c765 1569
da8e1782
MO
1570 prioq_free(m->run_queue);
1571
95ae05c0 1572 set_free(m->startup_units);
f755e3b7
LP
1573 set_free(m->failed_units);
1574
718db961 1575 sd_event_source_unref(m->signal_event_source);
575b300b 1576 sd_event_source_unref(m->sigchld_event_source);
718db961 1577 sd_event_source_unref(m->notify_event_source);
d8fdc620 1578 sd_event_source_unref(m->cgroups_agent_event_source);
718db961 1579 sd_event_source_unref(m->time_change_event_source);
bbf5fd8e 1580 sd_event_source_unref(m->timezone_change_event_source);
718db961 1581 sd_event_source_unref(m->jobs_in_progress_event_source);
752b5905 1582 sd_event_source_unref(m->run_queue_event_source);
00d9ef85 1583 sd_event_source_unref(m->user_lookup_event_source);
29e6b0c1 1584 sd_event_source_unref(m->memory_pressure_event_source);
718db961 1585
03e334a1
LP
1586 safe_close(m->signal_fd);
1587 safe_close(m->notify_fd);
d8fdc620 1588 safe_close(m->cgroups_agent_fd);
00d9ef85 1589 safe_close_pair(m->user_lookup_fds);
718db961 1590
e46b13c8
ZJS
1591 manager_close_ask_password(m);
1592
718db961
LP
1593 manager_close_idle_pipe(m);
1594
1595 sd_event_unref(m->event);
60918275 1596
c952c6ec
LP
1597 free(m->notify_socket);
1598
84e3543e 1599 lookup_paths_free(&m->lookup_paths);
1ad6e8b3
LP
1600 strv_free(m->transient_environment);
1601 strv_free(m->client_environment);
036643a2 1602
4ad49000 1603 hashmap_free(m->cgroup_unit);
e8630e69 1604 manager_free_unit_name_maps(m);
33be102a 1605
664f88a7
LP
1606 free(m->switch_root);
1607 free(m->switch_root_init);
1608
aa5ae971
ŁS
1609 free(m->default_smack_process_label);
1610
31ce987c 1611 rlimit_free_all(m->rlimit);
c93ff2e9 1612
a57f7e2c
LP
1613 assert(hashmap_isempty(m->units_requiring_mounts_for));
1614 hashmap_free(m->units_requiring_mounts_for);
1615
00d9ef85
LP
1616 hashmap_free(m->uid_refs);
1617 hashmap_free(m->gid_refs);
1618
24b45970 1619 for (ExecDirectoryType dt = 0; dt < _EXEC_DIRECTORY_TYPE_MAX; dt++)
35aba85a 1620 m->prefix[dt] = mfree(m->prefix[dt]);
2ad591a3
LP
1621 free(m->received_credentials_directory);
1622 free(m->received_encrypted_credentials_directory);
35aba85a 1623
aff3a9e1
LB
1624 free(m->watchdog_pretimeout_governor);
1625 free(m->watchdog_pretimeout_governor_overridden);
1626
b1994387
ILG
1627#if BPF_FRAMEWORK
1628 lsm_bpf_destroy(m->restrict_fs);
1629#endif
1630
6b430fdb 1631 return mfree(m);
60918275
LP
1632}
1633
04eb582a 1634static void manager_enumerate_perpetual(Manager *m) {
04eb582a
LP
1635 assert(m);
1636
1545051c 1637 if (FLAGS_SET(m->test_run_flags, MANAGER_TEST_RUN_MINIMAL))
b1d5246d
ZJS
1638 return;
1639
04eb582a 1640 /* Let's ask every type to load all units from disk/kernel that it might know */
24b45970 1641 for (UnitType c = 0; c < _UNIT_TYPE_MAX; c++) {
04eb582a
LP
1642 if (!unit_type_supported(c)) {
1643 log_debug("Unit type .%s is not supported on this system.", unit_type_to_string(c));
1644 continue;
1645 }
1646
1647 if (unit_vtable[c]->enumerate_perpetual)
1648 unit_vtable[c]->enumerate_perpetual(m);
1649 }
1650}
1651
a1113e08 1652static void manager_enumerate(Manager *m) {
f50e0a01
LP
1653 assert(m);
1654
1545051c 1655 if (FLAGS_SET(m->test_run_flags, MANAGER_TEST_RUN_MINIMAL))
b1d5246d
ZJS
1656 return;
1657
04eb582a 1658 /* Let's ask every type to load all units from disk/kernel that it might know */
24b45970 1659 for (UnitType c = 0; c < _UNIT_TYPE_MAX; c++) {
1c2e9646 1660 if (!unit_type_supported(c)) {
03afec3c 1661 log_debug("Unit type .%s is not supported on this system.", unit_type_to_string(c));
0faacd47 1662 continue;
a57f7e2c 1663 }
f50e0a01 1664
94b01dae
ZJS
1665 if (unit_vtable[c]->enumerate)
1666 unit_vtable[c]->enumerate(m);
0faacd47
LP
1667 }
1668
f50e0a01 1669 manager_dispatch_load_queue(m);
a16e1123
LP
1670}
1671
007c6337 1672static void manager_coldplug(Manager *m) {
a16e1123
LP
1673 Unit *u;
1674 char *k;
007c6337 1675 int r;
a16e1123
LP
1676
1677 assert(m);
f50e0a01 1678
28e5e1e9 1679 log_debug("Invoking unit coldplug() handlers%s", special_glyph(SPECIAL_GLYPH_ELLIPSIS));
f0831ed2
LP
1680
1681 /* Let's place the units back into their deserialized state */
90e74a66 1682 HASHMAP_FOREACH_KEY(u, k, m->units) {
f50e0a01
LP
1683
1684 /* ignore aliases */
ac155bb8 1685 if (u->id != k)
f50e0a01
LP
1686 continue;
1687
007c6337
LP
1688 r = unit_coldplug(u);
1689 if (r < 0)
1690 log_warning_errno(r, "We couldn't coldplug %s, proceeding anyway: %m", u->id);
f50e0a01 1691 }
a16e1123
LP
1692}
1693
f0831ed2 1694static void manager_catchup(Manager *m) {
f0831ed2
LP
1695 Unit *u;
1696 char *k;
1697
1698 assert(m);
1699
28e5e1e9 1700 log_debug("Invoking unit catchup() handlers%s", special_glyph(SPECIAL_GLYPH_ELLIPSIS));
f0831ed2
LP
1701
1702 /* Let's catch up on any state changes that happened while we were reloading/reexecing */
90e74a66 1703 HASHMAP_FOREACH_KEY(u, k, m->units) {
f0831ed2
LP
1704
1705 /* ignore aliases */
1706 if (u->id != k)
1707 continue;
1708
1709 unit_catchup(u);
1710 }
1711}
1712
9ff1a6f1 1713static void manager_distribute_fds(Manager *m, FDSet *fds) {
9ff1a6f1 1714 Unit *u;
9588bc32
LP
1715
1716 assert(m);
1717
90e74a66 1718 HASHMAP_FOREACH(u, m->units) {
9588bc32
LP
1719
1720 if (fdset_size(fds) <= 0)
1721 break;
1722
9ff1a6f1
LP
1723 if (!UNIT_VTABLE(u)->distribute_fds)
1724 continue;
9588bc32 1725
9ff1a6f1
LP
1726 UNIT_VTABLE(u)->distribute_fds(u, fds);
1727 }
9588bc32
LP
1728}
1729
8559b3b7
LP
1730static bool manager_dbus_is_running(Manager *m, bool deserialized) {
1731 Unit *u;
1732
1733 assert(m);
1734
1735 /* This checks whether the dbus instance we are supposed to expose our APIs on is up. We check both the socket
1736 * and the service unit. If the 'deserialized' parameter is true we'll check the deserialized state of the unit
1737 * rather than the current one. */
1738
638cece4 1739 if (MANAGER_IS_TEST_RUN(m))
8559b3b7
LP
1740 return false;
1741
8559b3b7
LP
1742 u = manager_get_unit(m, SPECIAL_DBUS_SOCKET);
1743 if (!u)
1744 return false;
1745 if ((deserialized ? SOCKET(u)->deserialized_state : SOCKET(u)->state) != SOCKET_RUNNING)
1746 return false;
1747
1748 u = manager_get_unit(m, SPECIAL_DBUS_SERVICE);
1749 if (!u)
1750 return false;
1751 if (!IN_SET((deserialized ? SERVICE(u)->deserialized_state : SERVICE(u)->state), SERVICE_RUNNING, SERVICE_RELOAD))
1752 return false;
1753
1754 return true;
1755}
1756
9d4c195c
LP
1757static void manager_setup_bus(Manager *m) {
1758 assert(m);
1759
1760 /* Let's set up our private bus connection now, unconditionally */
1761 (void) bus_init_private(m);
1762
1763 /* If we are in --user mode also connect to the system bus now */
1764 if (MANAGER_IS_USER(m))
1765 (void) bus_init_system(m);
1766
1767 /* Let's connect to the bus now, but only if the unit is supposed to be up */
1768 if (manager_dbus_is_running(m, MANAGER_IS_RELOADING(m))) {
1769 (void) bus_init_api(m);
1770
1771 if (MANAGER_IS_SYSTEM(m))
1772 (void) bus_init_system(m);
1773 }
1774}
1775
159f1e76
LP
1776static void manager_preset_all(Manager *m) {
1777 int r;
1778
1779 assert(m);
1780
1781 if (m->first_boot <= 0)
1782 return;
1783
1784 if (!MANAGER_IS_SYSTEM(m))
1785 return;
1786
638cece4 1787 if (MANAGER_IS_TEST_RUN(m))
159f1e76
LP
1788 return;
1789
1790 /* If this is the first boot, and we are in the host system, then preset everything */
93651582
JL
1791 UnitFilePresetMode mode = FIRST_BOOT_FULL_PRESET ? UNIT_FILE_PRESET_FULL : UNIT_FILE_PRESET_ENABLE_ONLY;
1792
1793 r = unit_file_preset_all(LOOKUP_SCOPE_SYSTEM, 0, NULL, mode, NULL, 0);
159f1e76
LP
1794 if (r < 0)
1795 log_full_errno(r == -EEXIST ? LOG_NOTICE : LOG_WARNING, r,
1796 "Failed to populate /etc with preset unit settings, ignoring: %m");
1797 else
1798 log_info("Populated /etc with preset unit settings.");
1799}
1800
5ce5e1ad
LP
1801static void manager_ready(Manager *m) {
1802 assert(m);
1803
1804 /* After having loaded everything, do the final round of catching up with what might have changed */
1805
1806 m->objective = MANAGER_OK; /* Tell everyone we are up now */
1807
1808 /* It might be safe to log to the journal now and connect to dbus */
1809 manager_recheck_journal(m);
1810 manager_recheck_dbus(m);
1811
5ce5e1ad
LP
1812 /* Let's finally catch up with any changes that took place while we were reloading/reexecing */
1813 manager_catchup(m);
c6e892bc 1814
15b9243c 1815 /* Create a file which will indicate when the manager started loading units the last time. */
4b3ad81b
LB
1816 if (MANAGER_IS_SYSTEM(m))
1817 (void) touch_file("/run/systemd/systemd-units-load", false,
1818 m->timestamps[MANAGER_TIMESTAMP_UNITS_LOAD].realtime ?: now(CLOCK_REALTIME),
1819 UID_INVALID, GID_INVALID, 0444);
5ce5e1ad
LP
1820}
1821
a01ba4b2 1822Manager* manager_reloading_start(Manager *m) {
d147e2b6 1823 m->n_reloading++;
49fbe940 1824 dual_timestamp_get(m->timestamps + MANAGER_TIMESTAMP_UNITS_LOAD);
d147e2b6
ZJS
1825 return m;
1826}
49fbe940 1827
a01ba4b2 1828void manager_reloading_stopp(Manager **m) {
d147e2b6
ZJS
1829 if (*m) {
1830 assert((*m)->n_reloading > 0);
1831 (*m)->n_reloading--;
1832 }
1833}
1834
2a7cf953 1835int manager_startup(Manager *m, FILE *serialization, FDSet *fds, const char *root) {
17f01ace 1836 int r;
a16e1123
LP
1837
1838 assert(m);
1839
a1f31f47
ZJS
1840 /* If we are running in test mode, we still want to run the generators,
1841 * but we should not touch the real generator directories. */
99aad9a2
ZJS
1842 r = lookup_paths_init_or_warn(&m->lookup_paths, m->unit_file_scope,
1843 MANAGER_IS_TEST_RUN(m) ? LOOKUP_PATHS_TEMPORARY_GENERATED : 0,
1844 root);
e801700e 1845 if (r < 0)
99aad9a2 1846 return r;
5a1e9937 1847
d4ee7bd8 1848 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_GENERATORS_START));
eb523bfb
LP
1849 r = manager_run_environment_generators(m);
1850 if (r >= 0)
1851 r = manager_run_generators(m);
d4ee7bd8 1852 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_GENERATORS_FINISH));
07719a21
LP
1853 if (r < 0)
1854 return r;
1855
159f1e76 1856 manager_preset_all(m);
572986ca 1857
581fef8d 1858 lookup_paths_log(&m->lookup_paths);
572986ca 1859
4df7d537
ZJS
1860 {
1861 /* This block is (optionally) done with the reloading counter bumped */
d7ac0952 1862 _unused_ _cleanup_(manager_reloading_stopp) Manager *reloading = NULL;
4df7d537
ZJS
1863
1864 /* If we will deserialize make sure that during enumeration this is already known, so we increase the
1865 * counter here already */
1866 if (serialization)
1867 reloading = manager_reloading_start(m);
1868
1869 /* First, enumerate what we can from all config files */
1870 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_UNITS_LOAD_START));
1871 manager_enumerate_perpetual(m);
1872 manager_enumerate(m);
1873 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_UNITS_LOAD_FINISH));
1874
1875 /* Second, deserialize if there is something to deserialize */
1876 if (serialization) {
1877 r = manager_deserialize(m, serialization, fds);
1878 if (r < 0)
1879 return log_error_errno(r, "Deserialization failed: %m");
1880 }
01e10de3 1881
4df7d537
ZJS
1882 /* Any fds left? Find some unit which wants them. This is useful to allow container managers to pass
1883 * some file descriptors to us pre-initialized. This enables socket-based activation of entire
1884 * containers. */
1885 manager_distribute_fds(m, fds);
d86f9d52 1886
4df7d537
ZJS
1887 /* We might have deserialized the notify fd, but if we didn't then let's create the bus now */
1888 r = manager_setup_notify(m);
1889 if (r < 0)
1890 /* No sense to continue without notifications, our children would fail anyway. */
1891 return r;
d8fdc620 1892
4df7d537
ZJS
1893 r = manager_setup_cgroups_agent(m);
1894 if (r < 0)
1895 /* Likewise, no sense to continue without empty cgroup notifications. */
1896 return r;
00d9ef85 1897
4df7d537
ZJS
1898 r = manager_setup_user_lookup_fd(m);
1899 if (r < 0)
1900 /* This shouldn't fail, except if things are really broken. */
1901 return r;
8559b3b7 1902
4df7d537
ZJS
1903 /* Connect to the bus if we are good for it */
1904 manager_setup_bus(m);
e3dd987c 1905
5238e957 1906 /* Now that we are connected to all possible buses, let's deserialize who is tracking us. */
4df7d537
ZJS
1907 r = bus_track_coldplug(m, &m->subscribed, false, m->deserialized_subscribed);
1908 if (r < 0)
1909 log_warning_errno(r, "Failed to deserialized tracked clients, ignoring: %m");
1910 m->deserialized_subscribed = strv_free(m->deserialized_subscribed);
a16e1123 1911
19d22d43
LP
1912 r = manager_varlink_init(m);
1913 if (r < 0)
064a5c14 1914 log_warning_errno(r, "Failed to set up Varlink, ignoring: %m");
19d22d43 1915
4df7d537
ZJS
1916 /* Third, fire things up! */
1917 manager_coldplug(m);
3ad2afb6 1918
4df7d537
ZJS
1919 /* Clean up runtime objects */
1920 manager_vacuum(m);
71445ae7 1921
4df7d537
ZJS
1922 if (serialization)
1923 /* Let's wait for the UnitNew/JobNew messages being sent, before we notify that the
1924 * reload is finished */
1925 m->send_reloading_done = true;
9f611ad8
LP
1926 }
1927
5ce5e1ad 1928 manager_ready(m);
f0831ed2 1929
d35fe8c0
FB
1930 manager_set_switching_root(m, false);
1931
17f01ace 1932 return 0;
f50e0a01
LP
1933}
1934
50cbaba4
LP
1935int manager_add_job(
1936 Manager *m,
1937 JobType type,
1938 Unit *unit,
1939 JobMode mode,
1940 Set *affected_jobs,
1941 sd_bus_error *error,
1942 Job **ret) {
1943
7527cb52 1944 Transaction *tr;
50cbaba4 1945 int r;
e5b5ae50
LP
1946
1947 assert(m);
1948 assert(type < _JOB_TYPE_MAX);
87f0e418 1949 assert(unit);
e5b5ae50 1950 assert(mode < _JOB_MODE_MAX);
60918275 1951
7358dc02 1952 if (mode == JOB_ISOLATE && type != JOB_START)
1b09b81c 1953 return sd_bus_error_set(error, SD_BUS_ERROR_INVALID_ARGS, "Isolate is only valid for start.");
c497c7a9 1954
7358dc02 1955 if (mode == JOB_ISOLATE && !unit->allow_isolate)
1b09b81c 1956 return sd_bus_error_set(error, BUS_ERROR_NO_ISOLATION, "Operation refused, unit may not be isolated.");
2528a7a6 1957
1f0f9f21 1958 if (mode == JOB_TRIGGERING && type != JOB_STOP)
1b09b81c 1959 return sd_bus_error_set(error, SD_BUS_ERROR_INVALID_ARGS, "--job-mode=triggering is only valid for stop.");
1f0f9f21 1960
f2341e0a 1961 log_unit_debug(unit, "Trying to enqueue job %s/%s/%s", unit->id, job_type_to_string(type), job_mode_to_string(mode));
9f04bd52 1962
c6497ccb 1963 type = job_type_collapse(type, unit);
e0209d83 1964
23ade460 1965 tr = transaction_new(mode == JOB_REPLACE_IRREVERSIBLY);
7527cb52
MS
1966 if (!tr)
1967 return -ENOMEM;
11dd41ce 1968
4bd29fe5 1969 r = transaction_add_job_and_dependencies(tr, type, unit, NULL, true, false,
3742095b 1970 IN_SET(mode, JOB_IGNORE_DEPENDENCIES, JOB_IGNORE_REQUIREMENTS),
50cbaba4 1971 mode == JOB_IGNORE_DEPENDENCIES, error);
7527cb52
MS
1972 if (r < 0)
1973 goto tr_abort;
c497c7a9 1974
7527cb52
MS
1975 if (mode == JOB_ISOLATE) {
1976 r = transaction_add_isolate_jobs(tr, m);
1977 if (r < 0)
1978 goto tr_abort;
1979 }
1980
1f0f9f21
KK
1981 if (mode == JOB_TRIGGERING) {
1982 r = transaction_add_triggering_jobs(tr, unit);
1983 if (r < 0)
1984 goto tr_abort;
1985 }
1986
50cbaba4 1987 r = transaction_activate(tr, m, mode, affected_jobs, error);
7527cb52
MS
1988 if (r < 0)
1989 goto tr_abort;
e5b5ae50 1990
f2341e0a 1991 log_unit_debug(unit,
66870f90
ZJS
1992 "Enqueued job %s/%s as %u", unit->id,
1993 job_type_to_string(type), (unsigned) tr->anchor_job->id);
f50e0a01 1994
50cbaba4
LP
1995 if (ret)
1996 *ret = tr->anchor_job;
60918275 1997
7527cb52 1998 transaction_free(tr);
e5b5ae50 1999 return 0;
7527cb52
MS
2000
2001tr_abort:
2002 transaction_abort(tr);
2003 transaction_free(tr);
2004 return r;
e5b5ae50 2005}
60918275 2006
50cbaba4 2007int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode mode, Set *affected_jobs, sd_bus_error *e, Job **ret) {
4440b27d 2008 Unit *unit = NULL; /* just to appease gcc, initialization is not really necessary */
28247076
LP
2009 int r;
2010
2011 assert(m);
2012 assert(type < _JOB_TYPE_MAX);
2013 assert(name);
2014 assert(mode < _JOB_MODE_MAX);
2015
c3090674
LP
2016 r = manager_load_unit(m, name, NULL, NULL, &unit);
2017 if (r < 0)
28247076 2018 return r;
4440b27d 2019 assert(unit);
28247076 2020
50cbaba4 2021 return manager_add_job(m, type, unit, mode, affected_jobs, e, ret);
53f18416
LP
2022}
2023
50cbaba4 2024int manager_add_job_by_name_and_warn(Manager *m, JobType type, const char *name, JobMode mode, Set *affected_jobs, Job **ret) {
4afd3348 2025 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
53f18416
LP
2026 int r;
2027
2028 assert(m);
2029 assert(type < _JOB_TYPE_MAX);
2030 assert(name);
2031 assert(mode < _JOB_MODE_MAX);
2032
50cbaba4 2033 r = manager_add_job_by_name(m, type, name, mode, affected_jobs, &error, ret);
53f18416
LP
2034 if (r < 0)
2035 return log_warning_errno(r, "Failed to enqueue %s job for %s: %s", job_mode_to_string(mode), name, bus_error_message(&error, r));
2036
2037 return r;
28247076
LP
2038}
2039
15d167f8
JW
2040int manager_propagate_reload(Manager *m, Unit *unit, JobMode mode, sd_bus_error *e) {
2041 int r;
2042 Transaction *tr;
2043
2044 assert(m);
2045 assert(unit);
2046 assert(mode < _JOB_MODE_MAX);
2047 assert(mode != JOB_ISOLATE); /* Isolate is only valid for start */
2048
2049 tr = transaction_new(mode == JOB_REPLACE_IRREVERSIBLY);
2050 if (!tr)
2051 return -ENOMEM;
2052
2053 /* We need an anchor job */
2054 r = transaction_add_job_and_dependencies(tr, JOB_NOP, unit, NULL, false, false, true, true, e);
2055 if (r < 0)
2056 goto tr_abort;
2057
2058 /* Failure in adding individual dependencies is ignored, so this always succeeds. */
2059 transaction_add_propagate_reload_jobs(tr, unit, tr->anchor_job, mode == JOB_IGNORE_DEPENDENCIES, e);
2060
50cbaba4 2061 r = transaction_activate(tr, m, mode, NULL, e);
15d167f8
JW
2062 if (r < 0)
2063 goto tr_abort;
2064
2065 transaction_free(tr);
2066 return 0;
2067
2068tr_abort:
2069 transaction_abort(tr);
2070 transaction_free(tr);
2071 return r;
2072}
2073
60918275
LP
2074Job *manager_get_job(Manager *m, uint32_t id) {
2075 assert(m);
2076
2077 return hashmap_get(m->jobs, UINT32_TO_PTR(id));
2078}
2079
87f0e418 2080Unit *manager_get_unit(Manager *m, const char *name) {
60918275
LP
2081 assert(m);
2082 assert(name);
2083
87f0e418 2084 return hashmap_get(m->units, name);
60918275
LP
2085}
2086
19496554
MS
2087static int manager_dispatch_target_deps_queue(Manager *m) {
2088 Unit *u;
19496554
MS
2089 int r = 0;
2090
19496554
MS
2091 assert(m);
2092
2093 while ((u = m->target_deps_queue)) {
15ed3c3a
LP
2094 _cleanup_free_ Unit **targets = NULL;
2095 int n_targets;
2096
19496554
MS
2097 assert(u->in_target_deps_queue);
2098
2099 LIST_REMOVE(target_deps_queue, u->manager->target_deps_queue, u);
2100 u->in_target_deps_queue = false;
2101
15ed3c3a
LP
2102 /* Take an "atomic" snapshot of dependencies here, as the call below will likely modify the
2103 * dependencies, and we can't have it that hash tables we iterate through are modified while
2104 * we are iterating through them. */
2105 n_targets = unit_get_dependency_array(u, UNIT_ATOM_DEFAULT_TARGET_DEPENDENCIES, &targets);
2106 if (n_targets < 0)
2107 return n_targets;
19496554 2108
15ed3c3a
LP
2109 for (int i = 0; i < n_targets; i++) {
2110 r = unit_add_default_target_dependency(u, targets[i]);
2111 if (r < 0)
2112 return r;
19496554
MS
2113 }
2114 }
2115
2116 return r;
2117}
2118
c1e1601e 2119unsigned manager_dispatch_load_queue(Manager *m) {
595ed347 2120 Unit *u;
c1e1601e 2121 unsigned n = 0;
60918275
LP
2122
2123 assert(m);
2124
223dabab
LP
2125 /* Make sure we are not run recursively */
2126 if (m->dispatching_load_queue)
c1e1601e 2127 return 0;
223dabab
LP
2128
2129 m->dispatching_load_queue = true;
2130
87f0e418 2131 /* Dispatches the load queue. Takes a unit from the queue and
60918275
LP
2132 * tries to load its data until the queue is empty */
2133
595ed347
MS
2134 while ((u = m->load_queue)) {
2135 assert(u->in_load_queue);
034c6ed7 2136
595ed347 2137 unit_load(u);
c1e1601e 2138 n++;
60918275
LP
2139 }
2140
223dabab 2141 m->dispatching_load_queue = false;
19496554
MS
2142
2143 /* Dispatch the units waiting for their target dependencies to be added now, as all targets that we know about
2144 * should be loaded and have aliases resolved */
2145 (void) manager_dispatch_target_deps_queue(m);
2146
c1e1601e 2147 return n;
60918275
LP
2148}
2149
81be2388 2150bool manager_unit_cache_should_retry_load(Unit *u) {
cda66772
LB
2151 assert(u);
2152
81be2388
ZJS
2153 /* Automatic reloading from disk only applies to units which were not found sometime in the past, and
2154 * the not-found stub is kept pinned in the unit graph by dependencies. For units that were
2155 * previously loaded, we don't do automatic reloading, and daemon-reload is necessary to update. */
cda66772
LB
2156 if (u->load_state != UNIT_NOT_FOUND)
2157 return false;
2158
81be2388
ZJS
2159 /* The cache has been updated since the last time we tried to load the unit. There might be new
2160 * fragment paths to read. */
c2911d48 2161 if (u->manager->unit_cache_timestamp_hash != u->fragment_not_found_timestamp_hash)
cda66772 2162 return true;
d904afc7 2163
81be2388 2164 /* The cache needs to be updated because there are modifications on disk. */
c2911d48 2165 return !lookup_paths_timestamp_hash_same(&u->manager->lookup_paths, u->manager->unit_cache_timestamp_hash, NULL);
d904afc7
LB
2166}
2167
c2756a68
LP
2168int manager_load_unit_prepare(
2169 Manager *m,
2170 const char *name,
2171 const char *path,
718db961 2172 sd_bus_error *e,
4b6a2b3f 2173 Unit **ret) {
c2756a68 2174
4b6a2b3f 2175 _cleanup_(unit_freep) Unit *cleanup_unit = NULL;
a99626c1 2176 _cleanup_free_ char *nbuf = NULL;
60918275
LP
2177 int r;
2178
2179 assert(m);
4b6a2b3f 2180 assert(ret);
a99626c1 2181 assert(name || path);
60918275 2182
526e3cbb 2183 /* This will prepare the unit for loading, but not actually load anything from disk. */
0301abf4 2184
526e3cbb 2185 if (path && !path_is_absolute(path))
718db961 2186 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Path %s is not absolute.", path);
9e2f7c11 2187
08f46856 2188 if (!name) {
a99626c1
LP
2189 r = path_extract_filename(path, &nbuf);
2190 if (r < 0)
2191 return r;
2192 if (r == O_DIRECTORY)
2193 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Path '%s' refers to directory, refusing.", path);
2194
2195 name = nbuf;
08f46856 2196 }
9e2f7c11 2197
4b6a2b3f 2198 UnitType t = unit_name_to_type(name);
7d17cfbc 2199
5d512d54
LN
2200 if (t == _UNIT_TYPE_INVALID || !unit_name_is_valid(name, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE)) {
2201 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE))
2202 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Unit name %s is missing the instance name.", name);
2203
718db961 2204 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Unit name %s is not valid.", name);
5d512d54 2205 }
60918275 2206
4b6a2b3f
ZJS
2207 Unit *unit = manager_get_unit(m, name);
2208 if (unit) {
d904afc7
LB
2209 /* The time-based cache allows to start new units without daemon-reload,
2210 * but if they are already referenced (because of dependencies or ordering)
2211 * then we have to force a load of the fragment. As an optimization, check
2212 * first if anything in the usual paths was modified since the last time
7233e91a
LB
2213 * the cache was loaded. Also check if the last time an attempt to load the
2214 * unit was made was before the most recent cache refresh, so that we know
81be2388 2215 * we need to try again — even if the cache is current, it might have been
7233e91a
LB
2216 * updated in a different context before we had a chance to retry loading
2217 * this particular unit. */
4b6a2b3f
ZJS
2218 if (manager_unit_cache_should_retry_load(unit))
2219 unit->load_state = UNIT_STUB;
d904afc7 2220 else {
4b6a2b3f 2221 *ret = unit;
535b7fcb 2222 return 0; /* The unit was already loaded */
d904afc7
LB
2223 }
2224 } else {
4b6a2b3f
ZJS
2225 unit = cleanup_unit = unit_new(m, unit_vtable[t]->object_size);
2226 if (!unit)
d904afc7 2227 return -ENOMEM;
034c6ed7 2228 }
60918275 2229
7d17cfbc 2230 if (path) {
4b6a2b3f 2231 r = free_and_strdup(&unit->fragment_path, path);
d904afc7
LB
2232 if (r < 0)
2233 return r;
7d17cfbc 2234 }
0301abf4 2235
4b6a2b3f 2236 r = unit_add_name(unit, name);
dc409696 2237 if (r < 0)
1ffba6fe 2238 return r;
60918275 2239
4b6a2b3f
ZJS
2240 unit_add_to_load_queue(unit);
2241 unit_add_to_dbus_queue(unit);
2242 unit_add_to_gc_queue(unit);
c1e1601e 2243
4b6a2b3f
ZJS
2244 *ret = unit;
2245 TAKE_PTR(cleanup_unit);
db06e3b6 2246
535b7fcb 2247 return 1; /* The unit was added the load queue */
db06e3b6
LP
2248}
2249
c2756a68
LP
2250int manager_load_unit(
2251 Manager *m,
2252 const char *name,
2253 const char *path,
718db961 2254 sd_bus_error *e,
4b6a2b3f 2255 Unit **ret) {
db06e3b6
LP
2256 int r;
2257
2258 assert(m);
4b6a2b3f 2259 assert(ret);
db06e3b6 2260
4b6a2b3f 2261 /* This will load the unit config, but not actually start any services or anything. */
db06e3b6 2262
4b6a2b3f 2263 r = manager_load_unit_prepare(m, name, path, e, ret);
535b7fcb 2264 if (r <= 0)
db06e3b6
LP
2265 return r;
2266
535b7fcb 2267 /* Unit was newly loaded */
f50e0a01 2268 manager_dispatch_load_queue(m);
4b6a2b3f 2269 *ret = unit_follow_merge(*ret);
4109ede7
ZJS
2270 return 0;
2271}
2272
2273int manager_load_startable_unit_or_warn(
2274 Manager *m,
2275 const char *name,
2276 const char *path,
2277 Unit **ret) {
2278
2279 /* Load a unit, make sure it loaded fully and is not masked. */
2280
2281 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2282 Unit *unit;
2283 int r;
2284
2285 r = manager_load_unit(m, name, path, &error, &unit);
2286 if (r < 0)
2287 return log_error_errno(r, "Failed to load %s %s: %s",
8ace1db7 2288 name ? "unit" : "unit file", name ?: path,
4109ede7 2289 bus_error_message(&error, r));
8ace1db7
LP
2290
2291 r = bus_unit_validate_load_state(unit, &error);
2292 if (r < 0)
2293 return log_error_errno(r, "%s", bus_error_message(&error, r));
9e2f7c11 2294
4109ede7 2295 *ret = unit;
60918275
LP
2296 return 0;
2297}
a66d02c3 2298
7fad411c
LP
2299void manager_clear_jobs(Manager *m) {
2300 Job *j;
2301
2302 assert(m);
2303
7fad411c 2304 while ((j = hashmap_first(m->jobs)))
5273510e 2305 /* No need to recurse. We're cancelling all jobs. */
833f92ad 2306 job_finish_and_invalidate(j, JOB_CANCELED, false, false);
7fad411c 2307}
83c60c9f 2308
f75f613d
FB
2309void manager_unwatch_pid(Manager *m, pid_t pid) {
2310 assert(m);
2311
2312 /* First let's drop the unit keyed as "pid". */
2313 (void) hashmap_remove(m->watch_pids, PID_TO_PTR(pid));
2314
2315 /* Then, let's also drop the array keyed by -pid. */
2316 free(hashmap_remove(m->watch_pids, PID_TO_PTR(-pid)));
2317}
2318
752b5905 2319static int manager_dispatch_run_queue(sd_event_source *source, void *userdata) {
99534007 2320 Manager *m = ASSERT_PTR(userdata);
83c60c9f 2321 Job *j;
034c6ed7 2322
752b5905 2323 assert(source);
9152c765 2324
da8e1782 2325 while ((j = prioq_peek(m->run_queue))) {
ac1135be 2326 assert(j->installed);
034c6ed7
LP
2327 assert(j->in_run_queue);
2328
6e64994d 2329 (void) job_run_and_invalidate(j);
9152c765 2330 }
034c6ed7 2331
a0b64226 2332 if (m->n_running_jobs > 0)
03b717a3
MS
2333 manager_watch_jobs_in_progress(m);
2334
31a7eb86
ZJS
2335 if (m->n_on_console > 0)
2336 manager_watch_idle_pipe(m);
2337
752b5905 2338 return 1;
c1e1601e
LP
2339}
2340
b0c4b282
LP
2341void manager_trigger_run_queue(Manager *m) {
2342 int r;
2343
2344 assert(m);
2345
2346 r = sd_event_source_set_enabled(
2347 m->run_queue_event_source,
2348 prioq_isempty(m->run_queue) ? SD_EVENT_OFF : SD_EVENT_ONESHOT);
2349 if (r < 0)
2350 log_warning_errno(r, "Failed to enable job run queue event source, ignoring: %m");
2351}
2352
9588bc32 2353static unsigned manager_dispatch_dbus_queue(Manager *m) {
e0a08581 2354 unsigned n = 0, budget;
595ed347 2355 Unit *u;
e0a08581 2356 Job *j;
c1e1601e
LP
2357
2358 assert(m);
2359
b8d381c4
LP
2360 /* When we are reloading, let's not wait with generating signals, since we need to exit the manager as quickly
2361 * as we can. There's no point in throttling generation of signals in that case. */
2362 if (MANAGER_IS_RELOADING(m) || m->send_reloading_done || m->pending_reload_message)
f5fbe71d 2363 budget = UINT_MAX; /* infinite budget in this case */
b8d381c4
LP
2364 else {
2365 /* Anything to do at all? */
2366 if (!m->dbus_unit_queue && !m->dbus_job_queue)
2367 return 0;
2368
2369 /* Do we have overly many messages queued at the moment? If so, let's not enqueue more on top, let's
2370 * sit this cycle out, and process things in a later cycle when the queues got a bit emptier. */
2371 if (manager_bus_n_queued_write(m) > MANAGER_BUS_BUSY_THRESHOLD)
2372 return 0;
2373
2374 /* Only process a certain number of units/jobs per event loop iteration. Even if the bus queue wasn't
2375 * overly full before this call we shouldn't increase it in size too wildly in one step, and we
2376 * shouldn't monopolize CPU time with generating these messages. Note the difference in counting of
2377 * this "budget" and the "threshold" above: the "budget" is decreased only once per generated message,
5238e957
BB
2378 * regardless how many buses/direct connections it is enqueued on, while the "threshold" is applied to
2379 * each queued instance of bus message, i.e. if the same message is enqueued to five buses/direct
b8d381c4
LP
2380 * connections it will be counted five times. This difference in counting ("references"
2381 * vs. "instances") is primarily a result of the fact that it's easier to implement it this way,
2382 * however it also reflects the thinking that the "threshold" should put a limit on used queue memory,
2383 * i.e. space, while the "budget" should put a limit on time. Also note that the "threshold" is
2384 * currently chosen much higher than the "budget". */
2385 budget = MANAGER_BUS_MESSAGE_BUDGET;
2386 }
e0a08581 2387
b8d381c4 2388 while (budget != 0 && (u = m->dbus_unit_queue)) {
e0a08581 2389
595ed347 2390 assert(u->in_dbus_queue);
c1e1601e 2391
595ed347 2392 bus_unit_send_change_signal(u);
b8d381c4
LP
2393 n++;
2394
f5fbe71d 2395 if (budget != UINT_MAX)
b8d381c4 2396 budget--;
c1e1601e
LP
2397 }
2398
b8d381c4 2399 while (budget != 0 && (j = m->dbus_job_queue)) {
c1e1601e
LP
2400 assert(j->in_dbus_queue);
2401
2402 bus_job_send_change_signal(j);
b8d381c4
LP
2403 n++;
2404
f5fbe71d 2405 if (budget != UINT_MAX)
b8d381c4 2406 budget--;
c1e1601e
LP
2407 }
2408
b8d381c4 2409 if (m->send_reloading_done) {
71445ae7 2410 m->send_reloading_done = false;
718db961 2411 bus_manager_send_reloading(m, false);
b8d381c4 2412 n++;
71445ae7
LP
2413 }
2414
b8d381c4 2415 if (m->pending_reload_message) {
209de525 2416 bus_send_pending_reload_message(m);
e0a08581
LP
2417 n++;
2418 }
718db961 2419
c1e1601e 2420 return n;
9152c765
LP
2421}
2422
d8fdc620
LP
2423static int manager_dispatch_cgroups_agent_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
2424 Manager *m = userdata;
60473f0c 2425 char buf[PATH_MAX];
d8fdc620
LP
2426 ssize_t n;
2427
2428 n = recv(fd, buf, sizeof(buf), 0);
2429 if (n < 0)
2430 return log_error_errno(errno, "Failed to read cgroups agent message: %m");
2431 if (n == 0) {
2432 log_error("Got zero-length cgroups agent message, ignoring.");
2433 return 0;
2434 }
2435 if ((size_t) n >= sizeof(buf)) {
2436 log_error("Got overly long cgroups agent message, ignoring.");
2437 return 0;
2438 }
2439
2440 if (memchr(buf, 0, n)) {
2441 log_error("Got cgroups agent message with embedded NUL byte, ignoring.");
2442 return 0;
2443 }
2444 buf[n] = 0;
2445
2446 manager_notify_cgroup_empty(m, buf);
d5f15326 2447 (void) bus_forward_agent_released(m, buf);
d8fdc620
LP
2448
2449 return 0;
2450}
2451
5151b4cc 2452static bool manager_process_barrier_fd(char * const *tags, FDSet *fds) {
4f07ddfa
KKD
2453
2454 /* nothing else must be sent when using BARRIER=1 */
5151b4cc
BR
2455 if (strv_contains(tags, "BARRIER=1")) {
2456 if (strv_length(tags) == 1) {
2457 if (fdset_size(fds) != 1)
2458 log_warning("Got incorrect number of fds with BARRIER=1, closing them.");
2459 } else
2460 log_warning("Extra notification messages sent with BARRIER=1, ignoring everything.");
2461
2462 /* Drop the message if BARRIER=1 was found */
4f07ddfa 2463 return true;
5151b4cc 2464 }
4f07ddfa
KKD
2465
2466 return false;
2467}
2468
db256aab
LP
2469static void manager_invoke_notify_message(
2470 Manager *m,
2471 Unit *u,
2472 const struct ucred *ucred,
5151b4cc 2473 char * const *tags,
db256aab
LP
2474 FDSet *fds) {
2475
5ba6985b
LP
2476 assert(m);
2477 assert(u);
db256aab 2478 assert(ucred);
5151b4cc 2479 assert(tags);
5ba6985b 2480
62a76913 2481 if (u->notifygen == m->notifygen) /* Already invoked on this same unit in this same iteration? */
5ba6985b 2482 return;
62a76913
LP
2483 u->notifygen = m->notifygen;
2484
5151b4cc 2485 if (UNIT_VTABLE(u)->notify_message)
db256aab 2486 UNIT_VTABLE(u)->notify_message(u, ucred, tags, fds);
62a76913 2487
5151b4cc
BR
2488 else if (DEBUG_LOGGING) {
2489 _cleanup_free_ char *buf = NULL, *x = NULL, *y = NULL;
a86b7675 2490
5151b4cc
BR
2491 buf = strv_join(tags, ", ");
2492 if (buf)
2493 x = ellipsize(buf, 20, 90);
a86b7675 2494 if (x)
da5fb861
LP
2495 y = cescape(x);
2496
a86b7675
ZJS
2497 log_unit_debug(u, "Got notification message \"%s\", ignoring.", strnull(y));
2498 }
5ba6985b
LP
2499}
2500
718db961 2501static int manager_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
3d0b8a55 2502
b215b0ed 2503 _cleanup_fdset_free_ FDSet *fds = NULL;
99534007 2504 Manager *m = ASSERT_PTR(userdata);
b215b0ed
DH
2505 char buf[NOTIFY_BUFFER_MAX+1];
2506 struct iovec iovec = {
2507 .iov_base = buf,
2508 .iov_len = sizeof(buf)-1,
2509 };
fb29cdbe
LP
2510 CMSG_BUFFER_TYPE(CMSG_SPACE(sizeof(struct ucred)) +
2511 CMSG_SPACE(sizeof(int) * NOTIFY_FD_MAX)) control;
b215b0ed
DH
2512 struct msghdr msghdr = {
2513 .msg_iov = &iovec,
2514 .msg_iovlen = 1,
2515 .msg_control = &control,
2516 .msg_controllen = sizeof(control),
2517 };
2518
2519 struct cmsghdr *cmsg;
2520 struct ucred *ucred = NULL;
62a76913 2521 _cleanup_free_ Unit **array_copy = NULL;
5151b4cc 2522 _cleanup_strv_free_ char **tags = NULL;
62a76913 2523 Unit *u1, *u2, **array;
b215b0ed 2524 int r, *fd_array = NULL;
da6053d0 2525 size_t n_fds = 0;
62a76913 2526 bool found = false;
8c47c732
LP
2527 ssize_t n;
2528
718db961
LP
2529 assert(m->notify_fd == fd);
2530
2531 if (revents != EPOLLIN) {
2532 log_warning("Got unexpected poll event for notify fd.");
2533 return 0;
2534 }
8c47c732 2535
3691bcf3 2536 n = recvmsg_safe(m->notify_fd, &msghdr, MSG_DONTWAIT|MSG_CMSG_CLOEXEC|MSG_TRUNC);
8add30a0
YW
2537 if (n < 0) {
2538 if (ERRNO_IS_TRANSIENT(n))
2539 return 0; /* Spurious wakeup, try again */
2540 if (n == -EXFULL) {
2541 log_warning("Got message with truncated control data (too many fds sent?), ignoring.");
2542 return 0;
2543 }
3691bcf3
LP
2544 /* If this is any other, real error, then let's stop processing this socket. This of course
2545 * means we won't take notification messages anymore, but that's still better than busy
2546 * looping around this: being woken up over and over again but being unable to actually read
2547 * the message off the socket. */
2548 return log_error_errno(n, "Failed to receive notification message: %m");
8add30a0 2549 }
a354329f 2550
b215b0ed
DH
2551 CMSG_FOREACH(cmsg, &msghdr) {
2552 if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_RIGHTS) {
a354329f 2553
3691bcf3 2554 assert(!fd_array);
b215b0ed
DH
2555 fd_array = (int*) CMSG_DATA(cmsg);
2556 n_fds = (cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int);
a354329f 2557
b215b0ed
DH
2558 } else if (cmsg->cmsg_level == SOL_SOCKET &&
2559 cmsg->cmsg_type == SCM_CREDENTIALS &&
2560 cmsg->cmsg_len == CMSG_LEN(sizeof(struct ucred))) {
a354329f 2561
3691bcf3 2562 assert(!ucred);
b215b0ed 2563 ucred = (struct ucred*) CMSG_DATA(cmsg);
a354329f 2564 }
b215b0ed 2565 }
a354329f 2566
b215b0ed
DH
2567 if (n_fds > 0) {
2568 assert(fd_array);
a354329f 2569
b215b0ed
DH
2570 r = fdset_new_array(&fds, fd_array, n_fds);
2571 if (r < 0) {
2572 close_many(fd_array, n_fds);
9987750e
FB
2573 log_oom();
2574 return 0;
a354329f 2575 }
b215b0ed 2576 }
8c47c732 2577
15e23e8c 2578 if (!ucred || !pid_is_valid(ucred->pid)) {
b215b0ed
DH
2579 log_warning("Received notify message without valid credentials. Ignoring.");
2580 return 0;
2581 }
8c47c732 2582
045a3d59 2583 if ((size_t) n >= sizeof(buf) || (msghdr.msg_flags & MSG_TRUNC)) {
b215b0ed
DH
2584 log_warning("Received notify message exceeded maximum size. Ignoring.");
2585 return 0;
2586 }
8c47c732 2587
8f41e6b6
ZJS
2588 /* As extra safety check, let's make sure the string we get doesn't contain embedded NUL bytes.
2589 * We permit one trailing NUL byte in the message, but don't expect it. */
875ca88d
LP
2590 if (n > 1 && memchr(buf, 0, n-1)) {
2591 log_warning("Received notify message with embedded NUL bytes. Ignoring.");
2592 return 0;
2593 }
2594
8f41e6b6 2595 /* Make sure it's NUL-terminated, then parse it to obtain the tags list. */
b215b0ed 2596 buf[n] = 0;
5151b4cc
BR
2597 tags = strv_split_newlines(buf);
2598 if (!tags) {
2599 log_oom();
2600 return 0;
2601 }
8c47c732 2602
8f41e6b6 2603 /* Possibly a barrier fd, let's see. */
5151b4cc 2604 if (manager_process_barrier_fd(tags, fds))
4f07ddfa
KKD
2605 return 0;
2606
62a76913
LP
2607 /* Increase the generation counter used for filtering out duplicate unit invocations. */
2608 m->notifygen++;
2609
2610 /* Notify every unit that might be interested, which might be multiple. */
b215b0ed 2611 u1 = manager_get_unit_by_pid_cgroup(m, ucred->pid);
62a76913
LP
2612 u2 = hashmap_get(m->watch_pids, PID_TO_PTR(ucred->pid));
2613 array = hashmap_get(m->watch_pids, PID_TO_PTR(-ucred->pid));
2614 if (array) {
2615 size_t k = 0;
5ba6985b 2616
62a76913
LP
2617 while (array[k])
2618 k++;
5ba6985b 2619
62a76913
LP
2620 array_copy = newdup(Unit*, array, k+1);
2621 if (!array_copy)
2622 log_oom();
2623 }
8f41e6b6
ZJS
2624 /* And now invoke the per-unit callbacks. Note that manager_invoke_notify_message() will handle
2625 * duplicate units make sure we only invoke each unit's handler once. */
62a76913 2626 if (u1) {
5151b4cc 2627 manager_invoke_notify_message(m, u1, ucred, tags, fds);
62a76913
LP
2628 found = true;
2629 }
2630 if (u2) {
5151b4cc 2631 manager_invoke_notify_message(m, u2, ucred, tags, fds);
62a76913
LP
2632 found = true;
2633 }
2634 if (array_copy)
2635 for (size_t i = 0; array_copy[i]; i++) {
5151b4cc 2636 manager_invoke_notify_message(m, array_copy[i], ucred, tags, fds);
62a76913
LP
2637 found = true;
2638 }
8c47c732 2639
62a76913
LP
2640 if (!found)
2641 log_warning("Cannot find unit for notify message of PID "PID_FMT", ignoring.", ucred->pid);
a354329f 2642
b215b0ed 2643 if (fdset_size(fds) > 0)
5fd2c135 2644 log_warning("Got extra auxiliary fds with notification message, closing them.");
8c47c732
LP
2645
2646 return 0;
2647}
2648
62a76913
LP
2649static void manager_invoke_sigchld_event(
2650 Manager *m,
2651 Unit *u,
2652 const siginfo_t *si) {
36f20ae3 2653
5ba6985b
LP
2654 assert(m);
2655 assert(u);
2656 assert(si);
2657
62a76913
LP
2658 /* Already invoked the handler of this unit in this iteration? Then don't process this again */
2659 if (u->sigchldgen == m->sigchldgen)
2660 return;
2661 u->sigchldgen = m->sigchldgen;
5ba6985b 2662
62a76913 2663 log_unit_debug(u, "Child "PID_FMT" belongs to %s.", si->si_pid, u->id);
5ba6985b 2664 unit_unwatch_pid(u, si->si_pid);
e57051f5 2665
62a76913
LP
2666 if (UNIT_VTABLE(u)->sigchld_event)
2667 UNIT_VTABLE(u)->sigchld_event(u, si->si_pid, si->si_code, si->si_status);
5ba6985b
LP
2668}
2669
575b300b 2670static int manager_dispatch_sigchld(sd_event_source *source, void *userdata) {
99534007 2671 Manager *m = ASSERT_PTR(userdata);
575b300b
LP
2672 siginfo_t si = {};
2673 int r;
2674
2675 assert(source);
9152c765 2676
8f41e6b6
ZJS
2677 /* First we call waitid() for a PID and do not reap the zombie. That way we can still access
2678 * /proc/$PID for it while it is a zombie. */
9152c765 2679
575b300b 2680 if (waitid(P_ALL, 0, &si, WEXITED|WNOHANG|WNOWAIT) < 0) {
acbb0225 2681
8afabc50
AJ
2682 if (errno != ECHILD)
2683 log_error_errno(errno, "Failed to peek for child with waitid(), ignoring: %m");
acbb0225 2684
8afabc50 2685 goto turn_off;
575b300b 2686 }
4112df16 2687
575b300b
LP
2688 if (si.si_pid <= 0)
2689 goto turn_off;
2690
2691 if (IN_SET(si.si_code, CLD_EXITED, CLD_KILLED, CLD_DUMPED)) {
62a76913 2692 _cleanup_free_ Unit **array_copy = NULL;
575b300b 2693 _cleanup_free_ char *name = NULL;
62a76913 2694 Unit *u1, *u2, **array;
575b300b
LP
2695
2696 (void) get_process_comm(si.si_pid, &name);
2697
2698 log_debug("Child "PID_FMT" (%s) died (code=%s, status=%i/%s)",
2699 si.si_pid, strna(name),
2700 sigchld_code_to_string(si.si_code),
2701 si.si_status,
2702 strna(si.si_code == CLD_EXITED
2703 ? exit_status_to_string(si.si_status, EXIT_STATUS_FULL)
2704 : signal_to_string(si.si_status)));
2705
62a76913
LP
2706 /* Increase the generation counter used for filtering out duplicate unit invocations */
2707 m->sigchldgen++;
2708
2709 /* And now figure out the unit this belongs to, it might be multiple... */
575b300b 2710 u1 = manager_get_unit_by_pid_cgroup(m, si.si_pid);
62a76913
LP
2711 u2 = hashmap_get(m->watch_pids, PID_TO_PTR(si.si_pid));
2712 array = hashmap_get(m->watch_pids, PID_TO_PTR(-si.si_pid));
2713 if (array) {
2714 size_t n = 0;
2715
5238e957 2716 /* Count how many entries the array has */
62a76913
LP
2717 while (array[n])
2718 n++;
2719
2720 /* Make a copy of the array so that we don't trip up on the array changing beneath us */
2721 array_copy = newdup(Unit*, array, n+1);
2722 if (!array_copy)
2723 log_oom();
2724 }
2725
2726 /* Finally, execute them all. Note that u1, u2 and the array might contain duplicates, but
2727 * that's fine, manager_invoke_sigchld_event() will ensure we only invoke the handlers once for
2728 * each iteration. */
2ba6ae6b
ZJS
2729 if (u1) {
2730 /* We check for oom condition, in case we got SIGCHLD before the oom notification.
2731 * We only do this for the cgroup the PID belonged to. */
2732 (void) unit_check_oom(u1);
2733
288bd406 2734 /* We check if systemd-oomd performed a kill so that we log and notify appropriately */
fe8d22fb
AZ
2735 (void) unit_check_oomd_kill(u1);
2736
62a76913 2737 manager_invoke_sigchld_event(m, u1, &si);
2ba6ae6b 2738 }
62a76913
LP
2739 if (u2)
2740 manager_invoke_sigchld_event(m, u2, &si);
2741 if (array_copy)
2742 for (size_t i = 0; array_copy[i]; i++)
2743 manager_invoke_sigchld_event(m, array_copy[i], &si);
575b300b 2744 }
9152c765 2745
575b300b
LP
2746 /* And now, we actually reap the zombie. */
2747 if (waitid(P_PID, si.si_pid, &si, WEXITED) < 0) {
2748 log_error_errno(errno, "Failed to dequeue child, ignoring: %m");
2749 return 0;
2750 }
9152c765 2751
575b300b 2752 return 0;
8c47c732 2753
575b300b
LP
2754turn_off:
2755 /* All children processed for now, turn off event source */
4112df16 2756
575b300b
LP
2757 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_OFF);
2758 if (r < 0)
2759 return log_error_errno(r, "Failed to disable SIGCHLD event source: %m");
9152c765
LP
2760
2761 return 0;
2762}
2763
5f968096
ZJS
2764static void manager_start_special(Manager *m, const char *name, JobMode mode) {
2765 Job *job;
398ef8ba 2766
5f968096
ZJS
2767 if (manager_add_job_by_name_and_warn(m, JOB_START, name, mode, NULL, &job) < 0)
2768 return;
1e001f52 2769
5f968096
ZJS
2770 const char *s = unit_status_string(job->unit, NULL);
2771
2772 log_info("Activating special unit %s...", s);
3889fc6f
ZJS
2773
2774 sd_notifyf(false,
2775 "STATUS=Activating special unit %s...", s);
2776 m->status_ready = false;
28247076
LP
2777}
2778
24dd31c1
LN
2779static void manager_handle_ctrl_alt_del(Manager *m) {
2780 /* If the user presses C-A-D more than
2781 * 7 times within 2s, we reboot/shutdown immediately,
2782 * unless it was disabled in system.conf */
2783
7994ac1d 2784 if (ratelimit_below(&m->ctrl_alt_del_ratelimit) || m->cad_burst_action == EMERGENCY_ACTION_NONE)
5f968096 2785 manager_start_special(m, SPECIAL_CTRL_ALT_DEL_TARGET, JOB_REPLACE_IRREVERSIBLY);
ae8c7939 2786 else
7af67e9a 2787 emergency_action(m, m->cad_burst_action, EMERGENCY_ACTION_WARN, NULL, -1,
ae8c7939 2788 "Ctrl-Alt-Del was pressed more than 7 times within 2s");
24dd31c1
LN
2789}
2790
718db961 2791static int manager_dispatch_signal_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
99534007 2792 Manager *m = ASSERT_PTR(userdata);
9152c765
LP
2793 ssize_t n;
2794 struct signalfd_siginfo sfsi;
dacd6cee 2795 int r;
9152c765 2796
718db961
LP
2797 assert(m->signal_fd == fd);
2798
2799 if (revents != EPOLLIN) {
2800 log_warning("Got unexpected events from signal file descriptor.");
2801 return 0;
2802 }
9152c765 2803
575b300b 2804 n = read(m->signal_fd, &sfsi, sizeof(sfsi));
8add30a0
YW
2805 if (n < 0) {
2806 if (ERRNO_IS_TRANSIENT(errno))
575b300b 2807 return 0;
9152c765 2808
575b300b
LP
2809 /* We return an error here, which will kill this handler,
2810 * to avoid a busy loop on read error. */
2811 return log_error_errno(errno, "Reading from signal fd failed: %m");
2812 }
8add30a0 2813 if (n != sizeof(sfsi)) {
c0f86d66 2814 log_warning("Truncated read from signal fd (%zi bytes), ignoring!", n);
8add30a0
YW
2815 return 0;
2816 }
9152c765 2817
575b300b
LP
2818 log_received_signal(sfsi.ssi_signo == SIGCHLD ||
2819 (sfsi.ssi_signo == SIGTERM && MANAGER_IS_USER(m))
2820 ? LOG_DEBUG : LOG_INFO,
2821 &sfsi);
1e001f52 2822
575b300b 2823 switch (sfsi.ssi_signo) {
b9cd2ec1 2824
575b300b
LP
2825 case SIGCHLD:
2826 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_ON);
2827 if (r < 0)
8afabc50 2828 log_warning_errno(r, "Failed to enable SIGCHLD event source, ignoring: %m");
b9cd2ec1 2829
575b300b 2830 break;
84e9af1e 2831
575b300b
LP
2832 case SIGTERM:
2833 if (MANAGER_IS_SYSTEM(m)) {
ba0c7754 2834 /* This is for compatibility with the original sysvinit */
c52b19d6
LP
2835 if (verify_run_space_and_log("Refusing to reexecute") < 0)
2836 break;
2837
2838 m->objective = MANAGER_REEXECUTE;
a1b256b0 2839 break;
575b300b 2840 }
84e9af1e 2841
575b300b
LP
2842 _fallthrough_;
2843 case SIGINT:
2844 if (MANAGER_IS_SYSTEM(m))
2845 manager_handle_ctrl_alt_del(m);
2846 else
5f968096 2847 manager_start_special(m, SPECIAL_EXIT_TARGET, JOB_REPLACE_IRREVERSIBLY);
575b300b 2848 break;
84e9af1e 2849
575b300b 2850 case SIGWINCH:
ba0c7754 2851 /* This is a nop on non-init */
575b300b 2852 if (MANAGER_IS_SYSTEM(m))
5f968096 2853 manager_start_special(m, SPECIAL_KBREQUEST_TARGET, JOB_REPLACE);
84e9af1e 2854
575b300b 2855 break;
84e9af1e 2856
575b300b 2857 case SIGPWR:
ba0c7754 2858 /* This is a nop on non-init */
575b300b 2859 if (MANAGER_IS_SYSTEM(m))
5f968096 2860 manager_start_special(m, SPECIAL_SIGPWR_TARGET, JOB_REPLACE);
6632c602 2861
575b300b 2862 break;
57ee42ce 2863
8559b3b7 2864 case SIGUSR1:
8559b3b7 2865 if (manager_dbus_is_running(m, false)) {
575b300b 2866 log_info("Trying to reconnect to bus...");
575b300b 2867
8559b3b7
LP
2868 (void) bus_init_api(m);
2869
2870 if (MANAGER_IS_SYSTEM(m))
2871 (void) bus_init_system(m);
5f968096
ZJS
2872 } else
2873 manager_start_special(m, SPECIAL_DBUS_SERVICE, JOB_REPLACE);
57ee42ce 2874
575b300b 2875 break;
575b300b
LP
2876
2877 case SIGUSR2: {
2878 _cleanup_free_ char *dump = NULL;
2879
d1d8786c 2880 r = manager_get_dump_string(m, /* patterns= */ NULL, &dump);
575b300b
LP
2881 if (r < 0) {
2882 log_warning_errno(errno, "Failed to acquire manager dump: %m");
57ee42ce
LP
2883 break;
2884 }
2885
575b300b
LP
2886 log_dump(LOG_INFO, dump);
2887 break;
2888 }
2149e37c 2889
575b300b 2890 case SIGHUP:
c52b19d6
LP
2891 if (verify_run_space_and_log("Refusing to reload") < 0)
2892 break;
2893
2894 m->objective = MANAGER_RELOAD;
575b300b
LP
2895 break;
2896
2897 default: {
2898
2899 /* Starting SIGRTMIN+0 */
2900 static const struct {
2901 const char *target;
2902 JobMode mode;
2903 } target_table[] = {
2904 [0] = { SPECIAL_DEFAULT_TARGET, JOB_ISOLATE },
2905 [1] = { SPECIAL_RESCUE_TARGET, JOB_ISOLATE },
2906 [2] = { SPECIAL_EMERGENCY_TARGET, JOB_ISOLATE },
2907 [3] = { SPECIAL_HALT_TARGET, JOB_REPLACE_IRREVERSIBLY },
2908 [4] = { SPECIAL_POWEROFF_TARGET, JOB_REPLACE_IRREVERSIBLY },
2909 [5] = { SPECIAL_REBOOT_TARGET, JOB_REPLACE_IRREVERSIBLY },
2910 [6] = { SPECIAL_KEXEC_TARGET, JOB_REPLACE_IRREVERSIBLY },
2911 };
2912
2913 /* Starting SIGRTMIN+13, so that target halt and system halt are 10 apart */
af41e508 2914 static const ManagerObjective objective_table[] = {
575b300b
LP
2915 [0] = MANAGER_HALT,
2916 [1] = MANAGER_POWEROFF,
2917 [2] = MANAGER_REBOOT,
2918 [3] = MANAGER_KEXEC,
2919 };
b2cdc666 2920
575b300b
LP
2921 if ((int) sfsi.ssi_signo >= SIGRTMIN+0 &&
2922 (int) sfsi.ssi_signo < SIGRTMIN+(int) ELEMENTSOF(target_table)) {
2923 int idx = (int) sfsi.ssi_signo - SIGRTMIN;
5f968096 2924 manager_start_special(m, target_table[idx].target, target_table[idx].mode);
1005d14f 2925 break;
2149e37c 2926 }
1005d14f 2927
575b300b 2928 if ((int) sfsi.ssi_signo >= SIGRTMIN+13 &&
af41e508
LP
2929 (int) sfsi.ssi_signo < SIGRTMIN+13+(int) ELEMENTSOF(objective_table)) {
2930 m->objective = objective_table[sfsi.ssi_signo - SIGRTMIN - 13];
575b300b
LP
2931 break;
2932 }
2933
2934 switch (sfsi.ssi_signo - SIGRTMIN) {
2935
29e6b0c1
LP
2936 case 18: {
2937 bool generic = false;
2938
2939 if (sfsi.ssi_code != SI_QUEUE)
2940 generic = true;
2941 else {
2942 /* Override a few select commands by our own PID1-specific logic */
2943
2944 switch (sfsi.ssi_int) {
2945
2946 case _COMMON_SIGNAL_COMMAND_LOG_LEVEL_BASE..._COMMON_SIGNAL_COMMAND_LOG_LEVEL_END:
2947 manager_override_log_level(m, sfsi.ssi_int - _COMMON_SIGNAL_COMMAND_LOG_LEVEL_BASE);
2948 break;
2949
2950 case COMMON_SIGNAL_COMMAND_CONSOLE:
2951 manager_override_log_target(m, LOG_TARGET_CONSOLE);
2952 break;
2953
2954 case COMMON_SIGNAL_COMMAND_JOURNAL:
2955 manager_override_log_target(m, LOG_TARGET_JOURNAL);
2956 break;
2957
2958 case COMMON_SIGNAL_COMMAND_KMSG:
2959 manager_override_log_target(m, LOG_TARGET_KMSG);
2960 break;
2961
2962 case COMMON_SIGNAL_COMMAND_NULL:
2963 manager_override_log_target(m, LOG_TARGET_NULL);
2964 break;
2965
2966 default:
2967 generic = true;
2968 }
2969 }
2970
2971 if (generic)
2972 return sigrtmin18_handler(source, &sfsi, NULL);
2973
2974 break;
2975 }
2976
575b300b 2977 case 20:
43bba15a 2978 manager_override_show_status(m, SHOW_STATUS_YES, "signal");
a16e1123
LP
2979 break;
2980
575b300b 2981 case 21:
43bba15a 2982 manager_override_show_status(m, SHOW_STATUS_NO, "signal");
575b300b 2983 break;
7d793605 2984
575b300b 2985 case 22:
a6ecbf83 2986 manager_override_log_level(m, LOG_DEBUG);
575b300b
LP
2987 break;
2988
2989 case 23:
a6ecbf83 2990 manager_restore_original_log_level(m);
575b300b 2991 break;
0003d1ab 2992
575b300b
LP
2993 case 24:
2994 if (MANAGER_IS_USER(m)) {
af41e508 2995 m->objective = MANAGER_EXIT;
575b300b 2996 return 0;
0658666b 2997 }
9152c765 2998
575b300b
LP
2999 /* This is a nop on init */
3000 break;
3001
463aef23
FB
3002 case 25:
3003 m->objective = MANAGER_REEXECUTE;
3004 break;
3005
575b300b
LP
3006 case 26:
3007 case 29: /* compatibility: used to be mapped to LOG_TARGET_SYSLOG_OR_KMSG */
bda7d78b 3008 manager_restore_original_log_target(m);
575b300b
LP
3009 break;
3010
3011 case 27:
bda7d78b 3012 manager_override_log_target(m, LOG_TARGET_CONSOLE);
575b300b
LP
3013 break;
3014
3015 case 28:
bda7d78b 3016 manager_override_log_target(m, LOG_TARGET_KMSG);
575b300b
LP
3017 break;
3018
3019 default:
3020 log_warning("Got unhandled signal <%s>.", signal_to_string(sfsi.ssi_signo));
3021 }
3022 }}
034c6ed7
LP
3023
3024 return 0;
3025}
3026
718db961 3027static int manager_dispatch_time_change_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
99534007 3028 Manager *m = ASSERT_PTR(userdata);
718db961 3029 Unit *u;
034c6ed7 3030
a80c1575 3031 log_struct(LOG_DEBUG,
2b044526 3032 "MESSAGE_ID=" SD_MESSAGE_TIME_CHANGE_STR,
a1230ff9 3033 LOG_MESSAGE("Time has been changed"));
034c6ed7 3034
718db961 3035 /* Restart the watch */
7feedd18 3036 (void) manager_setup_time_change(m);
4e434314 3037
90e74a66 3038 HASHMAP_FOREACH(u, m->units)
718db961
LP
3039 if (UNIT_VTABLE(u)->time_change)
3040 UNIT_VTABLE(u)->time_change(u);
ea430986 3041
718db961
LP
3042 return 0;
3043}
ea430986 3044
bbf5fd8e
LP
3045static int manager_dispatch_timezone_change(
3046 sd_event_source *source,
3047 const struct inotify_event *e,
3048 void *userdata) {
3049
99534007 3050 Manager *m = ASSERT_PTR(userdata);
bbf5fd8e 3051 int changed;
bbf5fd8e
LP
3052 Unit *u;
3053
bbf5fd8e
LP
3054 log_debug("inotify event for /etc/localtime");
3055
3056 changed = manager_read_timezone_stat(m);
f20db199 3057 if (changed <= 0)
bbf5fd8e 3058 return changed;
bbf5fd8e
LP
3059
3060 /* Something changed, restart the watch, to ensure we watch the new /etc/localtime if it changed */
3061 (void) manager_setup_timezone_change(m);
3062
3063 /* Read the new timezone */
3064 tzset();
3065
3066 log_debug("Timezone has been changed (now: %s).", tzname[daylight]);
3067
90e74a66 3068 HASHMAP_FOREACH(u, m->units)
bbf5fd8e
LP
3069 if (UNIT_VTABLE(u)->timezone_change)
3070 UNIT_VTABLE(u)->timezone_change(u);
3071
3072 return 0;
3073}
3074
718db961 3075static int manager_dispatch_idle_pipe_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
99534007 3076 Manager *m = ASSERT_PTR(userdata);
8742514c 3077
718db961 3078 assert(m->idle_pipe[2] == fd);
8742514c 3079
8f41e6b6
ZJS
3080 /* There's at least one Type=idle child that just gave up on us waiting for the boot process to
3081 * complete. Let's now turn off any further console output if there's at least one service that needs
3082 * console access, so that from now on our own output should not spill into that service's output
3083 * anymore. After all, we support Type=idle only to beautify console output and it generally is set
3084 * on services that want to own the console exclusively without our interference. */
718db961 3085 m->no_console_output = m->n_on_console > 0;
03b717a3 3086
30fd9a2d 3087 /* Acknowledge the child's request, and let all other children know too that they shouldn't wait
8f41e6b6 3088 * any longer by closing the pipes towards them, which is what they are waiting for. */
718db961 3089 manager_close_idle_pipe(m);
03b717a3 3090
718db961
LP
3091 return 0;
3092}
31a7eb86 3093
718db961 3094static int manager_dispatch_jobs_in_progress(sd_event_source *source, usec_t usec, void *userdata) {
99534007 3095 Manager *m = ASSERT_PTR(userdata);
fd08a840 3096 int r;
31a7eb86 3097
fd08a840 3098 assert(source);
9152c765 3099
718db961 3100 manager_print_jobs_in_progress(m);
fd08a840 3101
39cf0351 3102 r = sd_event_source_set_time_relative(source, JOBS_IN_PROGRESS_PERIOD_USEC);
fd08a840
ZJS
3103 if (r < 0)
3104 return r;
3105
3106 return sd_event_source_set_enabled(source, SD_EVENT_ONESHOT);
9152c765
LP
3107}
3108
3109int manager_loop(Manager *m) {
8c227e7f 3110 RateLimit rl = { .interval = 1*USEC_PER_SEC, .burst = 50000 };
9152c765 3111 int r;
9152c765
LP
3112
3113 assert(m);
1fb70e66 3114 assert(m->objective == MANAGER_OK); /* Ensure manager_startup() has been called */
9152c765 3115
b0c918b9
LP
3116 manager_check_finished(m);
3117
575b300b
LP
3118 /* There might still be some zombies hanging around from before we were exec()'ed. Let's reap them. */
3119 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_ON);
e96d6be7 3120 if (r < 0)
575b300b 3121 return log_error_errno(r, "Failed to enable SIGCHLD event source: %m");
a4312405 3122
af41e508 3123 while (m->objective == MANAGER_OK) {
9152c765 3124
ae4a0ec4 3125 (void) watchdog_ping();
e96d6be7 3126
7994ac1d 3127 if (!ratelimit_below(&rl)) {
ea430986
LP
3128 /* Yay, something is going seriously wrong, pause a little */
3129 log_warning("Looping too fast. Throttling execution a little.");
3130 sleep(1);
3131 }
3132
37a8e683 3133 if (manager_dispatch_load_queue(m) > 0)
23a177ef
LP
3134 continue;
3135
c5a97ed1
LP
3136 if (manager_dispatch_gc_job_queue(m) > 0)
3137 continue;
3138
3139 if (manager_dispatch_gc_unit_queue(m) > 0)
701cc384
LP
3140 continue;
3141
cf1265e1 3142 if (manager_dispatch_cleanup_queue(m) > 0)
c1e1601e 3143 continue;
034c6ed7 3144
91a6073e 3145 if (manager_dispatch_cgroup_realize_queue(m) > 0)
c1e1601e
LP
3146 continue;
3147
0bc488c9
LP
3148 if (manager_dispatch_start_when_upheld_queue(m) > 0)
3149 continue;
3150
56c59592
LP
3151 if (manager_dispatch_stop_when_bound_queue(m) > 0)
3152 continue;
3153
a3c1168a
LP
3154 if (manager_dispatch_stop_when_unneeded_queue(m) > 0)
3155 continue;
3156
c1e1601e 3157 if (manager_dispatch_dbus_queue(m) > 0)
ea430986 3158 continue;
ea430986 3159
c5f8a179 3160 /* Sleep for watchdog runtime wait time */
12663295 3161 r = sd_event_run(m->event, watchdog_runtime_wait());
23bbb0de
MS
3162 if (r < 0)
3163 return log_error_errno(r, "Failed to run event loop: %m");
a16e1123 3164 }
957ca890 3165
af41e508 3166 return m->objective;
83c60c9f 3167}
ea430986 3168
718db961 3169int manager_load_unit_from_dbus_path(Manager *m, const char *s, sd_bus_error *e, Unit **_u) {
ede3a796 3170 _cleanup_free_ char *n = NULL;
4b58153d 3171 sd_id128_t invocation_id;
ea430986 3172 Unit *u;
80fbf05e 3173 int r;
ea430986
LP
3174
3175 assert(m);
3176 assert(s);
3177 assert(_u);
3178
ede3a796
LP
3179 r = unit_name_from_dbus_path(s, &n);
3180 if (r < 0)
3181 return r;
ea430986 3182
8f41e6b6
ZJS
3183 /* Permit addressing units by invocation ID: if the passed bus path is suffixed by a 128bit ID then
3184 * we use it as invocation ID. */
4b58153d
LP
3185 r = sd_id128_from_string(n, &invocation_id);
3186 if (r >= 0) {
3187 u = hashmap_get(m->units_by_invocation_id, &invocation_id);
3188 if (u) {
3189 *_u = u;
3190 return 0;
3191 }
3192
930c124c
ZJS
3193 return sd_bus_error_setf(e, BUS_ERROR_NO_UNIT_FOR_INVOCATION_ID,
3194 "No unit with the specified invocation ID " SD_ID128_FORMAT_STR " known.",
3195 SD_ID128_FORMAT_VAL(invocation_id));
4b58153d
LP
3196 }
3197
00c83b43 3198 /* If this didn't work, we check if this is a unit name */
930c124c
ZJS
3199 if (!unit_name_is_valid(n, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE)) {
3200 _cleanup_free_ char *nn = NULL;
3201
3202 nn = cescape(n);
3203 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS,
3204 "Unit name %s is neither a valid invocation ID nor unit name.", strnull(nn));
3205 }
00c83b43 3206
80fbf05e 3207 r = manager_load_unit(m, n, NULL, e, &u);
80fbf05e
MS
3208 if (r < 0)
3209 return r;
ea430986
LP
3210
3211 *_u = u;
ea430986
LP
3212 return 0;
3213}
86fbf370
LP
3214
3215int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j) {
718db961 3216 const char *p;
86fbf370 3217 unsigned id;
718db961 3218 Job *j;
86fbf370
LP
3219 int r;
3220
3221 assert(m);
3222 assert(s);
3223 assert(_j);
3224
718db961
LP
3225 p = startswith(s, "/org/freedesktop/systemd1/job/");
3226 if (!p)
86fbf370
LP
3227 return -EINVAL;
3228
718db961 3229 r = safe_atou(p, &id);
8742514c 3230 if (r < 0)
86fbf370
LP
3231 return r;
3232
8742514c
LP
3233 j = manager_get_job(m, id);
3234 if (!j)
86fbf370
LP
3235 return -ENOENT;
3236
3237 *_j = j;
3238
3239 return 0;
3240}
dfcd764e 3241
4927fcae 3242void manager_send_unit_audit(Manager *m, Unit *u, int type, bool success) {
e537352b 3243
349cc4a5 3244#if HAVE_AUDIT
2ba11090 3245 _cleanup_free_ char *p = NULL;
0aa281df 3246 const char *msg;
7410616c 3247 int audit_fd, r;
e537352b 3248
463d0d15 3249 if (!MANAGER_IS_SYSTEM(m))
a1a078ee
LP
3250 return;
3251
c1165f82
LP
3252 audit_fd = get_audit_fd();
3253 if (audit_fd < 0)
e537352b
LP
3254 return;
3255
bbd3a7ba
LP
3256 /* Don't generate audit events if the service was already
3257 * started and we're just deserializing */
2c289ea8 3258 if (MANAGER_IS_RELOADING(m))
bbd3a7ba
LP
3259 return;
3260
ac155bb8 3261 if (u->type != UNIT_SERVICE)
f1dd0c3f
LP
3262 return;
3263
7410616c
LP
3264 r = unit_name_to_prefix_and_instance(u->id, &p);
3265 if (r < 0) {
3266 log_error_errno(r, "Failed to extract prefix and instance of unit name: %m");
e537352b
LP
3267 return;
3268 }
3269
63c372cb 3270 msg = strjoina("unit=", p);
0aa281df
LP
3271 if (audit_log_user_comm_message(audit_fd, type, msg, "systemd", NULL, NULL, NULL, success) < 0) {
3272 if (errno == EPERM)
391ade86 3273 /* We aren't allowed to send audit messages?
44785992 3274 * Then let's not retry again. */
c1165f82 3275 close_audit_fd();
0aa281df 3276 else
56f64d95 3277 log_warning_errno(errno, "Failed to send audit message: %m");
391ade86 3278 }
4927fcae 3279#endif
e537352b 3280
e537352b
LP
3281}
3282
e983b760 3283void manager_send_unit_plymouth(Manager *m, Unit *u) {
fc2fffe7 3284 static const union sockaddr_union sa = PLYMOUTH_SOCKET;
2ba11090 3285 _cleanup_free_ char *message = NULL;
254d1313 3286 _cleanup_close_ int fd = -EBADF;
fc2fffe7 3287 int n = 0;
e983b760
LP
3288
3289 /* Don't generate plymouth events if the service was already
3290 * started and we're just deserializing */
2c289ea8 3291 if (MANAGER_IS_RELOADING(m))
e983b760
LP
3292 return;
3293
463d0d15 3294 if (!MANAGER_IS_SYSTEM(m))
e983b760
LP
3295 return;
3296
75f86906 3297 if (detect_container() > 0)
3772995a
LP
3298 return;
3299
ec2ce0c5 3300 if (!IN_SET(u->type, UNIT_SERVICE, UNIT_MOUNT, UNIT_SWAP))
e983b760
LP
3301 return;
3302
3303 /* We set SOCK_NONBLOCK here so that we rather drop the
3304 * message then wait for plymouth */
e62d8c39
ZJS
3305 fd = socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
3306 if (fd < 0) {
56f64d95 3307 log_error_errno(errno, "socket() failed: %m");
e983b760
LP
3308 return;
3309 }
3310
fc2fffe7 3311 if (connect(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0) {
f60a028a 3312 if (!IN_SET(errno, EAGAIN, ENOENT) && !ERRNO_IS_DISCONNECT(errno))
56f64d95 3313 log_error_errno(errno, "connect() failed: %m");
2ba11090 3314 return;
e983b760
LP
3315 }
3316
305757d8
ZJS
3317 if (asprintf(&message, "U\002%c%s%n", (int) (strlen(u->id) + 1), u->id, &n) < 0)
3318 return (void) log_oom();
e983b760
LP
3319
3320 errno = 0;
2ba11090 3321 if (write(fd, message, n + 1) != n + 1)
f60a028a 3322 if (!IN_SET(errno, EAGAIN, ENOENT) && !ERRNO_IS_DISCONNECT(errno))
56f64d95 3323 log_error_errno(errno, "Failed to write Plymouth message: %m");
e983b760
LP
3324}
3325
986935cf
FB
3326usec_t manager_get_watchdog(Manager *m, WatchdogType t) {
3327 assert(m);
3328
3329 if (MANAGER_IS_USER(m))
3330 return USEC_INFINITY;
3331
3332 if (timestamp_is_set(m->watchdog_overridden[t]))
3333 return m->watchdog_overridden[t];
3334
3335 return m->watchdog[t];
3336}
3337
3338void manager_set_watchdog(Manager *m, WatchdogType t, usec_t timeout) {
986935cf
FB
3339
3340 assert(m);
3341
3342 if (MANAGER_IS_USER(m))
3343 return;
3344
3345 if (m->watchdog[t] == timeout)
3346 return;
3347
5717062e 3348 if (t == WATCHDOG_RUNTIME) {
f16890f8
FB
3349 if (!timestamp_is_set(m->watchdog_overridden[WATCHDOG_RUNTIME]))
3350 (void) watchdog_setup(timeout);
5717062e
CK
3351 } else if (t == WATCHDOG_PRETIMEOUT)
3352 if (m->watchdog_overridden[WATCHDOG_PRETIMEOUT] == USEC_INFINITY)
3353 (void) watchdog_setup_pretimeout(timeout);
986935cf 3354
61927b9f 3355 m->watchdog[t] = timeout;
986935cf
FB
3356}
3357
aac47032 3358void manager_override_watchdog(Manager *m, WatchdogType t, usec_t timeout) {
986935cf
FB
3359
3360 assert(m);
3361
3362 if (MANAGER_IS_USER(m))
aac47032 3363 return;
986935cf
FB
3364
3365 if (m->watchdog_overridden[t] == timeout)
aac47032 3366 return;
986935cf
FB
3367
3368 if (t == WATCHDOG_RUNTIME) {
2628b98f 3369 usec_t usec = timestamp_is_set(timeout) ? timeout : m->watchdog[t];
986935cf 3370
f16890f8 3371 (void) watchdog_setup(usec);
5717062e
CK
3372 } else if (t == WATCHDOG_PRETIMEOUT)
3373 (void) watchdog_setup_pretimeout(timeout);
986935cf 3374
61927b9f 3375 m->watchdog_overridden[t] = timeout;
986935cf
FB
3376}
3377
aff3a9e1
LB
3378int manager_set_watchdog_pretimeout_governor(Manager *m, const char *governor) {
3379 _cleanup_free_ char *p = NULL;
3380 int r;
3381
3382 assert(m);
3383
3384 if (MANAGER_IS_USER(m))
3385 return 0;
3386
3387 if (streq_ptr(m->watchdog_pretimeout_governor, governor))
3388 return 0;
3389
3390 p = strdup(governor);
3391 if (!p)
3392 return -ENOMEM;
3393
3394 r = watchdog_setup_pretimeout_governor(governor);
3395 if (r < 0)
3396 return r;
3397
3398 return free_and_replace(m->watchdog_pretimeout_governor, p);
3399}
3400
3401int manager_override_watchdog_pretimeout_governor(Manager *m, const char *governor) {
3402 _cleanup_free_ char *p = NULL;
3403 int r;
3404
3405 assert(m);
3406
3407 if (MANAGER_IS_USER(m))
3408 return 0;
3409
3410 if (streq_ptr(m->watchdog_pretimeout_governor_overridden, governor))
3411 return 0;
3412
3413 p = strdup(governor);
3414 if (!p)
3415 return -ENOMEM;
3416
3417 r = watchdog_setup_pretimeout_governor(governor);
3418 if (r < 0)
3419 return r;
3420
3421 return free_and_replace(m->watchdog_pretimeout_governor_overridden, p);
3422}
3423
a16e1123 3424int manager_reload(Manager *m) {
d7ac0952 3425 _unused_ _cleanup_(manager_reloading_stopp) Manager *reloading = NULL;
51d122af 3426 _cleanup_fdset_free_ FDSet *fds = NULL;
6a33af40
LP
3427 _cleanup_fclose_ FILE *f = NULL;
3428 int r;
a16e1123
LP
3429
3430 assert(m);
3431
07719a21
LP
3432 r = manager_open_serialization(m, &f);
3433 if (r < 0)
6a33af40 3434 return log_error_errno(r, "Failed to create serialization file: %m");
38c52d46 3435
07719a21 3436 fds = fdset_new();
6a33af40
LP
3437 if (!fds)
3438 return log_oom();
3439
d147e2b6
ZJS
3440 /* We are officially in reload mode from here on. */
3441 reloading = manager_reloading_start(m);
a16e1123 3442
b3680f49 3443 r = manager_serialize(m, f, fds, false);
d147e2b6 3444 if (r < 0)
d68c645b 3445 return r;
a16e1123 3446
d147e2b6
ZJS
3447 if (fseeko(f, 0, SEEK_SET) < 0)
3448 return log_error_errno(errno, "Failed to seek to beginning of serialization: %m");
a16e1123 3449
6a33af40 3450 /* 💀 This is the point of no return, from here on there is no way back. 💀 */
d147e2b6 3451 reloading = NULL;
6a33af40
LP
3452
3453 bus_manager_send_reloading(m, true);
3454
3455 /* Start by flushing out all jobs and units, all generated units, all runtime environments, all dynamic users
3456 * and everything else that is worth flushing out. We'll get it all back from the serialization — if we need
7802194a 3457 * it. */
6a33af40 3458
a16e1123 3459 manager_clear_jobs_and_units(m);
07a78643 3460 lookup_paths_flush_generator(&m->lookup_paths);
84e3543e 3461 lookup_paths_free(&m->lookup_paths);
e8a565cb 3462 exec_runtime_vacuum(m);
29206d46 3463 dynamic_user_vacuum(m, false);
00d9ef85
LP
3464 m->uid_refs = hashmap_free(m->uid_refs);
3465 m->gid_refs = hashmap_free(m->gid_refs);
2ded0c04 3466
99aad9a2 3467 r = lookup_paths_init_or_warn(&m->lookup_paths, m->unit_file_scope, 0, NULL);
6a33af40 3468 if (r < 0)
99aad9a2 3469 return r;
5a1e9937 3470
6a33af40
LP
3471 (void) manager_run_environment_generators(m);
3472 (void) manager_run_generators(m);
64691d20 3473
581fef8d 3474 lookup_paths_log(&m->lookup_paths);
07719a21 3475
91e0ee5f 3476 /* We flushed out generated files, for which we don't watch mtime, so we should flush the old map. */
e8630e69 3477 manager_free_unit_name_maps(m);
5a1e9937 3478
6a33af40 3479 /* First, enumerate what we can from kernel and suchlike */
3ad2afb6 3480 manager_enumerate_perpetual(m);
ba64af90 3481 manager_enumerate(m);
a16e1123
LP
3482
3483 /* Second, deserialize our stored data */
6a33af40
LP
3484 r = manager_deserialize(m, f, fds);
3485 if (r < 0)
3486 log_warning_errno(r, "Deserialization failed, proceeding anyway: %m");
a16e1123 3487
6a33af40 3488 /* We don't need the serialization anymore */
62b0cbb3 3489 f = safe_fclose(f);
a16e1123 3490
6a33af40
LP
3491 /* Re-register notify_fd as event source, and set up other sockets/communication channels we might need */
3492 (void) manager_setup_notify(m);
3493 (void) manager_setup_cgroups_agent(m);
3494 (void) manager_setup_user_lookup_fd(m);
00d9ef85 3495
a16e1123 3496 /* Third, fire things up! */
007c6337 3497 manager_coldplug(m);
a16e1123 3498
5197be06
LP
3499 /* Clean up runtime objects no longer referenced */
3500 manager_vacuum(m);
e8a565cb 3501
3deed59a
AA
3502 /* Clean up deserialized tracked clients */
3503 m->deserialized_subscribed = strv_free(m->deserialized_subscribed);
3504
6a33af40 3505 /* Consider the reload process complete now. */
31dc1ca3
LP
3506 assert(m->n_reloading > 0);
3507 m->n_reloading--;
3508
5ce5e1ad 3509 manager_ready(m);
8936a5e3 3510
71445ae7 3511 m->send_reloading_done = true;
6a33af40 3512 return 0;
a16e1123
LP
3513}
3514
fdf20a31 3515void manager_reset_failed(Manager *m) {
5632e374 3516 Unit *u;
5632e374
LP
3517
3518 assert(m);
3519
90e74a66 3520 HASHMAP_FOREACH(u, m->units)
fdf20a31 3521 unit_reset_failed(u);
5632e374
LP
3522}
3523
31afa0a4 3524bool manager_unit_inactive_or_pending(Manager *m, const char *name) {
8f6df3fa
LP
3525 Unit *u;
3526
3527 assert(m);
3528 assert(name);
3529
3530 /* Returns true if the unit is inactive or going down */
bd0af849
ZJS
3531 u = manager_get_unit(m, name);
3532 if (!u)
8f6df3fa
LP
3533 return true;
3534
31afa0a4 3535 return unit_inactive_or_pending(u);
8f6df3fa
LP
3536}
3537
d8eb10d6
ZJS
3538static void log_taint_string(Manager *m) {
3539 _cleanup_free_ char *taint = NULL;
3540
3541 assert(m);
3542
3543 if (MANAGER_IS_USER(m) || m->taint_logged)
3544 return;
3545
3546 m->taint_logged = true; /* only check for taint once */
3547
3548 taint = manager_taint_string(m);
3549 if (isempty(taint))
3550 return;
3551
3552 log_struct(LOG_NOTICE,
3553 LOG_MESSAGE("System is tainted: %s", taint),
3554 "TAINT=%s", taint,
a1230ff9 3555 "MESSAGE_ID=" SD_MESSAGE_TAINTED_STR);
d8eb10d6
ZJS
3556}
3557
56dacdbc 3558static void manager_notify_finished(Manager *m) {
915b3753 3559 usec_t firmware_usec, loader_usec, kernel_usec, initrd_usec, userspace_usec, total_usec;
b0c918b9 3560
638cece4 3561 if (MANAGER_IS_TEST_RUN(m))
b0c918b9
LP
3562 return;
3563
463d0d15 3564 if (MANAGER_IS_SYSTEM(m) && detect_container() <= 0) {
dc3c9f5e
ZJS
3565 char buf[FORMAT_TIMESPAN_MAX + STRLEN(" (firmware) + ") + FORMAT_TIMESPAN_MAX + STRLEN(" (loader) + ")]
3566 = {};
3567 char *p = buf;
3568 size_t size = sizeof buf;
e03ae661 3569
9f9f0342
LP
3570 /* Note that MANAGER_TIMESTAMP_KERNEL's monotonic value is always at 0, and
3571 * MANAGER_TIMESTAMP_FIRMWARE's and MANAGER_TIMESTAMP_LOADER's monotonic value should be considered
915b3753
LP
3572 * negative values. */
3573
9f9f0342
LP
3574 firmware_usec = m->timestamps[MANAGER_TIMESTAMP_FIRMWARE].monotonic - m->timestamps[MANAGER_TIMESTAMP_LOADER].monotonic;
3575 loader_usec = m->timestamps[MANAGER_TIMESTAMP_LOADER].monotonic - m->timestamps[MANAGER_TIMESTAMP_KERNEL].monotonic;
3576 userspace_usec = m->timestamps[MANAGER_TIMESTAMP_FINISH].monotonic - m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic;
3577 total_usec = m->timestamps[MANAGER_TIMESTAMP_FIRMWARE].monotonic + m->timestamps[MANAGER_TIMESTAMP_FINISH].monotonic;
18fa6b27 3578
dd1db3c2 3579 if (firmware_usec > 0)
5291f26d 3580 size = strpcpyf(&p, size, "%s (firmware) + ", FORMAT_TIMESPAN(firmware_usec, USEC_PER_MSEC));
dd1db3c2 3581 if (loader_usec > 0)
5291f26d 3582 size = strpcpyf(&p, size, "%s (loader) + ", FORMAT_TIMESPAN(loader_usec, USEC_PER_MSEC));
dd1db3c2 3583
9f9f0342 3584 if (dual_timestamp_is_set(&m->timestamps[MANAGER_TIMESTAMP_INITRD])) {
18fa6b27 3585
7802194a 3586 /* The initrd case on bare-metal */
9f9f0342
LP
3587 kernel_usec = m->timestamps[MANAGER_TIMESTAMP_INITRD].monotonic - m->timestamps[MANAGER_TIMESTAMP_KERNEL].monotonic;
3588 initrd_usec = m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic - m->timestamps[MANAGER_TIMESTAMP_INITRD].monotonic;
18fa6b27 3589
e12919e8 3590 log_struct(LOG_INFO,
2b044526 3591 "MESSAGE_ID=" SD_MESSAGE_STARTUP_FINISHED_STR,
e12919e8
LP
3592 "KERNEL_USEC="USEC_FMT, kernel_usec,
3593 "INITRD_USEC="USEC_FMT, initrd_usec,
3594 "USERSPACE_USEC="USEC_FMT, userspace_usec,
dd1db3c2
YW
3595 LOG_MESSAGE("Startup finished in %s%s (kernel) + %s (initrd) + %s (userspace) = %s.",
3596 buf,
5291f26d
ZJS
3597 FORMAT_TIMESPAN(kernel_usec, USEC_PER_MSEC),
3598 FORMAT_TIMESPAN(initrd_usec, USEC_PER_MSEC),
3599 FORMAT_TIMESPAN(userspace_usec, USEC_PER_MSEC),
3600 FORMAT_TIMESPAN(total_usec, USEC_PER_MSEC)));
18fa6b27 3601 } else {
7802194a 3602 /* The initrd-less case on bare-metal */
9f9f0342
LP
3603
3604 kernel_usec = m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic - m->timestamps[MANAGER_TIMESTAMP_KERNEL].monotonic;
18fa6b27
LP
3605 initrd_usec = 0;
3606
81270860 3607 log_struct(LOG_INFO,
2b044526 3608 "MESSAGE_ID=" SD_MESSAGE_STARTUP_FINISHED_STR,
e12919e8 3609 "KERNEL_USEC="USEC_FMT, kernel_usec,
ccd06097 3610 "USERSPACE_USEC="USEC_FMT, userspace_usec,
dd1db3c2
YW
3611 LOG_MESSAGE("Startup finished in %s%s (kernel) + %s (userspace) = %s.",
3612 buf,
5291f26d
ZJS
3613 FORMAT_TIMESPAN(kernel_usec, USEC_PER_MSEC),
3614 FORMAT_TIMESPAN(userspace_usec, USEC_PER_MSEC),
3615 FORMAT_TIMESPAN(total_usec, USEC_PER_MSEC)));
e12919e8
LP
3616 }
3617 } else {
4adf314b 3618 /* The container and --user case */
e12919e8 3619 firmware_usec = loader_usec = initrd_usec = kernel_usec = 0;
9f9f0342 3620 total_usec = userspace_usec = m->timestamps[MANAGER_TIMESTAMP_FINISH].monotonic - m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic;
e12919e8
LP
3621
3622 log_struct(LOG_INFO,
2b044526 3623 "MESSAGE_ID=" SD_MESSAGE_USER_STARTUP_FINISHED_STR,
e12919e8 3624 "USERSPACE_USEC="USEC_FMT, userspace_usec,
e2cc6eca 3625 LOG_MESSAGE("Startup finished in %s.",
5291f26d 3626 FORMAT_TIMESPAN(total_usec, USEC_PER_MSEC)));
18fa6b27 3627 }
b0c918b9 3628
718db961 3629 bus_manager_send_finished(m, firmware_usec, loader_usec, kernel_usec, initrd_usec, userspace_usec, total_usec);
530345e7 3630
d8eb10d6 3631 log_taint_string(m);
b0c918b9
LP
3632}
3633
6d932659 3634static void user_manager_send_ready(Manager *m) {
4bf4f50f
ZJS
3635 int r;
3636
4adf314b
LP
3637 assert(m);
3638
3639 /* We send READY=1 on reaching basic.target only when running in --user mode. */
3640 if (!MANAGER_IS_USER(m) || m->ready_sent)
3641 return;
3642
d4341b76
ZJS
3643 r = sd_notify(false,
3644 "READY=1\n"
3645 "STATUS=Reached " SPECIAL_BASIC_TARGET ".");
4bf4f50f
ZJS
3646 if (r < 0)
3647 log_warning_errno(r, "Failed to send readiness notification, ignoring: %m");
3648
6d932659
ZJS
3649 m->ready_sent = true;
3650 m->status_ready = false;
3651}
3652
3653static void manager_send_ready(Manager *m) {
4bf4f50f
ZJS
3654 int r;
3655
6d932659
ZJS
3656 if (m->ready_sent && m->status_ready)
3657 /* Skip the notification if nothing changed. */
3658 return;
3659
028f7d3a
ZJS
3660 r = sd_notify(false,
3661 "READY=1\n"
3662 "STATUS=Ready.");
4bf4f50f
ZJS
3663 if (r < 0)
3664 log_full_errno(m->ready_sent ? LOG_DEBUG : LOG_WARNING, r,
3665 "Failed to send readiness notification, ignoring: %m");
3666
6d932659 3667 m->ready_sent = m->status_ready = true;
4adf314b
LP
3668}
3669
3670static void manager_check_basic_target(Manager *m) {
3671 Unit *u;
3672
3673 assert(m);
3674
3675 /* Small shortcut */
3676 if (m->ready_sent && m->taint_logged)
3677 return;
3678
3679 u = manager_get_unit(m, SPECIAL_BASIC_TARGET);
3680 if (!u || !UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
3681 return;
3682
3683 /* For user managers, send out READY=1 as soon as we reach basic.target */
6d932659 3684 user_manager_send_ready(m);
4adf314b
LP
3685
3686 /* Log the taint string as soon as we reach basic.target */
3687 log_taint_string(m);
3688}
3689
56dacdbc 3690void manager_check_finished(Manager *m) {
56dacdbc
ZJS
3691 assert(m);
3692
2c289ea8 3693 if (MANAGER_IS_RELOADING(m))
aad1976f
LP
3694 return;
3695
4259d202
LP
3696 /* Verify that we have entered the event loop already, and not left it again. */
3697 if (!MANAGER_IS_RUNNING(m))
9771b62d
LP
3698 return;
3699
4adf314b 3700 manager_check_basic_target(m);
0c2826c6 3701
56dacdbc 3702 if (hashmap_size(m->jobs) > 0) {
56dacdbc 3703 if (m->jobs_in_progress_event_source)
2ae56591 3704 /* Ignore any failure, this is only for feedback */
1b4154a8
ZJS
3705 (void) sd_event_source_set_time(m->jobs_in_progress_event_source,
3706 manager_watch_jobs_next_time(m));
56dacdbc
ZJS
3707 return;
3708 }
3709
a4ac27c1
ZJS
3710 /* The jobs hashmap tends to grow a lot during boot, and then it's not reused until shutdown. Let's
3711 kill the hashmap if it is relatively large. */
3712 if (hashmap_buckets(m->jobs) > hashmap_size(m->units) / 10)
3713 m->jobs = hashmap_free(m->jobs);
3714
6d932659
ZJS
3715 manager_send_ready(m);
3716
9c1b17c3
YW
3717 /* Notify Type=idle units that we are done now */
3718 manager_close_idle_pipe(m);
3719
6d932659
ZJS
3720 if (MANAGER_IS_FINISHED(m))
3721 return;
3722
7365a296 3723 manager_flip_auto_status(m, false, "boot finished");
56dacdbc 3724
56dacdbc 3725 /* Turn off confirm spawn now */
7d5ceb64 3726 m->confirm_spawn = NULL;
56dacdbc
ZJS
3727
3728 /* No need to update ask password status when we're going non-interactive */
3729 manager_close_ask_password(m);
3730
3731 /* This is no longer the first boot */
3732 manager_set_first_boot(m, false);
3733
9f9f0342 3734 dual_timestamp_get(m->timestamps + MANAGER_TIMESTAMP_FINISH);
56dacdbc
ZJS
3735
3736 manager_notify_finished(m);
3737
e7ab4d1a 3738 manager_invalidate_startup_units(m);
56dacdbc
ZJS
3739}
3740
dd0ab174
LP
3741void manager_send_reloading(Manager *m) {
3742 assert(m);
3743
3744 /* Let whoever invoked us know that we are now reloading */
3745 (void) sd_notifyf(/* unset= */ false,
3746 "RELOADING=1\n"
3747 "MONOTONIC_USEC=" USEC_FMT "\n", now(CLOCK_MONOTONIC));
3748
3749 /* And ensure that we'll send READY=1 again as soon as we are ready again */
3750 m->ready_sent = false;
3751}
3752
64691d20 3753static bool generator_path_any(const char* const* paths) {
64691d20
ZJS
3754 bool found = false;
3755
3756 /* Optimize by skipping the whole process by not creating output directories
3757 * if no generators are found. */
2034c8b8 3758 STRV_FOREACH(path, paths)
64691d20
ZJS
3759 if (access(*path, F_OK) == 0)
3760 found = true;
3761 else if (errno != ENOENT)
3762 log_warning_errno(errno, "Failed to open generator directory %s: %m", *path);
3763
3764 return found;
3765}
3766
64691d20
ZJS
3767static int manager_run_environment_generators(Manager *m) {
3768 char **tmp = NULL; /* this is only used in the forked process, no cleanup here */
cccf5703 3769 _cleanup_strv_free_ char **paths = NULL;
1ad6e8b3
LP
3770 void* args[] = {
3771 [STDOUT_GENERATE] = &tmp,
3772 [STDOUT_COLLECT] = &tmp,
3773 [STDOUT_CONSUME] = &m->transient_environment,
3774 };
e3b8d063 3775 int r;
64691d20 3776
638cece4 3777 if (MANAGER_IS_TEST_RUN(m) && !(m->test_run_flags & MANAGER_TEST_RUN_ENV_GENERATORS))
e0a3da1f
ZJS
3778 return 0;
3779
cccf5703
BB
3780 paths = env_generator_binary_paths(MANAGER_IS_SYSTEM(m));
3781 if (!paths)
3782 return log_oom();
64691d20 3783
cccf5703 3784 if (!generator_path_any((const char* const*) paths))
64691d20
ZJS
3785 return 0;
3786
2053593f 3787 WITH_UMASK(0022)
cccf5703 3788 r = execute_directories((const char* const*) paths, DEFAULT_TIMEOUT_USEC, gather_environment,
43f565c6
YW
3789 args, NULL, m->transient_environment,
3790 EXEC_DIR_PARALLEL | EXEC_DIR_IGNORE_ERRORS | EXEC_DIR_SET_SYSTEMD_EXEC_PID);
e3b8d063 3791 return r;
64691d20
ZJS
3792}
3793
82c5db16
LP
3794static int build_generator_environment(Manager *m, char ***ret) {
3795 _cleanup_strv_free_ char **nl = NULL;
3796 Virtualization v;
3797 int r;
3798
3799 assert(m);
3800 assert(ret);
3801
3802 /* Generators oftentimes want to know some basic facts about the environment they run in, in order to
3803 * adjust generated units to that. Let's pass down some bits of information that are easy for us to
3804 * determine (but a bit harder for generator scripts to determine), as environment variables. */
3805
3806 nl = strv_copy(m->transient_environment);
3807 if (!nl)
3808 return -ENOMEM;
3809
3810 r = strv_env_assign(&nl, "SYSTEMD_SCOPE", MANAGER_IS_SYSTEM(m) ? "system" : "user");
3811 if (r < 0)
3812 return r;
3813
3814 if (MANAGER_IS_SYSTEM(m)) {
3815 /* Note that $SYSTEMD_IN_INITRD may be used to override the initrd detection in much of our
3816 * codebase. This is hence more than purely informational. It will shortcut detection of the
3817 * initrd state if generators invoke our own tools. But that's OK, as it would come to the
3818 * same results (hopefully). */
3819 r = strv_env_assign(&nl, "SYSTEMD_IN_INITRD", one_zero(in_initrd()));
3820 if (r < 0)
3821 return r;
3822
3823 if (m->first_boot >= 0) {
3824 r = strv_env_assign(&nl, "SYSTEMD_FIRST_BOOT", one_zero(m->first_boot));
3825 if (r < 0)
3826 return r;
3827 }
3828 }
3829
3830 v = detect_virtualization();
3831 if (v < 0)
3832 log_debug_errno(v, "Failed to detect virtualization, ignoring: %m");
3833 else if (v > 0) {
3834 const char *s;
3835
3836 s = strjoina(VIRTUALIZATION_IS_VM(v) ? "vm:" :
3837 VIRTUALIZATION_IS_CONTAINER(v) ? "container:" : ":",
3838 virtualization_to_string(v));
3839
3840 r = strv_env_assign(&nl, "SYSTEMD_VIRTUALIZATION", s);
3841 if (r < 0)
3842 return r;
3843 }
3844
3845 r = strv_env_assign(&nl, "SYSTEMD_ARCHITECTURE", architecture_to_string(uname_architecture()));
3846 if (r < 0)
3847 return r;
3848
3849 *ret = TAKE_PTR(nl);
3850 return 0;
3851}
3852
ca6ce62d
ZJS
3853static int manager_execute_generators(Manager *m, char **paths, bool remount_ro) {
3854 _cleanup_strv_free_ char **ge = NULL;
3855 const char *argv[] = {
3856 NULL, /* Leave this empty, execute_directory() will fill something in */
3857 m->lookup_paths.generator,
3858 m->lookup_paths.generator_early,
3859 m->lookup_paths.generator_late,
3860 NULL,
3861 };
3862 int r;
3863
3864 r = build_generator_environment(m, &ge);
3865 if (r < 0)
3866 return log_error_errno(r, "Failed to build generator environment: %m");
3867
3868 if (remount_ro) {
3869 /* Remount most of the filesystem tree read-only. We leave /sys/ as-is, because our code
3870 * checks whether it is read-only to detect containerized execution environments. We leave
3871 * /run/ as-is too, because that's where our output goes. We also leave /proc/ and /dev/shm/
3872 * because they're API, and /tmp/ that safe_fork() mounted for us.
3873 */
3874 r = bind_remount_recursive("/", MS_RDONLY, MS_RDONLY,
3875 STRV_MAKE("/sys", "/run", "/proc", "/dev/shm", "/tmp"));
3876 if (r < 0)
3877 log_warning_errno(r, "Read-only bind remount failed, ignoring: %m");
3878 }
3879
3880 BLOCK_WITH_UMASK(0022);
3881 return execute_directories(
3882 (const char* const*) paths,
3883 DEFAULT_TIMEOUT_USEC,
3884 /* callbacks= */ NULL, /* callback_args= */ NULL,
3885 (char**) argv,
3886 ge,
3887 EXEC_DIR_PARALLEL | EXEC_DIR_IGNORE_ERRORS | EXEC_DIR_SET_SYSTEMD_EXEC_PID);
3888}
3889
e801700e 3890static int manager_run_generators(Manager *m) {
ca6ce62d 3891 _cleanup_strv_free_ char **paths = NULL;
07719a21 3892 int r;
5a1e9937
LP
3893
3894 assert(m);
3895
638cece4 3896 if (MANAGER_IS_TEST_RUN(m) && !(m->test_run_flags & MANAGER_TEST_RUN_GENERATORS))
e0a3da1f
ZJS
3897 return 0;
3898
9183df70 3899 paths = generator_binary_paths(m->unit_file_scope);
e801700e
ZJS
3900 if (!paths)
3901 return log_oom();
5a1e9937 3902
64691d20
ZJS
3903 if (!generator_path_any((const char* const*) paths))
3904 return 0;
5a1e9937 3905
cd64fd56 3906 r = lookup_paths_mkdir_generator(&m->lookup_paths);
7eb4f326
LP
3907 if (r < 0) {
3908 log_error_errno(r, "Failed to create generator directories: %m");
07719a21 3909 goto finish;
7eb4f326 3910 }
5a1e9937 3911
ca6ce62d
ZJS
3912 /* If we are the system manager, we fork and invoke the generators in a sanitized mount namespace. If
3913 * we are the user manager, let's just execute the generators directly. We might not have the
3914 * necessary privileges, and the system manager has already mounted /tmp/ and everything else for us.
3915 */
3916 if (MANAGER_IS_USER(m)) {
3917 r = manager_execute_generators(m, paths, /* remount_ro= */ false);
82c5db16
LP
3918 goto finish;
3919 }
5a1e9937 3920
ca6ce62d 3921 r = safe_fork("(sd-gens)",
a2275dcb 3922 FORK_RESET_SIGNALS | FORK_WAIT | FORK_NEW_MOUNTNS | FORK_MOUNTNS_SLAVE | FORK_PRIVATE_TMP,
ca6ce62d
ZJS
3923 NULL);
3924 if (r == 0) {
3925 r = manager_execute_generators(m, paths, /* remount_ro= */ true);
3926 _exit(r >= 0 ? EXIT_SUCCESS : EXIT_FAILURE);
3927 }
a2275dcb
YW
3928 if (r < 0) {
3929 if (!ERRNO_IS_PRIVILEGE(r)) {
3930 log_error_errno(r, "Failed to fork off sandboxing environment for executing generators: %m");
3931 goto finish;
3932 }
3933
3934 /* Failed to fork with new mount namespace? Maybe, running in a container environment with
3935 * seccomp or without capability. */
3936 log_debug_errno(r,
3937 "Failed to fork off sandboxing environment for executing generators. "
3938 "Falling back to execute generators without sandboxing: %m");
3939 r = manager_execute_generators(m, paths, /* remount_ro= */ false);
3940 }
5a1e9937 3941
718db961 3942finish:
cd64fd56 3943 lookup_paths_trim_generator(&m->lookup_paths);
e801700e 3944 return r;
5a1e9937
LP
3945}
3946
1ad6e8b3
LP
3947int manager_transient_environment_add(Manager *m, char **plus) {
3948 char **a;
3949
3950 assert(m);
3951
3952 if (strv_isempty(plus))
3953 return 0;
3954
4ab3d29f 3955 a = strv_env_merge(m->transient_environment, plus);
1ad6e8b3 3956 if (!a)
2fbbbf9a 3957 return log_oom();
1ad6e8b3
LP
3958
3959 sanitize_environment(a);
3960
3961 return strv_free_and_replace(m->transient_environment, a);
3962}
3963
3964int manager_client_environment_modify(
3965 Manager *m,
3966 char **minus,
3967 char **plus) {
3968
718db961 3969 char **a = NULL, **b = NULL, **l;
1ad6e8b3 3970
97d0e5f8 3971 assert(m);
bcd8e6d1 3972
1ad6e8b3
LP
3973 if (strv_isempty(minus) && strv_isempty(plus))
3974 return 0;
3975
3976 l = m->client_environment;
bcd8e6d1 3977
718db961
LP
3978 if (!strv_isempty(minus)) {
3979 a = strv_env_delete(l, 1, minus);
3980 if (!a)
3981 return -ENOMEM;
3982
3983 l = a;
3984 }
3985
3986 if (!strv_isempty(plus)) {
4ab3d29f 3987 b = strv_env_merge(l, plus);
aa9f8a30
AH
3988 if (!b) {
3989 strv_free(a);
718db961 3990 return -ENOMEM;
aa9f8a30 3991 }
bcd8e6d1 3992
718db961
LP
3993 l = b;
3994 }
3995
1ad6e8b3
LP
3996 if (m->client_environment != l)
3997 strv_free(m->client_environment);
3998
718db961
LP
3999 if (a != l)
4000 strv_free(a);
4001 if (b != l)
4002 strv_free(b);
4003
1ad6e8b3
LP
4004 m->client_environment = sanitize_environment(l);
4005 return 0;
4006}
4007
4008int manager_get_effective_environment(Manager *m, char ***ret) {
4009 char **l;
4010
4011 assert(m);
4012 assert(ret);
4013
4ab3d29f 4014 l = strv_env_merge(m->transient_environment, m->client_environment);
1ad6e8b3
LP
4015 if (!l)
4016 return -ENOMEM;
f069efb4 4017
1ad6e8b3 4018 *ret = l;
97d0e5f8
UTL
4019 return 0;
4020}
4021
aa5ae971
ŁS
4022int manager_set_default_smack_process_label(Manager *m, const char *label) {
4023 assert(m);
4024
4025#ifdef SMACK_DEFAULT_PROCESS_LABEL
4026 if (!label)
4027 return free_and_strdup(&m->default_smack_process_label, SMACK_DEFAULT_PROCESS_LABEL);
4028#endif
4029 if (streq_ptr(label, "/"))
4030 return free_and_strdup(&m->default_smack_process_label, NULL);
4031
4032 return free_and_strdup(&m->default_smack_process_label, label);
4033}
4034
c93ff2e9 4035int manager_set_default_rlimits(Manager *m, struct rlimit **default_rlimit) {
c93ff2e9
FC
4036 assert(m);
4037
5b10116e 4038 for (unsigned i = 0; i < _RLIMIT_MAX; i++) {
d9814c76
EV
4039 m->rlimit[i] = mfree(m->rlimit[i]);
4040
07719a21
LP
4041 if (!default_rlimit[i])
4042 continue;
c93ff2e9 4043
07719a21
LP
4044 m->rlimit[i] = newdup(struct rlimit, default_rlimit[i], 1);
4045 if (!m->rlimit[i])
3ce40911 4046 return log_oom();
c93ff2e9
FC
4047 }
4048
4049 return 0;
4050}
4051
8559b3b7
LP
4052void manager_recheck_dbus(Manager *m) {
4053 assert(m);
4054
8f41e6b6
ZJS
4055 /* Connects to the bus if the dbus service and socket are running. If we are running in user mode
4056 * this is all it does. In system mode we'll also connect to the system bus (which will most likely
4057 * just reuse the connection of the API bus). That's because the system bus after all runs as service
4058 * of the system instance, while in the user instance we can assume it's already there. */
8559b3b7 4059
31dc1ca3
LP
4060 if (MANAGER_IS_RELOADING(m))
4061 return; /* don't check while we are reloading… */
4062
8559b3b7
LP
4063 if (manager_dbus_is_running(m, false)) {
4064 (void) bus_init_api(m);
4065
4066 if (MANAGER_IS_SYSTEM(m))
4067 (void) bus_init_system(m);
4068 } else {
4069 (void) bus_done_api(m);
4070
4071 if (MANAGER_IS_SYSTEM(m))
4072 (void) bus_done_system(m);
4073 }
4074}
4075
d075092f 4076static bool manager_journal_is_running(Manager *m) {
f1dd0c3f
LP
4077 Unit *u;
4078
4079 assert(m);
4080
638cece4 4081 if (MANAGER_IS_TEST_RUN(m))
7d814a19
LP
4082 return false;
4083
d075092f 4084 /* If we are the user manager we can safely assume that the journal is up */
463d0d15 4085 if (!MANAGER_IS_SYSTEM(m))
d075092f 4086 return true;
f1dd0c3f 4087
d075092f 4088 /* Check that the socket is not only up, but in RUNNING state */
731a676c 4089 u = manager_get_unit(m, SPECIAL_JOURNALD_SOCKET);
d075092f
LP
4090 if (!u)
4091 return false;
4092 if (SOCKET(u)->state != SOCKET_RUNNING)
4093 return false;
f1dd0c3f 4094
d075092f 4095 /* Similar, check if the daemon itself is fully up, too */
731a676c 4096 u = manager_get_unit(m, SPECIAL_JOURNALD_SERVICE);
d075092f
LP
4097 if (!u)
4098 return false;
217677ab 4099 if (!IN_SET(SERVICE(u)->state, SERVICE_RELOAD, SERVICE_RUNNING))
d075092f
LP
4100 return false;
4101
4102 return true;
4103}
4104
6123dfaa
ZJS
4105void disable_printk_ratelimit(void) {
4106 /* Disable kernel's printk ratelimit.
4107 *
4108 * Logging to /dev/kmsg is most useful during early boot and shutdown, where normal logging
4109 * mechanisms are not available. The semantics of this sysctl are such that any kernel command-line
4110 * setting takes precedence. */
4111 int r;
4112
4113 r = sysctl_write("kernel/printk_devkmsg", "on");
4114 if (r < 0)
4115 log_debug_errno(r, "Failed to set sysctl kernel.printk_devkmsg=on: %m");
4116}
4117
d075092f
LP
4118void manager_recheck_journal(Manager *m) {
4119
4120 assert(m);
4121
4122 /* Don't bother with this unless we are in the special situation of being PID 1 */
4123 if (getpid_cached() != 1)
731a676c 4124 return;
f1dd0c3f 4125
31dc1ca3
LP
4126 /* Don't check this while we are reloading, things might still change */
4127 if (MANAGER_IS_RELOADING(m))
4128 return;
4129
8f41e6b6
ZJS
4130 /* The journal is fully and entirely up? If so, let's permit logging to it, if that's configured. If
4131 * the journal is down, don't ever log to it, otherwise we might end up deadlocking ourselves as we
4132 * might trigger an activation ourselves we can't fulfill. */
cedf5088 4133 log_set_prohibit_ipc(!manager_journal_is_running(m));
cc2b9e6b 4134 log_open();
f1dd0c3f
LP
4135}
4136
44a41954
FB
4137static ShowStatus manager_get_show_status(Manager *m) {
4138 assert(m);
4139
4140 if (MANAGER_IS_USER(m))
4141 return _SHOW_STATUS_INVALID;
4142
4143 if (m->show_status_overridden != _SHOW_STATUS_INVALID)
4144 return m->show_status_overridden;
4145
4146 return m->show_status;
4147}
4148
4149bool manager_get_show_status_on(Manager *m) {
4150 assert(m);
4151
4152 return show_status_on(manager_get_show_status(m));
4153}
b309078a 4154
3ceb3471
FB
4155static void set_show_status_marker(bool b) {
4156 if (b)
4157 (void) touch("/run/systemd/show-status");
4158 else
4159 (void) unlink("/run/systemd/show-status");
4160}
4161
44a41954 4162void manager_set_show_status(Manager *m, ShowStatus mode, const char *reason) {
27d340c7 4163 assert(m);
44a41954 4164 assert(reason);
0d066dd1 4165 assert(mode >= 0 && mode < _SHOW_STATUS_MAX);
27d340c7 4166
44a41954 4167 if (MANAGER_IS_USER(m))
27d340c7
LP
4168 return;
4169
ef15d3e1
ZJS
4170 if (mode == m->show_status)
4171 return;
4172
44a41954
FB
4173 if (m->show_status_overridden == _SHOW_STATUS_INVALID) {
4174 bool enabled;
4175
4176 enabled = show_status_on(mode);
4177 log_debug("%s (%s) showing of status (%s).",
4178 enabled ? "Enabling" : "Disabling",
4179 strna(show_status_to_string(mode)),
4180 reason);
4181
3ceb3471 4182 set_show_status_marker(enabled);
44a41954
FB
4183 }
4184
4185 m->show_status = mode;
4186}
4187
43bba15a 4188void manager_override_show_status(Manager *m, ShowStatus mode, const char *reason) {
44a41954
FB
4189 assert(m);
4190 assert(mode < _SHOW_STATUS_MAX);
4191
4192 if (MANAGER_IS_USER(m))
4193 return;
4194
4195 if (mode == m->show_status_overridden)
4196 return;
4197
4198 m->show_status_overridden = mode;
4199
4200 if (mode == _SHOW_STATUS_INVALID)
4201 mode = m->show_status;
4202
ef15d3e1 4203 log_debug("%s (%s) showing of status (%s).",
44a41954 4204 m->show_status_overridden != _SHOW_STATUS_INVALID ? "Overriding" : "Restoring",
ef15d3e1
ZJS
4205 strna(show_status_to_string(mode)),
4206 reason);
b309078a 4207
3ceb3471 4208 set_show_status_marker(show_status_on(mode));
27d340c7
LP
4209}
4210
7d5ceb64
FB
4211const char *manager_get_confirm_spawn(Manager *m) {
4212 static int last_errno = 0;
7d5ceb64
FB
4213 struct stat st;
4214 int r;
4215
ea758432
LP
4216 assert(m);
4217
7d5ceb64
FB
4218 /* Here's the deal: we want to test the validity of the console but don't want
4219 * PID1 to go through the whole console process which might block. But we also
4220 * want to warn the user only once if something is wrong with the console so we
4221 * cannot do the sanity checks after spawning our children. So here we simply do
4222 * really basic tests to hopefully trap common errors.
4223 *
4224 * If the console suddenly disappear at the time our children will really it
4225 * then they will simply fail to acquire it and a positive answer will be
2aed63f4 4226 * assumed. New children will fall back to /dev/console though.
7d5ceb64
FB
4227 *
4228 * Note: TTYs are devices that can come and go any time, and frequently aren't
4229 * available yet during early boot (consider a USB rs232 dongle...). If for any
2aed63f4 4230 * reason the configured console is not ready, we fall back to the default
7d5ceb64
FB
4231 * console. */
4232
ea758432
LP
4233 if (!m->confirm_spawn || path_equal(m->confirm_spawn, "/dev/console"))
4234 return m->confirm_spawn;
7d5ceb64 4235
ea758432
LP
4236 if (stat(m->confirm_spawn, &st) < 0) {
4237 r = -errno;
7d5ceb64 4238 goto fail;
ea758432 4239 }
7d5ceb64
FB
4240
4241 if (!S_ISCHR(st.st_mode)) {
ea758432 4242 r = -ENOTTY;
7d5ceb64
FB
4243 goto fail;
4244 }
4245
4246 last_errno = 0;
ea758432
LP
4247 return m->confirm_spawn;
4248
7d5ceb64 4249fail:
ea758432
LP
4250 if (last_errno != r)
4251 last_errno = log_warning_errno(r, "Failed to open %s, using default console: %m", m->confirm_spawn);
4252
7d5ceb64
FB
4253 return "/dev/console";
4254}
4255
e2680723
LP
4256void manager_set_first_boot(Manager *m, bool b) {
4257 assert(m);
4258
463d0d15 4259 if (!MANAGER_IS_SYSTEM(m))
e2680723
LP
4260 return;
4261
ae2a2c53
LP
4262 if (m->first_boot != (int) b) {
4263 if (b)
4264 (void) touch("/run/systemd/first-boot");
4265 else
4266 (void) unlink("/run/systemd/first-boot");
4267 }
e2680723 4268
ae2a2c53 4269 m->first_boot = b;
e2680723
LP
4270}
4271
b0eb2944
FB
4272void manager_disable_confirm_spawn(void) {
4273 (void) touch("/run/systemd/confirm_spawn_disabled");
4274}
4275
4276bool manager_is_confirm_spawn_disabled(Manager *m) {
4277 if (!m->confirm_spawn)
4278 return true;
4279
4280 return access("/run/systemd/confirm_spawn_disabled", F_OK) >= 0;
4281}
4282
0d6d3cf0
FB
4283static bool manager_should_show_status(Manager *m, StatusType type) {
4284 assert(m);
4285
4286 if (!MANAGER_IS_SYSTEM(m))
4287 return false;
4288
4289 if (m->no_console_output)
4290 return false;
4291
4292 if (!IN_SET(manager_state(m), MANAGER_INITIALIZING, MANAGER_STARTING, MANAGER_STOPPING))
4293 return false;
4294
4295 /* If we cannot find out the status properly, just proceed. */
4296 if (type != STATUS_TYPE_EMERGENCY && manager_check_ask_password(m) > 0)
4297 return false;
4298
4299 if (type == STATUS_TYPE_NOTICE && m->show_status != SHOW_STATUS_NO)
4300 return true;
4301
44a41954 4302 return manager_get_show_status_on(m);
0d6d3cf0
FB
4303}
4304
127d5fd1 4305void manager_status_printf(Manager *m, StatusType type, const char *status, const char *format, ...) {
25cee550
MS
4306 va_list ap;
4307
cb6531be
ZJS
4308 /* If m is NULL, assume we're after shutdown and let the messages through. */
4309
0d6d3cf0 4310 if (m && !manager_should_show_status(m, type))
25cee550
MS
4311 return;
4312
03b717a3
MS
4313 /* XXX We should totally drop the check for ephemeral here
4314 * and thus effectively make 'Type=idle' pointless. */
cb6531be 4315 if (type == STATUS_TYPE_EPHEMERAL && m && m->n_on_console > 0)
03b717a3
MS
4316 return;
4317
25cee550 4318 va_start(ap, format);
a885727a 4319 status_vprintf(status, SHOW_STATUS_ELLIPSIZE|(type == STATUS_TYPE_EPHEMERAL ? SHOW_STATUS_EPHEMERAL : 0), format, ap);
25cee550
MS
4320 va_end(ap);
4321}
4322
ac19bdd0 4323Set* manager_get_units_requiring_mounts_for(Manager *m, const char *path) {
a57f7e2c
LP
4324 assert(m);
4325 assert(path);
4326
ac19bdd0
ZJS
4327 if (path_equal(path, "/"))
4328 path = "";
a57f7e2c 4329
ac19bdd0 4330 return hashmap_get(m->units_requiring_mounts_for, path);
a57f7e2c 4331}
e66cf1a3 4332
5269eb6b 4333int manager_update_failed_units(Manager *m, Unit *u, bool failed) {
03455c28 4334 unsigned size;
5269eb6b 4335 int r;
03455c28
LDM
4336
4337 assert(m);
4338 assert(u->manager == m);
4339
4340 size = set_size(m->failed_units);
4341
9fff8981 4342 if (failed) {
de7fef4b 4343 r = set_ensure_put(&m->failed_units, NULL, u);
5269eb6b
LP
4344 if (r < 0)
4345 return log_oom();
9fff8981 4346 } else
5269eb6b 4347 (void) set_remove(m->failed_units, u);
03455c28
LDM
4348
4349 if (set_size(m->failed_units) != size)
4350 bus_manager_send_change_signal(m);
5269eb6b
LP
4351
4352 return 0;
03455c28
LDM
4353}
4354
f755e3b7
LP
4355ManagerState manager_state(Manager *m) {
4356 Unit *u;
4357
4358 assert(m);
4359
f9d29f6d
JB
4360 /* Is the special shutdown target active or queued? If so, we are in shutdown state */
4361 u = manager_get_unit(m, SPECIAL_SHUTDOWN_TARGET);
4362 if (u && unit_active_or_pending(u))
4363 return MANAGER_STOPPING;
4364
f755e3b7 4365 /* Did we ever finish booting? If not then we are still starting up */
49d5666c 4366 if (!MANAGER_IS_FINISHED(m)) {
d81afec1
LP
4367
4368 u = manager_get_unit(m, SPECIAL_BASIC_TARGET);
4369 if (!u || !UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
4370 return MANAGER_INITIALIZING;
4371
f755e3b7 4372 return MANAGER_STARTING;
d81afec1 4373 }
f755e3b7 4374
45a7b16b
LP
4375 if (MANAGER_IS_SYSTEM(m)) {
4376 /* Are the rescue or emergency targets active or queued? If so we are in maintenance state */
4377 u = manager_get_unit(m, SPECIAL_RESCUE_TARGET);
4378 if (u && unit_active_or_pending(u))
4379 return MANAGER_MAINTENANCE;
f755e3b7 4380
45a7b16b
LP
4381 u = manager_get_unit(m, SPECIAL_EMERGENCY_TARGET);
4382 if (u && unit_active_or_pending(u))
4383 return MANAGER_MAINTENANCE;
4384 }
f755e3b7
LP
4385
4386 /* Are there any failed units? If so, we are in degraded mode */
4387 if (set_size(m->failed_units) > 0)
4388 return MANAGER_DEGRADED;
4389
4390 return MANAGER_RUNNING;
4391}
4392
00d9ef85 4393static void manager_unref_uid_internal(
010becd9 4394 Hashmap *uid_refs,
00d9ef85
LP
4395 uid_t uid,
4396 bool destroy_now,
4397 int (*_clean_ipc)(uid_t uid)) {
4398
4399 uint32_t c, n;
4400
00d9ef85
LP
4401 assert(uid_is_valid(uid));
4402 assert(_clean_ipc);
4403
8f41e6b6
ZJS
4404 /* A generic implementation, covering both manager_unref_uid() and manager_unref_gid(), under the
4405 * assumption that uid_t and gid_t are actually defined the same way, with the same validity rules.
00d9ef85 4406 *
8f41e6b6
ZJS
4407 * We store a hashmap where the key is the UID/GID and the value is a 32bit reference counter, whose
4408 * highest bit is used as flag for marking UIDs/GIDs whose IPC objects to remove when the last
4409 * reference to the UID/GID is dropped. The flag is set to on, once at least one reference from a
4410 * unit where RemoveIPC= is set is added on a UID/GID. It is reset when the UID's/GID's reference
4411 * counter drops to 0 again. */
00d9ef85
LP
4412
4413 assert_cc(sizeof(uid_t) == sizeof(gid_t));
4414 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
4415
4416 if (uid == 0) /* We don't keep track of root, and will never destroy it */
4417 return;
4418
010becd9 4419 c = PTR_TO_UINT32(hashmap_get(uid_refs, UID_TO_PTR(uid)));
00d9ef85
LP
4420
4421 n = c & ~DESTROY_IPC_FLAG;
4422 assert(n > 0);
4423 n--;
4424
4425 if (destroy_now && n == 0) {
010becd9 4426 hashmap_remove(uid_refs, UID_TO_PTR(uid));
00d9ef85
LP
4427
4428 if (c & DESTROY_IPC_FLAG) {
4429 log_debug("%s " UID_FMT " is no longer referenced, cleaning up its IPC.",
4430 _clean_ipc == clean_ipc_by_uid ? "UID" : "GID",
4431 uid);
4432 (void) _clean_ipc(uid);
4433 }
4434 } else {
4435 c = n | (c & DESTROY_IPC_FLAG);
010becd9 4436 assert_se(hashmap_update(uid_refs, UID_TO_PTR(uid), UINT32_TO_PTR(c)) >= 0);
00d9ef85
LP
4437 }
4438}
4439
4440void manager_unref_uid(Manager *m, uid_t uid, bool destroy_now) {
010becd9 4441 manager_unref_uid_internal(m->uid_refs, uid, destroy_now, clean_ipc_by_uid);
00d9ef85
LP
4442}
4443
4444void manager_unref_gid(Manager *m, gid_t gid, bool destroy_now) {
010becd9 4445 manager_unref_uid_internal(m->gid_refs, (uid_t) gid, destroy_now, clean_ipc_by_gid);
00d9ef85
LP
4446}
4447
4448static int manager_ref_uid_internal(
00d9ef85
LP
4449 Hashmap **uid_refs,
4450 uid_t uid,
4451 bool clean_ipc) {
4452
4453 uint32_t c, n;
4454 int r;
4455
00d9ef85
LP
4456 assert(uid_refs);
4457 assert(uid_is_valid(uid));
4458
8f41e6b6
ZJS
4459 /* A generic implementation, covering both manager_ref_uid() and manager_ref_gid(), under the
4460 * assumption that uid_t and gid_t are actually defined the same way, with the same validity
4461 * rules. */
00d9ef85
LP
4462
4463 assert_cc(sizeof(uid_t) == sizeof(gid_t));
4464 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
4465
4466 if (uid == 0) /* We don't keep track of root, and will never destroy it */
4467 return 0;
4468
4469 r = hashmap_ensure_allocated(uid_refs, &trivial_hash_ops);
4470 if (r < 0)
4471 return r;
4472
4473 c = PTR_TO_UINT32(hashmap_get(*uid_refs, UID_TO_PTR(uid)));
4474
4475 n = c & ~DESTROY_IPC_FLAG;
4476 n++;
4477
4478 if (n & DESTROY_IPC_FLAG) /* check for overflow */
4479 return -EOVERFLOW;
4480
4481 c = n | (c & DESTROY_IPC_FLAG) | (clean_ipc ? DESTROY_IPC_FLAG : 0);
4482
4483 return hashmap_replace(*uid_refs, UID_TO_PTR(uid), UINT32_TO_PTR(c));
4484}
4485
4486int manager_ref_uid(Manager *m, uid_t uid, bool clean_ipc) {
010becd9 4487 return manager_ref_uid_internal(&m->uid_refs, uid, clean_ipc);
00d9ef85
LP
4488}
4489
4490int manager_ref_gid(Manager *m, gid_t gid, bool clean_ipc) {
010becd9 4491 return manager_ref_uid_internal(&m->gid_refs, (uid_t) gid, clean_ipc);
00d9ef85
LP
4492}
4493
4494static void manager_vacuum_uid_refs_internal(
010becd9 4495 Hashmap *uid_refs,
00d9ef85
LP
4496 int (*_clean_ipc)(uid_t uid)) {
4497
00d9ef85
LP
4498 void *p, *k;
4499
00d9ef85
LP
4500 assert(_clean_ipc);
4501
010becd9 4502 HASHMAP_FOREACH_KEY(p, k, uid_refs) {
00d9ef85
LP
4503 uint32_t c, n;
4504 uid_t uid;
4505
4506 uid = PTR_TO_UID(k);
4507 c = PTR_TO_UINT32(p);
4508
4509 n = c & ~DESTROY_IPC_FLAG;
4510 if (n > 0)
4511 continue;
4512
4513 if (c & DESTROY_IPC_FLAG) {
4514 log_debug("Found unreferenced %s " UID_FMT " after reload/reexec. Cleaning up.",
4515 _clean_ipc == clean_ipc_by_uid ? "UID" : "GID",
4516 uid);
4517 (void) _clean_ipc(uid);
4518 }
4519
010becd9 4520 assert_se(hashmap_remove(uid_refs, k) == p);
00d9ef85
LP
4521 }
4522}
4523
06a4eb07 4524static void manager_vacuum_uid_refs(Manager *m) {
010becd9 4525 manager_vacuum_uid_refs_internal(m->uid_refs, clean_ipc_by_uid);
00d9ef85
LP
4526}
4527
06a4eb07 4528static void manager_vacuum_gid_refs(Manager *m) {
010becd9 4529 manager_vacuum_uid_refs_internal(m->gid_refs, clean_ipc_by_gid);
00d9ef85
LP
4530}
4531
06a4eb07
FB
4532static void manager_vacuum(Manager *m) {
4533 assert(m);
4534
4535 /* Release any dynamic users no longer referenced */
4536 dynamic_user_vacuum(m, true);
4537
4538 /* Release any references to UIDs/GIDs no longer referenced, and destroy any IPC owned by them */
4539 manager_vacuum_uid_refs(m);
4540 manager_vacuum_gid_refs(m);
4541
4542 /* Release any runtimes no longer referenced */
4543 exec_runtime_vacuum(m);
4544}
4545
00d9ef85
LP
4546int manager_dispatch_user_lookup_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
4547 struct buffer {
4548 uid_t uid;
4549 gid_t gid;
4550 char unit_name[UNIT_NAME_MAX+1];
4551 } _packed_ buffer;
4552
4553 Manager *m = userdata;
4554 ssize_t l;
4555 size_t n;
4556 Unit *u;
4557
4558 assert_se(source);
4559 assert_se(m);
4560
8f41e6b6
ZJS
4561 /* Invoked whenever a child process succeeded resolving its user/group to use and sent us the
4562 * resulting UID/GID in a datagram. We parse the datagram here and pass it off to the unit, so that
4563 * it can add a reference to the UID/GID so that it can destroy the UID/GID's IPC objects when the
4564 * reference counter drops to 0. */
00d9ef85
LP
4565
4566 l = recv(fd, &buffer, sizeof(buffer), MSG_DONTWAIT);
4567 if (l < 0) {
8add30a0 4568 if (ERRNO_IS_TRANSIENT(errno))
00d9ef85
LP
4569 return 0;
4570
4571 return log_error_errno(errno, "Failed to read from user lookup fd: %m");
4572 }
4573
4574 if ((size_t) l <= offsetof(struct buffer, unit_name)) {
4575 log_warning("Received too short user lookup message, ignoring.");
4576 return 0;
4577 }
4578
4579 if ((size_t) l > offsetof(struct buffer, unit_name) + UNIT_NAME_MAX) {
4580 log_warning("Received too long user lookup message, ignoring.");
4581 return 0;
4582 }
4583
4584 if (!uid_is_valid(buffer.uid) && !gid_is_valid(buffer.gid)) {
4585 log_warning("Got user lookup message with invalid UID/GID pair, ignoring.");
4586 return 0;
4587 }
4588
4589 n = (size_t) l - offsetof(struct buffer, unit_name);
4590 if (memchr(buffer.unit_name, 0, n)) {
4591 log_warning("Received lookup message with embedded NUL character, ignoring.");
4592 return 0;
4593 }
4594
4595 buffer.unit_name[n] = 0;
4596 u = manager_get_unit(m, buffer.unit_name);
4597 if (!u) {
4598 log_debug("Got user lookup message but unit doesn't exist, ignoring.");
4599 return 0;
4600 }
4601
4602 log_unit_debug(u, "User lookup succeeded: uid=" UID_FMT " gid=" GID_FMT, buffer.uid, buffer.gid);
4603
4604 unit_notify_user_lookup(u, buffer.uid, buffer.gid);
4605 return 0;
4606}
4607
63e8df04 4608static int short_uid_range(const char *path) {
8dcc66ce 4609 _cleanup_(uid_range_freep) UidRange *p = NULL;
63e8df04
LP
4610 int r;
4611
4612 assert(path);
4613
4614 /* Taint systemd if we the UID range assigned to this environment doesn't at least cover 0…65534,
4615 * i.e. from root to nobody. */
4616
8dcc66ce
YW
4617 r = uid_range_load_userns(&p, path);
4618 if (r < 0) {
4619 if (ERRNO_IS_NOT_SUPPORTED(r))
4620 return false;
63e8df04 4621 return log_debug_errno(r, "Failed to load %s: %m", path);
8dcc66ce 4622 }
63e8df04 4623
8dcc66ce 4624 return !uid_range_covers(p, 0, 65535);
63e8df04
LP
4625}
4626
83fe5d8a
ZJS
4627char* manager_taint_string(const Manager *m) {
4628 /* Returns a "taint string", e.g. "local-hwclock:var-run-bad". Only things that are detected at
4629 * runtime should be tagged here. For stuff that is known during compilation, emit a warning in the
63e8df04 4630 * configuration phase. */
198ce932 4631
af6b0ecc
LP
4632 assert(m);
4633
4bd03515 4634 const char* stage[13] = {};
83fe5d8a 4635 size_t n = 0;
af6b0ecc
LP
4636
4637 if (m->taint_usr)
83fe5d8a 4638 stage[n++] = "split-usr";
af6b0ecc 4639
31cd2dd9
LB
4640 _cleanup_free_ char *usrbin = NULL;
4641 if (readlink_malloc("/bin", &usrbin) < 0 || !PATH_IN_SET(usrbin, "usr/bin", "/usr/bin"))
4642 stage[n++] = "unmerged-usr";
4643
af6b0ecc 4644 if (access("/proc/cgroups", F_OK) < 0)
83fe5d8a 4645 stage[n++] = "cgroups-missing";
af6b0ecc 4646
82f30632 4647 if (cg_all_unified() == 0)
83fe5d8a 4648 stage[n++] = "cgroupsv1";
82f30632 4649
af6b0ecc 4650 if (clock_is_localtime(NULL) > 0)
83fe5d8a 4651 stage[n++] = "local-hwclock";
af6b0ecc 4652
6bfe9b3b 4653 if (os_release_support_ended(NULL, /* quiet= */ true, NULL) > 0)
4bd03515
ZJS
4654 stage[n++] = "support-ended";
4655
83fe5d8a
ZJS
4656 _cleanup_free_ char *destination = NULL;
4657 if (readlink_malloc("/var/run", &destination) < 0 ||
4658 !PATH_IN_SET(destination, "../run", "/run"))
4659 stage[n++] = "var-run-bad";
af6b0ecc 4660
83fe5d8a
ZJS
4661 _cleanup_free_ char *overflowuid = NULL, *overflowgid = NULL;
4662 if (read_one_line_file("/proc/sys/kernel/overflowuid", &overflowuid) >= 0 &&
4663 !streq(overflowuid, "65534"))
4664 stage[n++] = "overflowuid-not-65534";
4665 if (read_one_line_file("/proc/sys/kernel/overflowgid", &overflowgid) >= 0 &&
4666 !streq(overflowgid, "65534"))
4667 stage[n++] = "overflowgid-not-65534";
90d7464d 4668
83fe5d8a 4669 struct utsname uts;
40efaaed
LP
4670 assert_se(uname(&uts) >= 0);
4671 if (strverscmp_improved(uts.release, KERNEL_BASELINE_VERSION) < 0)
83fe5d8a 4672 stage[n++] = "old-kernel";
40efaaed 4673
63e8df04 4674 if (short_uid_range("/proc/self/uid_map") > 0)
83fe5d8a 4675 stage[n++] = "short-uid-range";
63e8df04 4676 if (short_uid_range("/proc/self/gid_map") > 0)
83fe5d8a 4677 stage[n++] = "short-gid-range";
63e8df04 4678
83fe5d8a 4679 assert(n < ELEMENTSOF(stage) - 1); /* One extra for NULL terminator */
af6b0ecc 4680
83fe5d8a 4681 return strv_join((char**) stage, ":");
af6b0ecc
LP
4682}
4683
adefcf28
LP
4684void manager_ref_console(Manager *m) {
4685 assert(m);
4686
4687 m->n_on_console++;
4688}
4689
4690void manager_unref_console(Manager *m) {
4691
4692 assert(m->n_on_console > 0);
4693 m->n_on_console--;
4694
4695 if (m->n_on_console == 0)
4696 m->no_console_output = false; /* unset no_console_output flag, since the console is definitely free now */
4697}
4698
a6ecbf83
FB
4699void manager_override_log_level(Manager *m, int level) {
4700 _cleanup_free_ char *s = NULL;
4701 assert(m);
4702
4703 if (!m->log_level_overridden) {
4704 m->original_log_level = log_get_max_level();
4705 m->log_level_overridden = true;
4706 }
4707
4708 (void) log_level_to_string_alloc(level, &s);
4709 log_info("Setting log level to %s.", strna(s));
4710
4711 log_set_max_level(level);
4712}
4713
4714void manager_restore_original_log_level(Manager *m) {
4715 _cleanup_free_ char *s = NULL;
4716 assert(m);
4717
4718 if (!m->log_level_overridden)
4719 return;
4720
4721 (void) log_level_to_string_alloc(m->original_log_level, &s);
4722 log_info("Restoring log level to original (%s).", strna(s));
4723
4724 log_set_max_level(m->original_log_level);
4725 m->log_level_overridden = false;
4726}
4727
bda7d78b
FB
4728void manager_override_log_target(Manager *m, LogTarget target) {
4729 assert(m);
4730
4731 if (!m->log_target_overridden) {
4732 m->original_log_target = log_get_target();
4733 m->log_target_overridden = true;
4734 }
4735
4736 log_info("Setting log target to %s.", log_target_to_string(target));
4737 log_set_target(target);
4738}
4739
4740void manager_restore_original_log_target(Manager *m) {
4741 assert(m);
4742
4743 if (!m->log_target_overridden)
4744 return;
4745
4746 log_info("Restoring log target to original %s.", log_target_to_string(m->original_log_target));
4747
4748 log_set_target(m->original_log_target);
4749 m->log_target_overridden = false;
4750}
4751
d4ee7bd8
YW
4752ManagerTimestamp manager_timestamp_initrd_mangle(ManagerTimestamp s) {
4753 if (in_initrd() &&
4754 s >= MANAGER_TIMESTAMP_SECURITY_START &&
4755 s <= MANAGER_TIMESTAMP_UNITS_LOAD_FINISH)
4756 return s - MANAGER_TIMESTAMP_SECURITY_START + MANAGER_TIMESTAMP_INITRD_SECURITY_START;
4757 return s;
4758}
4759
f755e3b7 4760static const char *const manager_state_table[_MANAGER_STATE_MAX] = {
d81afec1 4761 [MANAGER_INITIALIZING] = "initializing",
48d83e33
ZJS
4762 [MANAGER_STARTING] = "starting",
4763 [MANAGER_RUNNING] = "running",
4764 [MANAGER_DEGRADED] = "degraded",
4765 [MANAGER_MAINTENANCE] = "maintenance",
4766 [MANAGER_STOPPING] = "stopping",
f755e3b7
LP
4767};
4768
4769DEFINE_STRING_TABLE_LOOKUP(manager_state, ManagerState);
9f9f0342
LP
4770
4771static const char *const manager_timestamp_table[_MANAGER_TIMESTAMP_MAX] = {
48d83e33
ZJS
4772 [MANAGER_TIMESTAMP_FIRMWARE] = "firmware",
4773 [MANAGER_TIMESTAMP_LOADER] = "loader",
4774 [MANAGER_TIMESTAMP_KERNEL] = "kernel",
4775 [MANAGER_TIMESTAMP_INITRD] = "initrd",
4776 [MANAGER_TIMESTAMP_USERSPACE] = "userspace",
4777 [MANAGER_TIMESTAMP_FINISH] = "finish",
4778 [MANAGER_TIMESTAMP_SECURITY_START] = "security-start",
4779 [MANAGER_TIMESTAMP_SECURITY_FINISH] = "security-finish",
4780 [MANAGER_TIMESTAMP_GENERATORS_START] = "generators-start",
4781 [MANAGER_TIMESTAMP_GENERATORS_FINISH] = "generators-finish",
4782 [MANAGER_TIMESTAMP_UNITS_LOAD_START] = "units-load-start",
4783 [MANAGER_TIMESTAMP_UNITS_LOAD_FINISH] = "units-load-finish",
49fbe940 4784 [MANAGER_TIMESTAMP_UNITS_LOAD] = "units-load",
48d83e33
ZJS
4785 [MANAGER_TIMESTAMP_INITRD_SECURITY_START] = "initrd-security-start",
4786 [MANAGER_TIMESTAMP_INITRD_SECURITY_FINISH] = "initrd-security-finish",
4787 [MANAGER_TIMESTAMP_INITRD_GENERATORS_START] = "initrd-generators-start",
d4ee7bd8 4788 [MANAGER_TIMESTAMP_INITRD_GENERATORS_FINISH] = "initrd-generators-finish",
48d83e33 4789 [MANAGER_TIMESTAMP_INITRD_UNITS_LOAD_START] = "initrd-units-load-start",
d4ee7bd8 4790 [MANAGER_TIMESTAMP_INITRD_UNITS_LOAD_FINISH] = "initrd-units-load-finish",
9f9f0342
LP
4791};
4792
4793DEFINE_STRING_TABLE_LOOKUP(manager_timestamp, ManagerTimestamp);
afcfaa69
LP
4794
4795static const char* const oom_policy_table[_OOM_POLICY_MAX] = {
4796 [OOM_CONTINUE] = "continue",
48d83e33
ZJS
4797 [OOM_STOP] = "stop",
4798 [OOM_KILL] = "kill",
afcfaa69
LP
4799};
4800
4801DEFINE_STRING_TABLE_LOOKUP(oom_policy, OOMPolicy);