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