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