blob: 5d0d924adbd894ee00ac8a8b688f6a97d36651a8 [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 Andersen3570a342000-09-25 21:45:58 +000030#include "busybox.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>
Eric Andersened3ef502001-01-27 08:24:39 +000040#include <limits.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000041#include <sys/fcntl.h>
42#include <sys/ioctl.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000043#include <sys/mount.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000044#include <sys/types.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000045#include <sys/wait.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +000046#ifdef BB_SYSLOGD
47# include <sys/syslog.h>
48#endif
49
Pavel Roskin9c5fcc32000-07-17 23:45:12 +000050#define bb_need_full_version
51#define BB_DECLARE_EXTERN
52#include "messages.c"
53
Eric Andersenbd22ed82000-07-08 18:55:24 +000054/* From <linux/vt.h> */
55struct vt_stat {
56 unsigned short v_active; /* active vt */
57 unsigned short v_signal; /* signal to send */
58 unsigned short v_state; /* vt bitmask */
59};
Mark Whitley59ab0252001-01-23 22:30:04 +000060static const int VT_GETSTATE = 0x5603; /* get global vt state info */
Eric Andersenbd22ed82000-07-08 18:55:24 +000061
62/* From <linux/serial.h> */
63struct serial_struct {
64 int type;
65 int line;
66 int port;
67 int irq;
68 int flags;
69 int xmit_fifo_size;
70 int custom_divisor;
71 int baud_base;
72 unsigned short close_delay;
73 char reserved_char[2];
74 int hub6;
75 unsigned short closing_wait; /* time to wait before closing */
76 unsigned short closing_wait2; /* no longer used... */
77 int reserved[4];
78};
79
80
Erik Andersen4f3f7572000-04-28 00:18:56 +000081
82#ifndef RB_HALT_SYSTEM
Mark Whitley59ab0252001-01-23 22:30:04 +000083static const int RB_HALT_SYSTEM = 0xcdef0123;
84static const int RB_ENABLE_CAD = 0x89abcdef;
85static const int RB_DISABLE_CAD = 0;
Erik Andersen4f3f7572000-04-28 00:18:56 +000086#define RB_POWER_OFF 0x4321fedc
Mark Whitley59ab0252001-01-23 22:30:04 +000087static const int RB_AUTOBOOT = 0x01234567;
Eric Andersene3a48d82000-12-12 23:22:35 +000088#if defined(__GLIBC__) || defined (__UCLIBC__)
Erik Andersen4f3f7572000-04-28 00:18:56 +000089#include <sys/reboot.h>
90 #define init_reboot(magic) reboot(magic)
91#else
92 #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
93#endif
94#endif
95
96#ifndef _PATH_STDPATH
97#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
98#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000099
Erik Andersen983b51b2000-04-04 18:14:25 +0000100
Erik Andersen183da4a2000-04-04 18:36:37 +0000101#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000102/*
Erik Andersen183da4a2000-04-04 18:36:37 +0000103 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
104 * before processes are spawned to set core file size as unlimited.
105 * This is for debugging only. Don't use this is production, unless
106 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +0000107 */
108#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
109#include <sys/resource.h>
110#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +0000111#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000112
Erik Andersen4d1d0111999-12-17 18:44:15 +0000113#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +0000114
Erik Andersen4f3f7572000-04-28 00:18:56 +0000115#if defined(__GLIBC__)
116#include <sys/kdaemon.h>
117#else
Eric Andersened3ef502001-01-27 08:24:39 +0000118#include <sys/syscall.h>
119#include <linux/unistd.h>
Eric Andersena15cd0b2000-06-19 18:14:20 +0000120static _syscall2(int, bdflush, int, func, int, data);
Erik Andersen4f3f7572000-04-28 00:18:56 +0000121#endif /* __GLIBC__ */
122
Eric Andersen0ecb54a1999-12-05 23:24:55 +0000123
Erik Andersen42094cd2000-03-20 21:34:52 +0000124#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
125#define VT_SECONDARY "/dev/tty2" /* Virtual console */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000126#define VT_THIRD "/dev/tty3" /* Virtual console */
127#define VT_FOURTH "/dev/tty4" /* Virtual console */
128#define VT_LOG "/dev/tty5" /* Virtual console */
Erik Andersen42094cd2000-03-20 21:34:52 +0000129#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
130#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000131#define SHELL "-/bin/sh" /* Default shell */
Erik Andersen42094cd2000-03-20 21:34:52 +0000132#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000133#ifndef INIT_SCRIPT
Erik Andersen42094cd2000-03-20 21:34:52 +0000134#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000135#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000136
Mark Whitley59ab0252001-01-23 22:30:04 +0000137static const int LOG = 0x1;
138static const int CONSOLE = 0x2;
Erik Andersen7dc16072000-01-04 01:10:25 +0000139
140/* Allowed init action types */
141typedef enum {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000142 SYSINIT = 1,
143 RESPAWN,
144 ASKFIRST,
145 WAIT,
Erik Andersene132f4b2000-02-09 04:16:43 +0000146 ONCE,
147 CTRLALTDEL
Erik Andersen7dc16072000-01-04 01:10:25 +0000148} initActionEnum;
149
Erik Andersen42094cd2000-03-20 21:34:52 +0000150/* A mapping between "inittab" action name strings and action type codes. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151typedef struct initActionType {
152 const char *name;
153 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000154} initActionType;
155
156static const struct initActionType actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000157 {"sysinit", SYSINIT},
158 {"respawn", RESPAWN},
159 {"askfirst", ASKFIRST},
160 {"wait", WAIT},
161 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000162 {"ctrlaltdel", CTRLALTDEL},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000163 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000164};
165
Erik Andersen42094cd2000-03-20 21:34:52 +0000166/* Set up a linked list of initActions, to be read from inittab */
Erik Andersen7dc16072000-01-04 01:10:25 +0000167typedef struct initActionTag initAction;
168struct initActionTag {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000169 pid_t pid;
170 char process[256];
171 char console[256];
172 initAction *nextPtr;
173 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000174};
Erik Andersene49d5ec2000-02-08 19:58:47 +0000175initAction *initActionList = NULL;
Erik Andersen7dc16072000-01-04 01:10:25 +0000176
177
Erik Andersenac6e71f2000-01-08 22:04:33 +0000178static char *secondConsole = VT_SECONDARY;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000179static char *thirdConsole = VT_THIRD;
180static char *fourthConsole = VT_FOURTH;
Erik Andersen42094cd2000-03-20 21:34:52 +0000181static char *log = VT_LOG;
182static int kernelVersion = 0;
183static char termType[32] = "TERM=linux";
184static char console[32] = _PATH_CONSOLE;
185
Erik Andersene132f4b2000-02-09 04:16:43 +0000186static void delete_initAction(initAction * action);
Eric Andersen0460ff21999-10-25 23:32:44 +0000187
188
Erik Andersen42094cd2000-03-20 21:34:52 +0000189/* Print a message to the specified device.
190 * Device may be bitwise-or'd from LOG | CONSOLE */
191static void message(int device, char *fmt, ...)
Erik Andersen93d65132000-04-06 08:06:36 +0000192 __attribute__ ((format (printf, 2, 3)));
193static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000194{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000195 va_list arguments;
196 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000197
Eric Andersen4c781471999-11-26 08:12:56 +0000198#ifdef BB_SYSLOGD
199
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200 /* Log the message to syslogd */
201 if (device & LOG) {
202 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000203
Erik Andersene49d5ec2000-02-08 19:58:47 +0000204 va_start(arguments, fmt);
205 vsnprintf(msg, sizeof(msg), fmt, arguments);
206 va_end(arguments);
Erik Andersene132f4b2000-02-09 04:16:43 +0000207 openlog("init", 0, LOG_USER);
208 syslog(LOG_USER|LOG_INFO, msg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000209 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000210 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000211#else
212 static int log_fd = -1;
213
214 /* Take full control of the log tty, and never close it.
215 * It's mine, all mine! Muhahahaha! */
216 if (log_fd < 0) {
217 if (log == NULL) {
218 /* don't even try to log, because there is no such console */
219 log_fd = -2;
220 /* log to main console instead */
221 device = CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000222 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
223 log_fd = -2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000224 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
225 fflush(stderr);
Erik Andersene132f4b2000-02-09 04:16:43 +0000226 log = NULL;
227 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228 }
229 }
230 if ((device & LOG) && (log_fd >= 0)) {
231 va_start(arguments, fmt);
232 vdprintf(log_fd, fmt, arguments);
233 va_end(arguments);
234 }
Eric Andersen4c781471999-11-26 08:12:56 +0000235#endif
236
Erik Andersene49d5ec2000-02-08 19:58:47 +0000237 if (device & CONSOLE) {
238 /* Always send console messages to /dev/console so people will see them. */
239 if (
240 (fd =
241 device_open(_PATH_CONSOLE,
242 O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
243 va_start(arguments, fmt);
244 vdprintf(fd, fmt, arguments);
245 va_end(arguments);
246 close(fd);
247 } else {
248 fprintf(stderr, "Bummer, can't print: ");
249 va_start(arguments, fmt);
250 vfprintf(stderr, fmt, arguments);
251 fflush(stderr);
252 va_end(arguments);
253 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000254 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000255}
256
Eric Andersen0460ff21999-10-25 23:32:44 +0000257/* Set terminal settings to reasonable defaults */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000259{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000260 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000261
Erik Andersene49d5ec2000-02-08 19:58:47 +0000262 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000263
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000265 tty.c_cc[VINTR] = 3; /* C-c */
266 tty.c_cc[VQUIT] = 28; /* C-\ */
267 tty.c_cc[VERASE] = 127; /* C-? */
268 tty.c_cc[VKILL] = 21; /* C-u */
269 tty.c_cc[VEOF] = 4; /* C-d */
270 tty.c_cc[VSTART] = 17; /* C-q */
271 tty.c_cc[VSTOP] = 19; /* C-s */
272 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000273
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 /* use line dicipline 0 */
275 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000276
Erik Andersene49d5ec2000-02-08 19:58:47 +0000277 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000278 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
279 tty.c_cflag |= HUPCL|CLOCAL;
Eric Andersen08b10341999-11-19 02:38:58 +0000280
Erik Andersene49d5ec2000-02-08 19:58:47 +0000281 /* input modes */
282 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000283
Erik Andersene49d5ec2000-02-08 19:58:47 +0000284 /* output modes */
285 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000286
Erik Andersene49d5ec2000-02-08 19:58:47 +0000287 /* local modes */
288 tty.c_lflag =
289 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000290
Erik Andersene49d5ec2000-02-08 19:58:47 +0000291 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000292}
293
Eric Andersenbc5941a2000-12-06 23:17:37 +0000294/* How much memory does this machine have?
295 Units are kBytes to avoid overflow on 4GB machines */
Erik Andersend07ee462000-02-21 21:26:32 +0000296static int check_free_memory()
Eric Andersencc8ed391999-10-05 16:24:54 +0000297{
Erik Andersend07ee462000-02-21 21:26:32 +0000298 struct sysinfo info;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000299 unsigned int result, u, s=10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000300
Erik Andersend07ee462000-02-21 21:26:32 +0000301 if (sysinfo(&info) != 0) {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000302 perror_msg("Error checking free memory: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000303 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000304 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000305
306 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
307 * Kernels 2.4.0 return info.mem_unit in bytes. */
308 u = info.mem_unit;
309 if (u==0) u=1;
310 while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
311 result = (info.totalram>>s) + (info.totalswap>>s);
312 result = result*u;
313 if (result < 0) result = INT_MAX;
314 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000315}
316
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000317static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000318{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000319 int fd;
320 int tried_devcons = 0;
321 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000322 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000323 struct serial_struct sr;
324 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000325
Erik Andersene49d5ec2000-02-08 19:58:47 +0000326 if ((s = getenv("TERM")) != NULL) {
327 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
328 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000329
Erik Andersene49d5ec2000-02-08 19:58:47 +0000330 if ((s = getenv("CONSOLE")) != NULL) {
331 snprintf(console, sizeof(console) - 1, "%s", s);
332 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000333#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000334 /* sparc kernel supports console=tty[ab] parameter which is also
335 * passed to init, so catch it here */
336 else if ((s = getenv("console")) != NULL) {
337 /* remap tty[ab] to /dev/ttyS[01] */
338 if (strcmp(s, "ttya") == 0)
339 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
340 else if (strcmp(s, "ttyb") == 0)
341 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
342 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000343#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000344 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345 /* 2.2 kernels: identify the real console backend and try to use it */
346 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
347 /* this is a serial console */
348 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
349 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
350 /* this is linux virtual tty */
351 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
352 vt.v_active);
353 } else {
354 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
355 tried_devcons++;
356 }
Eric Andersen07e52971999-11-07 07:38:08 +0000357 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000358
359 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
360 /* Can't open selected console -- try /dev/console */
361 if (!tried_devcons) {
362 tried_devcons++;
363 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
364 continue;
365 }
366 /* Can't open selected console -- try vt1 */
367 if (!tried_vtprimary) {
368 tried_vtprimary++;
369 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
370 continue;
371 }
372 break;
373 }
374 if (fd < 0) {
375 /* Perhaps we should panic here? */
376 snprintf(console, sizeof(console) - 1, "/dev/null");
Eric Andersen07e52971999-11-07 07:38:08 +0000377 } else {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000378 /* check for serial console and disable logging to tty5 & running a
379 * shell to tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000380 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000381 log = NULL;
382 secondConsole = NULL;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000383 thirdConsole = NULL;
384 fourthConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000385 /* Force the TERM setting to vt102 for serial console --
386 * iff TERM is set to linux (the default) */
387 if (strcmp( termType, "TERM=linux" ) == 0)
388 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
Erik Andersene132f4b2000-02-09 04:16:43 +0000389 message(LOG | CONSOLE,
390 "serial console detected. Disabling virtual terminals.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000391 }
392 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000393 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000394 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000395}
396
Erik Andersene49d5ec2000-02-08 19:58:47 +0000397static pid_t run(char *command, char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000398{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000399 int i, fd;
400 pid_t pid;
401 char *tmpCmd;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000402 char *cmd[255], *cmdpath;
Erik Andersene132f4b2000-02-09 04:16:43 +0000403 char buf[255];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000404 static const char press_enter[] =
405
Eric Andersen38624232001-01-25 00:04:16 +0000406#ifdef CUSTOMIZED_BANNER
407#include CUSTOMIZED_BANNER
408#endif
409
Erik Andersene49d5ec2000-02-08 19:58:47 +0000410 "\nPlease press Enter to activate this console. ";
411 char *environment[] = {
412 "HOME=/",
413 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
414 "SHELL=/bin/sh",
415 termType,
416 "USER=root",
417 0
418 };
Erik Andersenac6e71f2000-01-08 22:04:33 +0000419
Erik Andersene49d5ec2000-02-08 19:58:47 +0000420 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000421 /* Clean up */
Eric Andersenfb6a5082000-09-13 16:15:29 +0000422 ioctl(0, TIOCNOTTY, 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000423 close(0);
424 close(1);
425 close(2);
426 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000427
Erik Andersene49d5ec2000-02-08 19:58:47 +0000428 /* Reset signal handlers set for parent process */
429 signal(SIGUSR1, SIG_DFL);
430 signal(SIGUSR2, SIG_DFL);
431 signal(SIGINT, SIG_DFL);
432 signal(SIGTERM, SIG_DFL);
433 signal(SIGHUP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000434
Erik Andersene49d5ec2000-02-08 19:58:47 +0000435 if ((fd = device_open(terminal, O_RDWR)) < 0) {
436 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
437 exit(1);
438 }
439 dup2(fd, 0);
440 dup2(fd, 1);
441 dup2(fd, 2);
Eric Andersenfb6a5082000-09-13 16:15:29 +0000442 ioctl(0, TIOCSCTTY, 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000443 tcsetpgrp(0, getpgrp());
444 set_term(0);
445
446 if (get_enter == TRUE) {
447 /*
448 * Save memory by not exec-ing anything large (like a shell)
449 * before the user wants it. This is critical if swap is not
450 * enabled and the system has low memory. Generally this will
451 * be run on the second virtual console, and the first will
452 * be allowed to start a shell or whatever an init script
453 * specifies.
454 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000455#ifdef DEBUG_INIT
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000456 pid_t shell_pgid = getpid();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000457 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
458 command, shell_pgid, terminal);
Erik Andersene132f4b2000-02-09 04:16:43 +0000459#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000460 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
Pavel Roskincbe05e42000-09-14 22:47:29 +0000461 getc(stdin);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000462 }
463
Erik Andersene49d5ec2000-02-08 19:58:47 +0000464#ifdef DEBUG_INIT
Erik Andersene132f4b2000-02-09 04:16:43 +0000465 /* Log the process name and args */
466 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
467 shell_pgid, terminal, command);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000468#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000469
470 /* See if any special /bin/sh requiring characters are present */
471 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
472 cmd[0] = SHELL;
473 cmd[1] = "-c";
474 strcpy(buf, "exec ");
475 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
476 cmd[2] = buf;
477 cmd[3] = NULL;
478 } else {
479 /* Convert command (char*) into cmd (char**, one word per string) */
480 for (tmpCmd = command, i = 0;
481 (tmpCmd = strsep(&command, " \t")) != NULL;) {
482 if (*tmpCmd != '\0') {
483 cmd[i] = tmpCmd;
484 tmpCmd++;
485 i++;
486 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000487 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000488 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000489 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000490
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000491 cmdpath = cmd[0];
492
493 /*
494 Interactive shells want to see a dash in argv[0]. This
495 typically is handled by login, argv will be setup this
496 way if a dash appears at the front of the command path
497 (like "-/bin/sh").
498 */
499
500 if (*cmdpath == '-') {
501 char *s;
502
503 /* skip over the dash */
504 ++cmdpath;
505
506 /* find the last component in the command pathname */
507 s = get_last_path_component(cmdpath);
508
509 /* make a new argv[0] */
510 if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
511 message(LOG | CONSOLE, "malloc failed");
512 cmd[0] = cmdpath;
513 } else {
514 cmd[0][0] = '-';
515 strcpy(cmd[0]+1, s);
516 }
517 }
518
Erik Andersen183da4a2000-04-04 18:36:37 +0000519#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000520 {
521 struct stat sb;
522 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
523 struct rlimit limit;
524 limit.rlim_cur = RLIM_INFINITY;
525 limit.rlim_max = RLIM_INFINITY;
526 setrlimit(RLIMIT_CORE, &limit);
527 }
528 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000529#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000530
Erik Andersene49d5ec2000-02-08 19:58:47 +0000531 /* Now run it. The new program will take over this PID,
532 * so nothing further in init.c should be run. */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000533 execve(cmdpath, cmd, environment);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000534
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000535 /* We're still here? Some error happened. */
536 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmdpath,
537 strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000538 exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000539 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000540 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000541}
542
Erik Andersene49d5ec2000-02-08 19:58:47 +0000543static int waitfor(char *command, char *terminal, int get_enter)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000544{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000545 int status, wpid;
546 int pid = run(command, terminal, get_enter);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000547
Erik Andersene49d5ec2000-02-08 19:58:47 +0000548 while (1) {
549 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000550 if (wpid > 0 && wpid != pid) {
551 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000552 }
553 if (wpid == pid)
554 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000555 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000556 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000557}
558
Eric Andersen219d6f51999-11-02 19:43:01 +0000559/* Make sure there is enough memory to do something useful. *
Erik Andersene132f4b2000-02-09 04:16:43 +0000560 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
Eric Andersen219d6f51999-11-02 19:43:01 +0000561static void check_memory()
562{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000563 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000564
Erik Andersend07ee462000-02-21 21:26:32 +0000565 if (check_free_memory() > 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000566 return;
567
568 if (stat("/etc/fstab", &statBuf) == 0) {
Erik Andersen61677fe2000-04-13 01:18:56 +0000569 /* swapon -a requires /proc typically */
570 waitfor("mount proc /proc -t proc", console, FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000571 /* Try to turn on swap */
Erik Andersen61677fe2000-04-13 01:18:56 +0000572 waitfor("swapon -a", console, FALSE);
Erik Andersend07ee462000-02-21 21:26:32 +0000573 if (check_free_memory() < 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000574 goto goodnight;
575 } else
576 goto goodnight;
Eric Andersen219d6f51999-11-02 19:43:01 +0000577 return;
578
Erik Andersene49d5ec2000-02-08 19:58:47 +0000579 goodnight:
580 message(CONSOLE,
581 "Sorry, your computer does not have enough memory.\r\n");
582 while (1)
583 sleep(1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000584}
585
Erik Andersene132f4b2000-02-09 04:16:43 +0000586/* Run all commands to be run right before halt/reboot */
587static void run_lastAction(void)
588{
589 initAction *a;
590 for (a = initActionList; a; a = a->nextPtr) {
591 if (a->action == CTRLALTDEL) {
592 waitfor(a->process, a->console, FALSE);
593 delete_initAction(a);
594 }
595 }
596}
597
598
Erik Andersen7dc16072000-01-04 01:10:25 +0000599#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000600static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000601{
Erik Andersene132f4b2000-02-09 04:16:43 +0000602
Erik Andersene49d5ec2000-02-08 19:58:47 +0000603 /* first disable our SIGHUP signal */
604 signal(SIGHUP, SIG_DFL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000605
Erik Andersene49d5ec2000-02-08 19:58:47 +0000606 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000607 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000608
609 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000610 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000611
612 /* Send signals to every process _except_ pid 1 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000613 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000614 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000615 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000616 sync();
617
Erik Andersene132f4b2000-02-09 04:16:43 +0000618 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000619 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000620 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000621
Erik Andersene132f4b2000-02-09 04:16:43 +0000622 /* run everything to be run at "ctrlaltdel" */
623 run_lastAction();
624
Erik Andersene49d5ec2000-02-08 19:58:47 +0000625 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000626 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000627 /* bdflush, kupdate not needed for kernels >2.2.11 */
628 bdflush(1, 0);
629 sync();
630 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000631}
632
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000633static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000634{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000635 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000636 message(CONSOLE|LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000637 "The system is halted. Press %s or turn off power\r\n",
638 (secondConsole == NULL) /* serial console */
639 ? "Reset" : "CTRL-ALT-DEL");
640 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000641
Erik Andersene49d5ec2000-02-08 19:58:47 +0000642 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000643 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000644
Eric Andersenbd22ed82000-07-08 18:55:24 +0000645 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000646 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000647 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000648 init_reboot(RB_HALT_SYSTEM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000649 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000650}
651
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000652static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000653{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000654 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000655 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000656 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000657
Erik Andersene49d5ec2000-02-08 19:58:47 +0000658 /* allow time for last message to reach serial console */
659 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000660
Erik Andersen4f3f7572000-04-28 00:18:56 +0000661 init_reboot(RB_AUTOBOOT);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000662 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000663}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000664
Erik Andersende552872000-01-23 01:34:05 +0000665#if defined BB_FEATURE_INIT_CHROOT
Erik Andersend07ee462000-02-21 21:26:32 +0000666
Eric Andersen38624232001-01-25 00:04:16 +0000667#warning BB_FEATURE_INIT_CHROOT is out of date and should be rewritten to us
668#warning pivot root instead. Do not even bother till this work is done...
669#warning You have been warned.
670
Erik Andersend07ee462000-02-21 21:26:32 +0000671#if ! defined BB_FEATURE_USE_PROCFS
672#error Sorry, I depend on the /proc filesystem right now.
673#endif
674
Erik Andersende552872000-01-23 01:34:05 +0000675static void check_chroot(int sig)
676{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000677 char *argv_init[2] = { "init", NULL, };
678 char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
679 char rootpath[256], *tc;
680 int fd;
Erik Andersende552872000-01-23 01:34:05 +0000681
Erik Andersene49d5ec2000-02-08 19:58:47 +0000682 if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
683 message(CONSOLE,
684 "SIGHUP recived, but could not open proc file\r\n");
685 sleep(2);
686 return;
687 }
688 if (read(fd, rootpath, sizeof(rootpath)) == -1) {
689 message(CONSOLE,
690 "SIGHUP recived, but could not read proc file\r\n");
691 sleep(2);
692 return;
693 }
694 close(fd);
695
696 if (rootpath[0] == '\0') {
697 message(CONSOLE,
698 "SIGHUP recived, but new root is not valid: %s\r\n",
699 rootpath);
700 sleep(2);
701 return;
702 }
703
704 tc = strrchr(rootpath, '\n');
705 *tc = '\0';
706
707 /* Ok, making it this far means we commit */
708 message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
709 rootpath);
710
711 /* kill all other programs first */
712 message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
713 kill(-1, SIGTERM);
Erik Andersende552872000-01-23 01:34:05 +0000714 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000715 sync();
716
717 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
718 kill(-1, SIGKILL);
Erik Andersende552872000-01-23 01:34:05 +0000719 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000720 sync();
721
722 /* ok, we don't need /proc anymore. we also assume that the signaling
723 * process left the rest of the filesystems alone for us */
724 umount("/proc");
725
726 /* Ok, now we chroot. Hopefully we only have two things mounted, the
727 * new chroot'd mount point, and the old "/" mount. s,
728 * we go ahead and unmount the old "/". This should trigger the kernel
729 * to set things up the Right Way(tm). */
730
731 if (!chroot(rootpath))
732 umount("/dev/root");
733
734 /* If the chroot fails, we are already too far to turn back, so we
735 * continue and hope that executing init below will revive the system */
736
737 /* close all of our descriptors and open new ones */
738 close(0);
739 close(1);
740 close(2);
741 open("/dev/console", O_RDWR, 0);
742 dup(0);
743 dup(0);
744
745 message(CONSOLE, "Executing real init...\r\n");
746 /* execute init in the (hopefully) new root */
747 execve("/sbin/init", argv_init, envp_init);
748
749 message(CONSOLE,
750 "ERROR: Could not exec new init. Press %s to reboot.\r\n",
751 (secondConsole == NULL) /* serial console */
752 ? "Reset" : "CTRL-ALT-DEL");
Erik Andersende552872000-01-23 01:34:05 +0000753 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000754}
755#endif /* BB_FEATURE_INIT_CHROOT */
Erik Andersende552872000-01-23 01:34:05 +0000756
Erik Andersene49d5ec2000-02-08 19:58:47 +0000757#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000758
Erik Andersene49d5ec2000-02-08 19:58:47 +0000759void new_initAction(initActionEnum action, char *process, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000760{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000761 initAction *newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000762
Erik Andersene49d5ec2000-02-08 19:58:47 +0000763 if (*cons == '\0')
764 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000765
Erik Andersene49d5ec2000-02-08 19:58:47 +0000766 /* If BusyBox detects that a serial console is in use,
767 * then entries not refering to the console or null devices will _not_ be run.
768 * The exception to this rule is the null device.
769 */
770 if (secondConsole == NULL && strcmp(cons, console)
771 && strcmp(cons, "/dev/null"))
772 return;
773
774 newAction = calloc((size_t) (1), sizeof(initAction));
775 if (!newAction) {
776 message(LOG | CONSOLE, "Memory allocation failure\n");
777 while (1)
778 sleep(1);
779 }
780 newAction->nextPtr = initActionList;
781 initActionList = newAction;
782 strncpy(newAction->process, process, 255);
783 newAction->action = action;
784 strncpy(newAction->console, cons, 255);
785 newAction->pid = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000786// message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000787// newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000788}
789
Erik Andersene132f4b2000-02-09 04:16:43 +0000790static void delete_initAction(initAction * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000791{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000792 initAction *a, *b = NULL;
793
794 for (a = initActionList; a; b = a, a = a->nextPtr) {
795 if (a == action) {
796 if (b == NULL) {
797 initActionList = a->nextPtr;
798 } else {
799 b->nextPtr = a->nextPtr;
800 }
801 free(a);
802 break;
803 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000804 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000805}
806
Erik Andersen9e737252000-01-06 01:16:13 +0000807/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
808 * then parse_inittab() simply adds in some default
809 * actions(i.e runs INIT_SCRIPT and then starts a pair
Erik Andersen812d4662000-01-07 18:30:40 +0000810 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
811 * _is_ defined, but /etc/inittab is missing, this
812 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000813 * */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000814void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000815{
Erik Andersen9e737252000-01-06 01:16:13 +0000816#ifdef BB_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000817 FILE *file;
818 char buf[256], lineAsRead[256], tmpConsole[256];
Eric Andersenb5966362000-05-31 20:04:38 +0000819 char *id, *runlev, *action, *process, *eol;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000820 const struct initActionType *a = actions;
821 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000822
823
Erik Andersene49d5ec2000-02-08 19:58:47 +0000824 file = fopen(INITTAB, "r");
825 if (file == NULL) {
826 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000827#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000828 /* Swapoff on halt/reboot */
Pavel Roskin33bee332000-09-15 01:02:50 +0000829 new_initAction(CTRLALTDEL, "/sbin/swapoff -a", console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000830 /* Umount all filesystems on halt/reboot */
Pavel Roskin33bee332000-09-15 01:02:50 +0000831 new_initAction(CTRLALTDEL, "/bin/umount -a -r", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000832 /* Askfirst shell on tty1 */
833 new_initAction(ASKFIRST, SHELL, console);
834 /* Askfirst shell on tty2 */
835 if (secondConsole != NULL)
836 new_initAction(ASKFIRST, SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000837 /* Askfirst shell on tty3 */
838 if (thirdConsole != NULL)
839 new_initAction(ASKFIRST, SHELL, thirdConsole);
840 /* Askfirst shell on tty4 */
841 if (fourthConsole != NULL)
842 new_initAction(ASKFIRST, SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000843 /* sysinit */
844 new_initAction(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000845
Erik Andersene49d5ec2000-02-08 19:58:47 +0000846 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000847#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000848 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000849
Erik Andersene49d5ec2000-02-08 19:58:47 +0000850 while (fgets(buf, 255, file) != NULL) {
851 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000852 /* Skip leading spaces */
853 for (id = buf; *id == ' ' || *id == '\t'; id++);
854
855 /* Skip the line if it's a comment */
856 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000857 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000858
Erik Andersene49d5ec2000-02-08 19:58:47 +0000859 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000860 eol = strrchr(id, '\n');
861 if (eol != NULL)
862 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000863
Erik Andersene49d5ec2000-02-08 19:58:47 +0000864 /* Keep a copy around for posterity's sake (and error msgs) */
865 strcpy(lineAsRead, buf);
866
Eric Andersenb5966362000-05-31 20:04:38 +0000867 /* Separate the ID field from the runlevels */
868 runlev = strchr(id, ':');
869 if (runlev == NULL || *(runlev + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000870 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
871 continue;
872 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000873 *runlev = '\0';
874 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000875 }
876
Eric Andersenb5966362000-05-31 20:04:38 +0000877 /* Separate the runlevels from the action */
878 action = strchr(runlev, ':');
879 if (action == NULL || *(action + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000880 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
881 continue;
882 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000883 *action = '\0';
884 ++action;
885 }
886
887 /* Separate the action from the process */
888 process = strchr(action, ':');
889 if (process == NULL || *(process + 1) == '\0') {
890 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
891 continue;
892 } else {
893 *process = '\0';
894 ++process;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000895 }
896
897 /* Ok, now process it */
898 a = actions;
899 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +0000900 if (strcmp(a->name, action) == 0) {
901 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 struct stat statBuf;
903
904 strcpy(tmpConsole, "/dev/");
Eric Andersenb5966362000-05-31 20:04:38 +0000905 strncat(tmpConsole, id, 200);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000906 if (stat(tmpConsole, &statBuf) != 0) {
907 message(LOG | CONSOLE,
908 "device '%s' does not exist. Did you read the directions?\n",
909 tmpConsole);
910 break;
911 }
Eric Andersenb5966362000-05-31 20:04:38 +0000912 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000913 }
Eric Andersenb5966362000-05-31 20:04:38 +0000914 new_initAction(a->action, process, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000915 foundIt = TRUE;
916 }
917 a++;
918 }
919 if (foundIt == TRUE)
920 continue;
921 else {
922 /* Choke on an unknown action */
923 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
924 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000925 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000926 return;
Erik Andersen42094cd2000-03-20 21:34:52 +0000927#endif /* BB_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000928}
929
Erik Andersene132f4b2000-02-09 04:16:43 +0000930
931
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000932extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000933{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000934 initAction *a;
935 pid_t wpid;
936 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000937
Eric Andersend73dc5b1999-11-10 23:13:02 +0000938#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +0000939 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
940 if (getpid() != 1
941#ifdef BB_FEATURE_LINUXRC
Matt Kraaie58771e2000-07-12 15:38:49 +0000942 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +0000943#endif
944 )
945 {
946 usage("init\n\nInit is the parent of all processes.\n\n"
947 "This version of init is designed to be run only "
948 "by the kernel.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000949 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000950 /* Set up sig handlers -- be sure to
951 * clear all of these in run() */
952 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +0000953 signal(SIGUSR2, halt_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000954 signal(SIGINT, reboot_signal);
955 signal(SIGTERM, reboot_signal);
Erik Andersende552872000-01-23 01:34:05 +0000956#if defined BB_FEATURE_INIT_CHROOT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000957 signal(SIGHUP, check_chroot);
Erik Andersende552872000-01-23 01:34:05 +0000958#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000959
Erik Andersene49d5ec2000-02-08 19:58:47 +0000960 /* Turn off rebooting via CTL-ALT-DEL -- we get a
961 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000962 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000963#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000964
Erik Andersen298854f2000-03-23 01:09:18 +0000965 /* Figure out what kernel this is running */
966 kernelVersion = get_kernel_revision();
967
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 /* Figure out where the default console should be */
969 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000970
Erik Andersene49d5ec2000-02-08 19:58:47 +0000971 /* Close whatever files are open, and reset the console. */
972 close(0);
973 close(1);
974 close(2);
975 set_term(0);
Erik Andersen983b51b2000-04-04 18:14:25 +0000976 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000977 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000978
Erik Andersene49d5ec2000-02-08 19:58:47 +0000979 /* Make sure PATH is set to something sane */
980 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000981
Erik Andersene49d5ec2000-02-08 19:58:47 +0000982 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000983#ifndef DEBUG_INIT
Erik Andersenea6b67d2000-03-07 07:47:10 +0000984 message(
985#if ! defined BB_FEATURE_EXTRA_QUIET
986 CONSOLE|
987#endif
988 LOG,
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000989 "init started: %s\r\n", full_version);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000990#else
Erik Andersenea6b67d2000-03-07 07:47:10 +0000991 message(
992#if ! defined BB_FEATURE_EXTRA_QUIET
993 CONSOLE|
994#endif
995 LOG,
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000996 "init(%d) started: %s\r\n", getpid(), full_version);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000997#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000998
Eric Andersencc8ed391999-10-05 16:24:54 +0000999
Erik Andersene49d5ec2000-02-08 19:58:47 +00001000 /* Make sure there is enough memory to do something useful. */
1001 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +00001002
Erik Andersene49d5ec2000-02-08 19:58:47 +00001003 /* Check if we are supposed to be in single user mode */
1004 if (argc > 1 && (!strcmp(argv[1], "single") ||
1005 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001006 /* Ask first then start a shell on tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001007 if (secondConsole != NULL)
1008 new_initAction(ASKFIRST, SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001009 if (thirdConsole != NULL)
1010 new_initAction(ASKFIRST, SHELL, thirdConsole);
1011 if (fourthConsole != NULL)
1012 new_initAction(ASKFIRST, SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001013 /* Start a shell on tty1 */
1014 new_initAction(RESPAWN, SHELL, console);
1015 } else {
1016 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001017
Erik Andersene49d5ec2000-02-08 19:58:47 +00001018 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
1019 * then parse_inittab() simply adds in some default
1020 * actions(i.e runs INIT_SCRIPT and then starts a pair
1021 * of "askfirst" shells */
1022 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001023 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001024
Erik Andersene132f4b2000-02-09 04:16:43 +00001025 /* Fix up argv[0] to be certain we claim to be init */
Eric Andersenf34aa4c2000-09-21 02:32:11 +00001026 argv[0]="init";
1027
Erik Andersen07f56042000-02-09 06:05:01 +00001028 if (argc > 1)
1029 strncpy(argv[1], "\0", strlen(argv[1])+1);
Eric Andersen219d6f51999-11-02 19:43:01 +00001030
Erik Andersene49d5ec2000-02-08 19:58:47 +00001031 /* Now run everything that needs to be run */
1032
1033 /* First run the sysinit command */
1034 for (a = initActionList; a; a = a->nextPtr) {
1035 if (a->action == SYSINIT) {
1036 waitfor(a->process, a->console, FALSE);
1037 /* Now remove the "sysinit" entry from the list */
1038 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +00001039 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001040 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001041 /* Next run anything that wants to block */
1042 for (a = initActionList; a; a = a->nextPtr) {
1043 if (a->action == WAIT) {
1044 waitfor(a->process, a->console, FALSE);
1045 /* Now remove the "wait" entry from the list */
1046 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +00001047 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001048 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001049 /* Next run anything to be run only once */
1050 for (a = initActionList; a; a = a->nextPtr) {
1051 if (a->action == ONCE) {
1052 run(a->process, a->console, FALSE);
1053 /* Now remove the "once" entry from the list */
1054 delete_initAction(a);
1055 }
1056 }
1057 /* If there is nothing else to do, stop */
1058 if (initActionList == NULL) {
1059 message(LOG | CONSOLE,
1060 "No more tasks for init -- sleeping forever.\n");
1061 while (1)
1062 sleep(1);
1063 }
1064
1065 /* Now run the looping stuff for the rest of forever */
1066 while (1) {
1067 for (a = initActionList; a; a = a->nextPtr) {
1068 /* Only run stuff with pid==0. If they have
1069 * a pid, that means they are still running */
1070 if (a->pid == 0) {
1071 switch (a->action) {
1072 case RESPAWN:
1073 /* run the respawn stuff */
1074 a->pid = run(a->process, a->console, FALSE);
1075 break;
1076 case ASKFIRST:
1077 /* run the askfirst stuff */
1078 a->pid = run(a->process, a->console, TRUE);
1079 break;
1080 /* silence the compiler's incessant whining */
1081 default:
1082 break;
1083 }
1084 }
1085 }
1086 /* Wait for a child process to exit */
1087 wpid = wait(&status);
1088 if (wpid > 0) {
1089 /* Find out who died and clean up their corpse */
1090 for (a = initActionList; a; a = a->nextPtr) {
1091 if (a->pid == wpid) {
1092 a->pid = 0;
1093 message(LOG,
1094 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
1095 a->process, wpid);
1096 }
1097 }
1098 }
1099 sleep(1);
1100 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001101}
Erik Andersen029011b2000-03-04 21:19:32 +00001102
1103/*
1104Local Variables:
1105c-file-style: "linux"
1106c-basic-offset: 4
1107tab-width: 4
1108End:
1109*/