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