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