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