There have been many reports of init failing to reboot and/or failing to halt
[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-2002 by Erik Andersen <andersee@debian.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 "busybox.h"
46 #ifdef CONFIG_SYSLOGD
47 # include <sys/syslog.h>
48 #endif
49 #if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__)
50 #include <sys/reboot.h>
51 #endif
52
53
54 #if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_MMU__)
55 #define fork    vfork
56 #endif
57
58 #define INIT_BUFFS_SIZE 256
59
60 /* From <linux/vt.h> */
61 struct vt_stat {
62         unsigned short v_active;        /* active vt */
63         unsigned short v_signal;        /* signal to send */
64         unsigned short v_state; /* vt bitmask */
65 };
66 static const int VT_GETSTATE = 0x5603;  /* get global vt state info */
67
68 /* From <linux/serial.h> */
69 struct serial_struct {
70         int type;
71         int line;
72         int port;
73         int irq;
74         int flags;
75         int xmit_fifo_size;
76         int custom_divisor;
77         int baud_base;
78         unsigned short close_delay;
79         char reserved_char[2];
80         int hub6;
81         unsigned short closing_wait;    /* time to wait before closing */
82         unsigned short closing_wait2;   /* no longer used... */
83         int reserved[4];
84 };
85
86
87 #ifndef _PATH_STDPATH
88 #define _PATH_STDPATH   "/usr/bin:/bin:/usr/sbin:/sbin"
89 #endif
90
91 #if defined CONFIG_FEATURE_INIT_COREDUMPS
92 /*
93  * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called 
94  * before processes are spawned to set core file size as unlimited.
95  * This is for debugging only.  Don't use this is production, unless
96  * you want core dumps lying about....
97  */
98 #define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
99 #include <sys/resource.h>
100 #include <sys/time.h>
101 #endif
102
103 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
104
105 #if __GNU_LIBRARY__ > 5
106 #include <sys/kdaemon.h>
107 #else
108 extern int bdflush(int func, long int data);
109 #endif
110
111 #define SHELL        "/bin/sh"  /* Default shell */
112 #define LOGIN_SHELL  "-" SHELL  /* Default login shell */
113 #define INITTAB      "/etc/inittab"     /* inittab file location */
114 #ifndef INIT_SCRIPT
115 #define INIT_SCRIPT  "/etc/init.d/rcS"  /* Default sysinit script. */
116 #endif
117
118 #define MAXENV  16              /* Number of env. vars */
119
120 #define CONSOLE_BUFF_SIZE 32
121
122 /* Allowed init action types */
123 #define SYSINIT     0x001
124 #define RESPAWN     0x002
125 #define ASKFIRST    0x004
126 #define WAIT        0x008
127 #define ONCE        0x010
128 #define CTRLALTDEL  0x020
129 #define SHUTDOWN    0x040
130 #define RESTART     0x080
131
132 /* A mapping between "inittab" action name strings and action type codes. */
133 struct init_action_type {
134         const char *name;
135         int action;
136 };
137
138 static const struct init_action_type actions[] = {
139         {"sysinit", SYSINIT},
140         {"respawn", RESPAWN},
141         {"askfirst", ASKFIRST},
142         {"wait", WAIT},
143         {"once", ONCE},
144         {"ctrlaltdel", CTRLALTDEL},
145         {"shutdown", SHUTDOWN},
146         {"restart", RESTART},
147         {0, 0}
148 };
149
150 /* Set up a linked list of init_actions, to be read from inittab */
151 struct init_action {
152         pid_t pid;
153         char command[INIT_BUFFS_SIZE];
154         char terminal[CONSOLE_BUFF_SIZE];
155         struct init_action *next;
156         int action;
157 };
158
159 /* Static variables */
160 static struct init_action *init_action_list = NULL;
161 static int kernelVersion;
162 static char console[CONSOLE_BUFF_SIZE] = _PATH_CONSOLE;
163
164 #ifndef CONFIG_SYSLOGD
165 static char *log = VC_5;
166 #endif
167 static sig_atomic_t got_cont = 0;
168 static const int LOG = 0x1;
169 static const int CONSOLE = 0x2;
170
171 #if defined CONFIG_FEATURE_EXTRA_QUIET
172 static const int MAYBE_CONSOLE = 0x0;
173 #else
174 #define MAYBE_CONSOLE   CONSOLE
175 #endif
176 #ifndef RB_HALT_SYSTEM
177 static const int RB_HALT_SYSTEM = 0xcdef0123;
178 static const int RB_ENABLE_CAD = 0x89abcdef;
179 static const int RB_DISABLE_CAD = 0;
180
181 #define RB_POWER_OFF    0x4321fedc
182 static const int RB_AUTOBOOT = 0x01234567;
183 #endif
184
185 static const char * const environment[] = {
186         "HOME=/",
187         "PATH=" _PATH_STDPATH,
188         "SHELL=" SHELL,
189         "USER=root",
190         NULL
191 };
192
193 /* Function prototypes */
194 static void delete_init_action(struct init_action *a);
195 static int waitfor(const struct init_action *a);
196
197
198 static void loop_forever(void)
199 {
200         while (1)
201                 sleep(1);
202 }
203
204 /* Print a message to the specified device.
205  * Device may be bitwise-or'd from LOG | CONSOLE */
206 #ifndef DEBUG_INIT
207 static inline void messageD(int device, const char *fmt, ...)
208 {
209 }
210 #else
211 #define messageD message
212 #endif
213 static void message(int device, const char *fmt, ...)
214         __attribute__ ((format(printf, 2, 3)));
215 static void message(int device, const char *fmt, ...)
216 {
217         va_list arguments;
218         int l;
219         char msg[1024];
220 #ifndef CONFIG_SYSLOGD
221         static int log_fd = -1;
222 #endif
223
224         msg[0] = '\r';
225                 va_start(arguments, fmt);
226         l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments) + 1;
227                 va_end(arguments);
228
229 #ifdef CONFIG_SYSLOGD
230         /* Log the message to syslogd */
231         if (device & LOG) {
232                 /* don`t out "\r\n" */
233                 syslog_msg(LOG_DAEMON, LOG_INFO, msg + 1);
234         }
235
236         msg[l++] = '\n';
237         msg[l] = 0;
238 #else
239
240         msg[l++] = '\n';
241         msg[l] = 0;
242         /* Take full control of the log tty, and never close it.
243          * It's mine, all mine!  Muhahahaha! */
244         if (log_fd < 0) {
245                 if ((log_fd = device_open(log, O_RDWR | O_NDELAY | O_NOCTTY)) < 0) {
246                         log_fd = -2;
247                         bb_error_msg("Bummer, can't write to log on %s!", log);
248                         device = CONSOLE;
249                 } else {
250                         fcntl(log_fd, F_SETFD, FD_CLOEXEC);
251                 }
252         }
253         if ((device & LOG) && (log_fd >= 0)) {
254                 bb_full_write(log_fd, msg, l);
255         }
256 #endif
257
258         if (device & CONSOLE) {
259                 int fd = device_open(_PATH_CONSOLE,
260                                         O_WRONLY | O_NOCTTY | O_NDELAY);
261                 /* Always send console messages to /dev/console so people will see them. */
262                 if (fd >= 0) {
263                         bb_full_write(fd, msg, l);
264                         close(fd);
265 #ifdef DEBUG_INIT
266                 /* all descriptors may be closed */
267                 } else {
268                         bb_error_msg("Bummer, can't print: ");
269                         va_start(arguments, fmt);
270                         vfprintf(stderr, fmt, arguments);
271                         va_end(arguments);
272 #endif
273                 }
274         }
275 }
276
277 /* Set terminal settings to reasonable defaults */
278 static void set_term(int fd)
279 {
280         struct termios tty;
281
282         tcgetattr(fd, &tty);
283
284         /* set control chars */
285         tty.c_cc[VINTR] = 3;    /* C-c */
286         tty.c_cc[VQUIT] = 28;   /* C-\ */
287         tty.c_cc[VERASE] = 127; /* C-? */
288         tty.c_cc[VKILL] = 21;   /* C-u */
289         tty.c_cc[VEOF] = 4;     /* C-d */
290         tty.c_cc[VSTART] = 17;  /* C-q */
291         tty.c_cc[VSTOP] = 19;   /* C-s */
292         tty.c_cc[VSUSP] = 26;   /* C-z */
293
294         /* use line dicipline 0 */
295         tty.c_line = 0;
296
297         /* Make it be sane */
298         tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
299         tty.c_cflag |= CREAD | HUPCL | CLOCAL;
300
301
302         /* input modes */
303         tty.c_iflag = ICRNL | IXON | IXOFF;
304
305         /* output modes */
306         tty.c_oflag = OPOST | ONLCR;
307
308         /* local modes */
309         tty.c_lflag =
310                 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
311
312         tcsetattr(fd, TCSANOW, &tty);
313 }
314
315 /* How much memory does this machine have?
316    Units are kBytes to avoid overflow on 4GB machines */
317 static int check_free_memory(void)
318 {
319         struct sysinfo info;
320         unsigned int result, u, s = 10;
321
322         if (sysinfo(&info) != 0) {
323                 bb_perror_msg("Error checking free memory");
324                 return -1;
325         }
326
327         /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
328          * Kernels 2.4.0 return info.mem_unit in bytes. */
329         u = info.mem_unit;
330         if (u == 0)
331                 u = 1;
332         while ((u & 1) == 0 && s > 0) {
333                 u >>= 1;
334                 s--;
335         }
336         result = (info.totalram >> s) + (info.totalswap >> s);
337         result = result * u;
338         if (result < 0)
339                 result = INT_MAX;
340         return result;
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] = 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 machint to panic when 
668          * the init process is killed.... */
669         if ((pid = fork()) == 0) {
670 #if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__)
671                 reboot(magic);
672 #else
673                 reboot(0xfee1dead, 672274793, magic);
674 #endif
675                 _exit(0);
676         }
677         waitpid (pid, NULL, 0);
678 }
679
680 static void shutdown_system(void)
681 {
682         sigset_t block_signals;
683
684         /* run everything to be run at "shutdown".  This is done _prior_
685          * to killing everything, in case people wish to use scripts to
686          * shut things down gracefully... */
687         run_actions(SHUTDOWN);
688
689         /* first disable all our signals */
690         sigemptyset(&block_signals);
691         sigaddset(&block_signals, SIGHUP);
692         sigaddset(&block_signals, SIGCHLD);
693         sigaddset(&block_signals, SIGUSR1);
694         sigaddset(&block_signals, SIGUSR2);
695         sigaddset(&block_signals, SIGINT);
696         sigaddset(&block_signals, SIGTERM);
697         sigaddset(&block_signals, SIGCONT);
698         sigaddset(&block_signals, SIGSTOP);
699         sigaddset(&block_signals, SIGTSTP);
700         sigprocmask(SIG_BLOCK, &block_signals, NULL);
701
702         /* Allow Ctrl-Alt-Del to reboot system. */
703         init_reboot(RB_ENABLE_CAD);
704
705         message(CONSOLE | LOG, "The system is going down NOW !!");
706         sync();
707
708         /* Send signals to every process _except_ pid 1 */
709         message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
710         kill(-1, SIGTERM);
711         sleep(1);
712         sync();
713
714         message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
715         kill(-1, SIGKILL);
716         sleep(1);
717
718         sync();
719         if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2, 2, 11)) {
720                 /* bdflush, kupdate not needed for kernels >2.2.11 */
721                 bdflush(1, 0);
722                 sync();
723         }
724 }
725
726 static void exec_signal(int sig)
727 {
728         struct init_action *a, *tmp;
729         sigset_t unblock_signals;
730
731         for (a = init_action_list; a; a = tmp) {
732                 tmp = a->next;
733                 if (a->action & RESTART) {
734                         shutdown_system();
735
736                         /* unblock all signals, blocked in shutdown_system() */
737                         sigemptyset(&unblock_signals);
738                         sigaddset(&unblock_signals, SIGHUP);
739                         sigaddset(&unblock_signals, SIGCHLD);
740                         sigaddset(&unblock_signals, SIGUSR1);
741                         sigaddset(&unblock_signals, SIGUSR2);
742                         sigaddset(&unblock_signals, SIGINT);
743                         sigaddset(&unblock_signals, SIGTERM);
744                         sigaddset(&unblock_signals, SIGCONT);
745                         sigaddset(&unblock_signals, SIGSTOP);
746                         sigaddset(&unblock_signals, SIGTSTP);
747                         sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
748
749                         messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
750                         execl(a->command, a->command, NULL);
751
752                         message(CONSOLE | LOG, "exec of '%s' failed: %m",
753                                         a->command);
754                         sync();
755                         sleep(2);
756                         init_reboot(RB_HALT_SYSTEM);
757                         loop_forever();
758                 }
759         }
760 }
761
762 static void halt_signal(int sig)
763 {
764         shutdown_system();
765         message(CONSOLE | LOG,
766 #if #cpu(s390)
767                         /* Seems the s390 console is Wierd(tm). */
768                         "The system is halted. You may reboot now."
769 #else
770                         "The system is halted. Press Reset or turn off power"
771 #endif
772                 );
773         sync();
774
775         /* allow time for last message to reach serial console */
776         sleep(2);
777
778         if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2, 2, 0))
779                 init_reboot(RB_POWER_OFF);
780         else
781                 init_reboot(RB_HALT_SYSTEM);
782
783         loop_forever();
784 }
785
786 static void reboot_signal(int sig)
787 {
788         shutdown_system();
789         message(CONSOLE | LOG, "Please stand by while rebooting the system.");
790         sync();
791
792         /* allow time for last message to reach serial console */
793         sleep(2);
794
795         init_reboot(RB_AUTOBOOT);
796
797         loop_forever();
798 }
799
800 static void ctrlaltdel_signal(int sig)
801 {
802         run_actions(CTRLALTDEL);
803 }
804
805 /* The SIGSTOP & SIGTSTP handler */
806 static void stop_handler(int sig)
807 {
808         int saved_errno = errno;
809
810         got_cont = 0;
811         while (!got_cont)
812                 pause();
813         got_cont = 0;
814         errno = saved_errno;
815 }
816
817 /* The SIGCONT handler */
818 static void cont_handler(int sig)
819 {
820         got_cont = 1;
821 }
822
823 #endif                                                  /* ! DEBUG_INIT */
824
825 static void new_init_action(int action, char *command, const char *cons)
826 {
827         struct init_action *new_action, *a;
828
829         if (*cons == '\0')
830                 cons = console;
831
832         /* do not run entries if console device is not available */
833         if (access(cons, R_OK | W_OK))
834                 return;
835         if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
836                 return;
837
838         new_action = calloc((size_t) (1), sizeof(struct init_action));
839         if (!new_action) {
840                 message(LOG | CONSOLE, "Memory allocation failure");
841                 loop_forever();
842         }
843
844         /* Append to the end of the list */
845         for (a = init_action_list; a && a->next; a = a->next);
846         if (a) {
847                 a->next = new_action;
848         } else {
849                 init_action_list = new_action;
850         }
851         strcpy(new_action->command, command);
852         new_action->action = action;
853         strcpy(new_action->terminal, cons);
854 #if 0   /* calloc zeroed always */
855         new_action->pid = 0;
856 #endif
857         messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
858                 new_action->command, new_action->action, new_action->terminal);
859 }
860
861 static void delete_init_action(struct init_action *action)
862 {
863         struct init_action *a, *b = NULL;
864
865         for (a = init_action_list; a; b = a, a = a->next) {
866                 if (a == action) {
867                         if (b == NULL) {
868                                 init_action_list = a->next;
869                         } else {
870                                 b->next = a->next;
871                         }
872                         free(a);
873                         break;
874                 }
875         }
876 }
877
878 /* Make sure there is enough memory to do something useful. *
879  * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
880 static void check_memory(void)
881 {
882         struct stat statBuf;
883
884         if (check_free_memory() > 1000)
885                 return;
886
887 #if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
888         if (stat("/etc/fstab", &statBuf) == 0) {
889                 /* swapon -a requires /proc typically */
890                 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
891                 /* Try to turn on swap */
892                 new_init_action(SYSINIT, "/sbin/swapon -a", "");
893                 run_actions(SYSINIT);   /* wait and removing */
894                 if (check_free_memory() < 1000)
895                         goto goodnight;
896         } else
897                 goto goodnight;
898         return;
899 #endif
900
901   goodnight:
902         message(CONSOLE, "Sorry, your computer does not have enough memory.");
903         loop_forever();
904 }
905
906 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
907  * then parse_inittab() simply adds in some default
908  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
909  * of "askfirst" shells).  If CONFIG_FEATURE_USE_INITTAB 
910  * _is_ defined, but /etc/inittab is missing, this 
911  * results in the same set of default behaviors.
912  */
913 static void parse_inittab(void)
914 {
915 #ifdef CONFIG_FEATURE_USE_INITTAB
916         FILE *file;
917         char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
918         char tmpConsole[CONSOLE_BUFF_SIZE];
919         char *id, *runlev, *action, *command, *eol;
920         const struct init_action_type *a = actions;
921
922
923         file = fopen(INITTAB, "r");
924         if (file == NULL) {
925                 /* No inittab file -- set up some default behavior */
926 #endif
927                 /* Reboot on Ctrl-Alt-Del */
928                 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
929                 /* Umount all filesystems on halt/reboot */
930                 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
931 #if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
932                 /* Swapoff on halt/reboot */
933                 new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
934 #endif
935                 /* Prepare to restart init when a HUP is received */
936                 new_init_action(RESTART, "/sbin/init", "");
937                 /* Askfirst shell on tty1-4 */
938                 new_init_action(ASKFIRST, LOGIN_SHELL, "");
939                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
940                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
941                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
942                 /* sysinit */
943                 new_init_action(SYSINIT, INIT_SCRIPT, "");
944
945                 return;
946 #ifdef CONFIG_FEATURE_USE_INITTAB
947         }
948
949         while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
950                 /* Skip leading spaces */
951                 for (id = buf; *id == ' ' || *id == '\t'; id++);
952
953                 /* Skip the line if it's a comment */
954                 if (*id == '#' || *id == '\n')
955                         continue;
956
957                 /* Trim the trailing \n */
958                 eol = strrchr(id, '\n');
959                 if (eol != NULL)
960                         *eol = '\0';
961
962                 /* Keep a copy around for posterity's sake (and error msgs) */
963                 strcpy(lineAsRead, buf);
964
965                 /* Separate the ID field from the runlevels */
966                 runlev = strchr(id, ':');
967                 if (runlev == NULL || *(runlev + 1) == '\0') {
968                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
969                         continue;
970                 } else {
971                         *runlev = '\0';
972                         ++runlev;
973                 }
974
975                 /* Separate the runlevels from the action */
976                 action = strchr(runlev, ':');
977                 if (action == NULL || *(action + 1) == '\0') {
978                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
979                         continue;
980                 } else {
981                         *action = '\0';
982                         ++action;
983                 }
984
985                 /* Separate the action from the command */
986                 command = strchr(action, ':');
987                 if (command == NULL || *(command + 1) == '\0') {
988                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
989                         continue;
990                 } else {
991                         *command = '\0';
992                         ++command;
993                 }
994
995                 /* Ok, now process it */
996                 for (a = actions; a->name != 0; a++) {
997                         if (strcmp(a->name, action) == 0) {
998                                 if (*id != '\0') {
999                                         if(strncmp(id, "/dev/", 5) == 0)
1000                                                 id += 5;
1001                                         strcpy(tmpConsole, "/dev/");
1002                                         safe_strncpy(tmpConsole + 5, id,
1003                                                 CONSOLE_BUFF_SIZE - 5);
1004                                         id = tmpConsole;
1005                                 }
1006                                 new_init_action(a->action, command, id);
1007                                 break;
1008                         }
1009                 }
1010                 if (a->name == 0) {
1011                         /* Choke on an unknown action */
1012                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
1013                 }
1014         }
1015         fclose(file);
1016         return;
1017 #endif                                                  /* CONFIG_FEATURE_USE_INITTAB */
1018 }
1019
1020
1021 extern int init_main(int argc, char **argv)
1022 {
1023         struct init_action *a;
1024         pid_t wpid;
1025         int status;
1026
1027         if (argc > 1 && !strcmp(argv[1], "-q")) {
1028                 /* don't assume init's pid == 1 */
1029                 long *pid = find_pid_by_name("init");
1030
1031                 if (!pid || *pid <= 0) {
1032                         pid = find_pid_by_name("linuxrc");
1033                         if (!pid || *pid <= 0)
1034                                 bb_error_msg_and_die("no process killed");
1035                 }
1036                 return kill(*pid, SIGHUP);
1037         }
1038 #ifndef DEBUG_INIT
1039         /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1040         if (getpid() != 1
1041 #ifdef CONFIG_FEATURE_INITRD
1042                 && strstr(bb_applet_name, "linuxrc") == NULL
1043 #endif
1044                 ) {
1045                 bb_show_usage();
1046         }
1047         /* Set up sig handlers  -- be sure to
1048          * clear all of these in run() */
1049         signal(SIGHUP, exec_signal);
1050         signal(SIGUSR1, halt_signal);
1051         signal(SIGUSR2, halt_signal);
1052         signal(SIGINT, ctrlaltdel_signal);
1053         signal(SIGTERM, reboot_signal);
1054         signal(SIGCONT, cont_handler);
1055         signal(SIGSTOP, stop_handler);
1056         signal(SIGTSTP, stop_handler);
1057
1058         /* Turn off rebooting via CTL-ALT-DEL -- we get a 
1059          * SIGINT on CAD so we can shut things down gracefully... */
1060         init_reboot(RB_DISABLE_CAD);
1061 #endif
1062
1063         /* Figure out what kernel this is running */
1064         kernelVersion = get_kernel_revision();
1065
1066         /* Figure out where the default console should be */
1067         console_init();
1068
1069         /* Close whatever files are open, and reset the console. */
1070         close(0);
1071         close(1);
1072         close(2);
1073
1074         if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1075                 set_term(0);
1076                 close(0);
1077         }
1078
1079         chdir("/");
1080         setsid();
1081         {
1082                 const char * const *e;
1083                 /* Make sure environs is set to something sane */
1084                 for(e = environment; *e; e++)
1085                         putenv((char *) *e);
1086         }
1087         /* Hello world */
1088         message(MAYBE_CONSOLE | LOG, "init started:  %s", bb_msg_full_version);
1089
1090         /* Make sure there is enough memory to do something useful. */
1091         check_memory();
1092
1093         /* Check if we are supposed to be in single user mode */
1094         if (argc > 1 && (!strcmp(argv[1], "single") ||
1095                                          !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
1096                 /* Start a shell on console */
1097                 new_init_action(RESPAWN, LOGIN_SHELL, "");
1098         } else {
1099                 /* Not in single user mode -- see what inittab says */
1100
1101                 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
1102                  * then parse_inittab() simply adds in some default
1103                  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
1104                  * of "askfirst" shells */
1105                 parse_inittab();
1106         }
1107
1108         /* Make the command line just say "init"  -- thats all, nothing else */
1109         fixup_argv(argc, argv, "init");
1110
1111         /* Now run everything that needs to be run */
1112
1113         /* First run the sysinit command */
1114         run_actions(SYSINIT);
1115
1116         /* Next run anything that wants to block */
1117         run_actions(WAIT);
1118
1119         /* Next run anything to be run only once */
1120         run_actions(ONCE);
1121
1122         /* If there is nothing else to do, stop */
1123         if (init_action_list == NULL) {
1124                 message(LOG | CONSOLE,
1125                                 "No more tasks for init -- sleeping forever.");
1126                 loop_forever();
1127         }
1128
1129         /* Now run the looping stuff for the rest of forever */
1130         while (1) {
1131                 /* run the respawn stuff */
1132                 run_actions(RESPAWN);
1133
1134                 /* run the askfirst stuff */
1135                 run_actions(ASKFIRST);
1136
1137                 /* Don't consume all CPU time -- sleep a bit */
1138                 sleep(1);
1139
1140                 /* Wait for a child process to exit */
1141                 wpid = wait(&status);
1142                 while (wpid > 0) {
1143                         /* Find out who died and clean up their corpse */
1144                         for (a = init_action_list; a; a = a->next) {
1145                                 if (a->pid == wpid) {
1146                                         /* Set the pid to 0 so that the process gets
1147                                          * restarted by run_actions() */
1148                                         a->pid = 0;
1149                                         message(LOG, "Process '%s' (pid %d) exited.  "
1150                                                         "Scheduling it for restart.",
1151                                                         a->command, wpid);
1152                                 }
1153                         }
1154                         /* see if anyone else is waiting to be reaped */
1155                         wpid = waitpid (-1, &status, WNOHANG);
1156                 }
1157         }
1158 }
1159
1160 /*
1161 Local Variables:
1162 c-file-style: "linux"
1163 c-basic-offset: 4
1164 tab-width: 4
1165 End:
1166 */