blob: 52440ef8575d0c87283708f1ee34eef33e899e21 [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 Andersen0460ff21999-10-25 23:32:44 +0000247/* Set terminal settings to reasonable defaults */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000248void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000249{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000250 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000251
Erik Andersene49d5ec2000-02-08 19:58:47 +0000252 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000253
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000255 tty.c_cc[VINTR] = 3; /* C-c */
256 tty.c_cc[VQUIT] = 28; /* C-\ */
257 tty.c_cc[VERASE] = 127; /* C-? */
258 tty.c_cc[VKILL] = 21; /* C-u */
259 tty.c_cc[VEOF] = 4; /* C-d */
260 tty.c_cc[VSTART] = 17; /* C-q */
261 tty.c_cc[VSTOP] = 19; /* C-s */
262 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000263
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264 /* use line dicipline 0 */
265 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000266
Erik Andersene49d5ec2000-02-08 19:58:47 +0000267 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000268 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
269 tty.c_cflag |= HUPCL|CLOCAL;
Eric Andersen08b10341999-11-19 02:38:58 +0000270
Erik Andersene49d5ec2000-02-08 19:58:47 +0000271 /* input modes */
272 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000273
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 /* output modes */
275 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000276
Erik Andersene49d5ec2000-02-08 19:58:47 +0000277 /* local modes */
278 tty.c_lflag =
279 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000280
Erik Andersene49d5ec2000-02-08 19:58:47 +0000281 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000282}
283
Eric Andersen219d6f51999-11-02 19:43:01 +0000284/* How much memory does this machine have? */
Erik Andersend07ee462000-02-21 21:26:32 +0000285static int check_free_memory()
Eric Andersencc8ed391999-10-05 16:24:54 +0000286{
Erik Andersend07ee462000-02-21 21:26:32 +0000287 struct sysinfo info;
Eric Andersencc8ed391999-10-05 16:24:54 +0000288
Eric Andersen10dc9d42000-06-26 10:45:52 +0000289 /* Pre initialize mem_unit in case this kernel is something prior to
290 * the linux 2.4 kernel (which will actually fill in mem_unit... */
Erik Andersend07ee462000-02-21 21:26:32 +0000291 sysinfo(&info);
292 if (sysinfo(&info) != 0) {
Eric Andersen10dc9d42000-06-26 10:45:52 +0000293 printf("Error checking free memory: %s\n", strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000294 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000295 }
Eric Andersen10dc9d42000-06-26 10:45:52 +0000296 if (info.mem_unit==0) {
297 /* Looks like we have a kernel prior to Linux 2.4.x */
298 info.mem_unit=1024;
299 info.totalram/=info.mem_unit;
300 info.totalswap/=info.mem_unit;
301 } else {
302 /* Bah. Linux 2.4.x completely changed sysinfo. This can in theory
303 overflow a 32 bit unsigned long, but who puts more then 4GiB ram+swap
304 on an embedded system? */
305 info.mem_unit/=1024;
306 info.totalram*=info.mem_unit;
307 info.totalswap*=info.mem_unit;
308 }
Erik Andersend07ee462000-02-21 21:26:32 +0000309
Eric Andersen10dc9d42000-06-26 10:45:52 +0000310 return(info.totalram+info.totalswap);
Eric Andersencc8ed391999-10-05 16:24:54 +0000311}
312
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000313static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000314{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000315 int fd;
316 int tried_devcons = 0;
317 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000318 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000319 struct serial_struct sr;
320 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000321
Erik Andersene49d5ec2000-02-08 19:58:47 +0000322 if ((s = getenv("TERM")) != NULL) {
323 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
324 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000325
Erik Andersene49d5ec2000-02-08 19:58:47 +0000326 if ((s = getenv("CONSOLE")) != NULL) {
327 snprintf(console, sizeof(console) - 1, "%s", s);
328 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000329#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000330 /* sparc kernel supports console=tty[ab] parameter which is also
331 * passed to init, so catch it here */
332 else if ((s = getenv("console")) != NULL) {
333 /* remap tty[ab] to /dev/ttyS[01] */
334 if (strcmp(s, "ttya") == 0)
335 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
336 else if (strcmp(s, "ttyb") == 0)
337 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
338 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000339#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000340 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000341 /* 2.2 kernels: identify the real console backend and try to use it */
342 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
343 /* this is a serial console */
344 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
345 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
346 /* this is linux virtual tty */
347 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
348 vt.v_active);
349 } else {
350 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
351 tried_devcons++;
352 }
Eric Andersen07e52971999-11-07 07:38:08 +0000353 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000354
355 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
356 /* Can't open selected console -- try /dev/console */
357 if (!tried_devcons) {
358 tried_devcons++;
359 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
360 continue;
361 }
362 /* Can't open selected console -- try vt1 */
363 if (!tried_vtprimary) {
364 tried_vtprimary++;
365 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
366 continue;
367 }
368 break;
369 }
370 if (fd < 0) {
371 /* Perhaps we should panic here? */
372 snprintf(console, sizeof(console) - 1, "/dev/null");
Eric Andersen07e52971999-11-07 07:38:08 +0000373 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000374 /* check for serial console and disable logging to tty3 & running a
375 * shell to tty2 */
376 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000377 log = NULL;
378 secondConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000379 /* 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 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
Erik Andersene132f4b2000-02-09 04:16:43 +0000383 message(LOG | CONSOLE,
384 "serial console detected. Disabling virtual terminals.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000385 }
386 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000387 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000388 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000389}
390
Erik Andersene49d5ec2000-02-08 19:58:47 +0000391static pid_t run(char *command, char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000392{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000393 int i, fd;
394 pid_t pid;
395 char *tmpCmd;
396 char *cmd[255];
Erik Andersene132f4b2000-02-09 04:16:43 +0000397 char buf[255];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000398 static const char press_enter[] =
399
400 "\nPlease press Enter to activate this console. ";
401 char *environment[] = {
402 "HOME=/",
403 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
404 "SHELL=/bin/sh",
405 termType,
406 "USER=root",
407 0
408 };
Erik Andersenac6e71f2000-01-08 22:04:33 +0000409
Eric Andersen0460ff21999-10-25 23:32:44 +0000410
Erik Andersene49d5ec2000-02-08 19:58:47 +0000411 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000412 /* Clean up */
413 close(0);
414 close(1);
415 close(2);
416 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000417
Erik Andersene49d5ec2000-02-08 19:58:47 +0000418 /* Reset signal handlers set for parent process */
419 signal(SIGUSR1, SIG_DFL);
420 signal(SIGUSR2, SIG_DFL);
421 signal(SIGINT, SIG_DFL);
422 signal(SIGTERM, SIG_DFL);
423 signal(SIGHUP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000424
Erik Andersene49d5ec2000-02-08 19:58:47 +0000425 if ((fd = device_open(terminal, O_RDWR)) < 0) {
426 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
427 exit(1);
428 }
429 dup2(fd, 0);
430 dup2(fd, 1);
431 dup2(fd, 2);
Eric Andersenb02c54e2000-07-04 19:41:23 +0000432 ioctl(0, TIOCSCTTY, 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000433 tcsetpgrp(0, getpgrp());
434 set_term(0);
435
436 if (get_enter == TRUE) {
437 /*
438 * Save memory by not exec-ing anything large (like a shell)
439 * before the user wants it. This is critical if swap is not
440 * enabled and the system has low memory. Generally this will
441 * be run on the second virtual console, and the first will
442 * be allowed to start a shell or whatever an init script
443 * specifies.
444 */
445 char c;
Erik Andersene132f4b2000-02-09 04:16:43 +0000446#ifdef DEBUG_INIT
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000447 pid_t shell_pgid = getpid();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000448 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
449 command, shell_pgid, terminal);
Erik Andersene132f4b2000-02-09 04:16:43 +0000450#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000451 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
452 read(fileno(stdin), &c, 1);
453 }
454
Erik Andersene49d5ec2000-02-08 19:58:47 +0000455#ifdef DEBUG_INIT
Erik Andersene132f4b2000-02-09 04:16:43 +0000456 /* Log the process name and args */
457 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
458 shell_pgid, terminal, command);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000459#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000460
461 /* See if any special /bin/sh requiring characters are present */
462 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
463 cmd[0] = SHELL;
464 cmd[1] = "-c";
465 strcpy(buf, "exec ");
466 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
467 cmd[2] = buf;
468 cmd[3] = NULL;
469 } else {
470 /* Convert command (char*) into cmd (char**, one word per string) */
471 for (tmpCmd = command, i = 0;
472 (tmpCmd = strsep(&command, " \t")) != NULL;) {
473 if (*tmpCmd != '\0') {
474 cmd[i] = tmpCmd;
475 tmpCmd++;
476 i++;
477 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000478 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000479 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000480 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000481
Erik Andersen183da4a2000-04-04 18:36:37 +0000482#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000483 {
484 struct stat sb;
485 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
486 struct rlimit limit;
487 limit.rlim_cur = RLIM_INFINITY;
488 limit.rlim_max = RLIM_INFINITY;
489 setrlimit(RLIMIT_CORE, &limit);
490 }
491 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000492#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000493
Erik Andersene49d5ec2000-02-08 19:58:47 +0000494 /* Now run it. The new program will take over this PID,
495 * so nothing further in init.c should be run. */
496 execve(cmd[0], cmd, environment);
497
498 /* We're still here? Some error happened. */
499 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmd[0],
500 strerror(errno));
501 exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000502 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000503 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000504}
505
Erik Andersene49d5ec2000-02-08 19:58:47 +0000506static int waitfor(char *command, char *terminal, int get_enter)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000507{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000508 int status, wpid;
509 int pid = run(command, terminal, get_enter);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000510
Erik Andersene49d5ec2000-02-08 19:58:47 +0000511 while (1) {
512 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000513 if (wpid > 0 && wpid != pid) {
514 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000515 }
516 if (wpid == pid)
517 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000518 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000519 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000520}
521
Eric Andersen219d6f51999-11-02 19:43:01 +0000522/* Make sure there is enough memory to do something useful. *
Erik Andersene132f4b2000-02-09 04:16:43 +0000523 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
Eric Andersen219d6f51999-11-02 19:43:01 +0000524static void check_memory()
525{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000526 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000527
Erik Andersend07ee462000-02-21 21:26:32 +0000528 if (check_free_memory() > 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000529 return;
530
531 if (stat("/etc/fstab", &statBuf) == 0) {
Erik Andersen61677fe2000-04-13 01:18:56 +0000532 /* swapon -a requires /proc typically */
533 waitfor("mount proc /proc -t proc", console, FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000534 /* Try to turn on swap */
Erik Andersen61677fe2000-04-13 01:18:56 +0000535 waitfor("swapon -a", console, FALSE);
Erik Andersend07ee462000-02-21 21:26:32 +0000536 if (check_free_memory() < 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000537 goto goodnight;
538 } else
539 goto goodnight;
Eric Andersen219d6f51999-11-02 19:43:01 +0000540 return;
541
Erik Andersene49d5ec2000-02-08 19:58:47 +0000542 goodnight:
543 message(CONSOLE,
544 "Sorry, your computer does not have enough memory.\r\n");
545 while (1)
546 sleep(1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000547}
548
Erik Andersene132f4b2000-02-09 04:16:43 +0000549/* Run all commands to be run right before halt/reboot */
550static void run_lastAction(void)
551{
552 initAction *a;
553 for (a = initActionList; a; a = a->nextPtr) {
554 if (a->action == CTRLALTDEL) {
555 waitfor(a->process, a->console, FALSE);
556 delete_initAction(a);
557 }
558 }
559}
560
561
Erik Andersen7dc16072000-01-04 01:10:25 +0000562#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000563static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000564{
Erik Andersene132f4b2000-02-09 04:16:43 +0000565
Erik Andersene49d5ec2000-02-08 19:58:47 +0000566 /* first disable our SIGHUP signal */
567 signal(SIGHUP, SIG_DFL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000568
Erik Andersene49d5ec2000-02-08 19:58:47 +0000569 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000570 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000571
572 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000573 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000574
575 /* Send signals to every process _except_ pid 1 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000576 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000577 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000578 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000579 sync();
580
Erik Andersene132f4b2000-02-09 04:16:43 +0000581 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000582 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000583 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000584
Erik Andersene132f4b2000-02-09 04:16:43 +0000585 /* run everything to be run at "ctrlaltdel" */
586 run_lastAction();
587
Erik Andersene49d5ec2000-02-08 19:58:47 +0000588 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000589 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000590 /* bdflush, kupdate not needed for kernels >2.2.11 */
591 bdflush(1, 0);
592 sync();
593 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000594}
595
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000596static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000597{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000598 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000599 message(CONSOLE|LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000600 "The system is halted. Press %s or turn off power\r\n",
601 (secondConsole == NULL) /* serial console */
602 ? "Reset" : "CTRL-ALT-DEL");
603 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000604
Erik Andersene49d5ec2000-02-08 19:58:47 +0000605 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000606 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000607
Eric Andersenbd22ed82000-07-08 18:55:24 +0000608 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000609 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000610 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000611 init_reboot(RB_HALT_SYSTEM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000612 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000613}
614
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000615static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000616{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000617 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000618 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000619 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000620
Erik Andersene49d5ec2000-02-08 19:58:47 +0000621 /* allow time for last message to reach serial console */
622 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000623
Erik Andersen4f3f7572000-04-28 00:18:56 +0000624 init_reboot(RB_AUTOBOOT);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000625 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000626}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000627
Erik Andersende552872000-01-23 01:34:05 +0000628#if defined BB_FEATURE_INIT_CHROOT
Erik Andersend07ee462000-02-21 21:26:32 +0000629
630#if ! defined BB_FEATURE_USE_PROCFS
631#error Sorry, I depend on the /proc filesystem right now.
632#endif
633
Erik Andersende552872000-01-23 01:34:05 +0000634static void check_chroot(int sig)
635{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000636 char *argv_init[2] = { "init", NULL, };
637 char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
638 char rootpath[256], *tc;
639 int fd;
Erik Andersende552872000-01-23 01:34:05 +0000640
Erik Andersene49d5ec2000-02-08 19:58:47 +0000641 if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
642 message(CONSOLE,
643 "SIGHUP recived, but could not open proc file\r\n");
644 sleep(2);
645 return;
646 }
647 if (read(fd, rootpath, sizeof(rootpath)) == -1) {
648 message(CONSOLE,
649 "SIGHUP recived, but could not read proc file\r\n");
650 sleep(2);
651 return;
652 }
653 close(fd);
654
655 if (rootpath[0] == '\0') {
656 message(CONSOLE,
657 "SIGHUP recived, but new root is not valid: %s\r\n",
658 rootpath);
659 sleep(2);
660 return;
661 }
662
663 tc = strrchr(rootpath, '\n');
664 *tc = '\0';
665
666 /* Ok, making it this far means we commit */
667 message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
668 rootpath);
669
670 /* kill all other programs first */
671 message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
672 kill(-1, SIGTERM);
Erik Andersende552872000-01-23 01:34:05 +0000673 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000674 sync();
675
676 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
677 kill(-1, SIGKILL);
Erik Andersende552872000-01-23 01:34:05 +0000678 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000679 sync();
680
681 /* ok, we don't need /proc anymore. we also assume that the signaling
682 * process left the rest of the filesystems alone for us */
683 umount("/proc");
684
685 /* Ok, now we chroot. Hopefully we only have two things mounted, the
686 * new chroot'd mount point, and the old "/" mount. s,
687 * we go ahead and unmount the old "/". This should trigger the kernel
688 * to set things up the Right Way(tm). */
689
690 if (!chroot(rootpath))
691 umount("/dev/root");
692
693 /* If the chroot fails, we are already too far to turn back, so we
694 * continue and hope that executing init below will revive the system */
695
696 /* close all of our descriptors and open new ones */
697 close(0);
698 close(1);
699 close(2);
700 open("/dev/console", O_RDWR, 0);
701 dup(0);
702 dup(0);
703
704 message(CONSOLE, "Executing real init...\r\n");
705 /* execute init in the (hopefully) new root */
706 execve("/sbin/init", argv_init, envp_init);
707
708 message(CONSOLE,
709 "ERROR: Could not exec new init. Press %s to reboot.\r\n",
710 (secondConsole == NULL) /* serial console */
711 ? "Reset" : "CTRL-ALT-DEL");
Erik Andersende552872000-01-23 01:34:05 +0000712 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000713}
714#endif /* BB_FEATURE_INIT_CHROOT */
Erik Andersende552872000-01-23 01:34:05 +0000715
Erik Andersene49d5ec2000-02-08 19:58:47 +0000716#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000717
Erik Andersene49d5ec2000-02-08 19:58:47 +0000718void new_initAction(initActionEnum action, char *process, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000719{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000720 initAction *newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000721
Erik Andersene49d5ec2000-02-08 19:58:47 +0000722 if (*cons == '\0')
723 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000724
Erik Andersene49d5ec2000-02-08 19:58:47 +0000725 /* 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
733 newAction = calloc((size_t) (1), sizeof(initAction));
734 if (!newAction) {
735 message(LOG | CONSOLE, "Memory allocation failure\n");
736 while (1)
737 sleep(1);
738 }
739 newAction->nextPtr = initActionList;
740 initActionList = newAction;
741 strncpy(newAction->process, process, 255);
742 newAction->action = action;
743 strncpy(newAction->console, cons, 255);
744 newAction->pid = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000745// message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000746// newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000747}
748
Erik Andersene132f4b2000-02-09 04:16:43 +0000749static void delete_initAction(initAction * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000750{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000751 initAction *a, *b = NULL;
752
753 for (a = initActionList; a; b = a, a = a->nextPtr) {
754 if (a == action) {
755 if (b == NULL) {
756 initActionList = a->nextPtr;
757 } else {
758 b->nextPtr = a->nextPtr;
759 }
760 free(a);
761 break;
762 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000763 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000764}
765
Erik Andersen9e737252000-01-06 01:16:13 +0000766/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
767 * then parse_inittab() simply adds in some default
768 * actions(i.e runs INIT_SCRIPT and then starts a pair
Erik Andersen812d4662000-01-07 18:30:40 +0000769 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
770 * _is_ defined, but /etc/inittab is missing, this
771 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000772 * */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000773void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000774{
Erik Andersen9e737252000-01-06 01:16:13 +0000775#ifdef BB_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000776 FILE *file;
777 char buf[256], lineAsRead[256], tmpConsole[256];
Eric Andersenb5966362000-05-31 20:04:38 +0000778 char *id, *runlev, *action, *process, *eol;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000779 const struct initActionType *a = actions;
780 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000781
782
Erik Andersene49d5ec2000-02-08 19:58:47 +0000783 file = fopen(INITTAB, "r");
784 if (file == NULL) {
785 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000786#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000787 /* Swapoff on halt/reboot */
Erik Andersenfb1793f2000-02-09 16:37:08 +0000788 new_initAction(CTRLALTDEL, "/sbin/swapoff -a > /dev/null 2>&1", console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000789 /* Umount all filesystems on halt/reboot */
790 new_initAction(CTRLALTDEL, "/bin/umount -a -r > /dev/null 2>&1", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000791 /* Askfirst shell on tty1 */
792 new_initAction(ASKFIRST, SHELL, console);
793 /* Askfirst shell on tty2 */
794 if (secondConsole != NULL)
795 new_initAction(ASKFIRST, SHELL, secondConsole);
796 /* sysinit */
797 new_initAction(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000798
Erik Andersene49d5ec2000-02-08 19:58:47 +0000799 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000800#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000801 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000802
Erik Andersene49d5ec2000-02-08 19:58:47 +0000803 while (fgets(buf, 255, file) != NULL) {
804 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000805 /* Skip leading spaces */
806 for (id = buf; *id == ' ' || *id == '\t'; id++);
807
808 /* Skip the line if it's a comment */
809 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000810 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000811
Erik Andersene49d5ec2000-02-08 19:58:47 +0000812 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000813 eol = strrchr(id, '\n');
814 if (eol != NULL)
815 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000816
Erik Andersene49d5ec2000-02-08 19:58:47 +0000817 /* Keep a copy around for posterity's sake (and error msgs) */
818 strcpy(lineAsRead, buf);
819
Eric Andersenb5966362000-05-31 20:04:38 +0000820 /* Separate the ID field from the runlevels */
821 runlev = strchr(id, ':');
822 if (runlev == NULL || *(runlev + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000823 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
824 continue;
825 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000826 *runlev = '\0';
827 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000828 }
829
Eric Andersenb5966362000-05-31 20:04:38 +0000830 /* Separate the runlevels from the action */
831 action = strchr(runlev, ':');
832 if (action == NULL || *(action + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000833 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
834 continue;
835 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000836 *action = '\0';
837 ++action;
838 }
839
840 /* Separate the action from the process */
841 process = strchr(action, ':');
842 if (process == NULL || *(process + 1) == '\0') {
843 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
844 continue;
845 } else {
846 *process = '\0';
847 ++process;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000848 }
849
850 /* Ok, now process it */
851 a = actions;
852 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +0000853 if (strcmp(a->name, action) == 0) {
854 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000855 struct stat statBuf;
856
857 strcpy(tmpConsole, "/dev/");
Eric Andersenb5966362000-05-31 20:04:38 +0000858 strncat(tmpConsole, id, 200);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000859 if (stat(tmpConsole, &statBuf) != 0) {
860 message(LOG | CONSOLE,
861 "device '%s' does not exist. Did you read the directions?\n",
862 tmpConsole);
863 break;
864 }
Eric Andersenb5966362000-05-31 20:04:38 +0000865 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000866 }
Eric Andersenb5966362000-05-31 20:04:38 +0000867 new_initAction(a->action, process, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000868 foundIt = TRUE;
869 }
870 a++;
871 }
872 if (foundIt == TRUE)
873 continue;
874 else {
875 /* Choke on an unknown action */
876 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
877 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000878 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000879 return;
Erik Andersen42094cd2000-03-20 21:34:52 +0000880#endif /* BB_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000881}
882
Erik Andersene132f4b2000-02-09 04:16:43 +0000883
884
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000885extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000886{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000887 initAction *a;
888 pid_t wpid;
889 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000890
Eric Andersend73dc5b1999-11-10 23:13:02 +0000891#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +0000892 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
893 if (getpid() != 1
894#ifdef BB_FEATURE_LINUXRC
895 && strstr(argv[0], "linuxrc") == NULL
896#endif
897 )
898 {
899 usage("init\n\nInit is the parent of all processes.\n\n"
900 "This version of init is designed to be run only "
901 "by the kernel.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000903 /* Set up sig handlers -- be sure to
904 * clear all of these in run() */
905 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +0000906 signal(SIGUSR2, halt_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000907 signal(SIGINT, reboot_signal);
908 signal(SIGTERM, reboot_signal);
Erik Andersende552872000-01-23 01:34:05 +0000909#if defined BB_FEATURE_INIT_CHROOT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000910 signal(SIGHUP, check_chroot);
Erik Andersende552872000-01-23 01:34:05 +0000911#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000912
Erik Andersene49d5ec2000-02-08 19:58:47 +0000913 /* Turn off rebooting via CTL-ALT-DEL -- we get a
914 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000915 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000916#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000917
Erik Andersen298854f2000-03-23 01:09:18 +0000918 /* Figure out what kernel this is running */
919 kernelVersion = get_kernel_revision();
920
Erik Andersene49d5ec2000-02-08 19:58:47 +0000921 /* Figure out where the default console should be */
922 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000923
Erik Andersene49d5ec2000-02-08 19:58:47 +0000924 /* Close whatever files are open, and reset the console. */
925 close(0);
926 close(1);
927 close(2);
928 set_term(0);
Erik Andersen983b51b2000-04-04 18:14:25 +0000929 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000930 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000931
Erik Andersene49d5ec2000-02-08 19:58:47 +0000932 /* Make sure PATH is set to something sane */
933 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000934
Erik Andersene49d5ec2000-02-08 19:58:47 +0000935 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000936#ifndef DEBUG_INIT
Erik Andersenea6b67d2000-03-07 07:47:10 +0000937 message(
938#if ! defined BB_FEATURE_EXTRA_QUIET
939 CONSOLE|
940#endif
941 LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000942 "init started: BusyBox v%s (%s) multi-call binary\r\n",
943 BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000944#else
Erik Andersenea6b67d2000-03-07 07:47:10 +0000945 message(
946#if ! defined BB_FEATURE_EXTRA_QUIET
947 CONSOLE|
948#endif
949 LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000950 "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n",
951 getpid(), BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000952#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000953
Eric Andersencc8ed391999-10-05 16:24:54 +0000954
Erik Andersene49d5ec2000-02-08 19:58:47 +0000955 /* Make sure there is enough memory to do something useful. */
956 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +0000957
Erik Andersene49d5ec2000-02-08 19:58:47 +0000958 /* Check if we are supposed to be in single user mode */
959 if (argc > 1 && (!strcmp(argv[1], "single") ||
960 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
961 /* Ask first then start a shell on tty2 */
962 if (secondConsole != NULL)
963 new_initAction(ASKFIRST, SHELL, secondConsole);
964 /* Start a shell on tty1 */
965 new_initAction(RESPAWN, SHELL, console);
966 } else {
967 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000968
Erik Andersene49d5ec2000-02-08 19:58:47 +0000969 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
970 * then parse_inittab() simply adds in some default
971 * actions(i.e runs INIT_SCRIPT and then starts a pair
972 * of "askfirst" shells */
973 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000974 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000975
Erik Andersene132f4b2000-02-09 04:16:43 +0000976 /* Fix up argv[0] to be certain we claim to be init */
977 strncpy(argv[0], "init", strlen(argv[0])+1);
Erik Andersen07f56042000-02-09 06:05:01 +0000978 if (argc > 1)
979 strncpy(argv[1], "\0", strlen(argv[1])+1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000980
Erik Andersene49d5ec2000-02-08 19:58:47 +0000981 /* Now run everything that needs to be run */
982
983 /* First run the sysinit command */
984 for (a = initActionList; a; a = a->nextPtr) {
985 if (a->action == SYSINIT) {
986 waitfor(a->process, a->console, FALSE);
987 /* Now remove the "sysinit" entry from the list */
988 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000989 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000990 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000991 /* Next run anything that wants to block */
992 for (a = initActionList; a; a = a->nextPtr) {
993 if (a->action == WAIT) {
994 waitfor(a->process, a->console, FALSE);
995 /* Now remove the "wait" entry from the list */
996 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000997 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000998 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000999 /* Next run anything to be run only once */
1000 for (a = initActionList; a; a = a->nextPtr) {
1001 if (a->action == ONCE) {
1002 run(a->process, a->console, FALSE);
1003 /* Now remove the "once" entry from the list */
1004 delete_initAction(a);
1005 }
1006 }
1007 /* If there is nothing else to do, stop */
1008 if (initActionList == NULL) {
1009 message(LOG | CONSOLE,
1010 "No more tasks for init -- sleeping forever.\n");
1011 while (1)
1012 sleep(1);
1013 }
1014
1015 /* Now run the looping stuff for the rest of forever */
1016 while (1) {
1017 for (a = initActionList; a; a = a->nextPtr) {
1018 /* Only run stuff with pid==0. If they have
1019 * a pid, that means they are still running */
1020 if (a->pid == 0) {
1021 switch (a->action) {
1022 case RESPAWN:
1023 /* run the respawn stuff */
1024 a->pid = run(a->process, a->console, FALSE);
1025 break;
1026 case ASKFIRST:
1027 /* run the askfirst stuff */
1028 a->pid = run(a->process, a->console, TRUE);
1029 break;
1030 /* silence the compiler's incessant whining */
1031 default:
1032 break;
1033 }
1034 }
1035 }
1036 /* Wait for a child process to exit */
1037 wpid = wait(&status);
1038 if (wpid > 0) {
1039 /* Find out who died and clean up their corpse */
1040 for (a = initActionList; a; a = a->nextPtr) {
1041 if (a->pid == wpid) {
1042 a->pid = 0;
1043 message(LOG,
1044 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
1045 a->process, wpid);
1046 }
1047 }
1048 }
1049 sleep(1);
1050 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001051}
Erik Andersen029011b2000-03-04 21:19:32 +00001052
1053/*
1054Local Variables:
1055c-file-style: "linux"
1056c-basic-offset: 4
1057tab-width: 4
1058End:
1059*/