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