1 /* vi: set sw=4 ts=4: */
3 * Mini init implementation for busybox
6 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
7 * Adjusted by so many folks, it's impossible to keep track.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 /* Turn this on to disable all the dangerous
26 rebooting stuff when debugging.
40 #include <sys/fcntl.h>
41 #include <sys/ioctl.h>
42 #include <sys/mount.h>
43 #include <sys/types.h>
46 # include <sys/syslog.h>
49 #define bb_need_full_version
50 #define BB_DECLARE_EXTERN
53 /* From <linux/vt.h> */
55 unsigned short v_active; /* active vt */
56 unsigned short v_signal; /* signal to send */
57 unsigned short v_state; /* vt bitmask */
59 #define VT_GETSTATE 0x5603 /* get global vt state info */
61 /* From <linux/serial.h> */
62 struct serial_struct {
71 unsigned short close_delay;
72 char reserved_char[2];
74 unsigned short closing_wait; /* time to wait before closing */
75 unsigned short closing_wait2; /* no longer used... */
81 #ifndef RB_HALT_SYSTEM
82 #define RB_HALT_SYSTEM 0xcdef0123
83 #define RB_ENABLE_CAD 0x89abcdef
84 #define RB_DISABLE_CAD 0
85 #define RB_POWER_OFF 0x4321fedc
86 #define RB_AUTOBOOT 0x01234567
87 #if defined(__GLIBC__)
88 #include <sys/reboot.h>
89 #define init_reboot(magic) reboot(magic)
91 #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
96 #define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
100 #if defined BB_FEATURE_INIT_COREDUMPS
102 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
103 * before processes are spawned to set core file size as unlimited.
104 * This is for debugging only. Don't use this is production, unless
105 * you want core dumps lying about....
107 #define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
108 #include <sys/resource.h>
109 #include <sys/time.h>
112 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
114 #if defined(__GLIBC__)
115 #include <sys/kdaemon.h>
117 static _syscall2(int, bdflush, int, func, int, data);
118 #endif /* __GLIBC__ */
121 #define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
122 #define VT_SECONDARY "/dev/tty2" /* Virtual console */
123 #define VT_THIRD "/dev/tty3" /* Virtual console */
124 #define VT_FOURTH "/dev/tty4" /* Virtual console */
125 #define VT_LOG "/dev/tty5" /* Virtual console */
126 #define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
127 #define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
128 #define SHELL "-/bin/sh" /* Default shell */
129 #define INITTAB "/etc/inittab" /* inittab file location */
131 #define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
137 /* Allowed init action types */
147 /* A mapping between "inittab" action name strings and action type codes. */
148 typedef struct initActionType {
150 initActionEnum action;
153 static const struct initActionType actions[] = {
154 {"sysinit", SYSINIT},
155 {"respawn", RESPAWN},
156 {"askfirst", ASKFIRST},
159 {"ctrlaltdel", CTRLALTDEL},
163 /* Set up a linked list of initActions, to be read from inittab */
164 typedef struct initActionTag initAction;
165 struct initActionTag {
170 initActionEnum action;
172 initAction *initActionList = NULL;
175 static char *secondConsole = VT_SECONDARY;
176 static char *thirdConsole = VT_THIRD;
177 static char *fourthConsole = VT_FOURTH;
178 static char *log = VT_LOG;
179 static int kernelVersion = 0;
180 static char termType[32] = "TERM=linux";
181 static char console[32] = _PATH_CONSOLE;
183 static void delete_initAction(initAction * action);
186 /* Print a message to the specified device.
187 * Device may be bitwise-or'd from LOG | CONSOLE */
188 static void message(int device, char *fmt, ...)
189 __attribute__ ((format (printf, 2, 3)));
190 static void message(int device, char *fmt, ...)
197 /* Log the message to syslogd */
201 va_start(arguments, fmt);
202 vsnprintf(msg, sizeof(msg), fmt, arguments);
204 openlog("init", 0, LOG_USER);
205 syslog(LOG_USER|LOG_INFO, msg);
209 static int log_fd = -1;
211 /* Take full control of the log tty, and never close it.
212 * It's mine, all mine! Muhahahaha! */
215 /* don't even try to log, because there is no such console */
217 /* log to main console instead */
219 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
221 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
227 if ((device & LOG) && (log_fd >= 0)) {
228 va_start(arguments, fmt);
229 vdprintf(log_fd, fmt, arguments);
234 if (device & CONSOLE) {
235 /* Always send console messages to /dev/console so people will see them. */
238 device_open(_PATH_CONSOLE,
239 O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
240 va_start(arguments, fmt);
241 vdprintf(fd, fmt, arguments);
245 fprintf(stderr, "Bummer, can't print: ");
246 va_start(arguments, fmt);
247 vfprintf(stderr, fmt, arguments);
254 /* Set terminal settings to reasonable defaults */
255 void set_term(int fd)
261 /* set control chars */
262 tty.c_cc[VINTR] = 3; /* C-c */
263 tty.c_cc[VQUIT] = 28; /* C-\ */
264 tty.c_cc[VERASE] = 127; /* C-? */
265 tty.c_cc[VKILL] = 21; /* C-u */
266 tty.c_cc[VEOF] = 4; /* C-d */
267 tty.c_cc[VSTART] = 17; /* C-q */
268 tty.c_cc[VSTOP] = 19; /* C-s */
269 tty.c_cc[VSUSP] = 26; /* C-z */
271 /* use line dicipline 0 */
274 /* Make it be sane */
275 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
276 tty.c_cflag |= HUPCL|CLOCAL;
279 tty.c_iflag = ICRNL | IXON | IXOFF;
282 tty.c_oflag = OPOST | ONLCR;
286 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
288 tcsetattr(fd, TCSANOW, &tty);
291 /* How much memory does this machine have?
292 Units are kBytes to avoid overflow on 4GB machines */
293 static int check_free_memory()
296 unsigned int result, u, s=10;
298 if (sysinfo(&info) != 0) {
299 perror_msg("Error checking free memory: ");
303 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
304 * Kernels 2.4.0 return info.mem_unit in bytes. */
307 while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
308 result = (info.totalram>>s) + (info.totalswap>>s);
310 if (result < 0) result = INT_MAX;
314 static void console_init()
317 int tried_devcons = 0;
318 int tried_vtprimary = 0;
320 struct serial_struct sr;
323 if ((s = getenv("TERM")) != NULL) {
324 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
327 if ((s = getenv("CONSOLE")) != NULL) {
328 snprintf(console, sizeof(console) - 1, "%s", s);
331 /* sparc kernel supports console=tty[ab] parameter which is also
332 * passed to init, so catch it here */
333 else if ((s = getenv("console")) != NULL) {
334 /* remap tty[ab] to /dev/ttyS[01] */
335 if (strcmp(s, "ttya") == 0)
336 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
337 else if (strcmp(s, "ttyb") == 0)
338 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
342 /* 2.2 kernels: identify the real console backend and try to use it */
343 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
344 /* this is a serial console */
345 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
346 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
347 /* this is linux virtual tty */
348 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
351 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
356 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
357 /* Can't open selected console -- try /dev/console */
358 if (!tried_devcons) {
360 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
363 /* Can't open selected console -- try vt1 */
364 if (!tried_vtprimary) {
366 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
372 /* Perhaps we should panic here? */
373 snprintf(console, sizeof(console) - 1, "/dev/null");
375 /* check for serial console and disable logging to tty5 & running a
377 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
379 secondConsole = NULL;
381 fourthConsole = NULL;
382 /* Force the TERM setting to vt102 for serial console --
383 * iff TERM is set to linux (the default) */
384 if (strcmp( termType, "TERM=linux" ) == 0)
385 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
386 message(LOG | CONSOLE,
387 "serial console detected. Disabling virtual terminals.\r\n");
391 message(LOG, "console=%s\n", console);
394 static pid_t run(char *command, char *terminal, int get_enter)
399 char *cmd[255], *cmdpath;
401 static const char press_enter[] =
403 "\nPlease press Enter to activate this console. ";
404 char *environment[] = {
406 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
413 if ((pid = fork()) == 0) {
415 ioctl(0, TIOCNOTTY, 0);
421 /* Reset signal handlers set for parent process */
422 signal(SIGUSR1, SIG_DFL);
423 signal(SIGUSR2, SIG_DFL);
424 signal(SIGINT, SIG_DFL);
425 signal(SIGTERM, SIG_DFL);
426 signal(SIGHUP, SIG_DFL);
428 if ((fd = device_open(terminal, O_RDWR)) < 0) {
429 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
435 ioctl(0, TIOCSCTTY, 1);
436 tcsetpgrp(0, getpgrp());
439 if (get_enter == TRUE) {
441 * Save memory by not exec-ing anything large (like a shell)
442 * before the user wants it. This is critical if swap is not
443 * enabled and the system has low memory. Generally this will
444 * be run on the second virtual console, and the first will
445 * be allowed to start a shell or whatever an init script
449 pid_t shell_pgid = getpid();
450 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
451 command, shell_pgid, terminal);
453 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
458 /* Log the process name and args */
459 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
460 shell_pgid, terminal, command);
463 /* See if any special /bin/sh requiring characters are present */
464 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
467 strcpy(buf, "exec ");
468 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
472 /* Convert command (char*) into cmd (char**, one word per string) */
473 for (tmpCmd = command, i = 0;
474 (tmpCmd = strsep(&command, " \t")) != NULL;) {
475 if (*tmpCmd != '\0') {
487 Interactive shells want to see a dash in argv[0]. This
488 typically is handled by login, argv will be setup this
489 way if a dash appears at the front of the command path
493 if (*cmdpath == '-') {
496 /* skip over the dash */
499 /* find the last component in the command pathname */
500 s = get_last_path_component(cmdpath);
502 /* make a new argv[0] */
503 if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
504 message(LOG | CONSOLE, "malloc failed");
512 #if defined BB_FEATURE_INIT_COREDUMPS
515 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
517 limit.rlim_cur = RLIM_INFINITY;
518 limit.rlim_max = RLIM_INFINITY;
519 setrlimit(RLIMIT_CORE, &limit);
524 /* Now run it. The new program will take over this PID,
525 * so nothing further in init.c should be run. */
526 execve(cmdpath, cmd, environment);
528 /* We're still here? Some error happened. */
529 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmdpath,
536 static int waitfor(char *command, char *terminal, int get_enter)
539 int pid = run(command, terminal, get_enter);
542 wpid = wait(&status);
543 if (wpid > 0 && wpid != pid) {
552 /* Make sure there is enough memory to do something useful. *
553 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
554 static void check_memory()
558 if (check_free_memory() > 1000)
561 if (stat("/etc/fstab", &statBuf) == 0) {
562 /* swapon -a requires /proc typically */
563 waitfor("mount proc /proc -t proc", console, FALSE);
564 /* Try to turn on swap */
565 waitfor("swapon -a", console, FALSE);
566 if (check_free_memory() < 1000)
574 "Sorry, your computer does not have enough memory.\r\n");
579 /* Run all commands to be run right before halt/reboot */
580 static void run_lastAction(void)
583 for (a = initActionList; a; a = a->nextPtr) {
584 if (a->action == CTRLALTDEL) {
585 waitfor(a->process, a->console, FALSE);
586 delete_initAction(a);
593 static void shutdown_system(void)
596 /* first disable our SIGHUP signal */
597 signal(SIGHUP, SIG_DFL);
599 /* Allow Ctrl-Alt-Del to reboot system. */
600 init_reboot(RB_ENABLE_CAD);
602 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
605 /* Send signals to every process _except_ pid 1 */
606 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
611 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
615 /* run everything to be run at "ctrlaltdel" */
619 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
620 /* bdflush, kupdate not needed for kernels >2.2.11 */
626 static void halt_signal(int sig)
630 "The system is halted. Press %s or turn off power\r\n",
631 (secondConsole == NULL) /* serial console */
632 ? "Reset" : "CTRL-ALT-DEL");
635 /* allow time for last message to reach serial console */
638 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
639 init_reboot(RB_POWER_OFF);
641 init_reboot(RB_HALT_SYSTEM);
645 static void reboot_signal(int sig)
648 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
651 /* allow time for last message to reach serial console */
654 init_reboot(RB_AUTOBOOT);
658 #if defined BB_FEATURE_INIT_CHROOT
660 #if ! defined BB_FEATURE_USE_PROCFS
661 #error Sorry, I depend on the /proc filesystem right now.
664 static void check_chroot(int sig)
666 char *argv_init[2] = { "init", NULL, };
667 char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
668 char rootpath[256], *tc;
671 if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
673 "SIGHUP recived, but could not open proc file\r\n");
677 if (read(fd, rootpath, sizeof(rootpath)) == -1) {
679 "SIGHUP recived, but could not read proc file\r\n");
685 if (rootpath[0] == '\0') {
687 "SIGHUP recived, but new root is not valid: %s\r\n",
693 tc = strrchr(rootpath, '\n');
696 /* Ok, making it this far means we commit */
697 message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
700 /* kill all other programs first */
701 message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
706 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
711 /* ok, we don't need /proc anymore. we also assume that the signaling
712 * process left the rest of the filesystems alone for us */
715 /* Ok, now we chroot. Hopefully we only have two things mounted, the
716 * new chroot'd mount point, and the old "/" mount. s,
717 * we go ahead and unmount the old "/". This should trigger the kernel
718 * to set things up the Right Way(tm). */
720 if (!chroot(rootpath))
723 /* If the chroot fails, we are already too far to turn back, so we
724 * continue and hope that executing init below will revive the system */
726 /* close all of our descriptors and open new ones */
730 open("/dev/console", O_RDWR, 0);
734 message(CONSOLE, "Executing real init...\r\n");
735 /* execute init in the (hopefully) new root */
736 execve("/sbin/init", argv_init, envp_init);
739 "ERROR: Could not exec new init. Press %s to reboot.\r\n",
740 (secondConsole == NULL) /* serial console */
741 ? "Reset" : "CTRL-ALT-DEL");
744 #endif /* BB_FEATURE_INIT_CHROOT */
746 #endif /* ! DEBUG_INIT */
748 void new_initAction(initActionEnum action, char *process, char *cons)
750 initAction *newAction;
755 /* If BusyBox detects that a serial console is in use,
756 * then entries not refering to the console or null devices will _not_ be run.
757 * The exception to this rule is the null device.
759 if (secondConsole == NULL && strcmp(cons, console)
760 && strcmp(cons, "/dev/null"))
763 newAction = calloc((size_t) (1), sizeof(initAction));
765 message(LOG | CONSOLE, "Memory allocation failure\n");
769 newAction->nextPtr = initActionList;
770 initActionList = newAction;
771 strncpy(newAction->process, process, 255);
772 newAction->action = action;
773 strncpy(newAction->console, cons, 255);
775 // message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
776 // newAction->process, newAction->action, newAction->console);
779 static void delete_initAction(initAction * action)
781 initAction *a, *b = NULL;
783 for (a = initActionList; a; b = a, a = a->nextPtr) {
786 initActionList = a->nextPtr;
788 b->nextPtr = a->nextPtr;
796 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
797 * then parse_inittab() simply adds in some default
798 * actions(i.e runs INIT_SCRIPT and then starts a pair
799 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
800 * _is_ defined, but /etc/inittab is missing, this
801 * results in the same set of default behaviors.
803 void parse_inittab(void)
805 #ifdef BB_FEATURE_USE_INITTAB
807 char buf[256], lineAsRead[256], tmpConsole[256];
808 char *id, *runlev, *action, *process, *eol;
809 const struct initActionType *a = actions;
813 file = fopen(INITTAB, "r");
815 /* No inittab file -- set up some default behavior */
817 /* Swapoff on halt/reboot */
818 new_initAction(CTRLALTDEL, "/sbin/swapoff -a", console);
819 /* Umount all filesystems on halt/reboot */
820 new_initAction(CTRLALTDEL, "/bin/umount -a -r", console);
821 /* Askfirst shell on tty1 */
822 new_initAction(ASKFIRST, SHELL, console);
823 /* Askfirst shell on tty2 */
824 if (secondConsole != NULL)
825 new_initAction(ASKFIRST, SHELL, secondConsole);
826 /* Askfirst shell on tty3 */
827 if (thirdConsole != NULL)
828 new_initAction(ASKFIRST, SHELL, thirdConsole);
829 /* Askfirst shell on tty4 */
830 if (fourthConsole != NULL)
831 new_initAction(ASKFIRST, SHELL, fourthConsole);
833 new_initAction(SYSINIT, INIT_SCRIPT, console);
836 #ifdef BB_FEATURE_USE_INITTAB
839 while (fgets(buf, 255, file) != NULL) {
841 /* Skip leading spaces */
842 for (id = buf; *id == ' ' || *id == '\t'; id++);
844 /* Skip the line if it's a comment */
845 if (*id == '#' || *id == '\n')
848 /* Trim the trailing \n */
849 eol = strrchr(id, '\n');
853 /* Keep a copy around for posterity's sake (and error msgs) */
854 strcpy(lineAsRead, buf);
856 /* Separate the ID field from the runlevels */
857 runlev = strchr(id, ':');
858 if (runlev == NULL || *(runlev + 1) == '\0') {
859 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
866 /* Separate the runlevels from the action */
867 action = strchr(runlev, ':');
868 if (action == NULL || *(action + 1) == '\0') {
869 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
876 /* Separate the action from the process */
877 process = strchr(action, ':');
878 if (process == NULL || *(process + 1) == '\0') {
879 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
886 /* Ok, now process it */
888 while (a->name != 0) {
889 if (strcmp(a->name, action) == 0) {
893 strcpy(tmpConsole, "/dev/");
894 strncat(tmpConsole, id, 200);
895 if (stat(tmpConsole, &statBuf) != 0) {
896 message(LOG | CONSOLE,
897 "device '%s' does not exist. Did you read the directions?\n",
903 new_initAction(a->action, process, id);
911 /* Choke on an unknown action */
912 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
916 #endif /* BB_FEATURE_USE_INITTAB */
921 extern int init_main(int argc, char **argv)
928 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
930 #ifdef BB_FEATURE_LINUXRC
931 && strstr(applet_name, "linuxrc") == NULL
935 usage("init\n\nInit is the parent of all processes.\n\n"
936 "This version of init is designed to be run only "
939 /* Set up sig handlers -- be sure to
940 * clear all of these in run() */
941 signal(SIGUSR1, halt_signal);
942 signal(SIGUSR2, halt_signal);
943 signal(SIGINT, reboot_signal);
944 signal(SIGTERM, reboot_signal);
945 #if defined BB_FEATURE_INIT_CHROOT
946 signal(SIGHUP, check_chroot);
949 /* Turn off rebooting via CTL-ALT-DEL -- we get a
950 * SIGINT on CAD so we can shut things down gracefully... */
951 init_reboot(RB_DISABLE_CAD);
954 /* Figure out what kernel this is running */
955 kernelVersion = get_kernel_revision();
957 /* Figure out where the default console should be */
960 /* Close whatever files are open, and reset the console. */
968 /* Make sure PATH is set to something sane */
969 putenv(_PATH_STDPATH);
974 #if ! defined BB_FEATURE_EXTRA_QUIET
978 "init started: %s\r\n", full_version);
981 #if ! defined BB_FEATURE_EXTRA_QUIET
985 "init(%d) started: %s\r\n", getpid(), full_version);
989 /* Make sure there is enough memory to do something useful. */
992 /* Check if we are supposed to be in single user mode */
993 if (argc > 1 && (!strcmp(argv[1], "single") ||
994 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
995 /* Ask first then start a shell on tty2-4 */
996 if (secondConsole != NULL)
997 new_initAction(ASKFIRST, SHELL, secondConsole);
998 if (thirdConsole != NULL)
999 new_initAction(ASKFIRST, SHELL, thirdConsole);
1000 if (fourthConsole != NULL)
1001 new_initAction(ASKFIRST, SHELL, fourthConsole);
1002 /* Start a shell on tty1 */
1003 new_initAction(RESPAWN, SHELL, console);
1005 /* Not in single user mode -- see what inittab says */
1007 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
1008 * then parse_inittab() simply adds in some default
1009 * actions(i.e runs INIT_SCRIPT and then starts a pair
1010 * of "askfirst" shells */
1014 /* Fix up argv[0] to be certain we claim to be init */
1018 strncpy(argv[1], "\0", strlen(argv[1])+1);
1020 /* Now run everything that needs to be run */
1022 /* First run the sysinit command */
1023 for (a = initActionList; a; a = a->nextPtr) {
1024 if (a->action == SYSINIT) {
1025 waitfor(a->process, a->console, FALSE);
1026 /* Now remove the "sysinit" entry from the list */
1027 delete_initAction(a);
1030 /* Next run anything that wants to block */
1031 for (a = initActionList; a; a = a->nextPtr) {
1032 if (a->action == WAIT) {
1033 waitfor(a->process, a->console, FALSE);
1034 /* Now remove the "wait" entry from the list */
1035 delete_initAction(a);
1038 /* Next run anything to be run only once */
1039 for (a = initActionList; a; a = a->nextPtr) {
1040 if (a->action == ONCE) {
1041 run(a->process, a->console, FALSE);
1042 /* Now remove the "once" entry from the list */
1043 delete_initAction(a);
1046 /* If there is nothing else to do, stop */
1047 if (initActionList == NULL) {
1048 message(LOG | CONSOLE,
1049 "No more tasks for init -- sleeping forever.\n");
1054 /* Now run the looping stuff for the rest of forever */
1056 for (a = initActionList; a; a = a->nextPtr) {
1057 /* Only run stuff with pid==0. If they have
1058 * a pid, that means they are still running */
1060 switch (a->action) {
1062 /* run the respawn stuff */
1063 a->pid = run(a->process, a->console, FALSE);
1066 /* run the askfirst stuff */
1067 a->pid = run(a->process, a->console, TRUE);
1069 /* silence the compiler's incessant whining */
1075 /* Wait for a child process to exit */
1076 wpid = wait(&status);
1078 /* Find out who died and clean up their corpse */
1079 for (a = initActionList; a; a = a->nextPtr) {
1080 if (a->pid == wpid) {
1083 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
1094 c-file-style: "linux"