]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/main.c
shutdownd: kill /etc/nologin file before we go down
[thirdparty/systemd.git] / src / main.c
CommitLineData
d6c9574f 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
60918275 2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
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.
12
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.
17
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/>.
20***/
21
ea430986
LP
22#include <dbus/dbus.h>
23
60918275
LP
24#include <stdio.h>
25#include <errno.h>
26#include <string.h>
16354eff 27#include <unistd.h>
4ade7963
LP
28#include <sys/types.h>
29#include <sys/stat.h>
f170852a 30#include <getopt.h>
97c4f35c 31#include <signal.h>
4fc935ca 32#include <sys/wait.h>
80876c20 33#include <fcntl.h>
60918275
LP
34
35#include "manager.h"
16354eff 36#include "log.h"
4ade7963 37#include "mount-setup.h"
302e8c4c 38#include "hostname-setup.h"
af5bc85d 39#include "loopback-setup.h"
11c3a4ee 40#include "kmod-setup.h"
fa0f4d8a 41#include "modprobe-setup.h"
302e8c4c 42#include "load-fragment.h"
a16e1123 43#include "fdset.h"
514f4ef5 44#include "special.h"
487393e9 45#include "conf-parser.h"
398ef8ba 46#include "bus-errors.h"
ad780f19 47#include "missing.h"
e51bc1a2 48#include "label.h"
302e27c8 49#include "build.h"
60918275 50
f170852a
LP
51static enum {
52 ACTION_RUN,
e965d56d 53 ACTION_HELP,
e537352b 54 ACTION_TEST,
4288f619
LP
55 ACTION_DUMP_CONFIGURATION_ITEMS,
56 ACTION_DONE
fa0f4d8a 57} arg_action = ACTION_RUN;
f170852a 58
fa0f4d8a 59static char *arg_default_unit = NULL;
0ff4cdd9 60static char *arg_console = NULL;
fa0f4d8a
LP
61static ManagerRunningAs arg_running_as = _MANAGER_RUNNING_AS_INVALID;
62
63static bool arg_dump_core = true;
64static bool arg_crash_shell = false;
65static int arg_crash_chvt = -1;
66static bool arg_confirm_spawn = false;
67static bool arg_nomodules = false;
9e58ff9c 68static bool arg_show_status = true;
6e98720f 69static bool arg_sysv_console = true;
4fc935ca 70
a16e1123 71static FILE* serialization = NULL;
80876c20 72
93a46b0b 73_noreturn_ static void freeze(void) {
97c4f35c
LP
74 for (;;)
75 pause();
76}
77
6f5e3f35
LP
78static void nop_handler(int sig) {
79}
80
93a46b0b 81_noreturn_ static void crash(int sig) {
97c4f35c 82
fa0f4d8a 83 if (!arg_dump_core)
582a507f 84 log_error("Caught <%s>, not dumping core.", signal_to_string(sig));
97c4f35c 85 else {
6f5e3f35 86 struct sigaction sa;
97c4f35c
LP
87 pid_t pid;
88
6f5e3f35
LP
89 /* We want to wait for the core process, hence let's enable SIGCHLD */
90 zero(sa);
91 sa.sa_handler = nop_handler;
92 sa.sa_flags = SA_NOCLDSTOP|SA_RESTART;
93 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
94
97c4f35c 95 if ((pid = fork()) < 0)
582a507f 96 log_error("Caught <%s>, cannot fork for core dump: %s", signal_to_string(sig), strerror(errno));
97c4f35c
LP
97
98 else if (pid == 0) {
97c4f35c
LP
99 struct rlimit rl;
100
101 /* Enable default signal handler for core dump */
102 zero(sa);
103 sa.sa_handler = SIG_DFL;
104 assert_se(sigaction(sig, &sa, NULL) == 0);
105
106 /* Don't limit the core dump size */
107 zero(rl);
108 rl.rlim_cur = RLIM_INFINITY;
109 rl.rlim_max = RLIM_INFINITY;
110 setrlimit(RLIMIT_CORE, &rl);
111
112 /* Just to be sure... */
113 assert_se(chdir("/") == 0);
114
115 /* Raise the signal again */
116 raise(sig);
117
118 assert_not_reached("We shouldn't be here...");
119 _exit(1);
4fc935ca
LP
120
121 } else {
e364ad06 122 int status;
4fc935ca
LP
123
124 /* Order things nicely. */
e364ad06 125 if (waitpid(pid, &status, 0) < 0)
582a507f 126 log_error("Caught <%s>, waitpid() failed: %s", signal_to_string(sig), strerror(errno));
4fc935ca 127 else if (!WCOREDUMP(status))
582a507f 128 log_error("Caught <%s>, core dump failed.", signal_to_string(sig));
4fc935ca 129 else
582a507f 130 log_error("Caught <%s>, dumped core as pid %lu.", signal_to_string(sig), (unsigned long) pid);
97c4f35c
LP
131 }
132 }
133
fa0f4d8a
LP
134 if (arg_crash_chvt)
135 chvt(arg_crash_chvt);
601f6a1e 136
fa0f4d8a 137 if (arg_crash_shell) {
6f5e3f35
LP
138 struct sigaction sa;
139 pid_t pid;
8c43883a 140
4fc935ca
LP
141 log_info("Executing crash shell in 10s...");
142 sleep(10);
143
6f5e3f35
LP
144 /* Let the kernel reap children for us */
145 zero(sa);
146 sa.sa_handler = SIG_IGN;
147 sa.sa_flags = SA_NOCLDSTOP|SA_NOCLDWAIT|SA_RESTART;
148 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
8c43883a 149
6f5e3f35
LP
150 if ((pid = fork()) < 0)
151 log_error("Failed to fork off crash shell: %s", strerror(errno));
152 else if (pid == 0) {
843d2643 153 int fd, r;
ea5652c2 154
21de3988 155 if ((fd = acquire_terminal("/dev/console", false, true, true)) < 0)
ea5652c2 156 log_error("Failed to acquire terminal: %s", strerror(-fd));
5b2a0903 157 else if ((r = make_stdio(fd)) < 0)
843d2643 158 log_error("Failed to duplicate terminal fd: %s", strerror(-r));
ea5652c2 159
6f5e3f35
LP
160 execl("/bin/sh", "/bin/sh", NULL);
161
162 log_error("execl() failed: %s", strerror(errno));
163 _exit(1);
164 }
c99b188e 165
bb00e604 166 log_info("Successfully spawned crash shall as pid %lu.", (unsigned long) pid);
4fc935ca
LP
167 }
168
169 log_info("Freezing execution.");
97c4f35c
LP
170 freeze();
171}
172
173static void install_crash_handler(void) {
174 struct sigaction sa;
175
176 zero(sa);
177
178 sa.sa_handler = crash;
179 sa.sa_flags = SA_NODEFER;
180
1b91d3e8 181 sigaction_many(&sa, SIGNALS_CRASH_HANDLER, -1);
97c4f35c 182}
f170852a 183
843d2643
LP
184static int make_null_stdio(void) {
185 int null_fd, r;
80876c20 186
c8513d54 187 if ((null_fd = open("/dev/null", O_RDWR|O_NOCTTY)) < 0) {
80876c20 188 log_error("Failed to open /dev/null: %m");
843d2643 189 return -errno;
80876c20
LP
190 }
191
843d2643
LP
192 if ((r = make_stdio(null_fd)) < 0)
193 log_warning("Failed to dup2() device: %s", strerror(-r));
80876c20 194
843d2643
LP
195 return r;
196}
80876c20 197
843d2643
LP
198static int console_setup(bool do_reset) {
199 int tty_fd, r;
80876c20 200
843d2643
LP
201 /* If we are init, we connect stdin/stdout/stderr to /dev/null
202 * and make sure we don't have a controlling tty. */
80876c20 203
843d2643
LP
204 release_terminal();
205
206 if (!do_reset)
207 return 0;
80876c20 208
843d2643
LP
209 if ((tty_fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC)) < 0) {
210 log_error("Failed to open /dev/console: %s", strerror(-tty_fd));
211 return -tty_fd;
212 }
80876c20 213
843d2643
LP
214 if ((r = reset_terminal(tty_fd)) < 0)
215 log_error("Failed to reset /dev/console: %s", strerror(-r));
216
217 close_nointr_nofail(tty_fd);
80876c20
LP
218 return r;
219}
220
f170852a
LP
221static int set_default_unit(const char *u) {
222 char *c;
223
224 assert(u);
225
226 if (!(c = strdup(u)))
227 return -ENOMEM;
228
fa0f4d8a
LP
229 free(arg_default_unit);
230 arg_default_unit = c;
f170852a
LP
231 return 0;
232}
233
234static int parse_proc_cmdline_word(const char *word) {
235
236 static const char * const rlmap[] = {
514f4ef5
LP
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,
f170852a
LP
242 "2", SPECIAL_RUNLEVEL2_TARGET,
243 "3", SPECIAL_RUNLEVEL3_TARGET,
244 "4", SPECIAL_RUNLEVEL4_TARGET,
245 "5", SPECIAL_RUNLEVEL5_TARGET
246 };
247
2f198e2f
LP
248 if (startswith(word, "systemd.unit="))
249 return set_default_unit(word + 13);
f170852a
LP
250
251 else if (startswith(word, "systemd.log_target=")) {
252
253 if (log_set_target_from_string(word + 19) < 0)
254 log_warning("Failed to parse log target %s. Ignoring.", word + 19);
255
256 } else if (startswith(word, "systemd.log_level=")) {
257
258 if (log_set_max_level_from_string(word + 18) < 0)
259 log_warning("Failed to parse log level %s. Ignoring.", word + 18);
260
bbe63281
LP
261 } else if (startswith(word, "systemd.log_color=")) {
262
263 if (log_show_color_from_string(word + 18) < 0)
264 log_warning("Failed to parse log color setting %s. Ignoring.", word + 18);
265
266 } else if (startswith(word, "systemd.log_location=")) {
267
268 if (log_show_location_from_string(word + 21) < 0)
269 log_warning("Failed to parse log location setting %s. Ignoring.", word + 21);
270
4fc935ca
LP
271 } else if (startswith(word, "systemd.dump_core=")) {
272 int r;
273
274 if ((r = parse_boolean(word + 18)) < 0)
601f6a1e 275 log_warning("Failed to parse dump core switch %s, Ignoring.", word + 18);
4fc935ca 276 else
fa0f4d8a 277 arg_dump_core = r;
4fc935ca
LP
278
279 } else if (startswith(word, "systemd.crash_shell=")) {
280 int r;
281
282 if ((r = parse_boolean(word + 20)) < 0)
601f6a1e 283 log_warning("Failed to parse crash shell switch %s, Ignoring.", word + 20);
4fc935ca 284 else
fa0f4d8a 285 arg_crash_shell = r;
5e7ee61c
LP
286
287 } else if (startswith(word, "systemd.confirm_spawn=")) {
288 int r;
289
290 if ((r = parse_boolean(word + 22)) < 0)
291 log_warning("Failed to parse confirm spawn switch %s, Ignoring.", word + 22);
292 else
fa0f4d8a 293 arg_confirm_spawn = r;
5e7ee61c 294
601f6a1e
LP
295 } else if (startswith(word, "systemd.crash_chvt=")) {
296 int k;
297
298 if (safe_atoi(word + 19, &k) < 0)
299 log_warning("Failed to parse crash chvt switch %s, Ignoring.", word + 19);
300 else
fa0f4d8a 301 arg_crash_chvt = k;
601f6a1e 302
9e58ff9c
LP
303 } else if (startswith(word, "systemd.show_status=")) {
304 int r;
305
306 if ((r = parse_boolean(word + 20)) < 0)
307 log_warning("Failed to parse show status switch %s, Ignoring.", word + 20);
6e98720f 308 else
9e58ff9c 309 arg_show_status = r;
6e98720f
LP
310
311 } else if (startswith(word, "systemd.sysv_console=")) {
312 int r;
313
314 if ((r = parse_boolean(word + 21)) < 0)
315 log_warning("Failed to parse SysV console switch %s, Ignoring.", word + 20);
316 else
317 arg_sysv_console = r;
9e58ff9c 318
4fc935ca
LP
319 } else if (startswith(word, "systemd.")) {
320
321 log_warning("Unknown kernel switch %s. Ignoring.", word);
322
bbe63281
LP
323 log_info("Supported kernel switches:\n"
324 "systemd.unit=UNIT Default unit to start\n"
bbe63281 325 "systemd.dump_core=0|1 Dump core on crash\n"
9e58ff9c 326 "systemd.crash_shell=0|1 Run shell on crash\n"
bbe63281 327 "systemd.crash_chvt=N Change to VT #N on crash\n"
9e58ff9c 328 "systemd.confirm_spawn=0|1 Confirm every process spawn\n"
6e98720f
LP
329 "systemd.show_status=0|1 Show status updates on the console during bootup\n"
330 "systemd.sysv_console=0|1 Connect output of SysV scripts to console\n"
331 "systemd.log_target=console|kmsg|syslog|syslog-org-kmsg|null\n"
332 " Log target\n"
333 "systemd.log_level=LEVEL Log level\n"
334 "systemd.log_color=0|1 Highlight important log messages\n"
335 "systemd.log_location=0|1 Include code location in log messages\n");
4fc935ca 336
fa0f4d8a
LP
337 } else if (streq(word, "nomodules"))
338 arg_nomodules = true;
0ff4cdd9
LP
339 else if (startswith(word, "console=")) {
340 const char *k;
341 size_t l;
342 char *w = NULL;
343
344 k = word + 8;
345 l = strcspn(k, ",");
346
347 if (l < 4 ||
348 !startswith(k, "tty") ||
349 k[3+strspn(k+3, "0123456789")] != 0) {
350
351 if (!(w = strndup(k, l)))
352 return -ENOMEM;
353 }
354
355 free(arg_console);
356 arg_console = w;
357
358 } else if (streq(word, "quiet")) {
6e98720f
LP
359 arg_show_status = false;
360 arg_sysv_console = false;
9e58ff9c 361 } else {
f170852a
LP
362 unsigned i;
363
364 /* SysV compatibility */
f170852a
LP
365 for (i = 0; i < ELEMENTSOF(rlmap); i += 2)
366 if (streq(word, rlmap[i]))
367 return set_default_unit(rlmap[i+1]);
368 }
369
370 return 0;
371}
372
487393e9
LP
373static int config_parse_level(
374 const char *filename,
375 unsigned line,
376 const char *section,
377 const char *lvalue,
378 const char *rvalue,
379 void *data,
380 void *userdata) {
381
382 assert(filename);
383 assert(lvalue);
384 assert(rvalue);
385
386 log_set_max_level_from_string(rvalue);
387 return 0;
388}
389
390static int config_parse_target(
391 const char *filename,
392 unsigned line,
393 const char *section,
394 const char *lvalue,
395 const char *rvalue,
396 void *data,
397 void *userdata) {
398
399 assert(filename);
400 assert(lvalue);
401 assert(rvalue);
402
403 log_set_target_from_string(rvalue);
404 return 0;
405}
406
407static int config_parse_color(
408 const char *filename,
409 unsigned line,
410 const char *section,
411 const char *lvalue,
412 const char *rvalue,
413 void *data,
414 void *userdata) {
415
416 assert(filename);
417 assert(lvalue);
418 assert(rvalue);
419
420 log_show_color_from_string(rvalue);
421 return 0;
422}
423
424static int config_parse_location(
425 const char *filename,
426 unsigned line,
427 const char *section,
428 const char *lvalue,
429 const char *rvalue,
430 void *data,
431 void *userdata) {
432
433 assert(filename);
434 assert(lvalue);
435 assert(rvalue);
436
437 log_show_location_from_string(rvalue);
438 return 0;
439}
440
441static int config_parse_cpu_affinity(
442 const char *filename,
443 unsigned line,
444 const char *section,
445 const char *lvalue,
446 const char *rvalue,
447 void *data,
448 void *userdata) {
449
450 char *w;
451 size_t l;
452 char *state;
453 cpu_set_t *c = NULL;
454 unsigned ncpus = 0;
455
456 assert(filename);
457 assert(lvalue);
458 assert(rvalue);
459
f60f22df 460 FOREACH_WORD_QUOTED(w, l, rvalue, state) {
487393e9
LP
461 char *t;
462 int r;
463 unsigned cpu;
464
465 if (!(t = strndup(w, l)))
466 return -ENOMEM;
467
468 r = safe_atou(t, &cpu);
469 free(t);
470
471 if (!c)
472 if (!(c = cpu_set_malloc(&ncpus)))
473 return -ENOMEM;
474
475 if (r < 0 || cpu >= ncpus) {
476 log_error("[%s:%u] Failed to parse CPU affinity: %s", filename, line, rvalue);
477 CPU_FREE(c);
478 return -EBADMSG;
479 }
480
481 CPU_SET_S(cpu, CPU_ALLOC_SIZE(ncpus), c);
482 }
483
484 if (c) {
485 if (sched_setaffinity(0, CPU_ALLOC_SIZE(ncpus), c) < 0)
486 log_warning("Failed to set CPU affinity: %m");
487
488 CPU_FREE(c);
489 }
490
491 return 0;
492}
493
494static int parse_config_file(void) {
495
496 const ConfigItem items[] = {
497 { "LogLevel", config_parse_level, NULL, "Manager" },
498 { "LogTarget", config_parse_target, NULL, "Manager" },
499 { "LogColor", config_parse_color, NULL, "Manager" },
500 { "LogLocation", config_parse_location, NULL, "Manager" },
501 { "DumpCore", config_parse_bool, &arg_dump_core, "Manager" },
502 { "CrashShell", config_parse_bool, &arg_crash_shell, "Manager" },
503 { "ShowStatus", config_parse_bool, &arg_show_status, "Manager" },
6e98720f 504 { "SysVConsole", config_parse_bool, &arg_sysv_console,"Manager" },
487393e9
LP
505 { "CrashChVT", config_parse_int, &arg_crash_chvt, "Manager" },
506 { "CPUAffinity", config_parse_cpu_affinity, NULL, "Manager" },
507 { NULL, NULL, NULL, NULL }
508 };
509
510 static const char * const sections[] = {
511 "Manager",
512 NULL
513 };
514
515 FILE *f;
516 const char *fn;
517 int r;
518
519 fn = arg_running_as == MANAGER_SYSTEM ? SYSTEM_CONFIG_FILE : SESSION_CONFIG_FILE;
520
521 if (!(f = fopen(fn, "re"))) {
522 if (errno == ENOENT)
523 return 0;
524
525 log_warning("Failed to open configuration file '%s': %m", fn);
526 return 0;
527 }
528
529 if ((r = config_parse(fn, f, sections, items, false, NULL)) < 0)
530 log_warning("Failed to parse configuration file: %s", strerror(-r));
531
532 fclose(f);
533
534 return 0;
535}
536
f170852a
LP
537static int parse_proc_cmdline(void) {
538 char *line;
539 int r;
540 char *w;
541 size_t l;
542 char *state;
543
544 if ((r = read_one_line_file("/proc/cmdline", &line)) < 0) {
e364ad06 545 log_warning("Failed to read /proc/cmdline, ignoring: %s", strerror(-r));
f170852a
LP
546 return 0;
547 }
548
549 FOREACH_WORD_QUOTED(w, l, line, state) {
550 char *word;
551
552 if (!(word = strndup(w, l))) {
553 r = -ENOMEM;
554 goto finish;
555 }
556
557 r = parse_proc_cmdline_word(word);
558 free(word);
559
560 if (r < 0)
561 goto finish;
562 }
563
564 r = 0;
565
566finish:
567 free(line);
568 return r;
569}
570
571static int parse_argv(int argc, char *argv[]) {
572
573 enum {
574 ARG_LOG_LEVEL = 0x100,
575 ARG_LOG_TARGET,
bbe63281
LP
576 ARG_LOG_COLOR,
577 ARG_LOG_LOCATION,
2f198e2f 578 ARG_UNIT,
edb9aaa8
LP
579 ARG_SYSTEM,
580 ARG_SESSION,
e537352b 581 ARG_TEST,
80876c20 582 ARG_DUMP_CONFIGURATION_ITEMS,
9e58ff9c
LP
583 ARG_DUMP_CORE,
584 ARG_CRASH_SHELL,
a16e1123 585 ARG_CONFIRM_SPAWN,
9e58ff9c 586 ARG_SHOW_STATUS,
6e98720f 587 ARG_SYSV_CONSOLE,
4288f619
LP
588 ARG_DESERIALIZE,
589 ARG_INTROSPECT
f170852a
LP
590 };
591
592 static const struct option options[] = {
a16e1123
LP
593 { "log-level", required_argument, NULL, ARG_LOG_LEVEL },
594 { "log-target", required_argument, NULL, ARG_LOG_TARGET },
bbe63281
LP
595 { "log-color", optional_argument, NULL, ARG_LOG_COLOR },
596 { "log-location", optional_argument, NULL, ARG_LOG_LOCATION },
2f198e2f 597 { "unit", required_argument, NULL, ARG_UNIT },
edb9aaa8
LP
598 { "system", no_argument, NULL, ARG_SYSTEM },
599 { "session", no_argument, NULL, ARG_SESSION },
a16e1123
LP
600 { "test", no_argument, NULL, ARG_TEST },
601 { "help", no_argument, NULL, 'h' },
602 { "dump-configuration-items", no_argument, NULL, ARG_DUMP_CONFIGURATION_ITEMS },
9e58ff9c
LP
603 { "dump-core", no_argument, NULL, ARG_DUMP_CORE },
604 { "crash-shell", no_argument, NULL, ARG_CRASH_SHELL },
a16e1123 605 { "confirm-spawn", no_argument, NULL, ARG_CONFIRM_SPAWN },
6e98720f
LP
606 { "show-status", optional_argument, NULL, ARG_SHOW_STATUS },
607 { "sysv-console", optional_argument, NULL, ARG_SYSV_CONSOLE },
a16e1123 608 { "deserialize", required_argument, NULL, ARG_DESERIALIZE },
4288f619 609 { "introspect", optional_argument, NULL, ARG_INTROSPECT },
a16e1123 610 { NULL, 0, NULL, 0 }
f170852a
LP
611 };
612
613 int c, r;
614
615 assert(argc >= 1);
616 assert(argv);
617
1d2e23ab 618 while ((c = getopt_long(argc, argv, "hD", options, NULL)) >= 0)
f170852a
LP
619
620 switch (c) {
621
622 case ARG_LOG_LEVEL:
623 if ((r = log_set_max_level_from_string(optarg)) < 0) {
624 log_error("Failed to parse log level %s.", optarg);
625 return r;
626 }
627
628 break;
629
630 case ARG_LOG_TARGET:
631
632 if ((r = log_set_target_from_string(optarg)) < 0) {
633 log_error("Failed to parse log target %s.", optarg);
634 return r;
635 }
636
637 break;
638
bbe63281
LP
639 case ARG_LOG_COLOR:
640
d0b170c8
LP
641 if (optarg) {
642 if ((r = log_show_color_from_string(optarg)) < 0) {
643 log_error("Failed to parse log color setting %s.", optarg);
644 return r;
645 }
646 } else
647 log_show_color(true);
bbe63281
LP
648
649 break;
650
651 case ARG_LOG_LOCATION:
652
d0b170c8
LP
653 if (optarg) {
654 if ((r = log_show_location_from_string(optarg)) < 0) {
655 log_error("Failed to parse log location setting %s.", optarg);
656 return r;
657 }
658 } else
659 log_show_location(true);
bbe63281
LP
660
661 break;
662
2f198e2f 663 case ARG_UNIT:
f170852a
LP
664
665 if ((r = set_default_unit(optarg)) < 0) {
666 log_error("Failed to set default unit %s: %s", optarg, strerror(-r));
667 return r;
668 }
669
670 break;
671
edb9aaa8
LP
672 case ARG_SYSTEM:
673 arg_running_as = MANAGER_SYSTEM;
674 break;
a5dab5ce 675
edb9aaa8
LP
676 case ARG_SESSION:
677 arg_running_as = MANAGER_SESSION;
a5dab5ce 678 break;
a5dab5ce 679
e965d56d 680 case ARG_TEST:
fa0f4d8a 681 arg_action = ACTION_TEST;
e965d56d
LP
682 break;
683
e537352b 684 case ARG_DUMP_CONFIGURATION_ITEMS:
fa0f4d8a 685 arg_action = ACTION_DUMP_CONFIGURATION_ITEMS;
e537352b
LP
686 break;
687
9e58ff9c
LP
688 case ARG_DUMP_CORE:
689 arg_dump_core = true;
690 break;
691
692 case ARG_CRASH_SHELL:
693 arg_crash_shell = true;
694 break;
695
80876c20 696 case ARG_CONFIRM_SPAWN:
fa0f4d8a 697 arg_confirm_spawn = true;
80876c20
LP
698 break;
699
9e58ff9c 700 case ARG_SHOW_STATUS:
6e98720f
LP
701
702 if (optarg) {
703 if ((r = parse_boolean(optarg)) < 0) {
704 log_error("Failed to show status boolean %s.", optarg);
705 return r;
706 }
707 arg_show_status = r;
708 } else
709 arg_show_status = true;
710 break;
711
712 case ARG_SYSV_CONSOLE:
713
714 if (optarg) {
715 if ((r = parse_boolean(optarg)) < 0) {
716 log_error("Failed to SysV console boolean %s.", optarg);
717 return r;
718 }
719 arg_sysv_console = r;
720 } else
721 arg_sysv_console = true;
9e58ff9c
LP
722 break;
723
a16e1123
LP
724 case ARG_DESERIALIZE: {
725 int fd;
726 FILE *f;
727
728 if ((r = safe_atoi(optarg, &fd)) < 0 || fd < 0) {
729 log_error("Failed to parse deserialize option %s.", optarg);
730 return r;
731 }
732
733 if (!(f = fdopen(fd, "r"))) {
734 log_error("Failed to open serialization fd: %m");
735 return r;
736 }
737
738 if (serialization)
739 fclose(serialization);
740
741 serialization = f;
742
743 break;
744 }
745
4288f619
LP
746 case ARG_INTROSPECT: {
747 const char * const * i = NULL;
748
749 for (i = bus_interface_table; *i; i += 2)
750 if (!optarg || streq(i[0], optarg)) {
751 fputs(DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE
752 "<node>\n", stdout);
753 fputs(i[1], stdout);
754 fputs("</node>\n", stdout);
755
756 if (optarg)
757 break;
758 }
759
760 if (!i[0] && optarg)
761 log_error("Unknown interface %s.", optarg);
762
fa0f4d8a 763 arg_action = ACTION_DONE;
4288f619
LP
764 break;
765 }
766
f170852a 767 case 'h':
fa0f4d8a 768 arg_action = ACTION_HELP;
f170852a
LP
769 break;
770
1d2e23ab
LP
771 case 'D':
772 log_set_max_level(LOG_DEBUG);
773 break;
774
f170852a
LP
775 case '?':
776 return -EINVAL;
777
778 default:
779 log_error("Unknown option code %c", c);
780 return -EINVAL;
781 }
782
51f0e189
LP
783 /* PID 1 will get the kernel arguments as parameters, which we
784 * ignore and unconditionally read from
785 * /proc/cmdline. However, we need to ignore those arguments
786 * here. */
fa0f4d8a 787 if (arg_running_as != MANAGER_SYSTEM && optind < argc) {
51f0e189
LP
788 log_error("Excess arguments.");
789 return -EINVAL;
790 }
791
f170852a
LP
792 return 0;
793}
794
795static int help(void) {
796
2e33c433 797 printf("%s [OPTIONS...]\n\n"
bbe63281 798 "Starts up and maintains the system or a session.\n\n"
e537352b 799 " -h --help Show this help\n"
e537352b 800 " --test Determine startup sequence, dump it and exit\n"
80876c20 801 " --dump-configuration-items Dump understood unit configuration items\n"
bbe63281 802 " --introspect[=INTERFACE] Extract D-Bus interface data\n"
9e58ff9c 803 " --unit=UNIT Set default unit\n"
edb9aaa8
LP
804 " --system Run a system instance, even if PID != 1\n"
805 " --session Run a session instance\n"
9e58ff9c
LP
806 " --dump-core Dump core on crash\n"
807 " --crash-shell Run shell on crash\n"
808 " --confirm-spawn Ask for confirmation when spawning processes\n"
6e98720f
LP
809 " --show-status[=0|1] Show status updates on the console during bootup\n"
810 " --sysv-console[=0|1] Connect output of SysV scripts to console\n"
bbe63281 811 " --log-target=TARGET Set log target (console, syslog, kmsg, syslog-or-kmsg, null)\n"
9e58ff9c 812 " --log-level=LEVEL Set log level (debug, info, notice, warning, err, crit, alert, emerg)\n"
2218198b 813 " --log-color[=0|1] Highlight important log messages\n"
bbe63281 814 " --log-location[=0|1] Include code location in log messages\n",
5b6319dc 815 program_invocation_short_name);
f170852a
LP
816
817 return 0;
818}
819
a16e1123
LP
820static int prepare_reexecute(Manager *m, FILE **_f, FDSet **_fds) {
821 FILE *f = NULL;
822 FDSet *fds = NULL;
823 int r;
824
825 assert(m);
826 assert(_f);
827 assert(_fds);
828
d8d5ab98 829 if ((r = manager_open_serialization(m, &f)) < 0) {
a16e1123
LP
830 log_error("Failed to create serialization faile: %s", strerror(-r));
831 goto fail;
832 }
833
834 if (!(fds = fdset_new())) {
835 r = -ENOMEM;
836 log_error("Failed to allocate fd set: %s", strerror(-r));
837 goto fail;
838 }
839
840 if ((r = manager_serialize(m, f, fds)) < 0) {
841 log_error("Failed to serialize state: %s", strerror(-r));
842 goto fail;
843 }
844
845 if (fseeko(f, 0, SEEK_SET) < 0) {
846 log_error("Failed to rewind serialization fd: %m");
847 goto fail;
848 }
849
850 if ((r = fd_cloexec(fileno(f), false)) < 0) {
851 log_error("Failed to disable O_CLOEXEC for serialization: %s", strerror(-r));
852 goto fail;
853 }
854
855 if ((r = fdset_cloexec(fds, false)) < 0) {
856 log_error("Failed to disable O_CLOEXEC for serialization fds: %s", strerror(-r));
857 goto fail;
858 }
859
860 *_f = f;
861 *_fds = fds;
862
863 return 0;
864
865fail:
866 fdset_free(fds);
867
868 if (f)
869 fclose(f);
870
871 return r;
872}
873
60918275
LP
874int main(int argc, char *argv[]) {
875 Manager *m = NULL;
87f0e418 876 Unit *target = NULL;
60918275 877 int r, retval = 1;
a16e1123
LP
878 FDSet *fds = NULL;
879 bool reexecute = false;
27b14a22 880
2cb1a60d
LP
881 if (getpid() != 1 && strstr(program_invocation_short_name, "init")) {
882 /* This is compatbility support for SysV, where
883 * calling init as a user is identical to telinit. */
884
885 errno = -ENOENT;
886 execv(SYSTEMCTL_BINARY_PATH, argv);
887 log_error("Failed to exec " SYSTEMCTL_BINARY_PATH ": %m");
888 return 1;
889 }
890
2cc59dbf 891 log_show_color(isatty(STDERR_FILENO) > 0);
bbe63281 892 log_show_location(false);
7c706717 893 log_set_max_level(LOG_INFO);
bbe63281 894
843d2643 895 if (getpid() == 1) {
fa0f4d8a 896 arg_running_as = MANAGER_SYSTEM;
843d2643 897 log_set_target(LOG_TARGET_SYSLOG_OR_KMSG);
0ff4cdd9
LP
898
899 if (label_init() < 0)
900 goto finish;
bbe63281 901 } else {
fa0f4d8a 902 arg_running_as = MANAGER_SESSION;
bbe63281
LP
903 log_set_target(LOG_TARGET_CONSOLE);
904 }
a5dab5ce 905
f170852a
LP
906 if (set_default_unit(SPECIAL_DEFAULT_TARGET) < 0)
907 goto finish;
60918275 908
f170852a
LP
909 /* Mount /proc, /sys and friends, so that /proc/cmdline and
910 * /proc/$PID/fd is available. */
ca326f6f 911 if (geteuid() == 0 && !getenv("SYSTEMD_SKIP_API_MOUNTS"))
8efe3c01
LP
912 if (mount_setup() < 0)
913 goto finish;
4ade7963
LP
914
915 /* Reset all signal handlers. */
916 assert_se(reset_all_signal_handlers() == 0);
917
078e4539 918 /* If we are init, we can block sigkill. Yay. */
9a34ec5f 919 ignore_signals(SIGNALS_IGNORE, -1);
078e4539 920
487393e9
LP
921 if (parse_config_file() < 0)
922 goto finish;
923
fa0f4d8a 924 if (arg_running_as == MANAGER_SYSTEM)
a5dab5ce
LP
925 if (parse_proc_cmdline() < 0)
926 goto finish;
f170852a
LP
927
928 log_parse_environment();
929
930 if (parse_argv(argc, argv) < 0)
931 goto finish;
932
fa0f4d8a 933 if (arg_action == ACTION_HELP) {
f170852a
LP
934 retval = help();
935 goto finish;
fa0f4d8a 936 } else if (arg_action == ACTION_DUMP_CONFIGURATION_ITEMS) {
e537352b
LP
937 unit_dump_config_items(stdout);
938 retval = 0;
939 goto finish;
fa0f4d8a 940 } else if (arg_action == ACTION_DONE) {
4288f619
LP
941 retval = 0;
942 goto finish;
f170852a
LP
943 }
944
fa0f4d8a 945 assert_se(arg_action == ACTION_RUN || arg_action == ACTION_TEST);
f170852a 946
a16e1123
LP
947 /* Remember open file descriptors for later deserialization */
948 if (serialization) {
949 if ((r = fdset_new_fill(&fds)) < 0) {
950 log_error("Failed to allocate fd set: %s", strerror(-r));
951 goto finish;
952 }
953
954 assert_se(fdset_remove(fds, fileno(serialization)) >= 0);
955 } else
956 close_all_fds(NULL, 0);
957
09082a94 958 /* Set up PATH unless it is already set */
e537352b
LP
959 setenv("PATH",
960 "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
fa0f4d8a 961 arg_running_as == MANAGER_SYSTEM);
09082a94 962
f170852a
LP
963 /* Move out of the way, so that we won't block unmounts */
964 assert_se(chdir("/") == 0);
965
fa0f4d8a 966 if (arg_running_as == MANAGER_SYSTEM) {
80876c20
LP
967 /* Become a session leader if we aren't one yet. */
968 setsid();
4ade7963 969
80876c20
LP
970 /* Disable the umask logic */
971 umask(0);
972 }
973
843d2643
LP
974 /* Make sure D-Bus doesn't fiddle with the SIGPIPE handlers */
975 dbus_connection_set_change_sigpipe(FALSE);
976
2146621b
LP
977 /* Reset the console, but only if this is really init and we
978 * are freshly booted */
fa0f4d8a 979 if (arg_running_as == MANAGER_SYSTEM && arg_action == ACTION_RUN) {
2146621b 980 console_setup(getpid() == 1 && !serialization);
843d2643
LP
981 make_null_stdio();
982 }
4ade7963 983
18149b9f 984 /* Open the logging devices, if possible and necessary */
843d2643 985 log_open();
4ade7963 986
5373d602
LP
987 /* Make sure we leave a core dump without panicing the
988 * kernel. */
4fc935ca
LP
989 if (getpid() == 1)
990 install_crash_handler();
97c4f35c 991
302e27c8
LP
992 log_full(arg_running_as == MANAGER_SYSTEM ? LOG_INFO : LOG_DEBUG,
993 PACKAGE_STRING " running in %s mode. (" SYSTEMD_FEATURES ")", manager_running_as_to_string(arg_running_as));
a5dab5ce 994
ad780f19
LP
995 if (arg_running_as == MANAGER_SYSTEM) {
996
997 /* Disable nscd, to avoid deadlocks when systemd uses
998 * NSS and the nscd socket is maintained by us. */
afea26ad 999 nss_disable_nscd();
ad780f19
LP
1000
1001 if (!serialization) {
1002 if (arg_show_status)
1003 status_welcome();
1004 modprobe_setup(arg_nomodules);
1005 kmod_setup();
1006 hostname_setup();
1007 loopback_setup();
1008 }
af5bc85d 1009 }
302e8c4c 1010
9e58ff9c 1011 if ((r = manager_new(arg_running_as, &m)) < 0) {
8e274523 1012 log_error("Failed to allocate manager object: %s", strerror(-r));
60918275
LP
1013 goto finish;
1014 }
1015
9e58ff9c
LP
1016 m->confirm_spawn = arg_confirm_spawn;
1017 m->show_status = arg_show_status;
6e98720f 1018 m->sysv_console = arg_sysv_console;
9e58ff9c 1019
a16e1123 1020 if ((r = manager_startup(m, serialization, fds)) < 0)
6e2ef85b 1021 log_error("Failed to fully start up daemon: %s", strerror(-r));
a16e1123
LP
1022
1023 if (fds) {
1024 /* This will close all file descriptors that were opened, but
1025 * not claimed by any unit. */
1026
1027 fdset_free(fds);
1028 fds = NULL;
f50e0a01
LP
1029 }
1030
a16e1123
LP
1031 if (serialization) {
1032 fclose(serialization);
1033 serialization = NULL;
1034 } else {
398ef8ba
LP
1035 DBusError error;
1036
1037 dbus_error_init(&error);
1038
fa0f4d8a 1039 log_debug("Activating default unit: %s", arg_default_unit);
a16e1123 1040
398ef8ba
LP
1041 if ((r = manager_load_unit(m, arg_default_unit, NULL, &error, &target)) < 0) {
1042 log_error("Failed to load default target: %s", bus_error(&error, r));
1043 dbus_error_free(&error);
27b14a22 1044
a16e1123 1045 log_info("Trying to load rescue target...");
398ef8ba
LP
1046 if ((r = manager_load_unit(m, SPECIAL_RESCUE_TARGET, NULL, &error, &target)) < 0) {
1047 log_error("Failed to load rescue target: %s", bus_error(&error, r));
1048 dbus_error_free(&error);
a16e1123
LP
1049 goto finish;
1050 }
1051 }
37d88da7 1052
fa0f4d8a 1053 if (arg_action == ACTION_TEST) {
40d50879 1054 printf("-> By units:\n");
a16e1123
LP
1055 manager_dump_units(m, stdout, "\t");
1056 }
1057
0ff4cdd9 1058 if ((r = manager_add_job(m, JOB_START, target, JOB_REPLACE, false, &error, NULL)) < 0) {
398ef8ba
LP
1059 log_error("Failed to start default target: %s", bus_error(&error, r));
1060 dbus_error_free(&error);
37d88da7
LP
1061 goto finish;
1062 }
60918275 1063
0ff4cdd9
LP
1064 if (arg_console && arg_running_as == MANAGER_SYSTEM) {
1065 char *name;
1066
1067 if (asprintf(&name, "getty@%s.service", arg_console) < 0)
1068 log_error("Out of memory while generating console getty service name.");
1069 else {
1070 if ((r = manager_add_job_by_name(m, JOB_START, name, JOB_FAIL, false, &error, NULL)) < 0) {
1071 log_error("Failed to start console getty target: %s", bus_error(&error, r));
1072 dbus_error_free(&error);
1073 }
1074
1075 free(name);
1076 }
1077 }
1078
fa0f4d8a 1079 if (arg_action == ACTION_TEST) {
40d50879 1080 printf("-> By jobs:\n");
a16e1123
LP
1081 manager_dump_jobs(m, stdout, "\t");
1082 retval = 0;
1083 goto finish;
1084 }
e965d56d 1085 }
d46de8a1 1086
a16e1123
LP
1087 for (;;) {
1088 if ((r = manager_loop(m)) < 0) {
1089 log_error("Failed to run mainloop: %s", strerror(-r));
1090 goto finish;
1091 }
11dd41ce 1092
a16e1123 1093 switch (m->exit_code) {
e965d56d 1094
a16e1123
LP
1095 case MANAGER_EXIT:
1096 retval = 0;
1097 log_debug("Exit.");
1098 goto finish;
e965d56d 1099
a16e1123 1100 case MANAGER_RELOAD:
e015090f 1101 log_info("Reloading.");
a16e1123
LP
1102 if ((r = manager_reload(m)) < 0)
1103 log_error("Failed to reload: %s", strerror(-r));
1104 break;
cea8e32e 1105
a16e1123 1106 case MANAGER_REEXECUTE:
a16e1123
LP
1107 if (prepare_reexecute(m, &serialization, &fds) < 0)
1108 goto finish;
60918275 1109
a16e1123 1110 reexecute = true;
e015090f 1111 log_notice("Reexecuting.");
a16e1123
LP
1112 goto finish;
1113
1114 default:
1115 assert_not_reached("Unknown exit code.");
1116 }
1117 }
f170852a 1118
60918275
LP
1119finish:
1120 if (m)
1121 manager_free(m);
1122
fa0f4d8a 1123 free(arg_default_unit);
0ff4cdd9 1124 free(arg_console);
b9cd2ec1 1125
ea430986
LP
1126 dbus_shutdown();
1127
a16e1123 1128 if (reexecute) {
6e98720f 1129 const char *args[15];
a16e1123
LP
1130 unsigned i = 0;
1131 char sfd[16];
1132
1133 assert(serialization);
1134 assert(fds);
1135
1136 args[i++] = SYSTEMD_BINARY_PATH;
1137
1138 args[i++] = "--log-level";
1139 args[i++] = log_level_to_string(log_get_max_level());
1140
1141 args[i++] = "--log-target";
1142 args[i++] = log_target_to_string(log_get_target());
1143
edb9aaa8
LP
1144 if (arg_running_as == MANAGER_SYSTEM)
1145 args[i++] = "--system";
1146 else
1147 args[i++] = "--session";
1148
1149 if (arg_dump_core)
1150 args[i++] = "--dump-core";
1151
1152 if (arg_crash_shell)
1153 args[i++] = "--crash-shell";
1154
1155 if (arg_confirm_spawn)
1156 args[i++] = "--confirm-spawn";
1157
1158 if (arg_show_status)
6e98720f
LP
1159 args[i++] = "--show-status=1";
1160 else
1161 args[i++] = "--show-status=0";
1162
1163 if (arg_sysv_console)
1164 args[i++] = "--sysv-console=1";
1165 else
1166 args[i++] = "--sysv-console=0";
a16e1123
LP
1167
1168 snprintf(sfd, sizeof(sfd), "%i", fileno(serialization));
1169 char_array_0(sfd);
1170
1171 args[i++] = "--deserialize";
1172 args[i++] = sfd;
1173
a16e1123
LP
1174 args[i++] = NULL;
1175
1176 assert(i <= ELEMENTSOF(args));
1177
1178 execv(args[0], (char* const*) args);
1179
1180 log_error("Failed to reexecute: %m");
1181 }
1182
1183 if (serialization)
1184 fclose(serialization);
1185
1186 if (fds)
1187 fdset_free(fds);
1188
c3b3c274
LP
1189 if (getpid() == 1)
1190 freeze();
1191
56cf987f
DW
1192 label_finish();
1193
60918275
LP
1194 return retval;
1195}