]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/main.c
main: add commenting, clean up handling of saved resource limits
[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 /* Pass the original value down to invoked processes */
1331 if (!arg_default_rlimit[RLIMIT_MEMLOCK]) {
1332 struct rlimit *rl;
1333
1334 rl = newdup(struct rlimit, saved_rlimit, 1);
1335 if (!rl)
1336 return log_oom();
1337
1338 arg_default_rlimit[RLIMIT_MEMLOCK] = rl;
1339 }
1340
1341 r = setrlimit_closest(RLIMIT_MEMLOCK, &RLIMIT_MAKE_CONST(HIGH_RLIMIT_MEMLOCK));
1342 if (r < 0)
1343 return log_warning_errno(r, "Setting RLIMIT_MEMLOCK failed, ignoring: %m");
1344
1345 return 0;
1346 }
1347
1348 static void test_usr(void) {
1349
1350 /* Check that /usr is not a separate fs */
1351
1352 if (dir_is_empty("/usr") <= 0)
1353 return;
1354
1355 log_warning("/usr appears to be on its own filesystem and is not already mounted. This is not a supported setup. "
1356 "Some things will probably break (sometimes even silently) in mysterious ways. "
1357 "Consult http://freedesktop.org/wiki/Software/systemd/separate-usr-is-broken for more information.");
1358 }
1359
1360 static int enforce_syscall_archs(Set *archs) {
1361 #if HAVE_SECCOMP
1362 int r;
1363
1364 if (!is_seccomp_available())
1365 return 0;
1366
1367 r = seccomp_restrict_archs(arg_syscall_archs);
1368 if (r < 0)
1369 return log_error_errno(r, "Failed to enforce system call architecture restrication: %m");
1370 #endif
1371 return 0;
1372 }
1373
1374 static int status_welcome(void) {
1375 _cleanup_free_ char *pretty_name = NULL, *ansi_color = NULL;
1376 int r;
1377
1378 if (IN_SET(arg_show_status, SHOW_STATUS_NO, SHOW_STATUS_AUTO))
1379 return 0;
1380
1381 r = parse_os_release(NULL,
1382 "PRETTY_NAME", &pretty_name,
1383 "ANSI_COLOR", &ansi_color,
1384 NULL);
1385 if (r < 0)
1386 log_full_errno(r == -ENOENT ? LOG_DEBUG : LOG_WARNING, r,
1387 "Failed to read os-release file, ignoring: %m");
1388
1389 if (log_get_show_color())
1390 return status_printf(NULL, 0,
1391 "\nWelcome to \x1B[%sm%s\x1B[0m!\n",
1392 isempty(ansi_color) ? "1" : ansi_color,
1393 isempty(pretty_name) ? "Linux" : pretty_name);
1394 else
1395 return status_printf(NULL, 0,
1396 "\nWelcome to %s!\n",
1397 isempty(pretty_name) ? "Linux" : pretty_name);
1398 }
1399
1400 static int write_container_id(void) {
1401 const char *c;
1402 int r;
1403
1404 c = getenv("container");
1405 if (isempty(c))
1406 return 0;
1407
1408 RUN_WITH_UMASK(0022)
1409 r = write_string_file("/run/systemd/container", c, WRITE_STRING_FILE_CREATE);
1410 if (r < 0)
1411 return log_warning_errno(r, "Failed to write /run/systemd/container, ignoring: %m");
1412
1413 return 1;
1414 }
1415
1416 static int bump_unix_max_dgram_qlen(void) {
1417 _cleanup_free_ char *qlen = NULL;
1418 unsigned long v;
1419 int r;
1420
1421 /* Let's bump the net.unix.max_dgram_qlen sysctl. The kernel default of 16 is simply too low. We set the value
1422 * really really early during boot, so that it is actually applied to all our sockets, including the
1423 * $NOTIFY_SOCKET one. */
1424
1425 r = read_one_line_file("/proc/sys/net/unix/max_dgram_qlen", &qlen);
1426 if (r < 0)
1427 return log_full_errno(r == -ENOENT ? LOG_DEBUG : LOG_WARNING, r, "Failed to read AF_UNIX datagram queue length, ignoring: %m");
1428
1429 r = safe_atolu(qlen, &v);
1430 if (r < 0)
1431 return log_warning_errno(r, "Failed to parse AF_UNIX datagram queue length '%s', ignoring: %m", qlen);
1432
1433 if (v >= DEFAULT_UNIX_MAX_DGRAM_QLEN)
1434 return 0;
1435
1436 r = write_string_filef("/proc/sys/net/unix/max_dgram_qlen", WRITE_STRING_FILE_DISABLE_BUFFER, "%lu", DEFAULT_UNIX_MAX_DGRAM_QLEN);
1437 if (r < 0)
1438 return log_full_errno(IN_SET(r, -EROFS, -EPERM, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
1439 "Failed to bump AF_UNIX datagram queue length, ignoring: %m");
1440
1441 return 1;
1442 }
1443
1444 static int fixup_environment(void) {
1445 _cleanup_free_ char *term = NULL;
1446 const char *t;
1447 int r;
1448
1449 /* Only fix up the environment when we are started as PID 1 */
1450 if (getpid_cached() != 1)
1451 return 0;
1452
1453 /* We expect the environment to be set correctly if run inside a container. */
1454 if (detect_container() > 0)
1455 return 0;
1456
1457 /* When started as PID1, the kernel uses /dev/console for our stdios and uses TERM=linux whatever the backend
1458 * device used by the console. We try to make a better guess here since some consoles might not have support
1459 * for color mode for example.
1460 *
1461 * However if TERM was configured through the kernel command line then leave it alone. */
1462 r = proc_cmdline_get_key("TERM", 0, &term);
1463 if (r < 0)
1464 return r;
1465
1466 t = term ?: default_term_for_tty("/dev/console");
1467
1468 if (setenv("TERM", t, 1) < 0)
1469 return -errno;
1470
1471 return 0;
1472 }
1473
1474 static void redirect_telinit(int argc, char *argv[]) {
1475
1476 /* This is compatibility support for SysV, where calling init as a user is identical to telinit. */
1477
1478 #if HAVE_SYSV_COMPAT
1479 if (getpid_cached() == 1)
1480 return;
1481
1482 if (!strstr(program_invocation_short_name, "init"))
1483 return;
1484
1485 execv(SYSTEMCTL_BINARY_PATH, argv);
1486 log_error_errno(errno, "Failed to exec " SYSTEMCTL_BINARY_PATH ": %m");
1487 exit(EXIT_FAILURE);
1488 #endif
1489 }
1490
1491 static int become_shutdown(
1492 const char *shutdown_verb,
1493 int retval) {
1494
1495 char log_level[DECIMAL_STR_MAX(int) + 1],
1496 exit_code[DECIMAL_STR_MAX(uint8_t) + 1],
1497 timeout[DECIMAL_STR_MAX(usec_t) + 1];
1498
1499 const char* command_line[13] = {
1500 SYSTEMD_SHUTDOWN_BINARY_PATH,
1501 shutdown_verb,
1502 "--timeout", timeout,
1503 "--log-level", log_level,
1504 "--log-target",
1505 };
1506
1507 _cleanup_strv_free_ char **env_block = NULL;
1508 size_t pos = 7;
1509 int r;
1510
1511 assert(shutdown_verb);
1512 assert(!command_line[pos]);
1513 env_block = strv_copy(environ);
1514
1515 xsprintf(log_level, "%d", log_get_max_level());
1516 xsprintf(timeout, "%" PRI_USEC "us", arg_default_timeout_stop_usec);
1517
1518 switch (log_get_target()) {
1519
1520 case LOG_TARGET_KMSG:
1521 case LOG_TARGET_JOURNAL_OR_KMSG:
1522 case LOG_TARGET_SYSLOG_OR_KMSG:
1523 command_line[pos++] = "kmsg";
1524 break;
1525
1526 case LOG_TARGET_NULL:
1527 command_line[pos++] = "null";
1528 break;
1529
1530 case LOG_TARGET_CONSOLE:
1531 default:
1532 command_line[pos++] = "console";
1533 break;
1534 };
1535
1536 if (log_get_show_color())
1537 command_line[pos++] = "--log-color";
1538
1539 if (log_get_show_location())
1540 command_line[pos++] = "--log-location";
1541
1542 if (streq(shutdown_verb, "exit")) {
1543 command_line[pos++] = "--exit-code";
1544 command_line[pos++] = exit_code;
1545 xsprintf(exit_code, "%d", retval);
1546 }
1547
1548 assert(pos < ELEMENTSOF(command_line));
1549
1550 if (streq(shutdown_verb, "reboot") &&
1551 arg_shutdown_watchdog > 0 &&
1552 arg_shutdown_watchdog != USEC_INFINITY) {
1553
1554 char *e;
1555
1556 /* If we reboot let's set the shutdown
1557 * watchdog and tell the shutdown binary to
1558 * repeatedly ping it */
1559 r = watchdog_set_timeout(&arg_shutdown_watchdog);
1560 watchdog_close(r < 0);
1561
1562 /* Tell the binary how often to ping, ignore failure */
1563 if (asprintf(&e, "WATCHDOG_USEC="USEC_FMT, arg_shutdown_watchdog) > 0)
1564 (void) strv_consume(&env_block, e);
1565
1566 if (arg_watchdog_device &&
1567 asprintf(&e, "WATCHDOG_DEVICE=%s", arg_watchdog_device) > 0)
1568 (void) strv_consume(&env_block, e);
1569 } else
1570 watchdog_close(true);
1571
1572 /* Avoid the creation of new processes forked by the
1573 * kernel; at this point, we will not listen to the
1574 * signals anyway */
1575 if (detect_container() <= 0)
1576 (void) cg_uninstall_release_agent(SYSTEMD_CGROUP_CONTROLLER);
1577
1578 execve(SYSTEMD_SHUTDOWN_BINARY_PATH, (char **) command_line, env_block);
1579 return -errno;
1580 }
1581
1582 static void initialize_clock(void) {
1583 int r;
1584
1585 if (clock_is_localtime(NULL) > 0) {
1586 int min;
1587
1588 /*
1589 * The very first call of settimeofday() also does a time warp in the kernel.
1590 *
1591 * In the rtc-in-local time mode, we set the kernel's timezone, and rely on external tools to take care
1592 * of maintaining the RTC and do all adjustments. This matches the behavior of Windows, which leaves
1593 * the RTC alone if the registry tells that the RTC runs in UTC.
1594 */
1595 r = clock_set_timezone(&min);
1596 if (r < 0)
1597 log_error_errno(r, "Failed to apply local time delta, ignoring: %m");
1598 else
1599 log_info("RTC configured in localtime, applying delta of %i minutes to system time.", min);
1600
1601 } else if (!in_initrd()) {
1602 /*
1603 * Do a dummy very first call to seal the kernel's time warp magic.
1604 *
1605 * Do not call this from inside the initrd. The initrd might not carry /etc/adjtime with LOCAL, but the
1606 * real system could be set up that way. In such case, we need to delay the time-warp or the sealing
1607 * until we reach the real system.
1608 *
1609 * Do no set the kernel's timezone. The concept of local time cannot be supported reliably, the time
1610 * will jump or be incorrect at every daylight saving time change. All kernel local time concepts will
1611 * be treated as UTC that way.
1612 */
1613 (void) clock_reset_timewarp();
1614 }
1615
1616 r = clock_apply_epoch();
1617 if (r < 0)
1618 log_error_errno(r, "Current system time is before build time, but cannot correct: %m");
1619 else if (r > 0)
1620 log_info("System time before build time, advancing clock.");
1621 }
1622
1623 static void initialize_coredump(bool skip_setup) {
1624 #if ENABLE_COREDUMP
1625 if (getpid_cached() != 1)
1626 return;
1627
1628 /* Don't limit the core dump size, so that coredump handlers such as systemd-coredump (which honour the limit)
1629 * will process core dumps for system services by default. */
1630 if (setrlimit(RLIMIT_CORE, &RLIMIT_MAKE_CONST(RLIM_INFINITY)) < 0)
1631 log_warning_errno(errno, "Failed to set RLIMIT_CORE: %m");
1632
1633 /* But at the same time, turn off the core_pattern logic by default, so that no
1634 * coredumps are stored until the systemd-coredump tool is enabled via
1635 * sysctl. However it can be changed via the kernel command line later so core
1636 * dumps can still be generated during early startup and in initramfs. */
1637 if (!skip_setup)
1638 disable_coredumps();
1639 #endif
1640 }
1641
1642 static void initialize_core_pattern(bool skip_setup) {
1643 int r;
1644
1645 if (skip_setup || !arg_early_core_pattern)
1646 return;
1647
1648 if (getpid_cached() != 1)
1649 return;
1650
1651 r = write_string_file("/proc/sys/kernel/core_pattern", arg_early_core_pattern, WRITE_STRING_FILE_DISABLE_BUFFER);
1652 if (r < 0)
1653 log_warning_errno(r, "Failed to write '%s' to /proc/sys/kernel/core_pattern, ignoring: %m", arg_early_core_pattern);
1654 }
1655
1656 static void do_reexecute(
1657 int argc,
1658 char *argv[],
1659 const struct rlimit *saved_rlimit_nofile,
1660 const struct rlimit *saved_rlimit_memlock,
1661 FDSet *fds,
1662 const char *switch_root_dir,
1663 const char *switch_root_init,
1664 const char **ret_error_message) {
1665
1666 unsigned i, j, args_size;
1667 const char **args;
1668 int r;
1669
1670 assert(saved_rlimit_nofile);
1671 assert(saved_rlimit_memlock);
1672 assert(ret_error_message);
1673
1674 /* Close and disarm the watchdog, so that the new instance can reinitialize it, but doesn't get rebooted while
1675 * we do that */
1676 watchdog_close(true);
1677
1678 /* Reset RLIMIT_NOFILE + RLIMIT_MEMLOCK back to the kernel defaults, so that the new systemd can pass
1679 * the kernel default to its child processes */
1680 if (saved_rlimit_nofile->rlim_cur != 0)
1681 (void) setrlimit(RLIMIT_NOFILE, saved_rlimit_nofile);
1682 if (saved_rlimit_memlock->rlim_cur != RLIM_INFINITY)
1683 (void) setrlimit(RLIMIT_MEMLOCK, saved_rlimit_memlock);
1684
1685 if (switch_root_dir) {
1686 /* Kill all remaining processes from the initrd, but don't wait for them, so that we can handle the
1687 * SIGCHLD for them after deserializing. */
1688 broadcast_signal(SIGTERM, false, true, arg_default_timeout_stop_usec);
1689
1690 /* And switch root with MS_MOVE, because we remove the old directory afterwards and detach it. */
1691 r = switch_root(switch_root_dir, "/mnt", true, MS_MOVE);
1692 if (r < 0)
1693 log_error_errno(r, "Failed to switch root, trying to continue: %m");
1694 }
1695
1696 args_size = MAX(6, argc+1);
1697 args = newa(const char*, args_size);
1698
1699 if (!switch_root_init) {
1700 char sfd[DECIMAL_STR_MAX(int) + 1];
1701
1702 /* First try to spawn ourselves with the right path, and with full serialization. We do this only if
1703 * the user didn't specify an explicit init to spawn. */
1704
1705 assert(arg_serialization);
1706 assert(fds);
1707
1708 xsprintf(sfd, "%i", fileno(arg_serialization));
1709
1710 i = 0;
1711 args[i++] = SYSTEMD_BINARY_PATH;
1712 if (switch_root_dir)
1713 args[i++] = "--switched-root";
1714 args[i++] = arg_system ? "--system" : "--user";
1715 args[i++] = "--deserialize";
1716 args[i++] = sfd;
1717 args[i++] = NULL;
1718
1719 assert(i <= args_size);
1720
1721 /*
1722 * We want valgrind to print its memory usage summary before reexecution. Valgrind won't do this is on
1723 * its own on exec(), but it will do it on exit(). Hence, to ensure we get a summary here, fork() off
1724 * a child, let it exit() cleanly, so that it prints the summary, and wait() for it in the parent,
1725 * before proceeding into the exec().
1726 */
1727 valgrind_summary_hack();
1728
1729 (void) execv(args[0], (char* const*) args);
1730 log_debug_errno(errno, "Failed to execute our own binary, trying fallback: %m");
1731 }
1732
1733 /* Try the fallback, if there is any, without any serialization. We pass the original argv[] and envp[]. (Well,
1734 * modulo the ordering changes due to getopt() in argv[], and some cleanups in envp[], but let's hope that
1735 * doesn't matter.) */
1736
1737 arg_serialization = safe_fclose(arg_serialization);
1738 fds = fdset_free(fds);
1739
1740 /* Reopen the console */
1741 (void) make_console_stdio();
1742
1743 for (j = 1, i = 1; j < (unsigned) argc; j++)
1744 args[i++] = argv[j];
1745 args[i++] = NULL;
1746 assert(i <= args_size);
1747
1748 /* Reenable any blocked signals, especially important if we switch from initial ramdisk to init=... */
1749 (void) reset_all_signal_handlers();
1750 (void) reset_signal_mask();
1751 (void) rlimit_nofile_safe();
1752
1753 if (switch_root_init) {
1754 args[0] = switch_root_init;
1755 (void) execv(args[0], (char* const*) args);
1756 log_warning_errno(errno, "Failed to execute configured init, trying fallback: %m");
1757 }
1758
1759 args[0] = "/sbin/init";
1760 (void) execv(args[0], (char* const*) args);
1761 r = -errno;
1762
1763 manager_status_printf(NULL, STATUS_TYPE_EMERGENCY,
1764 ANSI_HIGHLIGHT_RED " !! " ANSI_NORMAL,
1765 "Failed to execute /sbin/init");
1766
1767 if (r == -ENOENT) {
1768 log_warning("No /sbin/init, trying fallback");
1769
1770 args[0] = "/bin/sh";
1771 args[1] = NULL;
1772 (void) execv(args[0], (char* const*) args);
1773 log_error_errno(errno, "Failed to execute /bin/sh, giving up: %m");
1774 } else
1775 log_warning_errno(r, "Failed to execute /sbin/init, giving up: %m");
1776
1777 *ret_error_message = "Failed to execute fallback shell";
1778 }
1779
1780 static int invoke_main_loop(
1781 Manager *m,
1782 bool *ret_reexecute,
1783 int *ret_retval, /* Return parameters relevant for shutting down */
1784 const char **ret_shutdown_verb, /* … */
1785 FDSet **ret_fds, /* Return parameters for reexecuting */
1786 char **ret_switch_root_dir, /* … */
1787 char **ret_switch_root_init, /* … */
1788 const char **ret_error_message) {
1789
1790 int r;
1791
1792 assert(m);
1793 assert(ret_reexecute);
1794 assert(ret_retval);
1795 assert(ret_shutdown_verb);
1796 assert(ret_fds);
1797 assert(ret_switch_root_dir);
1798 assert(ret_switch_root_init);
1799 assert(ret_error_message);
1800
1801 for (;;) {
1802 r = manager_loop(m);
1803 if (r < 0) {
1804 *ret_error_message = "Failed to run main loop";
1805 return log_emergency_errno(r, "Failed to run main loop: %m");
1806 }
1807
1808 switch ((ManagerObjective) r) {
1809
1810 case MANAGER_RELOAD: {
1811 LogTarget saved_log_target;
1812 int saved_log_level;
1813
1814 log_info("Reloading.");
1815
1816 /* First, save any overridden log level/target, then parse the configuration file, which might
1817 * change the log level to new settings. */
1818
1819 saved_log_level = m->log_level_overridden ? log_get_max_level() : -1;
1820 saved_log_target = m->log_target_overridden ? log_get_target() : _LOG_TARGET_INVALID;
1821
1822 r = parse_config_file();
1823 if (r < 0)
1824 log_warning_errno(r, "Failed to parse config file, ignoring: %m");
1825
1826 set_manager_defaults(m);
1827
1828 if (saved_log_level >= 0)
1829 manager_override_log_level(m, saved_log_level);
1830 if (saved_log_target >= 0)
1831 manager_override_log_target(m, saved_log_target);
1832
1833 r = manager_reload(m);
1834 if (r < 0)
1835 /* Reloading failed before the point of no return. Let's continue running as if nothing happened. */
1836 m->objective = MANAGER_OK;
1837
1838 break;
1839 }
1840
1841 case MANAGER_REEXECUTE:
1842
1843 r = prepare_reexecute(m, &arg_serialization, ret_fds, false);
1844 if (r < 0) {
1845 *ret_error_message = "Failed to prepare for reexecution";
1846 return r;
1847 }
1848
1849 log_notice("Reexecuting.");
1850
1851 *ret_reexecute = true;
1852 *ret_retval = EXIT_SUCCESS;
1853 *ret_shutdown_verb = NULL;
1854 *ret_switch_root_dir = *ret_switch_root_init = NULL;
1855
1856 return 0;
1857
1858 case MANAGER_SWITCH_ROOT:
1859 if (!m->switch_root_init) {
1860 r = prepare_reexecute(m, &arg_serialization, ret_fds, true);
1861 if (r < 0) {
1862 *ret_error_message = "Failed to prepare for reexecution";
1863 return r;
1864 }
1865 } else
1866 *ret_fds = NULL;
1867
1868 log_notice("Switching root.");
1869
1870 *ret_reexecute = true;
1871 *ret_retval = EXIT_SUCCESS;
1872 *ret_shutdown_verb = NULL;
1873
1874 /* Steal the switch root parameters */
1875 *ret_switch_root_dir = m->switch_root;
1876 *ret_switch_root_init = m->switch_root_init;
1877 m->switch_root = m->switch_root_init = NULL;
1878
1879 return 0;
1880
1881 case MANAGER_EXIT:
1882
1883 if (MANAGER_IS_USER(m)) {
1884 log_debug("Exit.");
1885
1886 *ret_reexecute = false;
1887 *ret_retval = m->return_value;
1888 *ret_shutdown_verb = NULL;
1889 *ret_fds = NULL;
1890 *ret_switch_root_dir = *ret_switch_root_init = NULL;
1891
1892 return 0;
1893 }
1894
1895 _fallthrough_;
1896 case MANAGER_REBOOT:
1897 case MANAGER_POWEROFF:
1898 case MANAGER_HALT:
1899 case MANAGER_KEXEC: {
1900 static const char * const table[_MANAGER_OBJECTIVE_MAX] = {
1901 [MANAGER_EXIT] = "exit",
1902 [MANAGER_REBOOT] = "reboot",
1903 [MANAGER_POWEROFF] = "poweroff",
1904 [MANAGER_HALT] = "halt",
1905 [MANAGER_KEXEC] = "kexec",
1906 };
1907
1908 log_notice("Shutting down.");
1909
1910 *ret_reexecute = false;
1911 *ret_retval = m->return_value;
1912 assert_se(*ret_shutdown_verb = table[m->objective]);
1913 *ret_fds = NULL;
1914 *ret_switch_root_dir = *ret_switch_root_init = NULL;
1915
1916 return 0;
1917 }
1918
1919 default:
1920 assert_not_reached("Unknown or unexpected manager objective.");
1921 }
1922 }
1923 }
1924
1925 static void log_execution_mode(bool *ret_first_boot) {
1926 assert(ret_first_boot);
1927
1928 if (arg_system) {
1929 int v;
1930
1931 log_info("systemd " GIT_VERSION " running in %ssystem mode. (" SYSTEMD_FEATURES ")",
1932 arg_action == ACTION_TEST ? "test " : "" );
1933
1934 v = detect_virtualization();
1935 if (v > 0)
1936 log_info("Detected virtualization %s.", virtualization_to_string(v));
1937
1938 log_info("Detected architecture %s.", architecture_to_string(uname_architecture()));
1939
1940 if (in_initrd()) {
1941 *ret_first_boot = false;
1942 log_info("Running in initial RAM disk.");
1943 } else {
1944 /* Let's check whether we are in first boot, i.e. whether /etc is still unpopulated. We use
1945 * /etc/machine-id as flag file, for this: if it exists we assume /etc is populated, if it
1946 * doesn't it's unpopulated. This allows container managers and installers to provision a
1947 * couple of files already. If the container manager wants to provision the machine ID itself
1948 * it should pass $container_uuid to PID 1. */
1949
1950 *ret_first_boot = access("/etc/machine-id", F_OK) < 0;
1951 if (*ret_first_boot)
1952 log_info("Running with unpopulated /etc.");
1953 }
1954 } else {
1955 if (DEBUG_LOGGING) {
1956 _cleanup_free_ char *t;
1957
1958 t = uid_to_name(getuid());
1959 log_debug("systemd " GIT_VERSION " running in %suser mode for user " UID_FMT "/%s. (" SYSTEMD_FEATURES ")",
1960 arg_action == ACTION_TEST ? " test" : "", getuid(), strna(t));
1961 }
1962
1963 *ret_first_boot = false;
1964 }
1965 }
1966
1967 static int initialize_runtime(
1968 bool skip_setup,
1969 struct rlimit *saved_rlimit_nofile,
1970 struct rlimit *saved_rlimit_memlock,
1971 const char **ret_error_message) {
1972
1973 int r;
1974
1975 assert(ret_error_message);
1976
1977 /* Sets up various runtime parameters. Many of these initializations are conditionalized:
1978 *
1979 * - Some only apply to --system instances
1980 * - Some only apply to --user instances
1981 * - Some only apply when we first start up, but not when we reexecute
1982 */
1983
1984 if (arg_action != ACTION_RUN)
1985 return 0;
1986
1987 if (arg_system) {
1988 /* Make sure we leave a core dump without panicing the kernel. */
1989 install_crash_handler();
1990
1991 if (!skip_setup) {
1992 r = mount_cgroup_controllers();
1993 if (r < 0) {
1994 *ret_error_message = "Failed to mount cgroup hierarchies";
1995 return r;
1996 }
1997
1998 status_welcome();
1999 hostname_setup();
2000 machine_id_setup(NULL, arg_machine_id, NULL);
2001 loopback_setup();
2002 bump_unix_max_dgram_qlen();
2003 bump_file_max_and_nr_open();
2004 test_usr();
2005 write_container_id();
2006 }
2007
2008 if (arg_watchdog_device) {
2009 r = watchdog_set_device(arg_watchdog_device);
2010 if (r < 0)
2011 log_warning_errno(r, "Failed to set watchdog device to %s, ignoring: %m", arg_watchdog_device);
2012 }
2013
2014 if (arg_runtime_watchdog > 0 && arg_runtime_watchdog != USEC_INFINITY)
2015 watchdog_set_timeout(&arg_runtime_watchdog);
2016 }
2017
2018 if (arg_timer_slack_nsec != NSEC_INFINITY)
2019 if (prctl(PR_SET_TIMERSLACK, arg_timer_slack_nsec) < 0)
2020 log_warning_errno(errno, "Failed to adjust timer slack, ignoring: %m");
2021
2022 if (arg_system && !cap_test_all(arg_capability_bounding_set)) {
2023 r = capability_bounding_set_drop_usermode(arg_capability_bounding_set);
2024 if (r < 0) {
2025 *ret_error_message = "Failed to drop capability bounding set of usermode helpers";
2026 return log_emergency_errno(r, "Failed to drop capability bounding set of usermode helpers: %m");
2027 }
2028
2029 r = capability_bounding_set_drop(arg_capability_bounding_set, true);
2030 if (r < 0) {
2031 *ret_error_message = "Failed to drop capability bounding set";
2032 return log_emergency_errno(r, "Failed to drop capability bounding set: %m");
2033 }
2034 }
2035
2036 if (arg_system && arg_no_new_privs) {
2037 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) < 0) {
2038 *ret_error_message = "Failed to disable new privileges";
2039 return log_emergency_errno(errno, "Failed to disable new privileges: %m");
2040 }
2041 }
2042
2043 if (arg_syscall_archs) {
2044 r = enforce_syscall_archs(arg_syscall_archs);
2045 if (r < 0) {
2046 *ret_error_message = "Failed to set syscall architectures";
2047 return r;
2048 }
2049 }
2050
2051 if (!arg_system)
2052 /* Become reaper of our children */
2053 if (prctl(PR_SET_CHILD_SUBREAPER, 1) < 0)
2054 log_warning_errno(errno, "Failed to make us a subreaper: %m");
2055
2056 /* Bump up RLIMIT_NOFILE for systemd itself */
2057 (void) bump_rlimit_nofile(saved_rlimit_nofile);
2058 (void) bump_rlimit_memlock(saved_rlimit_memlock);
2059
2060 return 0;
2061 }
2062
2063 static int do_queue_default_job(
2064 Manager *m,
2065 const char **ret_error_message) {
2066
2067 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2068 Job *default_unit_job;
2069 Unit *target = NULL;
2070 int r;
2071
2072 log_debug("Activating default unit: %s", arg_default_unit);
2073
2074 r = manager_load_startable_unit_or_warn(m, arg_default_unit, NULL, &target);
2075 if (r < 0) {
2076 log_info("Falling back to rescue target: " SPECIAL_RESCUE_TARGET);
2077
2078 r = manager_load_startable_unit_or_warn(m, SPECIAL_RESCUE_TARGET, NULL, &target);
2079 if (r < 0) {
2080 *ret_error_message = r == -ERFKILL ? "Rescue target masked"
2081 : "Failed to load rescue target";
2082 return r;
2083 }
2084 }
2085
2086 assert(target->load_state == UNIT_LOADED);
2087
2088 r = manager_add_job(m, JOB_START, target, JOB_ISOLATE, &error, &default_unit_job);
2089 if (r == -EPERM) {
2090 log_debug_errno(r, "Default target could not be isolated, starting instead: %s", bus_error_message(&error, r));
2091
2092 sd_bus_error_free(&error);
2093
2094 r = manager_add_job(m, JOB_START, target, JOB_REPLACE, &error, &default_unit_job);
2095 if (r < 0) {
2096 *ret_error_message = "Failed to start default target";
2097 return log_emergency_errno(r, "Failed to start default target: %s", bus_error_message(&error, r));
2098 }
2099
2100 } else if (r < 0) {
2101 *ret_error_message = "Failed to isolate default target";
2102 return log_emergency_errno(r, "Failed to isolate default target: %s", bus_error_message(&error, r));
2103 }
2104
2105 m->default_unit_job_id = default_unit_job->id;
2106
2107 return 0;
2108 }
2109
2110 static void free_arguments(void) {
2111
2112 /* Frees all arg_* variables, with the exception of arg_serialization */
2113 rlimit_free_all(arg_default_rlimit);
2114
2115 arg_default_unit = mfree(arg_default_unit);
2116 arg_confirm_spawn = mfree(arg_confirm_spawn);
2117 arg_default_environment = strv_free(arg_default_environment);
2118 arg_syscall_archs = set_free(arg_syscall_archs);
2119 }
2120
2121 static int load_configuration(int argc, char **argv, const char **ret_error_message) {
2122 int r;
2123
2124 assert(ret_error_message);
2125
2126 arg_default_tasks_max = system_tasks_max_scale(DEFAULT_TASKS_MAX_PERCENTAGE, 100U);
2127
2128 r = parse_config_file();
2129 if (r < 0) {
2130 *ret_error_message = "Failed to parse config file";
2131 return r;
2132 }
2133
2134 if (arg_system) {
2135 r = proc_cmdline_parse(parse_proc_cmdline_item, NULL, 0);
2136 if (r < 0)
2137 log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
2138 }
2139
2140 /* Note that this also parses bits from the kernel command line, including "debug". */
2141 log_parse_environment();
2142
2143 r = parse_argv(argc, argv);
2144 if (r < 0) {
2145 *ret_error_message = "Failed to parse commandline arguments";
2146 return r;
2147 }
2148
2149 /* Initialize default unit */
2150 if (!arg_default_unit) {
2151 arg_default_unit = strdup(SPECIAL_DEFAULT_TARGET);
2152 if (!arg_default_unit) {
2153 *ret_error_message = "Failed to set default unit";
2154 return log_oom();
2155 }
2156 }
2157
2158 /* Initialize the show status setting if it hasn't been set explicitly yet */
2159 if (arg_show_status == _SHOW_STATUS_INVALID)
2160 arg_show_status = SHOW_STATUS_YES;
2161
2162 return 0;
2163 }
2164
2165 static int safety_checks(void) {
2166
2167 if (getpid_cached() == 1 &&
2168 arg_action != ACTION_RUN)
2169 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
2170 "Unsupported execution mode while PID 1.");
2171
2172 if (getpid_cached() == 1 &&
2173 !arg_system)
2174 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
2175 "Can't run --user mode as PID 1.");
2176
2177 if (arg_action == ACTION_RUN &&
2178 arg_system &&
2179 getpid_cached() != 1)
2180 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
2181 "Can't run system mode unless PID 1.");
2182
2183 if (arg_action == ACTION_TEST &&
2184 geteuid() == 0)
2185 return log_error_errno(SYNTHETIC_ERRNO(EPERM),
2186 "Don't run test mode as root.");
2187
2188 if (!arg_system &&
2189 arg_action == ACTION_RUN &&
2190 sd_booted() <= 0)
2191 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
2192 "Trying to run as user instance, but the system has not been booted with systemd.");
2193
2194 if (!arg_system &&
2195 arg_action == ACTION_RUN &&
2196 !getenv("XDG_RUNTIME_DIR"))
2197 return log_error_errno(SYNTHETIC_ERRNO(EUNATCH),
2198 "Trying to run as user instance, but $XDG_RUNTIME_DIR is not set.");
2199
2200 if (arg_system &&
2201 arg_action == ACTION_RUN &&
2202 running_in_chroot() > 0)
2203 return log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP),
2204 "Cannot be run in a chroot() environment.");
2205
2206 return 0;
2207 }
2208
2209 static int initialize_security(
2210 bool *loaded_policy,
2211 dual_timestamp *security_start_timestamp,
2212 dual_timestamp *security_finish_timestamp,
2213 const char **ret_error_message) {
2214
2215 int r;
2216
2217 assert(loaded_policy);
2218 assert(security_start_timestamp);
2219 assert(security_finish_timestamp);
2220 assert(ret_error_message);
2221
2222 dual_timestamp_get(security_start_timestamp);
2223
2224 r = mac_selinux_setup(loaded_policy);
2225 if (r < 0) {
2226 *ret_error_message = "Failed to load SELinux policy";
2227 return r;
2228 }
2229
2230 r = mac_smack_setup(loaded_policy);
2231 if (r < 0) {
2232 *ret_error_message = "Failed to load SMACK policy";
2233 return r;
2234 }
2235
2236 r = ima_setup();
2237 if (r < 0) {
2238 *ret_error_message = "Failed to load IMA policy";
2239 return r;
2240 }
2241
2242 dual_timestamp_get(security_finish_timestamp);
2243 return 0;
2244 }
2245
2246 static void test_summary(Manager *m) {
2247 assert(m);
2248
2249 printf("-> By units:\n");
2250 manager_dump_units(m, stdout, "\t");
2251
2252 printf("-> By jobs:\n");
2253 manager_dump_jobs(m, stdout, "\t");
2254 }
2255
2256 static int collect_fds(FDSet **ret_fds, const char **ret_error_message) {
2257 int r;
2258
2259 assert(ret_fds);
2260 assert(ret_error_message);
2261
2262 r = fdset_new_fill(ret_fds);
2263 if (r < 0) {
2264 *ret_error_message = "Failed to allocate fd set";
2265 return log_emergency_errno(r, "Failed to allocate fd set: %m");
2266 }
2267
2268 fdset_cloexec(*ret_fds, true);
2269
2270 if (arg_serialization)
2271 assert_se(fdset_remove(*ret_fds, fileno(arg_serialization)) >= 0);
2272
2273 return 0;
2274 }
2275
2276 static void setup_console_terminal(bool skip_setup) {
2277
2278 if (!arg_system)
2279 return;
2280
2281 /* Become a session leader if we aren't one yet. */
2282 (void) setsid();
2283
2284 /* If we are init, we connect stdin/stdout/stderr to /dev/null and make sure we don't have a controlling
2285 * tty. */
2286 (void) release_terminal();
2287
2288 /* Reset the console, but only if this is really init and we are freshly booted */
2289 if (getpid_cached() == 1 && !skip_setup)
2290 (void) console_setup();
2291 }
2292
2293 static bool early_skip_setup_check(int argc, char *argv[]) {
2294 bool found_deserialize = false;
2295 int i;
2296
2297 /* Determine if this is a reexecution or normal bootup. We do the full command line parsing much later, so
2298 * let's just have a quick peek here. Note that if we have switched root, do all the special setup things
2299 * anyway, even if in that case we also do deserialization. */
2300
2301 for (i = 1; i < argc; i++) {
2302 if (streq(argv[i], "--switched-root"))
2303 return false; /* If we switched root, don't skip the setup. */
2304 else if (streq(argv[i], "--deserialize"))
2305 found_deserialize = true;
2306 }
2307
2308 return found_deserialize; /* When we are deserializing, then we are reexecuting, hence avoid the extensive setup */
2309 }
2310
2311 int main(int argc, char *argv[]) {
2312
2313 dual_timestamp initrd_timestamp = DUAL_TIMESTAMP_NULL, userspace_timestamp = DUAL_TIMESTAMP_NULL, kernel_timestamp = DUAL_TIMESTAMP_NULL,
2314 security_start_timestamp = DUAL_TIMESTAMP_NULL, security_finish_timestamp = DUAL_TIMESTAMP_NULL;
2315 struct rlimit saved_rlimit_nofile = RLIMIT_MAKE_CONST(0),
2316 saved_rlimit_memlock = RLIMIT_MAKE_CONST(RLIM_INFINITY); /* The original rlimits we passed
2317 * in. Note we use different values
2318 * for the two that indicate whether
2319 * these fields are initialized! */
2320 bool skip_setup, loaded_policy = false, queue_default_job = false, first_boot = false, reexecute = false;
2321 char *switch_root_dir = NULL, *switch_root_init = NULL;
2322 usec_t before_startup, after_startup;
2323 static char systemd[] = "systemd";
2324 char timespan[FORMAT_TIMESPAN_MAX];
2325 const char *shutdown_verb = NULL, *error_message = NULL;
2326 int r, retval = EXIT_FAILURE;
2327 Manager *m = NULL;
2328 FDSet *fds = NULL;
2329
2330 /* SysV compatibility: redirect init → telinit */
2331 redirect_telinit(argc, argv);
2332
2333 /* Take timestamps early on */
2334 dual_timestamp_from_monotonic(&kernel_timestamp, 0);
2335 dual_timestamp_get(&userspace_timestamp);
2336
2337 /* Figure out whether we need to do initialize the system, or if we already did that because we are
2338 * reexecuting */
2339 skip_setup = early_skip_setup_check(argc, argv);
2340
2341 /* If we get started via the /sbin/init symlink then we are called 'init'. After a subsequent reexecution we
2342 * are then called 'systemd'. That is confusing, hence let's call us systemd right-away. */
2343 program_invocation_short_name = systemd;
2344 (void) prctl(PR_SET_NAME, systemd);
2345
2346 /* Save the original command line */
2347 saved_argv = argv;
2348 saved_argc = argc;
2349
2350 /* Make sure that if the user says "syslog" we actually log to the journal. */
2351 log_set_upgrade_syslog_to_journal(true);
2352
2353 if (getpid_cached() == 1) {
2354 /* When we run as PID 1 force system mode */
2355 arg_system = true;
2356
2357 /* Disable the umask logic */
2358 umask(0);
2359
2360 /* Make sure that at least initially we do not ever log to journald/syslogd, because it might not be
2361 * activated yet (even though the log socket for it exists). */
2362 log_set_prohibit_ipc(true);
2363
2364 /* Always reopen /dev/console when running as PID 1 or one of its pre-execve() children. This is
2365 * important so that we never end up logging to any foreign stderr, for example if we have to log in a
2366 * child process right before execve()'ing the actual binary, at a point in time where socket
2367 * activation stderr/stdout area already set up. */
2368 log_set_always_reopen_console(true);
2369
2370 if (detect_container() <= 0) {
2371
2372 /* Running outside of a container as PID 1 */
2373 log_set_target(LOG_TARGET_KMSG);
2374 log_open();
2375
2376 if (in_initrd())
2377 initrd_timestamp = userspace_timestamp;
2378
2379 if (!skip_setup) {
2380 r = mount_setup_early();
2381 if (r < 0) {
2382 error_message = "Failed to mount early API filesystems";
2383 goto finish;
2384 }
2385
2386 r = initialize_security(
2387 &loaded_policy,
2388 &security_start_timestamp,
2389 &security_finish_timestamp,
2390 &error_message);
2391 if (r < 0)
2392 goto finish;
2393 }
2394
2395 if (mac_selinux_init() < 0) {
2396 error_message = "Failed to initialize SELinux policy";
2397 goto finish;
2398 }
2399
2400 if (!skip_setup)
2401 initialize_clock();
2402
2403 /* Set the default for later on, but don't actually open the logs like this for now. Note that
2404 * if we are transitioning from the initrd there might still be journal fd open, and we
2405 * shouldn't attempt opening that before we parsed /proc/cmdline which might redirect output
2406 * elsewhere. */
2407 log_set_target(LOG_TARGET_JOURNAL_OR_KMSG);
2408
2409 } else {
2410 /* Running inside a container, as PID 1 */
2411 log_set_target(LOG_TARGET_CONSOLE);
2412 log_open();
2413
2414 /* For later on, see above... */
2415 log_set_target(LOG_TARGET_JOURNAL);
2416
2417 /* clear the kernel timestamp,
2418 * because we are in a container */
2419 kernel_timestamp = DUAL_TIMESTAMP_NULL;
2420 }
2421
2422 initialize_coredump(skip_setup);
2423
2424 r = fixup_environment();
2425 if (r < 0) {
2426 log_emergency_errno(r, "Failed to fix up PID 1 environment: %m");
2427 error_message = "Failed to fix up PID1 environment";
2428 goto finish;
2429 }
2430
2431 } else {
2432 /* Running as user instance */
2433 arg_system = false;
2434 log_set_target(LOG_TARGET_AUTO);
2435 log_open();
2436
2437 /* clear the kernel timestamp,
2438 * because we are not PID 1 */
2439 kernel_timestamp = DUAL_TIMESTAMP_NULL;
2440 }
2441
2442 if (arg_system) {
2443 /* Try to figure out if we can use colors with the console. No need to do that for user instances since
2444 * they never log into the console. */
2445 log_show_color(colors_enabled());
2446
2447 r = make_null_stdio();
2448 if (r < 0)
2449 log_warning_errno(r, "Failed to redirect standard streams to /dev/null, ignoring: %m");
2450 }
2451
2452 /* Mount /proc, /sys and friends, so that /proc/cmdline and
2453 * /proc/$PID/fd is available. */
2454 if (getpid_cached() == 1) {
2455
2456 /* Load the kernel modules early. */
2457 if (!skip_setup)
2458 kmod_setup();
2459
2460 r = mount_setup(loaded_policy);
2461 if (r < 0) {
2462 error_message = "Failed to mount API filesystems";
2463 goto finish;
2464 }
2465 }
2466
2467 /* Reset all signal handlers. */
2468 (void) reset_all_signal_handlers();
2469 (void) ignore_signals(SIGNALS_IGNORE, -1);
2470
2471 r = load_configuration(argc, argv, &error_message);
2472 if (r < 0)
2473 goto finish;
2474
2475 r = safety_checks();
2476 if (r < 0)
2477 goto finish;
2478
2479 if (IN_SET(arg_action, ACTION_TEST, ACTION_HELP, ACTION_DUMP_CONFIGURATION_ITEMS, ACTION_DUMP_BUS_PROPERTIES))
2480 (void) pager_open(arg_pager_flags);
2481
2482 if (arg_action != ACTION_RUN)
2483 skip_setup = true;
2484
2485 if (arg_action == ACTION_HELP) {
2486 retval = help() < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
2487 goto finish;
2488 } else if (arg_action == ACTION_VERSION) {
2489 retval = version();
2490 goto finish;
2491 } else if (arg_action == ACTION_DUMP_CONFIGURATION_ITEMS) {
2492 unit_dump_config_items(stdout);
2493 retval = EXIT_SUCCESS;
2494 goto finish;
2495 } else if (arg_action == ACTION_DUMP_BUS_PROPERTIES) {
2496 dump_bus_properties(stdout);
2497 retval = EXIT_SUCCESS;
2498 goto finish;
2499 }
2500
2501 assert_se(IN_SET(arg_action, ACTION_RUN, ACTION_TEST));
2502
2503 /* Move out of the way, so that we won't block unmounts */
2504 assert_se(chdir("/") == 0);
2505
2506 if (arg_action == ACTION_RUN) {
2507
2508 /* A core pattern might have been specified via the cmdline. */
2509 initialize_core_pattern(skip_setup);
2510
2511 /* Close logging fds, in order not to confuse collecting passed fds and terminal logic below */
2512 log_close();
2513
2514 /* Remember open file descriptors for later deserialization */
2515 r = collect_fds(&fds, &error_message);
2516 if (r < 0)
2517 goto finish;
2518
2519 /* Give up any control of the console, but make sure its initialized. */
2520 setup_console_terminal(skip_setup);
2521
2522 /* Open the logging devices, if possible and necessary */
2523 log_open();
2524 }
2525
2526 log_execution_mode(&first_boot);
2527
2528 r = initialize_runtime(skip_setup,
2529 &saved_rlimit_nofile,
2530 &saved_rlimit_memlock,
2531 &error_message);
2532 if (r < 0)
2533 goto finish;
2534
2535 r = manager_new(arg_system ? UNIT_FILE_SYSTEM : UNIT_FILE_USER,
2536 arg_action == ACTION_TEST ? MANAGER_TEST_FULL : 0,
2537 &m);
2538 if (r < 0) {
2539 log_emergency_errno(r, "Failed to allocate manager object: %m");
2540 error_message = "Failed to allocate manager object";
2541 goto finish;
2542 }
2543
2544 m->timestamps[MANAGER_TIMESTAMP_KERNEL] = kernel_timestamp;
2545 m->timestamps[MANAGER_TIMESTAMP_INITRD] = initrd_timestamp;
2546 m->timestamps[MANAGER_TIMESTAMP_USERSPACE] = userspace_timestamp;
2547 m->timestamps[manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_SECURITY_START)] = security_start_timestamp;
2548 m->timestamps[manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_SECURITY_FINISH)] = security_finish_timestamp;
2549
2550 set_manager_defaults(m);
2551 set_manager_settings(m);
2552 manager_set_first_boot(m, first_boot);
2553
2554 /* Remember whether we should queue the default job */
2555 queue_default_job = !arg_serialization || arg_switched_root;
2556
2557 before_startup = now(CLOCK_MONOTONIC);
2558
2559 r = manager_startup(m, arg_serialization, fds);
2560 if (r < 0) {
2561 error_message = "Failed to start up manager";
2562 goto finish;
2563 }
2564
2565 /* This will close all file descriptors that were opened, but not claimed by any unit. */
2566 fds = fdset_free(fds);
2567 arg_serialization = safe_fclose(arg_serialization);
2568
2569 if (queue_default_job) {
2570 r = do_queue_default_job(m, &error_message);
2571 if (r < 0)
2572 goto finish;
2573 }
2574
2575 after_startup = now(CLOCK_MONOTONIC);
2576
2577 log_full(arg_action == ACTION_TEST ? LOG_INFO : LOG_DEBUG,
2578 "Loaded units and determined initial transaction in %s.",
2579 format_timespan(timespan, sizeof(timespan), after_startup - before_startup, 100 * USEC_PER_MSEC));
2580
2581 if (arg_action == ACTION_TEST) {
2582 test_summary(m);
2583 retval = EXIT_SUCCESS;
2584 goto finish;
2585 }
2586
2587 (void) invoke_main_loop(m,
2588 &reexecute,
2589 &retval,
2590 &shutdown_verb,
2591 &fds,
2592 &switch_root_dir,
2593 &switch_root_init,
2594 &error_message);
2595
2596 finish:
2597 pager_close();
2598
2599 if (m) {
2600 arg_shutdown_watchdog = m->shutdown_watchdog;
2601 m = manager_free(m);
2602 }
2603
2604 free_arguments();
2605 mac_selinux_finish();
2606
2607 if (reexecute)
2608 do_reexecute(argc, argv,
2609 &saved_rlimit_nofile,
2610 &saved_rlimit_memlock,
2611 fds,
2612 switch_root_dir,
2613 switch_root_init,
2614 &error_message); /* This only returns if reexecution failed */
2615
2616 arg_serialization = safe_fclose(arg_serialization);
2617 fds = fdset_free(fds);
2618
2619 #if HAVE_VALGRIND_VALGRIND_H
2620 /* If we are PID 1 and running under valgrind, then let's exit
2621 * here explicitly. valgrind will only generate nice output on
2622 * exit(), not on exec(), hence let's do the former not the
2623 * latter here. */
2624 if (getpid_cached() == 1 && RUNNING_ON_VALGRIND) {
2625 /* Cleanup watchdog_device strings for valgrind. We need them
2626 * in become_shutdown() so normally we cannot free them yet. */
2627 watchdog_free_device();
2628 arg_watchdog_device = mfree(arg_watchdog_device);
2629 return retval;
2630 }
2631 #endif
2632
2633 #if HAS_FEATURE_ADDRESS_SANITIZER
2634 __lsan_do_leak_check();
2635 #endif
2636
2637 if (shutdown_verb) {
2638 r = become_shutdown(shutdown_verb, retval);
2639 log_error_errno(r, "Failed to execute shutdown binary, %s: %m", getpid_cached() == 1 ? "freezing" : "quitting");
2640 error_message = "Failed to execute shutdown binary";
2641 }
2642
2643 watchdog_free_device();
2644 arg_watchdog_device = mfree(arg_watchdog_device);
2645
2646 if (getpid_cached() == 1) {
2647 if (error_message)
2648 manager_status_printf(NULL, STATUS_TYPE_EMERGENCY,
2649 ANSI_HIGHLIGHT_RED "!!!!!!" ANSI_NORMAL,
2650 "%s.", error_message);
2651 freeze_or_exit_or_reboot();
2652 }
2653
2654 return retval;
2655 }