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