- remove superfluous forward declaration
[oweals/busybox.git] / init / init.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini init implementation for busybox
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7  * Adjusted by so many folks, it's impossible to keep track.
8  *
9  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10  */
11
12 #include "libbb.h"
13 #include <syslog.h>
14 #include <paths.h>
15 #include <sys/reboot.h>
16
17 #define COMMAND_SIZE 256
18 #define CONSOLE_NAME_SIZE 32
19 #define MAXENV  16              /* Number of env. vars */
20
21 /*
22  * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
23  * before processes are spawned to set core file size as unlimited.
24  * This is for debugging only.  Don't use this is production, unless
25  * you want core dumps lying about....
26  */
27 #define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
28 #include <sys/resource.h>
29
30 #define INITTAB      "/etc/inittab"     /* inittab file location */
31 #ifndef INIT_SCRIPT
32 #define INIT_SCRIPT  "/etc/init.d/rcS"  /* Default sysinit script. */
33 #endif
34
35 /* Allowed init action types */
36 #define SYSINIT     0x01
37 #define RESPAWN     0x02
38 /* like respawn, but wait for <Enter> to be pressed on tty: */
39 #define ASKFIRST    0x04
40 #define WAIT        0x08
41 #define ONCE        0x10
42 #define CTRLALTDEL  0x20
43 #define SHUTDOWN    0x40
44 #define RESTART     0x80
45
46 /* Set up a linked list of init_actions, to be read from inittab */
47 struct init_action {
48         struct init_action *next;
49         pid_t pid;
50         uint8_t action_type;
51         char terminal[CONSOLE_NAME_SIZE];
52         char command[COMMAND_SIZE];
53 };
54
55 /* Static variables */
56 static struct init_action *init_action_list = NULL;
57
58 static const char *log_console = VC_5;
59 static sig_atomic_t got_cont = 0;
60
61 enum {
62         L_LOG = 0x1,
63         L_CONSOLE = 0x2,
64
65 #if ENABLE_FEATURE_EXTRA_QUIET
66         MAYBE_CONSOLE = 0x0,
67 #else
68         MAYBE_CONSOLE = L_CONSOLE,
69 #endif
70
71 #ifndef RB_HALT_SYSTEM
72         RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */
73         RB_ENABLE_CAD = 0x89abcdef,
74         RB_DISABLE_CAD = 0,
75         RB_POWER_OFF = 0x4321fedc,
76         RB_AUTOBOOT = 0x01234567,
77 #endif
78 };
79
80 static const char *const environment[] = {
81         "HOME=/",
82         bb_PATH_root_path,
83         "SHELL=/bin/sh",
84         "USER=root",
85         NULL
86 };
87
88 /* Function prototypes */
89 static void halt_reboot_pwoff(int sig) NORETURN;
90
91 static void waitfor(pid_t pid)
92 {
93         /* waitfor(run(x)): protect against failed fork inside run() */
94         if (pid <= 0)
95                 return;
96
97         /* Wait for any child (prevent zombies from exiting orphaned processes)
98          * but exit the loop only when specified one has exited. */
99         while (wait(NULL) != pid)
100                 continue;
101 }
102
103 static void loop_forever(void) NORETURN;
104 static void loop_forever(void)
105 {
106         while (1)
107                 sleep(1);
108 }
109
110 /* Print a message to the specified device.
111  * "where" may be bitwise-or'd from L_LOG | L_CONSOLE
112  * NB: careful, we can be called after vfork!
113  */
114 #define messageD(...) do { if (ENABLE_DEBUG_INIT) message(__VA_ARGS__); } while (0)
115 static void message(int where, const char *fmt, ...)
116         __attribute__ ((format(printf, 2, 3)));
117 static void message(int where, const char *fmt, ...)
118 {
119         static int log_fd = -1;
120         va_list arguments;
121         int l;
122         char msg[128];
123
124         msg[0] = '\r';
125         va_start(arguments, fmt);
126         vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments);
127         va_end(arguments);
128         msg[sizeof(msg) - 2] = '\0';
129         l = strlen(msg);
130
131         if (ENABLE_FEATURE_INIT_SYSLOG) {
132                 /* Log the message to syslogd */
133                 if (where & L_LOG) {
134                         /* don't print out "\r" */
135                         openlog(applet_name, 0, LOG_DAEMON);
136                         syslog(LOG_INFO, "init: %s", msg + 1);
137                         closelog();
138                 }
139                 msg[l++] = '\n';
140                 msg[l] = '\0';
141         } else {
142                 msg[l++] = '\n';
143                 msg[l] = '\0';
144                 /* Take full control of the log tty, and never close it.
145                  * It's mine, all mine!  Muhahahaha! */
146                 if (log_fd < 0) {
147                         if (!log_console) {
148                                 log_fd = STDERR_FILENO;
149                         } else {
150                                 log_fd = device_open(log_console, O_WRONLY | O_NONBLOCK | O_NOCTTY);
151                                 if (log_fd < 0) {
152                                         bb_error_msg("can't log to %s", log_console);
153                                         where = L_CONSOLE;
154                                 } else {
155                                         close_on_exec_on(log_fd);
156                                 }
157                         }
158                 }
159                 if (where & L_LOG) {
160                         full_write(log_fd, msg, l);
161                         if (log_fd == STDERR_FILENO)
162                                 return; /* don't print dup messages */
163                 }
164         }
165
166         if (where & L_CONSOLE) {
167                 /* Send console messages to console so people will see them. */
168                 full_write(STDERR_FILENO, msg, l);
169         }
170 }
171
172 /* From <linux/serial.h> */
173 struct serial_struct {
174         int     type;
175         int     line;
176         unsigned int    port;
177         int     irq;
178         int     flags;
179         int     xmit_fifo_size;
180         int     custom_divisor;
181         int     baud_base;
182         unsigned short  close_delay;
183         char    io_type;
184         char    reserved_char[1];
185         int     hub6;
186         unsigned short  closing_wait; /* time to wait before closing */
187         unsigned short  closing_wait2; /* no longer used... */
188         unsigned char   *iomem_base;
189         unsigned short  iomem_reg_shift;
190         unsigned int    port_high;
191         unsigned long   iomap_base;     /* cookie passed into ioremap */
192         int     reserved[1];
193         /* Paranoia (imagine 64bit kernel overwriting 32bit userspace stack) */
194         uint32_t bbox_reserved[16];
195 };
196 static void console_init(void)
197 {
198         struct serial_struct sr;
199         char *s;
200
201         s = getenv("CONSOLE");
202         if (!s)
203                 s = getenv("console");
204         if (s) {
205                 int fd = open(s, O_RDWR | O_NONBLOCK | O_NOCTTY);
206                 if (fd >= 0) {
207                         dup2(fd, STDIN_FILENO);
208                         dup2(fd, STDOUT_FILENO);
209                         xmove_fd(fd, STDERR_FILENO);
210                 }
211                 messageD(L_LOG, "console='%s'", s);
212         } else {
213                 /* Make sure fd 0,1,2 are not closed
214                  * (so that they won't be used by future opens) */
215                 bb_sanitize_stdio();
216         }
217
218         s = getenv("TERM");
219         if (ioctl(STDIN_FILENO, TIOCGSERIAL, &sr) == 0) {
220                 /* Force the TERM setting to vt102 for serial console
221                  * if TERM is set to linux (the default) */
222                 if (!s || strcmp(s, "linux") == 0)
223                         putenv((char*)"TERM=vt102");
224                 if (!ENABLE_FEATURE_INIT_SYSLOG)
225                         log_console = NULL;
226         } else if (!s)
227                 putenv((char*)"TERM=linux");
228 }
229
230 /* Set terminal settings to reasonable defaults.
231  * NB: careful, we can be called after vfork! */
232 static void set_sane_term(void)
233 {
234         struct termios tty;
235
236         tcgetattr(STDIN_FILENO, &tty);
237
238         /* set control chars */
239         tty.c_cc[VINTR] = 3;    /* C-c */
240         tty.c_cc[VQUIT] = 28;   /* C-\ */
241         tty.c_cc[VERASE] = 127; /* C-? */
242         tty.c_cc[VKILL] = 21;   /* C-u */
243         tty.c_cc[VEOF] = 4;     /* C-d */
244         tty.c_cc[VSTART] = 17;  /* C-q */
245         tty.c_cc[VSTOP] = 19;   /* C-s */
246         tty.c_cc[VSUSP] = 26;   /* C-z */
247
248         /* use line discipline 0 */
249         tty.c_line = 0;
250
251         /* Make it be sane */
252         tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
253         tty.c_cflag |= CREAD | HUPCL | CLOCAL;
254
255         /* input modes */
256         tty.c_iflag = ICRNL | IXON | IXOFF;
257
258         /* output modes */
259         tty.c_oflag = OPOST | ONLCR;
260
261         /* local modes */
262         tty.c_lflag =
263                 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
264
265         tcsetattr(STDIN_FILENO, TCSANOW, &tty);
266 }
267
268 /* Open the new terminal device.
269  * NB: careful, we can be called after vfork! */
270 static void open_stdio_to_tty(const char* tty_name, int exit_on_failure)
271 {
272         /* empty tty_name means "use init's tty", else... */
273         if (tty_name[0]) {
274                 int fd;
275                 close(STDIN_FILENO);
276                 /* fd can be only < 0 or 0: */
277                 fd = device_open(tty_name, O_RDWR);
278                 if (fd) {
279                         message(L_LOG | L_CONSOLE, "Can't open %s: %s",
280                                 tty_name, strerror(errno));
281                         if (exit_on_failure)
282                                 _exit(EXIT_FAILURE);
283                         if (ENABLE_DEBUG_INIT)
284                                 _exit(2);
285                         /* NB: we don't reach this if we were called after vfork.
286                          * Thus halt_reboot_pwoff() itself need not be vfork-safe. */
287                         halt_reboot_pwoff(SIGUSR1); /* halt the system */
288                 }
289                 dup2(STDIN_FILENO, STDOUT_FILENO);
290                 dup2(STDIN_FILENO, STDERR_FILENO);
291         }
292         set_sane_term();
293 }
294
295 /* Wrapper around exec:
296  * Takes string (max COMMAND_SIZE chars).
297  * If chars like '>' detected, execs '[-]/bin/sh -c "exec ......."'.
298  * Otherwise splits words on whitespace, deals with leading dash,
299  * and uses plain exec().
300  * NB: careful, we can be called after vfork!
301  */
302 static void init_exec(const char *command)
303 {
304         char *cmd[COMMAND_SIZE / 2];
305         char buf[COMMAND_SIZE + 6];  /* COMMAND_SIZE+strlen("exec ")+1 */
306         int dash = (command[0] == '-' /* maybe? && command[1] == '/' */);
307
308         /* See if any special /bin/sh requiring characters are present */
309         if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
310                 strcpy(buf, "exec ");
311                 strcpy(buf + 5, command + dash); /* excluding "-" */
312                 /* NB: LIBBB_DEFAULT_LOGIN_SHELL define has leading dash */
313                 cmd[0] = (char*)(LIBBB_DEFAULT_LOGIN_SHELL + !dash);
314                 cmd[1] = (char*)"-c";
315                 cmd[2] = buf;
316                 cmd[3] = NULL;
317         } else {
318                 /* Convert command (char*) into cmd (char**, one word per string) */
319                 char *word, *next;
320                 int i = 0;
321                 next = strcpy(buf, command); /* including "-" */
322                 while ((word = strsep(&next, " \t")) != NULL) {
323                         if (*word != '\0') { /* not two spaces/tabs together? */
324                                 cmd[i] = word;
325                                 i++;
326                         }
327                 }
328                 cmd[i] = NULL;
329         }
330         /* If we saw leading "-", it is interactive shell.
331          * Try harder to give it a controlling tty.
332          * And skip "-" in actual exec call. */
333         if (dash) {
334                 /* _Attempt_ to make stdin a controlling tty. */
335                 if (ENABLE_FEATURE_INIT_SCTTY)
336                         ioctl(STDIN_FILENO, TIOCSCTTY, 0 /*only try, don't steal*/);
337         }
338         BB_EXECVP(cmd[0] + dash, cmd);
339         message(L_LOG | L_CONSOLE, "Cannot run '%s': %s", cmd[0], strerror(errno));
340         /* returns if execvp fails */
341 }
342
343 /* Used only by run_actions */
344 static pid_t run(const struct init_action *a)
345 {
346         pid_t pid;
347         sigset_t nmask, omask;
348
349         /* Block sigchild while forking (why?) */
350         sigemptyset(&nmask);
351         sigaddset(&nmask, SIGCHLD);
352         sigprocmask(SIG_BLOCK, &nmask, &omask);
353         if (BB_MMU && (a->action_type & ASKFIRST))
354                 pid = fork();
355         else
356                 pid = vfork();
357         sigprocmask(SIG_SETMASK, &omask, NULL);
358
359         if (pid < 0)
360                 message(L_LOG | L_CONSOLE, "Can't fork");
361         if (pid)
362                 return pid;
363
364         /* Child */
365
366         /* Reset signal handlers that were set by the parent process */
367         bb_signals(0
368                 + (1 << SIGUSR1)
369                 + (1 << SIGUSR2)
370                 + (1 << SIGINT)
371                 + (1 << SIGTERM)
372                 + (1 << SIGHUP)
373                 + (1 << SIGQUIT)
374                 + (1 << SIGCONT)
375                 + (1 << SIGSTOP)
376                 + (1 << SIGTSTP)
377                 , SIG_DFL);
378
379         /* Create a new session and make ourself the process
380          * group leader */
381         setsid();
382
383         /* Open the new terminal device */
384         open_stdio_to_tty(a->terminal, 1 /* - exit if open fails */);
385
386 // NB: do not enable unless you change vfork to fork above
387 #ifdef BUT_RUN_ACTIONS_ALREADY_DOES_WAITING
388         /* If the init Action requires us to wait, then force the
389          * supplied terminal to be the controlling tty. */
390         if (a->action_type & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
391                 /* Now fork off another process to just hang around */
392                 pid = fork();
393                 if (pid < 0) {
394                         message(L_LOG | L_CONSOLE, "Can't fork");
395                         _exit(EXIT_FAILURE);
396                 }
397
398                 if (pid > 0) {
399                         /* Parent - wait till the child is done */
400                         bb_signals(0
401                                 + (1 << SIGINT)
402                                 + (1 << SIGTSTP)
403                                 + (1 << SIGQUIT)
404                                 , SIG_IGN);
405                         signal(SIGCHLD, SIG_DFL);
406
407                         waitfor(pid);
408                         /* See if stealing the controlling tty back is necessary */
409                         if (tcgetpgrp(0) != getpid())
410                                 _exit(EXIT_SUCCESS);
411
412                         /* Use a temporary process to steal the controlling tty. */
413                         pid = fork();
414                         if (pid < 0) {
415                                 message(L_LOG | L_CONSOLE, "Can't fork");
416                                 _exit(EXIT_FAILURE);
417                         }
418                         if (pid == 0) {
419                                 setsid();
420                                 ioctl(0, TIOCSCTTY, 1);
421                                 _exit(EXIT_SUCCESS);
422                         }
423                         waitfor(pid);
424                         _exit(EXIT_SUCCESS);
425                 }
426                 /* Child - fall though to actually execute things */
427         }
428 #endif
429
430         /* NB: on NOMMU we can't wait for input in child, so
431          * "askfirst" will work the same as "respawn". */
432         if (BB_MMU && (a->action_type & ASKFIRST)) {
433                 static const char press_enter[] ALIGN1 =
434 #ifdef CUSTOMIZED_BANNER
435 #include CUSTOMIZED_BANNER
436 #endif
437                         "\nPlease press Enter to activate this console. ";
438                 char c;
439                 /*
440                  * Save memory by not exec-ing anything large (like a shell)
441                  * before the user wants it. This is critical if swap is not
442                  * enabled and the system has low memory. Generally this will
443                  * be run on the second virtual console, and the first will
444                  * be allowed to start a shell or whatever an init script
445                  * specifies.
446                  */
447                 messageD(L_LOG, "waiting for enter to start '%s'"
448                                         "(pid %d, tty '%s')\n",
449                                 a->command, getpid(), a->terminal);
450                 full_write(STDOUT_FILENO, press_enter, sizeof(press_enter) - 1);
451                 while (safe_read(STDIN_FILENO, &c, 1) == 1 && c != '\n')
452                         continue;
453         }
454
455         if (ENABLE_FEATURE_INIT_COREDUMPS) {
456                 struct stat sb;
457                 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
458                         struct rlimit limit;
459                         limit.rlim_cur = RLIM_INFINITY;
460                         limit.rlim_max = RLIM_INFINITY;
461                         setrlimit(RLIMIT_CORE, &limit);
462                 }
463         }
464
465         /* Log the process name and args */
466         message(L_LOG, "starting pid %d, tty '%s': '%s'",
467                           getpid(), a->terminal, a->command);
468
469         /* Now run it.  The new program will take over this PID,
470          * so nothing further in init.c should be run. */
471         init_exec(a->command);
472         /* We're still here?  Some error happened. */
473         _exit(-1);
474 }
475
476 static void delete_init_action(struct init_action *action)
477 {
478         struct init_action *a, *b = NULL;
479
480         for (a = init_action_list; a; b = a, a = a->next) {
481                 if (a == action) {
482                         if (b == NULL) {
483                                 init_action_list = a->next;
484                         } else {
485                                 b->next = a->next;
486                         }
487                         free(a);
488                         break;
489                 }
490         }
491 }
492
493 /* Run all commands of a particular type */
494 static void run_actions(int action_type)
495 {
496         struct init_action *a, *tmp;
497
498         for (a = init_action_list; a; a = tmp) {
499                 tmp = a->next;
500                 if (a->action_type & action_type) {
501                         // Pointless: run() will error out if open of device fails.
502                         ///* a->terminal of "" means "init's console" */
503                         //if (a->terminal[0] && access(a->terminal, R_OK | W_OK)) {
504                         //      //message(L_LOG | L_CONSOLE, "Device %s cannot be opened in RW mode", a->terminal /*, strerror(errno)*/);
505                         //      delete_init_action(a);
506                         //} else
507                         if (a->action_type & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
508                                 waitfor(run(a));
509                                 delete_init_action(a);
510                         } else if (a->action_type & ONCE) {
511                                 run(a);
512                                 delete_init_action(a);
513                         } else if (a->action_type & (RESPAWN | ASKFIRST)) {
514                                 /* Only run stuff with pid==0.  If they have
515                                  * a pid, that means it is still running */
516                                 if (a->pid == 0) {
517                                         a->pid = run(a);
518                                 }
519                         }
520                 }
521         }
522 }
523
524 static void init_reboot(unsigned long magic)
525 {
526         pid_t pid;
527         /* We have to fork here, since the kernel calls do_exit(EXIT_SUCCESS) in
528          * linux/kernel/sys.c, which can cause the machine to panic when
529          * the init process is killed.... */
530         pid = vfork();
531         if (pid == 0) { /* child */
532                 reboot(magic);
533                 _exit(EXIT_SUCCESS);
534         }
535         waitfor(pid);
536 }
537
538 static void kill_all_processes(void)
539 {
540         /* run everything to be run at "shutdown".  This is done _prior_
541          * to killing everything, in case people wish to use scripts to
542          * shut things down gracefully... */
543         run_actions(SHUTDOWN);
544
545         /* first disable all our signals */
546         sigprocmask_allsigs(SIG_BLOCK);
547
548         message(L_CONSOLE | L_LOG, "The system is going down NOW!");
549
550         /* Allow Ctrl-Alt-Del to reboot system. */
551         init_reboot(RB_ENABLE_CAD);
552
553         /* Send signals to every process _except_ pid 1 */
554         message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "TERM");
555         kill(-1, SIGTERM);
556         sync();
557         sleep(1);
558
559         message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "KILL");
560         kill(-1, SIGKILL);
561         sync();
562         sleep(1);
563 }
564
565 static void halt_reboot_pwoff(int sig)
566 {
567         const char *m = "halt";
568         int rb;
569
570         kill_all_processes();
571
572         rb = RB_HALT_SYSTEM;
573         if (sig == SIGTERM) {
574                 m = "reboot";
575                 rb = RB_AUTOBOOT;
576         } else if (sig == SIGUSR2) {
577                 m = "poweroff";
578                 rb = RB_POWER_OFF;
579         }
580         message(L_CONSOLE | L_LOG, "Requesting system %s", m);
581         /* allow time for last message to reach serial console */
582         sleep(2);
583         init_reboot(rb);
584         loop_forever();
585 }
586
587 /* Handler for QUIT - exec "restart" action,
588  * else (no such action defined) do nothing */
589 static void exec_restart_action(int sig UNUSED_PARAM)
590 {
591         struct init_action *a;
592
593         for (a = init_action_list; a; a = a->next) {
594                 if (a->action_type & RESTART) {
595                         kill_all_processes();
596
597                         /* unblock all signals (blocked in kill_all_processes()) */
598                         sigprocmask_allsigs(SIG_UNBLOCK);
599
600                         /* Open the new terminal device */
601                         open_stdio_to_tty(a->terminal, 0 /* - halt if open fails */);
602
603                         messageD(L_CONSOLE | L_LOG, "Trying to re-exec %s", a->command);
604                         init_exec(a->command);
605                         sleep(2);
606                         init_reboot(RB_HALT_SYSTEM);
607                         loop_forever();
608                 }
609         }
610 }
611
612 static void ctrlaltdel_signal(int sig UNUSED_PARAM)
613 {
614         run_actions(CTRLALTDEL);
615 }
616
617 /* The SIGSTOP & SIGTSTP handler */
618 static void stop_handler(int sig UNUSED_PARAM)
619 {
620         int saved_errno = errno;
621
622         got_cont = 0;
623         while (!got_cont)
624                 pause();
625
626         errno = saved_errno;
627 }
628
629 /* The SIGCONT handler */
630 static void cont_handler(int sig UNUSED_PARAM)
631 {
632         got_cont = 1;
633 }
634
635 static void new_init_action(uint8_t action_type, const char *command, const char *cons)
636 {
637         struct init_action *a, *last;
638
639 // Why?
640 //      if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
641 //              return;
642
643         /* Append to the end of the list */
644         for (a = last = init_action_list; a; a = a->next) {
645                 /* don't enter action if it's already in the list,
646                  * but do overwrite existing actions */
647                 if ((strcmp(a->command, command) == 0)
648                         && (strcmp(a->terminal, cons) == 0)) {
649                         a->action_type = action_type;
650                         return;
651                 }
652                 last = a;
653         }
654
655         a = xzalloc(sizeof(*a));
656         if (last) {
657                 last->next = a;
658         } else {
659                 init_action_list = a;
660         }
661         a->action_type = action_type;
662         safe_strncpy(a->command, command, sizeof(a->command));
663         safe_strncpy(a->terminal, cons, sizeof(a->terminal));
664         messageD(L_LOG | L_CONSOLE, "command='%s' action=%d tty='%s'\n",
665                 a->command, a->action_type, a->terminal);
666 }
667
668 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
669  * then parse_inittab() simply adds in some default
670  * actions(i.e., runs INIT_SCRIPT and then starts a pair
671  * of "askfirst" shells).  If CONFIG_FEATURE_USE_INITTAB
672  * _is_ defined, but /etc/inittab is missing, this
673  * results in the same set of default behaviors.
674  */
675 static void parse_inittab(void)
676 {
677         char *token[4];
678         /* order must correspond to SYSINIT..RESTART constants */
679         static const char actions[] ALIGN1 =
680                 "sysinit\0""respawn\0""askfirst\0""wait\0""once\0"
681                 "ctrlaltdel\0""shutdown\0""restart\0";
682
683         parser_t *parser = config_open(INITTAB);
684         /* No inittab file -- set up some default behavior */
685         if (parser == NULL) {
686                 /* Reboot on Ctrl-Alt-Del */
687                 new_init_action(CTRLALTDEL, "reboot", "");
688                 /* Umount all filesystems on halt/reboot */
689                 new_init_action(SHUTDOWN, "umount -a -r", "");
690                 /* Swapoff on halt/reboot */
691                 if (ENABLE_SWAPONOFF)
692                         new_init_action(SHUTDOWN, "swapoff -a", "");
693                 /* Prepare to restart init when a QUIT is received */
694                 new_init_action(RESTART, "init", "");
695                 /* Askfirst shell on tty1-4 */
696                 new_init_action(ASKFIRST, bb_default_login_shell, "");
697 //TODO: VC_1 instead of ""? "" is console -> ctty problems -> angry users
698                 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
699                 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
700                 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
701                 /* sysinit */
702                 new_init_action(SYSINIT, INIT_SCRIPT, "");
703
704                 return;
705         }
706         /* optional_tty:ignored_runlevel:action:command
707          * Delims are not to be collapsed and need exactly 4 tokens
708          */
709         while (config_read(parser, token, 4, 0, "#:", PARSE_DONT_TRIM|PARSE_DONT_REDUCE|PARSE_LAST_IS_GREEDY)) {
710                 int action;
711                 char *tty = token[0];
712
713                 if (!token[3]) /* less than 4 tokens */
714                         goto bad_entry;
715                 action = index_in_strings(actions, token[2]);
716                 if (action < 0 || !token[3][0]) /* token[3]: command */
717                         goto bad_entry;
718                 /* turn .*TTY -> /dev/TTY */
719                 if (tty[0]) {
720                         if (strncmp(tty, "/dev/", 5) == 0)
721                                 tty += 5;
722                         tty = concat_path_file("/dev/", tty);
723                 }
724                 new_init_action(1 << action, token[3], tty);
725                 if (tty[0])
726                         free(tty);
727                 continue;
728  bad_entry:
729                 message(L_LOG | L_CONSOLE, "Bad inittab entry at line %d",
730                                 parser->lineno);
731         }
732         config_close(parser);
733 }
734
735 #if ENABLE_FEATURE_USE_INITTAB
736 static void reload_signal(int sig UNUSED_PARAM)
737 {
738         struct init_action *a, *tmp;
739
740         message(L_LOG, "reloading /etc/inittab");
741
742         /* disable old entrys */
743         for (a = init_action_list; a; a = a->next) {
744                 a->action_type = ONCE;
745         }
746
747         parse_inittab();
748
749         if (ENABLE_FEATURE_KILL_REMOVED) {
750                 /* Be nice and send SIGTERM first */
751                 for (a = init_action_list; a; a = a->next) {
752                         pid_t pid = a->pid;
753                         if ((a->action_type & ONCE) && pid != 0) {
754                                 kill(pid, SIGTERM);
755                         }
756                 }
757 #if CONFIG_FEATURE_KILL_DELAY
758                 /* NB: parent will wait in NOMMU case */
759                 if ((BB_MMU ? fork() : vfork()) == 0) { /* child */
760                         sleep(CONFIG_FEATURE_KILL_DELAY);
761                         for (a = init_action_list; a; a = a->next) {
762                                 pid_t pid = a->pid;
763                                 if ((a->action_type & ONCE) && pid != 0) {
764                                         kill(pid, SIGKILL);
765                                 }
766                         }
767                         _exit(EXIT_SUCCESS);
768                 }
769 #endif
770         }
771
772         /* remove unused entrys */
773         for (a = init_action_list; a; a = tmp) {
774                 tmp = a->next;
775                 if ((a->action_type & (ONCE | SYSINIT | WAIT)) && a->pid == 0) {
776                         delete_init_action(a);
777                 }
778         }
779         run_actions(RESPAWN | ASKFIRST);
780 }
781 #endif
782
783 int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
784 int init_main(int argc UNUSED_PARAM, char **argv)
785 {
786         struct init_action *a;
787         pid_t wpid;
788
789         die_sleep = 30 * 24*60*60; /* if xmalloc will ever die... */
790
791         if (argv[1] && !strcmp(argv[1], "-q")) {
792                 return kill(1, SIGHUP);
793         }
794
795         if (!ENABLE_DEBUG_INIT) {
796                 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
797                 if (getpid() != 1
798                  && (!ENABLE_FEATURE_INITRD || !strstr(applet_name, "linuxrc"))
799                 ) {
800                         bb_show_usage();
801                 }
802                 /* Set up sig handlers  -- be sure to
803                  * clear all of these in run() */
804                 signal(SIGQUIT, exec_restart_action);
805                 bb_signals(0
806                         + (1 << SIGUSR1)  /* halt */
807                         + (1 << SIGUSR2)  /* poweroff */
808                         + (1 << SIGTERM)  /* reboot */
809                         , halt_reboot_pwoff);
810                 signal(SIGINT, ctrlaltdel_signal);
811                 signal(SIGCONT, cont_handler);
812                 bb_signals(0
813                         + (1 << SIGSTOP)
814                         + (1 << SIGTSTP)
815                         , stop_handler);
816
817                 /* Turn off rebooting via CTL-ALT-DEL -- we get a
818                  * SIGINT on CAD so we can shut things down gracefully... */
819                 init_reboot(RB_DISABLE_CAD);
820         }
821
822         /* Figure out where the default console should be */
823         console_init();
824         set_sane_term();
825         xchdir("/");
826         setsid();
827         {
828                 const char *const *e;
829                 /* Make sure environs is set to something sane */
830                 for (e = environment; *e; e++)
831                         putenv((char *) *e);
832         }
833
834         if (argv[1])
835                 setenv("RUNLEVEL", argv[1], 1);
836
837         /* Hello world */
838         message(MAYBE_CONSOLE | L_LOG, "init started: %s", bb_banner);
839
840         /* Make sure there is enough memory to do something useful. */
841         if (ENABLE_SWAPONOFF) {
842                 struct sysinfo info;
843
844                 if (!sysinfo(&info) &&
845                         (info.mem_unit ? : 1) * (long long)info.totalram < 1024*1024)
846                 {
847                         message(L_CONSOLE, "Low memory, forcing swapon");
848                         /* swapon -a requires /proc typically */
849                         new_init_action(SYSINIT, "mount -t proc proc /proc", "");
850                         /* Try to turn on swap */
851                         new_init_action(SYSINIT, "swapon -a", "");
852                         run_actions(SYSINIT);   /* wait and removing */
853                 }
854         }
855
856         /* Check if we are supposed to be in single user mode */
857         if (argv[1]
858          && (!strcmp(argv[1], "single") || !strcmp(argv[1], "-s") || LONE_CHAR(argv[1], '1'))
859         ) {
860                 /* ??? shouldn't we set RUNLEVEL="b" here? */
861                 /* Start a shell on console */
862                 new_init_action(RESPAWN, bb_default_login_shell, "");
863         } else {
864                 /* Not in single user mode -- see what inittab says */
865
866                 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
867                  * then parse_inittab() simply adds in some default
868                  * actions(i.e., runs INIT_SCRIPT and then starts a pair
869                  * of "askfirst" shells */
870                 parse_inittab();
871         }
872
873 #if ENABLE_SELINUX
874         if (getenv("SELINUX_INIT") == NULL) {
875                 int enforce = 0;
876
877                 putenv((char*)"SELINUX_INIT=YES");
878                 if (selinux_init_load_policy(&enforce) == 0) {
879                         BB_EXECVP(argv[0], argv);
880                 } else if (enforce > 0) {
881                         /* SELinux in enforcing mode but load_policy failed */
882                         message(L_CONSOLE, "Cannot load SELinux Policy. "
883                                 "Machine is in enforcing mode. Halting now.");
884                         exit(EXIT_FAILURE);
885                 }
886         }
887 #endif /* CONFIG_SELINUX */
888
889         /* Make the command line just say "init"  - thats all, nothing else */
890         strncpy(argv[0], "init", strlen(argv[0]));
891         /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
892         while (*++argv)
893                 memset(*argv, 0, strlen(*argv));
894
895         /* Now run everything that needs to be run */
896
897         /* First run the sysinit command */
898         run_actions(SYSINIT);
899
900         /* Next run anything that wants to block */
901         run_actions(WAIT);
902
903         /* Next run anything to be run only once */
904         run_actions(ONCE);
905
906         /* Redefine SIGHUP to reread /etc/inittab */
907 #if ENABLE_FEATURE_USE_INITTAB
908         signal(SIGHUP, reload_signal);
909 #else
910         signal(SIGHUP, SIG_IGN);
911 #endif
912
913         /* Now run the looping stuff for the rest of forever */
914         while (1) {
915                 /* run the respawn/askfirst stuff */
916                 run_actions(RESPAWN | ASKFIRST);
917
918                 /* Don't consume all CPU time -- sleep a bit */
919                 sleep(1);
920
921                 /* Wait for any child process to exit */
922                 wpid = wait(NULL);
923                 while (wpid > 0) {
924                         /* Find out who died and clean up their corpse */
925                         for (a = init_action_list; a; a = a->next) {
926                                 if (a->pid == wpid) {
927                                         /* Set the pid to 0 so that the process gets
928                                          * restarted by run_actions() */
929                                         a->pid = 0;
930                                         message(L_LOG, "process '%s' (pid %d) exited. "
931                                                         "Scheduling for restart.",
932                                                         a->command, wpid);
933                                 }
934                         }
935                         /* see if anyone else is waiting to be reaped */
936                         wpid = wait_any_nohang(NULL);
937                 }
938         }
939 }