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