]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/main.c
tests: reproduce https://github.com/systemd/systemd/issues/11251
[thirdparty/systemd.git] / src / core / main.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <errno.h>
4 #include <fcntl.h>
5 #include <getopt.h>
6 #include <signal.h>
7 #include <stdio.h>
8 #include <string.h>
9 #include <sys/mount.h>
10 #include <sys/prctl.h>
11 #include <sys/reboot.h>
12 #include <sys/stat.h>
13 #include <unistd.h>
14 #if HAVE_SECCOMP
15 #include <seccomp.h>
16 #endif
17 #if HAVE_VALGRIND_VALGRIND_H
18 #include <valgrind/valgrind.h>
19 #endif
20
21 #include "sd-bus.h"
22 #include "sd-daemon.h"
23 #include "sd-messages.h"
24
25 #include "alloc-util.h"
26 #include "architecture.h"
27 #include "build.h"
28 #include "bus-error.h"
29 #include "bus-util.h"
30 #include "capability-util.h"
31 #include "cgroup-util.h"
32 #include "clock-util.h"
33 #include "conf-parser.h"
34 #include "cpu-set-util.h"
35 #include "dbus.h"
36 #include "dbus-manager.h"
37 #include "def.h"
38 #include "emergency-action.h"
39 #include "env-util.h"
40 #include "exit-status.h"
41 #include "fd-util.h"
42 #include "fdset.h"
43 #include "fileio.h"
44 #include "format-util.h"
45 #include "fs-util.h"
46 #include "hostname-setup.h"
47 #include "ima-setup.h"
48 #include "killall.h"
49 #include "kmod-setup.h"
50 #include "load-fragment.h"
51 #include "log.h"
52 #include "loopback-setup.h"
53 #include "machine-id-setup.h"
54 #include "manager.h"
55 #include "missing.h"
56 #include "mount-setup.h"
57 #include "os-util.h"
58 #include "pager.h"
59 #include "parse-util.h"
60 #include "path-util.h"
61 #include "pretty-print.h"
62 #include "proc-cmdline.h"
63 #include "process-util.h"
64 #include "raw-clone.h"
65 #include "rlimit-util.h"
66 #if HAVE_SECCOMP
67 #include "seccomp-util.h"
68 #endif
69 #include "selinux-setup.h"
70 #include "selinux-util.h"
71 #include "signal-util.h"
72 #include "smack-setup.h"
73 #include "special.h"
74 #include "stat-util.h"
75 #include "stdio-util.h"
76 #include "strv.h"
77 #include "switch-root.h"
78 #include "sysctl-util.h"
79 #include "terminal-util.h"
80 #include "umask-util.h"
81 #include "user-util.h"
82 #include "util.h"
83 #include "virt.h"
84 #include "watchdog.h"
85
86 #if HAS_FEATURE_ADDRESS_SANITIZER
87 #include <sanitizer/lsan_interface.h>
88 #endif
89
90 static enum {
91 ACTION_RUN,
92 ACTION_HELP,
93 ACTION_VERSION,
94 ACTION_TEST,
95 ACTION_DUMP_CONFIGURATION_ITEMS,
96 ACTION_DUMP_BUS_PROPERTIES,
97 } arg_action = ACTION_RUN;
98 static char *arg_default_unit = NULL;
99 static bool arg_system = false;
100 static bool arg_dump_core = true;
101 static int arg_crash_chvt = -1;
102 static bool arg_crash_shell = false;
103 static bool arg_crash_reboot = false;
104 static char *arg_confirm_spawn = NULL;
105 static ShowStatus arg_show_status = _SHOW_STATUS_INVALID;
106 static bool arg_switched_root = false;
107 static PagerFlags arg_pager_flags = 0;
108 static bool arg_service_watchdogs = true;
109 static ExecOutput arg_default_std_output = EXEC_OUTPUT_JOURNAL;
110 static ExecOutput arg_default_std_error = EXEC_OUTPUT_INHERIT;
111 static usec_t arg_default_restart_usec = DEFAULT_RESTART_USEC;
112 static usec_t arg_default_timeout_start_usec = DEFAULT_TIMEOUT_USEC;
113 static usec_t arg_default_timeout_stop_usec = DEFAULT_TIMEOUT_USEC;
114 static usec_t arg_default_start_limit_interval = DEFAULT_START_LIMIT_INTERVAL;
115 static unsigned arg_default_start_limit_burst = DEFAULT_START_LIMIT_BURST;
116 static usec_t arg_runtime_watchdog = 0;
117 static usec_t arg_shutdown_watchdog = 10 * USEC_PER_MINUTE;
118 static char *arg_early_core_pattern = NULL;
119 static char *arg_watchdog_device = NULL;
120 static char **arg_default_environment = NULL;
121 static struct rlimit *arg_default_rlimit[_RLIMIT_MAX] = {};
122 static uint64_t arg_capability_bounding_set = CAP_ALL;
123 static bool arg_no_new_privs = false;
124 static nsec_t arg_timer_slack_nsec = NSEC_INFINITY;
125 static usec_t arg_default_timer_accuracy_usec = 1 * USEC_PER_MINUTE;
126 static Set* arg_syscall_archs = NULL;
127 static FILE* arg_serialization = NULL;
128 static int arg_default_cpu_accounting = -1;
129 static bool arg_default_io_accounting = false;
130 static bool arg_default_ip_accounting = false;
131 static bool arg_default_blockio_accounting = false;
132 static bool arg_default_memory_accounting = MEMORY_ACCOUNTING_DEFAULT;
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_exit_or_reboot(void) {
139
140 /* If we are running in a contianer, let's prefer exiting, after all we can propagate an exit code to the
141 * container manager, and thus inform it that something went wrong. */
142 if (detect_container() > 0) {
143 log_emergency("Exiting PID 1...");
144 exit(EXIT_EXCEPTION);
145 }
146
147 if (arg_crash_reboot) {
148 log_notice("Rebooting in 10s...");
149 (void) sleep(10);
150
151 log_notice("Rebooting now...");
152 (void) reboot(RB_AUTOBOOT);
153 log_emergency_errno(errno, "Failed to reboot: %m");
154 }
155
156 log_emergency("Freezing execution.");
157 freeze();
158 }
159
160 _noreturn_ static void crash(int sig) {
161 struct sigaction sa;
162 pid_t pid;
163
164 if (getpid_cached() != 1)
165 /* Pass this on immediately, if this is not PID 1 */
166 (void) raise(sig);
167 else if (!arg_dump_core)
168 log_emergency("Caught <%s>, not dumping core.", signal_to_string(sig));
169 else {
170 sa = (struct sigaction) {
171 .sa_handler = nop_signal_handler,
172 .sa_flags = SA_NOCLDSTOP|SA_RESTART,
173 };
174
175 /* We want to wait for the core process, hence let's enable SIGCHLD */
176 (void) sigaction(SIGCHLD, &sa, NULL);
177
178 pid = raw_clone(SIGCHLD);
179 if (pid < 0)
180 log_emergency_errno(errno, "Caught <%s>, cannot fork for core dump: %m", signal_to_string(sig));
181 else if (pid == 0) {
182 /* Enable default signal handler for core dump */
183
184 sa = (struct sigaction) {
185 .sa_handler = SIG_DFL,
186 };
187 (void) sigaction(sig, &sa, NULL);
188
189 /* Don't limit the coredump size */
190 (void) setrlimit(RLIMIT_CORE, &RLIMIT_MAKE_CONST(RLIM_INFINITY));
191
192 /* Just to be sure... */
193 (void) chdir("/");
194
195 /* Raise the signal again */
196 pid = raw_getpid();
197 (void) kill(pid, sig); /* raise() would kill the parent */
198
199 assert_not_reached("We shouldn't be here...");
200 _exit(EXIT_EXCEPTION);
201 } else {
202 siginfo_t status;
203 int r;
204
205 /* Order things nicely. */
206 r = wait_for_terminate(pid, &status);
207 if (r < 0)
208 log_emergency_errno(r, "Caught <%s>, waitpid() failed: %m", signal_to_string(sig));
209 else if (status.si_code != CLD_DUMPED)
210 log_emergency("Caught <%s>, core dump failed (child "PID_FMT", code=%s, status=%i/%s).",
211 signal_to_string(sig),
212 pid, sigchld_code_to_string(status.si_code),
213 status.si_status,
214 strna(status.si_code == CLD_EXITED
215 ? exit_status_to_string(status.si_status, EXIT_STATUS_MINIMAL)
216 : signal_to_string(status.si_status)));
217 else
218 log_emergency("Caught <%s>, dumped core as pid "PID_FMT".", signal_to_string(sig), pid);
219 }
220 }
221
222 if (arg_crash_chvt >= 0)
223 (void) chvt(arg_crash_chvt);
224
225 sa = (struct sigaction) {
226 .sa_handler = SIG_IGN,
227 .sa_flags = SA_NOCLDSTOP|SA_NOCLDWAIT|SA_RESTART,
228 };
229
230 /* Let the kernel reap children for us */
231 (void) sigaction(SIGCHLD, &sa, NULL);
232
233 if (arg_crash_shell) {
234 log_notice("Executing crash shell in 10s...");
235 (void) sleep(10);
236
237 pid = raw_clone(SIGCHLD);
238 if (pid < 0)
239 log_emergency_errno(errno, "Failed to fork off crash shell: %m");
240 else if (pid == 0) {
241 (void) setsid();
242 (void) make_console_stdio();
243 (void) rlimit_nofile_safe();
244 (void) execle("/bin/sh", "/bin/sh", NULL, environ);
245
246 log_emergency_errno(errno, "execle() failed: %m");
247 _exit(EXIT_EXCEPTION);
248 } else {
249 log_info("Spawned crash shell as PID "PID_FMT".", pid);
250 (void) wait_for_terminate(pid, NULL);
251 }
252 }
253
254 freeze_or_exit_or_reboot();
255 }
256
257 static void install_crash_handler(void) {
258 static const struct sigaction sa = {
259 .sa_handler = crash,
260 .sa_flags = SA_NODEFER, /* So that we can raise the signal again from the signal handler */
261 };
262 int r;
263
264 /* We ignore the return value here, since, we don't mind if we
265 * cannot set up a crash handler */
266 r = sigaction_many(&sa, SIGNALS_CRASH_HANDLER, -1);
267 if (r < 0)
268 log_debug_errno(r, "I had trouble setting up the crash handler, ignoring: %m");
269 }
270
271 static int console_setup(void) {
272 _cleanup_close_ int tty_fd = -1;
273 int r;
274
275 tty_fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
276 if (tty_fd < 0)
277 return log_error_errno(tty_fd, "Failed to open /dev/console: %m");
278
279 /* We don't want to force text mode. plymouth may be showing
280 * pictures already from initrd. */
281 r = reset_terminal_fd(tty_fd, false);
282 if (r < 0)
283 return log_error_errno(r, "Failed to reset /dev/console: %m");
284
285 return 0;
286 }
287
288 static int parse_crash_chvt(const char *value) {
289 int b;
290
291 if (safe_atoi(value, &arg_crash_chvt) >= 0)
292 return 0;
293
294 b = parse_boolean(value);
295 if (b < 0)
296 return b;
297
298 if (b > 0)
299 arg_crash_chvt = 0; /* switch to where kmsg goes */
300 else
301 arg_crash_chvt = -1; /* turn off switching */
302
303 return 0;
304 }
305
306 static int parse_confirm_spawn(const char *value, char **console) {
307 char *s;
308 int r;
309
310 r = value ? parse_boolean(value) : 1;
311 if (r == 0) {
312 *console = NULL;
313 return 0;
314 }
315
316 if (r > 0) /* on with default tty */
317 s = strdup("/dev/console");
318 else if (is_path(value)) /* on with fully qualified path */
319 s = strdup(value);
320 else /* on with only a tty file name, not a fully qualified path */
321 s = strjoin("/dev/", value);
322 if (!s)
323 return -ENOMEM;
324
325 *console = s;
326 return 0;
327 }
328
329 static int set_machine_id(const char *m) {
330 sd_id128_t t;
331 assert(m);
332
333 if (sd_id128_from_string(m, &t) < 0)
334 return -EINVAL;
335
336 if (sd_id128_is_null(t))
337 return -EINVAL;
338
339 arg_machine_id = t;
340 return 0;
341 }
342
343 static int parse_proc_cmdline_item(const char *key, const char *value, void *data) {
344
345 int r;
346
347 assert(key);
348
349 if (STR_IN_SET(key, "systemd.unit", "rd.systemd.unit")) {
350
351 if (proc_cmdline_value_missing(key, value))
352 return 0;
353
354 if (!unit_name_is_valid(value, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE))
355 log_warning("Unit name specified on %s= is not valid, ignoring: %s", key, value);
356 else if (in_initrd() == !!startswith(key, "rd.")) {
357 if (free_and_strdup(&arg_default_unit, value) < 0)
358 return log_oom();
359 }
360
361 } else if (proc_cmdline_key_streq(key, "systemd.dump_core")) {
362
363 r = value ? parse_boolean(value) : true;
364 if (r < 0)
365 log_warning_errno(r, "Failed to parse dump core switch %s, ignoring: %m", value);
366 else
367 arg_dump_core = r;
368
369 } else if (proc_cmdline_key_streq(key, "systemd.early_core_pattern")) {
370
371 if (proc_cmdline_value_missing(key, value))
372 return 0;
373
374 if (path_is_absolute(value))
375 (void) parse_path_argument_and_warn(value, false, &arg_early_core_pattern);
376 else
377 log_warning("Specified core pattern '%s' is not an absolute path, ignoring.", value);
378
379 } else if (proc_cmdline_key_streq(key, "systemd.crash_chvt")) {
380
381 if (!value)
382 arg_crash_chvt = 0; /* turn on */
383 else {
384 r = parse_crash_chvt(value);
385 if (r < 0)
386 log_warning_errno(r, "Failed to parse crash chvt switch %s, ignoring: %m", value);
387 }
388
389 } else if (proc_cmdline_key_streq(key, "systemd.crash_shell")) {
390
391 r = value ? parse_boolean(value) : true;
392 if (r < 0)
393 log_warning_errno(r, "Failed to parse crash shell switch %s, ignoring: %m", value);
394 else
395 arg_crash_shell = r;
396
397 } else if (proc_cmdline_key_streq(key, "systemd.crash_reboot")) {
398
399 r = value ? parse_boolean(value) : true;
400 if (r < 0)
401 log_warning_errno(r, "Failed to parse crash reboot switch %s, ignoring: %m", value);
402 else
403 arg_crash_reboot = r;
404
405 } else if (proc_cmdline_key_streq(key, "systemd.confirm_spawn")) {
406 char *s;
407
408 r = parse_confirm_spawn(value, &s);
409 if (r < 0)
410 log_warning_errno(r, "Failed to parse confirm_spawn switch %s, ignoring: %m", value);
411 else
412 free_and_replace(arg_confirm_spawn, s);
413
414 } else if (proc_cmdline_key_streq(key, "systemd.service_watchdogs")) {
415
416 r = value ? parse_boolean(value) : true;
417 if (r < 0)
418 log_warning_errno(r, "Failed to parse service watchdog switch %s, ignoring: %m", value);
419 else
420 arg_service_watchdogs = r;
421
422 } else if (proc_cmdline_key_streq(key, "systemd.show_status")) {
423
424 if (value) {
425 r = parse_show_status(value, &arg_show_status);
426 if (r < 0)
427 log_warning_errno(r, "Failed to parse show status switch %s, ignoring: %m", value);
428 } else
429 arg_show_status = SHOW_STATUS_YES;
430
431 } else if (proc_cmdline_key_streq(key, "systemd.default_standard_output")) {
432
433 if (proc_cmdline_value_missing(key, value))
434 return 0;
435
436 r = exec_output_from_string(value);
437 if (r < 0)
438 log_warning_errno(r, "Failed to parse default standard output switch %s, ignoring: %m", value);
439 else
440 arg_default_std_output = r;
441
442 } else if (proc_cmdline_key_streq(key, "systemd.default_standard_error")) {
443
444 if (proc_cmdline_value_missing(key, value))
445 return 0;
446
447 r = exec_output_from_string(value);
448 if (r < 0)
449 log_warning_errno(r, "Failed to parse default standard error switch %s, ignoring: %m", value);
450 else
451 arg_default_std_error = r;
452
453 } else if (streq(key, "systemd.setenv")) {
454
455 if (proc_cmdline_value_missing(key, value))
456 return 0;
457
458 if (env_assignment_is_valid(value)) {
459 char **env;
460
461 env = strv_env_set(arg_default_environment, value);
462 if (!env)
463 return log_oom();
464
465 arg_default_environment = env;
466 } else
467 log_warning("Environment variable name '%s' is not valid. Ignoring.", value);
468
469 } else if (proc_cmdline_key_streq(key, "systemd.machine_id")) {
470
471 if (proc_cmdline_value_missing(key, value))
472 return 0;
473
474 r = set_machine_id(value);
475 if (r < 0)
476 log_warning_errno(r, "MachineID '%s' is not valid, ignoring: %m", value);
477
478 } else if (proc_cmdline_key_streq(key, "systemd.default_timeout_start_sec")) {
479
480 if (proc_cmdline_value_missing(key, value))
481 return 0;
482
483 r = parse_sec(value, &arg_default_timeout_start_usec);
484 if (r < 0)
485 log_warning_errno(r, "Failed to parse default start timeout '%s', ignoring: %m", value);
486
487 if (arg_default_timeout_start_usec <= 0)
488 arg_default_timeout_start_usec = USEC_INFINITY;
489
490 } else if (proc_cmdline_key_streq(key, "systemd.watchdog_device")) {
491
492 if (proc_cmdline_value_missing(key, value))
493 return 0;
494
495 (void) parse_path_argument_and_warn(value, false, &arg_watchdog_device);
496
497 } else if (streq(key, "quiet") && !value) {
498
499 if (arg_show_status == _SHOW_STATUS_INVALID)
500 arg_show_status = SHOW_STATUS_AUTO;
501
502 } else if (streq(key, "debug") && !value) {
503
504 /* Note that log_parse_environment() handles 'debug'
505 * too, and sets the log level to LOG_DEBUG. */
506
507 if (detect_container() > 0)
508 log_set_target(LOG_TARGET_CONSOLE);
509
510 } else if (!value) {
511 const char *target;
512
513 /* SysV compatibility */
514 target = runlevel_to_target(key);
515 if (target)
516 return free_and_strdup(&arg_default_unit, target);
517 }
518
519 return 0;
520 }
521
522 #define DEFINE_SETTER(name, func, descr) \
523 static int name(const char *unit, \
524 const char *filename, \
525 unsigned line, \
526 const char *section, \
527 unsigned section_line, \
528 const char *lvalue, \
529 int ltype, \
530 const char *rvalue, \
531 void *data, \
532 void *userdata) { \
533 \
534 int r; \
535 \
536 assert(filename); \
537 assert(lvalue); \
538 assert(rvalue); \
539 \
540 r = func(rvalue); \
541 if (r < 0) \
542 log_syntax(unit, LOG_ERR, filename, line, r, \
543 "Invalid " descr "'%s': %m", \
544 rvalue); \
545 \
546 return 0; \
547 }
548
549 DEFINE_SETTER(config_parse_level2, log_set_max_level_from_string, "log level");
550 DEFINE_SETTER(config_parse_target, log_set_target_from_string, "target");
551 DEFINE_SETTER(config_parse_color, log_show_color_from_string, "color" );
552 DEFINE_SETTER(config_parse_location, log_show_location_from_string, "location");
553
554 static int config_parse_cpu_affinity2(
555 const char *unit,
556 const char *filename,
557 unsigned line,
558 const char *section,
559 unsigned section_line,
560 const char *lvalue,
561 int ltype,
562 const char *rvalue,
563 void *data,
564 void *userdata) {
565
566 _cleanup_cpu_free_ cpu_set_t *c = NULL;
567 int ncpus;
568
569 ncpus = parse_cpu_set_and_warn(rvalue, &c, unit, filename, line, lvalue);
570 if (ncpus < 0)
571 return ncpus;
572
573 if (sched_setaffinity(0, CPU_ALLOC_SIZE(ncpus), c) < 0)
574 log_warning_errno(errno, "Failed to set CPU affinity: %m");
575
576 return 0;
577 }
578
579 static int config_parse_show_status(
580 const char* unit,
581 const char *filename,
582 unsigned line,
583 const char *section,
584 unsigned section_line,
585 const char *lvalue,
586 int ltype,
587 const char *rvalue,
588 void *data,
589 void *userdata) {
590
591 int k;
592 ShowStatus *b = data;
593
594 assert(filename);
595 assert(lvalue);
596 assert(rvalue);
597 assert(data);
598
599 k = parse_show_status(rvalue, b);
600 if (k < 0) {
601 log_syntax(unit, LOG_ERR, filename, line, k, "Failed to parse show status setting, ignoring: %s", rvalue);
602 return 0;
603 }
604
605 return 0;
606 }
607
608 static int config_parse_output_restricted(
609 const char* unit,
610 const char *filename,
611 unsigned line,
612 const char *section,
613 unsigned section_line,
614 const char *lvalue,
615 int ltype,
616 const char *rvalue,
617 void *data,
618 void *userdata) {
619
620 ExecOutput t, *eo = data;
621
622 assert(filename);
623 assert(lvalue);
624 assert(rvalue);
625 assert(data);
626
627 t = exec_output_from_string(rvalue);
628 if (t < 0) {
629 log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse output type, ignoring: %s", rvalue);
630 return 0;
631 }
632
633 if (IN_SET(t, EXEC_OUTPUT_SOCKET, EXEC_OUTPUT_NAMED_FD, EXEC_OUTPUT_FILE, EXEC_OUTPUT_FILE_APPEND)) {
634 log_syntax(unit, LOG_ERR, filename, line, 0, "Standard output types socket, fd:, file:, append: are not supported as defaults, ignoring: %s", rvalue);
635 return 0;
636 }
637
638 *eo = t;
639 return 0;
640 }
641
642 static int config_parse_crash_chvt(
643 const char* unit,
644 const char *filename,
645 unsigned line,
646 const char *section,
647 unsigned section_line,
648 const char *lvalue,
649 int ltype,
650 const char *rvalue,
651 void *data,
652 void *userdata) {
653
654 int r;
655
656 assert(filename);
657 assert(lvalue);
658 assert(rvalue);
659
660 r = parse_crash_chvt(rvalue);
661 if (r < 0) {
662 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse CrashChangeVT= setting, ignoring: %s", rvalue);
663 return 0;
664 }
665
666 return 0;
667 }
668
669 static int parse_config_file(void) {
670
671 const ConfigTableItem items[] = {
672 { "Manager", "LogLevel", config_parse_level2, 0, NULL },
673 { "Manager", "LogTarget", config_parse_target, 0, NULL },
674 { "Manager", "LogColor", config_parse_color, 0, NULL },
675 { "Manager", "LogLocation", config_parse_location, 0, NULL },
676 { "Manager", "DumpCore", config_parse_bool, 0, &arg_dump_core },
677 { "Manager", "CrashChVT", /* legacy */ config_parse_crash_chvt, 0, NULL },
678 { "Manager", "CrashChangeVT", config_parse_crash_chvt, 0, NULL },
679 { "Manager", "CrashShell", config_parse_bool, 0, &arg_crash_shell },
680 { "Manager", "CrashReboot", config_parse_bool, 0, &arg_crash_reboot },
681 { "Manager", "ShowStatus", config_parse_show_status, 0, &arg_show_status },
682 { "Manager", "CPUAffinity", config_parse_cpu_affinity2, 0, NULL },
683 { "Manager", "JoinControllers", config_parse_warn_compat, DISABLED_CONFIGURATION, NULL },
684 { "Manager", "RuntimeWatchdogSec", config_parse_sec, 0, &arg_runtime_watchdog },
685 { "Manager", "ShutdownWatchdogSec", config_parse_sec, 0, &arg_shutdown_watchdog },
686 { "Manager", "WatchdogDevice", config_parse_path, 0, &arg_watchdog_device },
687 { "Manager", "CapabilityBoundingSet", config_parse_capability_set, 0, &arg_capability_bounding_set },
688 { "Manager", "NoNewPrivileges", config_parse_bool, 0, &arg_no_new_privs },
689 #if HAVE_SECCOMP
690 { "Manager", "SystemCallArchitectures", config_parse_syscall_archs, 0, &arg_syscall_archs },
691 #endif
692 { "Manager", "TimerSlackNSec", config_parse_nsec, 0, &arg_timer_slack_nsec },
693 { "Manager", "DefaultTimerAccuracySec", config_parse_sec, 0, &arg_default_timer_accuracy_usec },
694 { "Manager", "DefaultStandardOutput", config_parse_output_restricted,0, &arg_default_std_output },
695 { "Manager", "DefaultStandardError", config_parse_output_restricted,0, &arg_default_std_error },
696 { "Manager", "DefaultTimeoutStartSec", config_parse_sec, 0, &arg_default_timeout_start_usec },
697 { "Manager", "DefaultTimeoutStopSec", config_parse_sec, 0, &arg_default_timeout_stop_usec },
698 { "Manager", "DefaultRestartSec", config_parse_sec, 0, &arg_default_restart_usec },
699 { "Manager", "DefaultStartLimitInterval", config_parse_sec, 0, &arg_default_start_limit_interval }, /* obsolete alias */
700 { "Manager", "DefaultStartLimitIntervalSec",config_parse_sec, 0, &arg_default_start_limit_interval },
701 { "Manager", "DefaultStartLimitBurst", config_parse_unsigned, 0, &arg_default_start_limit_burst },
702 { "Manager", "DefaultEnvironment", config_parse_environ, 0, &arg_default_environment },
703 { "Manager", "DefaultLimitCPU", config_parse_rlimit, RLIMIT_CPU, arg_default_rlimit },
704 { "Manager", "DefaultLimitFSIZE", config_parse_rlimit, RLIMIT_FSIZE, arg_default_rlimit },
705 { "Manager", "DefaultLimitDATA", config_parse_rlimit, RLIMIT_DATA, arg_default_rlimit },
706 { "Manager", "DefaultLimitSTACK", config_parse_rlimit, RLIMIT_STACK, arg_default_rlimit },
707 { "Manager", "DefaultLimitCORE", config_parse_rlimit, RLIMIT_CORE, arg_default_rlimit },
708 { "Manager", "DefaultLimitRSS", config_parse_rlimit, RLIMIT_RSS, arg_default_rlimit },
709 { "Manager", "DefaultLimitNOFILE", config_parse_rlimit, RLIMIT_NOFILE, arg_default_rlimit },
710 { "Manager", "DefaultLimitAS", config_parse_rlimit, RLIMIT_AS, arg_default_rlimit },
711 { "Manager", "DefaultLimitNPROC", config_parse_rlimit, RLIMIT_NPROC, arg_default_rlimit },
712 { "Manager", "DefaultLimitMEMLOCK", config_parse_rlimit, RLIMIT_MEMLOCK, arg_default_rlimit },
713 { "Manager", "DefaultLimitLOCKS", config_parse_rlimit, RLIMIT_LOCKS, arg_default_rlimit },
714 { "Manager", "DefaultLimitSIGPENDING", config_parse_rlimit, RLIMIT_SIGPENDING, arg_default_rlimit },
715 { "Manager", "DefaultLimitMSGQUEUE", config_parse_rlimit, RLIMIT_MSGQUEUE, arg_default_rlimit },
716 { "Manager", "DefaultLimitNICE", config_parse_rlimit, RLIMIT_NICE, arg_default_rlimit },
717 { "Manager", "DefaultLimitRTPRIO", config_parse_rlimit, RLIMIT_RTPRIO, arg_default_rlimit },
718 { "Manager", "DefaultLimitRTTIME", config_parse_rlimit, RLIMIT_RTTIME, arg_default_rlimit },
719 { "Manager", "DefaultCPUAccounting", config_parse_tristate, 0, &arg_default_cpu_accounting },
720 { "Manager", "DefaultIOAccounting", config_parse_bool, 0, &arg_default_io_accounting },
721 { "Manager", "DefaultIPAccounting", config_parse_bool, 0, &arg_default_ip_accounting },
722 { "Manager", "DefaultBlockIOAccounting", config_parse_bool, 0, &arg_default_blockio_accounting },
723 { "Manager", "DefaultMemoryAccounting", config_parse_bool, 0, &arg_default_memory_accounting },
724 { "Manager", "DefaultTasksAccounting", config_parse_bool, 0, &arg_default_tasks_accounting },
725 { "Manager", "DefaultTasksMax", config_parse_tasks_max, 0, &arg_default_tasks_max },
726 { "Manager", "CtrlAltDelBurstAction", config_parse_emergency_action, 0, &arg_cad_burst_action },
727 {}
728 };
729
730 const char *fn, *conf_dirs_nulstr;
731
732 fn = arg_system ?
733 PKGSYSCONFDIR "/system.conf" :
734 PKGSYSCONFDIR "/user.conf";
735
736 conf_dirs_nulstr = arg_system ?
737 CONF_PATHS_NULSTR("systemd/system.conf.d") :
738 CONF_PATHS_NULSTR("systemd/user.conf.d");
739
740 (void) config_parse_many_nulstr(fn, conf_dirs_nulstr, "Manager\0", config_item_table_lookup, items, CONFIG_PARSE_WARN, NULL);
741
742 /* Traditionally "0" was used to turn off the default unit timeouts. Fix this up so that we used USEC_INFINITY
743 * like everywhere else. */
744 if (arg_default_timeout_start_usec <= 0)
745 arg_default_timeout_start_usec = USEC_INFINITY;
746 if (arg_default_timeout_stop_usec <= 0)
747 arg_default_timeout_stop_usec = USEC_INFINITY;
748
749 return 0;
750 }
751
752 static void set_manager_defaults(Manager *m) {
753
754 assert(m);
755
756 /* Propagates the various default unit property settings into the manager object, i.e. properties that do not
757 * affect the manager itself, but are just what newly allocated units will have set if they haven't set
758 * anything else. (Also see set_manager_settings() for the settings that affect the manager's own behaviour) */
759
760 m->default_timer_accuracy_usec = arg_default_timer_accuracy_usec;
761 m->default_std_output = arg_default_std_output;
762 m->default_std_error = arg_default_std_error;
763 m->default_timeout_start_usec = arg_default_timeout_start_usec;
764 m->default_timeout_stop_usec = arg_default_timeout_stop_usec;
765 m->default_restart_usec = arg_default_restart_usec;
766 m->default_start_limit_interval = arg_default_start_limit_interval;
767 m->default_start_limit_burst = arg_default_start_limit_burst;
768
769 /* On 4.15+ with unified hierarchy, CPU accounting is essentially free as it doesn't require the CPU
770 * controller to be enabled, so the default is to enable it unless we got told otherwise. */
771 if (arg_default_cpu_accounting >= 0)
772 m->default_cpu_accounting = arg_default_cpu_accounting;
773 else
774 m->default_cpu_accounting = cpu_accounting_is_cheap();
775
776 m->default_io_accounting = arg_default_io_accounting;
777 m->default_ip_accounting = arg_default_ip_accounting;
778 m->default_blockio_accounting = arg_default_blockio_accounting;
779 m->default_memory_accounting = arg_default_memory_accounting;
780 m->default_tasks_accounting = arg_default_tasks_accounting;
781 m->default_tasks_max = arg_default_tasks_max;
782
783 (void) manager_set_default_rlimits(m, arg_default_rlimit);
784
785 (void) manager_default_environment(m);
786 (void) manager_transient_environment_add(m, arg_default_environment);
787 }
788
789 static void set_manager_settings(Manager *m) {
790
791 assert(m);
792
793 /* Propagates the various manager settings into the manager object, i.e. properties that effect the manager
794 * itself (as opposed to just being inherited into newly allocated units, see set_manager_defaults() above). */
795
796 m->confirm_spawn = arg_confirm_spawn;
797 m->service_watchdogs = arg_service_watchdogs;
798 m->runtime_watchdog = arg_runtime_watchdog;
799 m->shutdown_watchdog = arg_shutdown_watchdog;
800 m->cad_burst_action = arg_cad_burst_action;
801
802 manager_set_show_status(m, arg_show_status);
803 }
804
805 static int parse_argv(int argc, char *argv[]) {
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_BUS_PROPERTIES,
819 ARG_DUMP_CORE,
820 ARG_CRASH_CHVT,
821 ARG_CRASH_SHELL,
822 ARG_CRASH_REBOOT,
823 ARG_CONFIRM_SPAWN,
824 ARG_SHOW_STATUS,
825 ARG_DESERIALIZE,
826 ARG_SWITCHED_ROOT,
827 ARG_DEFAULT_STD_OUTPUT,
828 ARG_DEFAULT_STD_ERROR,
829 ARG_MACHINE_ID,
830 ARG_SERVICE_WATCHDOGS,
831 };
832
833 static const struct option options[] = {
834 { "log-level", required_argument, NULL, ARG_LOG_LEVEL },
835 { "log-target", required_argument, NULL, ARG_LOG_TARGET },
836 { "log-color", optional_argument, NULL, ARG_LOG_COLOR },
837 { "log-location", optional_argument, NULL, ARG_LOG_LOCATION },
838 { "unit", required_argument, NULL, ARG_UNIT },
839 { "system", no_argument, NULL, ARG_SYSTEM },
840 { "user", no_argument, NULL, ARG_USER },
841 { "test", no_argument, NULL, ARG_TEST },
842 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
843 { "help", no_argument, NULL, 'h' },
844 { "version", no_argument, NULL, ARG_VERSION },
845 { "dump-configuration-items", no_argument, NULL, ARG_DUMP_CONFIGURATION_ITEMS },
846 { "dump-bus-properties", no_argument, NULL, ARG_DUMP_BUS_PROPERTIES },
847 { "dump-core", optional_argument, NULL, ARG_DUMP_CORE },
848 { "crash-chvt", required_argument, NULL, ARG_CRASH_CHVT },
849 { "crash-shell", optional_argument, NULL, ARG_CRASH_SHELL },
850 { "crash-reboot", optional_argument, NULL, ARG_CRASH_REBOOT },
851 { "confirm-spawn", optional_argument, NULL, ARG_CONFIRM_SPAWN },
852 { "show-status", optional_argument, NULL, ARG_SHOW_STATUS },
853 { "deserialize", required_argument, NULL, ARG_DESERIALIZE },
854 { "switched-root", no_argument, NULL, ARG_SWITCHED_ROOT },
855 { "default-standard-output", required_argument, NULL, ARG_DEFAULT_STD_OUTPUT, },
856 { "default-standard-error", required_argument, NULL, ARG_DEFAULT_STD_ERROR, },
857 { "machine-id", required_argument, NULL, ARG_MACHINE_ID },
858 { "service-watchdogs", required_argument, NULL, ARG_SERVICE_WATCHDOGS },
859 {}
860 };
861
862 int c, r;
863
864 assert(argc >= 1);
865 assert(argv);
866
867 if (getpid_cached() == 1)
868 opterr = 0;
869
870 while ((c = getopt_long(argc, argv, "hDbsz:", options, NULL)) >= 0)
871
872 switch (c) {
873
874 case ARG_LOG_LEVEL:
875 r = log_set_max_level_from_string(optarg);
876 if (r < 0)
877 return log_error_errno(r, "Failed to parse log level \"%s\": %m", optarg);
878
879 break;
880
881 case ARG_LOG_TARGET:
882 r = log_set_target_from_string(optarg);
883 if (r < 0)
884 return log_error_errno(r, "Failed to parse log target \"%s\": %m", optarg);
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 return log_error_errno(r, "Failed to parse log color setting \"%s\": %m",
894 optarg);
895 } else
896 log_show_color(true);
897
898 break;
899
900 case ARG_LOG_LOCATION:
901 if (optarg) {
902 r = log_show_location_from_string(optarg);
903 if (r < 0)
904 return log_error_errno(r, "Failed to parse log location setting \"%s\": %m",
905 optarg);
906 } else
907 log_show_location(true);
908
909 break;
910
911 case ARG_DEFAULT_STD_OUTPUT:
912 r = exec_output_from_string(optarg);
913 if (r < 0)
914 return log_error_errno(r, "Failed to parse default standard output setting \"%s\": %m",
915 optarg);
916 arg_default_std_output = r;
917 break;
918
919 case ARG_DEFAULT_STD_ERROR:
920 r = exec_output_from_string(optarg);
921 if (r < 0)
922 return log_error_errno(r, "Failed to parse default standard error output setting \"%s\": %m",
923 optarg);
924 arg_default_std_error = r;
925 break;
926
927 case ARG_UNIT:
928 r = free_and_strdup(&arg_default_unit, optarg);
929 if (r < 0)
930 return log_error_errno(r, "Failed to set default unit \"%s\": %m", optarg);
931
932 break;
933
934 case ARG_SYSTEM:
935 arg_system = true;
936 break;
937
938 case ARG_USER:
939 arg_system = false;
940 break;
941
942 case ARG_TEST:
943 arg_action = ACTION_TEST;
944 break;
945
946 case ARG_NO_PAGER:
947 arg_pager_flags |= PAGER_DISABLE;
948 break;
949
950 case ARG_VERSION:
951 arg_action = ACTION_VERSION;
952 break;
953
954 case ARG_DUMP_CONFIGURATION_ITEMS:
955 arg_action = ACTION_DUMP_CONFIGURATION_ITEMS;
956 break;
957
958 case ARG_DUMP_BUS_PROPERTIES:
959 arg_action = ACTION_DUMP_BUS_PROPERTIES;
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\": %m",
969 optarg);
970 arg_dump_core = r;
971 }
972 break;
973
974 case ARG_CRASH_CHVT:
975 r = parse_crash_chvt(optarg);
976 if (r < 0)
977 return log_error_errno(r, "Failed to parse crash virtual terminal index: \"%s\": %m",
978 optarg);
979 break;
980
981 case ARG_CRASH_SHELL:
982 if (!optarg)
983 arg_crash_shell = true;
984 else {
985 r = parse_boolean(optarg);
986 if (r < 0)
987 return log_error_errno(r, "Failed to parse crash shell boolean: \"%s\": %m",
988 optarg);
989 arg_crash_shell = r;
990 }
991 break;
992
993 case ARG_CRASH_REBOOT:
994 if (!optarg)
995 arg_crash_reboot = true;
996 else {
997 r = parse_boolean(optarg);
998 if (r < 0)
999 return log_error_errno(r, "Failed to parse crash shell boolean: \"%s\": %m",
1000 optarg);
1001 arg_crash_reboot = r;
1002 }
1003 break;
1004
1005 case ARG_CONFIRM_SPAWN:
1006 arg_confirm_spawn = mfree(arg_confirm_spawn);
1007
1008 r = parse_confirm_spawn(optarg, &arg_confirm_spawn);
1009 if (r < 0)
1010 return log_error_errno(r, "Failed to parse confirm spawn option: \"%s\": %m",
1011 optarg);
1012 break;
1013
1014 case ARG_SERVICE_WATCHDOGS:
1015 r = parse_boolean(optarg);
1016 if (r < 0)
1017 return log_error_errno(r, "Failed to parse service watchdogs boolean: \"%s\": %m",
1018 optarg);
1019 arg_service_watchdogs = r;
1020 break;
1021
1022 case ARG_SHOW_STATUS:
1023 if (optarg) {
1024 r = parse_show_status(optarg, &arg_show_status);
1025 if (r < 0)
1026 return log_error_errno(r, "Failed to parse show status boolean: \"%s\": %m",
1027 optarg);
1028 } else
1029 arg_show_status = SHOW_STATUS_YES;
1030 break;
1031
1032 case ARG_DESERIALIZE: {
1033 int fd;
1034 FILE *f;
1035
1036 r = safe_atoi(optarg, &fd);
1037 if (r < 0)
1038 log_error_errno(r, "Failed to parse deserialize option \"%s\": %m", optarg);
1039 if (fd < 0)
1040 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1041 "Invalid deserialize fd: %d",
1042 fd);
1043
1044 (void) fd_cloexec(fd, true);
1045
1046 f = fdopen(fd, "r");
1047 if (!f)
1048 return log_error_errno(errno, "Failed to open serialization fd %d: %m", fd);
1049
1050 safe_fclose(arg_serialization);
1051 arg_serialization = f;
1052
1053 break;
1054 }
1055
1056 case ARG_SWITCHED_ROOT:
1057 arg_switched_root = true;
1058 break;
1059
1060 case ARG_MACHINE_ID:
1061 r = set_machine_id(optarg);
1062 if (r < 0)
1063 return log_error_errno(r, "MachineID '%s' is not valid: %m", optarg);
1064 break;
1065
1066 case 'h':
1067 arg_action = ACTION_HELP;
1068 break;
1069
1070 case 'D':
1071 log_set_max_level(LOG_DEBUG);
1072 break;
1073
1074 case 'b':
1075 case 's':
1076 case 'z':
1077 /* Just to eat away the sysvinit kernel
1078 * cmdline args without getopt() error
1079 * messages that we'll parse in
1080 * parse_proc_cmdline_word() or ignore. */
1081
1082 case '?':
1083 if (getpid_cached() != 1)
1084 return -EINVAL;
1085 else
1086 return 0;
1087
1088 default:
1089 assert_not_reached("Unhandled option code.");
1090 }
1091
1092 if (optind < argc && getpid_cached() != 1) {
1093 /* Hmm, when we aren't run as init system
1094 * let's complain about excess arguments */
1095
1096 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1097 "Excess arguments.");
1098 }
1099
1100 return 0;
1101 }
1102
1103 static int help(void) {
1104 _cleanup_free_ char *link = NULL;
1105 int r;
1106
1107 r = terminal_urlify_man("systemd", "1", &link);
1108 if (r < 0)
1109 return log_oom();
1110
1111 printf("%s [OPTIONS...]\n\n"
1112 "Starts up and maintains the system or user services.\n\n"
1113 " -h --help Show this help\n"
1114 " --version Show version\n"
1115 " --test Determine startup sequence, dump it and exit\n"
1116 " --no-pager Do not pipe output into a pager\n"
1117 " --dump-configuration-items Dump understood unit configuration items\n"
1118 " --dump-bus-properties Dump exposed bus properties\n"
1119 " --unit=UNIT Set default unit\n"
1120 " --system Run a system instance, even if PID != 1\n"
1121 " --user Run a user instance\n"
1122 " --dump-core[=BOOL] Dump core on crash\n"
1123 " --crash-vt=NR Change to specified VT on crash\n"
1124 " --crash-reboot[=BOOL] Reboot on crash\n"
1125 " --crash-shell[=BOOL] Run shell on crash\n"
1126 " --confirm-spawn[=BOOL] Ask for confirmation when spawning processes\n"
1127 " --show-status[=BOOL] Show status updates on the console during bootup\n"
1128 " --log-target=TARGET Set log target (console, journal, kmsg, journal-or-kmsg, null)\n"
1129 " --log-level=LEVEL Set log level (debug, info, notice, warning, err, crit, alert, emerg)\n"
1130 " --log-color[=BOOL] Highlight important log messages\n"
1131 " --log-location[=BOOL] Include code location in log messages\n"
1132 " --default-standard-output= Set default standard output for services\n"
1133 " --default-standard-error= Set default standard error output for services\n"
1134 "\nSee the %s for details.\n"
1135 , program_invocation_short_name
1136 , link
1137 );
1138
1139 return 0;
1140 }
1141
1142 static int prepare_reexecute(
1143 Manager *m,
1144 FILE **ret_f,
1145 FDSet **ret_fds,
1146 bool switching_root) {
1147
1148 _cleanup_fdset_free_ FDSet *fds = NULL;
1149 _cleanup_fclose_ FILE *f = NULL;
1150 int r;
1151
1152 assert(m);
1153 assert(ret_f);
1154 assert(ret_fds);
1155
1156 r = manager_open_serialization(m, &f);
1157 if (r < 0)
1158 return log_error_errno(r, "Failed to create serialization file: %m");
1159
1160 /* Make sure nothing is really destructed when we shut down */
1161 m->n_reloading++;
1162 bus_manager_send_reloading(m, true);
1163
1164 fds = fdset_new();
1165 if (!fds)
1166 return log_oom();
1167
1168 r = manager_serialize(m, f, fds, switching_root);
1169 if (r < 0)
1170 return r;
1171
1172 if (fseeko(f, 0, SEEK_SET) == (off_t) -1)
1173 return log_error_errno(errno, "Failed to rewind serialization fd: %m");
1174
1175 r = fd_cloexec(fileno(f), false);
1176 if (r < 0)
1177 return log_error_errno(r, "Failed to disable O_CLOEXEC for serialization: %m");
1178
1179 r = fdset_cloexec(fds, false);
1180 if (r < 0)
1181 return log_error_errno(r, "Failed to disable O_CLOEXEC for serialization fds: %m");
1182
1183 *ret_f = TAKE_PTR(f);
1184 *ret_fds = TAKE_PTR(fds);
1185
1186 return 0;
1187 }
1188
1189 static void bump_file_max_and_nr_open(void) {
1190
1191 /* Let's bump fs.file-max and fs.nr_open to their respective maximums. On current kernels large numbers of file
1192 * descriptors are no longer a performance problem and their memory is properly tracked by memcg, thus counting
1193 * them and limiting them in another two layers of limits is unnecessary and just complicates things. This
1194 * function hence turns off 2 of the 4 levels of limits on file descriptors, and makes RLIMIT_NOLIMIT (soft +
1195 * hard) the only ones that really matter. */
1196
1197 #if BUMP_PROC_SYS_FS_FILE_MAX || BUMP_PROC_SYS_FS_NR_OPEN
1198 _cleanup_free_ char *t = NULL;
1199 int r;
1200 #endif
1201
1202 #if BUMP_PROC_SYS_FS_FILE_MAX
1203 /* I so wanted to use STRINGIFY(ULONG_MAX) here, but alas we can't as glibc/gcc define that as
1204 * "(0x7fffffffffffffffL * 2UL + 1UL)". Seriously. 😢 */
1205 if (asprintf(&t, "%lu\n", ULONG_MAX) < 0) {
1206 log_oom();
1207 return;
1208 }
1209
1210 r = sysctl_write("fs/file-max", t);
1211 if (r < 0)
1212 log_full_errno(IN_SET(r, -EROFS, -EPERM, -EACCES) ? LOG_DEBUG : LOG_WARNING, r, "Failed to bump fs.file-max, ignoring: %m");
1213 #endif
1214
1215 #if BUMP_PROC_SYS_FS_FILE_MAX && BUMP_PROC_SYS_FS_NR_OPEN
1216 t = mfree(t);
1217 #endif
1218
1219 #if BUMP_PROC_SYS_FS_NR_OPEN
1220 int v = INT_MAX;
1221
1222 /* Arg! The kernel enforces maximum and minimum values on the fs.nr_open, but we don't really know what they
1223 * are. The expression by which the maximum is determined is dependent on the architecture, and is something we
1224 * don't really want to copy to userspace, as it is dependent on implementation details of the kernel. Since
1225 * the kernel doesn't expose the maximum value to us, we can only try and hope. Hence, let's start with
1226 * INT_MAX, and then keep halving the value until we find one that works. Ugly? Yes, absolutely, but kernel
1227 * APIs are kernel APIs, so what do can we do... 🤯 */
1228
1229 for (;;) {
1230 int k;
1231
1232 v &= ~(__SIZEOF_POINTER__ - 1); /* Round down to next multiple of the pointer size */
1233 if (v < 1024) {
1234 log_warning("Can't bump fs.nr_open, value too small.");
1235 break;
1236 }
1237
1238 k = read_nr_open();
1239 if (k < 0) {
1240 log_error_errno(k, "Failed to read fs.nr_open: %m");
1241 break;
1242 }
1243 if (k >= v) { /* Already larger */
1244 log_debug("Skipping bump, value is already larger.");
1245 break;
1246 }
1247
1248 if (asprintf(&t, "%i\n", v) < 0) {
1249 log_oom();
1250 return;
1251 }
1252
1253 r = sysctl_write("fs/nr_open", t);
1254 t = mfree(t);
1255 if (r == -EINVAL) {
1256 log_debug("Couldn't write fs.nr_open as %i, halving it.", v);
1257 v /= 2;
1258 continue;
1259 }
1260 if (r < 0) {
1261 log_full_errno(IN_SET(r, -EROFS, -EPERM, -EACCES) ? LOG_DEBUG : LOG_WARNING, r, "Failed to bump fs.nr_open, ignoring: %m");
1262 break;
1263 }
1264
1265 log_debug("Successfully bumped fs.nr_open to %i", v);
1266 break;
1267 }
1268 #endif
1269 }
1270
1271 static int bump_rlimit_nofile(struct rlimit *saved_rlimit) {
1272 int r, nr;
1273
1274 assert(saved_rlimit);
1275
1276 /* Save the original RLIMIT_NOFILE so that we can reset it later when transitioning from the initrd to the main
1277 * systemd or suchlike. */
1278 if (getrlimit(RLIMIT_NOFILE, saved_rlimit) < 0)
1279 return log_warning_errno(errno, "Reading RLIMIT_NOFILE failed, ignoring: %m");
1280
1281 /* Get the underlying absolute limit the kernel enforces */
1282 nr = read_nr_open();
1283
1284 /* Make sure forked processes get limits based on the original kernel setting */
1285 if (!arg_default_rlimit[RLIMIT_NOFILE]) {
1286 struct rlimit *rl;
1287
1288 rl = newdup(struct rlimit, saved_rlimit, 1);
1289 if (!rl)
1290 return log_oom();
1291
1292 /* Bump the hard limit for system services to a substantially higher value. The default hard limit
1293 * current kernels set is pretty low (4K), mostly for historical reasons. According to kernel
1294 * developers, the fd handling in recent kernels has been optimized substantially enough, so that we
1295 * can bump the limit now, without paying too high a price in memory or performance. Note however that
1296 * we only bump the hard limit, not the soft limit. That's because select() works the way it works, and
1297 * chokes on fds >= 1024. If we'd bump the soft limit globally, it might accidentally happen to
1298 * unexpecting programs that they get fds higher than what they can process using select(). By only
1299 * bumping the hard limit but leaving the low limit as it is we avoid this pitfall: programs that are
1300 * written by folks aware of the select() problem in mind (and thus use poll()/epoll instead of
1301 * select(), the way everybody should) can explicitly opt into high fds by bumping their soft limit
1302 * beyond 1024, to the hard limit we pass. */
1303 if (arg_system)
1304 rl->rlim_max = MIN((rlim_t) nr, MAX(rl->rlim_max, (rlim_t) HIGH_RLIMIT_NOFILE));
1305
1306 arg_default_rlimit[RLIMIT_NOFILE] = rl;
1307 }
1308
1309 /* Bump up the resource limit for ourselves substantially, all the way to the maximum the kernel allows, for
1310 * both hard and soft. */
1311 r = setrlimit_closest(RLIMIT_NOFILE, &RLIMIT_MAKE_CONST(nr));
1312 if (r < 0)
1313 return log_warning_errno(r, "Setting RLIMIT_NOFILE failed, ignoring: %m");
1314
1315 return 0;
1316 }
1317
1318 static int bump_rlimit_memlock(struct rlimit *saved_rlimit) {
1319 int r;
1320
1321 assert(saved_rlimit);
1322
1323 /* BPF_MAP_TYPE_LPM_TRIE bpf maps are charged against RLIMIT_MEMLOCK, even if we have CAP_IPC_LOCK which should
1324 * normally disable such checks. We need them to implement IPAccessAllow= and IPAccessDeny=, hence let's bump
1325 * the value high enough for our user. */
1326
1327 if (getrlimit(RLIMIT_MEMLOCK, saved_rlimit) < 0)
1328 return log_warning_errno(errno, "Reading RLIMIT_MEMLOCK failed, ignoring: %m");
1329
1330 r = setrlimit_closest(RLIMIT_MEMLOCK, &RLIMIT_MAKE_CONST(HIGH_RLIMIT_MEMLOCK));
1331 if (r < 0)
1332 return log_warning_errno(r, "Setting RLIMIT_MEMLOCK failed, ignoring: %m");
1333
1334 return 0;
1335 }
1336
1337 static void test_usr(void) {
1338
1339 /* Check that /usr is not a separate fs */
1340
1341 if (dir_is_empty("/usr") <= 0)
1342 return;
1343
1344 log_warning("/usr appears to be on its own filesystem and is not already mounted. This is not a supported setup. "
1345 "Some things will probably break (sometimes even silently) in mysterious ways. "
1346 "Consult http://freedesktop.org/wiki/Software/systemd/separate-usr-is-broken for more information.");
1347 }
1348
1349 static int enforce_syscall_archs(Set *archs) {
1350 #if HAVE_SECCOMP
1351 int r;
1352
1353 if (!is_seccomp_available())
1354 return 0;
1355
1356 r = seccomp_restrict_archs(arg_syscall_archs);
1357 if (r < 0)
1358 return log_error_errno(r, "Failed to enforce system call architecture restrication: %m");
1359 #endif
1360 return 0;
1361 }
1362
1363 static int status_welcome(void) {
1364 _cleanup_free_ char *pretty_name = NULL, *ansi_color = NULL;
1365 int r;
1366
1367 if (IN_SET(arg_show_status, SHOW_STATUS_NO, SHOW_STATUS_AUTO))
1368 return 0;
1369
1370 r = parse_os_release(NULL,
1371 "PRETTY_NAME", &pretty_name,
1372 "ANSI_COLOR", &ansi_color,
1373 NULL);
1374 if (r < 0)
1375 log_full_errno(r == -ENOENT ? LOG_DEBUG : LOG_WARNING, r,
1376 "Failed to read os-release file, ignoring: %m");
1377
1378 if (log_get_show_color())
1379 return status_printf(NULL, 0,
1380 "\nWelcome to \x1B[%sm%s\x1B[0m!\n",
1381 isempty(ansi_color) ? "1" : ansi_color,
1382 isempty(pretty_name) ? "Linux" : pretty_name);
1383 else
1384 return status_printf(NULL, 0,
1385 "\nWelcome to %s!\n",
1386 isempty(pretty_name) ? "Linux" : pretty_name);
1387 }
1388
1389 static int write_container_id(void) {
1390 const char *c;
1391 int r;
1392
1393 c = getenv("container");
1394 if (isempty(c))
1395 return 0;
1396
1397 RUN_WITH_UMASK(0022)
1398 r = write_string_file("/run/systemd/container", c, WRITE_STRING_FILE_CREATE);
1399 if (r < 0)
1400 return log_warning_errno(r, "Failed to write /run/systemd/container, ignoring: %m");
1401
1402 return 1;
1403 }
1404
1405 static int bump_unix_max_dgram_qlen(void) {
1406 _cleanup_free_ char *qlen = NULL;
1407 unsigned long v;
1408 int r;
1409
1410 /* Let's bump the net.unix.max_dgram_qlen sysctl. The kernel default of 16 is simply too low. We set the value
1411 * really really early during boot, so that it is actually applied to all our sockets, including the
1412 * $NOTIFY_SOCKET one. */
1413
1414 r = read_one_line_file("/proc/sys/net/unix/max_dgram_qlen", &qlen);
1415 if (r < 0)
1416 return log_full_errno(r == -ENOENT ? LOG_DEBUG : LOG_WARNING, r, "Failed to read AF_UNIX datagram queue length, ignoring: %m");
1417
1418 r = safe_atolu(qlen, &v);
1419 if (r < 0)
1420 return log_warning_errno(r, "Failed to parse AF_UNIX datagram queue length '%s', ignoring: %m", qlen);
1421
1422 if (v >= DEFAULT_UNIX_MAX_DGRAM_QLEN)
1423 return 0;
1424
1425 r = write_string_filef("/proc/sys/net/unix/max_dgram_qlen", WRITE_STRING_FILE_DISABLE_BUFFER, "%lu", DEFAULT_UNIX_MAX_DGRAM_QLEN);
1426 if (r < 0)
1427 return log_full_errno(IN_SET(r, -EROFS, -EPERM, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
1428 "Failed to bump AF_UNIX datagram queue length, ignoring: %m");
1429
1430 return 1;
1431 }
1432
1433 static int fixup_environment(void) {
1434 _cleanup_free_ char *term = NULL;
1435 const char *t;
1436 int r;
1437
1438 /* Only fix up the environment when we are started as PID 1 */
1439 if (getpid_cached() != 1)
1440 return 0;
1441
1442 /* We expect the environment to be set correctly if run inside a container. */
1443 if (detect_container() > 0)
1444 return 0;
1445
1446 /* When started as PID1, the kernel uses /dev/console for our stdios and uses TERM=linux whatever the backend
1447 * device used by the console. We try to make a better guess here since some consoles might not have support
1448 * for color mode for example.
1449 *
1450 * However if TERM was configured through the kernel command line then leave it alone. */
1451 r = proc_cmdline_get_key("TERM", 0, &term);
1452 if (r < 0)
1453 return r;
1454
1455 t = term ?: default_term_for_tty("/dev/console");
1456
1457 if (setenv("TERM", t, 1) < 0)
1458 return -errno;
1459
1460 return 0;
1461 }
1462
1463 static void redirect_telinit(int argc, char *argv[]) {
1464
1465 /* This is compatibility support for SysV, where calling init as a user is identical to telinit. */
1466
1467 #if HAVE_SYSV_COMPAT
1468 if (getpid_cached() == 1)
1469 return;
1470
1471 if (!strstr(program_invocation_short_name, "init"))
1472 return;
1473
1474 execv(SYSTEMCTL_BINARY_PATH, argv);
1475 log_error_errno(errno, "Failed to exec " SYSTEMCTL_BINARY_PATH ": %m");
1476 exit(EXIT_FAILURE);
1477 #endif
1478 }
1479
1480 static int become_shutdown(
1481 const char *shutdown_verb,
1482 int retval) {
1483
1484 char log_level[DECIMAL_STR_MAX(int) + 1],
1485 exit_code[DECIMAL_STR_MAX(uint8_t) + 1],
1486 timeout[DECIMAL_STR_MAX(usec_t) + 1];
1487
1488 const char* command_line[13] = {
1489 SYSTEMD_SHUTDOWN_BINARY_PATH,
1490 shutdown_verb,
1491 "--timeout", timeout,
1492 "--log-level", log_level,
1493 "--log-target",
1494 };
1495
1496 _cleanup_strv_free_ char **env_block = NULL;
1497 size_t pos = 7;
1498 int r;
1499
1500 assert(shutdown_verb);
1501 assert(!command_line[pos]);
1502 env_block = strv_copy(environ);
1503
1504 xsprintf(log_level, "%d", log_get_max_level());
1505 xsprintf(timeout, "%" PRI_USEC "us", arg_default_timeout_stop_usec);
1506
1507 switch (log_get_target()) {
1508
1509 case LOG_TARGET_KMSG:
1510 case LOG_TARGET_JOURNAL_OR_KMSG:
1511 case LOG_TARGET_SYSLOG_OR_KMSG:
1512 command_line[pos++] = "kmsg";
1513 break;
1514
1515 case LOG_TARGET_NULL:
1516 command_line[pos++] = "null";
1517 break;
1518
1519 case LOG_TARGET_CONSOLE:
1520 default:
1521 command_line[pos++] = "console";
1522 break;
1523 };
1524
1525 if (log_get_show_color())
1526 command_line[pos++] = "--log-color";
1527
1528 if (log_get_show_location())
1529 command_line[pos++] = "--log-location";
1530
1531 if (streq(shutdown_verb, "exit")) {
1532 command_line[pos++] = "--exit-code";
1533 command_line[pos++] = exit_code;
1534 xsprintf(exit_code, "%d", retval);
1535 }
1536
1537 assert(pos < ELEMENTSOF(command_line));
1538
1539 if (streq(shutdown_verb, "reboot") &&
1540 arg_shutdown_watchdog > 0 &&
1541 arg_shutdown_watchdog != USEC_INFINITY) {
1542
1543 char *e;
1544
1545 /* If we reboot let's set the shutdown
1546 * watchdog and tell the shutdown binary to
1547 * repeatedly ping it */
1548 r = watchdog_set_timeout(&arg_shutdown_watchdog);
1549 watchdog_close(r < 0);
1550
1551 /* Tell the binary how often to ping, ignore failure */
1552 if (asprintf(&e, "WATCHDOG_USEC="USEC_FMT, arg_shutdown_watchdog) > 0)
1553 (void) strv_consume(&env_block, e);
1554
1555 if (arg_watchdog_device &&
1556 asprintf(&e, "WATCHDOG_DEVICE=%s", arg_watchdog_device) > 0)
1557 (void) strv_consume(&env_block, e);
1558 } else
1559 watchdog_close(true);
1560
1561 /* Avoid the creation of new processes forked by the
1562 * kernel; at this point, we will not listen to the
1563 * signals anyway */
1564 if (detect_container() <= 0)
1565 (void) cg_uninstall_release_agent(SYSTEMD_CGROUP_CONTROLLER);
1566
1567 execve(SYSTEMD_SHUTDOWN_BINARY_PATH, (char **) command_line, env_block);
1568 return -errno;
1569 }
1570
1571 static void initialize_clock(void) {
1572 int r;
1573
1574 if (clock_is_localtime(NULL) > 0) {
1575 int min;
1576
1577 /*
1578 * The very first call of settimeofday() also does a time warp in the kernel.
1579 *
1580 * In the rtc-in-local time mode, we set the kernel's timezone, and rely on external tools to take care
1581 * of maintaining the RTC and do all adjustments. This matches the behavior of Windows, which leaves
1582 * the RTC alone if the registry tells that the RTC runs in UTC.
1583 */
1584 r = clock_set_timezone(&min);
1585 if (r < 0)
1586 log_error_errno(r, "Failed to apply local time delta, ignoring: %m");
1587 else
1588 log_info("RTC configured in localtime, applying delta of %i minutes to system time.", min);
1589
1590 } else if (!in_initrd()) {
1591 /*
1592 * Do a dummy very first call to seal the kernel's time warp magic.
1593 *
1594 * Do not call this from inside the initrd. The initrd might not carry /etc/adjtime with LOCAL, but the
1595 * real system could be set up that way. In such case, we need to delay the time-warp or the sealing
1596 * until we reach the real system.
1597 *
1598 * Do no set the kernel's timezone. The concept of local time cannot be supported reliably, the time
1599 * will jump or be incorrect at every daylight saving time change. All kernel local time concepts will
1600 * be treated as UTC that way.
1601 */
1602 (void) clock_reset_timewarp();
1603 }
1604
1605 r = clock_apply_epoch();
1606 if (r < 0)
1607 log_error_errno(r, "Current system time is before build time, but cannot correct: %m");
1608 else if (r > 0)
1609 log_info("System time before build time, advancing clock.");
1610 }
1611
1612 static void initialize_coredump(bool skip_setup) {
1613 #if ENABLE_COREDUMP
1614 if (getpid_cached() != 1)
1615 return;
1616
1617 /* Don't limit the core dump size, so that coredump handlers such as systemd-coredump (which honour the limit)
1618 * will process core dumps for system services by default. */
1619 if (setrlimit(RLIMIT_CORE, &RLIMIT_MAKE_CONST(RLIM_INFINITY)) < 0)
1620 log_warning_errno(errno, "Failed to set RLIMIT_CORE: %m");
1621
1622 /* But at the same time, turn off the core_pattern logic by default, so that no
1623 * coredumps are stored until the systemd-coredump tool is enabled via
1624 * sysctl. However it can be changed via the kernel command line later so core
1625 * dumps can still be generated during early startup and in initramfs. */
1626 if (!skip_setup)
1627 disable_coredumps();
1628 #endif
1629 }
1630
1631 static void initialize_core_pattern(bool skip_setup) {
1632 int r;
1633
1634 if (skip_setup || !arg_early_core_pattern)
1635 return;
1636
1637 if (getpid_cached() != 1)
1638 return;
1639
1640 r = write_string_file("/proc/sys/kernel/core_pattern", arg_early_core_pattern, WRITE_STRING_FILE_DISABLE_BUFFER);
1641 if (r < 0)
1642 log_warning_errno(r, "Failed to write '%s' to /proc/sys/kernel/core_pattern, ignoring: %m", arg_early_core_pattern);
1643 }
1644
1645 static void do_reexecute(
1646 int argc,
1647 char *argv[],
1648 const struct rlimit *saved_rlimit_nofile,
1649 const struct rlimit *saved_rlimit_memlock,
1650 FDSet *fds,
1651 const char *switch_root_dir,
1652 const char *switch_root_init,
1653 const char **ret_error_message) {
1654
1655 unsigned i, j, args_size;
1656 const char **args;
1657 int r;
1658
1659 assert(saved_rlimit_nofile);
1660 assert(saved_rlimit_memlock);
1661 assert(ret_error_message);
1662
1663 /* Close and disarm the watchdog, so that the new instance can reinitialize it, but doesn't get rebooted while
1664 * we do that */
1665 watchdog_close(true);
1666
1667 /* Reset the RLIMIT_NOFILE to the kernel default, so that the new systemd can pass the kernel default to its
1668 * child processes */
1669
1670 if (saved_rlimit_nofile->rlim_cur > 0)
1671 (void) setrlimit(RLIMIT_NOFILE, saved_rlimit_nofile);
1672 if (saved_rlimit_memlock->rlim_cur != (rlim_t) -1)
1673 (void) setrlimit(RLIMIT_MEMLOCK, saved_rlimit_memlock);
1674
1675 if (switch_root_dir) {
1676 /* Kill all remaining processes from the initrd, but don't wait for them, so that we can handle the
1677 * SIGCHLD for them after deserializing. */
1678 broadcast_signal(SIGTERM, false, true, arg_default_timeout_stop_usec);
1679
1680 /* And switch root with MS_MOVE, because we remove the old directory afterwards and detach it. */
1681 r = switch_root(switch_root_dir, "/mnt", true, MS_MOVE);
1682 if (r < 0)
1683 log_error_errno(r, "Failed to switch root, trying to continue: %m");
1684 }
1685
1686 args_size = MAX(6, argc+1);
1687 args = newa(const char*, args_size);
1688
1689 if (!switch_root_init) {
1690 char sfd[DECIMAL_STR_MAX(int) + 1];
1691
1692 /* First try to spawn ourselves with the right path, and with full serialization. We do this only if
1693 * the user didn't specify an explicit init to spawn. */
1694
1695 assert(arg_serialization);
1696 assert(fds);
1697
1698 xsprintf(sfd, "%i", fileno(arg_serialization));
1699
1700 i = 0;
1701 args[i++] = SYSTEMD_BINARY_PATH;
1702 if (switch_root_dir)
1703 args[i++] = "--switched-root";
1704 args[i++] = arg_system ? "--system" : "--user";
1705 args[i++] = "--deserialize";
1706 args[i++] = sfd;
1707 args[i++] = NULL;
1708
1709 assert(i <= args_size);
1710
1711 /*
1712 * We want valgrind to print its memory usage summary before reexecution. Valgrind won't do this is on
1713 * its own on exec(), but it will do it on exit(). Hence, to ensure we get a summary here, fork() off
1714 * a child, let it exit() cleanly, so that it prints the summary, and wait() for it in the parent,
1715 * before proceeding into the exec().
1716 */
1717 valgrind_summary_hack();
1718
1719 (void) execv(args[0], (char* const*) args);
1720 log_debug_errno(errno, "Failed to execute our own binary, trying fallback: %m");
1721 }
1722
1723 /* Try the fallback, if there is any, without any serialization. We pass the original argv[] and envp[]. (Well,
1724 * modulo the ordering changes due to getopt() in argv[], and some cleanups in envp[], but let's hope that
1725 * doesn't matter.) */
1726
1727 arg_serialization = safe_fclose(arg_serialization);
1728 fds = fdset_free(fds);
1729
1730 /* Reopen the console */
1731 (void) make_console_stdio();
1732
1733 for (j = 1, i = 1; j < (unsigned) argc; j++)
1734 args[i++] = argv[j];
1735 args[i++] = NULL;
1736 assert(i <= args_size);
1737
1738 /* Reenable any blocked signals, especially important if we switch from initial ramdisk to init=... */
1739 (void) reset_all_signal_handlers();
1740 (void) reset_signal_mask();
1741 (void) rlimit_nofile_safe();
1742
1743 if (switch_root_init) {
1744 args[0] = switch_root_init;
1745 (void) execv(args[0], (char* const*) args);
1746 log_warning_errno(errno, "Failed to execute configured init, trying fallback: %m");
1747 }
1748
1749 args[0] = "/sbin/init";
1750 (void) execv(args[0], (char* const*) args);
1751 r = -errno;
1752
1753 manager_status_printf(NULL, STATUS_TYPE_EMERGENCY,
1754 ANSI_HIGHLIGHT_RED " !! " ANSI_NORMAL,
1755 "Failed to execute /sbin/init");
1756
1757 if (r == -ENOENT) {
1758 log_warning("No /sbin/init, trying fallback");
1759
1760 args[0] = "/bin/sh";
1761 args[1] = NULL;
1762 (void) execv(args[0], (char* const*) args);
1763 log_error_errno(errno, "Failed to execute /bin/sh, giving up: %m");
1764 } else
1765 log_warning_errno(r, "Failed to execute /sbin/init, giving up: %m");
1766
1767 *ret_error_message = "Failed to execute fallback shell";
1768 }
1769
1770 static int invoke_main_loop(
1771 Manager *m,
1772 bool *ret_reexecute,
1773 int *ret_retval, /* Return parameters relevant for shutting down */
1774 const char **ret_shutdown_verb, /* … */
1775 FDSet **ret_fds, /* Return parameters for reexecuting */
1776 char **ret_switch_root_dir, /* … */
1777 char **ret_switch_root_init, /* … */
1778 const char **ret_error_message) {
1779
1780 int r;
1781
1782 assert(m);
1783 assert(ret_reexecute);
1784 assert(ret_retval);
1785 assert(ret_shutdown_verb);
1786 assert(ret_fds);
1787 assert(ret_switch_root_dir);
1788 assert(ret_switch_root_init);
1789 assert(ret_error_message);
1790
1791 for (;;) {
1792 r = manager_loop(m);
1793 if (r < 0) {
1794 *ret_error_message = "Failed to run main loop";
1795 return log_emergency_errno(r, "Failed to run main loop: %m");
1796 }
1797
1798 switch ((ManagerObjective) r) {
1799
1800 case MANAGER_RELOAD: {
1801 LogTarget saved_log_target;
1802 int saved_log_level;
1803
1804 log_info("Reloading.");
1805
1806 /* First, save any overridden log level/target, then parse the configuration file, which might
1807 * change the log level to new settings. */
1808
1809 saved_log_level = m->log_level_overridden ? log_get_max_level() : -1;
1810 saved_log_target = m->log_target_overridden ? log_get_target() : _LOG_TARGET_INVALID;
1811
1812 r = parse_config_file();
1813 if (r < 0)
1814 log_warning_errno(r, "Failed to parse config file, ignoring: %m");
1815
1816 set_manager_defaults(m);
1817
1818 if (saved_log_level >= 0)
1819 manager_override_log_level(m, saved_log_level);
1820 if (saved_log_target >= 0)
1821 manager_override_log_target(m, saved_log_target);
1822
1823 r = manager_reload(m);
1824 if (r < 0)
1825 /* Reloading failed before the point of no return. Let's continue running as if nothing happened. */
1826 m->objective = MANAGER_OK;
1827
1828 break;
1829 }
1830
1831 case MANAGER_REEXECUTE:
1832
1833 r = prepare_reexecute(m, &arg_serialization, ret_fds, false);
1834 if (r < 0) {
1835 *ret_error_message = "Failed to prepare for reexecution";
1836 return r;
1837 }
1838
1839 log_notice("Reexecuting.");
1840
1841 *ret_reexecute = true;
1842 *ret_retval = EXIT_SUCCESS;
1843 *ret_shutdown_verb = NULL;
1844 *ret_switch_root_dir = *ret_switch_root_init = NULL;
1845
1846 return 0;
1847
1848 case MANAGER_SWITCH_ROOT:
1849 if (!m->switch_root_init) {
1850 r = prepare_reexecute(m, &arg_serialization, ret_fds, true);
1851 if (r < 0) {
1852 *ret_error_message = "Failed to prepare for reexecution";
1853 return r;
1854 }
1855 } else
1856 *ret_fds = NULL;
1857
1858 log_notice("Switching root.");
1859
1860 *ret_reexecute = true;
1861 *ret_retval = EXIT_SUCCESS;
1862 *ret_shutdown_verb = NULL;
1863
1864 /* Steal the switch root parameters */
1865 *ret_switch_root_dir = m->switch_root;
1866 *ret_switch_root_init = m->switch_root_init;
1867 m->switch_root = m->switch_root_init = NULL;
1868
1869 return 0;
1870
1871 case MANAGER_EXIT:
1872
1873 if (MANAGER_IS_USER(m)) {
1874 log_debug("Exit.");
1875
1876 *ret_reexecute = false;
1877 *ret_retval = m->return_value;
1878 *ret_shutdown_verb = NULL;
1879 *ret_fds = NULL;
1880 *ret_switch_root_dir = *ret_switch_root_init = NULL;
1881
1882 return 0;
1883 }
1884
1885 _fallthrough_;
1886 case MANAGER_REBOOT:
1887 case MANAGER_POWEROFF:
1888 case MANAGER_HALT:
1889 case MANAGER_KEXEC: {
1890 static const char * const table[_MANAGER_OBJECTIVE_MAX] = {
1891 [MANAGER_EXIT] = "exit",
1892 [MANAGER_REBOOT] = "reboot",
1893 [MANAGER_POWEROFF] = "poweroff",
1894 [MANAGER_HALT] = "halt",
1895 [MANAGER_KEXEC] = "kexec",
1896 };
1897
1898 log_notice("Shutting down.");
1899
1900 *ret_reexecute = false;
1901 *ret_retval = m->return_value;
1902 assert_se(*ret_shutdown_verb = table[m->objective]);
1903 *ret_fds = NULL;
1904 *ret_switch_root_dir = *ret_switch_root_init = NULL;
1905
1906 return 0;
1907 }
1908
1909 default:
1910 assert_not_reached("Unknown or unexpected manager objective.");
1911 }
1912 }
1913 }
1914
1915 static void log_execution_mode(bool *ret_first_boot) {
1916 assert(ret_first_boot);
1917
1918 if (arg_system) {
1919 int v;
1920
1921 log_info(PACKAGE_STRING " running in %ssystem mode. (" SYSTEMD_FEATURES ")",
1922 arg_action == ACTION_TEST ? "test " : "" );
1923
1924 v = detect_virtualization();
1925 if (v > 0)
1926 log_info("Detected virtualization %s.", virtualization_to_string(v));
1927
1928 log_info("Detected architecture %s.", architecture_to_string(uname_architecture()));
1929
1930 if (in_initrd()) {
1931 *ret_first_boot = false;
1932 log_info("Running in initial RAM disk.");
1933 } else {
1934 /* Let's check whether we are in first boot, i.e. whether /etc is still unpopulated. We use
1935 * /etc/machine-id as flag file, for this: if it exists we assume /etc is populated, if it
1936 * doesn't it's unpopulated. This allows container managers and installers to provision a
1937 * couple of files already. If the container manager wants to provision the machine ID itself
1938 * it should pass $container_uuid to PID 1. */
1939
1940 *ret_first_boot = access("/etc/machine-id", F_OK) < 0;
1941 if (*ret_first_boot)
1942 log_info("Running with unpopulated /etc.");
1943 }
1944 } else {
1945 if (DEBUG_LOGGING) {
1946 _cleanup_free_ char *t;
1947
1948 t = uid_to_name(getuid());
1949 log_debug(PACKAGE_STRING " running in %suser mode for user " UID_FMT "/%s. (" SYSTEMD_FEATURES ")",
1950 arg_action == ACTION_TEST ? " test" : "", getuid(), strna(t));
1951 }
1952
1953 *ret_first_boot = false;
1954 }
1955 }
1956
1957 static int initialize_runtime(
1958 bool skip_setup,
1959 struct rlimit *saved_rlimit_nofile,
1960 struct rlimit *saved_rlimit_memlock,
1961 const char **ret_error_message) {
1962
1963 int r;
1964
1965 assert(ret_error_message);
1966
1967 /* Sets up various runtime parameters. Many of these initializations are conditionalized:
1968 *
1969 * - Some only apply to --system instances
1970 * - Some only apply to --user instances
1971 * - Some only apply when we first start up, but not when we reexecute
1972 */
1973
1974 if (arg_action != ACTION_RUN)
1975 return 0;
1976
1977 if (arg_system) {
1978 /* Make sure we leave a core dump without panicing the kernel. */
1979 install_crash_handler();
1980
1981 if (!skip_setup) {
1982 r = mount_cgroup_controllers();
1983 if (r < 0) {
1984 *ret_error_message = "Failed to mount cgroup hierarchies";
1985 return r;
1986 }
1987
1988 status_welcome();
1989 hostname_setup();
1990 machine_id_setup(NULL, arg_machine_id, NULL);
1991 loopback_setup();
1992 bump_unix_max_dgram_qlen();
1993 bump_file_max_and_nr_open();
1994 test_usr();
1995 write_container_id();
1996 }
1997
1998 if (arg_watchdog_device) {
1999 r = watchdog_set_device(arg_watchdog_device);
2000 if (r < 0)
2001 log_warning_errno(r, "Failed to set watchdog device to %s, ignoring: %m", arg_watchdog_device);
2002 }
2003
2004 if (arg_runtime_watchdog > 0 && arg_runtime_watchdog != USEC_INFINITY)
2005 watchdog_set_timeout(&arg_runtime_watchdog);
2006 }
2007
2008 if (arg_timer_slack_nsec != NSEC_INFINITY)
2009 if (prctl(PR_SET_TIMERSLACK, arg_timer_slack_nsec) < 0)
2010 log_warning_errno(errno, "Failed to adjust timer slack, ignoring: %m");
2011
2012 if (arg_system && !cap_test_all(arg_capability_bounding_set)) {
2013 r = capability_bounding_set_drop_usermode(arg_capability_bounding_set);
2014 if (r < 0) {
2015 *ret_error_message = "Failed to drop capability bounding set of usermode helpers";
2016 return log_emergency_errno(r, "Failed to drop capability bounding set of usermode helpers: %m");
2017 }
2018
2019 r = capability_bounding_set_drop(arg_capability_bounding_set, true);
2020 if (r < 0) {
2021 *ret_error_message = "Failed to drop capability bounding set";
2022 return log_emergency_errno(r, "Failed to drop capability bounding set: %m");
2023 }
2024 }
2025
2026 if (arg_system && arg_no_new_privs) {
2027 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) < 0) {
2028 *ret_error_message = "Failed to disable new privileges";
2029 return log_emergency_errno(errno, "Failed to disable new privileges: %m");
2030 }
2031 }
2032
2033 if (arg_syscall_archs) {
2034 r = enforce_syscall_archs(arg_syscall_archs);
2035 if (r < 0) {
2036 *ret_error_message = "Failed to set syscall architectures";
2037 return r;
2038 }
2039 }
2040
2041 if (!arg_system)
2042 /* Become reaper of our children */
2043 if (prctl(PR_SET_CHILD_SUBREAPER, 1) < 0)
2044 log_warning_errno(errno, "Failed to make us a subreaper: %m");
2045
2046 /* Bump up RLIMIT_NOFILE for systemd itself */
2047 (void) bump_rlimit_nofile(saved_rlimit_nofile);
2048 (void) bump_rlimit_memlock(saved_rlimit_memlock);
2049
2050 return 0;
2051 }
2052
2053 static int do_queue_default_job(
2054 Manager *m,
2055 const char **ret_error_message) {
2056
2057 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2058 Job *default_unit_job;
2059 Unit *target = NULL;
2060 int r;
2061
2062 log_debug("Activating default unit: %s", arg_default_unit);
2063
2064 r = manager_load_startable_unit_or_warn(m, arg_default_unit, NULL, &target);
2065 if (r < 0) {
2066 log_info("Falling back to rescue target: " SPECIAL_RESCUE_TARGET);
2067
2068 r = manager_load_startable_unit_or_warn(m, SPECIAL_RESCUE_TARGET, NULL, &target);
2069 if (r < 0) {
2070 *ret_error_message = r == -ERFKILL ? "Rescue target masked"
2071 : "Failed to load rescue target";
2072 return r;
2073 }
2074 }
2075
2076 assert(target->load_state == UNIT_LOADED);
2077
2078 r = manager_add_job(m, JOB_START, target, JOB_ISOLATE, &error, &default_unit_job);
2079 if (r == -EPERM) {
2080 log_debug_errno(r, "Default target could not be isolated, starting instead: %s", bus_error_message(&error, r));
2081
2082 sd_bus_error_free(&error);
2083
2084 r = manager_add_job(m, JOB_START, target, JOB_REPLACE, &error, &default_unit_job);
2085 if (r < 0) {
2086 *ret_error_message = "Failed to start default target";
2087 return log_emergency_errno(r, "Failed to start default target: %s", bus_error_message(&error, r));
2088 }
2089
2090 } else if (r < 0) {
2091 *ret_error_message = "Failed to isolate default target";
2092 return log_emergency_errno(r, "Failed to isolate default target: %s", bus_error_message(&error, r));
2093 }
2094
2095 m->default_unit_job_id = default_unit_job->id;
2096
2097 return 0;
2098 }
2099
2100 static void free_arguments(void) {
2101
2102 /* Frees all arg_* variables, with the exception of arg_serialization */
2103 rlimit_free_all(arg_default_rlimit);
2104
2105 arg_default_unit = mfree(arg_default_unit);
2106 arg_confirm_spawn = mfree(arg_confirm_spawn);
2107 arg_default_environment = strv_free(arg_default_environment);
2108 arg_syscall_archs = set_free(arg_syscall_archs);
2109 }
2110
2111 static int load_configuration(int argc, char **argv, const char **ret_error_message) {
2112 int r;
2113
2114 assert(ret_error_message);
2115
2116 arg_default_tasks_max = system_tasks_max_scale(DEFAULT_TASKS_MAX_PERCENTAGE, 100U);
2117
2118 r = parse_config_file();
2119 if (r < 0) {
2120 *ret_error_message = "Failed to parse config file";
2121 return r;
2122 }
2123
2124 if (arg_system) {
2125 r = proc_cmdline_parse(parse_proc_cmdline_item, NULL, 0);
2126 if (r < 0)
2127 log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
2128 }
2129
2130 /* Note that this also parses bits from the kernel command line, including "debug". */
2131 log_parse_environment();
2132
2133 r = parse_argv(argc, argv);
2134 if (r < 0) {
2135 *ret_error_message = "Failed to parse commandline arguments";
2136 return r;
2137 }
2138
2139 /* Initialize default unit */
2140 if (!arg_default_unit) {
2141 arg_default_unit = strdup(SPECIAL_DEFAULT_TARGET);
2142 if (!arg_default_unit) {
2143 *ret_error_message = "Failed to set default unit";
2144 return log_oom();
2145 }
2146 }
2147
2148 /* Initialize the show status setting if it hasn't been set explicitly yet */
2149 if (arg_show_status == _SHOW_STATUS_INVALID)
2150 arg_show_status = SHOW_STATUS_YES;
2151
2152 return 0;
2153 }
2154
2155 static int safety_checks(void) {
2156
2157 if (getpid_cached() == 1 &&
2158 arg_action != ACTION_RUN)
2159 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
2160 "Unsupported execution mode while PID 1.");
2161
2162 if (getpid_cached() == 1 &&
2163 !arg_system)
2164 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
2165 "Can't run --user mode as PID 1.");
2166
2167 if (arg_action == ACTION_RUN &&
2168 arg_system &&
2169 getpid_cached() != 1)
2170 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
2171 "Can't run system mode unless PID 1.");
2172
2173 if (arg_action == ACTION_TEST &&
2174 geteuid() == 0)
2175 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
2176 "Don't run test mode as root.");
2177
2178 if (!arg_system &&
2179 arg_action == ACTION_RUN &&
2180 sd_booted() <= 0)
2181 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
2182 "Trying to run as user instance, but the system has not been booted with systemd.");
2183
2184 if (!arg_system &&
2185 arg_action == ACTION_RUN &&
2186 !getenv("XDG_RUNTIME_DIR"))
2187 return log_error_errno(SYNTHETIC_ERRNO(EUNATCH),
2188 "Trying to run as user instance, but $XDG_RUNTIME_DIR is not set.");
2189
2190 if (arg_system &&
2191 arg_action == ACTION_RUN &&
2192 running_in_chroot() > 0)
2193 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
2194 "Cannot be run in a chroot() environment.");
2195
2196 return 0;
2197 }
2198
2199 static int initialize_security(
2200 bool *loaded_policy,
2201 dual_timestamp *security_start_timestamp,
2202 dual_timestamp *security_finish_timestamp,
2203 const char **ret_error_message) {
2204
2205 int r;
2206
2207 assert(loaded_policy);
2208 assert(security_start_timestamp);
2209 assert(security_finish_timestamp);
2210 assert(ret_error_message);
2211
2212 dual_timestamp_get(security_start_timestamp);
2213
2214 r = mac_selinux_setup(loaded_policy);
2215 if (r < 0) {
2216 *ret_error_message = "Failed to load SELinux policy";
2217 return r;
2218 }
2219
2220 r = mac_smack_setup(loaded_policy);
2221 if (r < 0) {
2222 *ret_error_message = "Failed to load SMACK policy";
2223 return r;
2224 }
2225
2226 r = ima_setup();
2227 if (r < 0) {
2228 *ret_error_message = "Failed to load IMA policy";
2229 return r;
2230 }
2231
2232 dual_timestamp_get(security_finish_timestamp);
2233 return 0;
2234 }
2235
2236 static void test_summary(Manager *m) {
2237 assert(m);
2238
2239 printf("-> By units:\n");
2240 manager_dump_units(m, stdout, "\t");
2241
2242 printf("-> By jobs:\n");
2243 manager_dump_jobs(m, stdout, "\t");
2244 }
2245
2246 static int collect_fds(FDSet **ret_fds, const char **ret_error_message) {
2247 int r;
2248
2249 assert(ret_fds);
2250 assert(ret_error_message);
2251
2252 r = fdset_new_fill(ret_fds);
2253 if (r < 0) {
2254 *ret_error_message = "Failed to allocate fd set";
2255 return log_emergency_errno(r, "Failed to allocate fd set: %m");
2256 }
2257
2258 fdset_cloexec(*ret_fds, true);
2259
2260 if (arg_serialization)
2261 assert_se(fdset_remove(*ret_fds, fileno(arg_serialization)) >= 0);
2262
2263 return 0;
2264 }
2265
2266 static void setup_console_terminal(bool skip_setup) {
2267
2268 if (!arg_system)
2269 return;
2270
2271 /* Become a session leader if we aren't one yet. */
2272 (void) setsid();
2273
2274 /* If we are init, we connect stdin/stdout/stderr to /dev/null and make sure we don't have a controlling
2275 * tty. */
2276 (void) release_terminal();
2277
2278 /* Reset the console, but only if this is really init and we are freshly booted */
2279 if (getpid_cached() == 1 && !skip_setup)
2280 (void) console_setup();
2281 }
2282
2283 static bool early_skip_setup_check(int argc, char *argv[]) {
2284 bool found_deserialize = false;
2285 int i;
2286
2287 /* Determine if this is a reexecution or normal bootup. We do the full command line parsing much later, so
2288 * let's just have a quick peek here. Note that if we have switched root, do all the special setup things
2289 * anyway, even if in that case we also do deserialization. */
2290
2291 for (i = 1; i < argc; i++) {
2292 if (streq(argv[i], "--switched-root"))
2293 return false; /* If we switched root, don't skip the setup. */
2294 else if (streq(argv[i], "--deserialize"))
2295 found_deserialize = true;
2296 }
2297
2298 return found_deserialize; /* When we are deserializing, then we are reexecuting, hence avoid the extensive setup */
2299 }
2300
2301 int main(int argc, char *argv[]) {
2302
2303 dual_timestamp initrd_timestamp = DUAL_TIMESTAMP_NULL, userspace_timestamp = DUAL_TIMESTAMP_NULL, kernel_timestamp = DUAL_TIMESTAMP_NULL,
2304 security_start_timestamp = DUAL_TIMESTAMP_NULL, security_finish_timestamp = DUAL_TIMESTAMP_NULL;
2305 struct rlimit saved_rlimit_nofile = RLIMIT_MAKE_CONST(0), saved_rlimit_memlock = RLIMIT_MAKE_CONST((rlim_t) -1);
2306 bool skip_setup, loaded_policy = false, queue_default_job = false, first_boot = false, reexecute = false;
2307 char *switch_root_dir = NULL, *switch_root_init = NULL;
2308 usec_t before_startup, after_startup;
2309 static char systemd[] = "systemd";
2310 char timespan[FORMAT_TIMESPAN_MAX];
2311 const char *shutdown_verb = NULL, *error_message = NULL;
2312 int r, retval = EXIT_FAILURE;
2313 Manager *m = NULL;
2314 FDSet *fds = NULL;
2315
2316 /* SysV compatibility: redirect init → telinit */
2317 redirect_telinit(argc, argv);
2318
2319 /* Take timestamps early on */
2320 dual_timestamp_from_monotonic(&kernel_timestamp, 0);
2321 dual_timestamp_get(&userspace_timestamp);
2322
2323 /* Figure out whether we need to do initialize the system, or if we already did that because we are
2324 * reexecuting */
2325 skip_setup = early_skip_setup_check(argc, argv);
2326
2327 /* If we get started via the /sbin/init symlink then we are called 'init'. After a subsequent reexecution we
2328 * are then called 'systemd'. That is confusing, hence let's call us systemd right-away. */
2329 program_invocation_short_name = systemd;
2330 (void) prctl(PR_SET_NAME, systemd);
2331
2332 /* Save the original command line */
2333 saved_argv = argv;
2334 saved_argc = argc;
2335
2336 /* Make sure that if the user says "syslog" we actually log to the journal. */
2337 log_set_upgrade_syslog_to_journal(true);
2338
2339 if (getpid_cached() == 1) {
2340 /* When we run as PID 1 force system mode */
2341 arg_system = true;
2342
2343 /* Disable the umask logic */
2344 umask(0);
2345
2346 /* Make sure that at least initially we do not ever log to journald/syslogd, because it might not be
2347 * activated yet (even though the log socket for it exists). */
2348 log_set_prohibit_ipc(true);
2349
2350 /* Always reopen /dev/console when running as PID 1 or one of its pre-execve() children. This is
2351 * important so that we never end up logging to any foreign stderr, for example if we have to log in a
2352 * child process right before execve()'ing the actual binary, at a point in time where socket
2353 * activation stderr/stdout area already set up. */
2354 log_set_always_reopen_console(true);
2355
2356 if (detect_container() <= 0) {
2357
2358 /* Running outside of a container as PID 1 */
2359 log_set_target(LOG_TARGET_KMSG);
2360 log_open();
2361
2362 if (in_initrd())
2363 initrd_timestamp = userspace_timestamp;
2364
2365 if (!skip_setup) {
2366 r = mount_setup_early();
2367 if (r < 0) {
2368 error_message = "Failed to mount early API filesystems";
2369 goto finish;
2370 }
2371
2372 r = initialize_security(
2373 &loaded_policy,
2374 &security_start_timestamp,
2375 &security_finish_timestamp,
2376 &error_message);
2377 if (r < 0)
2378 goto finish;
2379 }
2380
2381 if (mac_selinux_init() < 0) {
2382 error_message = "Failed to initialize SELinux policy";
2383 goto finish;
2384 }
2385
2386 if (!skip_setup)
2387 initialize_clock();
2388
2389 /* Set the default for later on, but don't actually open the logs like this for now. Note that
2390 * if we are transitioning from the initrd there might still be journal fd open, and we
2391 * shouldn't attempt opening that before we parsed /proc/cmdline which might redirect output
2392 * elsewhere. */
2393 log_set_target(LOG_TARGET_JOURNAL_OR_KMSG);
2394
2395 } else {
2396 /* Running inside a container, as PID 1 */
2397 log_set_target(LOG_TARGET_CONSOLE);
2398 log_open();
2399
2400 /* For later on, see above... */
2401 log_set_target(LOG_TARGET_JOURNAL);
2402
2403 /* clear the kernel timestamp,
2404 * because we are in a container */
2405 kernel_timestamp = DUAL_TIMESTAMP_NULL;
2406 }
2407
2408 initialize_coredump(skip_setup);
2409
2410 r = fixup_environment();
2411 if (r < 0) {
2412 log_emergency_errno(r, "Failed to fix up PID 1 environment: %m");
2413 error_message = "Failed to fix up PID1 environment";
2414 goto finish;
2415 }
2416
2417 } else {
2418 /* Running as user instance */
2419 arg_system = false;
2420 log_set_target(LOG_TARGET_AUTO);
2421 log_open();
2422
2423 /* clear the kernel timestamp,
2424 * because we are not PID 1 */
2425 kernel_timestamp = DUAL_TIMESTAMP_NULL;
2426 }
2427
2428 if (arg_system) {
2429 /* Try to figure out if we can use colors with the console. No need to do that for user instances since
2430 * they never log into the console. */
2431 log_show_color(colors_enabled());
2432
2433 r = make_null_stdio();
2434 if (r < 0)
2435 log_warning_errno(r, "Failed to redirect standard streams to /dev/null, ignoring: %m");
2436 }
2437
2438 /* Mount /proc, /sys and friends, so that /proc/cmdline and
2439 * /proc/$PID/fd is available. */
2440 if (getpid_cached() == 1) {
2441
2442 /* Load the kernel modules early. */
2443 if (!skip_setup)
2444 kmod_setup();
2445
2446 r = mount_setup(loaded_policy);
2447 if (r < 0) {
2448 error_message = "Failed to mount API filesystems";
2449 goto finish;
2450 }
2451 }
2452
2453 /* Reset all signal handlers. */
2454 (void) reset_all_signal_handlers();
2455 (void) ignore_signals(SIGNALS_IGNORE, -1);
2456
2457 r = load_configuration(argc, argv, &error_message);
2458 if (r < 0)
2459 goto finish;
2460
2461 r = safety_checks();
2462 if (r < 0)
2463 goto finish;
2464
2465 if (IN_SET(arg_action, ACTION_TEST, ACTION_HELP, ACTION_DUMP_CONFIGURATION_ITEMS, ACTION_DUMP_BUS_PROPERTIES))
2466 (void) pager_open(arg_pager_flags);
2467
2468 if (arg_action != ACTION_RUN)
2469 skip_setup = true;
2470
2471 if (arg_action == ACTION_HELP) {
2472 retval = help() < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
2473 goto finish;
2474 } else if (arg_action == ACTION_VERSION) {
2475 retval = version();
2476 goto finish;
2477 } else if (arg_action == ACTION_DUMP_CONFIGURATION_ITEMS) {
2478 unit_dump_config_items(stdout);
2479 retval = EXIT_SUCCESS;
2480 goto finish;
2481 } else if (arg_action == ACTION_DUMP_BUS_PROPERTIES) {
2482 dump_bus_properties(stdout);
2483 retval = EXIT_SUCCESS;
2484 goto finish;
2485 }
2486
2487 assert_se(IN_SET(arg_action, ACTION_RUN, ACTION_TEST));
2488
2489 /* Move out of the way, so that we won't block unmounts */
2490 assert_se(chdir("/") == 0);
2491
2492 if (arg_action == ACTION_RUN) {
2493
2494 /* A core pattern might have been specified via the cmdline. */
2495 initialize_core_pattern(skip_setup);
2496
2497 /* Close logging fds, in order not to confuse collecting passed fds and terminal logic below */
2498 log_close();
2499
2500 /* Remember open file descriptors for later deserialization */
2501 r = collect_fds(&fds, &error_message);
2502 if (r < 0)
2503 goto finish;
2504
2505 /* Give up any control of the console, but make sure its initialized. */
2506 setup_console_terminal(skip_setup);
2507
2508 /* Open the logging devices, if possible and necessary */
2509 log_open();
2510 }
2511
2512 log_execution_mode(&first_boot);
2513
2514 r = initialize_runtime(skip_setup,
2515 &saved_rlimit_nofile,
2516 &saved_rlimit_memlock,
2517 &error_message);
2518 if (r < 0)
2519 goto finish;
2520
2521 r = manager_new(arg_system ? UNIT_FILE_SYSTEM : UNIT_FILE_USER,
2522 arg_action == ACTION_TEST ? MANAGER_TEST_FULL : 0,
2523 &m);
2524 if (r < 0) {
2525 log_emergency_errno(r, "Failed to allocate manager object: %m");
2526 error_message = "Failed to allocate manager object";
2527 goto finish;
2528 }
2529
2530 m->timestamps[MANAGER_TIMESTAMP_KERNEL] = kernel_timestamp;
2531 m->timestamps[MANAGER_TIMESTAMP_INITRD] = initrd_timestamp;
2532 m->timestamps[MANAGER_TIMESTAMP_USERSPACE] = userspace_timestamp;
2533 m->timestamps[manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_SECURITY_START)] = security_start_timestamp;
2534 m->timestamps[manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_SECURITY_FINISH)] = security_finish_timestamp;
2535
2536 set_manager_defaults(m);
2537 set_manager_settings(m);
2538 manager_set_first_boot(m, first_boot);
2539
2540 /* Remember whether we should queue the default job */
2541 queue_default_job = !arg_serialization || arg_switched_root;
2542
2543 before_startup = now(CLOCK_MONOTONIC);
2544
2545 r = manager_startup(m, arg_serialization, fds);
2546 if (r < 0) {
2547 error_message = "Failed to start up manager";
2548 goto finish;
2549 }
2550
2551 /* This will close all file descriptors that were opened, but not claimed by any unit. */
2552 fds = fdset_free(fds);
2553 arg_serialization = safe_fclose(arg_serialization);
2554
2555 if (queue_default_job) {
2556 r = do_queue_default_job(m, &error_message);
2557 if (r < 0)
2558 goto finish;
2559 }
2560
2561 after_startup = now(CLOCK_MONOTONIC);
2562
2563 log_full(arg_action == ACTION_TEST ? LOG_INFO : LOG_DEBUG,
2564 "Loaded units and determined initial transaction in %s.",
2565 format_timespan(timespan, sizeof(timespan), after_startup - before_startup, 100 * USEC_PER_MSEC));
2566
2567 if (arg_action == ACTION_TEST) {
2568 test_summary(m);
2569 retval = EXIT_SUCCESS;
2570 goto finish;
2571 }
2572
2573 (void) invoke_main_loop(m,
2574 &reexecute,
2575 &retval,
2576 &shutdown_verb,
2577 &fds,
2578 &switch_root_dir,
2579 &switch_root_init,
2580 &error_message);
2581
2582 finish:
2583 pager_close();
2584
2585 if (m) {
2586 arg_shutdown_watchdog = m->shutdown_watchdog;
2587 m = manager_free(m);
2588 }
2589
2590 free_arguments();
2591 mac_selinux_finish();
2592
2593 if (reexecute)
2594 do_reexecute(argc, argv,
2595 &saved_rlimit_nofile,
2596 &saved_rlimit_memlock,
2597 fds,
2598 switch_root_dir,
2599 switch_root_init,
2600 &error_message); /* This only returns if reexecution failed */
2601
2602 arg_serialization = safe_fclose(arg_serialization);
2603 fds = fdset_free(fds);
2604
2605 #if HAVE_VALGRIND_VALGRIND_H
2606 /* If we are PID 1 and running under valgrind, then let's exit
2607 * here explicitly. valgrind will only generate nice output on
2608 * exit(), not on exec(), hence let's do the former not the
2609 * latter here. */
2610 if (getpid_cached() == 1 && RUNNING_ON_VALGRIND) {
2611 /* Cleanup watchdog_device strings for valgrind. We need them
2612 * in become_shutdown() so normally we cannot free them yet. */
2613 watchdog_free_device();
2614 arg_watchdog_device = mfree(arg_watchdog_device);
2615 return retval;
2616 }
2617 #endif
2618
2619 #if HAS_FEATURE_ADDRESS_SANITIZER
2620 __lsan_do_leak_check();
2621 #endif
2622
2623 if (shutdown_verb) {
2624 r = become_shutdown(shutdown_verb, retval);
2625 log_error_errno(r, "Failed to execute shutdown binary, %s: %m", getpid_cached() == 1 ? "freezing" : "quitting");
2626 error_message = "Failed to execute shutdown binary";
2627 }
2628
2629 watchdog_free_device();
2630 arg_watchdog_device = mfree(arg_watchdog_device);
2631
2632 if (getpid_cached() == 1) {
2633 if (error_message)
2634 manager_status_printf(NULL, STATUS_TYPE_EMERGENCY,
2635 ANSI_HIGHLIGHT_RED "!!!!!!" ANSI_NORMAL,
2636 "%s.", error_message);
2637 freeze_or_exit_or_reboot();
2638 }
2639
2640 return retval;
2641 }