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