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