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