Patch from Kent Robotti to being fdisk in sync with v2.12 final.
[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                         /* Close whatever files are open. */
739                         close(0);
740                         close(1);
741                         close(2);
742
743                         /* Open the new terminal device */
744                         if ((device_open(a->terminal, O_RDWR)) < 0) {
745                                 if (stat(a->terminal, &sb) != 0) {
746                                         message(LOG | CONSOLE, "device '%s' does not exist.", a->terminal);
747                                 } else {
748                                         message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
749                                 }
750                                 halt_signal(SIGUSR1);
751                         }
752
753                         /* Make sure the terminal will act fairly normal for us */
754                         set_term(0);
755                         /* Setup stdout, stderr on the supplied terminal */
756                         dup(0);
757                         dup(0);
758
759                         messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
760                         execl(a->command, a->command, NULL);
761
762                         message(CONSOLE | LOG, "exec of '%s' failed: %m",
763                                         a->command);
764                         sync();
765                         sleep(2);
766                         init_reboot(RB_HALT_SYSTEM);
767                         loop_forever();
768                 }
769         }
770 }
771
772 static void halt_signal(int sig)
773 {
774         shutdown_system();
775         message(CONSOLE | LOG,
776 #if #cpu(s390)
777                         /* Seems the s390 console is Wierd(tm). */
778                         "The system is halted. You may reboot now."
779 #else
780                         "The system is halted. Press Reset or turn off power"
781 #endif
782                 );
783         sync();
784
785         /* allow time for last message to reach serial console */
786         sleep(2);
787
788         if (sig == SIGUSR2)
789                 init_reboot(RB_POWER_OFF);
790         else
791                 init_reboot(RB_HALT_SYSTEM);
792
793         loop_forever();
794 }
795
796 static void reboot_signal(int sig)
797 {
798         shutdown_system();
799         message(CONSOLE | LOG, "Please stand by while rebooting the system.");
800         sync();
801
802         /* allow time for last message to reach serial console */
803         sleep(2);
804
805         init_reboot(RB_AUTOBOOT);
806
807         loop_forever();
808 }
809
810 static void ctrlaltdel_signal(int sig)
811 {
812         run_actions(CTRLALTDEL);
813 }
814
815 /* The SIGSTOP & SIGTSTP handler */
816 static void stop_handler(int sig)
817 {
818         int saved_errno = errno;
819
820         got_cont = 0;
821         while (!got_cont)
822                 pause();
823         got_cont = 0;
824         errno = saved_errno;
825 }
826
827 /* The SIGCONT handler */
828 static void cont_handler(int sig)
829 {
830         got_cont = 1;
831 }
832
833 /* Reap any zombie processes that are reparented to init */
834 static void child_handler(int sig)
835 {
836         int status;
837         while ( wait3(&status, WNOHANG, NULL) > 0 );
838 }
839
840 #endif                                                  /* ! DEBUG_INIT */
841
842 static void new_init_action(int action, char *command, const char *cons)
843 {
844         struct init_action *new_action, *a;
845
846         if (*cons == '\0')
847                 cons = console;
848
849         /* do not run entries if console device is not available */
850         if (access(cons, R_OK | W_OK))
851                 return;
852         if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
853                 return;
854
855         new_action = calloc((size_t) (1), sizeof(struct init_action));
856         if (!new_action) {
857                 message(LOG | CONSOLE, "Memory allocation failure");
858                 loop_forever();
859         }
860
861         /* Append to the end of the list */
862         for (a = init_action_list; a && a->next; a = a->next) {
863                 /* don't enter action if it's already in the list */
864                 if ((strcmp(a->command, command) == 0) && 
865                     (strcmp(a->terminal, cons) ==0)) {
866                         free(new_action);
867                         return;
868                 }
869         }
870         if (a) {
871                 a->next = new_action;
872         } else {
873                 init_action_list = new_action;
874         }
875         strcpy(new_action->command, command);
876         new_action->action = action;
877         strcpy(new_action->terminal, cons);
878 #if 0   /* calloc zeroed always */
879         new_action->pid = 0;
880 #endif
881         messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
882                 new_action->command, new_action->action, new_action->terminal);
883 }
884
885 static void delete_init_action(struct init_action *action)
886 {
887         struct init_action *a, *b = NULL;
888
889         for (a = init_action_list; a; b = a, a = a->next) {
890                 if (a == action) {
891                         if (b == NULL) {
892                                 init_action_list = a->next;
893                         } else {
894                                 b->next = a->next;
895                         }
896                         free(a);
897                         break;
898                 }
899         }
900 }
901
902 /* Make sure there is enough memory to do something useful. *
903  * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
904 static void check_memory(void)
905 {
906         struct stat statBuf;
907
908         if (check_free_memory() > 1000)
909                 return;
910
911 #if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
912         if (stat("/etc/fstab", &statBuf) == 0) {
913                 /* swapon -a requires /proc typically */
914                 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
915                 /* Try to turn on swap */
916                 new_init_action(SYSINIT, "/sbin/swapon -a", "");
917                 run_actions(SYSINIT);   /* wait and removing */
918                 if (check_free_memory() < 1000)
919                         goto goodnight;
920         } else
921                 goto goodnight;
922         return;
923 #endif
924
925   goodnight:
926         message(CONSOLE, "Sorry, your computer does not have enough memory.");
927         loop_forever();
928 }
929
930 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
931  * then parse_inittab() simply adds in some default
932  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
933  * of "askfirst" shells).  If CONFIG_FEATURE_USE_INITTAB 
934  * _is_ defined, but /etc/inittab is missing, this 
935  * results in the same set of default behaviors.
936  */
937 static void parse_inittab(void)
938 {
939 #ifdef CONFIG_FEATURE_USE_INITTAB
940         FILE *file;
941         char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
942         char tmpConsole[CONSOLE_BUFF_SIZE];
943         char *id, *runlev, *action, *command, *eol;
944         const struct init_action_type *a = actions;
945
946
947         file = fopen(INITTAB, "r");
948         if (file == NULL) {
949                 /* No inittab file -- set up some default behavior */
950 #endif
951                 /* Reboot on Ctrl-Alt-Del */
952                 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
953                 /* Umount all filesystems on halt/reboot */
954                 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
955 #if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
956                 /* Swapoff on halt/reboot */
957                 new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
958 #endif
959                 /* Prepare to restart init when a HUP is received */
960                 new_init_action(RESTART, "/sbin/init", "");
961                 /* Askfirst shell on tty1-4 */
962                 new_init_action(ASKFIRST, LOGIN_SHELL, "");
963                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
964                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
965                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
966                 /* sysinit */
967                 new_init_action(SYSINIT, INIT_SCRIPT, "");
968
969                 return;
970 #ifdef CONFIG_FEATURE_USE_INITTAB
971         }
972
973         while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
974                 /* Skip leading spaces */
975                 for (id = buf; *id == ' ' || *id == '\t'; id++);
976
977                 /* Skip the line if it's a comment */
978                 if (*id == '#' || *id == '\n')
979                         continue;
980
981                 /* Trim the trailing \n */
982                 eol = strrchr(id, '\n');
983                 if (eol != NULL)
984                         *eol = '\0';
985
986                 /* Keep a copy around for posterity's sake (and error msgs) */
987                 strcpy(lineAsRead, buf);
988
989                 /* Separate the ID field from the runlevels */
990                 runlev = strchr(id, ':');
991                 if (runlev == NULL || *(runlev + 1) == '\0') {
992                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
993                         continue;
994                 } else {
995                         *runlev = '\0';
996                         ++runlev;
997                 }
998
999                 /* Separate the runlevels from the action */
1000                 action = strchr(runlev, ':');
1001                 if (action == NULL || *(action + 1) == '\0') {
1002                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
1003                         continue;
1004                 } else {
1005                         *action = '\0';
1006                         ++action;
1007                 }
1008
1009                 /* Separate the action from the command */
1010                 command = strchr(action, ':');
1011                 if (command == NULL || *(command + 1) == '\0') {
1012                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
1013                         continue;
1014                 } else {
1015                         *command = '\0';
1016                         ++command;
1017                 }
1018
1019                 /* Ok, now process it */
1020                 for (a = actions; a->name != 0; a++) {
1021                         if (strcmp(a->name, action) == 0) {
1022                                 if (*id != '\0') {
1023                                         if(strncmp(id, "/dev/", 5) == 0)
1024                                                 id += 5;
1025                                         strcpy(tmpConsole, "/dev/");
1026                                         safe_strncpy(tmpConsole + 5, id,
1027                                                 CONSOLE_BUFF_SIZE - 5);
1028                                         id = tmpConsole;
1029                                 }
1030                                 new_init_action(a->action, command, id);
1031                                 break;
1032                         }
1033                 }
1034                 if (a->name == 0) {
1035                         /* Choke on an unknown action */
1036                         message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
1037                 }
1038         }
1039         fclose(file);
1040         return;
1041 #endif                                                  /* CONFIG_FEATURE_USE_INITTAB */
1042 }
1043
1044 static void reload_signal(int sig)
1045 {
1046         message(LOG, "Reloading /etc/inittab");
1047         parse_inittab();
1048         run_actions(RESPAWN);
1049         return;
1050 }
1051                                                                                 
1052 extern int init_main(int argc, char **argv)
1053 {
1054         struct init_action *a;
1055         pid_t wpid;
1056         int status;
1057
1058         if (argc > 1 && !strcmp(argv[1], "-q")) {
1059                 return kill_init(SIGHUP);
1060         }
1061 #ifndef DEBUG_INIT
1062         /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1063         if (getpid() != 1
1064 #ifdef CONFIG_FEATURE_INITRD
1065                 && strstr(bb_applet_name, "linuxrc") == NULL
1066 #endif
1067                 ) {
1068                 bb_show_usage();
1069         }
1070         /* Set up sig handlers  -- be sure to
1071          * clear all of these in run() */
1072         signal(SIGHUP, exec_signal);
1073         signal(SIGUSR1, halt_signal);
1074         signal(SIGUSR2, halt_signal);
1075         signal(SIGINT, ctrlaltdel_signal);
1076         signal(SIGTERM, reboot_signal);
1077         signal(SIGCONT, cont_handler);
1078         signal(SIGSTOP, stop_handler);
1079         signal(SIGTSTP, stop_handler);
1080         signal(SIGCHLD, child_handler);
1081
1082         /* Turn off rebooting via CTL-ALT-DEL -- we get a 
1083          * SIGINT on CAD so we can shut things down gracefully... */
1084         init_reboot(RB_DISABLE_CAD);
1085 #endif
1086
1087         /* Figure out where the default console should be */
1088         console_init();
1089
1090         /* Close whatever files are open, and reset the console. */
1091         close(0);
1092         close(1);
1093         close(2);
1094
1095         if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1096                 set_term(0);
1097                 close(0);
1098         }
1099
1100         chdir("/");
1101         setsid();
1102         {
1103                 const char * const *e;
1104                 /* Make sure environs is set to something sane */
1105                 for(e = environment; *e; e++)
1106                         putenv((char *) *e);
1107         }
1108         /* Hello world */
1109         message(MAYBE_CONSOLE | LOG, "init started:  %s", bb_msg_full_version);
1110
1111         /* Make sure there is enough memory to do something useful. */
1112         check_memory();
1113
1114         /* Check if we are supposed to be in single user mode */
1115         if (argc > 1 && (!strcmp(argv[1], "single") ||
1116                                          !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
1117                 /* Start a shell on console */
1118                 new_init_action(RESPAWN, LOGIN_SHELL, "");
1119         } else {
1120                 /* Not in single user mode -- see what inittab says */
1121
1122                 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
1123                  * then parse_inittab() simply adds in some default
1124                  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
1125                  * of "askfirst" shells */
1126                 parse_inittab();
1127         }
1128
1129         /* Make the command line just say "init"  -- thats all, nothing else */
1130         fixup_argv(argc, argv, "init");
1131
1132         /* Now run everything that needs to be run */
1133
1134         /* First run the sysinit command */
1135         run_actions(SYSINIT);
1136
1137         /* Next run anything that wants to block */
1138         run_actions(WAIT);
1139
1140         /* Next run anything to be run only once */
1141         run_actions(ONCE);
1142
1143         /* If there is nothing else to do, stop */
1144         if (init_action_list == NULL) {
1145                 message(LOG | CONSOLE,
1146                                 "No more tasks for init -- sleeping forever.");
1147                 loop_forever();
1148         }
1149
1150         /* Redefine SIGHUP to reread /etc/inittab */
1151         signal(SIGHUP, reload_signal);
1152
1153         /* Now run the looping stuff for the rest of forever */
1154         while (1) {
1155                 /* run the respawn stuff */
1156                 run_actions(RESPAWN);
1157
1158                 /* run the askfirst stuff */
1159                 run_actions(ASKFIRST);
1160
1161                 /* Don't consume all CPU time -- sleep a bit */
1162                 sleep(1);
1163
1164                 /* Wait for a child process to exit */
1165                 wpid = wait(&status);
1166                 while (wpid > 0) {
1167                         /* Find out who died and clean up their corpse */
1168                         for (a = init_action_list; a; a = a->next) {
1169                                 if (a->pid == wpid) {
1170                                         /* Set the pid to 0 so that the process gets
1171                                          * restarted by run_actions() */
1172                                         a->pid = 0;
1173                                         message(LOG, "Process '%s' (pid %d) exited.  "
1174                                                         "Scheduling it for restart.",
1175                                                         a->command, wpid);
1176                                 }
1177                         }
1178                         /* see if anyone else is waiting to be reaped */
1179                         wpid = waitpid (-1, &status, WNOHANG);
1180                 }
1181         }
1182 }
1183
1184 /*
1185 Local Variables:
1186 c-file-style: "linux"
1187 c-basic-offset: 4
1188 tab-width: 4
1189 End:
1190 */