blob: 86906487f1e2030be207d851c81b5683219274bf [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>
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
Pavel Roskin9c5fcc32000-07-17 23:45:12 +000049#define bb_need_full_version
50#define BB_DECLARE_EXTERN
51#include "messages.c"
52
Eric Andersenbd22ed82000-07-08 18:55:24 +000053/* From <linux/vt.h> */
54struct vt_stat {
55 unsigned short v_active; /* active vt */
56 unsigned short v_signal; /* signal to send */
57 unsigned short v_state; /* vt bitmask */
58};
Mark Whitley59ab0252001-01-23 22:30:04 +000059static const int VT_GETSTATE = 0x5603; /* get global vt state info */
Eric Andersenbd22ed82000-07-08 18:55:24 +000060
61/* From <linux/serial.h> */
62struct serial_struct {
63 int type;
64 int line;
65 int port;
66 int irq;
67 int flags;
68 int xmit_fifo_size;
69 int custom_divisor;
70 int baud_base;
71 unsigned short close_delay;
72 char reserved_char[2];
73 int hub6;
74 unsigned short closing_wait; /* time to wait before closing */
75 unsigned short closing_wait2; /* no longer used... */
76 int reserved[4];
77};
78
79
Erik Andersen4f3f7572000-04-28 00:18:56 +000080
81#ifndef RB_HALT_SYSTEM
Mark Whitley59ab0252001-01-23 22:30:04 +000082static const int RB_HALT_SYSTEM = 0xcdef0123;
83static const int RB_ENABLE_CAD = 0x89abcdef;
84static const int RB_DISABLE_CAD = 0;
Erik Andersen4f3f7572000-04-28 00:18:56 +000085#define RB_POWER_OFF 0x4321fedc
Mark Whitley59ab0252001-01-23 22:30:04 +000086static const int RB_AUTOBOOT = 0x01234567;
Eric Andersene3a48d82000-12-12 23:22:35 +000087#if defined(__GLIBC__) || defined (__UCLIBC__)
Erik Andersen4f3f7572000-04-28 00:18:56 +000088#include <sys/reboot.h>
89 #define init_reboot(magic) reboot(magic)
90#else
91 #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
92#endif
93#endif
94
95#ifndef _PATH_STDPATH
96#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
97#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000098
Erik Andersen983b51b2000-04-04 18:14:25 +000099
Erik Andersen183da4a2000-04-04 18:36:37 +0000100#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000101/*
Erik Andersen183da4a2000-04-04 18:36:37 +0000102 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
103 * before processes are spawned to set core file size as unlimited.
104 * This is for debugging only. Don't use this is production, unless
105 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +0000106 */
107#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
108#include <sys/resource.h>
109#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +0000110#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000111
Erik Andersen4d1d0111999-12-17 18:44:15 +0000112#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +0000113
Erik Andersen4f3f7572000-04-28 00:18:56 +0000114#if defined(__GLIBC__)
115#include <sys/kdaemon.h>
116#else
Eric Andersena15cd0b2000-06-19 18:14:20 +0000117static _syscall2(int, bdflush, int, func, int, data);
Erik Andersen4f3f7572000-04-28 00:18:56 +0000118#endif /* __GLIBC__ */
119
Eric Andersen0ecb54a1999-12-05 23:24:55 +0000120
Erik Andersen42094cd2000-03-20 21:34:52 +0000121#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
122#define VT_SECONDARY "/dev/tty2" /* Virtual console */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000123#define VT_THIRD "/dev/tty3" /* Virtual console */
124#define VT_FOURTH "/dev/tty4" /* Virtual console */
125#define VT_LOG "/dev/tty5" /* Virtual console */
Erik Andersen42094cd2000-03-20 21:34:52 +0000126#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
127#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000128#define SHELL "-/bin/sh" /* Default shell */
Erik Andersen42094cd2000-03-20 21:34:52 +0000129#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000130#ifndef INIT_SCRIPT
Erik Andersen42094cd2000-03-20 21:34:52 +0000131#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000132#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000133
Mark Whitley59ab0252001-01-23 22:30:04 +0000134static const int LOG = 0x1;
135static const int CONSOLE = 0x2;
Erik Andersen7dc16072000-01-04 01:10:25 +0000136
137/* Allowed init action types */
138typedef enum {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000139 SYSINIT = 1,
140 RESPAWN,
141 ASKFIRST,
142 WAIT,
Erik Andersene132f4b2000-02-09 04:16:43 +0000143 ONCE,
144 CTRLALTDEL
Erik Andersen7dc16072000-01-04 01:10:25 +0000145} initActionEnum;
146
Erik Andersen42094cd2000-03-20 21:34:52 +0000147/* A mapping between "inittab" action name strings and action type codes. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000148typedef struct initActionType {
149 const char *name;
150 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000151} initActionType;
152
153static const struct initActionType actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154 {"sysinit", SYSINIT},
155 {"respawn", RESPAWN},
156 {"askfirst", ASKFIRST},
157 {"wait", WAIT},
158 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000159 {"ctrlaltdel", CTRLALTDEL},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000160 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000161};
162
Erik Andersen42094cd2000-03-20 21:34:52 +0000163/* Set up a linked list of initActions, to be read from inittab */
Erik Andersen7dc16072000-01-04 01:10:25 +0000164typedef struct initActionTag initAction;
165struct initActionTag {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166 pid_t pid;
167 char process[256];
168 char console[256];
169 initAction *nextPtr;
170 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000171};
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172initAction *initActionList = NULL;
Erik Andersen7dc16072000-01-04 01:10:25 +0000173
174
Erik Andersenac6e71f2000-01-08 22:04:33 +0000175static char *secondConsole = VT_SECONDARY;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000176static char *thirdConsole = VT_THIRD;
177static char *fourthConsole = VT_FOURTH;
Erik Andersen42094cd2000-03-20 21:34:52 +0000178static char *log = VT_LOG;
179static int kernelVersion = 0;
180static char termType[32] = "TERM=linux";
181static char console[32] = _PATH_CONSOLE;
182
Erik Andersene132f4b2000-02-09 04:16:43 +0000183static void delete_initAction(initAction * action);
Eric Andersen0460ff21999-10-25 23:32:44 +0000184
185
Erik Andersen42094cd2000-03-20 21:34:52 +0000186/* Print a message to the specified device.
187 * Device may be bitwise-or'd from LOG | CONSOLE */
188static void message(int device, char *fmt, ...)
Erik Andersen93d65132000-04-06 08:06:36 +0000189 __attribute__ ((format (printf, 2, 3)));
190static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000191{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000192 va_list arguments;
193 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000194
Eric Andersen4c781471999-11-26 08:12:56 +0000195#ifdef BB_SYSLOGD
196
Erik Andersene49d5ec2000-02-08 19:58:47 +0000197 /* Log the message to syslogd */
198 if (device & LOG) {
199 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000200
Erik Andersene49d5ec2000-02-08 19:58:47 +0000201 va_start(arguments, fmt);
202 vsnprintf(msg, sizeof(msg), fmt, arguments);
203 va_end(arguments);
Erik Andersene132f4b2000-02-09 04:16:43 +0000204 openlog("init", 0, LOG_USER);
205 syslog(LOG_USER|LOG_INFO, msg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000207 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208#else
209 static int log_fd = -1;
210
211 /* Take full control of the log tty, and never close it.
212 * It's mine, all mine! Muhahahaha! */
213 if (log_fd < 0) {
214 if (log == NULL) {
215 /* don't even try to log, because there is no such console */
216 log_fd = -2;
217 /* log to main console instead */
218 device = CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000219 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
220 log_fd = -2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000221 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
222 fflush(stderr);
Erik Andersene132f4b2000-02-09 04:16:43 +0000223 log = NULL;
224 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000225 }
226 }
227 if ((device & LOG) && (log_fd >= 0)) {
228 va_start(arguments, fmt);
229 vdprintf(log_fd, fmt, arguments);
230 va_end(arguments);
231 }
Eric Andersen4c781471999-11-26 08:12:56 +0000232#endif
233
Erik Andersene49d5ec2000-02-08 19:58:47 +0000234 if (device & CONSOLE) {
235 /* Always send console messages to /dev/console so people will see them. */
236 if (
237 (fd =
238 device_open(_PATH_CONSOLE,
239 O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
240 va_start(arguments, fmt);
241 vdprintf(fd, fmt, arguments);
242 va_end(arguments);
243 close(fd);
244 } else {
245 fprintf(stderr, "Bummer, can't print: ");
246 va_start(arguments, fmt);
247 vfprintf(stderr, fmt, arguments);
248 fflush(stderr);
249 va_end(arguments);
250 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000251 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000252}
253
Eric Andersen0460ff21999-10-25 23:32:44 +0000254/* Set terminal settings to reasonable defaults */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000255void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000256{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000257 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000258
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000260
Erik Andersene49d5ec2000-02-08 19:58:47 +0000261 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000262 tty.c_cc[VINTR] = 3; /* C-c */
263 tty.c_cc[VQUIT] = 28; /* C-\ */
264 tty.c_cc[VERASE] = 127; /* C-? */
265 tty.c_cc[VKILL] = 21; /* C-u */
266 tty.c_cc[VEOF] = 4; /* C-d */
267 tty.c_cc[VSTART] = 17; /* C-q */
268 tty.c_cc[VSTOP] = 19; /* C-s */
269 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000270
Erik Andersene49d5ec2000-02-08 19:58:47 +0000271 /* use line dicipline 0 */
272 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000273
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000275 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
276 tty.c_cflag |= HUPCL|CLOCAL;
Eric Andersen08b10341999-11-19 02:38:58 +0000277
Erik Andersene49d5ec2000-02-08 19:58:47 +0000278 /* input modes */
279 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000280
Erik Andersene49d5ec2000-02-08 19:58:47 +0000281 /* output modes */
282 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000283
Erik Andersene49d5ec2000-02-08 19:58:47 +0000284 /* local modes */
285 tty.c_lflag =
286 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000287
Erik Andersene49d5ec2000-02-08 19:58:47 +0000288 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000289}
290
Eric Andersenbc5941a2000-12-06 23:17:37 +0000291/* How much memory does this machine have?
292 Units are kBytes to avoid overflow on 4GB machines */
Erik Andersend07ee462000-02-21 21:26:32 +0000293static int check_free_memory()
Eric Andersencc8ed391999-10-05 16:24:54 +0000294{
Erik Andersend07ee462000-02-21 21:26:32 +0000295 struct sysinfo info;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000296 unsigned int result, u, s=10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000297
Erik Andersend07ee462000-02-21 21:26:32 +0000298 if (sysinfo(&info) != 0) {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000299 perror_msg("Error checking free memory: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000300 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000301 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000302
303 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
304 * Kernels 2.4.0 return info.mem_unit in bytes. */
305 u = info.mem_unit;
306 if (u==0) u=1;
307 while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
308 result = (info.totalram>>s) + (info.totalswap>>s);
309 result = result*u;
310 if (result < 0) result = INT_MAX;
311 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000312}
313
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000314static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000315{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000316 int fd;
317 int tried_devcons = 0;
318 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000319 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000320 struct serial_struct sr;
321 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000322
Erik Andersene49d5ec2000-02-08 19:58:47 +0000323 if ((s = getenv("TERM")) != NULL) {
324 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
325 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000326
Erik Andersene49d5ec2000-02-08 19:58:47 +0000327 if ((s = getenv("CONSOLE")) != NULL) {
328 snprintf(console, sizeof(console) - 1, "%s", s);
329 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000330#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000331 /* sparc kernel supports console=tty[ab] parameter which is also
332 * passed to init, so catch it here */
333 else if ((s = getenv("console")) != NULL) {
334 /* remap tty[ab] to /dev/ttyS[01] */
335 if (strcmp(s, "ttya") == 0)
336 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
337 else if (strcmp(s, "ttyb") == 0)
338 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
339 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000340#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000341 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000342 /* 2.2 kernels: identify the real console backend and try to use it */
343 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
344 /* this is a serial console */
345 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
346 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
347 /* this is linux virtual tty */
348 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
349 vt.v_active);
350 } else {
351 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
352 tried_devcons++;
353 }
Eric Andersen07e52971999-11-07 07:38:08 +0000354 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000355
356 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
357 /* Can't open selected console -- try /dev/console */
358 if (!tried_devcons) {
359 tried_devcons++;
360 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
361 continue;
362 }
363 /* Can't open selected console -- try vt1 */
364 if (!tried_vtprimary) {
365 tried_vtprimary++;
366 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
367 continue;
368 }
369 break;
370 }
371 if (fd < 0) {
372 /* Perhaps we should panic here? */
373 snprintf(console, sizeof(console) - 1, "/dev/null");
Eric Andersen07e52971999-11-07 07:38:08 +0000374 } else {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000375 /* check for serial console and disable logging to tty5 & running a
376 * shell to tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000377 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000378 log = NULL;
379 secondConsole = NULL;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000380 thirdConsole = NULL;
381 fourthConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000382 /* Force the TERM setting to vt102 for serial console --
383 * iff TERM is set to linux (the default) */
384 if (strcmp( termType, "TERM=linux" ) == 0)
385 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
Erik Andersene132f4b2000-02-09 04:16:43 +0000386 message(LOG | CONSOLE,
387 "serial console detected. Disabling virtual terminals.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000388 }
389 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000390 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000391 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000392}
393
Erik Andersene49d5ec2000-02-08 19:58:47 +0000394static pid_t run(char *command, char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000395{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000396 int i, fd;
397 pid_t pid;
398 char *tmpCmd;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000399 char *cmd[255], *cmdpath;
Erik Andersene132f4b2000-02-09 04:16:43 +0000400 char buf[255];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000401 static const char press_enter[] =
402
Eric Andersen38624232001-01-25 00:04:16 +0000403#ifdef CUSTOMIZED_BANNER
404#include CUSTOMIZED_BANNER
405#endif
406
Erik Andersene49d5ec2000-02-08 19:58:47 +0000407 "\nPlease press Enter to activate this console. ";
408 char *environment[] = {
409 "HOME=/",
410 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
411 "SHELL=/bin/sh",
412 termType,
413 "USER=root",
414 0
415 };
Erik Andersenac6e71f2000-01-08 22:04:33 +0000416
Erik Andersene49d5ec2000-02-08 19:58:47 +0000417 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000418 /* Clean up */
Eric Andersenfb6a5082000-09-13 16:15:29 +0000419 ioctl(0, TIOCNOTTY, 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000420 close(0);
421 close(1);
422 close(2);
423 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000424
Erik Andersene49d5ec2000-02-08 19:58:47 +0000425 /* Reset signal handlers set for parent process */
426 signal(SIGUSR1, SIG_DFL);
427 signal(SIGUSR2, SIG_DFL);
428 signal(SIGINT, SIG_DFL);
429 signal(SIGTERM, SIG_DFL);
430 signal(SIGHUP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000431
Erik Andersene49d5ec2000-02-08 19:58:47 +0000432 if ((fd = device_open(terminal, O_RDWR)) < 0) {
433 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
434 exit(1);
435 }
436 dup2(fd, 0);
437 dup2(fd, 1);
438 dup2(fd, 2);
Eric Andersenfb6a5082000-09-13 16:15:29 +0000439 ioctl(0, TIOCSCTTY, 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000440 tcsetpgrp(0, getpgrp());
441 set_term(0);
442
443 if (get_enter == TRUE) {
444 /*
445 * Save memory by not exec-ing anything large (like a shell)
446 * before the user wants it. This is critical if swap is not
447 * enabled and the system has low memory. Generally this will
448 * be run on the second virtual console, and the first will
449 * be allowed to start a shell or whatever an init script
450 * specifies.
451 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000452#ifdef DEBUG_INIT
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000453 pid_t shell_pgid = getpid();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000454 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
455 command, shell_pgid, terminal);
Erik Andersene132f4b2000-02-09 04:16:43 +0000456#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000457 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
Pavel Roskincbe05e42000-09-14 22:47:29 +0000458 getc(stdin);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000459 }
460
Erik Andersene49d5ec2000-02-08 19:58:47 +0000461#ifdef DEBUG_INIT
Erik Andersene132f4b2000-02-09 04:16:43 +0000462 /* Log the process name and args */
463 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
464 shell_pgid, terminal, command);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000465#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000466
467 /* See if any special /bin/sh requiring characters are present */
468 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
469 cmd[0] = SHELL;
470 cmd[1] = "-c";
471 strcpy(buf, "exec ");
472 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
473 cmd[2] = buf;
474 cmd[3] = NULL;
475 } else {
476 /* Convert command (char*) into cmd (char**, one word per string) */
477 for (tmpCmd = command, i = 0;
478 (tmpCmd = strsep(&command, " \t")) != NULL;) {
479 if (*tmpCmd != '\0') {
480 cmd[i] = tmpCmd;
481 tmpCmd++;
482 i++;
483 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000484 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000485 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000486 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000487
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000488 cmdpath = cmd[0];
489
490 /*
491 Interactive shells want to see a dash in argv[0]. This
492 typically is handled by login, argv will be setup this
493 way if a dash appears at the front of the command path
494 (like "-/bin/sh").
495 */
496
497 if (*cmdpath == '-') {
498 char *s;
499
500 /* skip over the dash */
501 ++cmdpath;
502
503 /* find the last component in the command pathname */
504 s = get_last_path_component(cmdpath);
505
506 /* make a new argv[0] */
507 if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
508 message(LOG | CONSOLE, "malloc failed");
509 cmd[0] = cmdpath;
510 } else {
511 cmd[0][0] = '-';
512 strcpy(cmd[0]+1, s);
513 }
514 }
515
Erik Andersen183da4a2000-04-04 18:36:37 +0000516#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000517 {
518 struct stat sb;
519 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
520 struct rlimit limit;
521 limit.rlim_cur = RLIM_INFINITY;
522 limit.rlim_max = RLIM_INFINITY;
523 setrlimit(RLIMIT_CORE, &limit);
524 }
525 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000526#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000527
Erik Andersene49d5ec2000-02-08 19:58:47 +0000528 /* Now run it. The new program will take over this PID,
529 * so nothing further in init.c should be run. */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000530 execve(cmdpath, cmd, environment);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000531
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000532 /* We're still here? Some error happened. */
533 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmdpath,
534 strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000535 exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000536 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000537 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000538}
539
Erik Andersene49d5ec2000-02-08 19:58:47 +0000540static int waitfor(char *command, char *terminal, int get_enter)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000541{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000542 int status, wpid;
543 int pid = run(command, terminal, get_enter);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000544
Erik Andersene49d5ec2000-02-08 19:58:47 +0000545 while (1) {
546 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000547 if (wpid > 0 && wpid != pid) {
548 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000549 }
550 if (wpid == pid)
551 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000552 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000553 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000554}
555
Eric Andersen219d6f51999-11-02 19:43:01 +0000556/* Make sure there is enough memory to do something useful. *
Erik Andersene132f4b2000-02-09 04:16:43 +0000557 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
Eric Andersen219d6f51999-11-02 19:43:01 +0000558static void check_memory()
559{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000560 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000561
Erik Andersend07ee462000-02-21 21:26:32 +0000562 if (check_free_memory() > 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000563 return;
564
565 if (stat("/etc/fstab", &statBuf) == 0) {
Erik Andersen61677fe2000-04-13 01:18:56 +0000566 /* swapon -a requires /proc typically */
567 waitfor("mount proc /proc -t proc", console, FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000568 /* Try to turn on swap */
Erik Andersen61677fe2000-04-13 01:18:56 +0000569 waitfor("swapon -a", console, FALSE);
Erik Andersend07ee462000-02-21 21:26:32 +0000570 if (check_free_memory() < 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000571 goto goodnight;
572 } else
573 goto goodnight;
Eric Andersen219d6f51999-11-02 19:43:01 +0000574 return;
575
Erik Andersene49d5ec2000-02-08 19:58:47 +0000576 goodnight:
577 message(CONSOLE,
578 "Sorry, your computer does not have enough memory.\r\n");
579 while (1)
580 sleep(1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000581}
582
Erik Andersene132f4b2000-02-09 04:16:43 +0000583/* Run all commands to be run right before halt/reboot */
584static void run_lastAction(void)
585{
586 initAction *a;
587 for (a = initActionList; a; a = a->nextPtr) {
588 if (a->action == CTRLALTDEL) {
589 waitfor(a->process, a->console, FALSE);
590 delete_initAction(a);
591 }
592 }
593}
594
595
Erik Andersen7dc16072000-01-04 01:10:25 +0000596#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000597static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000598{
Erik Andersene132f4b2000-02-09 04:16:43 +0000599
Erik Andersene49d5ec2000-02-08 19:58:47 +0000600 /* first disable our SIGHUP signal */
601 signal(SIGHUP, SIG_DFL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000602
Erik Andersene49d5ec2000-02-08 19:58:47 +0000603 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000604 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000605
606 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000607 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000608
609 /* Send signals to every process _except_ pid 1 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000610 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000611 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000612 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000613 sync();
614
Erik Andersene132f4b2000-02-09 04:16:43 +0000615 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000616 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000617 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000618
Erik Andersene132f4b2000-02-09 04:16:43 +0000619 /* run everything to be run at "ctrlaltdel" */
620 run_lastAction();
621
Erik Andersene49d5ec2000-02-08 19:58:47 +0000622 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000623 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000624 /* bdflush, kupdate not needed for kernels >2.2.11 */
625 bdflush(1, 0);
626 sync();
627 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000628}
629
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000630static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000631{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000632 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000633 message(CONSOLE|LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000634 "The system is halted. Press %s or turn off power\r\n",
635 (secondConsole == NULL) /* serial console */
636 ? "Reset" : "CTRL-ALT-DEL");
637 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000638
Erik Andersene49d5ec2000-02-08 19:58:47 +0000639 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000640 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000641
Eric Andersenbd22ed82000-07-08 18:55:24 +0000642 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000643 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000644 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000645 init_reboot(RB_HALT_SYSTEM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000646 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000647}
648
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000649static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000650{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000651 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000652 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000653 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000654
Erik Andersene49d5ec2000-02-08 19:58:47 +0000655 /* allow time for last message to reach serial console */
656 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000657
Erik Andersen4f3f7572000-04-28 00:18:56 +0000658 init_reboot(RB_AUTOBOOT);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000659 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000660}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000661
Erik Andersende552872000-01-23 01:34:05 +0000662#if defined BB_FEATURE_INIT_CHROOT
Erik Andersend07ee462000-02-21 21:26:32 +0000663
Eric Andersen38624232001-01-25 00:04:16 +0000664#warning BB_FEATURE_INIT_CHROOT is out of date and should be rewritten to us
665#warning pivot root instead. Do not even bother till this work is done...
666#warning You have been warned.
667
Erik Andersend07ee462000-02-21 21:26:32 +0000668#if ! defined BB_FEATURE_USE_PROCFS
669#error Sorry, I depend on the /proc filesystem right now.
670#endif
671
Erik Andersende552872000-01-23 01:34:05 +0000672static void check_chroot(int sig)
673{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000674 char *argv_init[2] = { "init", NULL, };
675 char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
676 char rootpath[256], *tc;
677 int fd;
Erik Andersende552872000-01-23 01:34:05 +0000678
Erik Andersene49d5ec2000-02-08 19:58:47 +0000679 if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
680 message(CONSOLE,
681 "SIGHUP recived, but could not open proc file\r\n");
682 sleep(2);
683 return;
684 }
685 if (read(fd, rootpath, sizeof(rootpath)) == -1) {
686 message(CONSOLE,
687 "SIGHUP recived, but could not read proc file\r\n");
688 sleep(2);
689 return;
690 }
691 close(fd);
692
693 if (rootpath[0] == '\0') {
694 message(CONSOLE,
695 "SIGHUP recived, but new root is not valid: %s\r\n",
696 rootpath);
697 sleep(2);
698 return;
699 }
700
701 tc = strrchr(rootpath, '\n');
702 *tc = '\0';
703
704 /* Ok, making it this far means we commit */
705 message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
706 rootpath);
707
708 /* kill all other programs first */
709 message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
710 kill(-1, SIGTERM);
Erik Andersende552872000-01-23 01:34:05 +0000711 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000712 sync();
713
714 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
715 kill(-1, SIGKILL);
Erik Andersende552872000-01-23 01:34:05 +0000716 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000717 sync();
718
719 /* ok, we don't need /proc anymore. we also assume that the signaling
720 * process left the rest of the filesystems alone for us */
721 umount("/proc");
722
723 /* Ok, now we chroot. Hopefully we only have two things mounted, the
724 * new chroot'd mount point, and the old "/" mount. s,
725 * we go ahead and unmount the old "/". This should trigger the kernel
726 * to set things up the Right Way(tm). */
727
728 if (!chroot(rootpath))
729 umount("/dev/root");
730
731 /* If the chroot fails, we are already too far to turn back, so we
732 * continue and hope that executing init below will revive the system */
733
734 /* close all of our descriptors and open new ones */
735 close(0);
736 close(1);
737 close(2);
738 open("/dev/console", O_RDWR, 0);
739 dup(0);
740 dup(0);
741
742 message(CONSOLE, "Executing real init...\r\n");
743 /* execute init in the (hopefully) new root */
744 execve("/sbin/init", argv_init, envp_init);
745
746 message(CONSOLE,
747 "ERROR: Could not exec new init. Press %s to reboot.\r\n",
748 (secondConsole == NULL) /* serial console */
749 ? "Reset" : "CTRL-ALT-DEL");
Erik Andersende552872000-01-23 01:34:05 +0000750 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000751}
752#endif /* BB_FEATURE_INIT_CHROOT */
Erik Andersende552872000-01-23 01:34:05 +0000753
Erik Andersene49d5ec2000-02-08 19:58:47 +0000754#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000755
Erik Andersene49d5ec2000-02-08 19:58:47 +0000756void new_initAction(initActionEnum action, char *process, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000757{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000758 initAction *newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000759
Erik Andersene49d5ec2000-02-08 19:58:47 +0000760 if (*cons == '\0')
761 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000762
Erik Andersene49d5ec2000-02-08 19:58:47 +0000763 /* If BusyBox detects that a serial console is in use,
764 * then entries not refering to the console or null devices will _not_ be run.
765 * The exception to this rule is the null device.
766 */
767 if (secondConsole == NULL && strcmp(cons, console)
768 && strcmp(cons, "/dev/null"))
769 return;
770
771 newAction = calloc((size_t) (1), sizeof(initAction));
772 if (!newAction) {
773 message(LOG | CONSOLE, "Memory allocation failure\n");
774 while (1)
775 sleep(1);
776 }
777 newAction->nextPtr = initActionList;
778 initActionList = newAction;
779 strncpy(newAction->process, process, 255);
780 newAction->action = action;
781 strncpy(newAction->console, cons, 255);
782 newAction->pid = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000783// message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000784// newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000785}
786
Erik Andersene132f4b2000-02-09 04:16:43 +0000787static void delete_initAction(initAction * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000788{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000789 initAction *a, *b = NULL;
790
791 for (a = initActionList; a; b = a, a = a->nextPtr) {
792 if (a == action) {
793 if (b == NULL) {
794 initActionList = a->nextPtr;
795 } else {
796 b->nextPtr = a->nextPtr;
797 }
798 free(a);
799 break;
800 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000801 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000802}
803
Erik Andersen9e737252000-01-06 01:16:13 +0000804/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
805 * then parse_inittab() simply adds in some default
806 * actions(i.e runs INIT_SCRIPT and then starts a pair
Erik Andersen812d4662000-01-07 18:30:40 +0000807 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
808 * _is_ defined, but /etc/inittab is missing, this
809 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000810 * */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000811void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000812{
Erik Andersen9e737252000-01-06 01:16:13 +0000813#ifdef BB_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000814 FILE *file;
815 char buf[256], lineAsRead[256], tmpConsole[256];
Eric Andersenb5966362000-05-31 20:04:38 +0000816 char *id, *runlev, *action, *process, *eol;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000817 const struct initActionType *a = actions;
818 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000819
820
Erik Andersene49d5ec2000-02-08 19:58:47 +0000821 file = fopen(INITTAB, "r");
822 if (file == NULL) {
823 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000824#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000825 /* Swapoff on halt/reboot */
Pavel Roskin33bee332000-09-15 01:02:50 +0000826 new_initAction(CTRLALTDEL, "/sbin/swapoff -a", console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000827 /* Umount all filesystems on halt/reboot */
Pavel Roskin33bee332000-09-15 01:02:50 +0000828 new_initAction(CTRLALTDEL, "/bin/umount -a -r", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000829 /* Askfirst shell on tty1 */
830 new_initAction(ASKFIRST, SHELL, console);
831 /* Askfirst shell on tty2 */
832 if (secondConsole != NULL)
833 new_initAction(ASKFIRST, SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000834 /* Askfirst shell on tty3 */
835 if (thirdConsole != NULL)
836 new_initAction(ASKFIRST, SHELL, thirdConsole);
837 /* Askfirst shell on tty4 */
838 if (fourthConsole != NULL)
839 new_initAction(ASKFIRST, SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000840 /* sysinit */
841 new_initAction(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000842
Erik Andersene49d5ec2000-02-08 19:58:47 +0000843 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000844#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000845 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000846
Erik Andersene49d5ec2000-02-08 19:58:47 +0000847 while (fgets(buf, 255, file) != NULL) {
848 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000849 /* Skip leading spaces */
850 for (id = buf; *id == ' ' || *id == '\t'; id++);
851
852 /* Skip the line if it's a comment */
853 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000854 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000855
Erik Andersene49d5ec2000-02-08 19:58:47 +0000856 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000857 eol = strrchr(id, '\n');
858 if (eol != NULL)
859 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000860
Erik Andersene49d5ec2000-02-08 19:58:47 +0000861 /* Keep a copy around for posterity's sake (and error msgs) */
862 strcpy(lineAsRead, buf);
863
Eric Andersenb5966362000-05-31 20:04:38 +0000864 /* Separate the ID field from the runlevels */
865 runlev = strchr(id, ':');
866 if (runlev == NULL || *(runlev + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000867 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
868 continue;
869 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000870 *runlev = '\0';
871 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000872 }
873
Eric Andersenb5966362000-05-31 20:04:38 +0000874 /* Separate the runlevels from the action */
875 action = strchr(runlev, ':');
876 if (action == NULL || *(action + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000877 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
878 continue;
879 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000880 *action = '\0';
881 ++action;
882 }
883
884 /* Separate the action from the process */
885 process = strchr(action, ':');
886 if (process == NULL || *(process + 1) == '\0') {
887 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
888 continue;
889 } else {
890 *process = '\0';
891 ++process;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000892 }
893
894 /* Ok, now process it */
895 a = actions;
896 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +0000897 if (strcmp(a->name, action) == 0) {
898 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000899 struct stat statBuf;
900
901 strcpy(tmpConsole, "/dev/");
Eric Andersenb5966362000-05-31 20:04:38 +0000902 strncat(tmpConsole, id, 200);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000903 if (stat(tmpConsole, &statBuf) != 0) {
904 message(LOG | CONSOLE,
905 "device '%s' does not exist. Did you read the directions?\n",
906 tmpConsole);
907 break;
908 }
Eric Andersenb5966362000-05-31 20:04:38 +0000909 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000910 }
Eric Andersenb5966362000-05-31 20:04:38 +0000911 new_initAction(a->action, process, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000912 foundIt = TRUE;
913 }
914 a++;
915 }
916 if (foundIt == TRUE)
917 continue;
918 else {
919 /* Choke on an unknown action */
920 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
921 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000922 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000923 return;
Erik Andersen42094cd2000-03-20 21:34:52 +0000924#endif /* BB_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000925}
926
Erik Andersene132f4b2000-02-09 04:16:43 +0000927
928
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000929extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000930{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000931 initAction *a;
932 pid_t wpid;
933 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000934
Eric Andersend73dc5b1999-11-10 23:13:02 +0000935#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +0000936 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
937 if (getpid() != 1
938#ifdef BB_FEATURE_LINUXRC
Matt Kraaie58771e2000-07-12 15:38:49 +0000939 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +0000940#endif
941 )
942 {
943 usage("init\n\nInit is the parent of all processes.\n\n"
944 "This version of init is designed to be run only "
945 "by the kernel.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000946 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000947 /* Set up sig handlers -- be sure to
948 * clear all of these in run() */
949 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +0000950 signal(SIGUSR2, halt_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000951 signal(SIGINT, reboot_signal);
952 signal(SIGTERM, reboot_signal);
Erik Andersende552872000-01-23 01:34:05 +0000953#if defined BB_FEATURE_INIT_CHROOT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000954 signal(SIGHUP, check_chroot);
Erik Andersende552872000-01-23 01:34:05 +0000955#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000956
Erik Andersene49d5ec2000-02-08 19:58:47 +0000957 /* Turn off rebooting via CTL-ALT-DEL -- we get a
958 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000959 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000960#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000961
Erik Andersen298854f2000-03-23 01:09:18 +0000962 /* Figure out what kernel this is running */
963 kernelVersion = get_kernel_revision();
964
Erik Andersene49d5ec2000-02-08 19:58:47 +0000965 /* Figure out where the default console should be */
966 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000967
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 /* Close whatever files are open, and reset the console. */
969 close(0);
970 close(1);
971 close(2);
972 set_term(0);
Erik Andersen983b51b2000-04-04 18:14:25 +0000973 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000974 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000975
Erik Andersene49d5ec2000-02-08 19:58:47 +0000976 /* Make sure PATH is set to something sane */
977 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000978
Erik Andersene49d5ec2000-02-08 19:58:47 +0000979 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000980#ifndef DEBUG_INIT
Erik Andersenea6b67d2000-03-07 07:47:10 +0000981 message(
982#if ! defined BB_FEATURE_EXTRA_QUIET
983 CONSOLE|
984#endif
985 LOG,
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000986 "init started: %s\r\n", full_version);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000987#else
Erik Andersenea6b67d2000-03-07 07:47:10 +0000988 message(
989#if ! defined BB_FEATURE_EXTRA_QUIET
990 CONSOLE|
991#endif
992 LOG,
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000993 "init(%d) started: %s\r\n", getpid(), full_version);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000994#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000995
Eric Andersencc8ed391999-10-05 16:24:54 +0000996
Erik Andersene49d5ec2000-02-08 19:58:47 +0000997 /* Make sure there is enough memory to do something useful. */
998 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +0000999
Erik Andersene49d5ec2000-02-08 19:58:47 +00001000 /* Check if we are supposed to be in single user mode */
1001 if (argc > 1 && (!strcmp(argv[1], "single") ||
1002 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001003 /* Ask first then start a shell on tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001004 if (secondConsole != NULL)
1005 new_initAction(ASKFIRST, SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001006 if (thirdConsole != NULL)
1007 new_initAction(ASKFIRST, SHELL, thirdConsole);
1008 if (fourthConsole != NULL)
1009 new_initAction(ASKFIRST, SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001010 /* Start a shell on tty1 */
1011 new_initAction(RESPAWN, SHELL, console);
1012 } else {
1013 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001014
Erik Andersene49d5ec2000-02-08 19:58:47 +00001015 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
1016 * then parse_inittab() simply adds in some default
1017 * actions(i.e runs INIT_SCRIPT and then starts a pair
1018 * of "askfirst" shells */
1019 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001020 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001021
Erik Andersene132f4b2000-02-09 04:16:43 +00001022 /* Fix up argv[0] to be certain we claim to be init */
Eric Andersenf34aa4c2000-09-21 02:32:11 +00001023 argv[0]="init";
1024
Erik Andersen07f56042000-02-09 06:05:01 +00001025 if (argc > 1)
1026 strncpy(argv[1], "\0", strlen(argv[1])+1);
Eric Andersen219d6f51999-11-02 19:43:01 +00001027
Erik Andersene49d5ec2000-02-08 19:58:47 +00001028 /* Now run everything that needs to be run */
1029
1030 /* First run the sysinit command */
1031 for (a = initActionList; a; a = a->nextPtr) {
1032 if (a->action == SYSINIT) {
1033 waitfor(a->process, a->console, FALSE);
1034 /* Now remove the "sysinit" entry from the list */
1035 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +00001036 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001037 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001038 /* Next run anything that wants to block */
1039 for (a = initActionList; a; a = a->nextPtr) {
1040 if (a->action == WAIT) {
1041 waitfor(a->process, a->console, FALSE);
1042 /* Now remove the "wait" entry from the list */
1043 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +00001044 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001045 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001046 /* Next run anything to be run only once */
1047 for (a = initActionList; a; a = a->nextPtr) {
1048 if (a->action == ONCE) {
1049 run(a->process, a->console, FALSE);
1050 /* Now remove the "once" entry from the list */
1051 delete_initAction(a);
1052 }
1053 }
1054 /* If there is nothing else to do, stop */
1055 if (initActionList == NULL) {
1056 message(LOG | CONSOLE,
1057 "No more tasks for init -- sleeping forever.\n");
1058 while (1)
1059 sleep(1);
1060 }
1061
1062 /* Now run the looping stuff for the rest of forever */
1063 while (1) {
1064 for (a = initActionList; a; a = a->nextPtr) {
1065 /* Only run stuff with pid==0. If they have
1066 * a pid, that means they are still running */
1067 if (a->pid == 0) {
1068 switch (a->action) {
1069 case RESPAWN:
1070 /* run the respawn stuff */
1071 a->pid = run(a->process, a->console, FALSE);
1072 break;
1073 case ASKFIRST:
1074 /* run the askfirst stuff */
1075 a->pid = run(a->process, a->console, TRUE);
1076 break;
1077 /* silence the compiler's incessant whining */
1078 default:
1079 break;
1080 }
1081 }
1082 }
1083 /* Wait for a child process to exit */
1084 wpid = wait(&status);
1085 if (wpid > 0) {
1086 /* Find out who died and clean up their corpse */
1087 for (a = initActionList; a; a = a->nextPtr) {
1088 if (a->pid == wpid) {
1089 a->pid = 0;
1090 message(LOG,
1091 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
1092 a->process, wpid);
1093 }
1094 }
1095 }
1096 sleep(1);
1097 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001098}
Erik Andersen029011b2000-03-04 21:19:32 +00001099
1100/*
1101Local Variables:
1102c-file-style: "linux"
1103c-basic-offset: 4
1104tab-width: 4
1105End:
1106*/