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