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