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