blob: 5a894392b2d4a1745766d23882ca547be0578c47 [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 Andersena15cd0b2000-06-19 18:14:20 +0000113static _syscall2(int, bdflush, int, func, int, data);
Erik Andersen4f3f7572000-04-28 00:18:56 +0000114#endif /* __GLIBC__ */
115
Eric Andersen0ecb54a1999-12-05 23:24:55 +0000116
Erik Andersen42094cd2000-03-20 21:34:52 +0000117#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
118#define VT_SECONDARY "/dev/tty2" /* Virtual console */
119#define VT_LOG "/dev/tty3" /* Virtual console */
120#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
121#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
122#define SHELL "/bin/sh" /* Default shell */
123#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000124#ifndef INIT_SCRIPT
Erik Andersen42094cd2000-03-20 21:34:52 +0000125#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000126#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000127
Erik Andersen42094cd2000-03-20 21:34:52 +0000128#define LOG 0x1
129#define CONSOLE 0x2
Erik Andersen7dc16072000-01-04 01:10:25 +0000130
131/* Allowed init action types */
132typedef enum {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133 SYSINIT = 1,
134 RESPAWN,
135 ASKFIRST,
136 WAIT,
Erik Andersene132f4b2000-02-09 04:16:43 +0000137 ONCE,
138 CTRLALTDEL
Erik Andersen7dc16072000-01-04 01:10:25 +0000139} initActionEnum;
140
Erik Andersen42094cd2000-03-20 21:34:52 +0000141/* A mapping between "inittab" action name strings and action type codes. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000142typedef struct initActionType {
143 const char *name;
144 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000145} initActionType;
146
147static const struct initActionType actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000148 {"sysinit", SYSINIT},
149 {"respawn", RESPAWN},
150 {"askfirst", ASKFIRST},
151 {"wait", WAIT},
152 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000153 {"ctrlaltdel", CTRLALTDEL},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000154 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000155};
156
Erik Andersen42094cd2000-03-20 21:34:52 +0000157/* Set up a linked list of initActions, to be read from inittab */
Erik Andersen7dc16072000-01-04 01:10:25 +0000158typedef struct initActionTag initAction;
159struct initActionTag {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160 pid_t pid;
161 char process[256];
162 char console[256];
163 initAction *nextPtr;
164 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000165};
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166initAction *initActionList = NULL;
Erik Andersen7dc16072000-01-04 01:10:25 +0000167
168
Erik Andersenac6e71f2000-01-08 22:04:33 +0000169static char *secondConsole = VT_SECONDARY;
Erik Andersen42094cd2000-03-20 21:34:52 +0000170static char *log = VT_LOG;
171static int kernelVersion = 0;
172static char termType[32] = "TERM=linux";
173static char console[32] = _PATH_CONSOLE;
174
Erik Andersene132f4b2000-02-09 04:16:43 +0000175static void delete_initAction(initAction * action);
Eric Andersen0460ff21999-10-25 23:32:44 +0000176
177
Erik Andersen42094cd2000-03-20 21:34:52 +0000178/* Print a message to the specified device.
179 * Device may be bitwise-or'd from LOG | CONSOLE */
180static void message(int device, char *fmt, ...)
Erik Andersen93d65132000-04-06 08:06:36 +0000181 __attribute__ ((format (printf, 2, 3)));
182static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000183{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000184 va_list arguments;
185 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000186
Eric Andersen4c781471999-11-26 08:12:56 +0000187#ifdef BB_SYSLOGD
188
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189 /* Log the message to syslogd */
190 if (device & LOG) {
191 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000192
Erik Andersene49d5ec2000-02-08 19:58:47 +0000193 va_start(arguments, fmt);
194 vsnprintf(msg, sizeof(msg), fmt, arguments);
195 va_end(arguments);
Erik Andersene132f4b2000-02-09 04:16:43 +0000196 openlog("init", 0, LOG_USER);
197 syslog(LOG_USER|LOG_INFO, msg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000198 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000199 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200#else
201 static int log_fd = -1;
202
203 /* Take full control of the log tty, and never close it.
204 * It's mine, all mine! Muhahahaha! */
205 if (log_fd < 0) {
206 if (log == NULL) {
207 /* don't even try to log, because there is no such console */
208 log_fd = -2;
209 /* log to main console instead */
210 device = CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000211 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
212 log_fd = -2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
214 fflush(stderr);
Erik Andersene132f4b2000-02-09 04:16:43 +0000215 log = NULL;
216 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000217 }
218 }
219 if ((device & LOG) && (log_fd >= 0)) {
220 va_start(arguments, fmt);
221 vdprintf(log_fd, fmt, arguments);
222 va_end(arguments);
223 }
Eric Andersen4c781471999-11-26 08:12:56 +0000224#endif
225
Erik Andersene49d5ec2000-02-08 19:58:47 +0000226 if (device & CONSOLE) {
227 /* Always send console messages to /dev/console so people will see them. */
228 if (
229 (fd =
230 device_open(_PATH_CONSOLE,
231 O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
232 va_start(arguments, fmt);
233 vdprintf(fd, fmt, arguments);
234 va_end(arguments);
235 close(fd);
236 } else {
237 fprintf(stderr, "Bummer, can't print: ");
238 va_start(arguments, fmt);
239 vfprintf(stderr, fmt, arguments);
240 fflush(stderr);
241 va_end(arguments);
242 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000243 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000244}
245
Eric Andersen0460ff21999-10-25 23:32:44 +0000246/* Set terminal settings to reasonable defaults */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000247void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000248{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000249 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000250
Erik Andersene49d5ec2000-02-08 19:58:47 +0000251 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000252
Erik Andersene49d5ec2000-02-08 19:58:47 +0000253 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000254 tty.c_cc[VINTR] = 3; /* C-c */
255 tty.c_cc[VQUIT] = 28; /* C-\ */
256 tty.c_cc[VERASE] = 127; /* C-? */
257 tty.c_cc[VKILL] = 21; /* C-u */
258 tty.c_cc[VEOF] = 4; /* C-d */
259 tty.c_cc[VSTART] = 17; /* C-q */
260 tty.c_cc[VSTOP] = 19; /* C-s */
261 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000262
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263 /* use line dicipline 0 */
264 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000265
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000267 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
268 tty.c_cflag |= HUPCL|CLOCAL;
Eric Andersen08b10341999-11-19 02:38:58 +0000269
Erik Andersene49d5ec2000-02-08 19:58:47 +0000270 /* input modes */
271 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000272
Erik Andersene49d5ec2000-02-08 19:58:47 +0000273 /* output modes */
274 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000275
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 /* local modes */
277 tty.c_lflag =
278 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000279
Erik Andersene49d5ec2000-02-08 19:58:47 +0000280 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000281}
282
Eric Andersen219d6f51999-11-02 19:43:01 +0000283/* How much memory does this machine have? */
Erik Andersend07ee462000-02-21 21:26:32 +0000284static int check_free_memory()
Eric Andersencc8ed391999-10-05 16:24:54 +0000285{
Erik Andersend07ee462000-02-21 21:26:32 +0000286 struct sysinfo info;
Eric Andersencc8ed391999-10-05 16:24:54 +0000287
Eric Andersen10dc9d42000-06-26 10:45:52 +0000288 /* Pre initialize mem_unit in case this kernel is something prior to
289 * the linux 2.4 kernel (which will actually fill in mem_unit... */
Erik Andersend07ee462000-02-21 21:26:32 +0000290 sysinfo(&info);
291 if (sysinfo(&info) != 0) {
Eric Andersen10dc9d42000-06-26 10:45:52 +0000292 printf("Error checking free memory: %s\n", strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000293 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000294 }
Eric Andersen10dc9d42000-06-26 10:45:52 +0000295 if (info.mem_unit==0) {
296 /* Looks like we have a kernel prior to Linux 2.4.x */
297 info.mem_unit=1024;
298 info.totalram/=info.mem_unit;
299 info.totalswap/=info.mem_unit;
300 } else {
301 /* Bah. Linux 2.4.x completely changed sysinfo. This can in theory
302 overflow a 32 bit unsigned long, but who puts more then 4GiB ram+swap
303 on an embedded system? */
304 info.mem_unit/=1024;
305 info.totalram*=info.mem_unit;
306 info.totalswap*=info.mem_unit;
307 }
Erik Andersend07ee462000-02-21 21:26:32 +0000308
Eric Andersen10dc9d42000-06-26 10:45:52 +0000309 return(info.totalram+info.totalswap);
Eric Andersencc8ed391999-10-05 16:24:54 +0000310}
311
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000312static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000313{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000314 int fd;
315 int tried_devcons = 0;
316 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000317 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000318 struct serial_struct sr;
319 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000320
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 if ((s = getenv("TERM")) != NULL) {
322 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
323 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000324
Erik Andersene49d5ec2000-02-08 19:58:47 +0000325 if ((s = getenv("CONSOLE")) != NULL) {
326 snprintf(console, sizeof(console) - 1, "%s", s);
327 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000328#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000329 /* sparc kernel supports console=tty[ab] parameter which is also
330 * passed to init, so catch it here */
331 else if ((s = getenv("console")) != NULL) {
332 /* remap tty[ab] to /dev/ttyS[01] */
333 if (strcmp(s, "ttya") == 0)
334 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
335 else if (strcmp(s, "ttyb") == 0)
336 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
337 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000338#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000339 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000340 /* 2.2 kernels: identify the real console backend and try to use it */
341 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
342 /* this is a serial console */
343 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
344 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
345 /* this is linux virtual tty */
346 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
347 vt.v_active);
348 } else {
349 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
350 tried_devcons++;
351 }
Eric Andersen07e52971999-11-07 07:38:08 +0000352 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000353
354 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
355 /* Can't open selected console -- try /dev/console */
356 if (!tried_devcons) {
357 tried_devcons++;
358 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
359 continue;
360 }
361 /* Can't open selected console -- try vt1 */
362 if (!tried_vtprimary) {
363 tried_vtprimary++;
364 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
365 continue;
366 }
367 break;
368 }
369 if (fd < 0) {
370 /* Perhaps we should panic here? */
371 snprintf(console, sizeof(console) - 1, "/dev/null");
Eric Andersen07e52971999-11-07 07:38:08 +0000372 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000373 /* check for serial console and disable logging to tty3 & running a
374 * shell to tty2 */
375 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000376 log = NULL;
377 secondConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000378 /* Force the TERM setting to vt102 for serial console --
379 * iff TERM is set to linux (the default) */
380 if (strcmp( termType, "TERM=linux" ) == 0)
381 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
Erik Andersene132f4b2000-02-09 04:16:43 +0000382 message(LOG | CONSOLE,
383 "serial console detected. Disabling virtual terminals.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000384 }
385 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000386 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000387 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000388}
389
Erik Andersene49d5ec2000-02-08 19:58:47 +0000390static pid_t run(char *command, char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000391{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000392 int i, fd;
393 pid_t pid;
394 char *tmpCmd;
395 char *cmd[255];
Erik Andersene132f4b2000-02-09 04:16:43 +0000396 char buf[255];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000397 static const char press_enter[] =
398
399 "\nPlease press Enter to activate this console. ";
400 char *environment[] = {
401 "HOME=/",
402 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
403 "SHELL=/bin/sh",
404 termType,
405 "USER=root",
406 0
407 };
Erik Andersenac6e71f2000-01-08 22:04:33 +0000408
Eric Andersen0460ff21999-10-25 23:32:44 +0000409
Erik Andersene49d5ec2000-02-08 19:58:47 +0000410 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000411 /* Clean up */
412 close(0);
413 close(1);
414 close(2);
415 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000416
Erik Andersene49d5ec2000-02-08 19:58:47 +0000417 /* Reset signal handlers set for parent process */
418 signal(SIGUSR1, SIG_DFL);
419 signal(SIGUSR2, SIG_DFL);
420 signal(SIGINT, SIG_DFL);
421 signal(SIGTERM, SIG_DFL);
422 signal(SIGHUP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000423
Erik Andersene49d5ec2000-02-08 19:58:47 +0000424 if ((fd = device_open(terminal, O_RDWR)) < 0) {
425 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
426 exit(1);
427 }
428 dup2(fd, 0);
429 dup2(fd, 1);
430 dup2(fd, 2);
Eric Andersenb02c54e2000-07-04 19:41:23 +0000431 ioctl(0, TIOCSCTTY, 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000432 tcsetpgrp(0, getpgrp());
433 set_term(0);
434
435 if (get_enter == TRUE) {
436 /*
437 * Save memory by not exec-ing anything large (like a shell)
438 * before the user wants it. This is critical if swap is not
439 * enabled and the system has low memory. Generally this will
440 * be run on the second virtual console, and the first will
441 * be allowed to start a shell or whatever an init script
442 * specifies.
443 */
444 char c;
Erik Andersene132f4b2000-02-09 04:16:43 +0000445#ifdef DEBUG_INIT
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000446 pid_t shell_pgid = getpid();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000447 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
448 command, shell_pgid, terminal);
Erik Andersene132f4b2000-02-09 04:16:43 +0000449#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000450 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
451 read(fileno(stdin), &c, 1);
452 }
453
Erik Andersene49d5ec2000-02-08 19:58:47 +0000454#ifdef DEBUG_INIT
Erik Andersene132f4b2000-02-09 04:16:43 +0000455 /* Log the process name and args */
456 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
457 shell_pgid, terminal, command);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000458#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000459
460 /* See if any special /bin/sh requiring characters are present */
461 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
462 cmd[0] = SHELL;
463 cmd[1] = "-c";
464 strcpy(buf, "exec ");
465 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
466 cmd[2] = buf;
467 cmd[3] = NULL;
468 } else {
469 /* Convert command (char*) into cmd (char**, one word per string) */
470 for (tmpCmd = command, i = 0;
471 (tmpCmd = strsep(&command, " \t")) != NULL;) {
472 if (*tmpCmd != '\0') {
473 cmd[i] = tmpCmd;
474 tmpCmd++;
475 i++;
476 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000477 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000478 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000479 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000480
Erik Andersen183da4a2000-04-04 18:36:37 +0000481#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000482 {
483 struct stat sb;
484 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
485 struct rlimit limit;
486 limit.rlim_cur = RLIM_INFINITY;
487 limit.rlim_max = RLIM_INFINITY;
488 setrlimit(RLIMIT_CORE, &limit);
489 }
490 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000491#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000492
Erik Andersene49d5ec2000-02-08 19:58:47 +0000493 /* Now run it. The new program will take over this PID,
494 * so nothing further in init.c should be run. */
495 execve(cmd[0], cmd, environment);
496
497 /* We're still here? Some error happened. */
498 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmd[0],
499 strerror(errno));
500 exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000501 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000502 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000503}
504
Erik Andersene49d5ec2000-02-08 19:58:47 +0000505static int waitfor(char *command, char *terminal, int get_enter)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000506{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000507 int status, wpid;
508 int pid = run(command, terminal, get_enter);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000509
Erik Andersene49d5ec2000-02-08 19:58:47 +0000510 while (1) {
511 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000512 if (wpid > 0 && wpid != pid) {
513 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000514 }
515 if (wpid == pid)
516 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000517 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000518 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000519}
520
Eric Andersen219d6f51999-11-02 19:43:01 +0000521/* Make sure there is enough memory to do something useful. *
Erik Andersene132f4b2000-02-09 04:16:43 +0000522 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
Eric Andersen219d6f51999-11-02 19:43:01 +0000523static void check_memory()
524{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000525 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000526
Erik Andersend07ee462000-02-21 21:26:32 +0000527 if (check_free_memory() > 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000528 return;
529
530 if (stat("/etc/fstab", &statBuf) == 0) {
Erik Andersen61677fe2000-04-13 01:18:56 +0000531 /* swapon -a requires /proc typically */
532 waitfor("mount proc /proc -t proc", console, FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000533 /* Try to turn on swap */
Erik Andersen61677fe2000-04-13 01:18:56 +0000534 waitfor("swapon -a", console, FALSE);
Erik Andersend07ee462000-02-21 21:26:32 +0000535 if (check_free_memory() < 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000536 goto goodnight;
537 } else
538 goto goodnight;
Eric Andersen219d6f51999-11-02 19:43:01 +0000539 return;
540
Erik Andersene49d5ec2000-02-08 19:58:47 +0000541 goodnight:
542 message(CONSOLE,
543 "Sorry, your computer does not have enough memory.\r\n");
544 while (1)
545 sleep(1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000546}
547
Erik Andersene132f4b2000-02-09 04:16:43 +0000548/* Run all commands to be run right before halt/reboot */
549static void run_lastAction(void)
550{
551 initAction *a;
552 for (a = initActionList; a; a = a->nextPtr) {
553 if (a->action == CTRLALTDEL) {
554 waitfor(a->process, a->console, FALSE);
555 delete_initAction(a);
556 }
557 }
558}
559
560
Erik Andersen7dc16072000-01-04 01:10:25 +0000561#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000562static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000563{
Erik Andersene132f4b2000-02-09 04:16:43 +0000564
Erik Andersene49d5ec2000-02-08 19:58:47 +0000565 /* first disable our SIGHUP signal */
566 signal(SIGHUP, SIG_DFL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000567
Erik Andersene49d5ec2000-02-08 19:58:47 +0000568 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000569 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000570
571 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000572 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000573
574 /* Send signals to every process _except_ pid 1 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000575 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000576 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000577 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000578 sync();
579
Erik Andersene132f4b2000-02-09 04:16:43 +0000580 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000581 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000582 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000583
Erik Andersene132f4b2000-02-09 04:16:43 +0000584 /* run everything to be run at "ctrlaltdel" */
585 run_lastAction();
586
Erik Andersene49d5ec2000-02-08 19:58:47 +0000587 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000588 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000589 /* bdflush, kupdate not needed for kernels >2.2.11 */
590 bdflush(1, 0);
591 sync();
592 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000593}
594
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000595static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000596{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000597 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000598 message(CONSOLE|LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000599 "The system is halted. Press %s or turn off power\r\n",
600 (secondConsole == NULL) /* serial console */
601 ? "Reset" : "CTRL-ALT-DEL");
602 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000603
Erik Andersene49d5ec2000-02-08 19:58:47 +0000604 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000605 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000606
Eric Andersenbd22ed82000-07-08 18:55:24 +0000607 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000608 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000609 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000610 init_reboot(RB_HALT_SYSTEM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000611 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000612}
613
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000614static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000615{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000616 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000617 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000618 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000619
Erik Andersene49d5ec2000-02-08 19:58:47 +0000620 /* allow time for last message to reach serial console */
621 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000622
Erik Andersen4f3f7572000-04-28 00:18:56 +0000623 init_reboot(RB_AUTOBOOT);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000624 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000625}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000626
Erik Andersende552872000-01-23 01:34:05 +0000627#if defined BB_FEATURE_INIT_CHROOT
Erik Andersend07ee462000-02-21 21:26:32 +0000628
629#if ! defined BB_FEATURE_USE_PROCFS
630#error Sorry, I depend on the /proc filesystem right now.
631#endif
632
Erik Andersende552872000-01-23 01:34:05 +0000633static void check_chroot(int sig)
634{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000635 char *argv_init[2] = { "init", NULL, };
636 char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
637 char rootpath[256], *tc;
638 int fd;
Erik Andersende552872000-01-23 01:34:05 +0000639
Erik Andersene49d5ec2000-02-08 19:58:47 +0000640 if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
641 message(CONSOLE,
642 "SIGHUP recived, but could not open proc file\r\n");
643 sleep(2);
644 return;
645 }
646 if (read(fd, rootpath, sizeof(rootpath)) == -1) {
647 message(CONSOLE,
648 "SIGHUP recived, but could not read proc file\r\n");
649 sleep(2);
650 return;
651 }
652 close(fd);
653
654 if (rootpath[0] == '\0') {
655 message(CONSOLE,
656 "SIGHUP recived, but new root is not valid: %s\r\n",
657 rootpath);
658 sleep(2);
659 return;
660 }
661
662 tc = strrchr(rootpath, '\n');
663 *tc = '\0';
664
665 /* Ok, making it this far means we commit */
666 message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
667 rootpath);
668
669 /* kill all other programs first */
670 message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
671 kill(-1, SIGTERM);
Erik Andersende552872000-01-23 01:34:05 +0000672 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000673 sync();
674
675 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
676 kill(-1, SIGKILL);
Erik Andersende552872000-01-23 01:34:05 +0000677 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000678 sync();
679
680 /* ok, we don't need /proc anymore. we also assume that the signaling
681 * process left the rest of the filesystems alone for us */
682 umount("/proc");
683
684 /* Ok, now we chroot. Hopefully we only have two things mounted, the
685 * new chroot'd mount point, and the old "/" mount. s,
686 * we go ahead and unmount the old "/". This should trigger the kernel
687 * to set things up the Right Way(tm). */
688
689 if (!chroot(rootpath))
690 umount("/dev/root");
691
692 /* If the chroot fails, we are already too far to turn back, so we
693 * continue and hope that executing init below will revive the system */
694
695 /* close all of our descriptors and open new ones */
696 close(0);
697 close(1);
698 close(2);
699 open("/dev/console", O_RDWR, 0);
700 dup(0);
701 dup(0);
702
703 message(CONSOLE, "Executing real init...\r\n");
704 /* execute init in the (hopefully) new root */
705 execve("/sbin/init", argv_init, envp_init);
706
707 message(CONSOLE,
708 "ERROR: Could not exec new init. Press %s to reboot.\r\n",
709 (secondConsole == NULL) /* serial console */
710 ? "Reset" : "CTRL-ALT-DEL");
Erik Andersende552872000-01-23 01:34:05 +0000711 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000712}
713#endif /* BB_FEATURE_INIT_CHROOT */
Erik Andersende552872000-01-23 01:34:05 +0000714
Erik Andersene49d5ec2000-02-08 19:58:47 +0000715#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000716
Erik Andersene49d5ec2000-02-08 19:58:47 +0000717void new_initAction(initActionEnum action, char *process, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000718{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000719 initAction *newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000720
Erik Andersene49d5ec2000-02-08 19:58:47 +0000721 if (*cons == '\0')
722 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000723
Erik Andersene49d5ec2000-02-08 19:58:47 +0000724 /* If BusyBox detects that a serial console is in use,
725 * then entries not refering to the console or null devices will _not_ be run.
726 * The exception to this rule is the null device.
727 */
728 if (secondConsole == NULL && strcmp(cons, console)
729 && strcmp(cons, "/dev/null"))
730 return;
731
732 newAction = calloc((size_t) (1), sizeof(initAction));
733 if (!newAction) {
734 message(LOG | CONSOLE, "Memory allocation failure\n");
735 while (1)
736 sleep(1);
737 }
738 newAction->nextPtr = initActionList;
739 initActionList = newAction;
740 strncpy(newAction->process, process, 255);
741 newAction->action = action;
742 strncpy(newAction->console, cons, 255);
743 newAction->pid = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000744// message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000745// newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000746}
747
Erik Andersene132f4b2000-02-09 04:16:43 +0000748static void delete_initAction(initAction * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000749{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000750 initAction *a, *b = NULL;
751
752 for (a = initActionList; a; b = a, a = a->nextPtr) {
753 if (a == action) {
754 if (b == NULL) {
755 initActionList = a->nextPtr;
756 } else {
757 b->nextPtr = a->nextPtr;
758 }
759 free(a);
760 break;
761 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000762 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000763}
764
Erik Andersen9e737252000-01-06 01:16:13 +0000765/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
766 * then parse_inittab() simply adds in some default
767 * actions(i.e runs INIT_SCRIPT and then starts a pair
Erik Andersen812d4662000-01-07 18:30:40 +0000768 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
769 * _is_ defined, but /etc/inittab is missing, this
770 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000771 * */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000772void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000773{
Erik Andersen9e737252000-01-06 01:16:13 +0000774#ifdef BB_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000775 FILE *file;
776 char buf[256], lineAsRead[256], tmpConsole[256];
Eric Andersenb5966362000-05-31 20:04:38 +0000777 char *id, *runlev, *action, *process, *eol;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000778 const struct initActionType *a = actions;
779 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000780
781
Erik Andersene49d5ec2000-02-08 19:58:47 +0000782 file = fopen(INITTAB, "r");
783 if (file == NULL) {
784 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000785#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000786 /* Swapoff on halt/reboot */
Erik Andersenfb1793f2000-02-09 16:37:08 +0000787 new_initAction(CTRLALTDEL, "/sbin/swapoff -a > /dev/null 2>&1", console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000788 /* Umount all filesystems on halt/reboot */
789 new_initAction(CTRLALTDEL, "/bin/umount -a -r > /dev/null 2>&1", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000790 /* Askfirst shell on tty1 */
791 new_initAction(ASKFIRST, SHELL, console);
792 /* Askfirst shell on tty2 */
793 if (secondConsole != NULL)
794 new_initAction(ASKFIRST, SHELL, secondConsole);
795 /* sysinit */
796 new_initAction(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000797
Erik Andersene49d5ec2000-02-08 19:58:47 +0000798 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000799#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000800 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000801
Erik Andersene49d5ec2000-02-08 19:58:47 +0000802 while (fgets(buf, 255, file) != NULL) {
803 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000804 /* Skip leading spaces */
805 for (id = buf; *id == ' ' || *id == '\t'; id++);
806
807 /* Skip the line if it's a comment */
808 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000809 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000810
Erik Andersene49d5ec2000-02-08 19:58:47 +0000811 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000812 eol = strrchr(id, '\n');
813 if (eol != NULL)
814 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000815
Erik Andersene49d5ec2000-02-08 19:58:47 +0000816 /* Keep a copy around for posterity's sake (and error msgs) */
817 strcpy(lineAsRead, buf);
818
Eric Andersenb5966362000-05-31 20:04:38 +0000819 /* Separate the ID field from the runlevels */
820 runlev = strchr(id, ':');
821 if (runlev == NULL || *(runlev + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000822 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
823 continue;
824 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000825 *runlev = '\0';
826 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000827 }
828
Eric Andersenb5966362000-05-31 20:04:38 +0000829 /* Separate the runlevels from the action */
830 action = strchr(runlev, ':');
831 if (action == NULL || *(action + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000832 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
833 continue;
834 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000835 *action = '\0';
836 ++action;
837 }
838
839 /* Separate the action from the process */
840 process = strchr(action, ':');
841 if (process == NULL || *(process + 1) == '\0') {
842 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
843 continue;
844 } else {
845 *process = '\0';
846 ++process;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000847 }
848
849 /* Ok, now process it */
850 a = actions;
851 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +0000852 if (strcmp(a->name, action) == 0) {
853 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000854 struct stat statBuf;
855
856 strcpy(tmpConsole, "/dev/");
Eric Andersenb5966362000-05-31 20:04:38 +0000857 strncat(tmpConsole, id, 200);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000858 if (stat(tmpConsole, &statBuf) != 0) {
859 message(LOG | CONSOLE,
860 "device '%s' does not exist. Did you read the directions?\n",
861 tmpConsole);
862 break;
863 }
Eric Andersenb5966362000-05-31 20:04:38 +0000864 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000865 }
Eric Andersenb5966362000-05-31 20:04:38 +0000866 new_initAction(a->action, process, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000867 foundIt = TRUE;
868 }
869 a++;
870 }
871 if (foundIt == TRUE)
872 continue;
873 else {
874 /* Choke on an unknown action */
875 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
876 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000877 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000878 return;
Erik Andersen42094cd2000-03-20 21:34:52 +0000879#endif /* BB_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000880}
881
Erik Andersene132f4b2000-02-09 04:16:43 +0000882
883
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000884extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000885{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000886 initAction *a;
887 pid_t wpid;
888 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000889
Eric Andersend73dc5b1999-11-10 23:13:02 +0000890#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +0000891 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
892 if (getpid() != 1
893#ifdef BB_FEATURE_LINUXRC
Matt Kraaie58771e2000-07-12 15:38:49 +0000894 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +0000895#endif
896 )
897 {
898 usage("init\n\nInit is the parent of all processes.\n\n"
899 "This version of init is designed to be run only "
900 "by the kernel.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000901 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 /* Set up sig handlers -- be sure to
903 * clear all of these in run() */
904 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +0000905 signal(SIGUSR2, halt_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000906 signal(SIGINT, reboot_signal);
907 signal(SIGTERM, reboot_signal);
Erik Andersende552872000-01-23 01:34:05 +0000908#if defined BB_FEATURE_INIT_CHROOT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 signal(SIGHUP, check_chroot);
Erik Andersende552872000-01-23 01:34:05 +0000910#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000911
Erik Andersene49d5ec2000-02-08 19:58:47 +0000912 /* Turn off rebooting via CTL-ALT-DEL -- we get a
913 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000914 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000915#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000916
Erik Andersen298854f2000-03-23 01:09:18 +0000917 /* Figure out what kernel this is running */
918 kernelVersion = get_kernel_revision();
919
Erik Andersene49d5ec2000-02-08 19:58:47 +0000920 /* Figure out where the default console should be */
921 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000922
Erik Andersene49d5ec2000-02-08 19:58:47 +0000923 /* Close whatever files are open, and reset the console. */
924 close(0);
925 close(1);
926 close(2);
927 set_term(0);
Erik Andersen983b51b2000-04-04 18:14:25 +0000928 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000929 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000930
Erik Andersene49d5ec2000-02-08 19:58:47 +0000931 /* Make sure PATH is set to something sane */
932 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000933
Erik Andersene49d5ec2000-02-08 19:58:47 +0000934 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000935#ifndef DEBUG_INIT
Erik Andersenea6b67d2000-03-07 07:47:10 +0000936 message(
937#if ! defined BB_FEATURE_EXTRA_QUIET
938 CONSOLE|
939#endif
940 LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000941 "init started: BusyBox v%s (%s) multi-call binary\r\n",
942 BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000943#else
Erik Andersenea6b67d2000-03-07 07:47:10 +0000944 message(
945#if ! defined BB_FEATURE_EXTRA_QUIET
946 CONSOLE|
947#endif
948 LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000949 "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n",
950 getpid(), BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000951#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000952
Eric Andersencc8ed391999-10-05 16:24:54 +0000953
Erik Andersene49d5ec2000-02-08 19:58:47 +0000954 /* Make sure there is enough memory to do something useful. */
955 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +0000956
Erik Andersene49d5ec2000-02-08 19:58:47 +0000957 /* Check if we are supposed to be in single user mode */
958 if (argc > 1 && (!strcmp(argv[1], "single") ||
959 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
960 /* Ask first then start a shell on tty2 */
961 if (secondConsole != NULL)
962 new_initAction(ASKFIRST, SHELL, secondConsole);
963 /* Start a shell on tty1 */
964 new_initAction(RESPAWN, SHELL, console);
965 } else {
966 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000967
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
969 * then parse_inittab() simply adds in some default
970 * actions(i.e runs INIT_SCRIPT and then starts a pair
971 * of "askfirst" shells */
972 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000973 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000974
Erik Andersene132f4b2000-02-09 04:16:43 +0000975 /* Fix up argv[0] to be certain we claim to be init */
976 strncpy(argv[0], "init", strlen(argv[0])+1);
Erik Andersen07f56042000-02-09 06:05:01 +0000977 if (argc > 1)
978 strncpy(argv[1], "\0", strlen(argv[1])+1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000979
Erik Andersene49d5ec2000-02-08 19:58:47 +0000980 /* Now run everything that needs to be run */
981
982 /* First run the sysinit command */
983 for (a = initActionList; a; a = a->nextPtr) {
984 if (a->action == SYSINIT) {
985 waitfor(a->process, a->console, FALSE);
986 /* Now remove the "sysinit" entry from the list */
987 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000988 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000989 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000990 /* Next run anything that wants to block */
991 for (a = initActionList; a; a = a->nextPtr) {
992 if (a->action == WAIT) {
993 waitfor(a->process, a->console, FALSE);
994 /* Now remove the "wait" entry from the list */
995 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000996 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000997 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000998 /* Next run anything to be run only once */
999 for (a = initActionList; a; a = a->nextPtr) {
1000 if (a->action == ONCE) {
1001 run(a->process, a->console, FALSE);
1002 /* Now remove the "once" entry from the list */
1003 delete_initAction(a);
1004 }
1005 }
1006 /* If there is nothing else to do, stop */
1007 if (initActionList == NULL) {
1008 message(LOG | CONSOLE,
1009 "No more tasks for init -- sleeping forever.\n");
1010 while (1)
1011 sleep(1);
1012 }
1013
1014 /* Now run the looping stuff for the rest of forever */
1015 while (1) {
1016 for (a = initActionList; a; a = a->nextPtr) {
1017 /* Only run stuff with pid==0. If they have
1018 * a pid, that means they are still running */
1019 if (a->pid == 0) {
1020 switch (a->action) {
1021 case RESPAWN:
1022 /* run the respawn stuff */
1023 a->pid = run(a->process, a->console, FALSE);
1024 break;
1025 case ASKFIRST:
1026 /* run the askfirst stuff */
1027 a->pid = run(a->process, a->console, TRUE);
1028 break;
1029 /* silence the compiler's incessant whining */
1030 default:
1031 break;
1032 }
1033 }
1034 }
1035 /* Wait for a child process to exit */
1036 wpid = wait(&status);
1037 if (wpid > 0) {
1038 /* Find out who died and clean up their corpse */
1039 for (a = initActionList; a; a = a->nextPtr) {
1040 if (a->pid == wpid) {
1041 a->pid = 0;
1042 message(LOG,
1043 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
1044 a->process, wpid);
1045 }
1046 }
1047 }
1048 sleep(1);
1049 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001050}
Erik Andersen029011b2000-03-04 21:19:32 +00001051
1052/*
1053Local Variables:
1054c-file-style: "linux"
1055c-basic-offset: 4
1056tab-width: 4
1057End:
1058*/