Re-add initrd support, unify halt/reboot/poweroff, add -n and -f options.
[oweals/busybox.git] / init / init.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini init implementation for busybox
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7  * Adjusted by so many folks, it's impossible to keep track.
8  *
9  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10  */
11
12 /* Turn this on to disable all the dangerous
13    rebooting stuff when debugging.
14 #define DEBUG_INIT
15 */
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <errno.h>
20 #include <paths.h>
21 #include <signal.h>
22 #include <stdarg.h>
23 #include <string.h>
24 #include <termios.h>
25 #include <unistd.h>
26 #include <limits.h>
27 #include <sys/fcntl.h>
28 #include <sys/ioctl.h>
29 #include <sys/types.h>
30 #include <sys/wait.h>
31 #include <sys/reboot.h>
32 #include "busybox.h"
33
34 #include "init_shared.h"
35
36
37 #ifdef CONFIG_SYSLOGD
38 # include <sys/syslog.h>
39 #endif
40
41
42 #define INIT_BUFFS_SIZE 256
43
44 /* From <linux/vt.h> */
45 struct vt_stat {
46         unsigned short v_active;        /* active vt */
47         unsigned short v_signal;        /* signal to send */
48         unsigned short v_state; /* vt bitmask */
49 };
50 static const int VT_GETSTATE = 0x5603;  /* get global vt state info */
51
52 /* From <linux/serial.h> */
53 struct serial_struct {
54         int     type;
55         int     line;
56         unsigned int    port;
57         int     irq;
58         int     flags;
59         int     xmit_fifo_size;
60         int     custom_divisor;
61         int     baud_base;
62         unsigned short  close_delay;
63         char    io_type;
64         char    reserved_char[1];
65         int     hub6;
66         unsigned short  closing_wait; /* time to wait before closing */
67         unsigned short  closing_wait2; /* no longer used... */
68         unsigned char   *iomem_base;
69         unsigned short  iomem_reg_shift;
70         unsigned int    port_high;
71         unsigned long   iomap_base;     /* cookie passed into ioremap */
72         int     reserved[1];
73 };
74
75
76 #ifndef _PATH_STDPATH
77 #define _PATH_STDPATH   "/usr/bin:/bin:/usr/sbin:/sbin"
78 #endif
79
80 #if defined CONFIG_FEATURE_INIT_COREDUMPS
81 /*
82  * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
83  * before processes are spawned to set core file size as unlimited.
84  * This is for debugging only.  Don't use this is production, unless
85  * you want core dumps lying about....
86  */
87 #define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
88 #include <sys/resource.h>
89 #include <sys/time.h>
90 #endif
91
92 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
93
94 #define INITTAB      "/etc/inittab"     /* inittab file location */
95 #ifndef INIT_SCRIPT
96 #define INIT_SCRIPT  "/etc/init.d/rcS"  /* Default sysinit script. */
97 #endif
98
99 #define MAXENV  16              /* Number of env. vars */
100
101 #define CONSOLE_BUFF_SIZE 32
102
103 /* Allowed init action types */
104 #define SYSINIT     0x001
105 #define RESPAWN     0x002
106 #define ASKFIRST    0x004
107 #define WAIT        0x008
108 #define ONCE        0x010
109 #define CTRLALTDEL  0x020
110 #define SHUTDOWN    0x040
111 #define RESTART     0x080
112
113 /* A mapping between "inittab" action name strings and action type codes. */
114 struct init_action_type {
115         const char *name;
116         int action;
117 };
118
119 static const struct init_action_type actions[] = {
120         {"sysinit", SYSINIT},
121         {"respawn", RESPAWN},
122         {"askfirst", ASKFIRST},
123         {"wait", WAIT},
124         {"once", ONCE},
125         {"ctrlaltdel", CTRLALTDEL},
126         {"shutdown", SHUTDOWN},
127         {"restart", RESTART},
128         {0, 0}
129 };
130
131 /* Set up a linked list of init_actions, to be read from inittab */
132 struct init_action {
133         pid_t pid;
134         char command[INIT_BUFFS_SIZE];
135         char terminal[CONSOLE_BUFF_SIZE];
136         struct init_action *next;
137         int action;
138 };
139
140 /* Static variables */
141 static struct init_action *init_action_list = NULL;
142 static char console[CONSOLE_BUFF_SIZE] = _PATH_CONSOLE;
143
144 #ifndef CONFIG_SYSLOGD
145 static char *log_console = VC_5;
146 #endif
147 static sig_atomic_t got_cont = 0;
148 static const int LOG = 0x1;
149 static const int CONSOLE = 0x2;
150
151 #if defined CONFIG_FEATURE_EXTRA_QUIET
152 static const int MAYBE_CONSOLE = 0x0;
153 #else
154 #define MAYBE_CONSOLE   CONSOLE
155 #endif
156 #ifndef RB_HALT_SYSTEM
157 static const int RB_HALT_SYSTEM = 0xcdef0123;
158 static const int RB_ENABLE_CAD = 0x89abcdef;
159 static const int RB_DISABLE_CAD = 0;
160
161 #define RB_POWER_OFF    0x4321fedc
162 static const int RB_AUTOBOOT = 0x01234567;
163 #endif
164
165 static const char * const environment[] = {
166         "HOME=/",
167         "PATH=" _PATH_STDPATH,
168         "SHELL=/bin/sh",
169         "USER=root",
170         NULL
171 };
172
173 /* Function prototypes */
174 static void delete_init_action(struct init_action *a);
175 static int waitfor(const struct init_action *a);
176 static void halt_signal(int sig);
177
178
179 static void loop_forever(void)
180 {
181         while (1)
182                 sleep(1);
183 }
184
185 /* Print a message to the specified device.
186  * Device may be bitwise-or'd from LOG | CONSOLE */
187 #ifndef DEBUG_INIT
188 static inline void messageD(int device, const char *fmt, ...)
189 {
190 }
191 #else
192 #define messageD message
193 #endif
194 static void message(int device, const char *fmt, ...)
195         __attribute__ ((format(printf, 2, 3)));
196 static void message(int device, const char *fmt, ...)
197 {
198         va_list arguments;
199         int l;
200         char msg[1024];
201 #ifndef CONFIG_SYSLOGD
202         static int log_fd = -1;
203 #endif
204
205         msg[0] = '\r';
206                 va_start(arguments, fmt);
207         l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments) + 1;
208                 va_end(arguments);
209
210 #ifdef CONFIG_SYSLOGD
211         /* Log the message to syslogd */
212         if (device & LOG) {
213                 /* don`t out "\r\n" */
214                 openlog(bb_applet_name, 0, LOG_DAEMON);
215                 syslog(LOG_INFO, "%s", msg + 1);
216                 closelog();
217         }
218
219         msg[l++] = '\n';
220         msg[l] = 0;
221 #else
222
223         msg[l++] = '\n';
224         msg[l] = 0;
225         /* Take full control of the log tty, and never close it.
226          * It's mine, all mine!  Muhahahaha! */
227         if (log_fd < 0) {
228                 if ((log_fd = device_open(log_console, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0) {
229                         log_fd = -2;
230                         bb_error_msg("Bummer, can't write to log on %s!", log_console);
231                         device = CONSOLE;
232                 } else {
233                         fcntl(log_fd, F_SETFD, FD_CLOEXEC);
234                 }
235         }
236         if ((device & LOG) && (log_fd >= 0)) {
237                 bb_full_write(log_fd, msg, l);
238         }
239 #endif
240
241         if (device & CONSOLE) {
242                 int fd = device_open(_PATH_CONSOLE,
243                                         O_WRONLY | O_NOCTTY | O_NONBLOCK);
244                 /* Always send console messages to /dev/console so people will see them. */
245                 if (fd >= 0) {
246                         bb_full_write(fd, msg, l);
247                         close(fd);
248 #ifdef DEBUG_INIT
249                 /* all descriptors may be closed */
250                 } else {
251                         bb_error_msg("Bummer, can't print: ");
252                         va_start(arguments, fmt);
253                         vfprintf(stderr, fmt, arguments);
254                         va_end(arguments);
255 #endif
256                 }
257         }
258 }
259
260 /* Set terminal settings to reasonable defaults */
261 static void set_term(int fd)
262 {
263         struct termios tty;
264
265         tcgetattr(fd, &tty);
266
267         /* set control chars */
268         tty.c_cc[VINTR] = 3;    /* C-c */
269         tty.c_cc[VQUIT] = 28;   /* C-\ */
270         tty.c_cc[VERASE] = 127; /* C-? */
271         tty.c_cc[VKILL] = 21;   /* C-u */
272         tty.c_cc[VEOF] = 4;     /* C-d */
273         tty.c_cc[VSTART] = 17;  /* C-q */
274         tty.c_cc[VSTOP] = 19;   /* C-s */
275         tty.c_cc[VSUSP] = 26;   /* C-z */
276
277         /* use line dicipline 0 */
278         tty.c_line = 0;
279
280         /* Make it be sane */
281         tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
282         tty.c_cflag |= CREAD | HUPCL | CLOCAL;
283
284
285         /* input modes */
286         tty.c_iflag = ICRNL | IXON | IXOFF;
287
288         /* output modes */
289         tty.c_oflag = OPOST | ONLCR;
290
291         /* local modes */
292         tty.c_lflag =
293                 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
294
295         tcsetattr(fd, TCSANOW, &tty);
296 }
297
298 static void console_init(void)
299 {
300         int fd;
301         int tried = 0;
302         struct vt_stat vt;
303         struct serial_struct sr;
304         char *s;
305
306         if ((s = getenv("CONSOLE")) != NULL || (s = getenv("console")) != NULL) {
307                 safe_strncpy(console, s, sizeof(console));
308 #if #cpu(sparc)
309         /* sparc kernel supports console=tty[ab] parameter which is also
310          * passed to init, so catch it here */
311                 /* remap tty[ab] to /dev/ttyS[01] */
312                 if (strcmp(s, "ttya") == 0)
313                         safe_strncpy(console, SC_0, sizeof(console));
314                 else if (strcmp(s, "ttyb") == 0)
315                         safe_strncpy(console, SC_1, sizeof(console));
316 #endif
317         } else {
318                 /* 2.2 kernels: identify the real console backend and try to use it */
319                 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
320                         /* this is a serial console */
321                         snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
322                 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
323                         /* this is linux virtual tty */
324                         snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
325                 } else {
326                         safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
327                         tried++;
328                 }
329         }
330
331         while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0 && tried < 2) {
332                 /* Can't open selected console -- try
333                         logical system console and VT_MASTER */
334                 safe_strncpy(console, (tried == 0 ? _PATH_CONSOLE : CURRENT_VC),
335                                                         sizeof(console));
336                 tried++;
337         }
338         if (fd < 0) {
339                 /* Perhaps we should panic here? */
340 #ifndef CONFIG_SYSLOGD
341                 log_console =
342 #endif
343                 safe_strncpy(console, bb_dev_null, sizeof(console));
344         } else {
345                 s = getenv("TERM");
346                 /* check for serial console */
347                 if (ioctl(fd, TIOCGSERIAL, &sr) == 0) {
348                         /* Force the TERM setting to vt102 for serial console --
349                          * if TERM is set to linux (the default) */
350                         if (s == NULL || strcmp(s, "linux") == 0)
351                                 putenv("TERM=vt102");
352 #ifndef CONFIG_SYSLOGD
353                         log_console = console;
354 #endif
355                 } else {
356                         if (s == NULL)
357                                 putenv("TERM=linux");
358                 }
359                 close(fd);
360         }
361         messageD(LOG, "console=%s", console);
362 }
363
364 static void fixup_argv(int argc, char **argv, char *new_argv0)
365 {
366         int len;
367
368         /* Fix up argv[0] to be certain we claim to be init */
369         len = strlen(argv[0]);
370         memset(argv[0], 0, len);
371         safe_strncpy(argv[0], new_argv0, len + 1);
372
373         /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
374         len = 1;
375         while (argc > len) {
376                 memset(argv[len], 0, strlen(argv[len]));
377                 len++;
378         }
379 }
380
381 static pid_t run(const struct init_action *a)
382 {
383         int i, junk;
384         pid_t pid;
385         char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
386         char buf[INIT_BUFFS_SIZE + 6];  /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
387         sigset_t nmask, omask;
388         static const char press_enter[] =
389 #ifdef CUSTOMIZED_BANNER
390 #include CUSTOMIZED_BANNER
391 #endif
392                 "\nPlease press Enter to activate this console. ";
393
394         /* Block sigchild while forking.  */
395         sigemptyset(&nmask);
396         sigaddset(&nmask, SIGCHLD);
397         sigprocmask(SIG_BLOCK, &nmask, &omask);
398
399         if ((pid = fork()) == 0) {
400                 struct stat sb;
401
402                 /* Clean up */
403                 close(0);
404                 close(1);
405                 close(2);
406                 sigprocmask(SIG_SETMASK, &omask, NULL);
407
408                 /* Reset signal handlers that were set by the parent process */
409                 signal(SIGUSR1, SIG_DFL);
410                 signal(SIGUSR2, SIG_DFL);
411                 signal(SIGINT, SIG_DFL);
412                 signal(SIGTERM, SIG_DFL);
413                 signal(SIGHUP, SIG_DFL);
414                 signal(SIGQUIT, SIG_DFL);
415                 signal(SIGCONT, SIG_DFL);
416                 signal(SIGSTOP, SIG_DFL);
417                 signal(SIGTSTP, SIG_DFL);
418
419                 /* Create a new session and make ourself the process
420                  * group leader */
421                 setsid();
422
423                 /* Open the new terminal device */
424                 if ((device_open(a->terminal, O_RDWR)) < 0) {
425                         if (stat(a->terminal, &sb) != 0) {
426                                 message(LOG | CONSOLE, "device '%s' does not exist.", a->terminal);
427                         } else {
428                                 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
429                         }
430                         _exit(1);
431                 }
432
433                 /* Make sure the terminal will act fairly normal for us */
434                 set_term(0);
435                 /* Setup stdout, stderr for the new process so
436                  * they point to the supplied terminal */
437                 dup(0);
438                 dup(0);
439
440                 /* If the init Action requires us to wait, then force the
441                  * supplied terminal to be the controlling tty. */
442                 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
443                         pid_t pgrp, tmp_pid;
444
445                         /* Now fork off another process to just hang around */
446                         if ((pid = fork()) < 0) {
447                                 message(LOG | CONSOLE, "Can't fork!");
448                                 _exit(1);
449                         }
450
451                         if (pid > 0) {
452
453                                 /* We are the parent -- wait till the child is done */
454                                 signal(SIGINT, SIG_IGN);
455                                 signal(SIGTSTP, SIG_IGN);
456                                 signal(SIGQUIT, SIG_IGN);
457                                 signal(SIGCHLD, SIG_DFL);
458
459                                 /* Wait for child to exit */
460                                 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
461                                         if (tmp_pid == -1 && errno == ECHILD) {
462                                                 break;
463                                         }
464                                         /* FIXME handle other errors */
465                 }
466
467                                 /* See if stealing the controlling tty back is necessary */
468                                 pgrp = tcgetpgrp(0);
469                                 if (pgrp != getpid())
470                                         _exit(0);
471
472                                 /* Use a temporary process to steal the controlling tty. */
473                                 if ((pid = fork()) < 0) {
474                                         message(LOG | CONSOLE, "Can't fork!");
475                                         _exit(1);
476                                 }
477                                 if (pid == 0) {
478                                         setsid();
479                                         ioctl(0, TIOCSCTTY, 1);
480                                         _exit(0);
481                                 }
482                                 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
483                                         if (tmp_pid < 0 && errno == ECHILD)
484                                                 break;
485                                 }
486                                 _exit(0);
487                         }
488
489                         /* Now fall though to actually execute things */
490                 }
491
492                 /* See if any special /bin/sh requiring characters are present */
493                 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
494                         cmd[0] = (char *)DEFAULT_SHELL;
495                         cmd[1] = "-c";
496                         cmd[2] = strcat(strcpy(buf, "exec "), a->command);
497                         cmd[3] = NULL;
498                 } else {
499                         /* Convert command (char*) into cmd (char**, one word per string) */
500                         strcpy(buf, a->command);
501                         s = buf;
502                         for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
503                                 if (*tmpCmd != '\0') {
504                                         cmd[i] = tmpCmd;
505                                         i++;
506                                 }
507                         }
508                         cmd[i] = NULL;
509                 }
510
511                 cmdpath = cmd[0];
512
513                 /*
514                    Interactive shells want to see a dash in argv[0].  This
515                    typically is handled by login, argv will be setup this
516                    way if a dash appears at the front of the command path
517                    (like "-/bin/sh").
518                  */
519
520                 if (*cmdpath == '-') {
521
522                         /* skip over the dash */
523                         ++cmdpath;
524
525                         /* find the last component in the command pathname */
526                         s = bb_get_last_path_component(cmdpath);
527
528                         /* make a new argv[0] */
529                         if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
530                                 message(LOG | CONSOLE, bb_msg_memory_exhausted);
531                                 cmd[0] = cmdpath;
532                         } else {
533                                 cmd[0][0] = '-';
534                                 strcpy(cmd[0] + 1, s);
535                         }
536 #ifdef CONFIG_FEATURE_INIT_SCTTY
537                         /* Establish this process as session leader and
538                          * (attempt) to make the tty (if any) a controlling tty.
539                          */
540                         (void) setsid();
541                         (void) ioctl(0, TIOCSCTTY, 0/*don't steal it*/);
542 #endif
543                 }
544
545 #if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
546                 if (a->action & ASKFIRST) {
547                         char c;
548                         /*
549                          * Save memory by not exec-ing anything large (like a shell)
550                          * before the user wants it. This is critical if swap is not
551                          * enabled and the system has low memory. Generally this will
552                          * be run on the second virtual console, and the first will
553                          * be allowed to start a shell or whatever an init script
554                          * specifies.
555                          */
556                         messageD(LOG, "Waiting for enter to start '%s'"
557                                                 "(pid %d, terminal %s)\n",
558                                           cmdpath, getpid(), a->terminal);
559                         bb_full_write(1, press_enter, sizeof(press_enter) - 1);
560                         while(read(0, &c, 1) == 1 && c != '\n')
561                                 ;
562                 }
563 #endif
564
565                 /* Log the process name and args */
566                 message(LOG, "Starting pid %d, console %s: '%s'",
567                                   getpid(), a->terminal, cmdpath);
568
569 #if defined CONFIG_FEATURE_INIT_COREDUMPS
570                 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
571                         struct rlimit limit;
572
573                         limit.rlim_cur = RLIM_INFINITY;
574                         limit.rlim_max = RLIM_INFINITY;
575                         setrlimit(RLIMIT_CORE, &limit);
576                 }
577 #endif
578
579                 /* Now run it.  The new program will take over this PID,
580                  * so nothing further in init.c should be run. */
581                 execv(cmdpath, cmd);
582
583                 /* We're still here?  Some error happened. */
584                 message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath);
585                 _exit(-1);
586         }
587         sigprocmask(SIG_SETMASK, &omask, NULL);
588         return pid;
589 }
590
591 static int waitfor(const struct init_action *a)
592 {
593         int pid;
594         int status, wpid;
595
596         pid = run(a);
597         while (1) {
598                 wpid = waitpid(pid,&status,0);
599                 if (wpid == pid)
600                         break;
601                 if (wpid == -1 && errno == ECHILD) {
602                         /* we missed its termination */
603                         break;
604                 }
605                 /* FIXME other errors should maybe trigger an error, but allow
606                  * the program to continue */
607         }
608         return wpid;
609 }
610
611 /* Run all commands of a particular type */
612 static void run_actions(int action)
613 {
614         struct init_action *a, *tmp;
615
616         for (a = init_action_list; a; a = tmp) {
617                 tmp = a->next;
618                 if (a->action == action) {
619                         if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
620                                 waitfor(a);
621                                 delete_init_action(a);
622                         } else if (a->action & ONCE) {
623                                 run(a);
624                                 delete_init_action(a);
625                         } else if (a->action & (RESPAWN | ASKFIRST)) {
626                                 /* Only run stuff with pid==0.  If they have
627                                  * a pid, that means it is still running */
628                                 if (a->pid == 0) {
629                                         a->pid = run(a);
630                                 }
631                         }
632                 }
633         }
634 }
635
636 #ifndef DEBUG_INIT
637 static void init_reboot(unsigned long magic)
638 {
639         pid_t pid;
640         /* We have to fork here, since the kernel calls do_exit(0) in
641          * linux/kernel/sys.c, which can cause the machine to panic when
642          * the init process is killed.... */
643         if ((pid = fork()) == 0) {
644                 reboot(magic);
645                 _exit(0);
646         }
647         waitpid (pid, NULL, 0);
648 }
649
650 static void shutdown_system(void)
651 {
652         sigset_t block_signals;
653
654         /* run everything to be run at "shutdown".  This is done _prior_
655          * to killing everything, in case people wish to use scripts to
656          * shut things down gracefully... */
657         run_actions(SHUTDOWN);
658
659         /* first disable all our signals */
660         sigemptyset(&block_signals);
661         sigaddset(&block_signals, SIGHUP);
662         sigaddset(&block_signals, SIGQUIT);
663         sigaddset(&block_signals, SIGCHLD);
664         sigaddset(&block_signals, SIGUSR1);
665         sigaddset(&block_signals, SIGUSR2);
666         sigaddset(&block_signals, SIGINT);
667         sigaddset(&block_signals, SIGTERM);
668         sigaddset(&block_signals, SIGCONT);
669         sigaddset(&block_signals, SIGSTOP);
670         sigaddset(&block_signals, SIGTSTP);
671         sigprocmask(SIG_BLOCK, &block_signals, NULL);
672
673         /* Allow Ctrl-Alt-Del to reboot system. */
674         init_reboot(RB_ENABLE_CAD);
675
676         message(CONSOLE | LOG, "The system is going down NOW !!");
677         sync();
678
679         /* Send signals to every process _except_ pid 1 */
680         message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
681         kill(-1, SIGTERM);
682         sleep(1);
683         sync();
684
685         message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
686         kill(-1, SIGKILL);
687         sleep(1);
688
689         sync();
690 }
691
692 static void exec_signal(int sig)
693 {
694         struct init_action *a, *tmp;
695         sigset_t unblock_signals;
696
697         for (a = init_action_list; a; a = tmp) {
698                 tmp = a->next;
699                 if (a->action & RESTART) {
700                         shutdown_system();
701
702                         /* unblock all signals, blocked in shutdown_system() */
703                         sigemptyset(&unblock_signals);
704                         sigaddset(&unblock_signals, SIGHUP);
705                         sigaddset(&unblock_signals, SIGQUIT);
706                         sigaddset(&unblock_signals, SIGCHLD);
707                         sigaddset(&unblock_signals, SIGUSR1);
708                         sigaddset(&unblock_signals, SIGUSR2);
709                         sigaddset(&unblock_signals, SIGINT);
710                         sigaddset(&unblock_signals, SIGTERM);
711                         sigaddset(&unblock_signals, SIGCONT);
712                         sigaddset(&unblock_signals, SIGSTOP);
713                         sigaddset(&unblock_signals, SIGTSTP);
714                         sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
715
716                         /* Close whatever files are open. */
717                         close(0);
718                         close(1);
719                         close(2);
720
721                         /* Open the new terminal device */
722                         if ((device_open(a->terminal, O_RDWR)) < 0) {
723                                 struct stat sb;
724                                 if (stat(a->terminal, &sb) != 0) {
725                                         message(LOG | CONSOLE, "device '%s' does not exist.", a->terminal);
726                                 } else {
727                                         message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
728                                 }
729                                 halt_signal(SIGUSR1);
730                         }
731
732                         /* Make sure the terminal will act fairly normal for us */
733                         set_term(0);
734                         /* Setup stdout, stderr on the supplied terminal */
735                         dup(0);
736                         dup(0);
737
738                         messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
739                         execl(a->command, a->command, NULL);
740
741                         message(CONSOLE | LOG, "exec of '%s' failed: %m",
742                                         a->command);
743                         sync();
744                         sleep(2);
745                         init_reboot(RB_HALT_SYSTEM);
746                         loop_forever();
747                 }
748         }
749 }
750
751 static void halt_signal(int sig)
752 {
753         shutdown_system();
754         message(CONSOLE | LOG, "The system is halted.");
755         sync();
756
757         /* allow time for last message to reach serial console */
758         sleep(2);
759
760         if (sig == SIGUSR2)
761                 init_reboot(RB_POWER_OFF);
762         else
763                 init_reboot(RB_HALT_SYSTEM);
764
765         loop_forever();
766 }
767
768 static void reboot_signal(int sig)
769 {
770         shutdown_system();
771         message(CONSOLE | LOG, "Please stand by while rebooting the system.");
772         sync();
773
774         /* allow time for last message to reach serial console */
775         sleep(2);
776
777         init_reboot(RB_AUTOBOOT);
778
779         loop_forever();
780 }
781
782 static void ctrlaltdel_signal(int sig)
783 {
784         run_actions(CTRLALTDEL);
785 }
786
787 /* The SIGSTOP & SIGTSTP handler */
788 static void stop_handler(int sig)
789 {
790         int saved_errno = errno;
791
792         got_cont = 0;
793         while (!got_cont)
794                 pause();
795         got_cont = 0;
796         errno = saved_errno;
797 }
798
799 /* The SIGCONT handler */
800 static void cont_handler(int sig)
801 {
802         got_cont = 1;
803 }
804
805 #endif                                                  /* ! DEBUG_INIT */
806
807 static void new_init_action(int action, const char *command, const char *cons)
808 {
809         struct init_action *new_action, *a, *last;
810
811         if (*cons == '\0')
812                 cons = console;
813
814         /* do not run entries if console device is not available */
815         if (access(cons, R_OK | W_OK))
816                 return;
817         if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
818                 return;
819
820         new_action = calloc((size_t) (1), sizeof(struct init_action));
821         if (!new_action) {
822                 message(LOG | CONSOLE, "Memory allocation failure");
823                 loop_forever();
824         }
825
826         /* Append to the end of the list */
827         for (a = last = init_action_list; a; a = a->next) {
828                 /* don't enter action if it's already in the list,
829                  * but do overwrite existing actions */
830                 if ((strcmp(a->command, command) == 0) &&
831                     (strcmp(a->terminal, cons) ==0)) {
832                         a->action = action;
833                         free(new_action);
834                         return;
835                 }
836                 last = a;
837         }
838         if (last) {
839                 last->next = new_action;
840         } else {
841                 init_action_list = new_action;
842         }
843         strcpy(new_action->command, command);
844         new_action->action = action;
845         strcpy(new_action->terminal, cons);
846 #if 0   /* calloc zeroed always */
847         new_action->pid = 0;
848 #endif
849         messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
850                 new_action->command, new_action->action, new_action->terminal);
851 }
852
853 static void delete_init_action(struct init_action *action)
854 {
855         struct init_action *a, *b = NULL;
856
857         for (a = init_action_list; a; b = a, a = a->next) {
858                 if (a == action) {
859                         if (b == NULL) {
860                                 init_action_list = a->next;
861                         } else {
862                                 b->next = a->next;
863                         }
864                         free(a);
865                         break;
866                 }
867         }
868 }
869
870 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
871  * then parse_inittab() simply adds in some default
872  * actions(i.e., runs INIT_SCRIPT and then starts a pair
873  * of "askfirst" shells).  If CONFIG_FEATURE_USE_INITTAB
874  * _is_ defined, but /etc/inittab is missing, this
875  * results in the same set of default behaviors.
876  */
877 static void parse_inittab(void)
878 {
879 #ifdef CONFIG_FEATURE_USE_INITTAB
880         FILE *file;
881         char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
882         char tmpConsole[CONSOLE_BUFF_SIZE];
883         char *id, *runlev, *action, *command, *eol;
884         const struct init_action_type *a = actions;
885
886
887         file = fopen(INITTAB, "r");
888         if (file == NULL) {
889                 /* No inittab file -- set up some default behavior */
890 #endif
891                 /* Reboot on Ctrl-Alt-Del */
892                 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
893                 /* Umount all filesystems on halt/reboot */
894                 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
895                 /* Swapoff on halt/reboot */
896                 if(ENABLE_SWAPONOFF) new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
897                 /* Prepare to restart init when a HUP is received */
898                 new_init_action(RESTART, "/sbin/init", "");
899                 /* Askfirst shell on tty1-4 */
900                 new_init_action(ASKFIRST, bb_default_login_shell, "");
901                 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
902                 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
903                 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
904                 /* sysinit */
905                 new_init_action(SYSINIT, INIT_SCRIPT, "");
906
907                 return;
908 #ifdef CONFIG_FEATURE_USE_INITTAB
909         }
910
911         while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
912                 /* Skip leading spaces */
913                 for (id = buf; *id == ' ' || *id == '\t'; id++);
914
915                 /* Skip the line if it's a comment */
916                 if (*id == '#' || *id == '\n')
917                         continue;
918
919                 /* Trim the trailing \n */
920                 eol = strrchr(id, '\n');
921                 if (eol != NULL)
922                         *eol = '\0';
923
924                 /* Keep a copy around for posterity's sake (and error msgs) */
925                 strcpy(lineAsRead, buf);
926
927                 /* Separate the ID field from the runlevels */
928                 runlev = strchr(id, ':');
929                 if (runlev == NULL || *(runlev + 1) == '\0') {
930                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
931                         continue;
932                 } else {
933                         *runlev = '\0';
934                         ++runlev;
935                 }
936
937                 /* Separate the runlevels from the action */
938                 action = strchr(runlev, ':');
939                 if (action == NULL || *(action + 1) == '\0') {
940                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
941                         continue;
942                 } else {
943                         *action = '\0';
944                         ++action;
945                 }
946
947                 /* Separate the action from the command */
948                 command = strchr(action, ':');
949                 if (command == NULL || *(command + 1) == '\0') {
950                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
951                         continue;
952                 } else {
953                         *command = '\0';
954                         ++command;
955                 }
956
957                 /* Ok, now process it */
958                 for (a = actions; a->name != 0; a++) {
959                         if (strcmp(a->name, action) == 0) {
960                                 if (*id != '\0') {
961                                         if(strncmp(id, "/dev/", 5) == 0)
962                                                 id += 5;
963                                         strcpy(tmpConsole, "/dev/");
964                                         safe_strncpy(tmpConsole + 5, id,
965                                                 CONSOLE_BUFF_SIZE - 5);
966                                         id = tmpConsole;
967                                 }
968                                 new_init_action(a->action, command, id);
969                                 break;
970                         }
971                 }
972                 if (a->name == 0) {
973                         /* Choke on an unknown action */
974                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
975                 }
976         }
977         fclose(file);
978         return;
979 #endif                                                  /* CONFIG_FEATURE_USE_INITTAB */
980 }
981
982 #ifdef CONFIG_FEATURE_USE_INITTAB
983 static void reload_signal(int sig)
984 {
985         struct init_action *a, *tmp;
986
987         message(LOG, "Reloading /etc/inittab");
988
989         /* disable old entrys */
990         for (a = init_action_list; a; a = a->next ) {
991                 a->action = ONCE;
992         }
993
994         parse_inittab();
995
996         /* remove unused entrys */
997         for (a = init_action_list; a; a = tmp) {
998                 tmp = a->next;
999                 if (a->action & (ONCE | SYSINIT | WAIT ) &&
1000                                 a->pid == 0 ) {
1001                         delete_init_action(a);
1002                 }
1003         }
1004         run_actions(RESPAWN);
1005         return;
1006 }
1007 #endif                                                  /* CONFIG_FEATURE_USE_INITTAB */
1008
1009 extern int init_main(int argc, char **argv)
1010 {
1011         struct init_action *a;
1012         pid_t wpid;
1013         int status;
1014
1015         if (argc > 1 && !strcmp(argv[1], "-q")) {
1016                 return kill(1,SIGHUP);
1017         }
1018 #ifndef DEBUG_INIT
1019         /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1020         if (getpid() != 1 &&
1021                 (!ENABLE_FEATURE_INITRD || !strstr(bb_applet_name, "linuxrc")))
1022         {
1023                 bb_show_usage();
1024         }
1025         /* Set up sig handlers  -- be sure to
1026          * clear all of these in run() */
1027         signal(SIGHUP, exec_signal);
1028         signal(SIGQUIT, exec_signal);
1029         signal(SIGUSR1, halt_signal);
1030         signal(SIGUSR2, halt_signal);
1031         signal(SIGINT, ctrlaltdel_signal);
1032         signal(SIGTERM, reboot_signal);
1033         signal(SIGCONT, cont_handler);
1034         signal(SIGSTOP, stop_handler);
1035         signal(SIGTSTP, stop_handler);
1036
1037         /* Turn off rebooting via CTL-ALT-DEL -- we get a
1038          * SIGINT on CAD so we can shut things down gracefully... */
1039         init_reboot(RB_DISABLE_CAD);
1040 #endif
1041
1042         /* Figure out where the default console should be */
1043         console_init();
1044
1045         /* Close whatever files are open, and reset the console. */
1046         close(0);
1047         close(1);
1048         close(2);
1049
1050         if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1051                 set_term(0);
1052                 close(0);
1053         }
1054
1055         chdir("/");
1056         setsid();
1057         {
1058                 const char * const *e;
1059                 /* Make sure environs is set to something sane */
1060                 for(e = environment; *e; e++)
1061                         putenv((char *) *e);
1062         }
1063         /* Hello world */
1064         message(MAYBE_CONSOLE | LOG, "init started:  %s", bb_msg_full_version);
1065
1066         /* Make sure there is enough memory to do something useful. */
1067         if (ENABLE_SWAPONOFF) {
1068                 struct sysinfo info;
1069
1070                 if (!sysinfo(&info) &&
1071                         (info.mem_unit ? : 1) * (long long)info.totalram < MEGABYTE)
1072                 {
1073                         message(CONSOLE,"Low memory: forcing swapon.");
1074                         /* swapon -a requires /proc typically */
1075                         new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
1076                         /* Try to turn on swap */
1077                         new_init_action(SYSINIT, "/sbin/swapon -a", "");
1078                         run_actions(SYSINIT);   /* wait and removing */
1079                 }
1080         }
1081
1082         /* Check if we are supposed to be in single user mode */
1083         if (argc > 1 && (!strcmp(argv[1], "single") ||
1084                                          !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
1085                 /* Start a shell on console */
1086                 new_init_action(RESPAWN, bb_default_login_shell, "");
1087         } else {
1088                 /* Not in single user mode -- see what inittab says */
1089
1090                 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
1091                  * then parse_inittab() simply adds in some default
1092                  * actions(i.e., runs INIT_SCRIPT and then starts a pair
1093                  * of "askfirst" shells */
1094                 parse_inittab();
1095         }
1096
1097         /* Make the command line just say "init"  -- thats all, nothing else */
1098         fixup_argv(argc, argv, "init");
1099
1100         /* Now run everything that needs to be run */
1101
1102         /* First run the sysinit command */
1103         run_actions(SYSINIT);
1104
1105         /* Next run anything that wants to block */
1106         run_actions(WAIT);
1107
1108         /* Next run anything to be run only once */
1109         run_actions(ONCE);
1110
1111 #ifdef CONFIG_FEATURE_USE_INITTAB
1112         /* Redefine SIGHUP to reread /etc/inittab */
1113         signal(SIGHUP, reload_signal);
1114 #else
1115         signal(SIGHUP, SIG_IGN);
1116 #endif /* CONFIG_FEATURE_USE_INITTAB */
1117
1118
1119         /* Now run the looping stuff for the rest of forever */
1120         while (1) {
1121                 /* run the respawn stuff */
1122                 run_actions(RESPAWN);
1123
1124                 /* run the askfirst stuff */
1125                 run_actions(ASKFIRST);
1126
1127                 /* Don't consume all CPU time -- sleep a bit */
1128                 sleep(1);
1129
1130                 /* Wait for a child process to exit */
1131                 wpid = wait(&status);
1132                 while (wpid > 0) {
1133                         /* Find out who died and clean up their corpse */
1134                         for (a = init_action_list; a; a = a->next) {
1135                                 if (a->pid == wpid) {
1136                                         /* Set the pid to 0 so that the process gets
1137                                          * restarted by run_actions() */
1138                                         a->pid = 0;
1139                                         message(LOG, "Process '%s' (pid %d) exited.  "
1140                                                         "Scheduling it for restart.",
1141                                                         a->command, wpid);
1142                                 }
1143                         }
1144                         /* see if anyone else is waiting to be reaped */
1145                         wpid = waitpid (-1, &status, WNOHANG);
1146                 }
1147         }
1148 }
1149
1150 /*
1151 Local Variables:
1152 c-file-style: "linux"
1153 c-basic-offset: 4
1154 tab-width: 4
1155 End:
1156 */