Renamed "internal.h" to the more sensible "busybox.h".
[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 <sys/fcntl.h>
41 #include <sys/ioctl.h>
42 #include <sys/mount.h>
43 #include <sys/types.h>
44 #include <sys/wait.h>
45 #ifdef BB_SYSLOGD
46 # include <sys/syslog.h>
47 #endif
48
49 #define bb_need_full_version
50 #define BB_DECLARE_EXTERN
51 #include "messages.c"
52
53 /* From <linux/vt.h> */
54 struct vt_stat {
55         unsigned short v_active;        /* active vt */
56         unsigned short v_signal;        /* signal to send */
57         unsigned short v_state;         /* vt bitmask */
58 };
59 #define VT_GETSTATE     0x5603  /* get global vt state info */
60
61 /* From <linux/serial.h> */
62 struct serial_struct {
63         int     type;
64         int     line;
65         int     port;
66         int     irq;
67         int     flags;
68         int     xmit_fifo_size;
69         int     custom_divisor;
70         int     baud_base;
71         unsigned short  close_delay;
72         char    reserved_char[2];
73         int     hub6;
74         unsigned short  closing_wait; /* time to wait before closing */
75         unsigned short  closing_wait2; /* no longer used... */
76         int     reserved[4];
77 };
78
79
80
81 #ifndef RB_HALT_SYSTEM
82 #define RB_HALT_SYSTEM  0xcdef0123
83 #define RB_ENABLE_CAD   0x89abcdef
84 #define RB_DISABLE_CAD  0
85 #define RB_POWER_OFF    0x4321fedc
86 #define RB_AUTOBOOT     0x01234567
87 #if defined(__GLIBC__)
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 #endif
94
95 #ifndef _PATH_STDPATH
96 #define _PATH_STDPATH   "/usr/bin:/bin:/usr/sbin:/sbin"
97 #endif
98
99
100 #if defined BB_FEATURE_INIT_COREDUMPS
101 /*
102  * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called 
103  * before processes are spawned to set core file size as unlimited.
104  * This is for debugging only.  Don't use this is production, unless
105  * you want core dumps lying about....
106  */
107 #define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
108 #include <sys/resource.h>
109 #include <sys/time.h>
110 #endif
111
112 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
113
114 #if defined(__GLIBC__)
115 #include <sys/kdaemon.h>
116 #else
117 static _syscall2(int, bdflush, int, func, int, data);
118 #endif                                                  /* __GLIBC__ */
119
120
121 #define VT_PRIMARY   "/dev/tty1"     /* Primary virtual console */
122 #define VT_SECONDARY "/dev/tty2"     /* Virtual console */
123 #define VT_THIRD     "/dev/tty3"     /* Virtual console */
124 #define VT_FOURTH    "/dev/tty4"     /* Virtual console */
125 #define VT_LOG       "/dev/tty5"     /* Virtual console */
126 #define SERIAL_CON0  "/dev/ttyS0"    /* Primary serial console */
127 #define SERIAL_CON1  "/dev/ttyS1"    /* Serial console */
128 #define SHELL        "-/bin/sh"      /* Default shell */
129 #define INITTAB      "/etc/inittab"  /* inittab file location */
130 #ifndef INIT_SCRIPT
131 #define INIT_SCRIPT  "/etc/init.d/rcS"   /* Default sysinit script. */
132 #endif
133
134 #define LOG     0x1
135 #define CONSOLE 0x2
136
137 /* Allowed init action types */
138 typedef enum {
139         SYSINIT = 1,
140         RESPAWN,
141         ASKFIRST,
142         WAIT,
143         ONCE,
144         CTRLALTDEL
145 } initActionEnum;
146
147 /* A mapping between "inittab" action name strings and action type codes. */
148 typedef struct initActionType {
149         const char *name;
150         initActionEnum action;
151 } initActionType;
152
153 static const struct initActionType actions[] = {
154         {"sysinit", SYSINIT},
155         {"respawn", RESPAWN},
156         {"askfirst", ASKFIRST},
157         {"wait", WAIT},
158         {"once", ONCE},
159         {"ctrlaltdel", CTRLALTDEL},
160         {0, 0}
161 };
162
163 /* Set up a linked list of initActions, to be read from inittab */
164 typedef struct initActionTag initAction;
165 struct initActionTag {
166         pid_t pid;
167         char process[256];
168         char console[256];
169         initAction *nextPtr;
170         initActionEnum action;
171 };
172 initAction *initActionList = NULL;
173
174
175 static char *secondConsole = VT_SECONDARY;
176 static char *thirdConsole  = VT_THIRD;
177 static char *fourthConsole = VT_FOURTH;
178 static char *log           = VT_LOG;
179 static int  kernelVersion  = 0;
180 static char termType[32]   = "TERM=linux";
181 static char console[32]    = _PATH_CONSOLE;
182
183 static void delete_initAction(initAction * action);
184
185
186 /* Print a message to the specified device.
187  * Device may be bitwise-or'd from LOG | CONSOLE */
188 static void message(int device, char *fmt, ...)
189                    __attribute__ ((format (printf, 2, 3)));
190 static void message(int device, char *fmt, ...)
191 {
192         va_list arguments;
193         int fd;
194
195 #ifdef BB_SYSLOGD
196
197         /* Log the message to syslogd */
198         if (device & LOG) {
199                 char msg[1024];
200
201                 va_start(arguments, fmt);
202                 vsnprintf(msg, sizeof(msg), fmt, arguments);
203                 va_end(arguments);
204                 openlog("init", 0, LOG_USER);
205                 syslog(LOG_USER|LOG_INFO, msg);
206                 closelog();
207         }
208 #else
209         static int log_fd = -1;
210
211         /* Take full control of the log tty, and never close it.
212          * It's mine, all mine!  Muhahahaha! */
213         if (log_fd < 0) {
214                 if (log == NULL) {
215                         /* don't even try to log, because there is no such console */
216                         log_fd = -2;
217                         /* log to main console instead */
218                         device = CONSOLE;
219                 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
220                         log_fd = -2;
221                         fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
222                         fflush(stderr);
223                         log = NULL;
224                         device = CONSOLE;
225                 }
226         }
227         if ((device & LOG) && (log_fd >= 0)) {
228                 va_start(arguments, fmt);
229                 vdprintf(log_fd, fmt, arguments);
230                 va_end(arguments);
231         }
232 #endif
233
234         if (device & CONSOLE) {
235                 /* Always send console messages to /dev/console so people will see them. */
236                 if (
237                         (fd =
238                          device_open(_PATH_CONSOLE,
239                                                  O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
240                         va_start(arguments, fmt);
241                         vdprintf(fd, fmt, arguments);
242                         va_end(arguments);
243                         close(fd);
244                 } else {
245                         fprintf(stderr, "Bummer, can't print: ");
246                         va_start(arguments, fmt);
247                         vfprintf(stderr, fmt, arguments);
248                         fflush(stderr);
249                         va_end(arguments);
250                 }
251         }
252 }
253
254 /* Set terminal settings to reasonable defaults */
255 void set_term(int fd)
256 {
257         struct termios tty;
258
259         tcgetattr(fd, &tty);
260
261         /* set control chars */
262         tty.c_cc[VINTR]  = 3;   /* C-c */
263         tty.c_cc[VQUIT]  = 28;  /* C-\ */
264         tty.c_cc[VERASE] = 127; /* C-? */
265         tty.c_cc[VKILL]  = 21;  /* C-u */
266         tty.c_cc[VEOF]   = 4;   /* C-d */
267         tty.c_cc[VSTART] = 17;  /* C-q */
268         tty.c_cc[VSTOP]  = 19;  /* C-s */
269         tty.c_cc[VSUSP]  = 26;  /* C-z */
270
271         /* use line dicipline 0 */
272         tty.c_line = 0;
273
274         /* Make it be sane */
275         tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
276         tty.c_cflag |= HUPCL|CLOCAL;
277
278         /* input modes */
279         tty.c_iflag = ICRNL | IXON | IXOFF;
280
281         /* output modes */
282         tty.c_oflag = OPOST | ONLCR;
283
284         /* local modes */
285         tty.c_lflag =
286                 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
287
288         tcsetattr(fd, TCSANOW, &tty);
289 }
290
291 /* How much memory does this machine have? */
292 static int check_free_memory()
293 {
294         struct sysinfo info;
295
296         /* Pre initialize mem_unit in case this kernel is something prior to
297          * the linux 2.4 kernel (which will actually fill in mem_unit... */
298         sysinfo(&info);
299         if (sysinfo(&info) != 0) {
300                 printf("Error checking free memory: %s\n", strerror(errno));
301                 return -1;
302         }
303         /* Kernels prior to 2.4.x will return info.mem_unit==0, so cope... */
304         if (info.mem_unit==0) {
305                 info.mem_unit=1;
306         }
307         info.mem_unit*=1024;
308         
309         /* Note:  These values can in theory overflow a 32 bit unsigned long (i.e.
310          * mem >=  Gib), but who puts more then 4GiB ram+swap on an embedded
311          * system? */
312         info.totalram/=info.mem_unit; 
313         info.totalswap/=info.mem_unit;
314         return(info.totalram+info.totalswap);
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                 "\nPlease press Enter to activate this console. ";
407         char *environment[] = {
408                 "HOME=/",
409                 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
410                 "SHELL=/bin/sh",
411                 termType,
412                 "USER=root",
413                 0
414         };
415
416         if ((pid = fork()) == 0) {
417                 /* Clean up */
418                 ioctl(0, TIOCNOTTY, 0);
419                 close(0);
420                 close(1);
421                 close(2);
422                 setsid();
423
424                 /* Reset signal handlers set for parent process */
425                 signal(SIGUSR1, SIG_DFL);
426                 signal(SIGUSR2, SIG_DFL);
427                 signal(SIGINT, SIG_DFL);
428                 signal(SIGTERM, SIG_DFL);
429                 signal(SIGHUP, SIG_DFL);
430
431                 if ((fd = device_open(terminal, O_RDWR)) < 0) {
432                         message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
433                         exit(1);
434                 }
435                 dup2(fd, 0);
436                 dup2(fd, 1);
437                 dup2(fd, 2);
438                 ioctl(0, TIOCSCTTY, 1);
439                 tcsetpgrp(0, getpgrp());
440                 set_term(0);
441
442                 if (get_enter == TRUE) {
443                         /*
444                          * Save memory by not exec-ing anything large (like a shell)
445                          * before the user wants it. This is critical if swap is not
446                          * enabled and the system has low memory. Generally this will
447                          * be run on the second virtual console, and the first will
448                          * be allowed to start a shell or whatever an init script 
449                          * specifies.
450                          */
451 #ifdef DEBUG_INIT
452                         pid_t shell_pgid = getpid();
453                         message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
454                                         command, shell_pgid, terminal);
455 #endif
456                         write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
457                         getc(stdin);
458                 }
459
460 #ifdef DEBUG_INIT
461                 /* Log the process name and args */
462                 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
463                                 shell_pgid, terminal, command);
464 #endif
465
466                 /* See if any special /bin/sh requiring characters are present */
467                 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
468                         cmd[0] = SHELL;
469                         cmd[1] = "-c";
470                         strcpy(buf, "exec ");
471                         strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
472                         cmd[2] = buf;
473                         cmd[3] = NULL;
474                 } else {
475                         /* Convert command (char*) into cmd (char**, one word per string) */
476                         for (tmpCmd = command, i = 0;
477                                  (tmpCmd = strsep(&command, " \t")) != NULL;) {
478                                 if (*tmpCmd != '\0') {
479                                         cmd[i] = tmpCmd;
480                                         tmpCmd++;
481                                         i++;
482                                 }
483                         }
484                         cmd[i] = NULL;
485                 }
486
487                cmdpath = cmd[0];
488
489                /*
490                    Interactive shells want to see a dash in argv[0].  This
491                    typically is handled by login, argv will be setup this 
492                    way if a dash appears at the front of the command path 
493                    (like "-/bin/sh").
494                */
495
496                if (*cmdpath == '-') {
497                        char *s;
498
499                        /* skip over the dash */
500                          ++cmdpath;
501
502                        /* find the last component in the command pathname */
503                                                  s = get_last_path_component(cmdpath);
504
505                        /* make a new argv[0] */
506                        if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
507                                message(LOG | CONSOLE, "malloc failed");
508                                cmd[0] = cmdpath;
509                        } else {
510                                cmd[0][0] = '-';
511                                strcpy(cmd[0]+1, s);
512                        }
513                }
514
515 #if defined BB_FEATURE_INIT_COREDUMPS
516                 {
517                         struct stat sb;
518                         if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
519                                 struct rlimit limit;
520                                 limit.rlim_cur = RLIM_INFINITY;
521                                 limit.rlim_max = RLIM_INFINITY;
522                                 setrlimit(RLIMIT_CORE, &limit);
523                         }
524                 }
525 #endif
526
527                 /* Now run it.  The new program will take over this PID, 
528                  * so nothing further in init.c should be run. */
529                 execve(cmdpath, cmd, environment);
530
531                 /* We're still here?  Some error happened. */
532                 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmdpath,
533                                 strerror(errno));
534                 exit(-1);
535         }
536         return pid;
537 }
538
539 static int waitfor(char *command, char *terminal, int get_enter)
540 {
541         int status, wpid;
542         int pid = run(command, terminal, get_enter);
543
544         while (1) {
545                 wpid = wait(&status);
546                 if (wpid > 0 && wpid != pid) {
547                         continue;
548                 }
549                 if (wpid == pid)
550                         break;
551         }
552         return wpid;
553 }
554
555 /* Make sure there is enough memory to do something useful. *
556  * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
557 static void check_memory()
558 {
559         struct stat statBuf;
560
561         if (check_free_memory() > 1000)
562                 return;
563
564         if (stat("/etc/fstab", &statBuf) == 0) {
565                 /* swapon -a requires /proc typically */
566                 waitfor("mount proc /proc -t proc", console, FALSE);
567                 /* Try to turn on swap */
568                 waitfor("swapon -a", console, FALSE);
569                 if (check_free_memory() < 1000)
570                         goto goodnight;
571         } else
572                 goto goodnight;
573         return;
574
575   goodnight:
576         message(CONSOLE,
577                         "Sorry, your computer does not have enough memory.\r\n");
578         while (1)
579                 sleep(1);
580 }
581
582 /* Run all commands to be run right before halt/reboot */
583 static void run_lastAction(void)
584 {
585         initAction *a;
586         for (a = initActionList; a; a = a->nextPtr) {
587                 if (a->action == CTRLALTDEL) {
588                         waitfor(a->process, a->console, FALSE);
589                         delete_initAction(a);
590                 }
591         }
592 }
593
594
595 #ifndef DEBUG_INIT
596 static void shutdown_system(void)
597 {
598
599         /* first disable our SIGHUP signal */
600         signal(SIGHUP, SIG_DFL);
601
602         /* Allow Ctrl-Alt-Del to reboot system. */
603         init_reboot(RB_ENABLE_CAD);
604
605         message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
606         sync();
607
608         /* Send signals to every process _except_ pid 1 */
609         message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
610         kill(-1, SIGTERM);
611         sleep(1);
612         sync();
613
614         message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
615         kill(-1, SIGKILL);
616         sleep(1);
617
618         /* run everything to be run at "ctrlaltdel" */
619         run_lastAction();
620
621         sync();
622         if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
623                 /* bdflush, kupdate not needed for kernels >2.2.11 */
624                 bdflush(1, 0);
625                 sync();
626         }
627 }
628
629 static void halt_signal(int sig)
630 {
631         shutdown_system();
632         message(CONSOLE|LOG,
633                         "The system is halted. Press %s or turn off power\r\n",
634                         (secondConsole == NULL) /* serial console */
635                         ? "Reset" : "CTRL-ALT-DEL");
636         sync();
637
638         /* allow time for last message to reach serial console */
639         sleep(2);
640
641         if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
642                 init_reboot(RB_POWER_OFF);
643         else
644                 init_reboot(RB_HALT_SYSTEM);
645         exit(0);
646 }
647
648 static void reboot_signal(int sig)
649 {
650         shutdown_system();
651         message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
652         sync();
653
654         /* allow time for last message to reach serial console */
655         sleep(2);
656
657         init_reboot(RB_AUTOBOOT);
658         exit(0);
659 }
660
661 #if defined BB_FEATURE_INIT_CHROOT
662
663 #if ! defined BB_FEATURE_USE_PROCFS
664 #error Sorry, I depend on the /proc filesystem right now.
665 #endif
666
667 static void check_chroot(int sig)
668 {
669         char *argv_init[2] = { "init", NULL, };
670         char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
671         char rootpath[256], *tc;
672         int fd;
673
674         if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
675                 message(CONSOLE,
676                                 "SIGHUP recived, but could not open proc file\r\n");
677                 sleep(2);
678                 return;
679         }
680         if (read(fd, rootpath, sizeof(rootpath)) == -1) {
681                 message(CONSOLE,
682                                 "SIGHUP recived, but could not read proc file\r\n");
683                 sleep(2);
684                 return;
685         }
686         close(fd);
687
688         if (rootpath[0] == '\0') {
689                 message(CONSOLE,
690                                 "SIGHUP recived, but new root is not valid: %s\r\n",
691                                 rootpath);
692                 sleep(2);
693                 return;
694         }
695
696         tc = strrchr(rootpath, '\n');
697         *tc = '\0';
698
699         /* Ok, making it this far means we commit */
700         message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
701                         rootpath);
702
703         /* kill all other programs first */
704         message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
705         kill(-1, SIGTERM);
706         sleep(2);
707         sync();
708
709         message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
710         kill(-1, SIGKILL);
711         sleep(2);
712         sync();
713
714         /* ok, we don't need /proc anymore. we also assume that the signaling
715          * process left the rest of the filesystems alone for us */
716         umount("/proc");
717
718         /* Ok, now we chroot. Hopefully we only have two things mounted, the
719          * new chroot'd mount point, and the old "/" mount. s,
720          * we go ahead and unmount the old "/". This should trigger the kernel
721          * to set things up the Right Way(tm). */
722
723         if (!chroot(rootpath))
724                 umount("/dev/root");
725
726         /* If the chroot fails, we are already too far to turn back, so we
727          * continue and hope that executing init below will revive the system */
728
729         /* close all of our descriptors and open new ones */
730         close(0);
731         close(1);
732         close(2);
733         open("/dev/console", O_RDWR, 0);
734         dup(0);
735         dup(0);
736
737         message(CONSOLE, "Executing real init...\r\n");
738         /* execute init in the (hopefully) new root */
739         execve("/sbin/init", argv_init, envp_init);
740
741         message(CONSOLE,
742                         "ERROR: Could not exec new init. Press %s to reboot.\r\n",
743                         (secondConsole == NULL) /* serial console */
744                         ? "Reset" : "CTRL-ALT-DEL");
745         return;
746 }
747 #endif                                                  /* BB_FEATURE_INIT_CHROOT */
748
749 #endif                                                  /* ! DEBUG_INIT */
750
751 void new_initAction(initActionEnum action, char *process, char *cons)
752 {
753         initAction *newAction;
754
755         if (*cons == '\0')
756                 cons = console;
757
758         /* If BusyBox detects that a serial console is in use, 
759          * then entries not refering to the console or null devices will _not_ be run.
760          * The exception to this rule is the null device.
761          */
762         if (secondConsole == NULL && strcmp(cons, console)
763                 && strcmp(cons, "/dev/null"))
764                 return;
765
766         newAction = calloc((size_t) (1), sizeof(initAction));
767         if (!newAction) {
768                 message(LOG | CONSOLE, "Memory allocation failure\n");
769                 while (1)
770                         sleep(1);
771         }
772         newAction->nextPtr = initActionList;
773         initActionList = newAction;
774         strncpy(newAction->process, process, 255);
775         newAction->action = action;
776         strncpy(newAction->console, cons, 255);
777         newAction->pid = 0;
778 //    message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
779 //      newAction->process, newAction->action, newAction->console);
780 }
781
782 static void delete_initAction(initAction * action)
783 {
784         initAction *a, *b = NULL;
785
786         for (a = initActionList; a; b = a, a = a->nextPtr) {
787                 if (a == action) {
788                         if (b == NULL) {
789                                 initActionList = a->nextPtr;
790                         } else {
791                                 b->nextPtr = a->nextPtr;
792                         }
793                         free(a);
794                         break;
795                 }
796         }
797 }
798
799 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
800  * then parse_inittab() simply adds in some default
801  * actions(i.e runs INIT_SCRIPT and then starts a pair 
802  * of "askfirst" shells).  If BB_FEATURE_USE_INITTAB 
803  * _is_ defined, but /etc/inittab is missing, this 
804  * results in the same set of default behaviors.
805  * */
806 void parse_inittab(void)
807 {
808 #ifdef BB_FEATURE_USE_INITTAB
809         FILE *file;
810         char buf[256], lineAsRead[256], tmpConsole[256];
811         char *id, *runlev, *action, *process, *eol;
812         const struct initActionType *a = actions;
813         int foundIt;
814
815
816         file = fopen(INITTAB, "r");
817         if (file == NULL) {
818                 /* No inittab file -- set up some default behavior */
819 #endif
820                 /* Swapoff on halt/reboot */
821                 new_initAction(CTRLALTDEL, "/sbin/swapoff -a", console);
822                 /* Umount all filesystems on halt/reboot */
823                 new_initAction(CTRLALTDEL, "/bin/umount -a -r", console);
824                 /* Askfirst shell on tty1 */
825                 new_initAction(ASKFIRST, SHELL, console);
826                 /* Askfirst shell on tty2 */
827                 if (secondConsole != NULL)
828                         new_initAction(ASKFIRST, SHELL, secondConsole);
829                 /* Askfirst shell on tty3 */
830                 if (thirdConsole != NULL)
831                         new_initAction(ASKFIRST, SHELL, thirdConsole);
832                 /* Askfirst shell on tty4 */
833                 if (fourthConsole != NULL)
834                         new_initAction(ASKFIRST, SHELL, fourthConsole);
835                 /* sysinit */
836                 new_initAction(SYSINIT, INIT_SCRIPT, console);
837
838                 return;
839 #ifdef BB_FEATURE_USE_INITTAB
840         }
841
842         while (fgets(buf, 255, file) != NULL) {
843                 foundIt = FALSE;
844                 /* Skip leading spaces */
845                 for (id = buf; *id == ' ' || *id == '\t'; id++);
846
847                 /* Skip the line if it's a comment */
848                 if (*id == '#' || *id == '\n')
849                         continue;
850
851                 /* Trim the trailing \n */
852                 eol = strrchr(id, '\n');
853                 if (eol != NULL)
854                         *eol = '\0';
855
856                 /* Keep a copy around for posterity's sake (and error msgs) */
857                 strcpy(lineAsRead, buf);
858
859                 /* Separate the ID field from the runlevels */
860                 runlev = strchr(id, ':');
861                 if (runlev == NULL || *(runlev + 1) == '\0') {
862                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
863                         continue;
864                 } else {
865                         *runlev = '\0';
866                         ++runlev;
867                 }
868
869                 /* Separate the runlevels from the action */
870                 action = strchr(runlev, ':');
871                 if (action == NULL || *(action + 1) == '\0') {
872                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
873                         continue;
874                 } else {
875                         *action = '\0';
876                         ++action;
877                 }
878
879                 /* Separate the action from the process */
880                 process = strchr(action, ':');
881                 if (process == NULL || *(process + 1) == '\0') {
882                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
883                         continue;
884                 } else {
885                         *process = '\0';
886                         ++process;
887                 }
888
889                 /* Ok, now process it */
890                 a = actions;
891                 while (a->name != 0) {
892                         if (strcmp(a->name, action) == 0) {
893                                 if (*id != '\0') {
894                                         struct stat statBuf;
895
896                                         strcpy(tmpConsole, "/dev/");
897                                         strncat(tmpConsole, id, 200);
898                                         if (stat(tmpConsole, &statBuf) != 0) {
899                                                 message(LOG | CONSOLE,
900                                                                 "device '%s' does not exist.  Did you read the directions?\n",
901                                                                 tmpConsole);
902                                                 break;
903                                         }
904                                         id = tmpConsole;
905                                 }
906                                 new_initAction(a->action, process, id);
907                                 foundIt = TRUE;
908                         }
909                         a++;
910                 }
911                 if (foundIt == TRUE)
912                         continue;
913                 else {
914                         /* Choke on an unknown action */
915                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
916                 }
917         }
918         return;
919 #endif /* BB_FEATURE_USE_INITTAB */
920 }
921
922
923
924 extern int init_main(int argc, char **argv)
925 {
926         initAction *a;
927         pid_t wpid;
928         int status;
929
930 #ifndef DEBUG_INIT
931         /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
932         if (getpid() != 1
933 #ifdef BB_FEATURE_LINUXRC
934                         && strstr(applet_name, "linuxrc") == NULL
935 #endif
936                           )
937         {
938                         usage("init\n\nInit is the parent of all processes.\n\n"
939                                   "This version of init is designed to be run only "
940                                   "by the kernel.\n");
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                 strncpy(argv[1], "\0", strlen(argv[1])+1);
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 */