blob: b368c00edde718440707fbf1287bfaf1efe86aa1 [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 Andersen4f3f7572000-04-28 00:18:56 +000031#include <stdio.h>
32#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000033#include <errno.h>
Eric Andersenb186d981999-12-03 09:19:54 +000034#include <paths.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000035#include <signal.h>
36#include <stdarg.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000037#include <string.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +000038#include <termios.h>
39#include <unistd.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000040#include <sys/fcntl.h>
41#include <sys/ioctl.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000042#include <sys/mount.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000043#include <sys/types.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000044#include <sys/wait.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +000045#ifdef BB_SYSLOGD
46# include <sys/syslog.h>
47#endif
48
Eric Andersenbd22ed82000-07-08 18:55:24 +000049/* From <linux/vt.h> */
50struct vt_stat {
51 unsigned short v_active; /* active vt */
52 unsigned short v_signal; /* signal to send */
53 unsigned short v_state; /* vt bitmask */
54};
55#define VT_GETSTATE 0x5603 /* get global vt state info */
56
57/* From <linux/serial.h> */
58struct serial_struct {
59 int type;
60 int line;
61 int port;
62 int irq;
63 int flags;
64 int xmit_fifo_size;
65 int custom_divisor;
66 int baud_base;
67 unsigned short close_delay;
68 char reserved_char[2];
69 int hub6;
70 unsigned short closing_wait; /* time to wait before closing */
71 unsigned short closing_wait2; /* no longer used... */
72 int reserved[4];
73};
74
75
Erik Andersen4f3f7572000-04-28 00:18:56 +000076
77#ifndef RB_HALT_SYSTEM
78#define RB_HALT_SYSTEM 0xcdef0123
79#define RB_ENABLE_CAD 0x89abcdef
80#define RB_DISABLE_CAD 0
81#define RB_POWER_OFF 0x4321fedc
82#define RB_AUTOBOOT 0x01234567
83#if defined(__GLIBC__)
84#include <sys/reboot.h>
85 #define init_reboot(magic) reboot(magic)
86#else
87 #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
88#endif
89#endif
90
91#ifndef _PATH_STDPATH
92#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
93#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000094
Erik Andersen983b51b2000-04-04 18:14:25 +000095
Erik Andersen183da4a2000-04-04 18:36:37 +000096#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000097/*
Erik Andersen183da4a2000-04-04 18:36:37 +000098 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
99 * before processes are spawned to set core file size as unlimited.
100 * This is for debugging only. Don't use this is production, unless
101 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +0000102 */
103#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
104#include <sys/resource.h>
105#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +0000106#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000107
Erik Andersen4d1d0111999-12-17 18:44:15 +0000108#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +0000109
Erik Andersen4f3f7572000-04-28 00:18:56 +0000110#if defined(__GLIBC__)
111#include <sys/kdaemon.h>
112#else
Eric Andersenbd22ed82000-07-08 18:55:24 +0000113#include <linux/unistd.h> /* for _syscall() macro */
Eric Andersena15cd0b2000-06-19 18:14:20 +0000114static _syscall2(int, bdflush, int, func, int, data);
Erik Andersen4f3f7572000-04-28 00:18:56 +0000115#endif /* __GLIBC__ */
116
Eric Andersen0ecb54a1999-12-05 23:24:55 +0000117
Erik Andersen42094cd2000-03-20 21:34:52 +0000118#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
119#define VT_SECONDARY "/dev/tty2" /* Virtual console */
120#define VT_LOG "/dev/tty3" /* Virtual console */
121#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
122#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
123#define SHELL "/bin/sh" /* Default shell */
124#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000125#ifndef INIT_SCRIPT
Erik Andersen42094cd2000-03-20 21:34:52 +0000126#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000127#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000128
Erik Andersen42094cd2000-03-20 21:34:52 +0000129#define LOG 0x1
130#define CONSOLE 0x2
Erik Andersen7dc16072000-01-04 01:10:25 +0000131
132/* Allowed init action types */
133typedef enum {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134 SYSINIT = 1,
135 RESPAWN,
136 ASKFIRST,
137 WAIT,
Erik Andersene132f4b2000-02-09 04:16:43 +0000138 ONCE,
139 CTRLALTDEL
Erik Andersen7dc16072000-01-04 01:10:25 +0000140} initActionEnum;
141
Erik Andersen42094cd2000-03-20 21:34:52 +0000142/* A mapping between "inittab" action name strings and action type codes. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143typedef struct initActionType {
144 const char *name;
145 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000146} initActionType;
147
148static const struct initActionType actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000149 {"sysinit", SYSINIT},
150 {"respawn", RESPAWN},
151 {"askfirst", ASKFIRST},
152 {"wait", WAIT},
153 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000154 {"ctrlaltdel", CTRLALTDEL},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155 {0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000156};
157
Erik Andersen42094cd2000-03-20 21:34:52 +0000158/* Set up a linked list of initActions, to be read from inittab */
Erik Andersen7dc16072000-01-04 01:10:25 +0000159typedef struct initActionTag initAction;
160struct initActionTag {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000161 pid_t pid;
162 char process[256];
163 char console[256];
164 initAction *nextPtr;
165 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000166};
Erik Andersene49d5ec2000-02-08 19:58:47 +0000167initAction *initActionList = NULL;
Erik Andersen7dc16072000-01-04 01:10:25 +0000168
169
Erik Andersenac6e71f2000-01-08 22:04:33 +0000170static char *secondConsole = VT_SECONDARY;
Erik Andersen42094cd2000-03-20 21:34:52 +0000171static char *log = VT_LOG;
172static int kernelVersion = 0;
173static char termType[32] = "TERM=linux";
174static char console[32] = _PATH_CONSOLE;
175
Erik Andersene132f4b2000-02-09 04:16:43 +0000176static void delete_initAction(initAction * action);
Eric Andersen0460ff21999-10-25 23:32:44 +0000177
178
Erik Andersen42094cd2000-03-20 21:34:52 +0000179/* Print a message to the specified device.
180 * Device may be bitwise-or'd from LOG | CONSOLE */
181static void message(int device, char *fmt, ...)
Erik Andersen93d65132000-04-06 08:06:36 +0000182 __attribute__ ((format (printf, 2, 3)));
183static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000184{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185 va_list arguments;
186 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000187
Eric Andersen4c781471999-11-26 08:12:56 +0000188#ifdef BB_SYSLOGD
189
Erik Andersene49d5ec2000-02-08 19:58:47 +0000190 /* Log the message to syslogd */
191 if (device & LOG) {
192 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000193
Erik Andersene49d5ec2000-02-08 19:58:47 +0000194 va_start(arguments, fmt);
195 vsnprintf(msg, sizeof(msg), fmt, arguments);
196 va_end(arguments);
Erik Andersene132f4b2000-02-09 04:16:43 +0000197 openlog("init", 0, LOG_USER);
198 syslog(LOG_USER|LOG_INFO, msg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000199 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000200 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000201#else
202 static int log_fd = -1;
203
204 /* Take full control of the log tty, and never close it.
205 * It's mine, all mine! Muhahahaha! */
206 if (log_fd < 0) {
207 if (log == NULL) {
208 /* don't even try to log, because there is no such console */
209 log_fd = -2;
210 /* log to main console instead */
211 device = CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000212 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
213 log_fd = -2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000214 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
215 fflush(stderr);
Erik Andersene132f4b2000-02-09 04:16:43 +0000216 log = NULL;
217 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218 }
219 }
220 if ((device & LOG) && (log_fd >= 0)) {
221 va_start(arguments, fmt);
222 vdprintf(log_fd, fmt, arguments);
223 va_end(arguments);
224 }
Eric Andersen4c781471999-11-26 08:12:56 +0000225#endif
226
Erik Andersene49d5ec2000-02-08 19:58:47 +0000227 if (device & CONSOLE) {
228 /* Always send console messages to /dev/console so people will see them. */
229 if (
230 (fd =
231 device_open(_PATH_CONSOLE,
232 O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
233 va_start(arguments, fmt);
234 vdprintf(fd, fmt, arguments);
235 va_end(arguments);
236 close(fd);
237 } else {
238 fprintf(stderr, "Bummer, can't print: ");
239 va_start(arguments, fmt);
240 vfprintf(stderr, fmt, arguments);
241 fflush(stderr);
242 va_end(arguments);
243 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000244 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000245}
246
Eric Andersen02bc25b2000-07-06 21:29:32 +0000247#define CTRLCHAR(ch) ((ch)-0x40)
Eric Andersen3ae0c781999-11-04 01:13:21 +0000248
Eric Andersen0460ff21999-10-25 23:32:44 +0000249/* Set terminal settings to reasonable defaults */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000250void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000251{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000252 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000253
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000255
Erik Andersene49d5ec2000-02-08 19:58:47 +0000256 /* set control chars */
Erik Andersen1d1d9502000-04-21 01:26:49 +0000257 tty.c_cc[VINTR] = CTRLCHAR('C'); /* Ctrl-C */
258 tty.c_cc[VQUIT] = CTRLCHAR('\\'); /* Ctrl-\ */
259 tty.c_cc[VERASE] = CTRLCHAR('?'); /* Ctrl-? */
260 tty.c_cc[VKILL] = CTRLCHAR('U'); /* Ctrl-U */
261 tty.c_cc[VEOF] = CTRLCHAR('D'); /* Ctrl-D */
Erik Andersen1d1d9502000-04-21 01:26:49 +0000262 tty.c_cc[VSTART] = CTRLCHAR('Q'); /* Ctrl-Q */
Eric Andersena5dbb392000-07-06 19:11:34 +0000263 tty.c_cc[VSTOP] = CTRLCHAR('S'); /* Ctrl-S */
Erik Andersen1d1d9502000-04-21 01:26:49 +0000264 tty.c_cc[VSUSP] = CTRLCHAR('Z'); /* Ctrl-Z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000265
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 /* use line dicipline 0 */
267 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000268
Erik Andersene49d5ec2000-02-08 19:58:47 +0000269 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000270 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
271 tty.c_cflag |= HUPCL|CLOCAL;
Eric Andersen08b10341999-11-19 02:38:58 +0000272
Erik Andersene49d5ec2000-02-08 19:58:47 +0000273 /* input modes */
274 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000275
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 /* output modes */
277 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000278
Erik Andersene49d5ec2000-02-08 19:58:47 +0000279 /* local modes */
280 tty.c_lflag =
281 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000282
Erik Andersene49d5ec2000-02-08 19:58:47 +0000283 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000284}
285
Eric Andersen219d6f51999-11-02 19:43:01 +0000286/* How much memory does this machine have? */
Erik Andersend07ee462000-02-21 21:26:32 +0000287static int check_free_memory()
Eric Andersencc8ed391999-10-05 16:24:54 +0000288{
Erik Andersend07ee462000-02-21 21:26:32 +0000289 struct sysinfo info;
Eric Andersencc8ed391999-10-05 16:24:54 +0000290
Eric Andersen10dc9d42000-06-26 10:45:52 +0000291 /* Pre initialize mem_unit in case this kernel is something prior to
292 * the linux 2.4 kernel (which will actually fill in mem_unit... */
Erik Andersend07ee462000-02-21 21:26:32 +0000293 sysinfo(&info);
294 if (sysinfo(&info) != 0) {
Eric Andersen10dc9d42000-06-26 10:45:52 +0000295 printf("Error checking free memory: %s\n", strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000296 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000297 }
Eric Andersen10dc9d42000-06-26 10:45:52 +0000298 if (info.mem_unit==0) {
299 /* Looks like we have a kernel prior to Linux 2.4.x */
300 info.mem_unit=1024;
301 info.totalram/=info.mem_unit;
302 info.totalswap/=info.mem_unit;
303 } else {
304 /* Bah. Linux 2.4.x completely changed sysinfo. This can in theory
305 overflow a 32 bit unsigned long, but who puts more then 4GiB ram+swap
306 on an embedded system? */
307 info.mem_unit/=1024;
308 info.totalram*=info.mem_unit;
309 info.totalswap*=info.mem_unit;
310 }
Erik Andersend07ee462000-02-21 21:26:32 +0000311
Eric Andersen10dc9d42000-06-26 10:45:52 +0000312 return(info.totalram+info.totalswap);
Eric Andersencc8ed391999-10-05 16:24:54 +0000313}
314
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000315static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000316{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000317 int fd;
318 int tried_devcons = 0;
319 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000320 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 struct serial_struct sr;
322 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000323
Erik Andersene49d5ec2000-02-08 19:58:47 +0000324 if ((s = getenv("TERM")) != NULL) {
325 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
326 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000327
Erik Andersene49d5ec2000-02-08 19:58:47 +0000328 if ((s = getenv("CONSOLE")) != NULL) {
329 snprintf(console, sizeof(console) - 1, "%s", s);
330 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000331#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332 /* sparc kernel supports console=tty[ab] parameter which is also
333 * passed to init, so catch it here */
334 else if ((s = getenv("console")) != NULL) {
335 /* remap tty[ab] to /dev/ttyS[01] */
336 if (strcmp(s, "ttya") == 0)
337 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
338 else if (strcmp(s, "ttyb") == 0)
339 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
340 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000341#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000342 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000343 /* 2.2 kernels: identify the real console backend and try to use it */
344 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
345 /* this is a serial console */
346 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
347 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
348 /* this is linux virtual tty */
349 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
350 vt.v_active);
351 } else {
352 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
353 tried_devcons++;
354 }
Eric Andersen07e52971999-11-07 07:38:08 +0000355 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000356
357 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
358 /* Can't open selected console -- try /dev/console */
359 if (!tried_devcons) {
360 tried_devcons++;
361 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
362 continue;
363 }
364 /* Can't open selected console -- try vt1 */
365 if (!tried_vtprimary) {
366 tried_vtprimary++;
367 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
368 continue;
369 }
370 break;
371 }
372 if (fd < 0) {
373 /* Perhaps we should panic here? */
374 snprintf(console, sizeof(console) - 1, "/dev/null");
Eric Andersen07e52971999-11-07 07:38:08 +0000375 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000376 /* check for serial console and disable logging to tty3 & running a
377 * shell to tty2 */
378 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000379 log = NULL;
380 secondConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000381 /* Force the TERM setting to vt102 for serial console --
382 * iff TERM is set to linux (the default) */
383 if (strcmp( termType, "TERM=linux" ) == 0)
384 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
Erik Andersene132f4b2000-02-09 04:16:43 +0000385 message(LOG | CONSOLE,
386 "serial console detected. Disabling virtual terminals.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000387 }
388 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000389 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000390 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000391}
392
Erik Andersene49d5ec2000-02-08 19:58:47 +0000393static pid_t run(char *command, char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000394{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000395 int i, fd;
396 pid_t pid;
397 char *tmpCmd;
398 char *cmd[255];
Erik Andersene132f4b2000-02-09 04:16:43 +0000399 char buf[255];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000400 static const char press_enter[] =
401
402 "\nPlease press Enter to activate this console. ";
403 char *environment[] = {
404 "HOME=/",
405 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
406 "SHELL=/bin/sh",
407 termType,
408 "USER=root",
409 0
410 };
Erik Andersenac6e71f2000-01-08 22:04:33 +0000411
Eric Andersen0460ff21999-10-25 23:32:44 +0000412
Erik Andersene49d5ec2000-02-08 19:58:47 +0000413 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000414 /* Clean up */
415 close(0);
416 close(1);
417 close(2);
418 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000419
Erik Andersene49d5ec2000-02-08 19:58:47 +0000420 /* Reset signal handlers set for parent process */
421 signal(SIGUSR1, SIG_DFL);
422 signal(SIGUSR2, SIG_DFL);
423 signal(SIGINT, SIG_DFL);
424 signal(SIGTERM, SIG_DFL);
425 signal(SIGHUP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000426
Erik Andersene49d5ec2000-02-08 19:58:47 +0000427 if ((fd = device_open(terminal, O_RDWR)) < 0) {
428 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
429 exit(1);
430 }
431 dup2(fd, 0);
432 dup2(fd, 1);
433 dup2(fd, 2);
Eric Andersenb02c54e2000-07-04 19:41:23 +0000434 ioctl(0, TIOCSCTTY, 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000435 tcsetpgrp(0, getpgrp());
436 set_term(0);
437
438 if (get_enter == TRUE) {
439 /*
440 * Save memory by not exec-ing anything large (like a shell)
441 * before the user wants it. This is critical if swap is not
442 * enabled and the system has low memory. Generally this will
443 * be run on the second virtual console, and the first will
444 * be allowed to start a shell or whatever an init script
445 * specifies.
446 */
447 char c;
Erik Andersene132f4b2000-02-09 04:16:43 +0000448#ifdef DEBUG_INIT
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000449 pid_t shell_pgid = getpid();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000450 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
451 command, shell_pgid, terminal);
Erik Andersene132f4b2000-02-09 04:16:43 +0000452#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000453 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
454 read(fileno(stdin), &c, 1);
455 }
456
Erik Andersene49d5ec2000-02-08 19:58:47 +0000457#ifdef DEBUG_INIT
Erik Andersene132f4b2000-02-09 04:16:43 +0000458 /* Log the process name and args */
459 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
460 shell_pgid, terminal, command);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000461#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000462
463 /* See if any special /bin/sh requiring characters are present */
464 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
465 cmd[0] = SHELL;
466 cmd[1] = "-c";
467 strcpy(buf, "exec ");
468 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
469 cmd[2] = buf;
470 cmd[3] = NULL;
471 } else {
472 /* Convert command (char*) into cmd (char**, one word per string) */
473 for (tmpCmd = command, i = 0;
474 (tmpCmd = strsep(&command, " \t")) != NULL;) {
475 if (*tmpCmd != '\0') {
476 cmd[i] = tmpCmd;
477 tmpCmd++;
478 i++;
479 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000480 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000481 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000482 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000483
Erik Andersen183da4a2000-04-04 18:36:37 +0000484#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000485 {
486 struct stat sb;
487 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
488 struct rlimit limit;
489 limit.rlim_cur = RLIM_INFINITY;
490 limit.rlim_max = RLIM_INFINITY;
491 setrlimit(RLIMIT_CORE, &limit);
492 }
493 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000494#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000495
Erik Andersene49d5ec2000-02-08 19:58:47 +0000496 /* Now run it. The new program will take over this PID,
497 * so nothing further in init.c should be run. */
498 execve(cmd[0], cmd, environment);
499
500 /* We're still here? Some error happened. */
501 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmd[0],
502 strerror(errno));
503 exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000504 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000505 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000506}
507
Erik Andersene49d5ec2000-02-08 19:58:47 +0000508static int waitfor(char *command, char *terminal, int get_enter)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000509{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000510 int status, wpid;
511 int pid = run(command, terminal, get_enter);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000512
Erik Andersene49d5ec2000-02-08 19:58:47 +0000513 while (1) {
514 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000515 if (wpid > 0 && wpid != pid) {
516 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000517 }
518 if (wpid == pid)
519 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000520 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000521 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000522}
523
Eric Andersen219d6f51999-11-02 19:43:01 +0000524/* Make sure there is enough memory to do something useful. *
Erik Andersene132f4b2000-02-09 04:16:43 +0000525 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
Eric Andersen219d6f51999-11-02 19:43:01 +0000526static void check_memory()
527{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000528 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000529
Erik Andersend07ee462000-02-21 21:26:32 +0000530 if (check_free_memory() > 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000531 return;
532
533 if (stat("/etc/fstab", &statBuf) == 0) {
Erik Andersen61677fe2000-04-13 01:18:56 +0000534 /* swapon -a requires /proc typically */
535 waitfor("mount proc /proc -t proc", console, FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000536 /* Try to turn on swap */
Erik Andersen61677fe2000-04-13 01:18:56 +0000537 waitfor("swapon -a", console, FALSE);
Erik Andersend07ee462000-02-21 21:26:32 +0000538 if (check_free_memory() < 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000539 goto goodnight;
540 } else
541 goto goodnight;
Eric Andersen219d6f51999-11-02 19:43:01 +0000542 return;
543
Erik Andersene49d5ec2000-02-08 19:58:47 +0000544 goodnight:
545 message(CONSOLE,
546 "Sorry, your computer does not have enough memory.\r\n");
547 while (1)
548 sleep(1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000549}
550
Erik Andersene132f4b2000-02-09 04:16:43 +0000551/* Run all commands to be run right before halt/reboot */
552static void run_lastAction(void)
553{
554 initAction *a;
555 for (a = initActionList; a; a = a->nextPtr) {
556 if (a->action == CTRLALTDEL) {
557 waitfor(a->process, a->console, FALSE);
558 delete_initAction(a);
559 }
560 }
561}
562
563
Erik Andersen7dc16072000-01-04 01:10:25 +0000564#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000565static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000566{
Erik Andersene132f4b2000-02-09 04:16:43 +0000567
Erik Andersene49d5ec2000-02-08 19:58:47 +0000568 /* first disable our SIGHUP signal */
569 signal(SIGHUP, SIG_DFL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000570
Erik Andersene49d5ec2000-02-08 19:58:47 +0000571 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000572 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000573
574 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000575 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000576
577 /* Send signals to every process _except_ pid 1 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000578 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000579 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000580 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000581 sync();
582
Erik Andersene132f4b2000-02-09 04:16:43 +0000583 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000584 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000585 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000586
Erik Andersene132f4b2000-02-09 04:16:43 +0000587 /* run everything to be run at "ctrlaltdel" */
588 run_lastAction();
589
Erik Andersene49d5ec2000-02-08 19:58:47 +0000590 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000591 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000592 /* bdflush, kupdate not needed for kernels >2.2.11 */
593 bdflush(1, 0);
594 sync();
595 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000596}
597
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000598static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000599{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000600 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000601 message(CONSOLE|LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000602 "The system is halted. Press %s or turn off power\r\n",
603 (secondConsole == NULL) /* serial console */
604 ? "Reset" : "CTRL-ALT-DEL");
605 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000606
Erik Andersene49d5ec2000-02-08 19:58:47 +0000607 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000608 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000609
Eric Andersenbd22ed82000-07-08 18:55:24 +0000610 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000611 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000612 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000613 init_reboot(RB_HALT_SYSTEM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000614 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000615}
616
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000617static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000618{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000619 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000620 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000621 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000622
Erik Andersene49d5ec2000-02-08 19:58:47 +0000623 /* allow time for last message to reach serial console */
624 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000625
Erik Andersen4f3f7572000-04-28 00:18:56 +0000626 init_reboot(RB_AUTOBOOT);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000627 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000628}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000629
Erik Andersende552872000-01-23 01:34:05 +0000630#if defined BB_FEATURE_INIT_CHROOT
Erik Andersend07ee462000-02-21 21:26:32 +0000631
632#if ! defined BB_FEATURE_USE_PROCFS
633#error Sorry, I depend on the /proc filesystem right now.
634#endif
635
Erik Andersende552872000-01-23 01:34:05 +0000636static void check_chroot(int sig)
637{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000638 char *argv_init[2] = { "init", NULL, };
639 char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
640 char rootpath[256], *tc;
641 int fd;
Erik Andersende552872000-01-23 01:34:05 +0000642
Erik Andersene49d5ec2000-02-08 19:58:47 +0000643 if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
644 message(CONSOLE,
645 "SIGHUP recived, but could not open proc file\r\n");
646 sleep(2);
647 return;
648 }
649 if (read(fd, rootpath, sizeof(rootpath)) == -1) {
650 message(CONSOLE,
651 "SIGHUP recived, but could not read proc file\r\n");
652 sleep(2);
653 return;
654 }
655 close(fd);
656
657 if (rootpath[0] == '\0') {
658 message(CONSOLE,
659 "SIGHUP recived, but new root is not valid: %s\r\n",
660 rootpath);
661 sleep(2);
662 return;
663 }
664
665 tc = strrchr(rootpath, '\n');
666 *tc = '\0';
667
668 /* Ok, making it this far means we commit */
669 message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
670 rootpath);
671
672 /* kill all other programs first */
673 message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
674 kill(-1, SIGTERM);
Erik Andersende552872000-01-23 01:34:05 +0000675 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000676 sync();
677
678 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
679 kill(-1, SIGKILL);
Erik Andersende552872000-01-23 01:34:05 +0000680 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000681 sync();
682
683 /* ok, we don't need /proc anymore. we also assume that the signaling
684 * process left the rest of the filesystems alone for us */
685 umount("/proc");
686
687 /* Ok, now we chroot. Hopefully we only have two things mounted, the
688 * new chroot'd mount point, and the old "/" mount. s,
689 * we go ahead and unmount the old "/". This should trigger the kernel
690 * to set things up the Right Way(tm). */
691
692 if (!chroot(rootpath))
693 umount("/dev/root");
694
695 /* If the chroot fails, we are already too far to turn back, so we
696 * continue and hope that executing init below will revive the system */
697
698 /* close all of our descriptors and open new ones */
699 close(0);
700 close(1);
701 close(2);
702 open("/dev/console", O_RDWR, 0);
703 dup(0);
704 dup(0);
705
706 message(CONSOLE, "Executing real init...\r\n");
707 /* execute init in the (hopefully) new root */
708 execve("/sbin/init", argv_init, envp_init);
709
710 message(CONSOLE,
711 "ERROR: Could not exec new init. Press %s to reboot.\r\n",
712 (secondConsole == NULL) /* serial console */
713 ? "Reset" : "CTRL-ALT-DEL");
Erik Andersende552872000-01-23 01:34:05 +0000714 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000715}
716#endif /* BB_FEATURE_INIT_CHROOT */
Erik Andersende552872000-01-23 01:34:05 +0000717
Erik Andersene49d5ec2000-02-08 19:58:47 +0000718#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000719
Erik Andersene49d5ec2000-02-08 19:58:47 +0000720void new_initAction(initActionEnum action, char *process, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000721{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000722 initAction *newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000723
Erik Andersene49d5ec2000-02-08 19:58:47 +0000724 if (*cons == '\0')
725 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000726
Erik Andersene49d5ec2000-02-08 19:58:47 +0000727 /* If BusyBox detects that a serial console is in use,
728 * then entries not refering to the console or null devices will _not_ be run.
729 * The exception to this rule is the null device.
730 */
731 if (secondConsole == NULL && strcmp(cons, console)
732 && strcmp(cons, "/dev/null"))
733 return;
734
735 newAction = calloc((size_t) (1), sizeof(initAction));
736 if (!newAction) {
737 message(LOG | CONSOLE, "Memory allocation failure\n");
738 while (1)
739 sleep(1);
740 }
741 newAction->nextPtr = initActionList;
742 initActionList = newAction;
743 strncpy(newAction->process, process, 255);
744 newAction->action = action;
745 strncpy(newAction->console, cons, 255);
746 newAction->pid = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000747// message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000748// newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000749}
750
Erik Andersene132f4b2000-02-09 04:16:43 +0000751static void delete_initAction(initAction * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000752{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000753 initAction *a, *b = NULL;
754
755 for (a = initActionList; a; b = a, a = a->nextPtr) {
756 if (a == action) {
757 if (b == NULL) {
758 initActionList = a->nextPtr;
759 } else {
760 b->nextPtr = a->nextPtr;
761 }
762 free(a);
763 break;
764 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000765 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000766}
767
Erik Andersen9e737252000-01-06 01:16:13 +0000768/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
769 * then parse_inittab() simply adds in some default
770 * actions(i.e runs INIT_SCRIPT and then starts a pair
Erik Andersen812d4662000-01-07 18:30:40 +0000771 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
772 * _is_ defined, but /etc/inittab is missing, this
773 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000774 * */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000775void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000776{
Erik Andersen9e737252000-01-06 01:16:13 +0000777#ifdef BB_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000778 FILE *file;
779 char buf[256], lineAsRead[256], tmpConsole[256];
Eric Andersenb5966362000-05-31 20:04:38 +0000780 char *id, *runlev, *action, *process, *eol;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000781 const struct initActionType *a = actions;
782 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000783
784
Erik Andersene49d5ec2000-02-08 19:58:47 +0000785 file = fopen(INITTAB, "r");
786 if (file == NULL) {
787 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000788#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000789 /* Swapoff on halt/reboot */
Erik Andersenfb1793f2000-02-09 16:37:08 +0000790 new_initAction(CTRLALTDEL, "/sbin/swapoff -a > /dev/null 2>&1", console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000791 /* Umount all filesystems on halt/reboot */
792 new_initAction(CTRLALTDEL, "/bin/umount -a -r > /dev/null 2>&1", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000793 /* Askfirst shell on tty1 */
794 new_initAction(ASKFIRST, SHELL, console);
795 /* Askfirst shell on tty2 */
796 if (secondConsole != NULL)
797 new_initAction(ASKFIRST, SHELL, secondConsole);
798 /* sysinit */
799 new_initAction(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000800
Erik Andersene49d5ec2000-02-08 19:58:47 +0000801 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000802#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000803 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000804
Erik Andersene49d5ec2000-02-08 19:58:47 +0000805 while (fgets(buf, 255, file) != NULL) {
806 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000807 /* Skip leading spaces */
808 for (id = buf; *id == ' ' || *id == '\t'; id++);
809
810 /* Skip the line if it's a comment */
811 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000812 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000813
Erik Andersene49d5ec2000-02-08 19:58:47 +0000814 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000815 eol = strrchr(id, '\n');
816 if (eol != NULL)
817 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000818
Erik Andersene49d5ec2000-02-08 19:58:47 +0000819 /* Keep a copy around for posterity's sake (and error msgs) */
820 strcpy(lineAsRead, buf);
821
Eric Andersenb5966362000-05-31 20:04:38 +0000822 /* Separate the ID field from the runlevels */
823 runlev = strchr(id, ':');
824 if (runlev == NULL || *(runlev + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000825 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
826 continue;
827 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000828 *runlev = '\0';
829 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000830 }
831
Eric Andersenb5966362000-05-31 20:04:38 +0000832 /* Separate the runlevels from the action */
833 action = strchr(runlev, ':');
834 if (action == NULL || *(action + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000835 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
836 continue;
837 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000838 *action = '\0';
839 ++action;
840 }
841
842 /* Separate the action from the process */
843 process = strchr(action, ':');
844 if (process == NULL || *(process + 1) == '\0') {
845 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
846 continue;
847 } else {
848 *process = '\0';
849 ++process;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000850 }
851
852 /* Ok, now process it */
853 a = actions;
854 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +0000855 if (strcmp(a->name, action) == 0) {
856 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000857 struct stat statBuf;
858
859 strcpy(tmpConsole, "/dev/");
Eric Andersenb5966362000-05-31 20:04:38 +0000860 strncat(tmpConsole, id, 200);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000861 if (stat(tmpConsole, &statBuf) != 0) {
862 message(LOG | CONSOLE,
863 "device '%s' does not exist. Did you read the directions?\n",
864 tmpConsole);
865 break;
866 }
Eric Andersenb5966362000-05-31 20:04:38 +0000867 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000868 }
Eric Andersenb5966362000-05-31 20:04:38 +0000869 new_initAction(a->action, process, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000870 foundIt = TRUE;
871 }
872 a++;
873 }
874 if (foundIt == TRUE)
875 continue;
876 else {
877 /* Choke on an unknown action */
878 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
879 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000880 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000881 return;
Erik Andersen42094cd2000-03-20 21:34:52 +0000882#endif /* BB_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000883}
884
Erik Andersene132f4b2000-02-09 04:16:43 +0000885
886
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000887extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000888{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000889 initAction *a;
890 pid_t wpid;
891 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000892
Eric Andersend73dc5b1999-11-10 23:13:02 +0000893#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +0000894 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
895 if (getpid() != 1
896#ifdef BB_FEATURE_LINUXRC
897 && strstr(argv[0], "linuxrc") == NULL
898#endif
899 )
900 {
901 usage("init\n\nInit is the parent of all processes.\n\n"
902 "This version of init is designed to be run only "
903 "by the kernel.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000904 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000905 /* Set up sig handlers -- be sure to
906 * clear all of these in run() */
907 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +0000908 signal(SIGUSR2, halt_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 signal(SIGINT, reboot_signal);
910 signal(SIGTERM, reboot_signal);
Erik Andersende552872000-01-23 01:34:05 +0000911#if defined BB_FEATURE_INIT_CHROOT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000912 signal(SIGHUP, check_chroot);
Erik Andersende552872000-01-23 01:34:05 +0000913#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000914
Erik Andersene49d5ec2000-02-08 19:58:47 +0000915 /* Turn off rebooting via CTL-ALT-DEL -- we get a
916 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000917 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000918#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000919
Erik Andersen298854f2000-03-23 01:09:18 +0000920 /* Figure out what kernel this is running */
921 kernelVersion = get_kernel_revision();
922
Erik Andersene49d5ec2000-02-08 19:58:47 +0000923 /* Figure out where the default console should be */
924 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000925
Erik Andersene49d5ec2000-02-08 19:58:47 +0000926 /* Close whatever files are open, and reset the console. */
927 close(0);
928 close(1);
929 close(2);
930 set_term(0);
Erik Andersen983b51b2000-04-04 18:14:25 +0000931 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000932 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000933
Erik Andersene49d5ec2000-02-08 19:58:47 +0000934 /* Make sure PATH is set to something sane */
935 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000936
Erik Andersene49d5ec2000-02-08 19:58:47 +0000937 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000938#ifndef DEBUG_INIT
Erik Andersenea6b67d2000-03-07 07:47:10 +0000939 message(
940#if ! defined BB_FEATURE_EXTRA_QUIET
941 CONSOLE|
942#endif
943 LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000944 "init started: BusyBox v%s (%s) multi-call binary\r\n",
945 BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000946#else
Erik Andersenea6b67d2000-03-07 07:47:10 +0000947 message(
948#if ! defined BB_FEATURE_EXTRA_QUIET
949 CONSOLE|
950#endif
951 LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000952 "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n",
953 getpid(), BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000954#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000955
Eric Andersencc8ed391999-10-05 16:24:54 +0000956
Erik Andersene49d5ec2000-02-08 19:58:47 +0000957 /* Make sure there is enough memory to do something useful. */
958 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +0000959
Erik Andersene49d5ec2000-02-08 19:58:47 +0000960 /* 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 */
964 if (secondConsole != NULL)
965 new_initAction(ASKFIRST, SHELL, secondConsole);
966 /* Start a shell on tty1 */
967 new_initAction(RESPAWN, SHELL, console);
968 } else {
969 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000970
Erik Andersene49d5ec2000-02-08 19:58:47 +0000971 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
972 * then parse_inittab() simply adds in some default
973 * actions(i.e runs INIT_SCRIPT and then starts a pair
974 * of "askfirst" shells */
975 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000976 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000977
Erik Andersene132f4b2000-02-09 04:16:43 +0000978 /* Fix up argv[0] to be certain we claim to be init */
979 strncpy(argv[0], "init", strlen(argv[0])+1);
Erik Andersen07f56042000-02-09 06:05:01 +0000980 if (argc > 1)
981 strncpy(argv[1], "\0", strlen(argv[1])+1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000982
Erik Andersene49d5ec2000-02-08 19:58:47 +0000983 /* Now run everything that needs to be run */
984
985 /* First run the sysinit command */
986 for (a = initActionList; a; a = a->nextPtr) {
987 if (a->action == SYSINIT) {
988 waitfor(a->process, a->console, FALSE);
989 /* Now remove the "sysinit" entry from the list */
990 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000991 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000992 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000993 /* Next run anything that wants to block */
994 for (a = initActionList; a; a = a->nextPtr) {
995 if (a->action == WAIT) {
996 waitfor(a->process, a->console, FALSE);
997 /* Now remove the "wait" entry from the list */
998 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000999 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001000 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001001 /* Next run anything to be run only once */
1002 for (a = initActionList; a; a = a->nextPtr) {
1003 if (a->action == ONCE) {
1004 run(a->process, a->console, FALSE);
1005 /* Now remove the "once" entry from the list */
1006 delete_initAction(a);
1007 }
1008 }
1009 /* If there is nothing else to do, stop */
1010 if (initActionList == NULL) {
1011 message(LOG | CONSOLE,
1012 "No more tasks for init -- sleeping forever.\n");
1013 while (1)
1014 sleep(1);
1015 }
1016
1017 /* Now run the looping stuff for the rest of forever */
1018 while (1) {
1019 for (a = initActionList; a; a = a->nextPtr) {
1020 /* Only run stuff with pid==0. If they have
1021 * a pid, that means they are still running */
1022 if (a->pid == 0) {
1023 switch (a->action) {
1024 case RESPAWN:
1025 /* run the respawn stuff */
1026 a->pid = run(a->process, a->console, FALSE);
1027 break;
1028 case ASKFIRST:
1029 /* run the askfirst stuff */
1030 a->pid = run(a->process, a->console, TRUE);
1031 break;
1032 /* silence the compiler's incessant whining */
1033 default:
1034 break;
1035 }
1036 }
1037 }
1038 /* Wait for a child process to exit */
1039 wpid = wait(&status);
1040 if (wpid > 0) {
1041 /* Find out who died and clean up their corpse */
1042 for (a = initActionList; a; a = a->nextPtr) {
1043 if (a->pid == wpid) {
1044 a->pid = 0;
1045 message(LOG,
1046 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
1047 a->process, wpid);
1048 }
1049 }
1050 }
1051 sleep(1);
1052 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001053}
Erik Andersen029011b2000-03-04 21:19:32 +00001054
1055/*
1056Local Variables:
1057c-file-style: "linux"
1058c-basic-offset: 4
1059tab-width: 4
1060End:
1061*/