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