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