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