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