blob: af10f98f06efb8c5a77dc683a3c24f8e013e33f5 [file] [log] [blame]
Erik Andersenccc74882000-01-27 02:40:21 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc4996011999-10-20 22:08:37 +00002/*
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
Erik Andersene132f4b2000-02-09 04:16:43 +000025/* Turn this on to disable all the dangerous
26 rebooting stuff when debugging.
27#define DEBUG_INIT
28*/
29
Eric Andersencc8ed391999-10-05 16:24:54 +000030#include "internal.h"
Erik Andersen42094cd2000-03-20 21:34:52 +000031#include <asm/types.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000032#include <errno.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000033#include <linux/serial.h> /* for serial_struct */
34#include <linux/version.h>
Eric Andersenb186d981999-12-03 09:19:54 +000035#include <paths.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000036#include <signal.h>
37#include <stdarg.h>
38#include <stdio.h>
39#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000040#include <string.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000041#include <sys/fcntl.h>
42#include <sys/ioctl.h>
43#include <sys/kdaemon.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000044#include <sys/mount.h>
45#include <sys/reboot.h>
Erik Andersend07ee462000-02-21 21:26:32 +000046#include <sys/sysinfo.h> /* For check_free_memory() */
Eric Andersen4c781471999-11-26 08:12:56 +000047#ifdef BB_SYSLOGD
Erik Andersen983b51b2000-04-04 18:14:25 +000048# include <sys/syslog.h>
Eric Andersen4c781471999-11-26 08:12:56 +000049#endif
Erik Andersen42094cd2000-03-20 21:34:52 +000050#include <sys/sysmacros.h>
51#include <sys/types.h>
52#include <sys/vt.h> /* for vt_stat */
53#include <sys/wait.h>
54#include <termios.h>
55#include <unistd.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000056
Erik Andersen983b51b2000-04-04 18:14:25 +000057
Erik Andersen183da4a2000-04-04 18:36:37 +000058#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000059/*
Erik Andersen183da4a2000-04-04 18:36:37 +000060 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
61 * before processes are spawned to set core file size as unlimited.
62 * This is for debugging only. Don't use this is production, unless
63 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000064 */
65#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
66#include <sys/resource.h>
67#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +000068#endif
Erik Andersen983b51b2000-04-04 18:14:25 +000069
Erik Andersen4d1d0111999-12-17 18:44:15 +000070#ifndef KERNEL_VERSION
71#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
72#endif
73
Eric Andersen0ecb54a1999-12-05 23:24:55 +000074
Erik Andersen42094cd2000-03-20 21:34:52 +000075#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
76#define VT_SECONDARY "/dev/tty2" /* Virtual console */
77#define VT_LOG "/dev/tty3" /* Virtual console */
78#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
79#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
80#define SHELL "/bin/sh" /* Default shell */
81#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +000082#ifndef INIT_SCRIPT
Erik Andersen42094cd2000-03-20 21:34:52 +000083#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +000084#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +000085
Erik Andersen42094cd2000-03-20 21:34:52 +000086#define LOG 0x1
87#define CONSOLE 0x2
Erik Andersen7dc16072000-01-04 01:10:25 +000088
89/* Allowed init action types */
90typedef enum {
Erik Andersene49d5ec2000-02-08 19:58:47 +000091 SYSINIT = 1,
92 RESPAWN,
93 ASKFIRST,
94 WAIT,
Erik Andersene132f4b2000-02-09 04:16:43 +000095 ONCE,
96 CTRLALTDEL
Erik Andersen7dc16072000-01-04 01:10:25 +000097} initActionEnum;
98
Erik Andersen42094cd2000-03-20 21:34:52 +000099/* A mapping between "inittab" action name strings and action type codes. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000100typedef struct initActionType {
101 const char *name;
102 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000103} initActionType;
104
105static const struct initActionType actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000106 {"sysinit", SYSINIT},
107 {"respawn", RESPAWN},
108 {"askfirst", ASKFIRST},
109 {"wait", WAIT},
110 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000111 {"ctrlaltdel", CTRLALTDEL},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000112 {0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000113};
114
Erik Andersen42094cd2000-03-20 21:34:52 +0000115/* Set up a linked list of initActions, to be read from inittab */
Erik Andersen7dc16072000-01-04 01:10:25 +0000116typedef struct initActionTag initAction;
117struct initActionTag {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000118 pid_t pid;
119 char process[256];
120 char console[256];
121 initAction *nextPtr;
122 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000123};
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124initAction *initActionList = NULL;
Erik Andersen7dc16072000-01-04 01:10:25 +0000125
126
Erik Andersenac6e71f2000-01-08 22:04:33 +0000127static char *secondConsole = VT_SECONDARY;
Erik Andersen42094cd2000-03-20 21:34:52 +0000128static char *log = VT_LOG;
129static int kernelVersion = 0;
130static char termType[32] = "TERM=linux";
131static char console[32] = _PATH_CONSOLE;
132
Erik Andersene132f4b2000-02-09 04:16:43 +0000133static void delete_initAction(initAction * action);
Eric Andersen0460ff21999-10-25 23:32:44 +0000134
135
Erik Andersen42094cd2000-03-20 21:34:52 +0000136/* Print a message to the specified device.
137 * Device may be bitwise-or'd from LOG | CONSOLE */
138static void message(int device, char *fmt, ...)
Erik Andersen93d65132000-04-06 08:06:36 +0000139 __attribute__ ((format (printf, 2, 3)));
140static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000141{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000142 va_list arguments;
143 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000144
Eric Andersen4c781471999-11-26 08:12:56 +0000145#ifdef BB_SYSLOGD
146
Erik Andersene49d5ec2000-02-08 19:58:47 +0000147 /* Log the message to syslogd */
148 if (device & LOG) {
149 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000150
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151 va_start(arguments, fmt);
152 vsnprintf(msg, sizeof(msg), fmt, arguments);
153 va_end(arguments);
Erik Andersene132f4b2000-02-09 04:16:43 +0000154 openlog("init", 0, LOG_USER);
155 syslog(LOG_USER|LOG_INFO, msg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000157 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000158#else
159 static int log_fd = -1;
160
161 /* Take full control of the log tty, and never close it.
162 * It's mine, all mine! Muhahahaha! */
163 if (log_fd < 0) {
164 if (log == NULL) {
165 /* don't even try to log, because there is no such console */
166 log_fd = -2;
167 /* log to main console instead */
168 device = CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000169 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
170 log_fd = -2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000171 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
172 fflush(stderr);
Erik Andersene132f4b2000-02-09 04:16:43 +0000173 log = NULL;
174 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000175 }
176 }
177 if ((device & LOG) && (log_fd >= 0)) {
178 va_start(arguments, fmt);
179 vdprintf(log_fd, fmt, arguments);
180 va_end(arguments);
181 }
Eric Andersen4c781471999-11-26 08:12:56 +0000182#endif
183
Erik Andersene49d5ec2000-02-08 19:58:47 +0000184 if (device & CONSOLE) {
185 /* Always send console messages to /dev/console so people will see them. */
186 if (
187 (fd =
188 device_open(_PATH_CONSOLE,
189 O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
190 va_start(arguments, fmt);
191 vdprintf(fd, fmt, arguments);
192 va_end(arguments);
193 close(fd);
194 } else {
195 fprintf(stderr, "Bummer, can't print: ");
196 va_start(arguments, fmt);
197 vfprintf(stderr, fmt, arguments);
198 fflush(stderr);
199 va_end(arguments);
200 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000201 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000202}
203
Erik Andersen1d1d9502000-04-21 01:26:49 +0000204#define CTRLCHAR(ch) ((ch)&0x1f)
Eric Andersen3ae0c781999-11-04 01:13:21 +0000205
Eric Andersen0460ff21999-10-25 23:32:44 +0000206/* Set terminal settings to reasonable defaults */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000207void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000208{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000209 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000210
Erik Andersene49d5ec2000-02-08 19:58:47 +0000211 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000212
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213 /* set control chars */
Erik Andersen1d1d9502000-04-21 01:26:49 +0000214 tty.c_cc[VINTR] = CTRLCHAR('C'); /* Ctrl-C */
215 tty.c_cc[VQUIT] = CTRLCHAR('\\'); /* Ctrl-\ */
216 tty.c_cc[VERASE] = CTRLCHAR('?'); /* Ctrl-? */
217 tty.c_cc[VKILL] = CTRLCHAR('U'); /* Ctrl-U */
218 tty.c_cc[VEOF] = CTRLCHAR('D'); /* Ctrl-D */
219 tty.c_cc[VSTOP] = CTRLCHAR('S'); /* Ctrl-S */
220 tty.c_cc[VSTART] = CTRLCHAR('Q'); /* Ctrl-Q */
221 tty.c_cc[VSUSP] = CTRLCHAR('Z'); /* Ctrl-Z */
Eric Andersencc8ed391999-10-05 16:24:54 +0000222
Erik Andersene49d5ec2000-02-08 19:58:47 +0000223 /* use line dicipline 0 */
224 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000225
Erik Andersene49d5ec2000-02-08 19:58:47 +0000226 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000227 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
228 tty.c_cflag |= HUPCL|CLOCAL;
Eric Andersen08b10341999-11-19 02:38:58 +0000229
Erik Andersene49d5ec2000-02-08 19:58:47 +0000230 /* input modes */
231 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000232
Erik Andersene49d5ec2000-02-08 19:58:47 +0000233 /* output modes */
234 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000235
Erik Andersene49d5ec2000-02-08 19:58:47 +0000236 /* local modes */
237 tty.c_lflag =
238 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000239
Erik Andersene49d5ec2000-02-08 19:58:47 +0000240 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000241}
242
Eric Andersen219d6f51999-11-02 19:43:01 +0000243/* How much memory does this machine have? */
Erik Andersend07ee462000-02-21 21:26:32 +0000244static int check_free_memory()
Eric Andersencc8ed391999-10-05 16:24:54 +0000245{
Erik Andersend07ee462000-02-21 21:26:32 +0000246 struct sysinfo info;
Eric Andersencc8ed391999-10-05 16:24:54 +0000247
Erik Andersend07ee462000-02-21 21:26:32 +0000248 sysinfo(&info);
249 if (sysinfo(&info) != 0) {
250 message(LOG, "Error checking free memory: %s\n", strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000251 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000252 }
Erik Andersend07ee462000-02-21 21:26:32 +0000253
Erik Andersen42094cd2000-03-20 21:34:52 +0000254 return((info.totalram+info.totalswap)/1024);
Eric Andersencc8ed391999-10-05 16:24:54 +0000255}
256
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000257static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000258{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259 int fd;
260 int tried_devcons = 0;
261 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000262 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263 struct serial_struct sr;
264 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000265
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 if ((s = getenv("TERM")) != NULL) {
267 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
268 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000269
Erik Andersene49d5ec2000-02-08 19:58:47 +0000270 if ((s = getenv("CONSOLE")) != NULL) {
271 snprintf(console, sizeof(console) - 1, "%s", s);
272 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000273#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 /* sparc kernel supports console=tty[ab] parameter which is also
275 * passed to init, so catch it here */
276 else if ((s = getenv("console")) != NULL) {
277 /* remap tty[ab] to /dev/ttyS[01] */
278 if (strcmp(s, "ttya") == 0)
279 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
280 else if (strcmp(s, "ttyb") == 0)
281 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
282 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000283#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000284 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000285 /* 2.2 kernels: identify the real console backend and try to use it */
286 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
287 /* this is a serial console */
288 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
289 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
290 /* this is linux virtual tty */
291 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
292 vt.v_active);
293 } else {
294 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
295 tried_devcons++;
296 }
Eric Andersen07e52971999-11-07 07:38:08 +0000297 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000298
299 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
300 /* Can't open selected console -- try /dev/console */
301 if (!tried_devcons) {
302 tried_devcons++;
303 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
304 continue;
305 }
306 /* Can't open selected console -- try vt1 */
307 if (!tried_vtprimary) {
308 tried_vtprimary++;
309 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
310 continue;
311 }
312 break;
313 }
314 if (fd < 0) {
315 /* Perhaps we should panic here? */
316 snprintf(console, sizeof(console) - 1, "/dev/null");
Eric Andersen07e52971999-11-07 07:38:08 +0000317 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000318 /* check for serial console and disable logging to tty3 & running a
319 * shell to tty2 */
320 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 log = NULL;
322 secondConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000323 /* Force the TERM setting to vt102 for serial console --
324 * iff TERM is set to linux (the default) */
325 if (strcmp( termType, "TERM=linux" ) == 0)
326 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
Erik Andersene132f4b2000-02-09 04:16:43 +0000327 message(LOG | CONSOLE,
328 "serial console detected. Disabling virtual terminals.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000329 }
330 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000331 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000333}
334
Erik Andersene49d5ec2000-02-08 19:58:47 +0000335static pid_t run(char *command, char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000336{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000337 int i, fd;
338 pid_t pid;
339 char *tmpCmd;
340 char *cmd[255];
Erik Andersene132f4b2000-02-09 04:16:43 +0000341 char buf[255];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000342 static const char press_enter[] =
343
344 "\nPlease press Enter to activate this console. ";
345 char *environment[] = {
346 "HOME=/",
347 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
348 "SHELL=/bin/sh",
349 termType,
350 "USER=root",
351 0
352 };
Erik Andersenac6e71f2000-01-08 22:04:33 +0000353
Eric Andersen0460ff21999-10-25 23:32:44 +0000354
Erik Andersene49d5ec2000-02-08 19:58:47 +0000355 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000356 /* Clean up */
357 close(0);
358 close(1);
359 close(2);
360 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000361
Erik Andersene49d5ec2000-02-08 19:58:47 +0000362 /* Reset signal handlers set for parent process */
363 signal(SIGUSR1, SIG_DFL);
364 signal(SIGUSR2, SIG_DFL);
365 signal(SIGINT, SIG_DFL);
366 signal(SIGTERM, SIG_DFL);
367 signal(SIGHUP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000368
Erik Andersene49d5ec2000-02-08 19:58:47 +0000369 if ((fd = device_open(terminal, O_RDWR)) < 0) {
370 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
371 exit(1);
372 }
373 dup2(fd, 0);
374 dup2(fd, 1);
375 dup2(fd, 2);
376 tcsetpgrp(0, getpgrp());
377 set_term(0);
378
379 if (get_enter == TRUE) {
380 /*
381 * Save memory by not exec-ing anything large (like a shell)
382 * before the user wants it. This is critical if swap is not
383 * enabled and the system has low memory. Generally this will
384 * be run on the second virtual console, and the first will
385 * be allowed to start a shell or whatever an init script
386 * specifies.
387 */
388 char c;
Erik Andersene132f4b2000-02-09 04:16:43 +0000389#ifdef DEBUG_INIT
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000390 pid_t shell_pgid = getpid();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000391 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
392 command, shell_pgid, terminal);
Erik Andersene132f4b2000-02-09 04:16:43 +0000393#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000394 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
395 read(fileno(stdin), &c, 1);
396 }
397
Erik Andersene49d5ec2000-02-08 19:58:47 +0000398#ifdef DEBUG_INIT
Erik Andersene132f4b2000-02-09 04:16:43 +0000399 /* Log the process name and args */
400 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
401 shell_pgid, terminal, command);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000402#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000403
404 /* See if any special /bin/sh requiring characters are present */
405 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
406 cmd[0] = SHELL;
407 cmd[1] = "-c";
408 strcpy(buf, "exec ");
409 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
410 cmd[2] = buf;
411 cmd[3] = NULL;
412 } else {
413 /* Convert command (char*) into cmd (char**, one word per string) */
414 for (tmpCmd = command, i = 0;
415 (tmpCmd = strsep(&command, " \t")) != NULL;) {
416 if (*tmpCmd != '\0') {
417 cmd[i] = tmpCmd;
418 tmpCmd++;
419 i++;
420 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000421 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000422 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000423 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000424
Erik Andersen183da4a2000-04-04 18:36:37 +0000425#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000426 {
427 struct stat sb;
428 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
429 struct rlimit limit;
430 limit.rlim_cur = RLIM_INFINITY;
431 limit.rlim_max = RLIM_INFINITY;
432 setrlimit(RLIMIT_CORE, &limit);
433 }
434 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000435#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000436
Erik Andersene49d5ec2000-02-08 19:58:47 +0000437 /* Now run it. The new program will take over this PID,
438 * so nothing further in init.c should be run. */
439 execve(cmd[0], cmd, environment);
440
441 /* We're still here? Some error happened. */
442 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmd[0],
443 strerror(errno));
444 exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000445 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000446 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000447}
448
Erik Andersene49d5ec2000-02-08 19:58:47 +0000449static int waitfor(char *command, char *terminal, int get_enter)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000450{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000451 int status, wpid;
452 int pid = run(command, terminal, get_enter);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000453
Erik Andersene49d5ec2000-02-08 19:58:47 +0000454 while (1) {
455 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000456 if (wpid > 0 && wpid != pid) {
457 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000458 }
459 if (wpid == pid)
460 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000461 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000462 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000463}
464
Eric Andersen219d6f51999-11-02 19:43:01 +0000465/* Make sure there is enough memory to do something useful. *
Erik Andersene132f4b2000-02-09 04:16:43 +0000466 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
Eric Andersen219d6f51999-11-02 19:43:01 +0000467static void check_memory()
468{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000469 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000470
Erik Andersend07ee462000-02-21 21:26:32 +0000471 if (check_free_memory() > 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000472 return;
473
474 if (stat("/etc/fstab", &statBuf) == 0) {
Erik Andersen61677fe2000-04-13 01:18:56 +0000475 /* swapon -a requires /proc typically */
476 waitfor("mount proc /proc -t proc", console, FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000477 /* Try to turn on swap */
Erik Andersen61677fe2000-04-13 01:18:56 +0000478 waitfor("swapon -a", console, FALSE);
Erik Andersend07ee462000-02-21 21:26:32 +0000479 if (check_free_memory() < 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000480 goto goodnight;
481 } else
482 goto goodnight;
Eric Andersen219d6f51999-11-02 19:43:01 +0000483 return;
484
Erik Andersene49d5ec2000-02-08 19:58:47 +0000485 goodnight:
486 message(CONSOLE,
487 "Sorry, your computer does not have enough memory.\r\n");
488 while (1)
489 sleep(1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000490}
491
Erik Andersene132f4b2000-02-09 04:16:43 +0000492/* Run all commands to be run right before halt/reboot */
493static void run_lastAction(void)
494{
495 initAction *a;
496 for (a = initActionList; a; a = a->nextPtr) {
497 if (a->action == CTRLALTDEL) {
498 waitfor(a->process, a->console, FALSE);
499 delete_initAction(a);
500 }
501 }
502}
503
504
Erik Andersen7dc16072000-01-04 01:10:25 +0000505#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000506static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000507{
Erik Andersene132f4b2000-02-09 04:16:43 +0000508
Erik Andersene49d5ec2000-02-08 19:58:47 +0000509 /* first disable our SIGHUP signal */
510 signal(SIGHUP, SIG_DFL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000511
Erik Andersene49d5ec2000-02-08 19:58:47 +0000512 /* Allow Ctrl-Alt-Del to reboot system. */
513 reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000514
515 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000516 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000517
518 /* Send signals to every process _except_ pid 1 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000519 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000520 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000521 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000522 sync();
523
Erik Andersene132f4b2000-02-09 04:16:43 +0000524 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000525 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000526 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000527
Erik Andersene132f4b2000-02-09 04:16:43 +0000528 /* run everything to be run at "ctrlaltdel" */
529 run_lastAction();
530
Erik Andersene49d5ec2000-02-08 19:58:47 +0000531 sync();
532 if (kernelVersion > 0 && kernelVersion <= 2 * 65536 + 2 * 256 + 11) {
533 /* bdflush, kupdate not needed for kernels >2.2.11 */
534 bdflush(1, 0);
535 sync();
536 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000537}
538
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000539static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000540{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000541 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000542 message(CONSOLE|LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000543 "The system is halted. Press %s or turn off power\r\n",
544 (secondConsole == NULL) /* serial console */
545 ? "Reset" : "CTRL-ALT-DEL");
546 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000547
Erik Andersene49d5ec2000-02-08 19:58:47 +0000548 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000549 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000550
Erik Andersen4d1d0111999-12-17 18:44:15 +0000551#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000552 if (sig == SIGUSR2)
553 reboot(RB_POWER_OFF);
554 else
Erik Andersen4d1d0111999-12-17 18:44:15 +0000555#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000556 reboot(RB_HALT_SYSTEM);
557 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000558}
559
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000560static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000561{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000562 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000563 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000564 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000565
Erik Andersene49d5ec2000-02-08 19:58:47 +0000566 /* allow time for last message to reach serial console */
567 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000568
Erik Andersene49d5ec2000-02-08 19:58:47 +0000569 reboot(RB_AUTOBOOT);
570 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000571}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000572
Erik Andersende552872000-01-23 01:34:05 +0000573#if defined BB_FEATURE_INIT_CHROOT
Erik Andersend07ee462000-02-21 21:26:32 +0000574
575#if ! defined BB_FEATURE_USE_PROCFS
576#error Sorry, I depend on the /proc filesystem right now.
577#endif
578
Erik Andersende552872000-01-23 01:34:05 +0000579static void check_chroot(int sig)
580{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000581 char *argv_init[2] = { "init", NULL, };
582 char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
583 char rootpath[256], *tc;
584 int fd;
Erik Andersende552872000-01-23 01:34:05 +0000585
Erik Andersene49d5ec2000-02-08 19:58:47 +0000586 if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
587 message(CONSOLE,
588 "SIGHUP recived, but could not open proc file\r\n");
589 sleep(2);
590 return;
591 }
592 if (read(fd, rootpath, sizeof(rootpath)) == -1) {
593 message(CONSOLE,
594 "SIGHUP recived, but could not read proc file\r\n");
595 sleep(2);
596 return;
597 }
598 close(fd);
599
600 if (rootpath[0] == '\0') {
601 message(CONSOLE,
602 "SIGHUP recived, but new root is not valid: %s\r\n",
603 rootpath);
604 sleep(2);
605 return;
606 }
607
608 tc = strrchr(rootpath, '\n');
609 *tc = '\0';
610
611 /* Ok, making it this far means we commit */
612 message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
613 rootpath);
614
615 /* kill all other programs first */
616 message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
617 kill(-1, SIGTERM);
Erik Andersende552872000-01-23 01:34:05 +0000618 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000619 sync();
620
621 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
622 kill(-1, SIGKILL);
Erik Andersende552872000-01-23 01:34:05 +0000623 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000624 sync();
625
626 /* ok, we don't need /proc anymore. we also assume that the signaling
627 * process left the rest of the filesystems alone for us */
628 umount("/proc");
629
630 /* Ok, now we chroot. Hopefully we only have two things mounted, the
631 * new chroot'd mount point, and the old "/" mount. s,
632 * we go ahead and unmount the old "/". This should trigger the kernel
633 * to set things up the Right Way(tm). */
634
635 if (!chroot(rootpath))
636 umount("/dev/root");
637
638 /* If the chroot fails, we are already too far to turn back, so we
639 * continue and hope that executing init below will revive the system */
640
641 /* close all of our descriptors and open new ones */
642 close(0);
643 close(1);
644 close(2);
645 open("/dev/console", O_RDWR, 0);
646 dup(0);
647 dup(0);
648
649 message(CONSOLE, "Executing real init...\r\n");
650 /* execute init in the (hopefully) new root */
651 execve("/sbin/init", argv_init, envp_init);
652
653 message(CONSOLE,
654 "ERROR: Could not exec new init. Press %s to reboot.\r\n",
655 (secondConsole == NULL) /* serial console */
656 ? "Reset" : "CTRL-ALT-DEL");
Erik Andersende552872000-01-23 01:34:05 +0000657 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000658}
659#endif /* BB_FEATURE_INIT_CHROOT */
Erik Andersende552872000-01-23 01:34:05 +0000660
Erik Andersene49d5ec2000-02-08 19:58:47 +0000661#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000662
Erik Andersene49d5ec2000-02-08 19:58:47 +0000663void new_initAction(initActionEnum action, char *process, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000664{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000665 initAction *newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000666
Erik Andersene49d5ec2000-02-08 19:58:47 +0000667 if (*cons == '\0')
668 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000669
Erik Andersene49d5ec2000-02-08 19:58:47 +0000670 /* If BusyBox detects that a serial console is in use,
671 * then entries not refering to the console or null devices will _not_ be run.
672 * The exception to this rule is the null device.
673 */
674 if (secondConsole == NULL && strcmp(cons, console)
675 && strcmp(cons, "/dev/null"))
676 return;
677
678 newAction = calloc((size_t) (1), sizeof(initAction));
679 if (!newAction) {
680 message(LOG | CONSOLE, "Memory allocation failure\n");
681 while (1)
682 sleep(1);
683 }
684 newAction->nextPtr = initActionList;
685 initActionList = newAction;
686 strncpy(newAction->process, process, 255);
687 newAction->action = action;
688 strncpy(newAction->console, cons, 255);
689 newAction->pid = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000690// message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000691// newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000692}
693
Erik Andersene132f4b2000-02-09 04:16:43 +0000694static void delete_initAction(initAction * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000695{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000696 initAction *a, *b = NULL;
697
698 for (a = initActionList; a; b = a, a = a->nextPtr) {
699 if (a == action) {
700 if (b == NULL) {
701 initActionList = a->nextPtr;
702 } else {
703 b->nextPtr = a->nextPtr;
704 }
705 free(a);
706 break;
707 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000708 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000709}
710
Erik Andersen9e737252000-01-06 01:16:13 +0000711/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
712 * then parse_inittab() simply adds in some default
713 * actions(i.e runs INIT_SCRIPT and then starts a pair
Erik Andersen812d4662000-01-07 18:30:40 +0000714 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
715 * _is_ defined, but /etc/inittab is missing, this
716 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000717 * */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000718void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000719{
Erik Andersen9e737252000-01-06 01:16:13 +0000720#ifdef BB_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000721 FILE *file;
722 char buf[256], lineAsRead[256], tmpConsole[256];
723 char *p, *q, *r, *s;
724 const struct initActionType *a = actions;
725 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000726
727
Erik Andersene49d5ec2000-02-08 19:58:47 +0000728 file = fopen(INITTAB, "r");
729 if (file == NULL) {
730 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000731#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000732 /* Swapoff on halt/reboot */
Erik Andersenfb1793f2000-02-09 16:37:08 +0000733 new_initAction(CTRLALTDEL, "/sbin/swapoff -a > /dev/null 2>&1", console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000734 /* Umount all filesystems on halt/reboot */
735 new_initAction(CTRLALTDEL, "/bin/umount -a -r > /dev/null 2>&1", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000736 /* Askfirst shell on tty1 */
737 new_initAction(ASKFIRST, SHELL, console);
738 /* Askfirst shell on tty2 */
739 if (secondConsole != NULL)
740 new_initAction(ASKFIRST, SHELL, secondConsole);
741 /* sysinit */
742 new_initAction(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000743
Erik Andersene49d5ec2000-02-08 19:58:47 +0000744 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000745#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000746 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000747
Erik Andersene49d5ec2000-02-08 19:58:47 +0000748 while (fgets(buf, 255, file) != NULL) {
749 foundIt = FALSE;
750 for (p = buf; *p == ' ' || *p == '\t'; p++);
751 if (*p == '#' || *p == '\n')
752 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000753
Erik Andersene49d5ec2000-02-08 19:58:47 +0000754 /* Trim the trailing \n */
755 q = strrchr(p, '\n');
756 if (q != NULL)
757 *q = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000758
Erik Andersene49d5ec2000-02-08 19:58:47 +0000759 /* Keep a copy around for posterity's sake (and error msgs) */
760 strcpy(lineAsRead, buf);
761
762 /* Grab the ID field */
763 s = p;
764 p = strchr(p, ':');
765 if (p != NULL || *(p + 1) != '\0') {
766 *p = '\0';
767 ++p;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000768 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000769
Erik Andersen42094cd2000-03-20 21:34:52 +0000770 /* Now peel off the process field from the end
Erik Andersene49d5ec2000-02-08 19:58:47 +0000771 * of the string */
772 q = strrchr(p, ':');
773 if (q == NULL || *(q + 1) == '\0') {
774 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
775 continue;
776 } else {
777 *q = '\0';
778 ++q;
779 }
780
Erik Andersen42094cd2000-03-20 21:34:52 +0000781 /* Now peel off the action field */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000782 r = strrchr(p, ':');
783 if (r == NULL || *(r + 1) == '\0') {
784 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
785 continue;
786 } else {
787 ++r;
788 }
789
790 /* Ok, now process it */
791 a = actions;
792 while (a->name != 0) {
793 if (strcmp(a->name, r) == 0) {
794 if (*s != '\0') {
795 struct stat statBuf;
796
797 strcpy(tmpConsole, "/dev/");
798 strncat(tmpConsole, s, 200);
799 if (stat(tmpConsole, &statBuf) != 0) {
800 message(LOG | CONSOLE,
801 "device '%s' does not exist. Did you read the directions?\n",
802 tmpConsole);
803 break;
804 }
805 s = tmpConsole;
806 }
807 new_initAction(a->action, q, s);
808 foundIt = TRUE;
809 }
810 a++;
811 }
812 if (foundIt == TRUE)
813 continue;
814 else {
815 /* Choke on an unknown action */
816 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
817 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000818 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000819 return;
Erik Andersen42094cd2000-03-20 21:34:52 +0000820#endif /* BB_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000821}
822
Erik Andersene132f4b2000-02-09 04:16:43 +0000823
824
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000825extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000826{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000827 initAction *a;
828 pid_t wpid;
829 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000830
Eric Andersend73dc5b1999-11-10 23:13:02 +0000831#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +0000832 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
833 if (getpid() != 1
834#ifdef BB_FEATURE_LINUXRC
835 && strstr(argv[0], "linuxrc") == NULL
836#endif
837 )
838 {
839 usage("init\n\nInit is the parent of all processes.\n\n"
840 "This version of init is designed to be run only "
841 "by the kernel.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000842 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000843 /* Set up sig handlers -- be sure to
844 * clear all of these in run() */
845 signal(SIGUSR1, halt_signal);
846 signal(SIGUSR2, reboot_signal);
847 signal(SIGINT, reboot_signal);
848 signal(SIGTERM, reboot_signal);
Erik Andersende552872000-01-23 01:34:05 +0000849#if defined BB_FEATURE_INIT_CHROOT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000850 signal(SIGHUP, check_chroot);
Erik Andersende552872000-01-23 01:34:05 +0000851#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000852
Erik Andersene49d5ec2000-02-08 19:58:47 +0000853 /* Turn off rebooting via CTL-ALT-DEL -- we get a
854 * SIGINT on CAD so we can shut things down gracefully... */
855 reboot(RB_DISABLE_CAD);
856#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000857
Erik Andersen298854f2000-03-23 01:09:18 +0000858 /* Figure out what kernel this is running */
859 kernelVersion = get_kernel_revision();
860
Erik Andersene49d5ec2000-02-08 19:58:47 +0000861 /* Figure out where the default console should be */
862 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000863
Erik Andersene49d5ec2000-02-08 19:58:47 +0000864 /* Close whatever files are open, and reset the console. */
865 close(0);
866 close(1);
867 close(2);
868 set_term(0);
Erik Andersen983b51b2000-04-04 18:14:25 +0000869 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000870 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000871
Erik Andersene49d5ec2000-02-08 19:58:47 +0000872 /* Make sure PATH is set to something sane */
873 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000874
Erik Andersene49d5ec2000-02-08 19:58:47 +0000875 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000876#ifndef DEBUG_INIT
Erik Andersenea6b67d2000-03-07 07:47:10 +0000877 message(
878#if ! defined BB_FEATURE_EXTRA_QUIET
879 CONSOLE|
880#endif
881 LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000882 "init started: BusyBox v%s (%s) multi-call binary\r\n",
883 BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000884#else
Erik Andersenea6b67d2000-03-07 07:47:10 +0000885 message(
886#if ! defined BB_FEATURE_EXTRA_QUIET
887 CONSOLE|
888#endif
889 LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000890 "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n",
891 getpid(), BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000892#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000893
Eric Andersencc8ed391999-10-05 16:24:54 +0000894
Erik Andersene49d5ec2000-02-08 19:58:47 +0000895 /* Make sure there is enough memory to do something useful. */
896 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +0000897
Erik Andersene49d5ec2000-02-08 19:58:47 +0000898 /* Check if we are supposed to be in single user mode */
899 if (argc > 1 && (!strcmp(argv[1], "single") ||
900 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
901 /* Ask first then start a shell on tty2 */
902 if (secondConsole != NULL)
903 new_initAction(ASKFIRST, SHELL, secondConsole);
904 /* Start a shell on tty1 */
905 new_initAction(RESPAWN, SHELL, console);
906 } else {
907 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000908
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
910 * then parse_inittab() simply adds in some default
911 * actions(i.e runs INIT_SCRIPT and then starts a pair
912 * of "askfirst" shells */
913 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000914 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000915
Erik Andersene132f4b2000-02-09 04:16:43 +0000916 /* Fix up argv[0] to be certain we claim to be init */
917 strncpy(argv[0], "init", strlen(argv[0])+1);
Erik Andersen07f56042000-02-09 06:05:01 +0000918 if (argc > 1)
919 strncpy(argv[1], "\0", strlen(argv[1])+1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000920
Erik Andersene49d5ec2000-02-08 19:58:47 +0000921 /* Now run everything that needs to be run */
922
923 /* First run the sysinit command */
924 for (a = initActionList; a; a = a->nextPtr) {
925 if (a->action == SYSINIT) {
926 waitfor(a->process, a->console, FALSE);
927 /* Now remove the "sysinit" entry from the list */
928 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000929 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000930 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000931 /* Next run anything that wants to block */
932 for (a = initActionList; a; a = a->nextPtr) {
933 if (a->action == WAIT) {
934 waitfor(a->process, a->console, FALSE);
935 /* Now remove the "wait" entry from the list */
936 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000937 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000938 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000939 /* Next run anything to be run only once */
940 for (a = initActionList; a; a = a->nextPtr) {
941 if (a->action == ONCE) {
942 run(a->process, a->console, FALSE);
943 /* Now remove the "once" entry from the list */
944 delete_initAction(a);
945 }
946 }
947 /* If there is nothing else to do, stop */
948 if (initActionList == NULL) {
949 message(LOG | CONSOLE,
950 "No more tasks for init -- sleeping forever.\n");
951 while (1)
952 sleep(1);
953 }
954
955 /* Now run the looping stuff for the rest of forever */
956 while (1) {
957 for (a = initActionList; a; a = a->nextPtr) {
958 /* Only run stuff with pid==0. If they have
959 * a pid, that means they are still running */
960 if (a->pid == 0) {
961 switch (a->action) {
962 case RESPAWN:
963 /* run the respawn stuff */
964 a->pid = run(a->process, a->console, FALSE);
965 break;
966 case ASKFIRST:
967 /* run the askfirst stuff */
968 a->pid = run(a->process, a->console, TRUE);
969 break;
970 /* silence the compiler's incessant whining */
971 default:
972 break;
973 }
974 }
975 }
976 /* Wait for a child process to exit */
977 wpid = wait(&status);
978 if (wpid > 0) {
979 /* Find out who died and clean up their corpse */
980 for (a = initActionList; a; a = a->nextPtr) {
981 if (a->pid == wpid) {
982 a->pid = 0;
983 message(LOG,
984 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
985 a->process, wpid);
986 }
987 }
988 }
989 sleep(1);
990 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000991}
Erik Andersen029011b2000-03-04 21:19:32 +0000992
993/*
994Local Variables:
995c-file-style: "linux"
996c-basic-offset: 4
997tab-width: 4
998End:
999*/