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