]> git.ipfire.org Git - people/ms/systemd.git/blame - main.c
main: refuse excess command line arguments
[people/ms/systemd.git] / main.c
CommitLineData
60918275
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
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
LP
38#include "hostname-setup.h"
39#include "load-fragment.h"
a16e1123 40#include "fdset.h"
60918275 41
f170852a
LP
42static enum {
43 ACTION_RUN,
e965d56d 44 ACTION_HELP,
e537352b
LP
45 ACTION_TEST,
46 ACTION_DUMP_CONFIGURATION_ITEMS
f170852a
LP
47} action = ACTION_RUN;
48
49static char *default_unit = NULL;
a5dab5ce 50static ManagerRunningAs running_as = _MANAGER_RUNNING_AS_INVALID;
4fc935ca 51
97c4f35c 52static bool dump_core = true;
601f6a1e
LP
53static bool crash_shell = false;
54static int crash_chvt = -1;
80876c20 55static bool confirm_spawn = false;
a16e1123 56static FILE* serialization = NULL;
80876c20 57
97c4f35c
LP
58_noreturn static void freeze(void) {
59 for (;;)
60 pause();
61}
62
6f5e3f35
LP
63static void nop_handler(int sig) {
64}
65
97c4f35c
LP
66_noreturn static void crash(int sig) {
67
68 if (!dump_core)
69 log_error("Caught <%s>, not dumping core.", strsignal(sig));
70 else {
6f5e3f35 71 struct sigaction sa;
97c4f35c
LP
72 pid_t pid;
73
6f5e3f35
LP
74 /* We want to wait for the core process, hence let's enable SIGCHLD */
75 zero(sa);
76 sa.sa_handler = nop_handler;
77 sa.sa_flags = SA_NOCLDSTOP|SA_RESTART;
78 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
79
97c4f35c 80 if ((pid = fork()) < 0)
4fc935ca 81 log_error("Caught <%s>, cannot fork for core dump: %s", strsignal(sig), strerror(errno));
97c4f35c
LP
82
83 else if (pid == 0) {
97c4f35c
LP
84 struct rlimit rl;
85
86 /* Enable default signal handler for core dump */
87 zero(sa);
88 sa.sa_handler = SIG_DFL;
89 assert_se(sigaction(sig, &sa, NULL) == 0);
90
91 /* Don't limit the core dump size */
92 zero(rl);
93 rl.rlim_cur = RLIM_INFINITY;
94 rl.rlim_max = RLIM_INFINITY;
95 setrlimit(RLIMIT_CORE, &rl);
96
97 /* Just to be sure... */
98 assert_se(chdir("/") == 0);
99
100 /* Raise the signal again */
101 raise(sig);
102
103 assert_not_reached("We shouldn't be here...");
104 _exit(1);
4fc935ca
LP
105
106 } else {
107 int status, r;
108
109 /* Order things nicely. */
110 if ((r = waitpid(pid, &status, 0)) < 0)
111 log_error("Caught <%s>, waitpid() failed: %s", strsignal(sig), strerror(errno));
112 else if (!WCOREDUMP(status))
113 log_error("Caught <%s>, core dump failed.", strsignal(sig));
114 else
115 log_error("Caught <%s>, dumped core as pid %llu.", strsignal(sig), (unsigned long long) pid);
97c4f35c
LP
116 }
117 }
118
601f6a1e
LP
119 if (crash_chvt)
120 chvt(crash_chvt);
121
4fc935ca 122 if (crash_shell) {
6f5e3f35
LP
123 struct sigaction sa;
124 pid_t pid;
8c43883a 125
4fc935ca
LP
126 log_info("Executing crash shell in 10s...");
127 sleep(10);
128
6f5e3f35
LP
129 /* Let the kernel reap children for us */
130 zero(sa);
131 sa.sa_handler = SIG_IGN;
132 sa.sa_flags = SA_NOCLDSTOP|SA_NOCLDWAIT|SA_RESTART;
133 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
8c43883a 134
6f5e3f35
LP
135 if ((pid = fork()) < 0)
136 log_error("Failed to fork off crash shell: %s", strerror(errno));
137 else if (pid == 0) {
138 execl("/bin/sh", "/bin/sh", NULL);
139
140 log_error("execl() failed: %s", strerror(errno));
141 _exit(1);
142 }
c99b188e 143
6f5e3f35 144 log_info("Successfully spawned crash shall as pid %llu.", (unsigned long long) pid);
4fc935ca
LP
145 }
146
147 log_info("Freezing execution.");
97c4f35c
LP
148 freeze();
149}
150
151static void install_crash_handler(void) {
152 struct sigaction sa;
153
154 zero(sa);
155
156 sa.sa_handler = crash;
157 sa.sa_flags = SA_NODEFER;
158
159 assert_se(sigaction(SIGSEGV, &sa, NULL) == 0);
5373d602
LP
160 assert_se(sigaction(SIGILL, &sa, NULL) == 0);
161 assert_se(sigaction(SIGFPE, &sa, NULL) == 0);
162 assert_se(sigaction(SIGBUS, &sa, NULL) == 0);
163 assert_se(sigaction(SIGQUIT, &sa, NULL) == 0);
97c4f35c
LP
164 assert_se(sigaction(SIGABRT, &sa, NULL) == 0);
165}
f170852a 166
2146621b 167static int console_setup(bool do_reset) {
80876c20
LP
168 int tty_fd = -1, null_fd = -1, r = 0;
169
170 /* If we are init, we connect stdout/stderr to /dev/console
171 * and stdin to /dev/null and make sure we don't have a
172 * controlling tty. */
173
174 release_terminal();
175
176 if ((tty_fd = open_terminal("/dev/console", O_WRONLY)) < 0) {
177 log_error("Failed to open /dev/console: %s", strerror(-tty_fd));
178 r = -tty_fd;
179 goto finish;
180 }
181
182 if ((null_fd = open("/dev/null", O_RDONLY)) < 0) {
183 log_error("Failed to open /dev/null: %m");
184 r = -errno;
185 goto finish;
186 }
187
188 assert(tty_fd >= 3);
189 assert(null_fd >= 3);
190
2146621b
LP
191 if (do_reset)
192 if (reset_terminal(tty_fd) < 0)
193 log_error("Failed to reset /dev/console: %m");
80876c20
LP
194
195 if (dup2(tty_fd, STDOUT_FILENO) < 0 ||
196 dup2(tty_fd, STDERR_FILENO) < 0 ||
197 dup2(null_fd, STDIN_FILENO) < 0) {
198 log_error("Failed to dup2() device: %m");
199 r = -errno;
200 goto finish;
201 }
202
203 r = 0;
204
205finish:
206 if (tty_fd >= 0)
a16e1123 207 close_nointr_nofail(tty_fd);
80876c20
LP
208
209 if (null_fd >= 0)
a16e1123 210 close_nointr_nofail(null_fd);
80876c20
LP
211
212 return r;
213}
214
f170852a
LP
215static int set_default_unit(const char *u) {
216 char *c;
217
218 assert(u);
219
220 if (!(c = strdup(u)))
221 return -ENOMEM;
222
223 free(default_unit);
224 default_unit = c;
225 return 0;
226}
227
228static int parse_proc_cmdline_word(const char *word) {
229
230 static const char * const rlmap[] = {
231 "single", SPECIAL_RUNLEVEL1_TARGET,
232 "-s", SPECIAL_RUNLEVEL1_TARGET,
233 "s", SPECIAL_RUNLEVEL1_TARGET,
234 "S", SPECIAL_RUNLEVEL1_TARGET,
235 "1", SPECIAL_RUNLEVEL1_TARGET,
236 "2", SPECIAL_RUNLEVEL2_TARGET,
237 "3", SPECIAL_RUNLEVEL3_TARGET,
238 "4", SPECIAL_RUNLEVEL4_TARGET,
239 "5", SPECIAL_RUNLEVEL5_TARGET
240 };
241
242 if (startswith(word, "systemd.default="))
82771ba1 243 return set_default_unit(word + 16);
f170852a
LP
244
245 else if (startswith(word, "systemd.log_target=")) {
246
247 if (log_set_target_from_string(word + 19) < 0)
248 log_warning("Failed to parse log target %s. Ignoring.", word + 19);
249
250 } else if (startswith(word, "systemd.log_level=")) {
251
252 if (log_set_max_level_from_string(word + 18) < 0)
253 log_warning("Failed to parse log level %s. Ignoring.", word + 18);
254
4fc935ca
LP
255 } else if (startswith(word, "systemd.dump_core=")) {
256 int r;
257
258 if ((r = parse_boolean(word + 18)) < 0)
601f6a1e 259 log_warning("Failed to parse dump core switch %s, Ignoring.", word + 18);
4fc935ca
LP
260 else
261 dump_core = r;
262
263 } else if (startswith(word, "systemd.crash_shell=")) {
264 int r;
265
266 if ((r = parse_boolean(word + 20)) < 0)
601f6a1e 267 log_warning("Failed to parse crash shell switch %s, Ignoring.", word + 20);
4fc935ca
LP
268 else
269 crash_shell = r;
270
5e7ee61c
LP
271
272 } else if (startswith(word, "systemd.confirm_spawn=")) {
273 int r;
274
275 if ((r = parse_boolean(word + 22)) < 0)
276 log_warning("Failed to parse confirm spawn switch %s, Ignoring.", word + 22);
277 else
278 confirm_spawn = r;
279
601f6a1e
LP
280 } else if (startswith(word, "systemd.crash_chvt=")) {
281 int k;
282
283 if (safe_atoi(word + 19, &k) < 0)
284 log_warning("Failed to parse crash chvt switch %s, Ignoring.", word + 19);
285 else
286 crash_chvt = k;
287
4fc935ca
LP
288 } else if (startswith(word, "systemd.")) {
289
290 log_warning("Unknown kernel switch %s. Ignoring.", word);
291
292 log_info("Supported kernel switches:");
293 log_info("systemd.default=UNIT Default unit to start");
294 log_info("systemd.log_target=console|kmsg|syslog Log target");
295 log_info("systemd.log_level=LEVEL Log level");
296 log_info("systemd.dump_core=0|1 Dump core on crash");
297 log_info("systemd.crash_shell=0|1 On crash run shell");
601f6a1e 298 log_info("systemd.crash_chvt=N Change to VT #N on crash");
5e7ee61c 299 log_info("systemd.confirm_spawn=0|1 Confirm every process spawn");
4fc935ca 300
f170852a
LP
301 } else {
302 unsigned i;
303
304 /* SysV compatibility */
f170852a
LP
305 for (i = 0; i < ELEMENTSOF(rlmap); i += 2)
306 if (streq(word, rlmap[i]))
307 return set_default_unit(rlmap[i+1]);
308 }
309
310 return 0;
311}
312
313static int parse_proc_cmdline(void) {
314 char *line;
315 int r;
316 char *w;
317 size_t l;
318 char *state;
319
320 if ((r = read_one_line_file("/proc/cmdline", &line)) < 0) {
321 log_warning("Failed to read /proc/cmdline, ignoring: %s", strerror(errno));
322 return 0;
323 }
324
325 FOREACH_WORD_QUOTED(w, l, line, state) {
326 char *word;
327
328 if (!(word = strndup(w, l))) {
329 r = -ENOMEM;
330 goto finish;
331 }
332
333 r = parse_proc_cmdline_word(word);
334 free(word);
335
336 if (r < 0)
337 goto finish;
338 }
339
340 r = 0;
341
342finish:
343 free(line);
344 return r;
345}
346
347static int parse_argv(int argc, char *argv[]) {
348
349 enum {
350 ARG_LOG_LEVEL = 0x100,
351 ARG_LOG_TARGET,
a5dab5ce 352 ARG_DEFAULT,
e965d56d 353 ARG_RUNNING_AS,
e537352b 354 ARG_TEST,
80876c20 355 ARG_DUMP_CONFIGURATION_ITEMS,
a16e1123
LP
356 ARG_CONFIRM_SPAWN,
357 ARG_DESERIALIZE
f170852a
LP
358 };
359
360 static const struct option options[] = {
a16e1123
LP
361 { "log-level", required_argument, NULL, ARG_LOG_LEVEL },
362 { "log-target", required_argument, NULL, ARG_LOG_TARGET },
363 { "default", required_argument, NULL, ARG_DEFAULT },
364 { "running-as", required_argument, NULL, ARG_RUNNING_AS },
365 { "test", no_argument, NULL, ARG_TEST },
366 { "help", no_argument, NULL, 'h' },
367 { "dump-configuration-items", no_argument, NULL, ARG_DUMP_CONFIGURATION_ITEMS },
368 { "confirm-spawn", no_argument, NULL, ARG_CONFIRM_SPAWN },
369 { "deserialize", required_argument, NULL, ARG_DESERIALIZE },
370 { NULL, 0, NULL, 0 }
f170852a
LP
371 };
372
373 int c, r;
374
375 assert(argc >= 1);
376 assert(argv);
377
378 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
379
380 switch (c) {
381
382 case ARG_LOG_LEVEL:
383 if ((r = log_set_max_level_from_string(optarg)) < 0) {
384 log_error("Failed to parse log level %s.", optarg);
385 return r;
386 }
387
388 break;
389
390 case ARG_LOG_TARGET:
391
392 if ((r = log_set_target_from_string(optarg)) < 0) {
393 log_error("Failed to parse log target %s.", optarg);
394 return r;
395 }
396
397 break;
398
399 case ARG_DEFAULT:
400
401 if ((r = set_default_unit(optarg)) < 0) {
402 log_error("Failed to set default unit %s: %s", optarg, strerror(-r));
403 return r;
404 }
405
406 break;
407
a5dab5ce
LP
408 case ARG_RUNNING_AS: {
409 ManagerRunningAs as;
410
411 if ((as = manager_running_as_from_string(optarg)) < 0) {
412 log_error("Failed to parse running as value %s", optarg);
413 return -EINVAL;
414 }
415
416 running_as = as;
417 break;
418 }
419
e965d56d
LP
420 case ARG_TEST:
421 action = ACTION_TEST;
422 break;
423
e537352b
LP
424 case ARG_DUMP_CONFIGURATION_ITEMS:
425 action = ACTION_DUMP_CONFIGURATION_ITEMS;
426 break;
427
80876c20
LP
428 case ARG_CONFIRM_SPAWN:
429 confirm_spawn = true;
430 break;
431
a16e1123
LP
432 case ARG_DESERIALIZE: {
433 int fd;
434 FILE *f;
435
436 if ((r = safe_atoi(optarg, &fd)) < 0 || fd < 0) {
437 log_error("Failed to parse deserialize option %s.", optarg);
438 return r;
439 }
440
441 if (!(f = fdopen(fd, "r"))) {
442 log_error("Failed to open serialization fd: %m");
443 return r;
444 }
445
446 if (serialization)
447 fclose(serialization);
448
449 serialization = f;
450
451 break;
452 }
453
f170852a
LP
454 case 'h':
455 action = ACTION_HELP;
456 break;
457
458 case '?':
459 return -EINVAL;
460
461 default:
462 log_error("Unknown option code %c", c);
463 return -EINVAL;
464 }
465
51f0e189
LP
466 /* PID 1 will get the kernel arguments as parameters, which we
467 * ignore and unconditionally read from
468 * /proc/cmdline. However, we need to ignore those arguments
469 * here. */
470 if (running_as != MANAGER_INIT && optind < argc) {
471 log_error("Excess arguments.");
472 return -EINVAL;
473 }
474
f170852a
LP
475 return 0;
476}
477
478static int help(void) {
479
480 printf("%s [options]\n\n"
e537352b
LP
481 " -h --help Show this help\n"
482 " --default=UNIT Set default unit\n"
483 " --log-level=LEVEL Set log level\n"
484 " --log-target=TARGET Set log target (console, syslog, kmsg)\n"
485 " --running-as=AS Set running as (init, system, session)\n"
486 " --test Determine startup sequence, dump it and exit\n"
80876c20
LP
487 " --dump-configuration-items Dump understood unit configuration items\n"
488 " --confirm-spawn Ask for confirmation when spawning processes\n",
f170852a
LP
489 __progname);
490
491 return 0;
492}
493
a16e1123
LP
494static int prepare_reexecute(Manager *m, FILE **_f, FDSet **_fds) {
495 FILE *f = NULL;
496 FDSet *fds = NULL;
497 int r;
498
499 assert(m);
500 assert(_f);
501 assert(_fds);
502
503 if ((r = manager_open_serialization(&f)) < 0) {
504 log_error("Failed to create serialization faile: %s", strerror(-r));
505 goto fail;
506 }
507
508 if (!(fds = fdset_new())) {
509 r = -ENOMEM;
510 log_error("Failed to allocate fd set: %s", strerror(-r));
511 goto fail;
512 }
513
514 if ((r = manager_serialize(m, f, fds)) < 0) {
515 log_error("Failed to serialize state: %s", strerror(-r));
516 goto fail;
517 }
518
519 if (fseeko(f, 0, SEEK_SET) < 0) {
520 log_error("Failed to rewind serialization fd: %m");
521 goto fail;
522 }
523
524 if ((r = fd_cloexec(fileno(f), false)) < 0) {
525 log_error("Failed to disable O_CLOEXEC for serialization: %s", strerror(-r));
526 goto fail;
527 }
528
529 if ((r = fdset_cloexec(fds, false)) < 0) {
530 log_error("Failed to disable O_CLOEXEC for serialization fds: %s", strerror(-r));
531 goto fail;
532 }
533
534 *_f = f;
535 *_fds = fds;
536
537 return 0;
538
539fail:
540 fdset_free(fds);
541
542 if (f)
543 fclose(f);
544
545 return r;
546}
547
60918275
LP
548int main(int argc, char *argv[]) {
549 Manager *m = NULL;
87f0e418 550 Unit *target = NULL;
60918275
LP
551 Job *job = NULL;
552 int r, retval = 1;
a16e1123
LP
553 FDSet *fds = NULL;
554 bool reexecute = false;
27b14a22 555
a5dab5ce
LP
556 if (getpid() == 1)
557 running_as = MANAGER_INIT;
558 else if (getuid() == 0)
559 running_as = MANAGER_SYSTEM;
560 else
561 running_as = MANAGER_SESSION;
562
f170852a
LP
563 if (set_default_unit(SPECIAL_DEFAULT_TARGET) < 0)
564 goto finish;
60918275 565
f170852a
LP
566 /* Mount /proc, /sys and friends, so that /proc/cmdline and
567 * /proc/$PID/fd is available. */
d89e521e
LP
568 if (mount_setup() < 0)
569 goto finish;
4ade7963
LP
570
571 /* Reset all signal handlers. */
572 assert_se(reset_all_signal_handlers() == 0);
573
078e4539 574 /* If we are init, we can block sigkill. Yay. */
a337c6fc
LP
575 ignore_signal(SIGKILL);
576 ignore_signal(SIGPIPE);
078e4539 577
a5dab5ce
LP
578 if (running_as != MANAGER_SESSION)
579 if (parse_proc_cmdline() < 0)
580 goto finish;
f170852a
LP
581
582 log_parse_environment();
583
584 if (parse_argv(argc, argv) < 0)
585 goto finish;
586
587 if (action == ACTION_HELP) {
588 retval = help();
589 goto finish;
e537352b
LP
590 } else if (action == ACTION_DUMP_CONFIGURATION_ITEMS) {
591 unit_dump_config_items(stdout);
592 retval = 0;
593 goto finish;
f170852a
LP
594 }
595
e965d56d 596 assert_se(action == ACTION_RUN || action == ACTION_TEST);
f170852a 597
a16e1123
LP
598 /* Remember open file descriptors for later deserialization */
599 if (serialization) {
600 if ((r = fdset_new_fill(&fds)) < 0) {
601 log_error("Failed to allocate fd set: %s", strerror(-r));
602 goto finish;
603 }
604
605 assert_se(fdset_remove(fds, fileno(serialization)) >= 0);
606 } else
607 close_all_fds(NULL, 0);
608
09082a94 609 /* Set up PATH unless it is already set */
e537352b
LP
610 setenv("PATH",
611 "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
612 running_as == MANAGER_INIT);
09082a94 613
f170852a
LP
614 /* Move out of the way, so that we won't block unmounts */
615 assert_se(chdir("/") == 0);
616
80876c20
LP
617 if (running_as != MANAGER_SESSION) {
618 /* Become a session leader if we aren't one yet. */
619 setsid();
4ade7963 620
80876c20
LP
621 /* Disable the umask logic */
622 umask(0);
623 }
624
2146621b
LP
625 /* Reset the console, but only if this is really init and we
626 * are freshly booted */
8d025b23 627 if (running_as == MANAGER_INIT && action == ACTION_RUN)
2146621b 628 console_setup(getpid() == 1 && !serialization);
4ade7963
LP
629
630 /* Make sure D-Bus doesn't fiddle with the SIGPIPE handlers */
631 dbus_connection_set_change_sigpipe(FALSE);
632
18149b9f 633 /* Open the logging devices, if possible and necessary */
4ade7963
LP
634 log_open_syslog();
635 log_open_kmsg();
636
5373d602
LP
637 /* Make sure we leave a core dump without panicing the
638 * kernel. */
4fc935ca
LP
639 if (getpid() == 1)
640 install_crash_handler();
97c4f35c 641
a5dab5ce
LP
642 log_debug("systemd running in %s mode.", manager_running_as_to_string(running_as));
643
302e8c4c 644 if (running_as == MANAGER_INIT)
e537352b 645 hostname_setup();
302e8c4c 646
80876c20 647 if ((r = manager_new(running_as, confirm_spawn, &m)) < 0) {
8e274523 648 log_error("Failed to allocate manager object: %s", strerror(-r));
60918275
LP
649 goto finish;
650 }
651
a16e1123
LP
652 if ((r = manager_startup(m, serialization, fds)) < 0)
653 log_error("Failed to fully startup daemon: %s", strerror(-r));
654
655 if (fds) {
656 /* This will close all file descriptors that were opened, but
657 * not claimed by any unit. */
658
659 fdset_free(fds);
660 fds = NULL;
f50e0a01
LP
661 }
662
a16e1123
LP
663 if (serialization) {
664 fclose(serialization);
665 serialization = NULL;
666 } else {
667 log_debug("Activating default unit: %s", default_unit);
668
669 if ((r = manager_load_unit(m, default_unit, NULL, &target)) < 0) {
670 log_error("Failed to load default target: %s", strerror(-r));
27b14a22 671
a16e1123
LP
672 log_info("Trying to load rescue target...");
673 if ((r = manager_load_unit(m, SPECIAL_RESCUE_TARGET, NULL, &target)) < 0) {
674 log_error("Failed to load rescue target: %s", strerror(-r));
675 goto finish;
676 }
677 }
37d88da7 678
a16e1123 679 if (action == ACTION_TEST) {
40d50879 680 printf("-> By units:\n");
a16e1123
LP
681 manager_dump_units(m, stdout, "\t");
682 }
683
684 if ((r = manager_add_job(m, JOB_START, target, JOB_REPLACE, false, &job)) < 0) {
685 log_error("Failed to start default target: %s", strerror(-r));
37d88da7
LP
686 goto finish;
687 }
60918275 688
a16e1123 689 if (action == ACTION_TEST) {
40d50879 690 printf("-> By jobs:\n");
a16e1123
LP
691 manager_dump_jobs(m, stdout, "\t");
692 retval = 0;
693 goto finish;
694 }
e965d56d 695 }
d46de8a1 696
a16e1123
LP
697 for (;;) {
698 if ((r = manager_loop(m)) < 0) {
699 log_error("Failed to run mainloop: %s", strerror(-r));
700 goto finish;
701 }
11dd41ce 702
a16e1123 703 switch (m->exit_code) {
e965d56d 704
a16e1123
LP
705 case MANAGER_EXIT:
706 retval = 0;
707 log_debug("Exit.");
708 goto finish;
e965d56d 709
a16e1123
LP
710 case MANAGER_RELOAD:
711 if ((r = manager_reload(m)) < 0)
712 log_error("Failed to reload: %s", strerror(-r));
713 break;
cea8e32e 714
a16e1123 715 case MANAGER_REEXECUTE:
a16e1123
LP
716 if (prepare_reexecute(m, &serialization, &fds) < 0)
717 goto finish;
60918275 718
a16e1123
LP
719 reexecute = true;
720 log_debug("Reexecuting.");
721 goto finish;
722
723 default:
724 assert_not_reached("Unknown exit code.");
725 }
726 }
f170852a 727
60918275
LP
728finish:
729 if (m)
730 manager_free(m);
731
f170852a 732 free(default_unit);
b9cd2ec1 733
ea430986
LP
734 dbus_shutdown();
735
a16e1123
LP
736 if (reexecute) {
737 const char *args[11];
738 unsigned i = 0;
739 char sfd[16];
740
741 assert(serialization);
742 assert(fds);
743
744 args[i++] = SYSTEMD_BINARY_PATH;
745
746 args[i++] = "--log-level";
747 args[i++] = log_level_to_string(log_get_max_level());
748
749 args[i++] = "--log-target";
750 args[i++] = log_target_to_string(log_get_target());
751
752 args[i++] = "--running-as";
753 args[i++] = manager_running_as_to_string(running_as);
754
755 snprintf(sfd, sizeof(sfd), "%i", fileno(serialization));
756 char_array_0(sfd);
757
758 args[i++] = "--deserialize";
759 args[i++] = sfd;
760
761 if (confirm_spawn)
762 args[i++] = "--confirm-spawn";
763
764 args[i++] = NULL;
765
766 assert(i <= ELEMENTSOF(args));
767
768 execv(args[0], (char* const*) args);
769
770 log_error("Failed to reexecute: %m");
771 }
772
773 if (serialization)
774 fclose(serialization);
775
776 if (fds)
777 fdset_free(fds);
778
c3b3c274
LP
779 if (getpid() == 1)
780 freeze();
781
60918275
LP
782 return retval;
783}