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