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