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