Use %m, not strerror, and strerror(err) was broken anyways and should have been
[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': %s\n", cmdpath,
664                                 strerror(errno));
665                 _exit(-1);
666         }
667         sigprocmask(SIG_SETMASK, &omask, NULL);
668         return pid;
669 }
670
671 static int waitfor(struct init_action *a)
672 {
673         int pid;
674         int status, wpid;
675
676         pid = run(a);
677         while (1) {
678                 wpid = wait(&status);
679                 if (wpid > 0 && wpid != pid) {
680                         continue;
681                 }
682                 if (wpid == pid)
683                         break;
684         }
685         return wpid;
686 }
687
688 /* Run all commands of a particular type */
689 static void run_actions(int action)
690 {
691         struct init_action *a, *tmp;
692
693         for (a = init_action_list; a; a = tmp) {
694                 tmp = a->next;
695                 if (a->action == action) {
696                         if (a->
697                                 action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
698                                 waitfor(a);
699                                 delete_init_action(a);
700                         } else if (a->action & ONCE) {
701                                 run(a);
702                                 delete_init_action(a);
703                         } else if (a->action & (RESPAWN | ASKFIRST)) {
704                                 /* Only run stuff with pid==0.  If they have
705                                  * a pid, that means it is still running */
706                                 if (a->pid == 0) {
707                                         a->pid = run(a);
708                                 }
709                         }
710                 }
711         }
712 }
713
714
715 #ifndef DEBUG_INIT
716 static void shutdown_system(void)
717 {
718         sigset_t block_signals;
719
720         /* run everything to be run at "shutdown".  This is done _prior_
721          * to killing everything, in case people wish to use scripts to
722          * shut things down gracefully... */
723         run_actions(SHUTDOWN);
724
725         /* first disable all our signals */
726         sigemptyset(&block_signals);
727         sigaddset(&block_signals, SIGHUP);
728         sigaddset(&block_signals, SIGCHLD);
729         sigaddset(&block_signals, SIGUSR1);
730         sigaddset(&block_signals, SIGUSR2);
731         sigaddset(&block_signals, SIGINT);
732         sigaddset(&block_signals, SIGTERM);
733         sigaddset(&block_signals, SIGCONT);
734         sigaddset(&block_signals, SIGSTOP);
735         sigaddset(&block_signals, SIGTSTP);
736         sigprocmask(SIG_BLOCK, &block_signals, NULL);
737
738         /* Allow Ctrl-Alt-Del to reboot system. */
739         init_reboot(RB_ENABLE_CAD);
740
741         message(CONSOLE | LOG, "\n\rThe system is going down NOW !!\n");
742         sync();
743
744         /* Send signals to every process _except_ pid 1 */
745         message(CONSOLE | LOG, "\rSending SIGTERM to all processes.\n");
746         kill(-1, SIGTERM);
747         sleep(1);
748         sync();
749
750         message(CONSOLE | LOG, "\rSending SIGKILL to all processes.\n");
751         kill(-1, SIGKILL);
752         sleep(1);
753
754         sync();
755         if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2, 2, 11)) {
756                 /* bdflush, kupdate not needed for kernels >2.2.11 */
757                 bdflush(1, 0);
758                 sync();
759         }
760 }
761
762 static void exec_signal(int sig)
763 {
764         struct init_action *a, *tmp;
765         sigset_t unblock_signals;
766
767         for (a = init_action_list; a; a = tmp) {
768                 tmp = a->next;
769                 if (a->action & RESTART) {
770                         shutdown_system();
771
772                         /* unblock all signals, blocked in shutdown_system() */
773                         sigemptyset(&unblock_signals);
774                         sigaddset(&unblock_signals, SIGHUP);
775                         sigaddset(&unblock_signals, SIGCHLD);
776                         sigaddset(&unblock_signals, SIGUSR1);
777                         sigaddset(&unblock_signals, SIGUSR2);
778                         sigaddset(&unblock_signals, SIGINT);
779                         sigaddset(&unblock_signals, SIGTERM);
780                         sigaddset(&unblock_signals, SIGCONT);
781                         sigaddset(&unblock_signals, SIGSTOP);
782                         sigaddset(&unblock_signals, SIGTSTP);
783                         sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
784
785                         message(CONSOLE | LOG, "\rTrying to re-exec %s\n", a->command);
786                         execl(a->command, a->command, NULL);
787
788                         message(CONSOLE | LOG, "\rexec of '%s' failed: %s\n",
789                                         a->command, strerror(errno));
790                         sync();
791                         sleep(2);
792                         init_reboot(RB_HALT_SYSTEM);
793                         loop_forever();
794                 }
795         }
796 }
797
798 static void halt_signal(int sig)
799 {
800         shutdown_system();
801         message(CONSOLE | LOG,
802 #if #cpu(s390)
803                         /* Seems the s390 console is Wierd(tm). */
804                         "\rThe system is halted. You may reboot now.\n"
805 #else
806                         "\rThe system is halted. Press Reset or turn off power\n"
807 #endif
808                 );
809         sync();
810
811         /* allow time for last message to reach serial console */
812         sleep(2);
813
814         if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2, 2, 0))
815                 init_reboot(RB_POWER_OFF);
816         else
817                 init_reboot(RB_HALT_SYSTEM);
818
819         loop_forever();
820 }
821
822 static void reboot_signal(int sig)
823 {
824         shutdown_system();
825         message(CONSOLE | LOG, "\rPlease stand by while rebooting the system.\n");
826         sync();
827
828         /* allow time for last message to reach serial console */
829         sleep(2);
830
831         init_reboot(RB_AUTOBOOT);
832
833         loop_forever();
834 }
835
836 static void ctrlaltdel_signal(int sig)
837 {
838         run_actions(CTRLALTDEL);
839 }
840
841 /* The SIGSTOP & SIGTSTP handler */
842 static void stop_handler(int sig)
843 {
844         int saved_errno = errno;
845
846         got_cont = 0;
847         while (!got_cont)
848                 pause();
849         got_cont = 0;
850         errno = saved_errno;
851 }
852
853 /* The SIGCONT handler */
854 static void cont_handler(int sig)
855 {
856         got_cont = 1;
857 }
858
859 #endif                                                  /* ! DEBUG_INIT */
860
861 static void new_init_action(int action, char *command, char *cons)
862 {
863         struct init_action *new_action, *a;
864
865         if (*cons == '\0')
866                 cons = console;
867
868         /* do not run entries if console device is not available */
869         if (access(cons, R_OK | W_OK))
870                 return;
871         if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
872                 return;
873
874         new_action = calloc((size_t) (1), sizeof(struct init_action));
875         if (!new_action) {
876                 message(LOG | CONSOLE, "\rMemory allocation failure\n");
877                 loop_forever();
878         }
879
880         /* Append to the end of the list */
881         for (a = init_action_list; a && a->next; a = a->next);
882         if (a) {
883                 a->next = new_action;
884         } else {
885                 init_action_list = new_action;
886         }
887         strcpy(new_action->command, command);
888         new_action->action = action;
889         strcpy(new_action->terminal, cons);
890         new_action->pid = 0;
891 /*    message(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
892                 new_action->command, new_action->action, new_action->terminal); */
893 }
894
895 static void delete_init_action(struct init_action *action)
896 {
897         struct init_action *a, *b = NULL;
898
899         for (a = init_action_list; a; b = a, a = a->next) {
900                 if (a == action) {
901                         if (b == NULL) {
902                                 init_action_list = a->next;
903                         } else {
904                                 b->next = a->next;
905                         }
906                         free(a);
907                         break;
908                 }
909         }
910 }
911
912 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
913  * then parse_inittab() simply adds in some default
914  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
915  * of "askfirst" shells).  If CONFIG_FEATURE_USE_INITTAB 
916  * _is_ defined, but /etc/inittab is missing, this 
917  * results in the same set of default behaviors.
918  */
919 static void parse_inittab(void)
920 {
921 #ifdef CONFIG_FEATURE_USE_INITTAB
922         FILE *file;
923         char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE],
924                 tmpConsole[INIT_BUFFS_SIZE];
925         char *id, *runlev, *action, *command, *eol;
926         const struct init_action_type *a = actions;
927         int foundIt;
928
929
930         file = fopen(INITTAB, "r");
931         if (file == NULL) {
932                 /* No inittab file -- set up some default behavior */
933 #endif
934                 /* Reboot on Ctrl-Alt-Del */
935                 new_init_action(CTRLALTDEL, "/sbin/reboot", console);
936                 /* Umount all filesystems on halt/reboot */
937                 new_init_action(SHUTDOWN, "/bin/umount -a -r", console);
938 #if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
939                 /* Swapoff on halt/reboot */
940                 new_init_action(SHUTDOWN, "/sbin/swapoff -a", console);
941 #endif
942                 /* Prepare to restart init when a HUP is received */
943                 new_init_action(RESTART, "/sbin/init", console);
944                 /* Askfirst shell on tty1-4 */
945                 new_init_action(ASKFIRST, LOGIN_SHELL, console);
946                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
947                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
948                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
949                 /* sysinit */
950                 new_init_action(SYSINIT, INIT_SCRIPT, console);
951
952                 return;
953 #ifdef CONFIG_FEATURE_USE_INITTAB
954         }
955
956         while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
957                 foundIt = FALSE;
958                 /* Skip leading spaces */
959                 for (id = buf; *id == ' ' || *id == '\t'; id++);
960
961                 /* Skip the line if it's a comment */
962                 if (*id == '#' || *id == '\n')
963                         continue;
964
965                 /* Trim the trailing \n */
966                 eol = strrchr(id, '\n');
967                 if (eol != NULL)
968                         *eol = '\0';
969
970                 /* Keep a copy around for posterity's sake (and error msgs) */
971                 strcpy(lineAsRead, buf);
972
973                 /* Separate the ID field from the runlevels */
974                 runlev = strchr(id, ':');
975                 if (runlev == NULL || *(runlev + 1) == '\0') {
976                         message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
977                         continue;
978                 } else {
979                         *runlev = '\0';
980                         ++runlev;
981                 }
982
983                 /* Separate the runlevels from the action */
984                 action = strchr(runlev, ':');
985                 if (action == NULL || *(action + 1) == '\0') {
986                         message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
987                         continue;
988                 } else {
989                         *action = '\0';
990                         ++action;
991                 }
992
993                 /* Separate the action from the command */
994                 command = strchr(action, ':');
995                 if (command == NULL || *(command + 1) == '\0') {
996                         message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
997                         continue;
998                 } else {
999                         *command = '\0';
1000                         ++command;
1001                 }
1002
1003                 /* Ok, now process it */
1004                 a = actions;
1005                 while (a->name != 0) {
1006                         if (strcmp(a->name, action) == 0) {
1007                                 if (*id != '\0') {
1008                                         strcpy(tmpConsole, "/dev/");
1009                                         strncat(tmpConsole, id, INIT_BUFFS_SIZE - 6);
1010                                         id = tmpConsole;
1011                                 }
1012                                 new_init_action(a->action, command, id);
1013                                 foundIt = TRUE;
1014                         }
1015                         a++;
1016                 }
1017                 if (foundIt == TRUE)
1018                         continue;
1019                 else {
1020                         /* Choke on an unknown action */
1021                         message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
1022                 }
1023         }
1024         fclose(file);
1025         return;
1026 #endif                                                  /* CONFIG_FEATURE_USE_INITTAB */
1027 }
1028
1029
1030
1031 extern int init_main(int argc, char **argv)
1032 {
1033         struct init_action *a;
1034         pid_t wpid;
1035         int status;
1036
1037         if (argc > 1 && !strcmp(argv[1], "-q")) {
1038                 /* don't assume init's pid == 1 */
1039                 long *pid = find_pid_by_name("init");
1040
1041                 if (!pid || *pid <= 0) {
1042                         pid = find_pid_by_name("linuxrc");
1043                         if (!pid || *pid <= 0)
1044                                 error_msg_and_die("no process killed");
1045                 }
1046                 kill(*pid, SIGHUP);
1047                 exit(0);
1048         }
1049 #ifndef DEBUG_INIT
1050         /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1051         if (getpid() != 1
1052 #ifdef CONFIG_FEATURE_INITRD
1053                 && strstr(applet_name, "linuxrc") == NULL
1054 #endif
1055                 ) {
1056                 show_usage();
1057         }
1058         /* Set up sig handlers  -- be sure to
1059          * clear all of these in run() */
1060         signal(SIGHUP, exec_signal);
1061         signal(SIGUSR1, halt_signal);
1062         signal(SIGUSR2, halt_signal);
1063         signal(SIGINT, ctrlaltdel_signal);
1064         signal(SIGTERM, reboot_signal);
1065         signal(SIGCONT, cont_handler);
1066         signal(SIGSTOP, stop_handler);
1067         signal(SIGTSTP, stop_handler);
1068
1069         /* Turn off rebooting via CTL-ALT-DEL -- we get a 
1070          * SIGINT on CAD so we can shut things down gracefully... */
1071         init_reboot(RB_DISABLE_CAD);
1072 #endif
1073
1074         /* Figure out what kernel this is running */
1075         kernelVersion = get_kernel_revision();
1076
1077         /* Figure out where the default console should be */
1078         console_init();
1079
1080         /* Close whatever files are open, and reset the console. */
1081         close(0);
1082         close(1);
1083         close(2);
1084
1085         if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1086                 set_term(0);
1087                 close(0);
1088         }
1089
1090         chdir("/");
1091         setsid();
1092
1093         /* Make sure PATH is set to something sane */
1094         putenv("PATH=" _PATH_STDPATH);
1095
1096         /* Hello world */
1097         message(MAYBE_CONSOLE | LOG, "\rinit started:  %s\n", full_version);
1098
1099         /* Make sure there is enough memory to do something useful. */
1100         check_memory();
1101
1102         /* Check if we are supposed to be in single user mode */
1103         if (argc > 1 && (!strcmp(argv[1], "single") ||
1104                                          !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
1105                 /* Ask first then start a shell on tty2-4 */
1106                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
1107                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
1108                 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
1109                 /* Start a shell on tty1 */
1110                 new_init_action(RESPAWN, LOGIN_SHELL, console);
1111         } else {
1112                 /* Not in single user mode -- see what inittab says */
1113
1114                 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
1115                  * then parse_inittab() simply adds in some default
1116                  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
1117                  * of "askfirst" shells */
1118                 parse_inittab();
1119         }
1120
1121         /* Make the command line just say "init"  -- thats all, nothing else */
1122         fixup_argv(argc, argv, "init");
1123
1124         /* Now run everything that needs to be run */
1125
1126         /* First run the sysinit command */
1127         run_actions(SYSINIT);
1128
1129         /* Next run anything that wants to block */
1130         run_actions(WAIT);
1131
1132         /* Next run anything to be run only once */
1133         run_actions(ONCE);
1134
1135         /* If there is nothing else to do, stop */
1136         if (init_action_list == NULL) {
1137                 message(LOG | CONSOLE,
1138                                 "\rNo more tasks for init -- sleeping forever.\n");
1139                 loop_forever();
1140         }
1141
1142         /* Now run the looping stuff for the rest of forever */
1143         while (1) {
1144                 /* run the respawn stuff */
1145                 run_actions(RESPAWN);
1146
1147                 /* run the askfirst stuff */
1148                 run_actions(ASKFIRST);
1149
1150                 /* Don't consume all CPU time -- sleep a bit */
1151                 sleep(1);
1152
1153                 /* Wait for a child process to exit */
1154                 wpid = wait(&status);
1155                 if (wpid > 0) {
1156                         /* Find out who died and clean up their corpse */
1157                         for (a = init_action_list; a; a = a->next) {
1158                                 if (a->pid == wpid) {
1159                                         /* Set the pid to 0 so that the process gets
1160                                          * restarted by run_actions() */
1161                                         a->pid = 0;
1162                                         message(LOG, "Process '%s' (pid %d) exited.  "
1163                                                         "Scheduling it for restart.\n", a->command, wpid);
1164                                 }
1165                         }
1166                 }
1167         }
1168 }
1169
1170 /*
1171 Local Variables:
1172 c-file-style: "linux"
1173 c-basic-offset: 4
1174 tab-width: 4
1175 End:
1176 */