Fix some formatting
[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 "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("init", 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                         fflush(stderr);
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                         fflush(stderr);
252                         va_end(arguments);
253                 }
254         }
255 }
256
257 /* Set terminal settings to reasonable defaults */
258 void set_term(int fd)
259 {
260         struct termios tty;
261
262         tcgetattr(fd, &tty);
263
264         /* set control chars */
265         tty.c_cc[VINTR]  = 3;   /* C-c */
266         tty.c_cc[VQUIT]  = 28;  /* C-\ */
267         tty.c_cc[VERASE] = 127; /* C-? */
268         tty.c_cc[VKILL]  = 21;  /* C-u */
269         tty.c_cc[VEOF]   = 4;   /* C-d */
270         tty.c_cc[VSTART] = 17;  /* C-q */
271         tty.c_cc[VSTOP]  = 19;  /* C-s */
272         tty.c_cc[VSUSP]  = 26;  /* C-z */
273
274         /* use line dicipline 0 */
275         tty.c_line = 0;
276
277         /* Make it be sane */
278         tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
279         tty.c_cflag |= HUPCL|CLOCAL;
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 pid_t run(char *command, char *terminal, int get_enter)
398 {
399         int i, fd;
400         pid_t pid;
401         char *tmpCmd;
402         char *cmd[255], *cmdpath;
403         char buf[255];
404         static const char press_enter[] =
405
406 #ifdef CUSTOMIZED_BANNER
407 #include CUSTOMIZED_BANNER
408 #endif
409
410                 "\nPlease press Enter to activate this console. ";
411         char *environment[] = {
412                 "HOME=/",
413                 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
414                 "SHELL=/bin/sh",
415                 termType,
416                 "USER=root",
417                 0
418         };
419
420         if ((pid = fork()) == 0) {
421                 /* Clean up */
422                 ioctl(0, TIOCNOTTY, 0);
423                 close(0);
424                 close(1);
425                 close(2);
426                 setsid();
427
428                 /* Reset signal handlers set for parent process */
429                 signal(SIGUSR1, SIG_DFL);
430                 signal(SIGUSR2, SIG_DFL);
431                 signal(SIGINT, SIG_DFL);
432                 signal(SIGTERM, SIG_DFL);
433                 signal(SIGHUP, SIG_DFL);
434
435                 if ((fd = device_open(terminal, O_RDWR)) < 0) {
436                         message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
437                         exit(1);
438                 }
439                 dup2(fd, 0);
440                 dup2(fd, 1);
441                 dup2(fd, 2);
442                 ioctl(0, TIOCSCTTY, 1);
443                 tcsetpgrp(0, getpgrp());
444                 set_term(0);
445
446                 if (get_enter == TRUE) {
447                         /*
448                          * Save memory by not exec-ing anything large (like a shell)
449                          * before the user wants it. This is critical if swap is not
450                          * enabled and the system has low memory. Generally this will
451                          * be run on the second virtual console, and the first will
452                          * be allowed to start a shell or whatever an init script 
453                          * specifies.
454                          */
455 #ifdef DEBUG_INIT
456                         pid_t shell_pgid = getpid();
457                         message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
458                                         command, shell_pgid, terminal);
459 #endif
460                         write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
461                         getc(stdin);
462                 }
463
464 #ifdef DEBUG_INIT
465                 /* Log the process name and args */
466                 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
467                                 shell_pgid, terminal, command);
468 #endif
469
470                 /* See if any special /bin/sh requiring characters are present */
471                 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
472                         cmd[0] = SHELL;
473                         cmd[1] = "-c";
474                         strcpy(buf, "exec ");
475                         strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
476                         cmd[2] = buf;
477                         cmd[3] = NULL;
478                 } else {
479                         /* Convert command (char*) into cmd (char**, one word per string) */
480                         for (tmpCmd = command, i = 0;
481                                  (tmpCmd = strsep(&command, " \t")) != NULL;) {
482                                 if (*tmpCmd != '\0') {
483                                         cmd[i] = tmpCmd;
484                                         tmpCmd++;
485                                         i++;
486                                 }
487                         }
488                         cmd[i] = NULL;
489                 }
490
491                cmdpath = cmd[0];
492
493                /*
494                    Interactive shells want to see a dash in argv[0].  This
495                    typically is handled by login, argv will be setup this 
496                    way if a dash appears at the front of the command path 
497                    (like "-/bin/sh").
498                */
499
500                if (*cmdpath == '-') {
501                        char *s;
502
503                        /* skip over the dash */
504                          ++cmdpath;
505
506                        /* find the last component in the command pathname */
507                                                  s = get_last_path_component(cmdpath);
508
509                        /* make a new argv[0] */
510                        if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
511                                message(LOG | CONSOLE, "malloc failed");
512                                cmd[0] = cmdpath;
513                        } else {
514                                cmd[0][0] = '-';
515                                strcpy(cmd[0]+1, s);
516                        }
517                }
518
519 #if defined BB_FEATURE_INIT_COREDUMPS
520                 {
521                         struct stat sb;
522                         if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
523                                 struct rlimit limit;
524                                 limit.rlim_cur = RLIM_INFINITY;
525                                 limit.rlim_max = RLIM_INFINITY;
526                                 setrlimit(RLIMIT_CORE, &limit);
527                         }
528                 }
529 #endif
530
531                 /* Now run it.  The new program will take over this PID, 
532                  * so nothing further in init.c should be run. */
533                 execve(cmdpath, cmd, environment);
534
535                 /* We're still here?  Some error happened. */
536                 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmdpath,
537                                 strerror(errno));
538                 exit(-1);
539         }
540         return pid;
541 }
542
543 static int waitfor(char *command, char *terminal, int get_enter)
544 {
545         int status, wpid;
546         int pid = run(command, terminal, get_enter);
547
548         while (1) {
549                 wpid = wait(&status);
550                 if (wpid > 0 && wpid != pid) {
551                         continue;
552                 }
553                 if (wpid == pid)
554                         break;
555         }
556         return wpid;
557 }
558
559 /* Make sure there is enough memory to do something useful. *
560  * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
561 static void check_memory()
562 {
563         struct stat statBuf;
564
565         if (check_free_memory() > 1000)
566                 return;
567
568         if (stat("/etc/fstab", &statBuf) == 0) {
569                 /* swapon -a requires /proc typically */
570                 waitfor("mount proc /proc -t proc", console, FALSE);
571                 /* Try to turn on swap */
572                 waitfor("swapon -a", console, FALSE);
573                 if (check_free_memory() < 1000)
574                         goto goodnight;
575         } else
576                 goto goodnight;
577         return;
578
579   goodnight:
580         message(CONSOLE,
581                         "Sorry, your computer does not have enough memory.\r\n");
582         while (1)
583                 sleep(1);
584 }
585
586 /* Run all commands to be run right before halt/reboot */
587 static void run_lastAction(void)
588 {
589         initAction *a;
590         for (a = initActionList; a; a = a->nextPtr) {
591                 if (a->action == CTRLALTDEL) {
592                         waitfor(a->process, a->console, FALSE);
593                         delete_initAction(a);
594                 }
595         }
596 }
597
598
599 #ifndef DEBUG_INIT
600 static void shutdown_system(void)
601 {
602
603         /* first disable our SIGHUP signal */
604         signal(SIGHUP, SIG_DFL);
605
606         /* Allow Ctrl-Alt-Del to reboot system. */
607         init_reboot(RB_ENABLE_CAD);
608
609         message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
610         sync();
611
612         /* Send signals to every process _except_ pid 1 */
613         message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
614         kill(-1, SIGTERM);
615         sleep(1);
616         sync();
617
618         message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
619         kill(-1, SIGKILL);
620         sleep(1);
621
622         /* run everything to be run at "ctrlaltdel" */
623         run_lastAction();
624
625         sync();
626         if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
627                 /* bdflush, kupdate not needed for kernels >2.2.11 */
628                 bdflush(1, 0);
629                 sync();
630         }
631 }
632
633 static void halt_signal(int sig)
634 {
635         shutdown_system();
636         message(CONSOLE|LOG,
637                         "The system is halted. Press %s or turn off power\r\n",
638                         (secondConsole == NULL) /* serial console */
639                         ? "Reset" : "CTRL-ALT-DEL");
640         sync();
641
642         /* allow time for last message to reach serial console */
643         sleep(2);
644
645         if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
646                 init_reboot(RB_POWER_OFF);
647         else
648                 init_reboot(RB_HALT_SYSTEM);
649         exit(0);
650 }
651
652 static void reboot_signal(int sig)
653 {
654         shutdown_system();
655         message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
656         sync();
657
658         /* allow time for last message to reach serial console */
659         sleep(2);
660
661         init_reboot(RB_AUTOBOOT);
662         exit(0);
663 }
664
665 #if defined BB_FEATURE_INIT_CHROOT
666
667 #warning BB_FEATURE_INIT_CHROOT is out of date and should be rewritten to us
668 #warning pivot root instead.  Do not even bother till this work is done...
669 #warning You have been warned.
670
671 #if ! defined BB_FEATURE_USE_PROCFS
672 #error Sorry, I depend on the /proc filesystem right now.
673 #endif
674
675 static void check_chroot(int sig)
676 {
677         char *argv_init[2] = { "init", NULL, };
678         char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
679         char rootpath[256], *tc;
680         int fd;
681
682         if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
683                 message(CONSOLE,
684                                 "SIGHUP recived, but could not open proc file\r\n");
685                 sleep(2);
686                 return;
687         }
688         if (read(fd, rootpath, sizeof(rootpath)) == -1) {
689                 message(CONSOLE,
690                                 "SIGHUP recived, but could not read proc file\r\n");
691                 sleep(2);
692                 return;
693         }
694         close(fd);
695
696         if (rootpath[0] == '\0') {
697                 message(CONSOLE,
698                                 "SIGHUP recived, but new root is not valid: %s\r\n",
699                                 rootpath);
700                 sleep(2);
701                 return;
702         }
703
704         tc = strrchr(rootpath, '\n');
705         *tc = '\0';
706
707         /* Ok, making it this far means we commit */
708         message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
709                         rootpath);
710
711         /* kill all other programs first */
712         message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
713         kill(-1, SIGTERM);
714         sleep(2);
715         sync();
716
717         message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
718         kill(-1, SIGKILL);
719         sleep(2);
720         sync();
721
722         /* ok, we don't need /proc anymore. we also assume that the signaling
723          * process left the rest of the filesystems alone for us */
724         umount("/proc");
725
726         /* Ok, now we chroot. Hopefully we only have two things mounted, the
727          * new chroot'd mount point, and the old "/" mount. s,
728          * we go ahead and unmount the old "/". This should trigger the kernel
729          * to set things up the Right Way(tm). */
730
731         if (!chroot(rootpath))
732                 umount("/dev/root");
733
734         /* If the chroot fails, we are already too far to turn back, so we
735          * continue and hope that executing init below will revive the system */
736
737         /* close all of our descriptors and open new ones */
738         close(0);
739         close(1);
740         close(2);
741         open("/dev/console", O_RDWR, 0);
742         dup(0);
743         dup(0);
744
745         message(CONSOLE, "Executing real init...\r\n");
746         /* execute init in the (hopefully) new root */
747         execve("/sbin/init", argv_init, envp_init);
748
749         message(CONSOLE,
750                         "ERROR: Could not exec new init. Press %s to reboot.\r\n",
751                         (secondConsole == NULL) /* serial console */
752                         ? "Reset" : "CTRL-ALT-DEL");
753         return;
754 }
755 #endif                                                  /* BB_FEATURE_INIT_CHROOT */
756
757 #endif                                                  /* ! DEBUG_INIT */
758
759 void new_initAction(initActionEnum action, char *process, char *cons)
760 {
761         initAction *newAction;
762
763         if (*cons == '\0')
764                 cons = console;
765
766         /* If BusyBox detects that a serial console is in use, 
767          * then entries not refering to the console or null devices will _not_ be run.
768          * The exception to this rule is the null device.
769          */
770         if (secondConsole == NULL && strcmp(cons, console)
771                 && strcmp(cons, "/dev/null"))
772                 return;
773
774         newAction = calloc((size_t) (1), sizeof(initAction));
775         if (!newAction) {
776                 message(LOG | CONSOLE, "Memory allocation failure\n");
777                 while (1)
778                         sleep(1);
779         }
780         newAction->nextPtr = initActionList;
781         initActionList = newAction;
782         strncpy(newAction->process, process, 255);
783         newAction->action = action;
784         strncpy(newAction->console, cons, 255);
785         newAction->pid = 0;
786 //    message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
787 //      newAction->process, newAction->action, newAction->console);
788 }
789
790 static void delete_initAction(initAction * action)
791 {
792         initAction *a, *b = NULL;
793
794         for (a = initActionList; a; b = a, a = a->nextPtr) {
795                 if (a == action) {
796                         if (b == NULL) {
797                                 initActionList = a->nextPtr;
798                         } else {
799                                 b->nextPtr = a->nextPtr;
800                         }
801                         free(a);
802                         break;
803                 }
804         }
805 }
806
807 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
808  * then parse_inittab() simply adds in some default
809  * actions(i.e runs INIT_SCRIPT and then starts a pair 
810  * of "askfirst" shells).  If BB_FEATURE_USE_INITTAB 
811  * _is_ defined, but /etc/inittab is missing, this 
812  * results in the same set of default behaviors.
813  * */
814 void parse_inittab(void)
815 {
816 #ifdef BB_FEATURE_USE_INITTAB
817         FILE *file;
818         char buf[256], lineAsRead[256], tmpConsole[256];
819         char *id, *runlev, *action, *process, *eol;
820         const struct initActionType *a = actions;
821         int foundIt;
822
823
824         file = fopen(INITTAB, "r");
825         if (file == NULL) {
826                 /* No inittab file -- set up some default behavior */
827 #endif
828                 /* Swapoff on halt/reboot */
829                 new_initAction(CTRLALTDEL, "/sbin/swapoff -a", console);
830                 /* Umount all filesystems on halt/reboot */
831                 new_initAction(CTRLALTDEL, "/bin/umount -a -r", console);
832                 /* Askfirst shell on tty1 */
833                 new_initAction(ASKFIRST, SHELL, console);
834                 /* Askfirst shell on tty2 */
835                 if (secondConsole != NULL)
836                         new_initAction(ASKFIRST, SHELL, secondConsole);
837                 /* Askfirst shell on tty3 */
838                 if (thirdConsole != NULL)
839                         new_initAction(ASKFIRST, SHELL, thirdConsole);
840                 /* Askfirst shell on tty4 */
841                 if (fourthConsole != NULL)
842                         new_initAction(ASKFIRST, SHELL, fourthConsole);
843                 /* sysinit */
844                 new_initAction(SYSINIT, INIT_SCRIPT, console);
845
846                 return;
847 #ifdef BB_FEATURE_USE_INITTAB
848         }
849
850         while (fgets(buf, 255, file) != NULL) {
851                 foundIt = FALSE;
852                 /* Skip leading spaces */
853                 for (id = buf; *id == ' ' || *id == '\t'; id++);
854
855                 /* Skip the line if it's a comment */
856                 if (*id == '#' || *id == '\n')
857                         continue;
858
859                 /* Trim the trailing \n */
860                 eol = strrchr(id, '\n');
861                 if (eol != NULL)
862                         *eol = '\0';
863
864                 /* Keep a copy around for posterity's sake (and error msgs) */
865                 strcpy(lineAsRead, buf);
866
867                 /* Separate the ID field from the runlevels */
868                 runlev = strchr(id, ':');
869                 if (runlev == NULL || *(runlev + 1) == '\0') {
870                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
871                         continue;
872                 } else {
873                         *runlev = '\0';
874                         ++runlev;
875                 }
876
877                 /* Separate the runlevels from the action */
878                 action = strchr(runlev, ':');
879                 if (action == NULL || *(action + 1) == '\0') {
880                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
881                         continue;
882                 } else {
883                         *action = '\0';
884                         ++action;
885                 }
886
887                 /* Separate the action from the process */
888                 process = strchr(action, ':');
889                 if (process == NULL || *(process + 1) == '\0') {
890                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
891                         continue;
892                 } else {
893                         *process = '\0';
894                         ++process;
895                 }
896
897                 /* Ok, now process it */
898                 a = actions;
899                 while (a->name != 0) {
900                         if (strcmp(a->name, action) == 0) {
901                                 if (*id != '\0') {
902                                         struct stat statBuf;
903
904                                         strcpy(tmpConsole, "/dev/");
905                                         strncat(tmpConsole, id, 200);
906                                         if (stat(tmpConsole, &statBuf) != 0) {
907                                                 message(LOG | CONSOLE,
908                                                                 "device '%s' does not exist.  Did you read the directions?\n",
909                                                                 tmpConsole);
910                                                 break;
911                                         }
912                                         id = tmpConsole;
913                                 }
914                                 new_initAction(a->action, process, id);
915                                 foundIt = TRUE;
916                         }
917                         a++;
918                 }
919                 if (foundIt == TRUE)
920                         continue;
921                 else {
922                         /* Choke on an unknown action */
923                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
924                 }
925         }
926         return;
927 #endif /* BB_FEATURE_USE_INITTAB */
928 }
929
930
931
932 extern int init_main(int argc, char **argv)
933 {
934         initAction *a;
935         pid_t wpid;
936         int status;
937
938 #ifndef DEBUG_INIT
939         /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
940         if (getpid() != 1
941 #ifdef BB_FEATURE_LINUXRC
942                         && strstr(applet_name, "linuxrc") == NULL
943 #endif
944                           )
945         {
946                         usage("init\n\nInit is the parent of all processes.\n\n"
947                                   "This version of init is designed to be run only "
948                                   "by the kernel.\n");
949         }
950         /* Set up sig handlers  -- be sure to
951          * clear all of these in run() */
952         signal(SIGUSR1, halt_signal);
953         signal(SIGUSR2, halt_signal);
954         signal(SIGINT, reboot_signal);
955         signal(SIGTERM, reboot_signal);
956 #if defined BB_FEATURE_INIT_CHROOT
957         signal(SIGHUP, check_chroot);
958 #endif
959
960         /* Turn off rebooting via CTL-ALT-DEL -- we get a 
961          * SIGINT on CAD so we can shut things down gracefully... */
962         init_reboot(RB_DISABLE_CAD);
963 #endif
964
965         /* Figure out what kernel this is running */
966         kernelVersion = get_kernel_revision();
967
968         /* Figure out where the default console should be */
969         console_init();
970
971         /* Close whatever files are open, and reset the console. */
972         close(0);
973         close(1);
974         close(2);
975         set_term(0);
976         chdir("/");
977         setsid();
978
979         /* Make sure PATH is set to something sane */
980         putenv(_PATH_STDPATH);
981
982         /* Hello world */
983 #ifndef DEBUG_INIT
984         message(
985 #if ! defined BB_FEATURE_EXTRA_QUIET
986                         CONSOLE|
987 #endif
988                         LOG,
989                         "init started:  %s\r\n", full_version);
990 #else
991         message(
992 #if ! defined BB_FEATURE_EXTRA_QUIET
993                         CONSOLE|
994 #endif
995                         LOG,
996                         "init(%d) started:  %s\r\n", getpid(), full_version);
997 #endif
998
999
1000         /* Make sure there is enough memory to do something useful. */
1001         check_memory();
1002
1003         /* Check if we are supposed to be in single user mode */
1004         if (argc > 1 && (!strcmp(argv[1], "single") ||
1005                                          !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
1006                 /* Ask first then start a shell on tty2-4 */
1007                 if (secondConsole != NULL)
1008                         new_initAction(ASKFIRST, SHELL, secondConsole);
1009                 if (thirdConsole != NULL)
1010                         new_initAction(ASKFIRST, SHELL, thirdConsole);
1011                 if (fourthConsole != NULL)
1012                         new_initAction(ASKFIRST, SHELL, fourthConsole);
1013                 /* Start a shell on tty1 */
1014                 new_initAction(RESPAWN, SHELL, console);
1015         } else {
1016                 /* Not in single user mode -- see what inittab says */
1017
1018                 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
1019                  * then parse_inittab() simply adds in some default
1020                  * actions(i.e runs INIT_SCRIPT and then starts a pair 
1021                  * of "askfirst" shells */
1022                 parse_inittab();
1023         }
1024
1025         /* Fix up argv[0] to be certain we claim to be init */
1026         argv[0]="init";
1027
1028         if (argc > 1)
1029                 strncpy(argv[1], "\0", strlen(argv[1])+1);
1030
1031         /* Now run everything that needs to be run */
1032
1033         /* First run the sysinit command */
1034         for (a = initActionList; a; a = a->nextPtr) {
1035                 if (a->action == SYSINIT) {
1036                         waitfor(a->process, a->console, FALSE);
1037                         /* Now remove the "sysinit" entry from the list */
1038                         delete_initAction(a);
1039                 }
1040         }
1041         /* Next run anything that wants to block */
1042         for (a = initActionList; a; a = a->nextPtr) {
1043                 if (a->action == WAIT) {
1044                         waitfor(a->process, a->console, FALSE);
1045                         /* Now remove the "wait" entry from the list */
1046                         delete_initAction(a);
1047                 }
1048         }
1049         /* Next run anything to be run only once */
1050         for (a = initActionList; a; a = a->nextPtr) {
1051                 if (a->action == ONCE) {
1052                         run(a->process, a->console, FALSE);
1053                         /* Now remove the "once" entry from the list */
1054                         delete_initAction(a);
1055                 }
1056         }
1057         /* If there is nothing else to do, stop */
1058         if (initActionList == NULL) {
1059                 message(LOG | CONSOLE,
1060                                 "No more tasks for init -- sleeping forever.\n");
1061                 while (1)
1062                         sleep(1);
1063         }
1064
1065         /* Now run the looping stuff for the rest of forever */
1066         while (1) {
1067                 for (a = initActionList; a; a = a->nextPtr) {
1068                         /* Only run stuff with pid==0.  If they have
1069                          * a pid, that means they are still running */
1070                         if (a->pid == 0) {
1071                                 switch (a->action) {
1072                                 case RESPAWN:
1073                                         /* run the respawn stuff */
1074                                         a->pid = run(a->process, a->console, FALSE);
1075                                         break;
1076                                 case ASKFIRST:
1077                                         /* run the askfirst stuff */
1078                                         a->pid = run(a->process, a->console, TRUE);
1079                                         break;
1080                                         /* silence the compiler's incessant whining */
1081                                 default:
1082                                         break;
1083                                 }
1084                         }
1085                 }
1086                 /* Wait for a child process to exit */
1087                 wpid = wait(&status);
1088                 if (wpid > 0) {
1089                         /* Find out who died and clean up their corpse */
1090                         for (a = initActionList; a; a = a->nextPtr) {
1091                                 if (a->pid == wpid) {
1092                                         a->pid = 0;
1093                                         message(LOG,
1094                                                         "Process '%s' (pid %d) exited.  Scheduling it for restart.\n",
1095                                                         a->process, wpid);
1096                                 }
1097                         }
1098                 }
1099                 sleep(1);
1100         }
1101 }
1102
1103 /*
1104 Local Variables:
1105 c-file-style: "linux"
1106 c-basic-offset: 4
1107 tab-width: 4
1108 End:
1109 */