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