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