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