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