chiark / gitweb /
build-sys: better test for pkg-config/pkg.m4
[elogind.git] / 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 "load-fragment.h"
40 #include "fdset.h"
41
42 static enum {
43         ACTION_RUN,
44         ACTION_HELP,
45         ACTION_TEST,
46         ACTION_DUMP_CONFIGURATION_ITEMS
47 } action = ACTION_RUN;
48
49 static char *default_unit = NULL;
50 static ManagerRunningAs running_as = _MANAGER_RUNNING_AS_INVALID;
51
52 static bool dump_core = true;
53 static bool crash_shell = false;
54 static int crash_chvt = -1;
55 static bool confirm_spawn = false;
56 static FILE* serialization = NULL;
57
58 _noreturn static void freeze(void) {
59         for (;;)
60                 pause();
61 }
62
63 static void nop_handler(int sig) {
64 }
65
66 _noreturn static void crash(int sig) {
67
68         if (!dump_core)
69                 log_error("Caught <%s>, not dumping core.", strsignal(sig));
70         else {
71                 struct sigaction sa;
72                 pid_t pid;
73
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
80                 if ((pid = fork()) < 0)
81                         log_error("Caught <%s>, cannot fork for core dump: %s", strsignal(sig), strerror(errno));
82
83                 else if (pid == 0) {
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);
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);
116                 }
117         }
118
119         if (crash_chvt)
120                 chvt(crash_chvt);
121
122         if (crash_shell) {
123                 struct sigaction sa;
124                 pid_t pid;
125
126                 log_info("Executing crash shell in 10s...");
127                 sleep(10);
128
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);
134
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                 }
143
144                 log_info("Successfully spawned crash shall as pid %llu.", (unsigned long long) pid);
145         }
146
147         log_info("Freezing execution.");
148         freeze();
149 }
150
151 static 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);
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);
164         assert_se(sigaction(SIGABRT, &sa, NULL) == 0);
165 }
166
167 static int console_setup(bool do_reset) {
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
191         if (do_reset)
192                 if (reset_terminal(tty_fd) < 0)
193                         log_error("Failed to reset /dev/console: %m");
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
205 finish:
206         if (tty_fd >= 0)
207                 close_nointr_nofail(tty_fd);
208
209         if (null_fd >= 0)
210                 close_nointr_nofail(null_fd);
211
212         return r;
213 }
214
215 static 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
228 static 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="))
243                 return set_default_unit(word + 16);
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
255         } else if (startswith(word, "systemd.dump_core=")) {
256                 int r;
257
258                 if ((r = parse_boolean(word + 18)) < 0)
259                         log_warning("Failed to parse dump core switch %s, Ignoring.", word + 18);
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)
267                         log_warning("Failed to parse crash shell switch %s, Ignoring.", word + 20);
268                 else
269                         crash_shell = r;
270
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
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
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");
298                 log_info("systemd.crash_chvt=N                     Change to VT #N on crash");
299                 log_info("systemd.confirm_spawn=0|1                Confirm every process spawn");
300
301         } else {
302                 unsigned i;
303
304                 /* SysV compatibility */
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
313 static 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
342 finish:
343         free(line);
344         return r;
345 }
346
347 static int parse_argv(int argc, char *argv[]) {
348
349         enum {
350                 ARG_LOG_LEVEL = 0x100,
351                 ARG_LOG_TARGET,
352                 ARG_DEFAULT,
353                 ARG_RUNNING_AS,
354                 ARG_TEST,
355                 ARG_DUMP_CONFIGURATION_ITEMS,
356                 ARG_CONFIRM_SPAWN,
357                 ARG_DESERIALIZE
358         };
359
360         static const struct option options[] = {
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                            }
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
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
420                 case ARG_TEST:
421                         action = ACTION_TEST;
422                         break;
423
424                 case ARG_DUMP_CONFIGURATION_ITEMS:
425                         action = ACTION_DUMP_CONFIGURATION_ITEMS;
426                         break;
427
428                 case ARG_CONFIRM_SPAWN:
429                         confirm_spawn = true;
430                         break;
431
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
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
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
475         return 0;
476 }
477
478 static int help(void) {
479
480         printf("%s [options]\n\n"
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"
487                "     --dump-configuration-items  Dump understood unit configuration items\n"
488                "     --confirm-spawn             Ask for confirmation when spawning processes\n",
489                __progname);
490
491         return 0;
492 }
493
494 static 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
539 fail:
540         fdset_free(fds);
541
542         if (f)
543                 fclose(f);
544
545         return r;
546 }
547
548 int main(int argc, char *argv[]) {
549         Manager *m = NULL;
550         Unit *target = NULL;
551         Job *job = NULL;
552         int r, retval = 1;
553         FDSet *fds = NULL;
554         bool reexecute = false;
555
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
563         if (set_default_unit(SPECIAL_DEFAULT_TARGET) < 0)
564                 goto finish;
565
566         /* Mount /proc, /sys and friends, so that /proc/cmdline and
567          * /proc/$PID/fd is available. */
568         if (mount_setup() < 0)
569                 goto finish;
570
571         /* Reset all signal handlers. */
572         assert_se(reset_all_signal_handlers() == 0);
573
574         /* If we are init, we can block sigkill. Yay. */
575         ignore_signal(SIGKILL);
576         ignore_signal(SIGPIPE);
577
578         if (running_as != MANAGER_SESSION)
579                 if (parse_proc_cmdline() < 0)
580                         goto finish;
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;
590         } else if (action == ACTION_DUMP_CONFIGURATION_ITEMS) {
591                 unit_dump_config_items(stdout);
592                 retval = 0;
593                 goto finish;
594         }
595
596         assert_se(action == ACTION_RUN || action == ACTION_TEST);
597
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
609         /* Set up PATH unless it is already set */
610         setenv("PATH",
611                "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
612                running_as == MANAGER_INIT);
613
614         /* Move out of the way, so that we won't block unmounts */
615         assert_se(chdir("/")  == 0);
616
617         if (running_as != MANAGER_SESSION) {
618                 /* Become a session leader if we aren't one yet. */
619                 setsid();
620
621                 /* Disable the umask logic */
622                 umask(0);
623         }
624
625         /* Reset the console, but only if this is really init and we
626          * are freshly booted */
627         if (running_as == MANAGER_INIT && action == ACTION_RUN)
628                 console_setup(getpid() == 1 && !serialization);
629
630         /* Make sure D-Bus doesn't fiddle with the SIGPIPE handlers */
631         dbus_connection_set_change_sigpipe(FALSE);
632
633         /* Open the logging devices, if possible and necessary */
634         log_open_syslog();
635         log_open_kmsg();
636
637         /* Make sure we leave a core dump without panicing the
638          * kernel. */
639         if (getpid() == 1)
640                 install_crash_handler();
641
642         log_debug("systemd running in %s mode.", manager_running_as_to_string(running_as));
643
644         if (running_as == MANAGER_INIT)
645                 hostname_setup();
646
647         if ((r = manager_new(running_as, confirm_spawn, &m)) < 0) {
648                 log_error("Failed to allocate manager object: %s", strerror(-r));
649                 goto finish;
650         }
651
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;
661         }
662
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));
671
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                 }
678
679                 if (action == ACTION_TEST) {
680                         printf("-> By units:\n");
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));
686                         goto finish;
687                 }
688
689                 if (action == ACTION_TEST) {
690                         printf("-> By jobs:\n");
691                         manager_dump_jobs(m, stdout, "\t");
692                         retval = 0;
693                         goto finish;
694                 }
695         }
696
697         for (;;) {
698                 if ((r = manager_loop(m)) < 0) {
699                         log_error("Failed to run mainloop: %s", strerror(-r));
700                         goto finish;
701                 }
702
703                 switch (m->exit_code) {
704
705                 case MANAGER_EXIT:
706                         retval = 0;
707                         log_debug("Exit.");
708                         goto finish;
709
710                 case MANAGER_RELOAD:
711                         if ((r = manager_reload(m)) < 0)
712                                 log_error("Failed to reload: %s", strerror(-r));
713                         break;
714
715                 case MANAGER_REEXECUTE:
716                         if (prepare_reexecute(m, &serialization, &fds) < 0)
717                                 goto finish;
718
719                         reexecute = true;
720                         log_debug("Reexecuting.");
721                         goto finish;
722
723                 default:
724                         assert_not_reached("Unknown exit code.");
725                 }
726         }
727
728 finish:
729         if (m)
730                 manager_free(m);
731
732         free(default_unit);
733
734         dbus_shutdown();
735
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
779         if (getpid() == 1)
780                 freeze();
781
782         return retval;
783 }