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