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