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