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