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