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