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