1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 #include <dbus/dbus.h>
28 #include <sys/types.h>
34 #include <sys/prctl.h>
38 #include "mount-setup.h"
39 #include "hostname-setup.h"
40 #include "loopback-setup.h"
41 #include "kmod-setup.h"
42 #include "locale-setup.h"
43 #include "selinux-setup.h"
44 #include "machine-id-setup.h"
45 #include "load-fragment.h"
48 #include "conf-parser.h"
49 #include "bus-errors.h"
61 ACTION_DUMP_CONFIGURATION_ITEMS,
63 } arg_action = ACTION_RUN;
65 static char *arg_default_unit = NULL;
66 static ManagerRunningAs arg_running_as = _MANAGER_RUNNING_AS_INVALID;
68 static bool arg_dump_core = true;
69 static bool arg_crash_shell = false;
70 static int arg_crash_chvt = -1;
71 static bool arg_confirm_spawn = false;
72 static bool arg_show_status = true;
73 #ifdef HAVE_SYSV_COMPAT
74 static bool arg_sysv_console = true;
76 static bool arg_mount_auto = true;
77 static bool arg_swap_auto = true;
78 static char **arg_default_controllers = NULL;
79 static char ***arg_join_controllers = NULL;
80 static ExecOutput arg_default_std_output = EXEC_OUTPUT_JOURNAL;
81 static ExecOutput arg_default_std_error = EXEC_OUTPUT_INHERIT;
83 static FILE* serialization = NULL;
85 static void nop_handler(int sig) {
88 _noreturn_ static void crash(int sig) {
91 log_error("Caught <%s>, not dumping core.", signal_to_string(sig));
96 /* We want to wait for the core process, hence let's enable SIGCHLD */
98 sa.sa_handler = nop_handler;
99 sa.sa_flags = SA_NOCLDSTOP|SA_RESTART;
100 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
102 if ((pid = fork()) < 0)
103 log_error("Caught <%s>, cannot fork for core dump: %s", signal_to_string(sig), strerror(errno));
108 /* Enable default signal handler for core dump */
110 sa.sa_handler = SIG_DFL;
111 assert_se(sigaction(sig, &sa, NULL) == 0);
113 /* Don't limit the core dump size */
115 rl.rlim_cur = RLIM_INFINITY;
116 rl.rlim_max = RLIM_INFINITY;
117 setrlimit(RLIMIT_CORE, &rl);
119 /* Just to be sure... */
120 assert_se(chdir("/") == 0);
122 /* Raise the signal again */
125 assert_not_reached("We shouldn't be here...");
132 /* Order things nicely. */
133 if ((r = wait_for_terminate(pid, &status)) < 0)
134 log_error("Caught <%s>, waitpid() failed: %s", signal_to_string(sig), strerror(-r));
135 else if (status.si_code != CLD_DUMPED)
136 log_error("Caught <%s>, core dump failed.", signal_to_string(sig));
138 log_error("Caught <%s>, dumped core as pid %lu.", signal_to_string(sig), (unsigned long) pid);
143 chvt(arg_crash_chvt);
145 if (arg_crash_shell) {
149 log_info("Executing crash shell in 10s...");
152 /* Let the kernel reap children for us */
154 sa.sa_handler = SIG_IGN;
155 sa.sa_flags = SA_NOCLDSTOP|SA_NOCLDWAIT|SA_RESTART;
156 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
158 if ((pid = fork()) < 0)
159 log_error("Failed to fork off crash shell: %s", strerror(errno));
163 if ((fd = acquire_terminal("/dev/console", false, true, true)) < 0)
164 log_error("Failed to acquire terminal: %s", strerror(-fd));
165 else if ((r = make_stdio(fd)) < 0)
166 log_error("Failed to duplicate terminal fd: %s", strerror(-r));
168 execl("/bin/sh", "/bin/sh", NULL);
170 log_error("execl() failed: %s", strerror(errno));
174 log_info("Successfully spawned crash shell as pid %lu.", (unsigned long) pid);
177 log_info("Freezing execution.");
181 static void install_crash_handler(void) {
186 sa.sa_handler = crash;
187 sa.sa_flags = SA_NODEFER;
189 sigaction_many(&sa, SIGNALS_CRASH_HANDLER, -1);
192 static int console_setup(bool do_reset) {
195 /* If we are init, we connect stdin/stdout/stderr to /dev/null
196 * and make sure we don't have a controlling tty. */
203 tty_fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
205 log_error("Failed to open /dev/console: %s", strerror(-tty_fd));
209 /* We don't want to force text mode.
210 * plymouth may be showing pictures already from initrd. */
211 r = reset_terminal_fd(tty_fd, false);
213 log_error("Failed to reset /dev/console: %s", strerror(-r));
215 close_nointr_nofail(tty_fd);
219 static int set_default_unit(const char *u) {
224 if (!(c = strdup(u)))
227 free(arg_default_unit);
228 arg_default_unit = c;
232 static int parse_proc_cmdline_word(const char *word) {
234 static const char * const rlmap[] = {
235 "emergency", SPECIAL_EMERGENCY_TARGET,
236 "-b", SPECIAL_EMERGENCY_TARGET,
237 "single", SPECIAL_RESCUE_TARGET,
238 "-s", SPECIAL_RESCUE_TARGET,
239 "s", SPECIAL_RESCUE_TARGET,
240 "S", SPECIAL_RESCUE_TARGET,
241 "1", SPECIAL_RESCUE_TARGET,
242 "2", SPECIAL_RUNLEVEL2_TARGET,
243 "3", SPECIAL_RUNLEVEL3_TARGET,
244 "4", SPECIAL_RUNLEVEL4_TARGET,
245 "5", SPECIAL_RUNLEVEL5_TARGET,
250 if (startswith(word, "systemd.unit="))
251 return set_default_unit(word + 13);
253 else if (startswith(word, "systemd.log_target=")) {
255 if (log_set_target_from_string(word + 19) < 0)
256 log_warning("Failed to parse log target %s. Ignoring.", word + 19);
258 } else if (startswith(word, "systemd.log_level=")) {
260 if (log_set_max_level_from_string(word + 18) < 0)
261 log_warning("Failed to parse log level %s. Ignoring.", word + 18);
263 } else if (startswith(word, "systemd.log_color=")) {
265 if (log_show_color_from_string(word + 18) < 0)
266 log_warning("Failed to parse log color setting %s. Ignoring.", word + 18);
268 } else if (startswith(word, "systemd.log_location=")) {
270 if (log_show_location_from_string(word + 21) < 0)
271 log_warning("Failed to parse log location setting %s. Ignoring.", word + 21);
273 } else if (startswith(word, "systemd.dump_core=")) {
276 if ((r = parse_boolean(word + 18)) < 0)
277 log_warning("Failed to parse dump core switch %s. Ignoring.", word + 18);
281 } else if (startswith(word, "systemd.crash_shell=")) {
284 if ((r = parse_boolean(word + 20)) < 0)
285 log_warning("Failed to parse crash shell switch %s. Ignoring.", word + 20);
289 } else if (startswith(word, "systemd.confirm_spawn=")) {
292 if ((r = parse_boolean(word + 22)) < 0)
293 log_warning("Failed to parse confirm spawn switch %s. Ignoring.", word + 22);
295 arg_confirm_spawn = r;
297 } else if (startswith(word, "systemd.crash_chvt=")) {
300 if (safe_atoi(word + 19, &k) < 0)
301 log_warning("Failed to parse crash chvt switch %s. Ignoring.", word + 19);
305 } else if (startswith(word, "systemd.show_status=")) {
308 if ((r = parse_boolean(word + 20)) < 0)
309 log_warning("Failed to parse show status switch %s. Ignoring.", word + 20);
312 } else if (startswith(word, "systemd.default_standard_output=")) {
315 if ((r = exec_output_from_string(word + 32)) < 0)
316 log_warning("Failed to parse default standard output switch %s. Ignoring.", word + 32);
318 arg_default_std_output = r;
319 } else if (startswith(word, "systemd.default_standard_error=")) {
322 if ((r = exec_output_from_string(word + 31)) < 0)
323 log_warning("Failed to parse default standard error switch %s. Ignoring.", word + 31);
325 arg_default_std_error = r;
326 } else if (startswith(word, "systemd.setenv=")) {
330 cenv = strdup(word + 15);
334 eq = strchr(cenv, '=');
338 log_warning("unsetenv failed %s. Ignoring.", strerror(errno));
341 r = setenv(cenv, eq + 1, 1);
343 log_warning("setenv failed %s. Ignoring.", strerror(errno));
346 #ifdef HAVE_SYSV_COMPAT
347 } else if (startswith(word, "systemd.sysv_console=")) {
350 if ((r = parse_boolean(word + 21)) < 0)
351 log_warning("Failed to parse SysV console switch %s. Ignoring.", word + 20);
353 arg_sysv_console = r;
356 } else if (startswith(word, "systemd.")) {
358 log_warning("Unknown kernel switch %s. Ignoring.", word);
360 log_info("Supported kernel switches:\n"
361 "systemd.unit=UNIT Default unit to start\n"
362 "systemd.dump_core=0|1 Dump core on crash\n"
363 "systemd.crash_shell=0|1 Run shell on crash\n"
364 "systemd.crash_chvt=N Change to VT #N on crash\n"
365 "systemd.confirm_spawn=0|1 Confirm every process spawn\n"
366 "systemd.show_status=0|1 Show status updates on the console during bootup\n"
367 #ifdef HAVE_SYSV_COMPAT
368 "systemd.sysv_console=0|1 Connect output of SysV scripts to console\n"
370 "systemd.log_target=console|kmsg|journal|journal-or-kmsg|syslog|syslog-or-kmsg|null\n"
372 "systemd.log_level=LEVEL Log level\n"
373 "systemd.log_color=0|1 Highlight important log messages\n"
374 "systemd.log_location=0|1 Include code location in log messages\n"
375 "systemd.default_standard_output=null|tty|syslog|syslog+console|kmsg|kmsg+console|journal|journal+console\n"
376 " Set default log output for services\n"
377 "systemd.default_standard_error=null|tty|syslog|syslog+console|kmsg|kmsg+console|journal|journal+console\n"
378 " Set default log error output for services\n");
380 } else if (streq(word, "quiet")) {
381 arg_show_status = false;
382 #ifdef HAVE_SYSV_COMPAT
383 arg_sysv_console = false;
388 /* SysV compatibility */
389 for (i = 0; i < ELEMENTSOF(rlmap); i += 2)
390 if (streq(word, rlmap[i]))
391 return set_default_unit(rlmap[i+1]);
397 static int config_parse_level2(
398 const char *filename,
411 log_set_max_level_from_string(rvalue);
415 static int config_parse_target(
416 const char *filename,
429 log_set_target_from_string(rvalue);
433 static int config_parse_color(
434 const char *filename,
447 log_show_color_from_string(rvalue);
451 static int config_parse_location(
452 const char *filename,
465 log_show_location_from_string(rvalue);
469 static int config_parse_cpu_affinity2(
470 const char *filename,
489 FOREACH_WORD_QUOTED(w, l, rvalue, state) {
494 if (!(t = strndup(w, l)))
497 r = safe_atou(t, &cpu);
501 if (!(c = cpu_set_malloc(&ncpus)))
504 if (r < 0 || cpu >= ncpus) {
505 log_error("[%s:%u] Failed to parse CPU affinity: %s", filename, line, rvalue);
510 CPU_SET_S(cpu, CPU_ALLOC_SIZE(ncpus), c);
514 if (sched_setaffinity(0, CPU_ALLOC_SIZE(ncpus), c) < 0)
515 log_warning("Failed to set CPU affinity: %m");
523 static void strv_free_free(char ***l) {
535 static void free_join_controllers(void) {
536 if (!arg_join_controllers)
539 strv_free_free(arg_join_controllers);
540 arg_join_controllers = NULL;
543 static int config_parse_join_controllers(
544 const char *filename,
561 free_join_controllers();
563 FOREACH_WORD_QUOTED(w, length, rvalue, state) {
566 s = strndup(w, length);
570 l = strv_split(s, ",");
575 if (strv_length(l) <= 1) {
580 if (!arg_join_controllers) {
581 arg_join_controllers = new(char**, 2);
582 if (!arg_join_controllers) {
587 arg_join_controllers[0] = l;
588 arg_join_controllers[1] = NULL;
595 t = new0(char**, n+2);
603 for (a = arg_join_controllers; *a; a++) {
605 if (strv_overlap(*a, l)) {
608 c = strv_merge(*a, l);
631 t[n++] = strv_uniq(l);
633 strv_free_free(arg_join_controllers);
634 arg_join_controllers = t;
641 static int parse_config_file(void) {
643 const ConfigTableItem items[] = {
644 { "Manager", "LogLevel", config_parse_level2, 0, NULL },
645 { "Manager", "LogTarget", config_parse_target, 0, NULL },
646 { "Manager", "LogColor", config_parse_color, 0, NULL },
647 { "Manager", "LogLocation", config_parse_location, 0, NULL },
648 { "Manager", "DumpCore", config_parse_bool, 0, &arg_dump_core },
649 { "Manager", "CrashShell", config_parse_bool, 0, &arg_crash_shell },
650 { "Manager", "ShowStatus", config_parse_bool, 0, &arg_show_status },
651 #ifdef HAVE_SYSV_COMPAT
652 { "Manager", "SysVConsole", config_parse_bool, 0, &arg_sysv_console },
654 { "Manager", "CrashChVT", config_parse_int, 0, &arg_crash_chvt },
655 { "Manager", "CPUAffinity", config_parse_cpu_affinity2, 0, NULL },
656 { "Manager", "MountAuto", config_parse_bool, 0, &arg_mount_auto },
657 { "Manager", "SwapAuto", config_parse_bool, 0, &arg_swap_auto },
658 { "Manager", "DefaultControllers", config_parse_strv, 0, &arg_default_controllers },
659 { "Manager", "DefaultStandardOutput", config_parse_output, 0, &arg_default_std_output },
660 { "Manager", "DefaultStandardError", config_parse_output, 0, &arg_default_std_error },
661 { "Manager", "JoinControllers", config_parse_join_controllers, 0, &arg_join_controllers },
662 { NULL, NULL, NULL, 0, NULL }
669 fn = arg_running_as == MANAGER_SYSTEM ? SYSTEM_CONFIG_FILE : USER_CONFIG_FILE;
675 log_warning("Failed to open configuration file '%s': %m", fn);
679 r = config_parse(fn, f, "Manager\0", config_item_table_lookup, (void*) items, false, NULL);
681 log_warning("Failed to parse configuration file: %s", strerror(-r));
688 static int parse_proc_cmdline(void) {
689 char *line, *w, *state;
693 /* Don't read /proc/cmdline if we are in a container, since
694 * that is only relevant for the host system */
695 if (detect_container(NULL) > 0)
698 if ((r = read_one_line_file("/proc/cmdline", &line)) < 0) {
699 log_warning("Failed to read /proc/cmdline, ignoring: %s", strerror(-r));
703 FOREACH_WORD_QUOTED(w, l, line, state) {
706 if (!(word = strndup(w, l))) {
711 r = parse_proc_cmdline_word(word);
725 static int parse_argv(int argc, char *argv[]) {
728 ARG_LOG_LEVEL = 0x100,
736 ARG_DUMP_CONFIGURATION_ITEMS,
744 ARG_DEFAULT_STD_OUTPUT,
745 ARG_DEFAULT_STD_ERROR
748 static const struct option options[] = {
749 { "log-level", required_argument, NULL, ARG_LOG_LEVEL },
750 { "log-target", required_argument, NULL, ARG_LOG_TARGET },
751 { "log-color", optional_argument, NULL, ARG_LOG_COLOR },
752 { "log-location", optional_argument, NULL, ARG_LOG_LOCATION },
753 { "unit", required_argument, NULL, ARG_UNIT },
754 { "system", no_argument, NULL, ARG_SYSTEM },
755 { "user", no_argument, NULL, ARG_USER },
756 { "test", no_argument, NULL, ARG_TEST },
757 { "help", no_argument, NULL, 'h' },
758 { "dump-configuration-items", no_argument, NULL, ARG_DUMP_CONFIGURATION_ITEMS },
759 { "dump-core", no_argument, NULL, ARG_DUMP_CORE },
760 { "crash-shell", no_argument, NULL, ARG_CRASH_SHELL },
761 { "confirm-spawn", no_argument, NULL, ARG_CONFIRM_SPAWN },
762 { "show-status", optional_argument, NULL, ARG_SHOW_STATUS },
763 #ifdef HAVE_SYSV_COMPAT
764 { "sysv-console", optional_argument, NULL, ARG_SYSV_CONSOLE },
766 { "deserialize", required_argument, NULL, ARG_DESERIALIZE },
767 { "introspect", optional_argument, NULL, ARG_INTROSPECT },
768 { "default-standard-output", required_argument, NULL, ARG_DEFAULT_STD_OUTPUT, },
769 { "default-standard-error", required_argument, NULL, ARG_DEFAULT_STD_ERROR, },
781 while ((c = getopt_long(argc, argv, "hDbsz:", options, NULL)) >= 0)
786 if ((r = log_set_max_level_from_string(optarg)) < 0) {
787 log_error("Failed to parse log level %s.", optarg);
795 if ((r = log_set_target_from_string(optarg)) < 0) {
796 log_error("Failed to parse log target %s.", optarg);
805 if ((r = log_show_color_from_string(optarg)) < 0) {
806 log_error("Failed to parse log color setting %s.", optarg);
810 log_show_color(true);
814 case ARG_LOG_LOCATION:
817 if ((r = log_show_location_from_string(optarg)) < 0) {
818 log_error("Failed to parse log location setting %s.", optarg);
822 log_show_location(true);
826 case ARG_DEFAULT_STD_OUTPUT:
828 if ((r = exec_output_from_string(optarg)) < 0) {
829 log_error("Failed to parse default standard output setting %s.", optarg);
832 arg_default_std_output = r;
835 case ARG_DEFAULT_STD_ERROR:
837 if ((r = exec_output_from_string(optarg)) < 0) {
838 log_error("Failed to parse default standard error output setting %s.", optarg);
841 arg_default_std_error = r;
846 if ((r = set_default_unit(optarg)) < 0) {
847 log_error("Failed to set default unit %s: %s", optarg, strerror(-r));
854 arg_running_as = MANAGER_SYSTEM;
858 arg_running_as = MANAGER_USER;
862 arg_action = ACTION_TEST;
865 case ARG_DUMP_CONFIGURATION_ITEMS:
866 arg_action = ACTION_DUMP_CONFIGURATION_ITEMS;
870 arg_dump_core = true;
873 case ARG_CRASH_SHELL:
874 arg_crash_shell = true;
877 case ARG_CONFIRM_SPAWN:
878 arg_confirm_spawn = true;
881 case ARG_SHOW_STATUS:
884 if ((r = parse_boolean(optarg)) < 0) {
885 log_error("Failed to show status boolean %s.", optarg);
890 arg_show_status = true;
892 #ifdef HAVE_SYSV_COMPAT
893 case ARG_SYSV_CONSOLE:
896 if ((r = parse_boolean(optarg)) < 0) {
897 log_error("Failed to SysV console boolean %s.", optarg);
900 arg_sysv_console = r;
902 arg_sysv_console = true;
906 case ARG_DESERIALIZE: {
910 if ((r = safe_atoi(optarg, &fd)) < 0 || fd < 0) {
911 log_error("Failed to parse deserialize option %s.", optarg);
915 if (!(f = fdopen(fd, "r"))) {
916 log_error("Failed to open serialization fd: %m");
921 fclose(serialization);
928 case ARG_INTROSPECT: {
929 const char * const * i = NULL;
931 for (i = bus_interface_table; *i; i += 2)
932 if (!optarg || streq(i[0], optarg)) {
933 fputs(DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE
936 fputs("</node>\n", stdout);
943 log_error("Unknown interface %s.", optarg);
945 arg_action = ACTION_DONE;
950 arg_action = ACTION_HELP;
954 log_set_max_level(LOG_DEBUG);
960 /* Just to eat away the sysvinit kernel
961 * cmdline args without getopt() error
962 * messages that we'll parse in
963 * parse_proc_cmdline_word() or ignore. */
968 log_error("Unknown option code %c", c);
975 if (optind < argc && getpid() != 1) {
976 /* Hmm, when we aren't run as init system
977 * let's complain about excess arguments */
979 log_error("Excess arguments.");
983 if (detect_container(NULL) > 0) {
986 /* All /proc/cmdline arguments the kernel didn't
987 * understand it passed to us. We're not really
988 * interested in that usually since /proc/cmdline is
989 * more interesting and complete. With one exception:
990 * if we are run in a container /proc/cmdline is not
991 * relevant for the container, hence we rely on argv[]
994 for (a = argv; a < argv + argc; a++)
995 if ((r = parse_proc_cmdline_word(*a)) < 0)
1002 static int help(void) {
1004 printf("%s [OPTIONS...]\n\n"
1005 "Starts up and maintains the system or user services.\n\n"
1006 " -h --help Show this help\n"
1007 " --test Determine startup sequence, dump it and exit\n"
1008 " --dump-configuration-items Dump understood unit configuration items\n"
1009 " --introspect[=INTERFACE] Extract D-Bus interface data\n"
1010 " --unit=UNIT Set default unit\n"
1011 " --system Run a system instance, even if PID != 1\n"
1012 " --user Run a user instance\n"
1013 " --dump-core Dump core on crash\n"
1014 " --crash-shell Run shell on crash\n"
1015 " --confirm-spawn Ask for confirmation when spawning processes\n"
1016 " --show-status[=0|1] Show status updates on the console during bootup\n"
1017 #ifdef HAVE_SYSV_COMPAT
1018 " --sysv-console[=0|1] Connect output of SysV scripts to console\n"
1020 " --log-target=TARGET Set log target (console, journal, syslog, kmsg, journal-or-kmsg, syslog-or-kmsg, null)\n"
1021 " --log-level=LEVEL Set log level (debug, info, notice, warning, err, crit, alert, emerg)\n"
1022 " --log-color[=0|1] Highlight important log messages\n"
1023 " --log-location[=0|1] Include code location in log messages\n"
1024 " --default-standard-output= Set default standard output for services\n"
1025 " --default-standard-error= Set default standard error output for services\n",
1026 program_invocation_short_name);
1031 static int prepare_reexecute(Manager *m, FILE **_f, FDSet **_fds) {
1040 /* Make sure nothing is really destructed when we shut down */
1043 if ((r = manager_open_serialization(m, &f)) < 0) {
1044 log_error("Failed to create serialization file: %s", strerror(-r));
1048 if (!(fds = fdset_new())) {
1050 log_error("Failed to allocate fd set: %s", strerror(-r));
1054 if ((r = manager_serialize(m, f, fds)) < 0) {
1055 log_error("Failed to serialize state: %s", strerror(-r));
1059 if (fseeko(f, 0, SEEK_SET) < 0) {
1060 log_error("Failed to rewind serialization fd: %m");
1064 if ((r = fd_cloexec(fileno(f), false)) < 0) {
1065 log_error("Failed to disable O_CLOEXEC for serialization: %s", strerror(-r));
1069 if ((r = fdset_cloexec(fds, false)) < 0) {
1070 log_error("Failed to disable O_CLOEXEC for serialization fds: %s", strerror(-r));
1088 static struct dual_timestamp* parse_initrd_timestamp(struct dual_timestamp *t) {
1090 unsigned long long a, b;
1094 if (!(e = getenv("RD_TIMESTAMP")))
1097 if (sscanf(e, "%llu %llu", &a, &b) != 2)
1100 t->realtime = (usec_t) a;
1101 t->monotonic = (usec_t) b;
1106 static void test_mtab(void) {
1109 /* Check that /etc/mtab is a symlink */
1111 if (readlink_malloc("/etc/mtab", &p) >= 0) {
1114 b = streq(p, "/proc/self/mounts") || streq(p, "/proc/mounts");
1121 log_warning("/etc/mtab is not a symlink or not pointing to /proc/self/mounts. "
1122 "This is not supported anymore. "
1123 "Please make sure to replace this file by a symlink to avoid incorrect or misleading mount(8) output.");
1126 static void test_usr(void) {
1128 /* Check that /usr is not a separate fs */
1130 if (dir_is_empty("/usr") <= 0)
1133 log_warning("/usr appears to be on its own filesytem and is not already mounted. This is not a supported setup. "
1134 "Some things will probably break (sometimes even silently) in mysterious ways. "
1135 "Consult http://freedesktop.org/wiki/Software/systemd/separate-usr-is-broken for more information.");
1138 static void test_cgroups(void) {
1140 if (access("/proc/cgroups", F_OK) >= 0)
1143 log_warning("CONFIG_CGROUPS was not set when your kernel was compiled. "
1144 "Systems without control groups are not supported. "
1145 "We will now sleep for 10s, and then continue boot-up. "
1146 "Expect breakage and please do not file bugs. "
1147 "Instead fix your kernel and enable CONFIG_CGROUPS." );
1152 int main(int argc, char *argv[]) {
1154 int r, retval = EXIT_FAILURE;
1155 usec_t before_startup, after_startup;
1156 char timespan[FORMAT_TIMESPAN_MAX];
1158 bool reexecute = false;
1159 const char *shutdown_verb = NULL;
1160 dual_timestamp initrd_timestamp = { 0ULL, 0ULL };
1161 static char systemd[] = "systemd";
1162 bool is_reexec = false;
1164 bool loaded_policy = false;
1166 #ifdef HAVE_SYSV_COMPAT
1167 if (getpid() != 1 && strstr(program_invocation_short_name, "init")) {
1168 /* This is compatibility support for SysV, where
1169 * calling init as a user is identical to telinit. */
1172 execv(SYSTEMCTL_BINARY_PATH, argv);
1173 log_error("Failed to exec " SYSTEMCTL_BINARY_PATH ": %m");
1178 /* Determine if this is a reexecution or normal bootup. We do
1179 * the full command line parsing much later, so let's just
1180 * have a quick peek here. */
1182 for (j = 1; j < argc; j++)
1183 if (streq(argv[j], "--deserialize")) {
1188 /* If we get started via the /sbin/init symlink then we are
1189 called 'init'. After a subsequent reexecution we are then
1190 called 'systemd'. That is confusing, hence let's call us
1191 systemd right-away. */
1192 program_invocation_short_name = systemd;
1193 prctl(PR_SET_NAME, systemd);
1198 log_show_color(isatty(STDERR_FILENO) > 0);
1199 log_show_location(false);
1200 log_set_max_level(LOG_INFO);
1202 if (getpid() == 1) {
1203 arg_running_as = MANAGER_SYSTEM;
1204 log_set_target(detect_container(NULL) > 0 ? LOG_TARGET_CONSOLE : LOG_TARGET_JOURNAL_OR_KMSG);
1207 if (selinux_setup(&loaded_policy) < 0)
1212 if (label_init() < 0)
1216 if (hwclock_is_localtime() > 0) {
1219 r = hwclock_apply_localtime_delta(&min);
1221 log_error("Failed to apply local time delta, ignoring: %s", strerror(-r));
1223 log_info("RTC configured in localtime, applying delta of %i minutes to system time.", min);
1227 arg_running_as = MANAGER_USER;
1228 log_set_target(LOG_TARGET_AUTO);
1232 /* Initialize default unit */
1233 if (set_default_unit(SPECIAL_DEFAULT_TARGET) < 0)
1236 /* By default, mount "cpu" and "cpuacct" together */
1237 arg_join_controllers = new(char**, 2);
1238 if (!arg_join_controllers)
1241 arg_join_controllers[0] = strv_new("cpu", "cpuacct", NULL);
1242 arg_join_controllers[1] = NULL;
1244 if (!arg_join_controllers[0])
1247 /* Mount /proc, /sys and friends, so that /proc/cmdline and
1248 * /proc/$PID/fd is available. */
1249 if (geteuid() == 0 && !getenv("SYSTEMD_SKIP_API_MOUNTS")) {
1250 r = mount_setup(loaded_policy);
1255 /* Reset all signal handlers. */
1256 assert_se(reset_all_signal_handlers() == 0);
1258 /* If we are init, we can block sigkill. Yay. */
1259 ignore_signals(SIGNALS_IGNORE, -1);
1261 if (parse_config_file() < 0)
1264 if (arg_running_as == MANAGER_SYSTEM)
1265 if (parse_proc_cmdline() < 0)
1268 log_parse_environment();
1270 if (parse_argv(argc, argv) < 0)
1273 if (arg_action == ACTION_TEST && geteuid() == 0) {
1274 log_error("Don't run test mode as root.");
1278 if (arg_running_as == MANAGER_SYSTEM &&
1279 arg_action == ACTION_RUN &&
1280 running_in_chroot() > 0) {
1281 log_error("Cannot be run in a chroot() environment.");
1285 if (arg_action == ACTION_HELP) {
1288 } else if (arg_action == ACTION_DUMP_CONFIGURATION_ITEMS) {
1289 unit_dump_config_items(stdout);
1290 retval = EXIT_SUCCESS;
1292 } else if (arg_action == ACTION_DONE) {
1293 retval = EXIT_SUCCESS;
1297 assert_se(arg_action == ACTION_RUN || arg_action == ACTION_TEST);
1299 /* Close logging fds, in order not to confuse fdset below */
1302 /* Remember open file descriptors for later deserialization */
1303 if (serialization) {
1304 if ((r = fdset_new_fill(&fds)) < 0) {
1305 log_error("Failed to allocate fd set: %s", strerror(-r));
1309 assert_se(fdset_remove(fds, fileno(serialization)) >= 0);
1311 close_all_fds(NULL, 0);
1313 /* Set up PATH unless it is already set */
1315 #ifdef HAVE_SPLIT_USR
1316 "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
1318 "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin",
1320 arg_running_as == MANAGER_SYSTEM);
1322 if (arg_running_as == MANAGER_SYSTEM) {
1323 /* Parse the data passed to us by the initrd and unset it */
1324 parse_initrd_timestamp(&initrd_timestamp);
1325 filter_environ("RD_");
1327 /* Unset some environment variables passed in from the
1328 * kernel that don't really make sense for us. */
1332 /* All other variables are left as is, so that clients
1333 * can still read them via /proc/1/environ */
1336 /* Move out of the way, so that we won't block unmounts */
1337 assert_se(chdir("/") == 0);
1339 if (arg_running_as == MANAGER_SYSTEM) {
1340 /* Become a session leader if we aren't one yet. */
1343 /* Disable the umask logic */
1347 /* Make sure D-Bus doesn't fiddle with the SIGPIPE handlers */
1348 dbus_connection_set_change_sigpipe(FALSE);
1350 /* Reset the console, but only if this is really init and we
1351 * are freshly booted */
1352 if (arg_running_as == MANAGER_SYSTEM && arg_action == ACTION_RUN) {
1353 console_setup(getpid() == 1 && !is_reexec);
1357 /* Open the logging devices, if possible and necessary */
1360 /* Make sure we leave a core dump without panicing the
1363 install_crash_handler();
1365 if (geteuid() == 0 && !getenv("SYSTEMD_SKIP_API_MOUNTS")) {
1366 r = mount_cgroup_controllers(arg_join_controllers);
1371 log_full(arg_running_as == MANAGER_SYSTEM ? LOG_INFO : LOG_DEBUG,
1372 PACKAGE_STRING " running in %s mode. (" SYSTEMD_FEATURES "; " DISTRIBUTION ")", manager_running_as_to_string(arg_running_as));
1374 if (arg_running_as == MANAGER_SYSTEM && !is_reexec) {
1377 if (arg_show_status || plymouth_running())
1390 if ((r = manager_new(arg_running_as, &m)) < 0) {
1391 log_error("Failed to allocate manager object: %s", strerror(-r));
1395 m->confirm_spawn = arg_confirm_spawn;
1396 #ifdef HAVE_SYSV_COMPAT
1397 m->sysv_console = arg_sysv_console;
1399 m->mount_auto = arg_mount_auto;
1400 m->swap_auto = arg_swap_auto;
1401 m->default_std_output = arg_default_std_output;
1402 m->default_std_error = arg_default_std_error;
1404 if (dual_timestamp_is_set(&initrd_timestamp))
1405 m->initrd_timestamp = initrd_timestamp;
1407 if (arg_default_controllers)
1408 manager_set_default_controllers(m, arg_default_controllers);
1410 manager_set_show_status(m, arg_show_status);
1412 before_startup = now(CLOCK_MONOTONIC);
1414 if ((r = manager_startup(m, serialization, fds)) < 0)
1415 log_error("Failed to fully start up daemon: %s", strerror(-r));
1418 /* This will close all file descriptors that were opened, but
1419 * not claimed by any unit. */
1425 if (serialization) {
1426 fclose(serialization);
1427 serialization = NULL;
1430 Unit *target = NULL;
1431 Job *default_unit_job;
1433 dbus_error_init(&error);
1435 log_debug("Activating default unit: %s", arg_default_unit);
1437 if ((r = manager_load_unit(m, arg_default_unit, NULL, &error, &target)) < 0) {
1438 log_error("Failed to load default target: %s", bus_error(&error, r));
1439 dbus_error_free(&error);
1440 } else if (target->load_state == UNIT_ERROR)
1441 log_error("Failed to load default target: %s", strerror(-target->load_error));
1442 else if (target->load_state == UNIT_MASKED)
1443 log_error("Default target masked.");
1445 if (!target || target->load_state != UNIT_LOADED) {
1446 log_info("Trying to load rescue target...");
1448 if ((r = manager_load_unit(m, SPECIAL_RESCUE_TARGET, NULL, &error, &target)) < 0) {
1449 log_error("Failed to load rescue target: %s", bus_error(&error, r));
1450 dbus_error_free(&error);
1452 } else if (target->load_state == UNIT_ERROR) {
1453 log_error("Failed to load rescue target: %s", strerror(-target->load_error));
1455 } else if (target->load_state == UNIT_MASKED) {
1456 log_error("Rescue target masked.");
1461 assert(target->load_state == UNIT_LOADED);
1463 if (arg_action == ACTION_TEST) {
1464 printf("-> By units:\n");
1465 manager_dump_units(m, stdout, "\t");
1468 r = manager_add_job(m, JOB_START, target, JOB_REPLACE, false, &error, &default_unit_job);
1470 log_error("Failed to start default target: %s", bus_error(&error, r));
1471 dbus_error_free(&error);
1474 m->default_unit_job_id = default_unit_job->id;
1476 after_startup = now(CLOCK_MONOTONIC);
1477 log_full(arg_action == ACTION_TEST ? LOG_INFO : LOG_DEBUG,
1478 "Loaded units and determined initial transaction in %s.",
1479 format_timespan(timespan, sizeof(timespan), after_startup - before_startup));
1481 if (arg_action == ACTION_TEST) {
1482 printf("-> By jobs:\n");
1483 manager_dump_jobs(m, stdout, "\t");
1484 retval = EXIT_SUCCESS;
1490 if ((r = manager_loop(m)) < 0) {
1491 log_error("Failed to run mainloop: %s", strerror(-r));
1495 switch (m->exit_code) {
1498 retval = EXIT_SUCCESS;
1502 case MANAGER_RELOAD:
1503 log_info("Reloading.");
1504 if ((r = manager_reload(m)) < 0)
1505 log_error("Failed to reload: %s", strerror(-r));
1508 case MANAGER_REEXECUTE:
1509 if (prepare_reexecute(m, &serialization, &fds) < 0)
1513 log_notice("Reexecuting.");
1516 case MANAGER_REBOOT:
1517 case MANAGER_POWEROFF:
1519 case MANAGER_KEXEC: {
1520 static const char * const table[_MANAGER_EXIT_CODE_MAX] = {
1521 [MANAGER_REBOOT] = "reboot",
1522 [MANAGER_POWEROFF] = "poweroff",
1523 [MANAGER_HALT] = "halt",
1524 [MANAGER_KEXEC] = "kexec"
1527 assert_se(shutdown_verb = table[m->exit_code]);
1529 log_notice("Shutting down.");
1534 assert_not_reached("Unknown exit code.");
1542 free(arg_default_unit);
1543 strv_free(arg_default_controllers);
1544 free_join_controllers();
1551 const char *args[15];
1555 assert(serialization);
1558 args[i++] = SYSTEMD_BINARY_PATH;
1560 args[i++] = "--log-level";
1561 args[i++] = log_level_to_string(log_get_max_level());
1563 args[i++] = "--log-target";
1564 args[i++] = log_target_to_string(log_get_target());
1566 if (arg_running_as == MANAGER_SYSTEM)
1567 args[i++] = "--system";
1569 args[i++] = "--user";
1572 args[i++] = "--dump-core";
1574 if (arg_crash_shell)
1575 args[i++] = "--crash-shell";
1577 if (arg_confirm_spawn)
1578 args[i++] = "--confirm-spawn";
1580 if (arg_show_status)
1581 args[i++] = "--show-status=1";
1583 args[i++] = "--show-status=0";
1585 #ifdef HAVE_SYSV_COMPAT
1586 if (arg_sysv_console)
1587 args[i++] = "--sysv-console=1";
1589 args[i++] = "--sysv-console=0";
1592 snprintf(sfd, sizeof(sfd), "%i", fileno(serialization));
1595 args[i++] = "--deserialize";
1600 assert(i <= ELEMENTSOF(args));
1602 execv(args[0], (char* const*) args);
1604 log_error("Failed to reexecute: %m");
1608 fclose(serialization);
1613 if (shutdown_verb) {
1614 const char * command_line[] = {
1615 SYSTEMD_SHUTDOWN_BINARY_PATH,
1620 execv(SYSTEMD_SHUTDOWN_BINARY_PATH, (char **) command_line);
1621 log_error("Failed to execute shutdown binary, freezing: %m");