Upates to include copyright 2000 to everything
[platform/upstream/busybox.git] / init / init.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini init implementation for busybox
4  *
5  *
6  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
7  * Adjusted by so many folks, it's impossible to keep track.
8  *
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.
13  *
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.
18  *
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
22  *
23  */
24
25 /* Turn this on to disable all the dangerous 
26    rebooting stuff when debugging.
27 #define DEBUG_INIT
28 */
29
30 #include "internal.h"
31 #include <asm/types.h>
32 #include <errno.h>
33 #include <linux/serial.h>               /* for serial_struct */
34 #include <linux/version.h>
35 #include <paths.h>
36 #include <signal.h>
37 #include <stdarg.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <sys/fcntl.h>
42 #include <sys/ioctl.h>
43 #include <sys/kdaemon.h>
44 #include <sys/mount.h>
45 #include <sys/reboot.h>
46 #include <sys/sysinfo.h>                /* For check_free_memory() */
47 #ifdef BB_SYSLOGD
48 # include <sys/syslog.h>
49 #endif
50 #include <sys/sysmacros.h>
51 #include <sys/types.h>
52 #include <sys/vt.h>                             /* for vt_stat */
53 #include <sys/wait.h>
54 #include <termios.h>
55 #include <unistd.h>
56
57
58 #if defined BB_FEATURE_INIT_COREDUMPS
59 /*
60  * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called 
61  * before processes are spawned to set core file size as unlimited.
62  * This is for debugging only.  Don't use this is production, unless
63  * you want core dumps lying about....
64  */
65 #define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
66 #include <sys/resource.h>
67 #include <sys/time.h>
68 #endif
69
70 #ifndef KERNEL_VERSION
71 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
72 #endif
73
74
75 #define VT_PRIMARY   "/dev/tty1"     /* Primary virtual console */
76 #define VT_SECONDARY "/dev/tty2"     /* Virtual console */
77 #define VT_LOG       "/dev/tty3"     /* Virtual console */
78 #define SERIAL_CON0  "/dev/ttyS0"    /* Primary serial console */
79 #define SERIAL_CON1  "/dev/ttyS1"    /* Serial console */
80 #define SHELL        "/bin/sh"       /* Default shell */
81 #define INITTAB      "/etc/inittab"  /* inittab file location */
82 #ifndef INIT_SCRIPT
83 #define INIT_SCRIPT  "/etc/init.d/rcS"   /* Default sysinit script. */
84 #endif
85
86 #define LOG     0x1
87 #define CONSOLE 0x2
88
89 /* Allowed init action types */
90 typedef enum {
91         SYSINIT = 1,
92         RESPAWN,
93         ASKFIRST,
94         WAIT,
95         ONCE,
96         CTRLALTDEL
97 } initActionEnum;
98
99 /* A mapping between "inittab" action name strings and action type codes. */
100 typedef struct initActionType {
101         const char *name;
102         initActionEnum action;
103 } initActionType;
104
105 static const struct initActionType actions[] = {
106         {"sysinit", SYSINIT},
107         {"respawn", RESPAWN},
108         {"askfirst", ASKFIRST},
109         {"wait", WAIT},
110         {"once", ONCE},
111         {"ctrlaltdel", CTRLALTDEL},
112         {0}
113 };
114
115 /* Set up a linked list of initActions, to be read from inittab */
116 typedef struct initActionTag initAction;
117 struct initActionTag {
118         pid_t pid;
119         char process[256];
120         char console[256];
121         initAction *nextPtr;
122         initActionEnum action;
123 };
124 initAction *initActionList = NULL;
125
126
127 static char *secondConsole = VT_SECONDARY;
128 static char *log           = VT_LOG;
129 static int  kernelVersion  = 0;
130 static char termType[32]   = "TERM=linux";
131 static char console[32]    = _PATH_CONSOLE;
132
133 static void delete_initAction(initAction * action);
134
135
136 /* Print a message to the specified device.
137  * Device may be bitwise-or'd from LOG | CONSOLE */
138 static void message(int device, char *fmt, ...)
139                    __attribute__ ((format (printf, 2, 3)));
140 static void message(int device, char *fmt, ...)
141 {
142         va_list arguments;
143         int fd;
144
145 #ifdef BB_SYSLOGD
146
147         /* Log the message to syslogd */
148         if (device & LOG) {
149                 char msg[1024];
150
151                 va_start(arguments, fmt);
152                 vsnprintf(msg, sizeof(msg), fmt, arguments);
153                 va_end(arguments);
154                 openlog("init", 0, LOG_USER);
155                 syslog(LOG_USER|LOG_INFO, msg);
156                 closelog();
157         }
158 #else
159         static int log_fd = -1;
160
161         /* Take full control of the log tty, and never close it.
162          * It's mine, all mine!  Muhahahaha! */
163         if (log_fd < 0) {
164                 if (log == NULL) {
165                         /* don't even try to log, because there is no such console */
166                         log_fd = -2;
167                         /* log to main console instead */
168                         device = CONSOLE;
169                 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
170                         log_fd = -2;
171                         fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
172                         fflush(stderr);
173                         log = NULL;
174                         device = CONSOLE;
175                 }
176         }
177         if ((device & LOG) && (log_fd >= 0)) {
178                 va_start(arguments, fmt);
179                 vdprintf(log_fd, fmt, arguments);
180                 va_end(arguments);
181         }
182 #endif
183
184         if (device & CONSOLE) {
185                 /* Always send console messages to /dev/console so people will see them. */
186                 if (
187                         (fd =
188                          device_open(_PATH_CONSOLE,
189                                                  O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
190                         va_start(arguments, fmt);
191                         vdprintf(fd, fmt, arguments);
192                         va_end(arguments);
193                         close(fd);
194                 } else {
195                         fprintf(stderr, "Bummer, can't print: ");
196                         va_start(arguments, fmt);
197                         vfprintf(stderr, fmt, arguments);
198                         fflush(stderr);
199                         va_end(arguments);
200                 }
201         }
202 }
203
204
205 /* Set terminal settings to reasonable defaults */
206 void set_term(int fd)
207 {
208         struct termios tty;
209
210         tcgetattr(fd, &tty);
211
212         /* set control chars */
213         tty.c_cc[VINTR]  = 3;   /* C-c */
214         tty.c_cc[VQUIT]  = 28;  /* C-\ */
215         tty.c_cc[VERASE] = 127; /* C-? */
216         tty.c_cc[VKILL]  = 21;  /* C-u */
217         tty.c_cc[VEOF]   = 4;   /* C-d */
218         tty.c_cc[VSTART] = 17;  /* C-q */
219         tty.c_cc[VSTOP]  = 19;  /* C-s */
220         tty.c_cc[VSUSP]  = 26;  /* C-z */
221
222         /* use line dicipline 0 */
223         tty.c_line = 0;
224
225         /* Make it be sane */
226         tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
227         tty.c_cflag |= HUPCL|CLOCAL;
228
229         /* input modes */
230         tty.c_iflag = ICRNL | IXON | IXOFF;
231
232         /* output modes */
233         tty.c_oflag = OPOST | ONLCR;
234
235         /* local modes */
236         tty.c_lflag =
237                 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
238
239         tcsetattr(fd, TCSANOW, &tty);
240 }
241
242 /* How much memory does this machine have? */
243 static int check_free_memory()
244 {
245         struct sysinfo info;
246
247         sysinfo(&info);
248         if (sysinfo(&info) != 0) {
249                 message(LOG, "Error checking free memory: %s\n", strerror(errno));
250                 return -1;
251         }
252
253         return((info.totalram+info.totalswap)/1024);
254 }
255
256 static void console_init()
257 {
258         int fd;
259         int tried_devcons = 0;
260         int tried_vtprimary = 0;
261         struct vt_stat vt;
262         struct serial_struct sr;
263         char *s;
264
265         if ((s = getenv("TERM")) != NULL) {
266                 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
267         }
268
269         if ((s = getenv("CONSOLE")) != NULL) {
270                 snprintf(console, sizeof(console) - 1, "%s", s);
271         }
272 #if #cpu(sparc)
273         /* sparc kernel supports console=tty[ab] parameter which is also 
274          * passed to init, so catch it here */
275         else if ((s = getenv("console")) != NULL) {
276                 /* remap tty[ab] to /dev/ttyS[01] */
277                 if (strcmp(s, "ttya") == 0)
278                         snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
279                 else if (strcmp(s, "ttyb") == 0)
280                         snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
281         }
282 #endif
283         else {
284                 /* 2.2 kernels: identify the real console backend and try to use it */
285                 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
286                         /* this is a serial console */
287                         snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
288                 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
289                         /* this is linux virtual tty */
290                         snprintf(console, sizeof(console) - 1, "/dev/tty%d",
291                                          vt.v_active);
292                 } else {
293                         snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
294                         tried_devcons++;
295                 }
296         }
297
298         while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
299                 /* Can't open selected console -- try /dev/console */
300                 if (!tried_devcons) {
301                         tried_devcons++;
302                         snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
303                         continue;
304                 }
305                 /* Can't open selected console -- try vt1 */
306                 if (!tried_vtprimary) {
307                         tried_vtprimary++;
308                         snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
309                         continue;
310                 }
311                 break;
312         }
313         if (fd < 0) {
314                 /* Perhaps we should panic here? */
315                 snprintf(console, sizeof(console) - 1, "/dev/null");
316         } else {
317                 /* check for serial console and disable logging to tty3 & running a
318                    * shell to tty2 */
319                 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
320                         log = NULL;
321                         secondConsole = NULL;
322                         /* Force the TERM setting to vt102 for serial console --
323                          * iff TERM is set to linux (the default) */
324                         if (strcmp( termType, "TERM=linux" ) == 0)
325                                 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
326                         message(LOG | CONSOLE,
327                                         "serial console detected.  Disabling virtual terminals.\r\n");
328                 }
329                 close(fd);
330         }
331         message(LOG, "console=%s\n", console);
332 }
333
334 static pid_t run(char *command, char *terminal, int get_enter)
335 {
336         int i, fd;
337         pid_t pid;
338         char *tmpCmd;
339         char *cmd[255];
340         char buf[255];
341         static const char press_enter[] =
342
343                 "\nPlease press Enter to activate this console. ";
344         char *environment[] = {
345                 "HOME=/",
346                 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
347                 "SHELL=/bin/sh",
348                 termType,
349                 "USER=root",
350                 0
351         };
352
353
354         if ((pid = fork()) == 0) {
355                 /* Clean up */
356                 close(0);
357                 close(1);
358                 close(2);
359                 setsid();
360
361                 /* Reset signal handlers set for parent process */
362                 signal(SIGUSR1, SIG_DFL);
363                 signal(SIGUSR2, SIG_DFL);
364                 signal(SIGINT, SIG_DFL);
365                 signal(SIGTERM, SIG_DFL);
366                 signal(SIGHUP, SIG_DFL);
367
368                 if ((fd = device_open(terminal, O_RDWR)) < 0) {
369                         message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
370                         exit(1);
371                 }
372                 dup2(fd, 0);
373                 dup2(fd, 1);
374                 dup2(fd, 2);
375                 tcsetpgrp(0, getpgrp());
376                 set_term(0);
377
378                 if (get_enter == TRUE) {
379                         /*
380                          * Save memory by not exec-ing anything large (like a shell)
381                          * before the user wants it. This is critical if swap is not
382                          * enabled and the system has low memory. Generally this will
383                          * be run on the second virtual console, and the first will
384                          * be allowed to start a shell or whatever an init script 
385                          * specifies.
386                          */
387                         char c;
388 #ifdef DEBUG_INIT
389                         pid_t shell_pgid = getpid();
390                         message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
391                                         command, shell_pgid, terminal);
392 #endif
393                         write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
394                         read(fileno(stdin), &c, 1);
395                 }
396
397 #ifdef DEBUG_INIT
398                 /* Log the process name and args */
399                 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
400                                 shell_pgid, terminal, command);
401 #endif
402
403                 /* See if any special /bin/sh requiring characters are present */
404                 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
405                         cmd[0] = SHELL;
406                         cmd[1] = "-c";
407                         strcpy(buf, "exec ");
408                         strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
409                         cmd[2] = buf;
410                         cmd[3] = NULL;
411                 } else {
412                         /* Convert command (char*) into cmd (char**, one word per string) */
413                         for (tmpCmd = command, i = 0;
414                                  (tmpCmd = strsep(&command, " \t")) != NULL;) {
415                                 if (*tmpCmd != '\0') {
416                                         cmd[i] = tmpCmd;
417                                         tmpCmd++;
418                                         i++;
419                                 }
420                         }
421                         cmd[i] = NULL;
422                 }
423
424 #if defined BB_FEATURE_INIT_COREDUMPS
425                 {
426                         struct stat sb;
427                         if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
428                                 struct rlimit limit;
429                                 limit.rlim_cur = RLIM_INFINITY;
430                                 limit.rlim_max = RLIM_INFINITY;
431                                 setrlimit(RLIMIT_CORE, &limit);
432                         }
433                 }
434 #endif
435
436                 /* Now run it.  The new program will take over this PID, 
437                  * so nothing further in init.c should be run. */
438                 execve(cmd[0], cmd, environment);
439
440                 /* We're still here?  Some error happened. */
441                 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmd[0],
442                                 strerror(errno));
443                 exit(-1);
444         }
445         return pid;
446 }
447
448 static int waitfor(char *command, char *terminal, int get_enter)
449 {
450         int status, wpid;
451         int pid = run(command, terminal, get_enter);
452
453         while (1) {
454                 wpid = wait(&status);
455                 if (wpid > 0 && wpid != pid) {
456                         continue;
457                 }
458                 if (wpid == pid)
459                         break;
460         }
461         return wpid;
462 }
463
464 /* Make sure there is enough memory to do something useful. *
465  * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
466 static void check_memory()
467 {
468         struct stat statBuf;
469
470         if (check_free_memory() > 1000)
471                 return;
472
473         if (stat("/etc/fstab", &statBuf) == 0) {
474                 /* swapon -a requires /proc typically */
475                 waitfor("mount proc /proc -t proc", console, FALSE);
476                 /* Try to turn on swap */
477                 waitfor("swapon -a", console, FALSE);
478                 if (check_free_memory() < 1000)
479                         goto goodnight;
480         } else
481                 goto goodnight;
482         return;
483
484   goodnight:
485         message(CONSOLE,
486                         "Sorry, your computer does not have enough memory.\r\n");
487         while (1)
488                 sleep(1);
489 }
490
491 /* Run all commands to be run right before halt/reboot */
492 static void run_lastAction(void)
493 {
494         initAction *a;
495         for (a = initActionList; a; a = a->nextPtr) {
496                 if (a->action == CTRLALTDEL) {
497                         waitfor(a->process, a->console, FALSE);
498                         delete_initAction(a);
499                 }
500         }
501 }
502
503
504 #ifndef DEBUG_INIT
505 static void shutdown_system(void)
506 {
507
508         /* first disable our SIGHUP signal */
509         signal(SIGHUP, SIG_DFL);
510
511         /* Allow Ctrl-Alt-Del to reboot system. */
512         reboot(RB_ENABLE_CAD);
513
514         message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
515         sync();
516
517         /* Send signals to every process _except_ pid 1 */
518         message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
519         kill(-1, SIGTERM);
520         sleep(1);
521         sync();
522
523         message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
524         kill(-1, SIGKILL);
525         sleep(1);
526
527         /* run everything to be run at "ctrlaltdel" */
528         run_lastAction();
529
530         sync();
531         if (kernelVersion > 0 && kernelVersion <= 2 * 65536 + 2 * 256 + 11) {
532                 /* bdflush, kupdate not needed for kernels >2.2.11 */
533                 bdflush(1, 0);
534                 sync();
535         }
536 }
537
538 static void halt_signal(int sig)
539 {
540         shutdown_system();
541         message(CONSOLE|LOG,
542                         "The system is halted. Press %s or turn off power\r\n",
543                         (secondConsole == NULL) /* serial console */
544                         ? "Reset" : "CTRL-ALT-DEL");
545         sync();
546
547         /* allow time for last message to reach serial console */
548         sleep(2);
549
550 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
551         if (sig == SIGUSR2)
552                 reboot(RB_POWER_OFF);
553         else
554 #endif
555                 reboot(RB_HALT_SYSTEM);
556         exit(0);
557 }
558
559 static void reboot_signal(int sig)
560 {
561         shutdown_system();
562         message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
563         sync();
564
565         /* allow time for last message to reach serial console */
566         sleep(2);
567
568         reboot(RB_AUTOBOOT);
569         exit(0);
570 }
571
572 #if defined BB_FEATURE_INIT_CHROOT
573
574 #if ! defined BB_FEATURE_USE_PROCFS
575 #error Sorry, I depend on the /proc filesystem right now.
576 #endif
577
578 static void check_chroot(int sig)
579 {
580         char *argv_init[2] = { "init", NULL, };
581         char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
582         char rootpath[256], *tc;
583         int fd;
584
585         if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
586                 message(CONSOLE,
587                                 "SIGHUP recived, but could not open proc file\r\n");
588                 sleep(2);
589                 return;
590         }
591         if (read(fd, rootpath, sizeof(rootpath)) == -1) {
592                 message(CONSOLE,
593                                 "SIGHUP recived, but could not read proc file\r\n");
594                 sleep(2);
595                 return;
596         }
597         close(fd);
598
599         if (rootpath[0] == '\0') {
600                 message(CONSOLE,
601                                 "SIGHUP recived, but new root is not valid: %s\r\n",
602                                 rootpath);
603                 sleep(2);
604                 return;
605         }
606
607         tc = strrchr(rootpath, '\n');
608         *tc = '\0';
609
610         /* Ok, making it this far means we commit */
611         message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
612                         rootpath);
613
614         /* kill all other programs first */
615         message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
616         kill(-1, SIGTERM);
617         sleep(2);
618         sync();
619
620         message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
621         kill(-1, SIGKILL);
622         sleep(2);
623         sync();
624
625         /* ok, we don't need /proc anymore. we also assume that the signaling
626          * process left the rest of the filesystems alone for us */
627         umount("/proc");
628
629         /* Ok, now we chroot. Hopefully we only have two things mounted, the
630          * new chroot'd mount point, and the old "/" mount. s,
631          * we go ahead and unmount the old "/". This should trigger the kernel
632          * to set things up the Right Way(tm). */
633
634         if (!chroot(rootpath))
635                 umount("/dev/root");
636
637         /* If the chroot fails, we are already too far to turn back, so we
638          * continue and hope that executing init below will revive the system */
639
640         /* close all of our descriptors and open new ones */
641         close(0);
642         close(1);
643         close(2);
644         open("/dev/console", O_RDWR, 0);
645         dup(0);
646         dup(0);
647
648         message(CONSOLE, "Executing real init...\r\n");
649         /* execute init in the (hopefully) new root */
650         execve("/sbin/init", argv_init, envp_init);
651
652         message(CONSOLE,
653                         "ERROR: Could not exec new init. Press %s to reboot.\r\n",
654                         (secondConsole == NULL) /* serial console */
655                         ? "Reset" : "CTRL-ALT-DEL");
656         return;
657 }
658 #endif                                                  /* BB_FEATURE_INIT_CHROOT */
659
660 #endif                                                  /* ! DEBUG_INIT */
661
662 void new_initAction(initActionEnum action, char *process, char *cons)
663 {
664         initAction *newAction;
665
666         if (*cons == '\0')
667                 cons = console;
668
669         /* If BusyBox detects that a serial console is in use, 
670          * then entries not refering to the console or null devices will _not_ be run.
671          * The exception to this rule is the null device.
672          */
673         if (secondConsole == NULL && strcmp(cons, console)
674                 && strcmp(cons, "/dev/null"))
675                 return;
676
677         newAction = calloc((size_t) (1), sizeof(initAction));
678         if (!newAction) {
679                 message(LOG | CONSOLE, "Memory allocation failure\n");
680                 while (1)
681                         sleep(1);
682         }
683         newAction->nextPtr = initActionList;
684         initActionList = newAction;
685         strncpy(newAction->process, process, 255);
686         newAction->action = action;
687         strncpy(newAction->console, cons, 255);
688         newAction->pid = 0;
689 //    message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
690 //      newAction->process, newAction->action, newAction->console);
691 }
692
693 static void delete_initAction(initAction * action)
694 {
695         initAction *a, *b = NULL;
696
697         for (a = initActionList; a; b = a, a = a->nextPtr) {
698                 if (a == action) {
699                         if (b == NULL) {
700                                 initActionList = a->nextPtr;
701                         } else {
702                                 b->nextPtr = a->nextPtr;
703                         }
704                         free(a);
705                         break;
706                 }
707         }
708 }
709
710 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
711  * then parse_inittab() simply adds in some default
712  * actions(i.e runs INIT_SCRIPT and then starts a pair 
713  * of "askfirst" shells).  If BB_FEATURE_USE_INITTAB 
714  * _is_ defined, but /etc/inittab is missing, this 
715  * results in the same set of default behaviors.
716  * */
717 void parse_inittab(void)
718 {
719 #ifdef BB_FEATURE_USE_INITTAB
720         FILE *file;
721         char buf[256], lineAsRead[256], tmpConsole[256];
722         char *p, *q, *r, *s;
723         const struct initActionType *a = actions;
724         int foundIt;
725
726
727         file = fopen(INITTAB, "r");
728         if (file == NULL) {
729                 /* No inittab file -- set up some default behavior */
730 #endif
731                 /* Swapoff on halt/reboot */
732                 new_initAction(CTRLALTDEL, "/sbin/swapoff -a > /dev/null 2>&1", console);
733                 /* Umount all filesystems on halt/reboot */
734                 new_initAction(CTRLALTDEL, "/bin/umount -a -r > /dev/null 2>&1", console);
735                 /* Askfirst shell on tty1 */
736                 new_initAction(ASKFIRST, SHELL, console);
737                 /* Askfirst shell on tty2 */
738                 if (secondConsole != NULL)
739                         new_initAction(ASKFIRST, SHELL, secondConsole);
740                 /* sysinit */
741                 new_initAction(SYSINIT, INIT_SCRIPT, console);
742
743                 return;
744 #ifdef BB_FEATURE_USE_INITTAB
745         }
746
747         while (fgets(buf, 255, file) != NULL) {
748                 foundIt = FALSE;
749                 for (p = buf; *p == ' ' || *p == '\t'; p++);
750                 if (*p == '#' || *p == '\n')
751                         continue;
752
753                 /* Trim the trailing \n */
754                 q = strrchr(p, '\n');
755                 if (q != NULL)
756                         *q = '\0';
757
758                 /* Keep a copy around for posterity's sake (and error msgs) */
759                 strcpy(lineAsRead, buf);
760
761                 /* Grab the ID field */
762                 s = p;
763                 p = strchr(p, ':');
764                 if (p != NULL || *(p + 1) != '\0') {
765                         *p = '\0';
766                         ++p;
767                 }
768
769                 /* Now peel off the process field from the end
770                  * of the string */
771                 q = strrchr(p, ':');
772                 if (q == NULL || *(q + 1) == '\0') {
773                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
774                         continue;
775                 } else {
776                         *q = '\0';
777                         ++q;
778                 }
779
780                 /* Now peel off the action field */
781                 r = strrchr(p, ':');
782                 if (r == NULL || *(r + 1) == '\0') {
783                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
784                         continue;
785                 } else {
786                         ++r;
787                 }
788
789                 /* Ok, now process it */
790                 a = actions;
791                 while (a->name != 0) {
792                         if (strcmp(a->name, r) == 0) {
793                                 if (*s != '\0') {
794                                         struct stat statBuf;
795
796                                         strcpy(tmpConsole, "/dev/");
797                                         strncat(tmpConsole, s, 200);
798                                         if (stat(tmpConsole, &statBuf) != 0) {
799                                                 message(LOG | CONSOLE,
800                                                                 "device '%s' does not exist.  Did you read the directions?\n",
801                                                                 tmpConsole);
802                                                 break;
803                                         }
804                                         s = tmpConsole;
805                                 }
806                                 new_initAction(a->action, q, s);
807                                 foundIt = TRUE;
808                         }
809                         a++;
810                 }
811                 if (foundIt == TRUE)
812                         continue;
813                 else {
814                         /* Choke on an unknown action */
815                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
816                 }
817         }
818         return;
819 #endif /* BB_FEATURE_USE_INITTAB */
820 }
821
822
823
824 extern int init_main(int argc, char **argv)
825 {
826         initAction *a;
827         pid_t wpid;
828         int status;
829
830 #ifndef DEBUG_INIT
831         /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
832         if (getpid() != 1
833 #ifdef BB_FEATURE_LINUXRC
834                         && strstr(argv[0], "linuxrc") == NULL
835 #endif
836                           )
837         {
838                         usage("init\n\nInit is the parent of all processes.\n\n"
839                                   "This version of init is designed to be run only "
840                                   "by the kernel.\n");
841         }
842         /* Set up sig handlers  -- be sure to
843          * clear all of these in run() */
844         signal(SIGUSR1, halt_signal);
845         signal(SIGUSR2, reboot_signal);
846         signal(SIGINT, reboot_signal);
847         signal(SIGTERM, reboot_signal);
848 #if defined BB_FEATURE_INIT_CHROOT
849         signal(SIGHUP, check_chroot);
850 #endif
851
852         /* Turn off rebooting via CTL-ALT-DEL -- we get a 
853          * SIGINT on CAD so we can shut things down gracefully... */
854         reboot(RB_DISABLE_CAD);
855 #endif
856
857         /* Figure out what kernel this is running */
858         kernelVersion = get_kernel_revision();
859
860         /* Figure out where the default console should be */
861         console_init();
862
863         /* Close whatever files are open, and reset the console. */
864         close(0);
865         close(1);
866         close(2);
867         set_term(0);
868         chdir("/");
869         setsid();
870
871         /* Make sure PATH is set to something sane */
872         putenv(_PATH_STDPATH);
873
874         /* Hello world */
875 #ifndef DEBUG_INIT
876         message(
877 #if ! defined BB_FEATURE_EXTRA_QUIET
878                         CONSOLE|
879 #endif
880                         LOG,
881                         "init started:  BusyBox v%s (%s) multi-call binary\r\n",
882                         BB_VER, BB_BT);
883 #else
884         message(
885 #if ! defined BB_FEATURE_EXTRA_QUIET
886                         CONSOLE|
887 #endif
888                         LOG,
889                         "init(%d) started:  BusyBox v%s (%s) multi-call binary\r\n",
890                         getpid(), BB_VER, BB_BT);
891 #endif
892
893
894         /* Make sure there is enough memory to do something useful. */
895         check_memory();
896
897         /* Check if we are supposed to be in single user mode */
898         if (argc > 1 && (!strcmp(argv[1], "single") ||
899                                          !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
900                 /* Ask first then start a shell on tty2 */
901                 if (secondConsole != NULL)
902                         new_initAction(ASKFIRST, SHELL, secondConsole);
903                 /* Start a shell on tty1 */
904                 new_initAction(RESPAWN, SHELL, console);
905         } else {
906                 /* Not in single user mode -- see what inittab says */
907
908                 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
909                  * then parse_inittab() simply adds in some default
910                  * actions(i.e runs INIT_SCRIPT and then starts a pair 
911                  * of "askfirst" shells */
912                 parse_inittab();
913         }
914
915         /* Fix up argv[0] to be certain we claim to be init */
916         strncpy(argv[0], "init", strlen(argv[0])+1);
917         if (argc > 1)
918                 strncpy(argv[1], "\0", strlen(argv[1])+1);
919
920         /* Now run everything that needs to be run */
921
922         /* First run the sysinit command */
923         for (a = initActionList; a; a = a->nextPtr) {
924                 if (a->action == SYSINIT) {
925                         waitfor(a->process, a->console, FALSE);
926                         /* Now remove the "sysinit" entry from the list */
927                         delete_initAction(a);
928                 }
929         }
930         /* Next run anything that wants to block */
931         for (a = initActionList; a; a = a->nextPtr) {
932                 if (a->action == WAIT) {
933                         waitfor(a->process, a->console, FALSE);
934                         /* Now remove the "wait" entry from the list */
935                         delete_initAction(a);
936                 }
937         }
938         /* Next run anything to be run only once */
939         for (a = initActionList; a; a = a->nextPtr) {
940                 if (a->action == ONCE) {
941                         run(a->process, a->console, FALSE);
942                         /* Now remove the "once" entry from the list */
943                         delete_initAction(a);
944                 }
945         }
946         /* If there is nothing else to do, stop */
947         if (initActionList == NULL) {
948                 message(LOG | CONSOLE,
949                                 "No more tasks for init -- sleeping forever.\n");
950                 while (1)
951                         sleep(1);
952         }
953
954         /* Now run the looping stuff for the rest of forever */
955         while (1) {
956                 for (a = initActionList; a; a = a->nextPtr) {
957                         /* Only run stuff with pid==0.  If they have
958                          * a pid, that means they are still running */
959                         if (a->pid == 0) {
960                                 switch (a->action) {
961                                 case RESPAWN:
962                                         /* run the respawn stuff */
963                                         a->pid = run(a->process, a->console, FALSE);
964                                         break;
965                                 case ASKFIRST:
966                                         /* run the askfirst stuff */
967                                         a->pid = run(a->process, a->console, TRUE);
968                                         break;
969                                         /* silence the compiler's incessant whining */
970                                 default:
971                                         break;
972                                 }
973                         }
974                 }
975                 /* Wait for a child process to exit */
976                 wpid = wait(&status);
977                 if (wpid > 0) {
978                         /* Find out who died and clean up their corpse */
979                         for (a = initActionList; a; a = a->nextPtr) {
980                                 if (a->pid == wpid) {
981                                         a->pid = 0;
982                                         message(LOG,
983                                                         "Process '%s' (pid %d) exited.  Scheduling it for restart.\n",
984                                                         a->process, wpid);
985                                 }
986                         }
987                 }
988                 sleep(1);
989         }
990 }
991
992 /*
993 Local Variables:
994 c-file-style: "linux"
995 c-basic-offset: 4
996 tab-width: 4
997 End:
998 */