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