]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/main.c
tree-wide: when %m is used in log_*, always specify errno explicitly
[thirdparty/systemd.git] / src / core / main.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <fcntl.h>
22 #include <getopt.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <sys/mount.h>
27 #include <sys/prctl.h>
28 #include <sys/reboot.h>
29 #include <sys/stat.h>
30 #include <unistd.h>
31 #ifdef HAVE_SECCOMP
32 #include <seccomp.h>
33 #endif
34 #ifdef HAVE_VALGRIND_VALGRIND_H
35 #include <valgrind/valgrind.h>
36 #endif
37
38 #include "sd-bus.h"
39 #include "sd-daemon.h"
40
41 #include "alloc-util.h"
42 #include "architecture.h"
43 #include "build.h"
44 #include "bus-error.h"
45 #include "bus-util.h"
46 #include "capability-util.h"
47 #include "clock-util.h"
48 #include "conf-parser.h"
49 #include "cpu-set-util.h"
50 #include "dbus-manager.h"
51 #include "def.h"
52 #include "emergency-action.h"
53 #include "env-util.h"
54 #include "fd-util.h"
55 #include "fdset.h"
56 #include "fileio.h"
57 #include "format-util.h"
58 #include "fs-util.h"
59 #include "hostname-setup.h"
60 #include "ima-setup.h"
61 #include "killall.h"
62 #include "kmod-setup.h"
63 #include "load-fragment.h"
64 #include "log.h"
65 #include "loopback-setup.h"
66 #include "machine-id-setup.h"
67 #include "manager.h"
68 #include "missing.h"
69 #include "mount-setup.h"
70 #include "pager.h"
71 #include "parse-util.h"
72 #include "path-util.h"
73 #include "proc-cmdline.h"
74 #include "process-util.h"
75 #include "raw-clone.h"
76 #include "rlimit-util.h"
77 #ifdef HAVE_SECCOMP
78 #include "seccomp-util.h"
79 #endif
80 #include "selinux-setup.h"
81 #include "selinux-util.h"
82 #include "signal-util.h"
83 #include "smack-setup.h"
84 #include "special.h"
85 #include "stat-util.h"
86 #include "stdio-util.h"
87 #include "strv.h"
88 #include "switch-root.h"
89 #include "terminal-util.h"
90 #include "umask-util.h"
91 #include "user-util.h"
92 #include "virt.h"
93 #include "watchdog.h"
94
95 static enum {
96 ACTION_RUN,
97 ACTION_HELP,
98 ACTION_VERSION,
99 ACTION_TEST,
100 ACTION_DUMP_CONFIGURATION_ITEMS
101 } arg_action = ACTION_RUN;
102 static char *arg_default_unit = NULL;
103 static bool arg_system = false;
104 static bool arg_dump_core = true;
105 static int arg_crash_chvt = -1;
106 static bool arg_crash_shell = false;
107 static bool arg_crash_reboot = false;
108 static char *arg_confirm_spawn = NULL;
109 static ShowStatus arg_show_status = _SHOW_STATUS_UNSET;
110 static bool arg_switched_root = false;
111 static bool arg_no_pager = false;
112 static char ***arg_join_controllers = NULL;
113 static ExecOutput arg_default_std_output = EXEC_OUTPUT_JOURNAL;
114 static ExecOutput arg_default_std_error = EXEC_OUTPUT_INHERIT;
115 static usec_t arg_default_restart_usec = DEFAULT_RESTART_USEC;
116 static usec_t arg_default_timeout_start_usec = DEFAULT_TIMEOUT_USEC;
117 static usec_t arg_default_timeout_stop_usec = DEFAULT_TIMEOUT_USEC;
118 static usec_t arg_default_start_limit_interval = DEFAULT_START_LIMIT_INTERVAL;
119 static unsigned arg_default_start_limit_burst = DEFAULT_START_LIMIT_BURST;
120 static usec_t arg_runtime_watchdog = 0;
121 static usec_t arg_shutdown_watchdog = 10 * USEC_PER_MINUTE;
122 static char **arg_default_environment = NULL;
123 static struct rlimit *arg_default_rlimit[_RLIMIT_MAX] = {};
124 static uint64_t arg_capability_bounding_set = CAP_ALL;
125 static nsec_t arg_timer_slack_nsec = NSEC_INFINITY;
126 static usec_t arg_default_timer_accuracy_usec = 1 * USEC_PER_MINUTE;
127 static Set* arg_syscall_archs = NULL;
128 static FILE* arg_serialization = NULL;
129 static bool arg_default_cpu_accounting = false;
130 static bool arg_default_io_accounting = false;
131 static bool arg_default_blockio_accounting = false;
132 static bool arg_default_memory_accounting = false;
133 static bool arg_default_tasks_accounting = true;
134 static uint64_t arg_default_tasks_max = UINT64_MAX;
135 static sd_id128_t arg_machine_id = {};
136 static EmergencyAction arg_cad_burst_action = EMERGENCY_ACTION_REBOOT_FORCE;
137
138 noreturn static void freeze_or_reboot(void) {
139
140 if (arg_crash_reboot) {
141 log_notice("Rebooting in 10s...");
142 (void) sleep(10);
143
144 log_notice("Rebooting now...");
145 (void) reboot(RB_AUTOBOOT);
146 log_emergency_errno(errno, "Failed to reboot: %m");
147 }
148
149 log_emergency("Freezing execution.");
150 freeze();
151 }
152
153 noreturn static void crash(int sig) {
154 struct sigaction sa;
155 pid_t pid;
156
157 if (getpid() != 1)
158 /* Pass this on immediately, if this is not PID 1 */
159 (void) raise(sig);
160 else if (!arg_dump_core)
161 log_emergency("Caught <%s>, not dumping core.", signal_to_string(sig));
162 else {
163 sa = (struct sigaction) {
164 .sa_handler = nop_signal_handler,
165 .sa_flags = SA_NOCLDSTOP|SA_RESTART,
166 };
167
168 /* We want to wait for the core process, hence let's enable SIGCHLD */
169 (void) sigaction(SIGCHLD, &sa, NULL);
170
171 pid = raw_clone(SIGCHLD);
172 if (pid < 0)
173 log_emergency_errno(errno, "Caught <%s>, cannot fork for core dump: %m", signal_to_string(sig));
174 else if (pid == 0) {
175 /* Enable default signal handler for core dump */
176
177 sa = (struct sigaction) {
178 .sa_handler = SIG_DFL,
179 };
180 (void) sigaction(sig, &sa, NULL);
181
182 /* Don't limit the coredump size */
183 (void) setrlimit(RLIMIT_CORE, &RLIMIT_MAKE_CONST(RLIM_INFINITY));
184
185 /* Just to be sure... */
186 (void) chdir("/");
187
188 /* Raise the signal again */
189 pid = raw_getpid();
190 (void) kill(pid, sig); /* raise() would kill the parent */
191
192 assert_not_reached("We shouldn't be here...");
193 _exit(EXIT_FAILURE);
194 } else {
195 siginfo_t status;
196 int r;
197
198 /* Order things nicely. */
199 r = wait_for_terminate(pid, &status);
200 if (r < 0)
201 log_emergency_errno(r, "Caught <%s>, waitpid() failed: %m", signal_to_string(sig));
202 else if (status.si_code != CLD_DUMPED)
203 log_emergency("Caught <%s>, core dump failed (child "PID_FMT", code=%s, status=%i/%s).",
204 signal_to_string(sig),
205 pid, sigchld_code_to_string(status.si_code),
206 status.si_status,
207 strna(status.si_code == CLD_EXITED
208 ? exit_status_to_string(status.si_status, EXIT_STATUS_MINIMAL)
209 : signal_to_string(status.si_status)));
210 else
211 log_emergency("Caught <%s>, dumped core as pid "PID_FMT".", signal_to_string(sig), pid);
212 }
213 }
214
215 if (arg_crash_chvt >= 0)
216 (void) chvt(arg_crash_chvt);
217
218 sa = (struct sigaction) {
219 .sa_handler = SIG_IGN,
220 .sa_flags = SA_NOCLDSTOP|SA_NOCLDWAIT|SA_RESTART,
221 };
222
223 /* Let the kernel reap children for us */
224 (void) sigaction(SIGCHLD, &sa, NULL);
225
226 if (arg_crash_shell) {
227 log_notice("Executing crash shell in 10s...");
228 (void) sleep(10);
229
230 pid = raw_clone(SIGCHLD);
231 if (pid < 0)
232 log_emergency_errno(errno, "Failed to fork off crash shell: %m");
233 else if (pid == 0) {
234 (void) setsid();
235 (void) make_console_stdio();
236 (void) execle("/bin/sh", "/bin/sh", NULL, environ);
237
238 log_emergency_errno(errno, "execle() failed: %m");
239 _exit(EXIT_FAILURE);
240 } else {
241 log_info("Spawned crash shell as PID "PID_FMT".", pid);
242 (void) wait_for_terminate(pid, NULL);
243 }
244 }
245
246 freeze_or_reboot();
247 }
248
249 static void install_crash_handler(void) {
250 static const struct sigaction sa = {
251 .sa_handler = crash,
252 .sa_flags = SA_NODEFER, /* So that we can raise the signal again from the signal handler */
253 };
254 int r;
255
256 /* We ignore the return value here, since, we don't mind if we
257 * cannot set up a crash handler */
258 r = sigaction_many(&sa, SIGNALS_CRASH_HANDLER, -1);
259 if (r < 0)
260 log_debug_errno(r, "I had trouble setting up the crash handler, ignoring: %m");
261 }
262
263 static int console_setup(void) {
264 _cleanup_close_ int tty_fd = -1;
265 int r;
266
267 tty_fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
268 if (tty_fd < 0)
269 return log_error_errno(tty_fd, "Failed to open /dev/console: %m");
270
271 /* We don't want to force text mode. plymouth may be showing
272 * pictures already from initrd. */
273 r = reset_terminal_fd(tty_fd, false);
274 if (r < 0)
275 return log_error_errno(r, "Failed to reset /dev/console: %m");
276
277 return 0;
278 }
279
280 static int parse_crash_chvt(const char *value) {
281 int b;
282
283 if (safe_atoi(value, &arg_crash_chvt) >= 0)
284 return 0;
285
286 b = parse_boolean(value);
287 if (b < 0)
288 return b;
289
290 if (b > 0)
291 arg_crash_chvt = 0; /* switch to where kmsg goes */
292 else
293 arg_crash_chvt = -1; /* turn off switching */
294
295 return 0;
296 }
297
298 static int parse_confirm_spawn(const char *value, char **console) {
299 char *s;
300 int r;
301
302 r = value ? parse_boolean(value) : 1;
303 if (r == 0) {
304 *console = NULL;
305 return 0;
306 }
307
308 if (r > 0) /* on with default tty */
309 s = strdup("/dev/console");
310 else if (is_path(value)) /* on with fully qualified path */
311 s = strdup(value);
312 else /* on with only a tty file name, not a fully qualified path */
313 s = strjoin("/dev/", value);
314 if (!s)
315 return -ENOMEM;
316 *console = s;
317 return 0;
318 }
319
320 static int set_machine_id(const char *m) {
321 sd_id128_t t;
322 assert(m);
323
324 if (sd_id128_from_string(m, &t) < 0)
325 return -EINVAL;
326
327 if (sd_id128_is_null(t))
328 return -EINVAL;
329
330 arg_machine_id = t;
331 return 0;
332 }
333
334 static int parse_proc_cmdline_item(const char *key, const char *value, void *data) {
335
336 int r;
337
338 assert(key);
339
340 if (STR_IN_SET(key, "systemd.unit", "rd.systemd.unit")) {
341
342 if (proc_cmdline_value_missing(key, value))
343 return 0;
344
345 if (!unit_name_is_valid(value, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE))
346 log_warning("Unit name specified on %s= is not valid, ignoring: %s", key, value);
347 else if (in_initrd() == !!startswith(key, "rd.")) {
348 if (free_and_strdup(&arg_default_unit, value) < 0)
349 return log_oom();
350 }
351
352 } else if (proc_cmdline_key_streq(key, "systemd.dump_core")) {
353
354 r = value ? parse_boolean(value) : true;
355 if (r < 0)
356 log_warning("Failed to parse dump core switch %s. Ignoring.", value);
357 else
358 arg_dump_core = r;
359
360 } else if (proc_cmdline_key_streq(key, "systemd.crash_chvt")) {
361
362 if (!value)
363 arg_crash_chvt = 0; /* turn on */
364 else if (parse_crash_chvt(value) < 0)
365 log_warning("Failed to parse crash chvt switch %s. Ignoring.", value);
366
367 } else if (proc_cmdline_key_streq(key, "systemd.crash_shell")) {
368
369 r = value ? parse_boolean(value) : true;
370 if (r < 0)
371 log_warning("Failed to parse crash shell switch %s. Ignoring.", value);
372 else
373 arg_crash_shell = r;
374
375 } else if (proc_cmdline_key_streq(key, "systemd.crash_reboot")) {
376
377 r = value ? parse_boolean(value) : true;
378 if (r < 0)
379 log_warning("Failed to parse crash reboot switch %s. Ignoring.", value);
380 else
381 arg_crash_reboot = r;
382
383 } else if (proc_cmdline_key_streq(key, "systemd.confirm_spawn")) {
384 char *s;
385
386 r = parse_confirm_spawn(value, &s);
387 if (r < 0)
388 log_warning_errno(r, "Failed to parse confirm_spawn switch %s. Ignoring.", value);
389 else {
390 free(arg_confirm_spawn);
391 arg_confirm_spawn = s;
392 }
393
394 } else if (proc_cmdline_key_streq(key, "systemd.show_status")) {
395
396 if (value) {
397 r = parse_show_status(value, &arg_show_status);
398 if (r < 0)
399 log_warning("Failed to parse show status switch %s. Ignoring.", value);
400 } else
401 arg_show_status = SHOW_STATUS_YES;
402
403 } else if (proc_cmdline_key_streq(key, "systemd.default_standard_output")) {
404
405 if (proc_cmdline_value_missing(key, value))
406 return 0;
407
408 r = exec_output_from_string(value);
409 if (r < 0)
410 log_warning("Failed to parse default standard output switch %s. Ignoring.", value);
411 else
412 arg_default_std_output = r;
413
414 } else if (proc_cmdline_key_streq(key, "systemd.default_standard_error")) {
415
416 if (proc_cmdline_value_missing(key, value))
417 return 0;
418
419 r = exec_output_from_string(value);
420 if (r < 0)
421 log_warning("Failed to parse default standard error switch %s. Ignoring.", value);
422 else
423 arg_default_std_error = r;
424
425 } else if (streq(key, "systemd.setenv")) {
426
427 if (proc_cmdline_value_missing(key, value))
428 return 0;
429
430 if (env_assignment_is_valid(value)) {
431 char **env;
432
433 env = strv_env_set(arg_default_environment, value);
434 if (!env)
435 return log_oom();
436
437 arg_default_environment = env;
438 } else
439 log_warning("Environment variable name '%s' is not valid. Ignoring.", value);
440
441 } else if (proc_cmdline_key_streq(key, "systemd.machine_id")) {
442
443 if (proc_cmdline_value_missing(key, value))
444 return 0;
445
446 r = set_machine_id(value);
447 if (r < 0)
448 log_warning("MachineID '%s' is not valid. Ignoring.", value);
449
450 } else if (proc_cmdline_key_streq(key, "systemd.default_timeout_start_sec")) {
451
452 if (proc_cmdline_value_missing(key, value))
453 return 0;
454
455 r = parse_sec(value, &arg_default_timeout_start_usec);
456 if (r < 0)
457 log_warning_errno(r, "Failed to parse default start timeout: %s, ignoring.", value);
458
459 if (arg_default_timeout_start_usec <= 0)
460 arg_default_timeout_start_usec = USEC_INFINITY;
461
462 } else if (streq(key, "quiet") && !value) {
463
464 if (arg_show_status == _SHOW_STATUS_UNSET)
465 arg_show_status = SHOW_STATUS_AUTO;
466
467 } else if (streq(key, "debug") && !value) {
468
469 /* Note that log_parse_environment() handles 'debug'
470 * too, and sets the log level to LOG_DEBUG. */
471
472 if (detect_container() > 0)
473 log_set_target(LOG_TARGET_CONSOLE);
474
475 } else if (!value) {
476 const char *target;
477
478 /* SysV compatibility */
479 target = runlevel_to_target(key);
480 if (target)
481 return free_and_strdup(&arg_default_unit, target);
482 }
483
484 return 0;
485 }
486
487 #define DEFINE_SETTER(name, func, descr) \
488 static int name(const char *unit, \
489 const char *filename, \
490 unsigned line, \
491 const char *section, \
492 unsigned section_line, \
493 const char *lvalue, \
494 int ltype, \
495 const char *rvalue, \
496 void *data, \
497 void *userdata) { \
498 \
499 int r; \
500 \
501 assert(filename); \
502 assert(lvalue); \
503 assert(rvalue); \
504 \
505 r = func(rvalue); \
506 if (r < 0) \
507 log_syntax(unit, LOG_ERR, filename, line, r, \
508 "Invalid " descr "'%s': %m", \
509 rvalue); \
510 \
511 return 0; \
512 }
513
514 DEFINE_SETTER(config_parse_level2, log_set_max_level_from_string, "log level")
515 DEFINE_SETTER(config_parse_target, log_set_target_from_string, "target")
516 DEFINE_SETTER(config_parse_color, log_show_color_from_string, "color" )
517 DEFINE_SETTER(config_parse_location, log_show_location_from_string, "location")
518
519 static int config_parse_cpu_affinity2(
520 const char *unit,
521 const char *filename,
522 unsigned line,
523 const char *section,
524 unsigned section_line,
525 const char *lvalue,
526 int ltype,
527 const char *rvalue,
528 void *data,
529 void *userdata) {
530
531 _cleanup_cpu_free_ cpu_set_t *c = NULL;
532 int ncpus;
533
534 ncpus = parse_cpu_set_and_warn(rvalue, &c, unit, filename, line, lvalue);
535 if (ncpus < 0)
536 return ncpus;
537
538 if (sched_setaffinity(0, CPU_ALLOC_SIZE(ncpus), c) < 0)
539 log_warning_errno(errno, "Failed to set CPU affinity: %m");
540
541 return 0;
542 }
543
544 static int config_parse_show_status(
545 const char* unit,
546 const char *filename,
547 unsigned line,
548 const char *section,
549 unsigned section_line,
550 const char *lvalue,
551 int ltype,
552 const char *rvalue,
553 void *data,
554 void *userdata) {
555
556 int k;
557 ShowStatus *b = data;
558
559 assert(filename);
560 assert(lvalue);
561 assert(rvalue);
562 assert(data);
563
564 k = parse_show_status(rvalue, b);
565 if (k < 0) {
566 log_syntax(unit, LOG_ERR, filename, line, k, "Failed to parse show status setting, ignoring: %s", rvalue);
567 return 0;
568 }
569
570 return 0;
571 }
572
573 static int config_parse_crash_chvt(
574 const char* unit,
575 const char *filename,
576 unsigned line,
577 const char *section,
578 unsigned section_line,
579 const char *lvalue,
580 int ltype,
581 const char *rvalue,
582 void *data,
583 void *userdata) {
584
585 int r;
586
587 assert(filename);
588 assert(lvalue);
589 assert(rvalue);
590
591 r = parse_crash_chvt(rvalue);
592 if (r < 0) {
593 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse CrashChangeVT= setting, ignoring: %s", rvalue);
594 return 0;
595 }
596
597 return 0;
598 }
599
600 static int config_parse_join_controllers(const char *unit,
601 const char *filename,
602 unsigned line,
603 const char *section,
604 unsigned section_line,
605 const char *lvalue,
606 int ltype,
607 const char *rvalue,
608 void *data,
609 void *userdata) {
610
611 const char *whole_rvalue = rvalue;
612 unsigned n = 0;
613
614 assert(filename);
615 assert(lvalue);
616 assert(rvalue);
617
618 arg_join_controllers = strv_free_free(arg_join_controllers);
619
620 for (;;) {
621 _cleanup_free_ char *word = NULL;
622 char **l;
623 int r;
624
625 r = extract_first_word(&rvalue, &word, NULL, EXTRACT_QUOTES);
626 if (r < 0) {
627 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid value for %s: %s", lvalue, whole_rvalue);
628 return r;
629 }
630 if (r == 0)
631 break;
632
633 l = strv_split(word, ",");
634 if (!l)
635 return log_oom();
636 strv_uniq(l);
637
638 if (strv_length(l) <= 1) {
639 strv_free(l);
640 continue;
641 }
642
643 if (!arg_join_controllers) {
644 arg_join_controllers = new(char**, 2);
645 if (!arg_join_controllers) {
646 strv_free(l);
647 return log_oom();
648 }
649
650 arg_join_controllers[0] = l;
651 arg_join_controllers[1] = NULL;
652
653 n = 1;
654 } else {
655 char ***a;
656 char ***t;
657
658 t = new0(char**, n+2);
659 if (!t) {
660 strv_free(l);
661 return log_oom();
662 }
663
664 n = 0;
665
666 for (a = arg_join_controllers; *a; a++) {
667
668 if (strv_overlap(*a, l)) {
669 if (strv_extend_strv(&l, *a, false) < 0) {
670 strv_free(l);
671 strv_free_free(t);
672 return log_oom();
673 }
674
675 } else {
676 char **c;
677
678 c = strv_copy(*a);
679 if (!c) {
680 strv_free(l);
681 strv_free_free(t);
682 return log_oom();
683 }
684
685 t[n++] = c;
686 }
687 }
688
689 t[n++] = strv_uniq(l);
690
691 strv_free_free(arg_join_controllers);
692 arg_join_controllers = t;
693 }
694 }
695 if (!isempty(rvalue))
696 log_syntax(unit, LOG_ERR, filename, line, 0, "Trailing garbage, ignoring.");
697
698 return 0;
699 }
700
701 static int parse_config_file(void) {
702
703 const ConfigTableItem items[] = {
704 { "Manager", "LogLevel", config_parse_level2, 0, NULL },
705 { "Manager", "LogTarget", config_parse_target, 0, NULL },
706 { "Manager", "LogColor", config_parse_color, 0, NULL },
707 { "Manager", "LogLocation", config_parse_location, 0, NULL },
708 { "Manager", "DumpCore", config_parse_bool, 0, &arg_dump_core },
709 { "Manager", "CrashChVT", /* legacy */ config_parse_crash_chvt, 0, NULL },
710 { "Manager", "CrashChangeVT", config_parse_crash_chvt, 0, NULL },
711 { "Manager", "CrashShell", config_parse_bool, 0, &arg_crash_shell },
712 { "Manager", "CrashReboot", config_parse_bool, 0, &arg_crash_reboot },
713 { "Manager", "ShowStatus", config_parse_show_status, 0, &arg_show_status },
714 { "Manager", "CPUAffinity", config_parse_cpu_affinity2, 0, NULL },
715 { "Manager", "JoinControllers", config_parse_join_controllers, 0, &arg_join_controllers },
716 { "Manager", "RuntimeWatchdogSec", config_parse_sec, 0, &arg_runtime_watchdog },
717 { "Manager", "ShutdownWatchdogSec", config_parse_sec, 0, &arg_shutdown_watchdog },
718 { "Manager", "CapabilityBoundingSet", config_parse_capability_set, 0, &arg_capability_bounding_set },
719 #ifdef HAVE_SECCOMP
720 { "Manager", "SystemCallArchitectures", config_parse_syscall_archs, 0, &arg_syscall_archs },
721 #endif
722 { "Manager", "TimerSlackNSec", config_parse_nsec, 0, &arg_timer_slack_nsec },
723 { "Manager", "DefaultTimerAccuracySec", config_parse_sec, 0, &arg_default_timer_accuracy_usec },
724 { "Manager", "DefaultStandardOutput", config_parse_output, 0, &arg_default_std_output },
725 { "Manager", "DefaultStandardError", config_parse_output, 0, &arg_default_std_error },
726 { "Manager", "DefaultTimeoutStartSec", config_parse_sec, 0, &arg_default_timeout_start_usec },
727 { "Manager", "DefaultTimeoutStopSec", config_parse_sec, 0, &arg_default_timeout_stop_usec },
728 { "Manager", "DefaultRestartSec", config_parse_sec, 0, &arg_default_restart_usec },
729 { "Manager", "DefaultStartLimitInterval", config_parse_sec, 0, &arg_default_start_limit_interval }, /* obsolete alias */
730 { "Manager", "DefaultStartLimitIntervalSec",config_parse_sec, 0, &arg_default_start_limit_interval },
731 { "Manager", "DefaultStartLimitBurst", config_parse_unsigned, 0, &arg_default_start_limit_burst },
732 { "Manager", "DefaultEnvironment", config_parse_environ, 0, &arg_default_environment },
733 { "Manager", "DefaultLimitCPU", config_parse_limit, RLIMIT_CPU, arg_default_rlimit },
734 { "Manager", "DefaultLimitFSIZE", config_parse_limit, RLIMIT_FSIZE, arg_default_rlimit },
735 { "Manager", "DefaultLimitDATA", config_parse_limit, RLIMIT_DATA, arg_default_rlimit },
736 { "Manager", "DefaultLimitSTACK", config_parse_limit, RLIMIT_STACK, arg_default_rlimit },
737 { "Manager", "DefaultLimitCORE", config_parse_limit, RLIMIT_CORE, arg_default_rlimit },
738 { "Manager", "DefaultLimitRSS", config_parse_limit, RLIMIT_RSS, arg_default_rlimit },
739 { "Manager", "DefaultLimitNOFILE", config_parse_limit, RLIMIT_NOFILE, arg_default_rlimit },
740 { "Manager", "DefaultLimitAS", config_parse_limit, RLIMIT_AS, arg_default_rlimit },
741 { "Manager", "DefaultLimitNPROC", config_parse_limit, RLIMIT_NPROC, arg_default_rlimit },
742 { "Manager", "DefaultLimitMEMLOCK", config_parse_limit, RLIMIT_MEMLOCK, arg_default_rlimit },
743 { "Manager", "DefaultLimitLOCKS", config_parse_limit, RLIMIT_LOCKS, arg_default_rlimit },
744 { "Manager", "DefaultLimitSIGPENDING", config_parse_limit, RLIMIT_SIGPENDING, arg_default_rlimit },
745 { "Manager", "DefaultLimitMSGQUEUE", config_parse_limit, RLIMIT_MSGQUEUE, arg_default_rlimit },
746 { "Manager", "DefaultLimitNICE", config_parse_limit, RLIMIT_NICE, arg_default_rlimit },
747 { "Manager", "DefaultLimitRTPRIO", config_parse_limit, RLIMIT_RTPRIO, arg_default_rlimit },
748 { "Manager", "DefaultLimitRTTIME", config_parse_limit, RLIMIT_RTTIME, arg_default_rlimit },
749 { "Manager", "DefaultCPUAccounting", config_parse_bool, 0, &arg_default_cpu_accounting },
750 { "Manager", "DefaultIOAccounting", config_parse_bool, 0, &arg_default_io_accounting },
751 { "Manager", "DefaultBlockIOAccounting", config_parse_bool, 0, &arg_default_blockio_accounting },
752 { "Manager", "DefaultMemoryAccounting", config_parse_bool, 0, &arg_default_memory_accounting },
753 { "Manager", "DefaultTasksAccounting", config_parse_bool, 0, &arg_default_tasks_accounting },
754 { "Manager", "DefaultTasksMax", config_parse_tasks_max, 0, &arg_default_tasks_max },
755 { "Manager", "CtrlAltDelBurstAction", config_parse_emergency_action, 0, &arg_cad_burst_action },
756 {}
757 };
758
759 const char *fn, *conf_dirs_nulstr;
760
761 fn = arg_system ?
762 PKGSYSCONFDIR "/system.conf" :
763 PKGSYSCONFDIR "/user.conf";
764
765 conf_dirs_nulstr = arg_system ?
766 CONF_PATHS_NULSTR("systemd/system.conf.d") :
767 CONF_PATHS_NULSTR("systemd/user.conf.d");
768
769 config_parse_many_nulstr(fn, conf_dirs_nulstr, "Manager\0", config_item_table_lookup, items, false, NULL);
770
771 /* Traditionally "0" was used to turn off the default unit timeouts. Fix this up so that we used USEC_INFINITY
772 * like everywhere else. */
773 if (arg_default_timeout_start_usec <= 0)
774 arg_default_timeout_start_usec = USEC_INFINITY;
775 if (arg_default_timeout_stop_usec <= 0)
776 arg_default_timeout_stop_usec = USEC_INFINITY;
777
778 return 0;
779 }
780
781 static void manager_set_defaults(Manager *m) {
782
783 assert(m);
784
785 m->default_timer_accuracy_usec = arg_default_timer_accuracy_usec;
786 m->default_std_output = arg_default_std_output;
787 m->default_std_error = arg_default_std_error;
788 m->default_timeout_start_usec = arg_default_timeout_start_usec;
789 m->default_timeout_stop_usec = arg_default_timeout_stop_usec;
790 m->default_restart_usec = arg_default_restart_usec;
791 m->default_start_limit_interval = arg_default_start_limit_interval;
792 m->default_start_limit_burst = arg_default_start_limit_burst;
793 m->default_cpu_accounting = arg_default_cpu_accounting;
794 m->default_io_accounting = arg_default_io_accounting;
795 m->default_blockio_accounting = arg_default_blockio_accounting;
796 m->default_memory_accounting = arg_default_memory_accounting;
797 m->default_tasks_accounting = arg_default_tasks_accounting;
798 m->default_tasks_max = arg_default_tasks_max;
799
800 manager_set_default_rlimits(m, arg_default_rlimit);
801 manager_environment_add(m, NULL, arg_default_environment);
802 }
803
804 static int parse_argv(int argc, char *argv[]) {
805
806 enum {
807 ARG_LOG_LEVEL = 0x100,
808 ARG_LOG_TARGET,
809 ARG_LOG_COLOR,
810 ARG_LOG_LOCATION,
811 ARG_UNIT,
812 ARG_SYSTEM,
813 ARG_USER,
814 ARG_TEST,
815 ARG_NO_PAGER,
816 ARG_VERSION,
817 ARG_DUMP_CONFIGURATION_ITEMS,
818 ARG_DUMP_CORE,
819 ARG_CRASH_CHVT,
820 ARG_CRASH_SHELL,
821 ARG_CRASH_REBOOT,
822 ARG_CONFIRM_SPAWN,
823 ARG_SHOW_STATUS,
824 ARG_DESERIALIZE,
825 ARG_SWITCHED_ROOT,
826 ARG_DEFAULT_STD_OUTPUT,
827 ARG_DEFAULT_STD_ERROR,
828 ARG_MACHINE_ID
829 };
830
831 static const struct option options[] = {
832 { "log-level", required_argument, NULL, ARG_LOG_LEVEL },
833 { "log-target", required_argument, NULL, ARG_LOG_TARGET },
834 { "log-color", optional_argument, NULL, ARG_LOG_COLOR },
835 { "log-location", optional_argument, NULL, ARG_LOG_LOCATION },
836 { "unit", required_argument, NULL, ARG_UNIT },
837 { "system", no_argument, NULL, ARG_SYSTEM },
838 { "user", no_argument, NULL, ARG_USER },
839 { "test", no_argument, NULL, ARG_TEST },
840 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
841 { "help", no_argument, NULL, 'h' },
842 { "version", no_argument, NULL, ARG_VERSION },
843 { "dump-configuration-items", no_argument, NULL, ARG_DUMP_CONFIGURATION_ITEMS },
844 { "dump-core", optional_argument, NULL, ARG_DUMP_CORE },
845 { "crash-chvt", required_argument, NULL, ARG_CRASH_CHVT },
846 { "crash-shell", optional_argument, NULL, ARG_CRASH_SHELL },
847 { "crash-reboot", optional_argument, NULL, ARG_CRASH_REBOOT },
848 { "confirm-spawn", optional_argument, NULL, ARG_CONFIRM_SPAWN },
849 { "show-status", optional_argument, NULL, ARG_SHOW_STATUS },
850 { "deserialize", required_argument, NULL, ARG_DESERIALIZE },
851 { "switched-root", no_argument, NULL, ARG_SWITCHED_ROOT },
852 { "default-standard-output", required_argument, NULL, ARG_DEFAULT_STD_OUTPUT, },
853 { "default-standard-error", required_argument, NULL, ARG_DEFAULT_STD_ERROR, },
854 { "machine-id", required_argument, NULL, ARG_MACHINE_ID },
855 {}
856 };
857
858 int c, r;
859
860 assert(argc >= 1);
861 assert(argv);
862
863 if (getpid() == 1)
864 opterr = 0;
865
866 while ((c = getopt_long(argc, argv, "hDbsz:", options, NULL)) >= 0)
867
868 switch (c) {
869
870 case ARG_LOG_LEVEL:
871 r = log_set_max_level_from_string(optarg);
872 if (r < 0) {
873 log_error("Failed to parse log level %s.", optarg);
874 return r;
875 }
876
877 break;
878
879 case ARG_LOG_TARGET:
880 r = log_set_target_from_string(optarg);
881 if (r < 0) {
882 log_error("Failed to parse log target %s.", optarg);
883 return r;
884 }
885
886 break;
887
888 case ARG_LOG_COLOR:
889
890 if (optarg) {
891 r = log_show_color_from_string(optarg);
892 if (r < 0) {
893 log_error("Failed to parse log color setting %s.", optarg);
894 return r;
895 }
896 } else
897 log_show_color(true);
898
899 break;
900
901 case ARG_LOG_LOCATION:
902 if (optarg) {
903 r = log_show_location_from_string(optarg);
904 if (r < 0) {
905 log_error("Failed to parse log location setting %s.", optarg);
906 return r;
907 }
908 } else
909 log_show_location(true);
910
911 break;
912
913 case ARG_DEFAULT_STD_OUTPUT:
914 r = exec_output_from_string(optarg);
915 if (r < 0) {
916 log_error("Failed to parse default standard output setting %s.", optarg);
917 return r;
918 } else
919 arg_default_std_output = r;
920 break;
921
922 case ARG_DEFAULT_STD_ERROR:
923 r = exec_output_from_string(optarg);
924 if (r < 0) {
925 log_error("Failed to parse default standard error output setting %s.", optarg);
926 return r;
927 } else
928 arg_default_std_error = r;
929 break;
930
931 case ARG_UNIT:
932 r = free_and_strdup(&arg_default_unit, optarg);
933 if (r < 0)
934 return log_error_errno(r, "Failed to set default unit %s: %m", optarg);
935
936 break;
937
938 case ARG_SYSTEM:
939 arg_system = true;
940 break;
941
942 case ARG_USER:
943 arg_system = false;
944 break;
945
946 case ARG_TEST:
947 arg_action = ACTION_TEST;
948 break;
949
950 case ARG_NO_PAGER:
951 arg_no_pager = true;
952 break;
953
954 case ARG_VERSION:
955 arg_action = ACTION_VERSION;
956 break;
957
958 case ARG_DUMP_CONFIGURATION_ITEMS:
959 arg_action = ACTION_DUMP_CONFIGURATION_ITEMS;
960 break;
961
962 case ARG_DUMP_CORE:
963 if (!optarg)
964 arg_dump_core = true;
965 else {
966 r = parse_boolean(optarg);
967 if (r < 0)
968 return log_error_errno(r, "Failed to parse dump core boolean: %s", optarg);
969 arg_dump_core = r;
970 }
971 break;
972
973 case ARG_CRASH_CHVT:
974 r = parse_crash_chvt(optarg);
975 if (r < 0)
976 return log_error_errno(r, "Failed to parse crash virtual terminal index: %s", optarg);
977 break;
978
979 case ARG_CRASH_SHELL:
980 if (!optarg)
981 arg_crash_shell = true;
982 else {
983 r = parse_boolean(optarg);
984 if (r < 0)
985 return log_error_errno(r, "Failed to parse crash shell boolean: %s", optarg);
986 arg_crash_shell = r;
987 }
988 break;
989
990 case ARG_CRASH_REBOOT:
991 if (!optarg)
992 arg_crash_reboot = true;
993 else {
994 r = parse_boolean(optarg);
995 if (r < 0)
996 return log_error_errno(r, "Failed to parse crash shell boolean: %s", optarg);
997 arg_crash_reboot = r;
998 }
999 break;
1000
1001 case ARG_CONFIRM_SPAWN:
1002 arg_confirm_spawn = mfree(arg_confirm_spawn);
1003
1004 r = parse_confirm_spawn(optarg, &arg_confirm_spawn);
1005 if (r < 0)
1006 return log_error_errno(r, "Failed to parse confirm spawn option: %m");
1007 break;
1008
1009 case ARG_SHOW_STATUS:
1010 if (optarg) {
1011 r = parse_show_status(optarg, &arg_show_status);
1012 if (r < 0) {
1013 log_error("Failed to parse show status boolean %s.", optarg);
1014 return r;
1015 }
1016 } else
1017 arg_show_status = SHOW_STATUS_YES;
1018 break;
1019
1020 case ARG_DESERIALIZE: {
1021 int fd;
1022 FILE *f;
1023
1024 r = safe_atoi(optarg, &fd);
1025 if (r < 0 || fd < 0) {
1026 log_error("Failed to parse deserialize option %s.", optarg);
1027 return -EINVAL;
1028 }
1029
1030 (void) fd_cloexec(fd, true);
1031
1032 f = fdopen(fd, "r");
1033 if (!f)
1034 return log_error_errno(errno, "Failed to open serialization fd: %m");
1035
1036 safe_fclose(arg_serialization);
1037 arg_serialization = f;
1038
1039 break;
1040 }
1041
1042 case ARG_SWITCHED_ROOT:
1043 arg_switched_root = true;
1044 break;
1045
1046 case ARG_MACHINE_ID:
1047 r = set_machine_id(optarg);
1048 if (r < 0)
1049 return log_error_errno(r, "MachineID '%s' is not valid.", optarg);
1050 break;
1051
1052 case 'h':
1053 arg_action = ACTION_HELP;
1054 break;
1055
1056 case 'D':
1057 log_set_max_level(LOG_DEBUG);
1058 break;
1059
1060 case 'b':
1061 case 's':
1062 case 'z':
1063 /* Just to eat away the sysvinit kernel
1064 * cmdline args without getopt() error
1065 * messages that we'll parse in
1066 * parse_proc_cmdline_word() or ignore. */
1067
1068 case '?':
1069 if (getpid() != 1)
1070 return -EINVAL;
1071 else
1072 return 0;
1073
1074 default:
1075 assert_not_reached("Unhandled option code.");
1076 }
1077
1078 if (optind < argc && getpid() != 1) {
1079 /* Hmm, when we aren't run as init system
1080 * let's complain about excess arguments */
1081
1082 log_error("Excess arguments.");
1083 return -EINVAL;
1084 }
1085
1086 return 0;
1087 }
1088
1089 static int help(void) {
1090
1091 printf("%s [OPTIONS...]\n\n"
1092 "Starts up and maintains the system or user services.\n\n"
1093 " -h --help Show this help\n"
1094 " --test Determine startup sequence, dump it and exit\n"
1095 " --no-pager Do not pipe output into a pager\n"
1096 " --dump-configuration-items Dump understood unit configuration items\n"
1097 " --unit=UNIT Set default unit\n"
1098 " --system Run a system instance, even if PID != 1\n"
1099 " --user Run a user instance\n"
1100 " --dump-core[=BOOL] Dump core on crash\n"
1101 " --crash-vt=NR Change to specified VT on crash\n"
1102 " --crash-reboot[=BOOL] Reboot on crash\n"
1103 " --crash-shell[=BOOL] Run shell on crash\n"
1104 " --confirm-spawn[=BOOL] Ask for confirmation when spawning processes\n"
1105 " --show-status[=BOOL] Show status updates on the console during bootup\n"
1106 " --log-target=TARGET Set log target (console, journal, kmsg, journal-or-kmsg, null)\n"
1107 " --log-level=LEVEL Set log level (debug, info, notice, warning, err, crit, alert, emerg)\n"
1108 " --log-color[=BOOL] Highlight important log messages\n"
1109 " --log-location[=BOOL] Include code location in log messages\n"
1110 " --default-standard-output= Set default standard output for services\n"
1111 " --default-standard-error= Set default standard error output for services\n",
1112 program_invocation_short_name);
1113
1114 return 0;
1115 }
1116
1117 static int prepare_reexecute(Manager *m, FILE **_f, FDSet **_fds, bool switching_root) {
1118 _cleanup_fdset_free_ FDSet *fds = NULL;
1119 _cleanup_fclose_ FILE *f = NULL;
1120 int r;
1121
1122 assert(m);
1123 assert(_f);
1124 assert(_fds);
1125
1126 r = manager_open_serialization(m, &f);
1127 if (r < 0)
1128 return log_error_errno(r, "Failed to create serialization file: %m");
1129
1130 /* Make sure nothing is really destructed when we shut down */
1131 m->n_reloading++;
1132 bus_manager_send_reloading(m, true);
1133
1134 fds = fdset_new();
1135 if (!fds)
1136 return log_oom();
1137
1138 r = manager_serialize(m, f, fds, switching_root);
1139 if (r < 0)
1140 return log_error_errno(r, "Failed to serialize state: %m");
1141
1142 if (fseeko(f, 0, SEEK_SET) == (off_t) -1)
1143 return log_error_errno(errno, "Failed to rewind serialization fd: %m");
1144
1145 r = fd_cloexec(fileno(f), false);
1146 if (r < 0)
1147 return log_error_errno(r, "Failed to disable O_CLOEXEC for serialization: %m");
1148
1149 r = fdset_cloexec(fds, false);
1150 if (r < 0)
1151 return log_error_errno(r, "Failed to disable O_CLOEXEC for serialization fds: %m");
1152
1153 *_f = f;
1154 *_fds = fds;
1155
1156 f = NULL;
1157 fds = NULL;
1158
1159 return 0;
1160 }
1161
1162 static int bump_rlimit_nofile(struct rlimit *saved_rlimit) {
1163 struct rlimit nl;
1164 int r;
1165 int min_max;
1166 _cleanup_free_ char *nr_open = NULL;
1167
1168 assert(saved_rlimit);
1169
1170 /* Save the original RLIMIT_NOFILE so that we can reset it
1171 * later when transitioning from the initrd to the main
1172 * systemd or suchlike. */
1173 if (getrlimit(RLIMIT_NOFILE, saved_rlimit) < 0)
1174 return log_warning_errno(errno, "Reading RLIMIT_NOFILE failed, ignoring: %m");
1175
1176 /* Make sure forked processes get the default kernel setting */
1177 if (!arg_default_rlimit[RLIMIT_NOFILE]) {
1178 struct rlimit *rl;
1179
1180 rl = newdup(struct rlimit, saved_rlimit, 1);
1181 if (!rl)
1182 return log_oom();
1183
1184 arg_default_rlimit[RLIMIT_NOFILE] = rl;
1185 }
1186
1187 /* Get current RLIMIT_NOFILE maximum compiled into the kernel. */
1188 r = read_one_line_file("/proc/sys/fs/nr_open", &nr_open);
1189 if (r == 0)
1190 r = safe_atoi(nr_open, &min_max);
1191 /* If we fail, fallback to the hard-coded kernel limit of 1024 * 1024. */
1192 if (r < 0)
1193 min_max = 1024 * 1024;
1194
1195 /* Bump up the resource limit for ourselves substantially */
1196 nl.rlim_cur = nl.rlim_max = min_max;
1197 r = setrlimit_closest(RLIMIT_NOFILE, &nl);
1198 if (r < 0)
1199 return log_warning_errno(r, "Setting RLIMIT_NOFILE failed, ignoring: %m");
1200
1201 return 0;
1202 }
1203
1204 static void test_usr(void) {
1205
1206 /* Check that /usr is not a separate fs */
1207
1208 if (dir_is_empty("/usr") <= 0)
1209 return;
1210
1211 log_warning("/usr appears to be on its own filesystem and is not already mounted. This is not a supported setup. "
1212 "Some things will probably break (sometimes even silently) in mysterious ways. "
1213 "Consult http://freedesktop.org/wiki/Software/systemd/separate-usr-is-broken for more information.");
1214 }
1215
1216 static int initialize_join_controllers(void) {
1217 /* By default, mount "cpu" + "cpuacct" together, and "net_cls"
1218 * + "net_prio". We'd like to add "cpuset" to the mix, but
1219 * "cpuset" doesn't really work for groups with no initialized
1220 * attributes. */
1221
1222 arg_join_controllers = new(char**, 3);
1223 if (!arg_join_controllers)
1224 return -ENOMEM;
1225
1226 arg_join_controllers[0] = strv_new("cpu", "cpuacct", NULL);
1227 if (!arg_join_controllers[0])
1228 goto oom;
1229
1230 arg_join_controllers[1] = strv_new("net_cls", "net_prio", NULL);
1231 if (!arg_join_controllers[1])
1232 goto oom;
1233
1234 arg_join_controllers[2] = NULL;
1235 return 0;
1236
1237 oom:
1238 arg_join_controllers = strv_free_free(arg_join_controllers);
1239 return -ENOMEM;
1240 }
1241
1242 static int enforce_syscall_archs(Set *archs) {
1243 #ifdef HAVE_SECCOMP
1244 int r;
1245
1246 if (!is_seccomp_available())
1247 return 0;
1248
1249 r = seccomp_restrict_archs(arg_syscall_archs);
1250 if (r < 0)
1251 return log_error_errno(r, "Failed to enforce system call architecture restrication: %m");
1252 #endif
1253 return 0;
1254 }
1255
1256 static int status_welcome(void) {
1257 _cleanup_free_ char *pretty_name = NULL, *ansi_color = NULL;
1258 int r;
1259
1260 r = parse_env_file("/etc/os-release", NEWLINE,
1261 "PRETTY_NAME", &pretty_name,
1262 "ANSI_COLOR", &ansi_color,
1263 NULL);
1264 if (r == -ENOENT)
1265 r = parse_env_file("/usr/lib/os-release", NEWLINE,
1266 "PRETTY_NAME", &pretty_name,
1267 "ANSI_COLOR", &ansi_color,
1268 NULL);
1269
1270 if (r < 0 && r != -ENOENT)
1271 log_warning_errno(r, "Failed to read os-release file: %m");
1272
1273 if (log_get_show_color())
1274 return status_printf(NULL, false, false,
1275 "\nWelcome to \x1B[%sm%s\x1B[0m!\n",
1276 isempty(ansi_color) ? "1" : ansi_color,
1277 isempty(pretty_name) ? "Linux" : pretty_name);
1278 else
1279 return status_printf(NULL, false, false,
1280 "\nWelcome to %s!\n",
1281 isempty(pretty_name) ? "Linux" : pretty_name);
1282 }
1283
1284 static int write_container_id(void) {
1285 const char *c;
1286 int r;
1287
1288 c = getenv("container");
1289 if (isempty(c))
1290 return 0;
1291
1292 RUN_WITH_UMASK(0022)
1293 r = write_string_file("/run/systemd/container", c, WRITE_STRING_FILE_CREATE);
1294 if (r < 0)
1295 return log_warning_errno(r, "Failed to write /run/systemd/container, ignoring: %m");
1296
1297 return 1;
1298 }
1299
1300 static int bump_unix_max_dgram_qlen(void) {
1301 _cleanup_free_ char *qlen = NULL;
1302 unsigned long v;
1303 int r;
1304
1305 /* Let's bump the net.unix.max_dgram_qlen sysctl. The kernel
1306 * default of 16 is simply too low. We set the value really
1307 * really early during boot, so that it is actually applied to
1308 * all our sockets, including the $NOTIFY_SOCKET one. */
1309
1310 r = read_one_line_file("/proc/sys/net/unix/max_dgram_qlen", &qlen);
1311 if (r < 0)
1312 return log_warning_errno(r, "Failed to read AF_UNIX datagram queue length, ignoring: %m");
1313
1314 r = safe_atolu(qlen, &v);
1315 if (r < 0)
1316 return log_warning_errno(r, "Failed to parse AF_UNIX datagram queue length, ignoring: %m");
1317
1318 if (v >= DEFAULT_UNIX_MAX_DGRAM_QLEN)
1319 return 0;
1320
1321 qlen = mfree(qlen);
1322 if (asprintf(&qlen, "%lu\n", DEFAULT_UNIX_MAX_DGRAM_QLEN) < 0)
1323 return log_oom();
1324
1325 r = write_string_file("/proc/sys/net/unix/max_dgram_qlen", qlen, 0);
1326 if (r < 0)
1327 return log_full_errno(IN_SET(r, -EROFS, -EPERM, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
1328 "Failed to bump AF_UNIX datagram queue length, ignoring: %m");
1329
1330 return 1;
1331 }
1332
1333 static int fixup_environment(void) {
1334 _cleanup_free_ char *term = NULL;
1335 int r;
1336
1337 /* We expect the environment to be set correctly
1338 * if run inside a container. */
1339 if (detect_container() > 0)
1340 return 0;
1341
1342 /* When started as PID1, the kernel uses /dev/console
1343 * for our stdios and uses TERM=linux whatever the
1344 * backend device used by the console. We try to make
1345 * a better guess here since some consoles might not
1346 * have support for color mode for example.
1347 *
1348 * However if TERM was configured through the kernel
1349 * command line then leave it alone. */
1350
1351 r = proc_cmdline_get_key("TERM", 0, &term);
1352 if (r < 0)
1353 return r;
1354 if (r == 0) {
1355 term = strdup(default_term_for_tty("/dev/console"));
1356 if (!term)
1357 return -ENOMEM;
1358 }
1359
1360 if (setenv("TERM", term, 1) < 0)
1361 return -errno;
1362
1363 return 0;
1364 }
1365
1366 int main(int argc, char *argv[]) {
1367 Manager *m = NULL;
1368 int r, retval = EXIT_FAILURE;
1369 usec_t before_startup, after_startup;
1370 char timespan[FORMAT_TIMESPAN_MAX];
1371 FDSet *fds = NULL;
1372 bool reexecute = false;
1373 const char *shutdown_verb = NULL;
1374 dual_timestamp initrd_timestamp = DUAL_TIMESTAMP_NULL;
1375 dual_timestamp userspace_timestamp = DUAL_TIMESTAMP_NULL;
1376 dual_timestamp kernel_timestamp = DUAL_TIMESTAMP_NULL;
1377 dual_timestamp security_start_timestamp = DUAL_TIMESTAMP_NULL;
1378 dual_timestamp security_finish_timestamp = DUAL_TIMESTAMP_NULL;
1379 static char systemd[] = "systemd";
1380 bool skip_setup = false;
1381 unsigned j;
1382 bool loaded_policy = false;
1383 bool arm_reboot_watchdog = false;
1384 bool queue_default_job = false;
1385 bool empty_etc = false;
1386 char *switch_root_dir = NULL, *switch_root_init = NULL;
1387 struct rlimit saved_rlimit_nofile = RLIMIT_MAKE_CONST(0);
1388 const char *error_message = NULL;
1389
1390 #ifdef HAVE_SYSV_COMPAT
1391 if (getpid() != 1 && strstr(program_invocation_short_name, "init")) {
1392 /* This is compatibility support for SysV, where
1393 * calling init as a user is identical to telinit. */
1394
1395 execv(SYSTEMCTL_BINARY_PATH, argv);
1396 log_error_errno(errno, "Failed to exec " SYSTEMCTL_BINARY_PATH ": %m");
1397 return 1;
1398 }
1399 #endif
1400
1401 dual_timestamp_from_monotonic(&kernel_timestamp, 0);
1402 dual_timestamp_get(&userspace_timestamp);
1403
1404 /* Determine if this is a reexecution or normal bootup. We do
1405 * the full command line parsing much later, so let's just
1406 * have a quick peek here. */
1407 if (strv_find(argv+1, "--deserialize"))
1408 skip_setup = true;
1409
1410 /* If we have switched root, do all the special setup
1411 * things */
1412 if (strv_find(argv+1, "--switched-root"))
1413 skip_setup = false;
1414
1415 /* If we get started via the /sbin/init symlink then we are
1416 called 'init'. After a subsequent reexecution we are then
1417 called 'systemd'. That is confusing, hence let's call us
1418 systemd right-away. */
1419 program_invocation_short_name = systemd;
1420 (void) prctl(PR_SET_NAME, systemd);
1421
1422 saved_argv = argv;
1423 saved_argc = argc;
1424
1425 log_set_upgrade_syslog_to_journal(true);
1426
1427 if (getpid() == 1) {
1428 /* Disable the umask logic */
1429 umask(0);
1430
1431 /* Always reopen /dev/console when running as PID 1 or one of its pre-execve() children. This is
1432 * important so that we never end up logging to any foreign stderr, for example if we have to log in a
1433 * child process right before execve()'ing the actual binary, at a point in time where socket
1434 * activation stderr/stdout area already set up. */
1435 log_set_always_reopen_console(true);
1436 }
1437
1438 if (getpid() == 1 && detect_container() <= 0) {
1439
1440 /* Running outside of a container as PID 1 */
1441 arg_system = true;
1442 log_set_target(LOG_TARGET_KMSG);
1443 log_open();
1444
1445 if (in_initrd())
1446 initrd_timestamp = userspace_timestamp;
1447
1448 if (!skip_setup) {
1449 r = mount_setup_early();
1450 if (r < 0) {
1451 error_message = "Failed to mount early API filesystems";
1452 goto finish;
1453 }
1454
1455 dual_timestamp_get(&security_start_timestamp);
1456 if (mac_selinux_setup(&loaded_policy) < 0) {
1457 error_message = "Failed to load SELinux policy";
1458 goto finish;
1459 } else if (mac_smack_setup(&loaded_policy) < 0) {
1460 error_message = "Failed to load SMACK policy";
1461 goto finish;
1462 } else if (ima_setup() < 0) {
1463 error_message = "Failed to load IMA policy";
1464 goto finish;
1465 }
1466 dual_timestamp_get(&security_finish_timestamp);
1467 }
1468
1469 if (mac_selinux_init() < 0) {
1470 error_message = "Failed to initialize SELinux policy";
1471 goto finish;
1472 }
1473
1474 if (!skip_setup) {
1475 if (clock_is_localtime(NULL) > 0) {
1476 int min;
1477
1478 /*
1479 * The very first call of settimeofday() also does a time warp in the kernel.
1480 *
1481 * In the rtc-in-local time mode, we set the kernel's timezone, and rely on
1482 * external tools to take care of maintaining the RTC and do all adjustments.
1483 * This matches the behavior of Windows, which leaves the RTC alone if the
1484 * registry tells that the RTC runs in UTC.
1485 */
1486 r = clock_set_timezone(&min);
1487 if (r < 0)
1488 log_error_errno(r, "Failed to apply local time delta, ignoring: %m");
1489 else
1490 log_info("RTC configured in localtime, applying delta of %i minutes to system time.", min);
1491 } else if (!in_initrd()) {
1492 /*
1493 * Do a dummy very first call to seal the kernel's time warp magic.
1494 *
1495 * Do not call this from inside the initrd. The initrd might not
1496 * carry /etc/adjtime with LOCAL, but the real system could be set up
1497 * that way. In such case, we need to delay the time-warp or the sealing
1498 * until we reach the real system.
1499 *
1500 * Do no set the kernel's timezone. The concept of local time cannot
1501 * be supported reliably, the time will jump or be incorrect at every daylight
1502 * saving time change. All kernel local time concepts will be treated
1503 * as UTC that way.
1504 */
1505 (void) clock_reset_timewarp();
1506 }
1507
1508 r = clock_apply_epoch();
1509 if (r < 0)
1510 log_error_errno(r, "Current system time is before build time, but cannot correct: %m");
1511 else if (r > 0)
1512 log_info("System time before build time, advancing clock.");
1513 }
1514
1515 /* Set the default for later on, but don't actually
1516 * open the logs like this for now. Note that if we
1517 * are transitioning from the initrd there might still
1518 * be journal fd open, and we shouldn't attempt
1519 * opening that before we parsed /proc/cmdline which
1520 * might redirect output elsewhere. */
1521 log_set_target(LOG_TARGET_JOURNAL_OR_KMSG);
1522
1523 } else if (getpid() == 1) {
1524 /* Running inside a container, as PID 1 */
1525 arg_system = true;
1526 log_set_target(LOG_TARGET_CONSOLE);
1527 log_close_console(); /* force reopen of /dev/console */
1528 log_open();
1529
1530 /* For later on, see above... */
1531 log_set_target(LOG_TARGET_JOURNAL);
1532
1533 /* clear the kernel timestamp,
1534 * because we are in a container */
1535 kernel_timestamp = DUAL_TIMESTAMP_NULL;
1536 } else {
1537 /* Running as user instance */
1538 arg_system = false;
1539 log_set_target(LOG_TARGET_AUTO);
1540 log_open();
1541
1542 /* clear the kernel timestamp,
1543 * because we are not PID 1 */
1544 kernel_timestamp = DUAL_TIMESTAMP_NULL;
1545 }
1546
1547 if (getpid() == 1) {
1548 /* Don't limit the core dump size, so that coredump handlers such as systemd-coredump (which honour the limit)
1549 * will process core dumps for system services by default. */
1550 if (setrlimit(RLIMIT_CORE, &RLIMIT_MAKE_CONST(RLIM_INFINITY)) < 0)
1551 log_warning_errno(errno, "Failed to set RLIMIT_CORE: %m");
1552
1553 /* But at the same time, turn off the core_pattern logic by default, so that no coredumps are stored
1554 * until the systemd-coredump tool is enabled via sysctl. */
1555 if (!skip_setup)
1556 (void) write_string_file("/proc/sys/kernel/core_pattern", "|/bin/false", 0);
1557 }
1558
1559 if (arg_system) {
1560 if (fixup_environment() < 0) {
1561 error_message = "Failed to fix up PID1 environment";
1562 goto finish;
1563 }
1564
1565 /* Try to figure out if we can use colors with the console. No
1566 * need to do that for user instances since they never log
1567 * into the console. */
1568 log_show_color(colors_enabled());
1569 r = make_null_stdio();
1570 if (r < 0)
1571 log_warning_errno(r, "Failed to redirect standard streams to /dev/null: %m");
1572 }
1573
1574 r = initialize_join_controllers();
1575 if (r < 0) {
1576 error_message = "Failed to initialize cgroup controllers";
1577 goto finish;
1578 }
1579
1580 /* Mount /proc, /sys and friends, so that /proc/cmdline and
1581 * /proc/$PID/fd is available. */
1582 if (getpid() == 1) {
1583
1584 /* Load the kernel modules early, so that we kdbus.ko is loaded before kdbusfs shall be mounted */
1585 if (!skip_setup)
1586 kmod_setup();
1587
1588 r = mount_setup(loaded_policy);
1589 if (r < 0) {
1590 error_message = "Failed to mount API filesystems";
1591 goto finish;
1592 }
1593 }
1594
1595 /* Reset all signal handlers. */
1596 (void) reset_all_signal_handlers();
1597 (void) ignore_signals(SIGNALS_IGNORE, -1);
1598
1599 arg_default_tasks_max = system_tasks_max_scale(DEFAULT_TASKS_MAX_PERCENTAGE, 100U);
1600
1601 if (parse_config_file() < 0) {
1602 error_message = "Failed to parse config file";
1603 goto finish;
1604 }
1605
1606 if (arg_system) {
1607 r = proc_cmdline_parse(parse_proc_cmdline_item, NULL, 0);
1608 if (r < 0)
1609 log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
1610 }
1611
1612 /* Note that this also parses bits from the kernel command
1613 * line, including "debug". */
1614 log_parse_environment();
1615
1616 if (parse_argv(argc, argv) < 0) {
1617 error_message = "Failed to parse commandline arguments";
1618 goto finish;
1619 }
1620
1621 /* Initialize default unit */
1622 if (!arg_default_unit) {
1623 arg_default_unit = strdup(SPECIAL_DEFAULT_TARGET);
1624 if (!arg_default_unit) {
1625 r = log_oom();
1626 error_message = "Failed to set default unit";
1627 goto finish;
1628 }
1629 }
1630
1631 if (arg_action == ACTION_TEST &&
1632 geteuid() == 0) {
1633 log_error("Don't run test mode as root.");
1634 goto finish;
1635 }
1636
1637 if (!arg_system &&
1638 arg_action == ACTION_RUN &&
1639 sd_booted() <= 0) {
1640 log_error("Trying to run as user instance, but the system has not been booted with systemd.");
1641 goto finish;
1642 }
1643
1644 if (arg_system &&
1645 arg_action == ACTION_RUN &&
1646 running_in_chroot() > 0) {
1647 log_error("Cannot be run in a chroot() environment.");
1648 goto finish;
1649 }
1650
1651 if (arg_action == ACTION_TEST || arg_action == ACTION_HELP) {
1652 pager_open(arg_no_pager, false);
1653 skip_setup = true;
1654 }
1655
1656 if (arg_action == ACTION_HELP) {
1657 retval = help();
1658 goto finish;
1659 } else if (arg_action == ACTION_VERSION) {
1660 retval = version();
1661 goto finish;
1662 } else if (arg_action == ACTION_DUMP_CONFIGURATION_ITEMS) {
1663 pager_open(arg_no_pager, false);
1664 unit_dump_config_items(stdout);
1665 retval = EXIT_SUCCESS;
1666 goto finish;
1667 }
1668
1669 if (!arg_system &&
1670 !getenv("XDG_RUNTIME_DIR")) {
1671 log_error("Trying to run as user instance, but $XDG_RUNTIME_DIR is not set.");
1672 goto finish;
1673 }
1674
1675 assert_se(arg_action == ACTION_RUN || arg_action == ACTION_TEST);
1676
1677 /* Close logging fds, in order not to confuse fdset below */
1678 log_close();
1679
1680 /* Remember open file descriptors for later deserialization */
1681 r = fdset_new_fill(&fds);
1682 if (r < 0) {
1683 log_emergency_errno(r, "Failed to allocate fd set: %m");
1684 error_message = "Failed to allocate fd set";
1685 goto finish;
1686 } else
1687 fdset_cloexec(fds, true);
1688
1689 if (arg_serialization)
1690 assert_se(fdset_remove(fds, fileno(arg_serialization)) >= 0);
1691
1692 if (arg_system)
1693 /* Become a session leader if we aren't one yet. */
1694 setsid();
1695
1696 /* Move out of the way, so that we won't block unmounts */
1697 assert_se(chdir("/") == 0);
1698
1699 /* Reset the console, but only if this is really init and we
1700 * are freshly booted */
1701 if (arg_system && arg_action == ACTION_RUN) {
1702
1703 /* If we are init, we connect stdin/stdout/stderr to
1704 * /dev/null and make sure we don't have a controlling
1705 * tty. */
1706 release_terminal();
1707
1708 if (getpid() == 1 && !skip_setup)
1709 console_setup();
1710 }
1711
1712 /* Open the logging devices, if possible and necessary */
1713 log_open();
1714
1715 if (arg_show_status == _SHOW_STATUS_UNSET)
1716 arg_show_status = SHOW_STATUS_YES;
1717
1718 /* Make sure we leave a core dump without panicing the
1719 * kernel. */
1720 if (getpid() == 1) {
1721 install_crash_handler();
1722
1723 r = mount_cgroup_controllers(arg_join_controllers);
1724 if (r < 0)
1725 goto finish;
1726 }
1727
1728 if (arg_system) {
1729 int v;
1730
1731 log_info(PACKAGE_STRING " running in %ssystem mode. (" SYSTEMD_FEATURES ")",
1732 arg_action == ACTION_TEST ? "test " : "" );
1733
1734 v = detect_virtualization();
1735 if (v > 0)
1736 log_info("Detected virtualization %s.", virtualization_to_string(v));
1737
1738 write_container_id();
1739
1740 log_info("Detected architecture %s.", architecture_to_string(uname_architecture()));
1741
1742 if (in_initrd())
1743 log_info("Running in initial RAM disk.");
1744
1745 /* Let's check whether /etc is already populated. We
1746 * don't actually really check for that, but use
1747 * /etc/machine-id as flag file. This allows container
1748 * managers and installers to provision a couple of
1749 * files already. If the container manager wants to
1750 * provision the machine ID itself it should pass
1751 * $container_uuid to PID 1. */
1752
1753 empty_etc = access("/etc/machine-id", F_OK) < 0;
1754 if (empty_etc)
1755 log_info("Running with unpopulated /etc.");
1756 } else {
1757 _cleanup_free_ char *t;
1758
1759 t = uid_to_name(getuid());
1760 log_debug(PACKAGE_STRING " running in %suser mode for user "UID_FMT"/%s. (" SYSTEMD_FEATURES ")",
1761 arg_action == ACTION_TEST ? " test" : "", getuid(), t);
1762 }
1763
1764 if (arg_system && !skip_setup) {
1765 if (arg_show_status > 0)
1766 status_welcome();
1767
1768 hostname_setup();
1769 machine_id_setup(NULL, arg_machine_id, NULL);
1770 loopback_setup();
1771 bump_unix_max_dgram_qlen();
1772
1773 test_usr();
1774 }
1775
1776 if (arg_system && arg_runtime_watchdog > 0 && arg_runtime_watchdog != USEC_INFINITY)
1777 watchdog_set_timeout(&arg_runtime_watchdog);
1778
1779 if (arg_timer_slack_nsec != NSEC_INFINITY)
1780 if (prctl(PR_SET_TIMERSLACK, arg_timer_slack_nsec) < 0)
1781 log_error_errno(errno, "Failed to adjust timer slack: %m");
1782
1783 if (!cap_test_all(arg_capability_bounding_set)) {
1784 r = capability_bounding_set_drop_usermode(arg_capability_bounding_set);
1785 if (r < 0) {
1786 log_emergency_errno(r, "Failed to drop capability bounding set of usermode helpers: %m");
1787 error_message = "Failed to drop capability bounding set of usermode helpers";
1788 goto finish;
1789 }
1790 r = capability_bounding_set_drop(arg_capability_bounding_set, true);
1791 if (r < 0) {
1792 log_emergency_errno(r, "Failed to drop capability bounding set: %m");
1793 error_message = "Failed to drop capability bounding set";
1794 goto finish;
1795 }
1796 }
1797
1798 if (arg_syscall_archs) {
1799 r = enforce_syscall_archs(arg_syscall_archs);
1800 if (r < 0) {
1801 error_message = "Failed to set syscall architectures";
1802 goto finish;
1803 }
1804 }
1805
1806 if (!arg_system)
1807 /* Become reaper of our children */
1808 if (prctl(PR_SET_CHILD_SUBREAPER, 1) < 0)
1809 log_warning_errno(errno, "Failed to make us a subreaper: %m");
1810
1811 if (arg_system) {
1812 (void) bump_rlimit_nofile(&saved_rlimit_nofile);
1813
1814 if (empty_etc) {
1815 r = unit_file_preset_all(UNIT_FILE_SYSTEM, 0, NULL, UNIT_FILE_PRESET_ENABLE_ONLY, NULL, 0);
1816 if (r < 0)
1817 log_full_errno(r == -EEXIST ? LOG_NOTICE : LOG_WARNING, r, "Failed to populate /etc with preset unit settings, ignoring: %m");
1818 else
1819 log_info("Populated /etc with preset unit settings.");
1820 }
1821 }
1822
1823 r = manager_new(arg_system ? UNIT_FILE_SYSTEM : UNIT_FILE_USER, arg_action == ACTION_TEST, &m);
1824 if (r < 0) {
1825 log_emergency_errno(r, "Failed to allocate manager object: %m");
1826 error_message = "Failed to allocate manager object";
1827 goto finish;
1828 }
1829
1830 m->confirm_spawn = arg_confirm_spawn;
1831 m->runtime_watchdog = arg_runtime_watchdog;
1832 m->shutdown_watchdog = arg_shutdown_watchdog;
1833 m->userspace_timestamp = userspace_timestamp;
1834 m->kernel_timestamp = kernel_timestamp;
1835 m->initrd_timestamp = initrd_timestamp;
1836 m->security_start_timestamp = security_start_timestamp;
1837 m->security_finish_timestamp = security_finish_timestamp;
1838 m->cad_burst_action = arg_cad_burst_action;
1839
1840 manager_set_defaults(m);
1841 manager_set_show_status(m, arg_show_status);
1842 manager_set_first_boot(m, empty_etc);
1843
1844 /* Remember whether we should queue the default job */
1845 queue_default_job = !arg_serialization || arg_switched_root;
1846
1847 before_startup = now(CLOCK_MONOTONIC);
1848
1849 r = manager_startup(m, arg_serialization, fds);
1850 if (r < 0) {
1851 log_error_errno(r, "Failed to fully start up daemon: %m");
1852 goto finish;
1853 }
1854
1855 /* This will close all file descriptors that were opened, but
1856 * not claimed by any unit. */
1857 fds = fdset_free(fds);
1858
1859 arg_serialization = safe_fclose(arg_serialization);
1860
1861 if (queue_default_job) {
1862 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1863 Unit *target = NULL;
1864 Job *default_unit_job;
1865
1866 log_debug("Activating default unit: %s", arg_default_unit);
1867
1868 r = manager_load_unit(m, arg_default_unit, NULL, &error, &target);
1869 if (r < 0)
1870 log_error("Failed to load default target: %s", bus_error_message(&error, r));
1871 else if (target->load_state == UNIT_ERROR || target->load_state == UNIT_NOT_FOUND)
1872 log_error_errno(target->load_error, "Failed to load default target: %m");
1873 else if (target->load_state == UNIT_MASKED)
1874 log_error("Default target masked.");
1875
1876 if (!target || target->load_state != UNIT_LOADED) {
1877 log_info("Trying to load rescue target...");
1878
1879 r = manager_load_unit(m, SPECIAL_RESCUE_TARGET, NULL, &error, &target);
1880 if (r < 0) {
1881 log_emergency("Failed to load rescue target: %s", bus_error_message(&error, r));
1882 error_message = "Failed to load rescue target";
1883 goto finish;
1884 } else if (target->load_state == UNIT_ERROR || target->load_state == UNIT_NOT_FOUND) {
1885 log_emergency_errno(target->load_error, "Failed to load rescue target: %m");
1886 error_message = "Failed to load rescue target";
1887 goto finish;
1888 } else if (target->load_state == UNIT_MASKED) {
1889 log_emergency("Rescue target masked.");
1890 error_message = "Rescue target masked";
1891 goto finish;
1892 }
1893 }
1894
1895 assert(target->load_state == UNIT_LOADED);
1896
1897 if (arg_action == ACTION_TEST) {
1898 printf("-> By units:\n");
1899 manager_dump_units(m, stdout, "\t");
1900 }
1901
1902 r = manager_add_job(m, JOB_START, target, JOB_ISOLATE, &error, &default_unit_job);
1903 if (r == -EPERM) {
1904 log_debug("Default target could not be isolated, starting instead: %s", bus_error_message(&error, r));
1905
1906 sd_bus_error_free(&error);
1907
1908 r = manager_add_job(m, JOB_START, target, JOB_REPLACE, &error, &default_unit_job);
1909 if (r < 0) {
1910 log_emergency("Failed to start default target: %s", bus_error_message(&error, r));
1911 error_message = "Failed to start default target";
1912 goto finish;
1913 }
1914 } else if (r < 0) {
1915 log_emergency("Failed to isolate default target: %s", bus_error_message(&error, r));
1916 error_message = "Failed to isolate default target";
1917 goto finish;
1918 }
1919
1920 m->default_unit_job_id = default_unit_job->id;
1921
1922 after_startup = now(CLOCK_MONOTONIC);
1923 log_full(arg_action == ACTION_TEST ? LOG_INFO : LOG_DEBUG,
1924 "Loaded units and determined initial transaction in %s.",
1925 format_timespan(timespan, sizeof(timespan), after_startup - before_startup, 100 * USEC_PER_MSEC));
1926
1927 if (arg_action == ACTION_TEST) {
1928 printf("-> By jobs:\n");
1929 manager_dump_jobs(m, stdout, "\t");
1930 retval = EXIT_SUCCESS;
1931 goto finish;
1932 }
1933 }
1934
1935 for (;;) {
1936 r = manager_loop(m);
1937 if (r < 0) {
1938 log_emergency_errno(r, "Failed to run main loop: %m");
1939 error_message = "Failed to run main loop";
1940 goto finish;
1941 }
1942
1943 switch (m->exit_code) {
1944
1945 case MANAGER_RELOAD:
1946 log_info("Reloading.");
1947
1948 r = parse_config_file();
1949 if (r < 0)
1950 log_error("Failed to parse config file.");
1951
1952 manager_set_defaults(m);
1953
1954 r = manager_reload(m);
1955 if (r < 0)
1956 log_error_errno(r, "Failed to reload: %m");
1957 break;
1958
1959 case MANAGER_REEXECUTE:
1960
1961 if (prepare_reexecute(m, &arg_serialization, &fds, false) < 0) {
1962 error_message = "Failed to prepare for reexecution";
1963 goto finish;
1964 }
1965
1966 reexecute = true;
1967 log_notice("Reexecuting.");
1968 goto finish;
1969
1970 case MANAGER_SWITCH_ROOT:
1971 /* Steal the switch root parameters */
1972 switch_root_dir = m->switch_root;
1973 switch_root_init = m->switch_root_init;
1974 m->switch_root = m->switch_root_init = NULL;
1975
1976 if (!switch_root_init)
1977 if (prepare_reexecute(m, &arg_serialization, &fds, true) < 0) {
1978 error_message = "Failed to prepare for reexecution";
1979 goto finish;
1980 }
1981
1982 reexecute = true;
1983 log_notice("Switching root.");
1984 goto finish;
1985
1986 case MANAGER_EXIT:
1987 retval = m->return_value;
1988
1989 if (MANAGER_IS_USER(m)) {
1990 log_debug("Exit.");
1991 goto finish;
1992 }
1993
1994 /* fallthrough */
1995 case MANAGER_REBOOT:
1996 case MANAGER_POWEROFF:
1997 case MANAGER_HALT:
1998 case MANAGER_KEXEC: {
1999 static const char * const table[_MANAGER_EXIT_CODE_MAX] = {
2000 [MANAGER_EXIT] = "exit",
2001 [MANAGER_REBOOT] = "reboot",
2002 [MANAGER_POWEROFF] = "poweroff",
2003 [MANAGER_HALT] = "halt",
2004 [MANAGER_KEXEC] = "kexec"
2005 };
2006
2007 assert_se(shutdown_verb = table[m->exit_code]);
2008 arm_reboot_watchdog = m->exit_code == MANAGER_REBOOT;
2009
2010 log_notice("Shutting down.");
2011 goto finish;
2012 }
2013
2014 default:
2015 assert_not_reached("Unknown exit code.");
2016 }
2017 }
2018
2019 finish:
2020 pager_close();
2021
2022 if (m)
2023 arg_shutdown_watchdog = m->shutdown_watchdog;
2024
2025 m = manager_free(m);
2026
2027 for (j = 0; j < ELEMENTSOF(arg_default_rlimit); j++)
2028 arg_default_rlimit[j] = mfree(arg_default_rlimit[j]);
2029
2030 arg_default_unit = mfree(arg_default_unit);
2031 arg_confirm_spawn = mfree(arg_confirm_spawn);
2032 arg_join_controllers = strv_free_free(arg_join_controllers);
2033 arg_default_environment = strv_free(arg_default_environment);
2034 arg_syscall_archs = set_free(arg_syscall_archs);
2035
2036 mac_selinux_finish();
2037
2038 if (reexecute) {
2039 const char **args;
2040 unsigned i, args_size;
2041
2042 /* Close and disarm the watchdog, so that the new
2043 * instance can reinitialize it, but doesn't get
2044 * rebooted while we do that */
2045 watchdog_close(true);
2046
2047 /* Reset the RLIMIT_NOFILE to the kernel default, so
2048 * that the new systemd can pass the kernel default to
2049 * its child processes */
2050 if (saved_rlimit_nofile.rlim_cur > 0)
2051 (void) setrlimit(RLIMIT_NOFILE, &saved_rlimit_nofile);
2052
2053 if (switch_root_dir) {
2054 /* Kill all remaining processes from the
2055 * initrd, but don't wait for them, so that we
2056 * can handle the SIGCHLD for them after
2057 * deserializing. */
2058 broadcast_signal(SIGTERM, false, true);
2059
2060 /* And switch root with MS_MOVE, because we remove the old directory afterwards and detach it. */
2061 r = switch_root(switch_root_dir, "/mnt", true, MS_MOVE);
2062 if (r < 0)
2063 log_error_errno(r, "Failed to switch root, trying to continue: %m");
2064 }
2065
2066 args_size = MAX(6, argc+1);
2067 args = newa(const char*, args_size);
2068
2069 if (!switch_root_init) {
2070 char sfd[DECIMAL_STR_MAX(int) + 1];
2071
2072 /* First try to spawn ourselves with the right
2073 * path, and with full serialization. We do
2074 * this only if the user didn't specify an
2075 * explicit init to spawn. */
2076
2077 assert(arg_serialization);
2078 assert(fds);
2079
2080 xsprintf(sfd, "%i", fileno(arg_serialization));
2081
2082 i = 0;
2083 args[i++] = SYSTEMD_BINARY_PATH;
2084 if (switch_root_dir)
2085 args[i++] = "--switched-root";
2086 args[i++] = arg_system ? "--system" : "--user";
2087 args[i++] = "--deserialize";
2088 args[i++] = sfd;
2089 args[i++] = NULL;
2090
2091 assert(i <= args_size);
2092
2093 /*
2094 * We want valgrind to print its memory usage summary before reexecution.
2095 * Valgrind won't do this is on its own on exec(), but it will do it on exit().
2096 * Hence, to ensure we get a summary here, fork() off a child, let it exit() cleanly,
2097 * so that it prints the summary, and wait() for it in the parent, before proceeding into the exec().
2098 */
2099 valgrind_summary_hack();
2100
2101 (void) execv(args[0], (char* const*) args);
2102 }
2103
2104 /* Try the fallback, if there is any, without any
2105 * serialization. We pass the original argv[] and
2106 * envp[]. (Well, modulo the ordering changes due to
2107 * getopt() in argv[], and some cleanups in envp[],
2108 * but let's hope that doesn't matter.) */
2109
2110 arg_serialization = safe_fclose(arg_serialization);
2111 fds = fdset_free(fds);
2112
2113 /* Reopen the console */
2114 (void) make_console_stdio();
2115
2116 for (j = 1, i = 1; j < (unsigned) argc; j++)
2117 args[i++] = argv[j];
2118 args[i++] = NULL;
2119 assert(i <= args_size);
2120
2121 /* Reenable any blocked signals, especially important
2122 * if we switch from initial ramdisk to init=... */
2123 (void) reset_all_signal_handlers();
2124 (void) reset_signal_mask();
2125
2126 if (switch_root_init) {
2127 args[0] = switch_root_init;
2128 (void) execv(args[0], (char* const*) args);
2129 log_warning_errno(errno, "Failed to execute configured init, trying fallback: %m");
2130 }
2131
2132 args[0] = "/sbin/init";
2133 (void) execv(args[0], (char* const*) args);
2134
2135 if (errno == ENOENT) {
2136 log_warning("No /sbin/init, trying fallback");
2137
2138 args[0] = "/bin/sh";
2139 args[1] = NULL;
2140 (void) execv(args[0], (char* const*) args);
2141 log_error_errno(errno, "Failed to execute /bin/sh, giving up: %m");
2142 } else
2143 log_warning_errno(errno, "Failed to execute /sbin/init, giving up: %m");
2144 }
2145
2146 arg_serialization = safe_fclose(arg_serialization);
2147 fds = fdset_free(fds);
2148
2149 #ifdef HAVE_VALGRIND_VALGRIND_H
2150 /* If we are PID 1 and running under valgrind, then let's exit
2151 * here explicitly. valgrind will only generate nice output on
2152 * exit(), not on exec(), hence let's do the former not the
2153 * latter here. */
2154 if (getpid() == 1 && RUNNING_ON_VALGRIND)
2155 return 0;
2156 #endif
2157
2158 if (shutdown_verb) {
2159 char log_level[DECIMAL_STR_MAX(int) + 1];
2160 char exit_code[DECIMAL_STR_MAX(uint8_t) + 1];
2161 const char* command_line[11] = {
2162 SYSTEMD_SHUTDOWN_BINARY_PATH,
2163 shutdown_verb,
2164 "--log-level", log_level,
2165 "--log-target",
2166 };
2167 unsigned pos = 5;
2168 _cleanup_strv_free_ char **env_block = NULL;
2169
2170 assert(command_line[pos] == NULL);
2171 env_block = strv_copy(environ);
2172
2173 xsprintf(log_level, "%d", log_get_max_level());
2174
2175 switch (log_get_target()) {
2176
2177 case LOG_TARGET_KMSG:
2178 case LOG_TARGET_JOURNAL_OR_KMSG:
2179 case LOG_TARGET_SYSLOG_OR_KMSG:
2180 command_line[pos++] = "kmsg";
2181 break;
2182
2183 case LOG_TARGET_NULL:
2184 command_line[pos++] = "null";
2185 break;
2186
2187 case LOG_TARGET_CONSOLE:
2188 default:
2189 command_line[pos++] = "console";
2190 break;
2191 };
2192
2193 if (log_get_show_color())
2194 command_line[pos++] = "--log-color";
2195
2196 if (log_get_show_location())
2197 command_line[pos++] = "--log-location";
2198
2199 if (streq(shutdown_verb, "exit")) {
2200 command_line[pos++] = "--exit-code";
2201 command_line[pos++] = exit_code;
2202 xsprintf(exit_code, "%d", retval);
2203 }
2204
2205 assert(pos < ELEMENTSOF(command_line));
2206
2207 if (arm_reboot_watchdog && arg_shutdown_watchdog > 0 && arg_shutdown_watchdog != USEC_INFINITY) {
2208 char *e;
2209
2210 /* If we reboot let's set the shutdown
2211 * watchdog and tell the shutdown binary to
2212 * repeatedly ping it */
2213 r = watchdog_set_timeout(&arg_shutdown_watchdog);
2214 watchdog_close(r < 0);
2215
2216 /* Tell the binary how often to ping, ignore failure */
2217 if (asprintf(&e, "WATCHDOG_USEC="USEC_FMT, arg_shutdown_watchdog) > 0)
2218 (void) strv_push(&env_block, e);
2219 } else
2220 watchdog_close(true);
2221
2222 /* Avoid the creation of new processes forked by the
2223 * kernel; at this point, we will not listen to the
2224 * signals anyway */
2225 if (detect_container() <= 0)
2226 (void) cg_uninstall_release_agent(SYSTEMD_CGROUP_CONTROLLER);
2227
2228 execve(SYSTEMD_SHUTDOWN_BINARY_PATH, (char **) command_line, env_block);
2229 log_error_errno(errno, "Failed to execute shutdown binary, %s: %m",
2230 getpid() == 1 ? "freezing" : "quitting");
2231 }
2232
2233 if (getpid() == 1) {
2234 if (error_message)
2235 manager_status_printf(NULL, STATUS_TYPE_EMERGENCY,
2236 ANSI_HIGHLIGHT_RED "!!!!!!" ANSI_NORMAL,
2237 "%s, freezing.", error_message);
2238 freeze_or_reboot();
2239 }
2240
2241 return retval;
2242 }