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