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