Add in some (theoretical) uClinux support. Some init cleanups
[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
639         /* first disable all our signals */
640         sigemptyset(&block_signals);
641         sigaddset(&block_signals, SIGHUP);
642         sigaddset(&block_signals, SIGCHLD);
643         sigaddset(&block_signals, SIGUSR1);
644         sigaddset(&block_signals, SIGUSR2);
645         sigaddset(&block_signals, SIGINT);
646         sigaddset(&block_signals, SIGTERM);
647         sigprocmask(SIG_BLOCK, &block_signals, NULL);
648
649         /* Allow Ctrl-Alt-Del to reboot system. */
650         init_reboot(RB_ENABLE_CAD);
651
652         message(CONSOLE|LOG, "\nThe system is going down NOW !!\n");
653         sync();
654
655         /* Send signals to every process _except_ pid 1 */
656         message(CONSOLE|LOG, "Sending SIGTERM to all processes.\n");
657         kill(-1, SIGTERM);
658         sleep(1);
659         sync();
660
661         message(CONSOLE|LOG, "Sending SIGKILL to all processes.\n");
662         kill(-1, SIGKILL);
663         sleep(1);
664
665         /* run everything to be run at "shutdown" */
666         run_actions(SHUTDOWN);
667
668         sync();
669         if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
670                 /* bdflush, kupdate not needed for kernels >2.2.11 */
671                 bdflush(1, 0);
672                 sync();
673         }
674 }
675
676 static void halt_signal(int sig)
677 {
678         shutdown_system();
679         message(CONSOLE|LOG,
680                         "The system is halted. Press %s or turn off power\n",
681                         (secondConsole == NULL) /* serial console */
682                         ? "Reset" : "CTRL-ALT-DEL");
683         sync();
684
685         /* allow time for last message to reach serial console */
686         sleep(2);
687
688         if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
689                 init_reboot(RB_POWER_OFF);
690         else
691                 init_reboot(RB_HALT_SYSTEM);
692
693         loop_forever();
694 }
695
696 static void reboot_signal(int sig)
697 {
698         shutdown_system();
699         message(CONSOLE|LOG, "Please stand by while rebooting the system.\n");
700         sync();
701
702         /* allow time for last message to reach serial console */
703         sleep(2);
704
705         init_reboot(RB_AUTOBOOT);
706
707         loop_forever();
708 }
709
710 static void ctrlaltdel_signal(int sig)
711 {
712         run_actions(CTRLALTDEL);
713 }
714
715 #endif                                                  /* ! DEBUG_INIT */
716
717 static void new_initAction(initActionEnum action, char *process, char *cons)
718 {
719         initAction *newAction;
720         initAction *a;
721
722         if (*cons == '\0')
723                 cons = console;
724
725         /* If BusyBox detects that a serial console is in use, 
726          * then entries not refering to the console or null devices will _not_ be run.
727          * The exception to this rule is the null device.
728          */
729         if (secondConsole == NULL && strcmp(cons, console)
730                 && strcmp(cons, "/dev/null"))
731                 return;
732         if (strcmp(cons, "/dev/null") == 0 && action == ASKFIRST)
733                 return;
734
735         newAction = calloc((size_t) (1), sizeof(initAction));
736         if (!newAction) {
737                 message(LOG | CONSOLE, "Memory allocation failure\n");
738                 loop_forever();
739         }
740         for (a = initActionList; a && a->nextPtr; a = a->nextPtr) ;
741         if (a) {
742                 a->nextPtr = newAction;
743         } else {
744                 initActionList = newAction;
745         }
746         safe_strncpy(newAction->process, process, 255);
747         newAction->action = action;
748         safe_strncpy(newAction->console, cons, 255);
749         newAction->pid = 0;
750 //    message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
751 //      newAction->process, newAction->action, newAction->console);
752 }
753
754 static void delete_initAction(initAction * action)
755 {
756         initAction *a, *b = NULL;
757
758         for (a = initActionList; a; b = a, a = a->nextPtr) {
759                 if (a == action) {
760                         if (b == NULL) {
761                                 initActionList = a->nextPtr;
762                         } else {
763                                 b->nextPtr = a->nextPtr;
764                         }
765                         free(a);
766                         break;
767                 }
768         }
769 }
770
771 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
772  * then parse_inittab() simply adds in some default
773  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
774  * of "askfirst" shells).  If CONFIG_FEATURE_USE_INITTAB 
775  * _is_ defined, but /etc/inittab is missing, this 
776  * results in the same set of default behaviors.
777  * */
778 static void parse_inittab(void)
779 {
780 #ifdef CONFIG_FEATURE_USE_INITTAB
781         FILE *file;
782         char buf[256], lineAsRead[256], tmpConsole[256];
783         char *id, *runlev, *action, *process, *eol;
784         const struct initActionType *a = actions;
785         int foundIt;
786
787
788         file = fopen(INITTAB, "r");
789         if (file == NULL) {
790                 /* No inittab file -- set up some default behavior */
791 #endif
792                 /* Reboot on Ctrl-Alt-Del */
793                 new_initAction(CTRLALTDEL, "/sbin/reboot", console);
794                 /* Umount all filesystems on halt/reboot */
795                 new_initAction(SHUTDOWN, "/bin/umount -a -r", console);
796 #if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
797                 /* Swapoff on halt/reboot */
798                 new_initAction(SHUTDOWN, "/sbin/swapoff -a", console);
799 #endif
800                 /* Askfirst shell on tty1 */
801                 new_initAction(ASKFIRST, LOGIN_SHELL, console);
802                 /* Askfirst shell on tty2 */
803                 if (secondConsole != NULL)
804                         new_initAction(ASKFIRST, LOGIN_SHELL, secondConsole);
805                 /* Askfirst shell on tty3 */
806                 if (thirdConsole != NULL)
807                         new_initAction(ASKFIRST, LOGIN_SHELL, thirdConsole);
808                 /* Askfirst shell on tty4 */
809                 if (fourthConsole != NULL)
810                         new_initAction(ASKFIRST, LOGIN_SHELL, fourthConsole);
811                 /* sysinit */
812                 new_initAction(SYSINIT, INIT_SCRIPT, console);
813
814                 return;
815 #ifdef CONFIG_FEATURE_USE_INITTAB
816         }
817
818         while (fgets(buf, 255, file) != NULL) {
819                 foundIt = FALSE;
820                 /* Skip leading spaces */
821                 for (id = buf; *id == ' ' || *id == '\t'; id++);
822
823                 /* Skip the line if it's a comment */
824                 if (*id == '#' || *id == '\n')
825                         continue;
826
827                 /* Trim the trailing \n */
828                 eol = strrchr(id, '\n');
829                 if (eol != NULL)
830                         *eol = '\0';
831
832                 /* Keep a copy around for posterity's sake (and error msgs) */
833                 strcpy(lineAsRead, buf);
834
835                 /* Separate the ID field from the runlevels */
836                 runlev = strchr(id, ':');
837                 if (runlev == NULL || *(runlev + 1) == '\0') {
838                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
839                         continue;
840                 } else {
841                         *runlev = '\0';
842                         ++runlev;
843                 }
844
845                 /* Separate the runlevels from the action */
846                 action = strchr(runlev, ':');
847                 if (action == NULL || *(action + 1) == '\0') {
848                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
849                         continue;
850                 } else {
851                         *action = '\0';
852                         ++action;
853                 }
854
855                 /* Separate the action from the process */
856                 process = strchr(action, ':');
857                 if (process == NULL || *(process + 1) == '\0') {
858                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
859                         continue;
860                 } else {
861                         *process = '\0';
862                         ++process;
863                 }
864
865                 /* Ok, now process it */
866                 a = actions;
867                 while (a->name != 0) {
868                         if (strcmp(a->name, action) == 0) {
869                                 if (*id != '\0') {
870                                         strcpy(tmpConsole, "/dev/");
871                                         strncat(tmpConsole, id, 200);
872                                         id = tmpConsole;
873                                 }
874                                 new_initAction(a->action, process, id);
875                                 foundIt = TRUE;
876                         }
877                         a++;
878                 }
879                 if (foundIt == TRUE)
880                         continue;
881                 else {
882                         /* Choke on an unknown action */
883                         message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
884                 }
885         }
886         return;
887 #endif /* CONFIG_FEATURE_USE_INITTAB */
888 }
889
890
891
892 extern int init_main(int argc, char **argv)
893 {
894         initAction *a, *tmp;
895         pid_t wpid;
896         int status;
897
898 #ifndef DEBUG_INIT
899         /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
900         if (getpid() != 1
901 #ifdef CONFIG_FEATURE_INITRD
902                         && strstr(applet_name, "linuxrc") == NULL
903 #endif
904                           )
905         {
906                         show_usage();
907         }
908         /* Set up sig handlers  -- be sure to
909          * clear all of these in run() */
910         signal(SIGUSR1, halt_signal);
911         signal(SIGUSR2, halt_signal);
912         signal(SIGINT, ctrlaltdel_signal);
913         signal(SIGTERM, reboot_signal);
914
915         /* Turn off rebooting via CTL-ALT-DEL -- we get a 
916          * SIGINT on CAD so we can shut things down gracefully... */
917         init_reboot(RB_DISABLE_CAD);
918 #endif
919
920         /* Figure out what kernel this is running */
921         kernelVersion = get_kernel_revision();
922
923         /* Close whatever files are open, and reset the console. */
924         close(0);
925         close(1);
926         close(2);
927
928         /* Figure out where the default console should be */
929         console_init();
930
931         set_term(0);
932         chdir("/");
933         setsid();
934
935         /* Make sure PATH is set to something sane */
936         putenv("PATH="_PATH_STDPATH);
937
938         /* Hello world */
939 #ifndef DEBUG_INIT
940         message(
941 #if ! defined CONFIG_FEATURE_EXTRA_QUIET
942                         CONSOLE|
943 #endif
944                         LOG,
945                         "init started:  %s\n", full_version);
946 #else
947         message(
948 #if ! defined CONFIG_FEATURE_EXTRA_QUIET
949                         CONSOLE|
950 #endif
951                         LOG,
952                         "init(%d) started:  %s\n", getpid(), full_version);
953 #endif
954
955
956         /* Make sure there is enough memory to do something useful. */
957         check_memory();
958
959         /* Check if we are supposed to be in single user mode */
960         if (argc > 1 && (!strcmp(argv[1], "single") ||
961                                          !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
962                 /* Ask first then start a shell on tty2-4 */
963                 if (secondConsole != NULL)
964                         new_initAction(ASKFIRST, LOGIN_SHELL, secondConsole);
965                 if (thirdConsole != NULL)
966                         new_initAction(ASKFIRST, LOGIN_SHELL, thirdConsole);
967                 if (fourthConsole != NULL)
968                         new_initAction(ASKFIRST, LOGIN_SHELL, fourthConsole);
969                 /* Start a shell on tty1 */
970                 new_initAction(RESPAWN, LOGIN_SHELL, console);
971         } else {
972                 /* Not in single user mode -- see what inittab says */
973
974                 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
975                  * then parse_inittab() simply adds in some default
976                  * actions(i.e., runs INIT_SCRIPT and then starts a pair 
977                  * of "askfirst" shells */
978                 parse_inittab();
979         }
980
981         /* Make the command line just say "init"  -- thats all, nothing else */
982         fixup_argv(argc, argv, "init");
983
984         /* Now run everything that needs to be run */
985
986         /* First run the sysinit command */
987         run_actions(SYSINIT);
988         /* Next run anything that wants to block */
989         run_actions(WAIT);
990         /* Next run anything to be run only once */
991         for (a = initActionList; a; a = tmp) {
992                 tmp = a->nextPtr;
993                 if (a->action == ONCE) {
994                         run(a->process, a->console, FALSE);
995                         /* Now remove the "once" entry from the list */
996                         delete_initAction(a);
997                 }
998         }
999         /* If there is nothing else to do, stop */
1000         if (initActionList == NULL) {
1001                 message(LOG | CONSOLE,
1002                                 "No more tasks for init -- sleeping forever.\n");
1003                 loop_forever();
1004         }
1005
1006         /* Now run the looping stuff for the rest of forever */
1007         while (1) {
1008                 for (a = initActionList; a; a = a->nextPtr) {
1009                         /* Only run stuff with pid==0.  If they have
1010                          * a pid, that means they are still running */
1011                         if (a->pid == 0) {
1012                                 switch (a->action) {
1013                                 case RESPAWN:
1014                                         /* run the respawn stuff */
1015                                         a->pid = run(a->process, a->console, FALSE);
1016                                         break;
1017                                 case ASKFIRST:
1018                                         /* run the askfirst stuff */
1019                                         a->pid = run(a->process, a->console, TRUE);
1020                                         break;
1021                                         /* silence the compiler's incessant whining */
1022                                 default:
1023                                         break;
1024                                 }
1025                         }
1026                 }
1027                 /* Wait for a child process to exit */
1028                 wpid = wait(&status);
1029                 if (wpid > 0) {
1030                         /* Find out who died and clean up their corpse */
1031                         for (a = initActionList; a; a = a->nextPtr) {
1032                                 if (a->pid == wpid) {
1033                                         a->pid = 0;
1034                                         message(LOG,
1035                                                         "Process '%s' (pid %d) exited.  Scheduling it for restart.\n",
1036                                                         a->process, wpid);
1037                                 }
1038                         }
1039                 }
1040                 sleep(1);
1041         }
1042 }
1043
1044 /*
1045 Local Variables:
1046 c-file-style: "linux"
1047 c-basic-offset: 4
1048 tab-width: 4
1049 End:
1050 */