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