657bad6cd52c150c9771ea7e84718d8ac8f8ede5
[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                 /* don't enter action if it's already in the list */
852                 if ((strcmp(a->command, command) == 0) && 
853                     (strcmp(a->terminal, cons) ==0)) {
854                         free(new_action);
855                         return;
856                 }
857         }
858         if (a) {
859                 a->next = new_action;
860         } else {
861                 init_action_list = new_action;
862         }
863         strcpy(new_action->command, command);
864         new_action->action = action;
865         strcpy(new_action->terminal, cons);
866 #if 0   /* calloc zeroed always */
867         new_action->pid = 0;
868 #endif
869         messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
870                 new_action->command, new_action->action, new_action->terminal);
871 }
872
873 static void delete_init_action(struct init_action *action)
874 {
875         struct init_action *a, *b = NULL;
876
877         for (a = init_action_list; a; b = a, a = a->next) {
878                 if (a == action) {
879                         if (b == NULL) {
880                                 init_action_list = a->next;
881                         } else {
882                                 b->next = a->next;
883                         }
884                         free(a);
885                         break;
886                 }
887         }
888 }
889
890 /* Make sure there is enough memory to do something useful. *
891  * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
892 static void check_memory(void)
893 {
894         struct stat statBuf;
895
896         if (check_free_memory() > 1000)
897                 return;
898
899 #if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
900         if (stat("/etc/fstab", &statBuf) == 0) {
901                 /* swapon -a requires /proc typically */
902                 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
903                 /* Try to turn on swap */
904                 new_init_action(SYSINIT, "/sbin/swapon -a", "");
905                 run_actions(SYSINIT);   /* wait and removing */
906                 if (check_free_memory() < 1000)
907                         goto goodnight;
908         } else
909                 goto goodnight;
910         return;
911 #endif
912
913   goodnight:
914         message(CONSOLE, "Sorry, your computer does not have enough memory.");
915         loop_forever();
916 }
917
918 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
919  * then parse_inittab() simply adds in some default
920  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
921  * of "askfirst" shells).  If CONFIG_FEATURE_USE_INITTAB 
922  * _is_ defined, but /etc/inittab is missing, this 
923  * results in the same set of default behaviors.
924  */
925 static void parse_inittab(void)
926 {
927 #ifdef CONFIG_FEATURE_USE_INITTAB
928         FILE *file;
929         char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
930         char tmpConsole[CONSOLE_BUFF_SIZE];
931         char *id, *runlev, *action, *command, *eol;
932         const struct init_action_type *a = actions;
933
934
935         file = fopen(INITTAB, "r");
936         if (file == NULL) {
937                 /* No inittab file -- set up some default behavior */
938 #endif
939                 /* Reboot on Ctrl-Alt-Del */
940                 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
941                 /* Umount all filesystems on halt/reboot */
942                 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
943 #if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
944                 /* Swapoff on halt/reboot */
945                 new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
946 #endif
947                 /* Prepare to restart init when a HUP is received */
948                 new_init_action(RESTART, "/sbin/init", "");
949                 /* Askfirst shell on tty1-4 */
950                 new_init_action(ASKFIRST, LOGIN_SHELL, "");
951                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
952                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
953                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
954                 /* sysinit */
955                 new_init_action(SYSINIT, INIT_SCRIPT, "");
956
957                 return;
958 #ifdef CONFIG_FEATURE_USE_INITTAB
959         }
960
961         while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
962                 /* Skip leading spaces */
963                 for (id = buf; *id == ' ' || *id == '\t'; id++);
964
965                 /* Skip the line if it's a comment */
966                 if (*id == '#' || *id == '\n')
967                         continue;
968
969                 /* Trim the trailing \n */
970                 eol = strrchr(id, '\n');
971                 if (eol != NULL)
972                         *eol = '\0';
973
974                 /* Keep a copy around for posterity's sake (and error msgs) */
975                 strcpy(lineAsRead, buf);
976
977                 /* Separate the ID field from the runlevels */
978                 runlev = strchr(id, ':');
979                 if (runlev == NULL || *(runlev + 1) == '\0') {
980                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
981                         continue;
982                 } else {
983                         *runlev = '\0';
984                         ++runlev;
985                 }
986
987                 /* Separate the runlevels from the action */
988                 action = strchr(runlev, ':');
989                 if (action == NULL || *(action + 1) == '\0') {
990                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
991                         continue;
992                 } else {
993                         *action = '\0';
994                         ++action;
995                 }
996
997                 /* Separate the action from the command */
998                 command = strchr(action, ':');
999                 if (command == NULL || *(command + 1) == '\0') {
1000                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
1001                         continue;
1002                 } else {
1003                         *command = '\0';
1004                         ++command;
1005                 }
1006
1007                 /* Ok, now process it */
1008                 for (a = actions; a->name != 0; a++) {
1009                         if (strcmp(a->name, action) == 0) {
1010                                 if (*id != '\0') {
1011                                         if(strncmp(id, "/dev/", 5) == 0)
1012                                                 id += 5;
1013                                         strcpy(tmpConsole, "/dev/");
1014                                         safe_strncpy(tmpConsole + 5, id,
1015                                                 CONSOLE_BUFF_SIZE - 5);
1016                                         id = tmpConsole;
1017                                 }
1018                                 new_init_action(a->action, command, id);
1019                                 break;
1020                         }
1021                 }
1022                 if (a->name == 0) {
1023                         /* Choke on an unknown action */
1024                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
1025                 }
1026         }
1027         fclose(file);
1028         return;
1029 #endif                                                  /* CONFIG_FEATURE_USE_INITTAB */
1030 }
1031
1032 static void reload_signal(int sig)
1033 {
1034         message(LOG, "Reloading /etc/inittab");
1035         parse_inittab();
1036         run_actions(RESPAWN);
1037         return;
1038 }
1039                                                                                 
1040 extern int init_main(int argc, char **argv)
1041 {
1042         struct init_action *a;
1043         pid_t wpid;
1044         int status;
1045
1046         if (argc > 1 && !strcmp(argv[1], "-q")) {
1047                 return kill_init(SIGHUP);
1048         }
1049 #ifndef DEBUG_INIT
1050         /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1051         if (getpid() != 1
1052 #ifdef CONFIG_FEATURE_INITRD
1053                 && strstr(bb_applet_name, "linuxrc") == NULL
1054 #endif
1055                 ) {
1056                 bb_show_usage();
1057         }
1058         /* Set up sig handlers  -- be sure to
1059          * clear all of these in run() */
1060         signal(SIGHUP, exec_signal);
1061         signal(SIGUSR1, halt_signal);
1062         signal(SIGUSR2, halt_signal);
1063         signal(SIGINT, ctrlaltdel_signal);
1064         signal(SIGTERM, reboot_signal);
1065         signal(SIGCONT, cont_handler);
1066         signal(SIGSTOP, stop_handler);
1067         signal(SIGTSTP, stop_handler);
1068
1069         /* Turn off rebooting via CTL-ALT-DEL -- we get a 
1070          * SIGINT on CAD so we can shut things down gracefully... */
1071         init_reboot(RB_DISABLE_CAD);
1072 #endif
1073
1074         /* Figure out where the default console should be */
1075         console_init();
1076
1077         /* Close whatever files are open, and reset the console. */
1078         close(0);
1079         close(1);
1080         close(2);
1081
1082         if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1083                 set_term(0);
1084                 close(0);
1085         }
1086
1087         chdir("/");
1088         setsid();
1089         {
1090                 const char * const *e;
1091                 /* Make sure environs is set to something sane */
1092                 for(e = environment; *e; e++)
1093                         putenv((char *) *e);
1094         }
1095         /* Hello world */
1096         message(MAYBE_CONSOLE | LOG, "init started:  %s", bb_msg_full_version);
1097
1098         /* Make sure there is enough memory to do something useful. */
1099         check_memory();
1100
1101         /* Check if we are supposed to be in single user mode */
1102         if (argc > 1 && (!strcmp(argv[1], "single") ||
1103                                          !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
1104                 /* Start a shell on console */
1105                 new_init_action(RESPAWN, LOGIN_SHELL, "");
1106         } else {
1107                 /* Not in single user mode -- see what inittab says */
1108
1109                 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
1110                  * then parse_inittab() simply adds in some default
1111                  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
1112                  * of "askfirst" shells */
1113                 parse_inittab();
1114         }
1115
1116         /* Make the command line just say "init"  -- thats all, nothing else */
1117         fixup_argv(argc, argv, "init");
1118
1119         /* Now run everything that needs to be run */
1120
1121         /* First run the sysinit command */
1122         run_actions(SYSINIT);
1123
1124         /* Next run anything that wants to block */
1125         run_actions(WAIT);
1126
1127         /* Next run anything to be run only once */
1128         run_actions(ONCE);
1129
1130         /* If there is nothing else to do, stop */
1131         if (init_action_list == NULL) {
1132                 message(LOG | CONSOLE,
1133                                 "No more tasks for init -- sleeping forever.");
1134                 loop_forever();
1135         }
1136
1137         /* Redefine SIGHUP to reread /etc/inittab */
1138         signal(SIGHUP, reload_signal);
1139
1140         /* Now run the looping stuff for the rest of forever */
1141         while (1) {
1142                 /* run the respawn stuff */
1143                 run_actions(RESPAWN);
1144
1145                 /* run the askfirst stuff */
1146                 run_actions(ASKFIRST);
1147
1148                 /* Don't consume all CPU time -- sleep a bit */
1149                 sleep(1);
1150
1151                 /* Wait for a child process to exit */
1152                 wpid = wait(&status);
1153                 while (wpid > 0) {
1154                         /* Find out who died and clean up their corpse */
1155                         for (a = init_action_list; a; a = a->next) {
1156                                 if (a->pid == wpid) {
1157                                         /* Set the pid to 0 so that the process gets
1158                                          * restarted by run_actions() */
1159                                         a->pid = 0;
1160                                         message(LOG, "Process '%s' (pid %d) exited.  "
1161                                                         "Scheduling it for restart.",
1162                                                         a->command, wpid);
1163                                 }
1164                         }
1165                         /* see if anyone else is waiting to be reaped */
1166                         wpid = waitpid (-1, &status, WNOHANG);
1167                 }
1168         }
1169 }
1170
1171 /*
1172 Local Variables:
1173 c-file-style: "linux"
1174 c-basic-offset: 4
1175 tab-width: 4
1176 End:
1177 */