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