dos2unix logread.c
[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 #ifndef _PATH_STDPATH
97 #define _PATH_STDPATH   "/usr/bin:/bin:/usr/sbin:/sbin"
98 #endif
99
100
101 #if defined BB_FEATURE_INIT_COREDUMPS
102 /*
103  * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called 
104  * before processes are spawned to set core file size as unlimited.
105  * This is for debugging only.  Don't use this is production, unless
106  * you want core dumps lying about....
107  */
108 #define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
109 #include <sys/resource.h>
110 #include <sys/time.h>
111 #endif
112
113 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
114
115 #if defined(__GLIBC__)
116 #include <sys/kdaemon.h>
117 #else
118 #include <sys/syscall.h>
119 #include <linux/unistd.h>
120 static _syscall2(int, bdflush, int, func, int, data);
121 #endif                                                  /* __GLIBC__ */
122
123
124 #define VT_PRIMARY   "/dev/tty1"     /* Primary virtual console */
125 #define VT_SECONDARY "/dev/tty2"     /* Virtual console */
126 #define VT_THIRD     "/dev/tty3"     /* Virtual console */
127 #define VT_FOURTH    "/dev/tty4"     /* Virtual console */
128 #define VT_LOG       "/dev/tty5"     /* Virtual console */
129 #define SERIAL_CON0  "/dev/ttyS0"    /* Primary serial console */
130 #define SERIAL_CON1  "/dev/ttyS1"    /* Serial console */
131 #define SHELL        "-/bin/sh"      /* Default shell */
132 #define INITTAB      "/etc/inittab"  /* inittab file location */
133 #ifndef INIT_SCRIPT
134 #define INIT_SCRIPT  "/etc/init.d/rcS"   /* Default sysinit script. */
135 #endif
136
137 #define MAXENV  16              /* Number of env. vars */
138 //static const int MAXENV = 16; /* Number of env. vars */
139 static const int LOG = 0x1;
140 static const int CONSOLE = 0x2;
141
142 /* Allowed init action types */
143 typedef enum {
144         SYSINIT = 1,
145         RESPAWN,
146         ASKFIRST,
147         WAIT,
148         ONCE,
149         CTRLALTDEL
150 } initActionEnum;
151
152 /* A mapping between "inittab" action name strings and action type codes. */
153 typedef struct initActionType {
154         const char *name;
155         initActionEnum action;
156 } initActionType;
157
158 static const struct initActionType actions[] = {
159         {"sysinit", SYSINIT},
160         {"respawn", RESPAWN},
161         {"askfirst", ASKFIRST},
162         {"wait", WAIT},
163         {"once", ONCE},
164         {"ctrlaltdel", CTRLALTDEL},
165         {0, 0}
166 };
167
168 /* Set up a linked list of initActions, to be read from inittab */
169 typedef struct initActionTag initAction;
170 struct initActionTag {
171         pid_t pid;
172         char process[256];
173         char console[256];
174         initAction *nextPtr;
175         initActionEnum action;
176 };
177 static initAction *initActionList = NULL;
178
179
180 static char *secondConsole = VT_SECONDARY;
181 static char *thirdConsole  = VT_THIRD;
182 static char *fourthConsole = VT_FOURTH;
183 static char *log           = VT_LOG;
184 static int  kernelVersion  = 0;
185 static char termType[32]   = "TERM=linux";
186 static char console[32]    = _PATH_CONSOLE;
187
188 static void delete_initAction(initAction * action);
189
190
191 /* Print a message to the specified device.
192  * Device may be bitwise-or'd from LOG | CONSOLE */
193 static void message(int device, char *fmt, ...)
194                    __attribute__ ((format (printf, 2, 3)));
195 static void message(int device, char *fmt, ...)
196 {
197         va_list arguments;
198         int fd;
199
200 #ifdef BB_SYSLOGD
201
202         /* Log the message to syslogd */
203         if (device & LOG) {
204                 char msg[1024];
205
206                 va_start(arguments, fmt);
207                 vsnprintf(msg, sizeof(msg), fmt, arguments);
208                 va_end(arguments);
209                 openlog(applet_name, 0, LOG_USER);
210                 syslog(LOG_USER|LOG_INFO, msg);
211                 closelog();
212         }
213 #else
214         static int log_fd = -1;
215
216         /* Take full control of the log tty, and never close it.
217          * It's mine, all mine!  Muhahahaha! */
218         if (log_fd < 0) {
219                 if (log == NULL) {
220                         /* don't even try to log, because there is no such console */
221                         log_fd = -2;
222                         /* log to main console instead */
223                         device = CONSOLE;
224                 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
225                         log_fd = -2;
226                         fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
227                         log = NULL;
228                         device = CONSOLE;
229                 }
230         }
231         if ((device & LOG) && (log_fd >= 0)) {
232                 va_start(arguments, fmt);
233                 vdprintf(log_fd, fmt, arguments);
234                 va_end(arguments);
235         }
236 #endif
237
238         if (device & CONSOLE) {
239                 /* Always send console messages to /dev/console so people will see them. */
240                 if (
241                         (fd =
242                          device_open(_PATH_CONSOLE,
243                                                  O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
244                         va_start(arguments, fmt);
245                         vdprintf(fd, fmt, arguments);
246                         va_end(arguments);
247                         close(fd);
248                 } else {
249                         fprintf(stderr, "Bummer, can't print: ");
250                         va_start(arguments, fmt);
251                         vfprintf(stderr, fmt, arguments);
252                         va_end(arguments);
253                 }
254         }
255 }
256
257 /* Set terminal settings to reasonable defaults */
258 static void set_term(int fd)
259 {
260         struct termios tty;
261
262         tcgetattr(fd, &tty);
263
264         /* set control chars */
265         tty.c_cc[VINTR]  = 3;   /* C-c */
266         tty.c_cc[VQUIT]  = 28;  /* C-\ */
267         tty.c_cc[VERASE] = 127; /* C-? */
268         tty.c_cc[VKILL]  = 21;  /* C-u */
269         tty.c_cc[VEOF]   = 4;   /* C-d */
270         tty.c_cc[VSTART] = 17;  /* C-q */
271         tty.c_cc[VSTOP]  = 19;  /* C-s */
272         tty.c_cc[VSUSP]  = 26;  /* C-z */
273
274         /* use line dicipline 0 */
275         tty.c_line = 0;
276
277         /* Make it be sane */
278         tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
279         tty.c_cflag |= HUPCL|CLOCAL;
280
281         /* input modes */
282         tty.c_iflag = ICRNL | IXON | IXOFF;
283
284         /* output modes */
285         tty.c_oflag = OPOST | ONLCR;
286
287         /* local modes */
288         tty.c_lflag =
289                 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
290
291         tcsetattr(fd, TCSANOW, &tty);
292 }
293
294 /* How much memory does this machine have?
295    Units are kBytes to avoid overflow on 4GB machines */
296 static int check_free_memory()
297 {
298         struct sysinfo info;
299         unsigned int result, u, s=10;
300
301         if (sysinfo(&info) != 0) {
302                 perror_msg("Error checking free memory");
303                 return -1;
304         }
305
306         /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
307          * Kernels 2.4.0 return info.mem_unit in bytes. */
308         u = info.mem_unit;
309         if (u==0) u=1;
310         while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
311         result = (info.totalram>>s) + (info.totalswap>>s);
312         result = result*u;
313         if (result < 0) result = INT_MAX;
314         return result;
315 }
316
317 static void console_init()
318 {
319         int fd;
320         int tried_devcons = 0;
321         int tried_vtprimary = 0;
322         struct vt_stat vt;
323         struct serial_struct sr;
324         char *s;
325
326         if ((s = getenv("TERM")) != NULL) {
327                 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
328         }
329
330         if ((s = getenv("CONSOLE")) != NULL) {
331                 snprintf(console, sizeof(console) - 1, "%s", s);
332         }
333 #if #cpu(sparc)
334         /* sparc kernel supports console=tty[ab] parameter which is also 
335          * passed to init, so catch it here */
336         else if ((s = getenv("console")) != NULL) {
337                 /* remap tty[ab] to /dev/ttyS[01] */
338                 if (strcmp(s, "ttya") == 0)
339                         snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
340                 else if (strcmp(s, "ttyb") == 0)
341                         snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
342         }
343 #endif
344         else {
345                 /* 2.2 kernels: identify the real console backend and try to use it */
346                 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
347                         /* this is a serial console */
348                         snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
349                 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
350                         /* this is linux virtual tty */
351                         snprintf(console, sizeof(console) - 1, "/dev/tty%d",
352                                          vt.v_active);
353                 } else {
354                         snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
355                         tried_devcons++;
356                 }
357         }
358
359         while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
360                 /* Can't open selected console -- try /dev/console */
361                 if (!tried_devcons) {
362                         tried_devcons++;
363                         snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
364                         continue;
365                 }
366                 /* Can't open selected console -- try vt1 */
367                 if (!tried_vtprimary) {
368                         tried_vtprimary++;
369                         snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
370                         continue;
371                 }
372                 break;
373         }
374         if (fd < 0) {
375                 /* Perhaps we should panic here? */
376                 snprintf(console, sizeof(console) - 1, "/dev/null");
377         } else {
378                 /* check for serial console and disable logging to tty5 & running a
379                    * shell to tty2-4 */
380                 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
381                         log = NULL;
382                         secondConsole = NULL;
383                         thirdConsole = NULL;
384                         fourthConsole = NULL;
385                         /* Force the TERM setting to vt102 for serial console --
386                          * iff TERM is set to linux (the default) */
387                         if (strcmp( termType, "TERM=linux" ) == 0)
388                                 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
389                         message(LOG | CONSOLE,
390                                         "serial console detected.  Disabling virtual terminals.\r\n");
391                 }
392                 close(fd);
393         }
394         message(LOG, "console=%s\n", console);
395 }
396
397 static pid_t run(char *command, char *terminal, int get_enter)
398 {
399         int i=0, j=0;
400         int fd;
401         pid_t pid;
402         char *tmpCmd;
403         char *cmd[255], *cmdpath;
404         char buf[255];
405         static const char press_enter[] =
406
407 #ifdef CUSTOMIZED_BANNER
408 #include CUSTOMIZED_BANNER
409 #endif
410
411                 "\nPlease press Enter to activate this console. ";
412         char *environment[MAXENV+1] = {
413                 "HOME=/",
414                 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
415                 "SHELL=/bin/sh",
416                 termType,
417                 "USER=root"
418         };
419
420         while (environment[i]) i++;
421         while ((environ[j]) && (i < MAXENV)) {
422                 if (strncmp(environ[j], "TERM=", 5))
423                         environment[i++] = environ[j];
424                 j++;
425         }
426
427         if ((pid = fork()) == 0) {
428                 /* Clean up */
429                 ioctl(0, TIOCNOTTY, 0);
430                 close(0);
431                 close(1);
432                 close(2);
433                 setsid();
434
435                 /* Reset signal handlers set for parent process */
436                 signal(SIGUSR1, SIG_DFL);
437                 signal(SIGUSR2, SIG_DFL);
438                 signal(SIGINT, SIG_DFL);
439                 signal(SIGTERM, SIG_DFL);
440                 signal(SIGHUP, SIG_DFL);
441
442                 if ((fd = device_open(terminal, O_RDWR)) < 0) {
443                         struct stat statBuf;
444                         if (stat(terminal, &statBuf) != 0) {
445                                 message(LOG | CONSOLE, "device '%s' does not exist.\n",
446                                                 terminal);
447                                 exit(1);
448                         }
449                         message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
450                         exit(1);
451                 }
452                 dup2(fd, 0);
453                 dup2(fd, 1);
454                 dup2(fd, 2);
455                 ioctl(0, TIOCSCTTY, 1);
456                 tcsetpgrp(0, getpgrp());
457                 set_term(0);
458
459                 if (get_enter == TRUE) {
460                         /*
461                          * Save memory by not exec-ing anything large (like a shell)
462                          * before the user wants it. This is critical if swap is not
463                          * enabled and the system has low memory. Generally this will
464                          * be run on the second virtual console, and the first will
465                          * be allowed to start a shell or whatever an init script 
466                          * specifies.
467                          */
468 #ifdef DEBUG_INIT
469                         message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
470                                         command, getpid(), terminal);
471 #endif
472                         write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
473                         getc(stdin);
474                 }
475
476 #ifdef DEBUG_INIT
477                 /* Log the process name and args */
478                 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
479                                 getpid(), terminal, command);
480 #endif
481
482                 /* See if any special /bin/sh requiring characters are present */
483                 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
484                         cmd[0] = SHELL;
485                         cmd[1] = "-c";
486                         strcpy(buf, "exec ");
487                         strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
488                         cmd[2] = buf;
489                         cmd[3] = NULL;
490                 } else {
491                         /* Convert command (char*) into cmd (char**, one word per string) */
492                         for (tmpCmd = command, i = 0;
493                                  (tmpCmd = strsep(&command, " \t")) != NULL;) {
494                                 if (*tmpCmd != '\0') {
495                                         cmd[i] = tmpCmd;
496                                         tmpCmd++;
497                                         i++;
498                                 }
499                         }
500                         cmd[i] = NULL;
501                 }
502
503                cmdpath = cmd[0];
504
505                /*
506                    Interactive shells want to see a dash in argv[0].  This
507                    typically is handled by login, argv will be setup this 
508                    way if a dash appears at the front of the command path 
509                    (like "-/bin/sh").
510                */
511
512                if (*cmdpath == '-') {
513                        char *s;
514
515                        /* skip over the dash */
516                          ++cmdpath;
517
518                        /* find the last component in the command pathname */
519                                                  s = get_last_path_component(cmdpath);
520
521                        /* make a new argv[0] */
522                        if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
523                                message(LOG | CONSOLE, "malloc failed");
524                                cmd[0] = cmdpath;
525                        } else {
526                                cmd[0][0] = '-';
527                                strcpy(cmd[0]+1, s);
528                        }
529                }
530
531 #if defined BB_FEATURE_INIT_COREDUMPS
532                 {
533                         struct stat sb;
534                         if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
535                                 struct rlimit limit;
536                                 limit.rlim_cur = RLIM_INFINITY;
537                                 limit.rlim_max = RLIM_INFINITY;
538                                 setrlimit(RLIMIT_CORE, &limit);
539                         }
540                 }
541 #endif
542
543                 /* Now run it.  The new program will take over this PID, 
544                  * so nothing further in init.c should be run. */
545                 execve(cmdpath, cmd, environment);
546
547                 /* We're still here?  Some error happened. */
548                 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmdpath,
549                                 strerror(errno));
550                 exit(-1);
551         }
552         return pid;
553 }
554
555 static int waitfor(char *command, char *terminal, int get_enter)
556 {
557         int status, wpid;
558         int pid = run(command, terminal, get_enter);
559
560         while (1) {
561                 wpid = wait(&status);
562                 if (wpid > 0 && wpid != pid) {
563                         continue;
564                 }
565                 if (wpid == pid)
566                         break;
567         }
568         return wpid;
569 }
570
571 /* Make sure there is enough memory to do something useful. *
572  * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
573 static void check_memory()
574 {
575         struct stat statBuf;
576
577         if (check_free_memory() > 1000)
578                 return;
579
580         if (stat("/etc/fstab", &statBuf) == 0) {
581                 /* swapon -a requires /proc typically */
582                 waitfor("mount proc /proc -t proc", console, FALSE);
583                 /* Try to turn on swap */
584                 waitfor("swapon -a", console, FALSE);
585                 if (check_free_memory() < 1000)
586                         goto goodnight;
587         } else
588                 goto goodnight;
589         return;
590
591   goodnight:
592         message(CONSOLE,
593                         "Sorry, your computer does not have enough memory.\r\n");
594         while (1)
595                 sleep(1);
596 }
597
598 /* Run all commands to be run right before halt/reboot */
599 static void run_lastAction(void)
600 {
601         initAction *a;
602         for (a = initActionList; a; a = a->nextPtr) {
603                 if (a->action == CTRLALTDEL) {
604                         waitfor(a->process, a->console, FALSE);
605                         delete_initAction(a);
606                 }
607         }
608 }
609
610
611 #ifndef DEBUG_INIT
612 static void shutdown_system(void)
613 {
614
615         /* first disable our SIGHUP signal */
616         signal(SIGHUP, SIG_DFL);
617
618         /* Allow Ctrl-Alt-Del to reboot system. */
619         init_reboot(RB_ENABLE_CAD);
620
621         message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
622         sync();
623
624         /* Send signals to every process _except_ pid 1 */
625         message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
626         kill(-1, SIGTERM);
627         sleep(1);
628         sync();
629
630         message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
631         kill(-1, SIGKILL);
632         sleep(1);
633
634         /* run everything to be run at "ctrlaltdel" */
635         run_lastAction();
636
637         sync();
638         if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
639                 /* bdflush, kupdate not needed for kernels >2.2.11 */
640                 bdflush(1, 0);
641                 sync();
642         }
643 }
644
645 static void halt_signal(int sig)
646 {
647         shutdown_system();
648         message(CONSOLE|LOG,
649                         "The system is halted. Press %s or turn off power\r\n",
650                         (secondConsole == NULL) /* serial console */
651                         ? "Reset" : "CTRL-ALT-DEL");
652         sync();
653
654         /* allow time for last message to reach serial console */
655         sleep(2);
656
657         if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
658                 init_reboot(RB_POWER_OFF);
659         else
660                 init_reboot(RB_HALT_SYSTEM);
661         exit(0);
662 }
663
664 static void reboot_signal(int sig)
665 {
666         shutdown_system();
667         message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
668         sync();
669
670         /* allow time for last message to reach serial console */
671         sleep(2);
672
673         init_reboot(RB_AUTOBOOT);
674         exit(0);
675 }
676
677 #endif                                                  /* ! DEBUG_INIT */
678
679 static void new_initAction(initActionEnum action, char *process, char *cons)
680 {
681         initAction *newAction;
682
683         if (*cons == '\0')
684                 cons = console;
685
686         /* If BusyBox detects that a serial console is in use, 
687          * then entries not refering to the console or null devices will _not_ be run.
688          * The exception to this rule is the null device.
689          */
690         if (secondConsole == NULL && strcmp(cons, console)
691                 && strcmp(cons, "/dev/null"))
692                 return;
693
694         newAction = calloc((size_t) (1), sizeof(initAction));
695         if (!newAction) {
696                 message(LOG | CONSOLE, "Memory allocation failure\n");
697                 while (1)
698                         sleep(1);
699         }
700         newAction->nextPtr = initActionList;
701         initActionList = newAction;
702         strncpy(newAction->process, process, 255);
703         newAction->action = action;
704         strncpy(newAction->console, cons, 255);
705         newAction->pid = 0;
706 //    message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
707 //      newAction->process, newAction->action, newAction->console);
708 }
709
710 static void delete_initAction(initAction * action)
711 {
712         initAction *a, *b = NULL;
713
714         for (a = initActionList; a; b = a, a = a->nextPtr) {
715                 if (a == action) {
716                         if (b == NULL) {
717                                 initActionList = a->nextPtr;
718                         } else {
719                                 b->nextPtr = a->nextPtr;
720                         }
721                         free(a);
722                         break;
723                 }
724         }
725 }
726
727 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
728  * then parse_inittab() simply adds in some default
729  * actions(i.e runs INIT_SCRIPT and then starts a pair 
730  * of "askfirst" shells).  If BB_FEATURE_USE_INITTAB 
731  * _is_ defined, but /etc/inittab is missing, this 
732  * results in the same set of default behaviors.
733  * */
734 static void parse_inittab(void)
735 {
736 #ifdef BB_FEATURE_USE_INITTAB
737         FILE *file;
738         char buf[256], lineAsRead[256], tmpConsole[256];
739         char *id, *runlev, *action, *process, *eol;
740         const struct initActionType *a = actions;
741         int foundIt;
742
743
744         file = fopen(INITTAB, "r");
745         if (file == NULL) {
746                 /* No inittab file -- set up some default behavior */
747 #endif
748                 /* Swapoff on halt/reboot */
749                 new_initAction(CTRLALTDEL, "/sbin/swapoff -a", console);
750                 /* Umount all filesystems on halt/reboot */
751                 new_initAction(CTRLALTDEL, "/bin/umount -a -r", console);
752                 /* Askfirst shell on tty1 */
753                 new_initAction(ASKFIRST, SHELL, console);
754                 /* Askfirst shell on tty2 */
755                 if (secondConsole != NULL)
756                         new_initAction(ASKFIRST, SHELL, secondConsole);
757                 /* Askfirst shell on tty3 */
758                 if (thirdConsole != NULL)
759                         new_initAction(ASKFIRST, SHELL, thirdConsole);
760                 /* Askfirst shell on tty4 */
761                 if (fourthConsole != NULL)
762                         new_initAction(ASKFIRST, SHELL, fourthConsole);
763                 /* sysinit */
764                 new_initAction(SYSINIT, INIT_SCRIPT, console);
765
766                 return;
767 #ifdef BB_FEATURE_USE_INITTAB
768         }
769
770         while (fgets(buf, 255, file) != NULL) {
771                 foundIt = FALSE;
772                 /* Skip leading spaces */
773                 for (id = buf; *id == ' ' || *id == '\t'; id++);
774
775                 /* Skip the line if it's a comment */
776                 if (*id == '#' || *id == '\n')
777                         continue;
778
779                 /* Trim the trailing \n */
780                 eol = strrchr(id, '\n');
781                 if (eol != NULL)
782                         *eol = '\0';
783
784                 /* Keep a copy around for posterity's sake (and error msgs) */
785                 strcpy(lineAsRead, buf);
786
787                 /* Separate the ID field from the runlevels */
788                 runlev = strchr(id, ':');
789                 if (runlev == NULL || *(runlev + 1) == '\0') {
790                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
791                         continue;
792                 } else {
793                         *runlev = '\0';
794                         ++runlev;
795                 }
796
797                 /* Separate the runlevels from the action */
798                 action = strchr(runlev, ':');
799                 if (action == NULL || *(action + 1) == '\0') {
800                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
801                         continue;
802                 } else {
803                         *action = '\0';
804                         ++action;
805                 }
806
807                 /* Separate the action from the process */
808                 process = strchr(action, ':');
809                 if (process == NULL || *(process + 1) == '\0') {
810                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
811                         continue;
812                 } else {
813                         *process = '\0';
814                         ++process;
815                 }
816
817                 /* Ok, now process it */
818                 a = actions;
819                 while (a->name != 0) {
820                         if (strcmp(a->name, action) == 0) {
821                                 if (*id != '\0') {
822                                         strcpy(tmpConsole, "/dev/");
823                                         strncat(tmpConsole, id, 200);
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="_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 */