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