blob: 4284600c415b9c08c555f73a5eedcdda16494130 [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
Erik Andersen4f3f7572000-04-28 00:18:56 +000030#include <stdio.h>
31#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000032#include <errno.h>
Eric Andersenb186d981999-12-03 09:19:54 +000033#include <paths.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000034#include <signal.h>
35#include <stdarg.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000036#include <string.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +000037#include <termios.h>
38#include <unistd.h>
Eric Andersened3ef502001-01-27 08:24:39 +000039#include <limits.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>
Eric Andersencbe31da2001-02-20 06:14:08 +000045#include "busybox.h"
46#define bb_need_full_version
47#define BB_DECLARE_EXTERN
48#include "messages.c"
Erik Andersen4f3f7572000-04-28 00:18:56 +000049#ifdef BB_SYSLOGD
50# include <sys/syslog.h>
51#endif
52
Pavel Roskin9c5fcc32000-07-17 23:45:12 +000053
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
Eric Andersen544891d2001-02-22 23:37:30 +000096#undef _PATH_STDPATH
Erik Andersen4f3f7572000-04-28 00:18:56 +000097#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
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 Andersened3ef502001-01-27 08:24:39 +0000117#include <sys/syscall.h>
118#include <linux/unistd.h>
Eric Andersena15cd0b2000-06-19 18:14:20 +0000119static _syscall2(int, bdflush, int, func, int, data);
Erik Andersen4f3f7572000-04-28 00:18:56 +0000120#endif /* __GLIBC__ */
121
Eric Andersen0ecb54a1999-12-05 23:24:55 +0000122
Erik Andersen42094cd2000-03-20 21:34:52 +0000123#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
124#define VT_SECONDARY "/dev/tty2" /* Virtual console */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000125#define VT_THIRD "/dev/tty3" /* Virtual console */
126#define VT_FOURTH "/dev/tty4" /* Virtual console */
127#define VT_LOG "/dev/tty5" /* Virtual console */
Erik Andersen42094cd2000-03-20 21:34:52 +0000128#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
129#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000130#define SHELL "-/bin/sh" /* Default shell */
Erik Andersen42094cd2000-03-20 21:34:52 +0000131#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000132#ifndef INIT_SCRIPT
Erik Andersen42094cd2000-03-20 21:34:52 +0000133#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000134#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000135
Eric Andersen477aedd2001-02-20 18:01:50 +0000136static const int MAXENV = 16; /* Number of env. vars */
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);
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000207 openlog(applet_name, 0, LOG_USER);
Erik Andersene132f4b2000-02-09 04:16:43 +0000208 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);
Erik Andersene132f4b2000-02-09 04:16:43 +0000225 log = NULL;
226 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000227 }
228 }
229 if ((device & LOG) && (log_fd >= 0)) {
230 va_start(arguments, fmt);
231 vdprintf(log_fd, fmt, arguments);
232 va_end(arguments);
233 }
Eric Andersen4c781471999-11-26 08:12:56 +0000234#endif
235
Erik Andersene49d5ec2000-02-08 19:58:47 +0000236 if (device & CONSOLE) {
237 /* Always send console messages to /dev/console so people will see them. */
238 if (
239 (fd =
240 device_open(_PATH_CONSOLE,
241 O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
242 va_start(arguments, fmt);
243 vdprintf(fd, fmt, arguments);
244 va_end(arguments);
245 close(fd);
246 } else {
247 fprintf(stderr, "Bummer, can't print: ");
248 va_start(arguments, fmt);
249 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000250 va_end(arguments);
251 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000252 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000253}
254
Eric Andersen0460ff21999-10-25 23:32:44 +0000255/* Set terminal settings to reasonable defaults */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000256void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000257{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000259
Erik Andersene49d5ec2000-02-08 19:58:47 +0000260 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000261
Erik Andersene49d5ec2000-02-08 19:58:47 +0000262 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000263 tty.c_cc[VINTR] = 3; /* C-c */
264 tty.c_cc[VQUIT] = 28; /* C-\ */
265 tty.c_cc[VERASE] = 127; /* C-? */
266 tty.c_cc[VKILL] = 21; /* C-u */
267 tty.c_cc[VEOF] = 4; /* C-d */
268 tty.c_cc[VSTART] = 17; /* C-q */
269 tty.c_cc[VSTOP] = 19; /* C-s */
270 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000271
Erik Andersene49d5ec2000-02-08 19:58:47 +0000272 /* use line dicipline 0 */
273 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000274
Erik Andersene49d5ec2000-02-08 19:58:47 +0000275 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000276 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
277 tty.c_cflag |= HUPCL|CLOCAL;
Eric Andersen08b10341999-11-19 02:38:58 +0000278
Erik Andersene49d5ec2000-02-08 19:58:47 +0000279 /* input modes */
280 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000281
Erik Andersene49d5ec2000-02-08 19:58:47 +0000282 /* output modes */
283 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000284
Erik Andersene49d5ec2000-02-08 19:58:47 +0000285 /* local modes */
286 tty.c_lflag =
287 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000288
Erik Andersene49d5ec2000-02-08 19:58:47 +0000289 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000290}
291
Eric Andersenbc5941a2000-12-06 23:17:37 +0000292/* How much memory does this machine have?
293 Units are kBytes to avoid overflow on 4GB machines */
Erik Andersend07ee462000-02-21 21:26:32 +0000294static int check_free_memory()
Eric Andersencc8ed391999-10-05 16:24:54 +0000295{
Erik Andersend07ee462000-02-21 21:26:32 +0000296 struct sysinfo info;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000297 unsigned int result, u, s=10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000298
Erik Andersend07ee462000-02-21 21:26:32 +0000299 if (sysinfo(&info) != 0) {
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000300 perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000301 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000302 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000303
304 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
305 * Kernels 2.4.0 return info.mem_unit in bytes. */
306 u = info.mem_unit;
307 if (u==0) u=1;
308 while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
309 result = (info.totalram>>s) + (info.totalswap>>s);
310 result = result*u;
311 if (result < 0) result = INT_MAX;
312 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000313}
314
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000315static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000316{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000317 int fd;
318 int tried_devcons = 0;
319 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000320 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 struct serial_struct sr;
322 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000323
Erik Andersene49d5ec2000-02-08 19:58:47 +0000324 if ((s = getenv("TERM")) != NULL) {
325 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
326 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000327
Erik Andersene49d5ec2000-02-08 19:58:47 +0000328 if ((s = getenv("CONSOLE")) != NULL) {
329 snprintf(console, sizeof(console) - 1, "%s", s);
330 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000331#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332 /* sparc kernel supports console=tty[ab] parameter which is also
333 * passed to init, so catch it here */
334 else if ((s = getenv("console")) != NULL) {
335 /* remap tty[ab] to /dev/ttyS[01] */
336 if (strcmp(s, "ttya") == 0)
337 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
338 else if (strcmp(s, "ttyb") == 0)
339 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
340 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000341#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000342 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000343 /* 2.2 kernels: identify the real console backend and try to use it */
344 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
345 /* this is a serial console */
346 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
347 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
348 /* this is linux virtual tty */
349 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
350 vt.v_active);
351 } else {
352 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
353 tried_devcons++;
354 }
Eric Andersen07e52971999-11-07 07:38:08 +0000355 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000356
357 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
358 /* Can't open selected console -- try /dev/console */
359 if (!tried_devcons) {
360 tried_devcons++;
361 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
362 continue;
363 }
364 /* Can't open selected console -- try vt1 */
365 if (!tried_vtprimary) {
366 tried_vtprimary++;
367 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
368 continue;
369 }
370 break;
371 }
372 if (fd < 0) {
373 /* Perhaps we should panic here? */
374 snprintf(console, sizeof(console) - 1, "/dev/null");
Eric Andersen07e52971999-11-07 07:38:08 +0000375 } else {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000376 /* check for serial console and disable logging to tty5 & running a
377 * shell to tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000378 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000379 log = NULL;
380 secondConsole = NULL;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000381 thirdConsole = NULL;
382 fourthConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000383 /* Force the TERM setting to vt102 for serial console --
384 * iff TERM is set to linux (the default) */
385 if (strcmp( termType, "TERM=linux" ) == 0)
386 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
Erik Andersene132f4b2000-02-09 04:16:43 +0000387 message(LOG | CONSOLE,
388 "serial console detected. Disabling virtual terminals.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000389 }
390 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000391 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000392 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000393}
394
Erik Andersene49d5ec2000-02-08 19:58:47 +0000395static pid_t run(char *command, char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000396{
Eric Andersen477aedd2001-02-20 18:01:50 +0000397 int i=0, j=0;
398 int fd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000399 pid_t pid;
400 char *tmpCmd;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000401 char *cmd[255], *cmdpath;
Erik Andersene132f4b2000-02-09 04:16:43 +0000402 char buf[255];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000403 static const char press_enter[] =
404
Eric Andersen38624232001-01-25 00:04:16 +0000405#ifdef CUSTOMIZED_BANNER
406#include CUSTOMIZED_BANNER
407#endif
408
Erik Andersene49d5ec2000-02-08 19:58:47 +0000409 "\nPlease press Enter to activate this console. ";
Eric Andersen477aedd2001-02-20 18:01:50 +0000410 char *environment[MAXENV+1] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000411 "HOME=/",
412 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
413 "SHELL=/bin/sh",
414 termType,
Eric Andersen477aedd2001-02-20 18:01:50 +0000415 "USER=root"
Erik Andersene49d5ec2000-02-08 19:58:47 +0000416 };
Erik Andersenac6e71f2000-01-08 22:04:33 +0000417
Eric Andersen477aedd2001-02-20 18:01:50 +0000418 while (environment[i]) i++;
419 while ((environ[j]) && (i < MAXENV)) {
420 if (strncmp(environ[j], "TERM=", 5))
421 environment[i++] = environ[j];
Eric Andersen477aedd2001-02-20 18:01:50 +0000422 j++;
423 }
424
Erik Andersene49d5ec2000-02-08 19:58:47 +0000425 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000426 /* Clean up */
Eric Andersenfb6a5082000-09-13 16:15:29 +0000427 ioctl(0, TIOCNOTTY, 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000428 close(0);
429 close(1);
430 close(2);
431 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000432
Erik Andersene49d5ec2000-02-08 19:58:47 +0000433 /* Reset signal handlers set for parent process */
434 signal(SIGUSR1, SIG_DFL);
435 signal(SIGUSR2, SIG_DFL);
436 signal(SIGINT, SIG_DFL);
437 signal(SIGTERM, SIG_DFL);
438 signal(SIGHUP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000439
Erik Andersene49d5ec2000-02-08 19:58:47 +0000440 if ((fd = device_open(terminal, O_RDWR)) < 0) {
441 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
442 exit(1);
443 }
444 dup2(fd, 0);
445 dup2(fd, 1);
446 dup2(fd, 2);
Eric Andersenfb6a5082000-09-13 16:15:29 +0000447 ioctl(0, TIOCSCTTY, 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000448 tcsetpgrp(0, getpgrp());
449 set_term(0);
450
451 if (get_enter == TRUE) {
452 /*
453 * Save memory by not exec-ing anything large (like a shell)
454 * before the user wants it. This is critical if swap is not
455 * enabled and the system has low memory. Generally this will
456 * be run on the second virtual console, and the first will
457 * be allowed to start a shell or whatever an init script
458 * specifies.
459 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000460#ifdef DEBUG_INIT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000461 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
Eric Andersendbcd8ce2001-02-22 04:55:33 +0000462 command, getpid(), terminal);
Erik Andersene132f4b2000-02-09 04:16:43 +0000463#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000464 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
Pavel Roskincbe05e42000-09-14 22:47:29 +0000465 getc(stdin);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000466 }
467
Erik Andersene49d5ec2000-02-08 19:58:47 +0000468#ifdef DEBUG_INIT
Erik Andersene132f4b2000-02-09 04:16:43 +0000469 /* Log the process name and args */
470 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
Eric Andersendbcd8ce2001-02-22 04:55:33 +0000471 getpid(), terminal, command);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000472#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000473
474 /* See if any special /bin/sh requiring characters are present */
475 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
476 cmd[0] = SHELL;
477 cmd[1] = "-c";
478 strcpy(buf, "exec ");
479 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
480 cmd[2] = buf;
481 cmd[3] = NULL;
482 } else {
483 /* Convert command (char*) into cmd (char**, one word per string) */
484 for (tmpCmd = command, i = 0;
485 (tmpCmd = strsep(&command, " \t")) != NULL;) {
486 if (*tmpCmd != '\0') {
487 cmd[i] = tmpCmd;
488 tmpCmd++;
489 i++;
490 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000491 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000492 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000493 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000494
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000495 cmdpath = cmd[0];
496
497 /*
498 Interactive shells want to see a dash in argv[0]. This
499 typically is handled by login, argv will be setup this
500 way if a dash appears at the front of the command path
501 (like "-/bin/sh").
502 */
503
504 if (*cmdpath == '-') {
505 char *s;
506
507 /* skip over the dash */
508 ++cmdpath;
509
510 /* find the last component in the command pathname */
511 s = get_last_path_component(cmdpath);
512
513 /* make a new argv[0] */
514 if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
515 message(LOG | CONSOLE, "malloc failed");
516 cmd[0] = cmdpath;
517 } else {
518 cmd[0][0] = '-';
519 strcpy(cmd[0]+1, s);
520 }
521 }
522
Erik Andersen183da4a2000-04-04 18:36:37 +0000523#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000524 {
525 struct stat sb;
526 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
527 struct rlimit limit;
528 limit.rlim_cur = RLIM_INFINITY;
529 limit.rlim_max = RLIM_INFINITY;
530 setrlimit(RLIMIT_CORE, &limit);
531 }
532 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000533#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000534
Erik Andersene49d5ec2000-02-08 19:58:47 +0000535 /* Now run it. The new program will take over this PID,
536 * so nothing further in init.c should be run. */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000537 execve(cmdpath, cmd, environment);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000538
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000539 /* We're still here? Some error happened. */
540 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmdpath,
541 strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000542 exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000543 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000544 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000545}
546
Erik Andersene49d5ec2000-02-08 19:58:47 +0000547static int waitfor(char *command, char *terminal, int get_enter)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000548{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000549 int status, wpid;
550 int pid = run(command, terminal, get_enter);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000551
Erik Andersene49d5ec2000-02-08 19:58:47 +0000552 while (1) {
553 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000554 if (wpid > 0 && wpid != pid) {
555 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000556 }
557 if (wpid == pid)
558 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000559 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000560 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000561}
562
Eric Andersen219d6f51999-11-02 19:43:01 +0000563/* Make sure there is enough memory to do something useful. *
Erik Andersene132f4b2000-02-09 04:16:43 +0000564 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
Eric Andersen219d6f51999-11-02 19:43:01 +0000565static void check_memory()
566{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000567 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000568
Erik Andersend07ee462000-02-21 21:26:32 +0000569 if (check_free_memory() > 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000570 return;
571
572 if (stat("/etc/fstab", &statBuf) == 0) {
Erik Andersen61677fe2000-04-13 01:18:56 +0000573 /* swapon -a requires /proc typically */
574 waitfor("mount proc /proc -t proc", console, FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000575 /* Try to turn on swap */
Erik Andersen61677fe2000-04-13 01:18:56 +0000576 waitfor("swapon -a", console, FALSE);
Erik Andersend07ee462000-02-21 21:26:32 +0000577 if (check_free_memory() < 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000578 goto goodnight;
579 } else
580 goto goodnight;
Eric Andersen219d6f51999-11-02 19:43:01 +0000581 return;
582
Erik Andersene49d5ec2000-02-08 19:58:47 +0000583 goodnight:
584 message(CONSOLE,
585 "Sorry, your computer does not have enough memory.\r\n");
586 while (1)
587 sleep(1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000588}
589
Erik Andersene132f4b2000-02-09 04:16:43 +0000590/* Run all commands to be run right before halt/reboot */
591static void run_lastAction(void)
592{
593 initAction *a;
594 for (a = initActionList; a; a = a->nextPtr) {
595 if (a->action == CTRLALTDEL) {
596 waitfor(a->process, a->console, FALSE);
597 delete_initAction(a);
598 }
599 }
600}
601
602
Erik Andersen7dc16072000-01-04 01:10:25 +0000603#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000604static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000605{
Erik Andersene132f4b2000-02-09 04:16:43 +0000606
Erik Andersene49d5ec2000-02-08 19:58:47 +0000607 /* first disable our SIGHUP signal */
608 signal(SIGHUP, SIG_DFL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000609
Erik Andersene49d5ec2000-02-08 19:58:47 +0000610 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000611 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000612
613 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000614 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000615
616 /* Send signals to every process _except_ pid 1 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000617 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000618 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000619 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000620 sync();
621
Erik Andersene132f4b2000-02-09 04:16:43 +0000622 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000623 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000624 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000625
Erik Andersene132f4b2000-02-09 04:16:43 +0000626 /* run everything to be run at "ctrlaltdel" */
627 run_lastAction();
628
Erik Andersene49d5ec2000-02-08 19:58:47 +0000629 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000630 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000631 /* bdflush, kupdate not needed for kernels >2.2.11 */
632 bdflush(1, 0);
633 sync();
634 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000635}
636
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000637static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000638{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000639 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000640 message(CONSOLE|LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000641 "The system is halted. Press %s or turn off power\r\n",
642 (secondConsole == NULL) /* serial console */
643 ? "Reset" : "CTRL-ALT-DEL");
644 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000645
Erik Andersene49d5ec2000-02-08 19:58:47 +0000646 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000647 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000648
Eric Andersenbd22ed82000-07-08 18:55:24 +0000649 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000650 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000651 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000652 init_reboot(RB_HALT_SYSTEM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000653 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000654}
655
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000656static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000657{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000658 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000659 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000660 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000661
Erik Andersene49d5ec2000-02-08 19:58:47 +0000662 /* allow time for last message to reach serial console */
663 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000664
Erik Andersen4f3f7572000-04-28 00:18:56 +0000665 init_reboot(RB_AUTOBOOT);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000666 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000667}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000668
Erik Andersene49d5ec2000-02-08 19:58:47 +0000669#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000670
Erik Andersene49d5ec2000-02-08 19:58:47 +0000671void new_initAction(initActionEnum action, char *process, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000672{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000673 initAction *newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000674
Erik Andersene49d5ec2000-02-08 19:58:47 +0000675 if (*cons == '\0')
676 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000677
Erik Andersene49d5ec2000-02-08 19:58:47 +0000678 /* If BusyBox detects that a serial console is in use,
679 * then entries not refering to the console or null devices will _not_ be run.
680 * The exception to this rule is the null device.
681 */
682 if (secondConsole == NULL && strcmp(cons, console)
683 && strcmp(cons, "/dev/null"))
684 return;
685
686 newAction = calloc((size_t) (1), sizeof(initAction));
687 if (!newAction) {
688 message(LOG | CONSOLE, "Memory allocation failure\n");
689 while (1)
690 sleep(1);
691 }
692 newAction->nextPtr = initActionList;
693 initActionList = newAction;
694 strncpy(newAction->process, process, 255);
695 newAction->action = action;
696 strncpy(newAction->console, cons, 255);
697 newAction->pid = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000698// message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000699// newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000700}
701
Erik Andersene132f4b2000-02-09 04:16:43 +0000702static void delete_initAction(initAction * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000703{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000704 initAction *a, *b = NULL;
705
706 for (a = initActionList; a; b = a, a = a->nextPtr) {
707 if (a == action) {
708 if (b == NULL) {
709 initActionList = a->nextPtr;
710 } else {
711 b->nextPtr = a->nextPtr;
712 }
713 free(a);
714 break;
715 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000716 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000717}
718
Erik Andersen9e737252000-01-06 01:16:13 +0000719/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
720 * then parse_inittab() simply adds in some default
721 * actions(i.e runs INIT_SCRIPT and then starts a pair
Erik Andersen812d4662000-01-07 18:30:40 +0000722 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
723 * _is_ defined, but /etc/inittab is missing, this
724 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000725 * */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000726void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000727{
Erik Andersen9e737252000-01-06 01:16:13 +0000728#ifdef BB_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000729 FILE *file;
730 char buf[256], lineAsRead[256], tmpConsole[256];
Eric Andersenb5966362000-05-31 20:04:38 +0000731 char *id, *runlev, *action, *process, *eol;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000732 const struct initActionType *a = actions;
733 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000734
735
Erik Andersene49d5ec2000-02-08 19:58:47 +0000736 file = fopen(INITTAB, "r");
737 if (file == NULL) {
738 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000739#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000740 /* Swapoff on halt/reboot */
Pavel Roskin33bee332000-09-15 01:02:50 +0000741 new_initAction(CTRLALTDEL, "/sbin/swapoff -a", console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000742 /* Umount all filesystems on halt/reboot */
Pavel Roskin33bee332000-09-15 01:02:50 +0000743 new_initAction(CTRLALTDEL, "/bin/umount -a -r", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000744 /* Askfirst shell on tty1 */
745 new_initAction(ASKFIRST, SHELL, console);
746 /* Askfirst shell on tty2 */
747 if (secondConsole != NULL)
748 new_initAction(ASKFIRST, SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000749 /* Askfirst shell on tty3 */
750 if (thirdConsole != NULL)
751 new_initAction(ASKFIRST, SHELL, thirdConsole);
752 /* Askfirst shell on tty4 */
753 if (fourthConsole != NULL)
754 new_initAction(ASKFIRST, SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000755 /* sysinit */
756 new_initAction(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000757
Erik Andersene49d5ec2000-02-08 19:58:47 +0000758 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000759#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000760 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000761
Erik Andersene49d5ec2000-02-08 19:58:47 +0000762 while (fgets(buf, 255, file) != NULL) {
763 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000764 /* Skip leading spaces */
765 for (id = buf; *id == ' ' || *id == '\t'; id++);
766
767 /* Skip the line if it's a comment */
768 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000769 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000770
Erik Andersene49d5ec2000-02-08 19:58:47 +0000771 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000772 eol = strrchr(id, '\n');
773 if (eol != NULL)
774 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000775
Erik Andersene49d5ec2000-02-08 19:58:47 +0000776 /* Keep a copy around for posterity's sake (and error msgs) */
777 strcpy(lineAsRead, buf);
778
Eric Andersenb5966362000-05-31 20:04:38 +0000779 /* Separate the ID field from the runlevels */
780 runlev = strchr(id, ':');
781 if (runlev == NULL || *(runlev + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000782 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
783 continue;
784 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000785 *runlev = '\0';
786 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000787 }
788
Eric Andersenb5966362000-05-31 20:04:38 +0000789 /* Separate the runlevels from the action */
790 action = strchr(runlev, ':');
791 if (action == NULL || *(action + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000792 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
793 continue;
794 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000795 *action = '\0';
796 ++action;
797 }
798
799 /* Separate the action from the process */
800 process = strchr(action, ':');
801 if (process == NULL || *(process + 1) == '\0') {
802 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
803 continue;
804 } else {
805 *process = '\0';
806 ++process;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000807 }
808
809 /* Ok, now process it */
810 a = actions;
811 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +0000812 if (strcmp(a->name, action) == 0) {
813 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000814 struct stat statBuf;
815
816 strcpy(tmpConsole, "/dev/");
Eric Andersenb5966362000-05-31 20:04:38 +0000817 strncat(tmpConsole, id, 200);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000818 if (stat(tmpConsole, &statBuf) != 0) {
819 message(LOG | CONSOLE,
820 "device '%s' does not exist. Did you read the directions?\n",
821 tmpConsole);
822 break;
823 }
Eric Andersenb5966362000-05-31 20:04:38 +0000824 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000825 }
Eric Andersenb5966362000-05-31 20:04:38 +0000826 new_initAction(a->action, process, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000827 foundIt = TRUE;
828 }
829 a++;
830 }
831 if (foundIt == TRUE)
832 continue;
833 else {
834 /* Choke on an unknown action */
835 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
836 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000837 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000838 return;
Erik Andersen42094cd2000-03-20 21:34:52 +0000839#endif /* BB_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000840}
841
Erik Andersene132f4b2000-02-09 04:16:43 +0000842
843
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000844extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000845{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000846 initAction *a;
847 pid_t wpid;
848 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000849
Eric Andersend73dc5b1999-11-10 23:13:02 +0000850#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +0000851 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
852 if (getpid() != 1
853#ifdef BB_FEATURE_LINUXRC
Matt Kraaie58771e2000-07-12 15:38:49 +0000854 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +0000855#endif
856 )
857 {
Eric Andersen67991cf2001-02-14 21:23:06 +0000858 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000859 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000860 /* Set up sig handlers -- be sure to
861 * clear all of these in run() */
862 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +0000863 signal(SIGUSR2, halt_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000864 signal(SIGINT, reboot_signal);
865 signal(SIGTERM, reboot_signal);
Eric Andersen0460ff21999-10-25 23:32:44 +0000866
Erik Andersene49d5ec2000-02-08 19:58:47 +0000867 /* Turn off rebooting via CTL-ALT-DEL -- we get a
868 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000869 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000870#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000871
Erik Andersen298854f2000-03-23 01:09:18 +0000872 /* Figure out what kernel this is running */
873 kernelVersion = get_kernel_revision();
874
Erik Andersene49d5ec2000-02-08 19:58:47 +0000875 /* Figure out where the default console should be */
876 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000877
Erik Andersene49d5ec2000-02-08 19:58:47 +0000878 /* Close whatever files are open, and reset the console. */
879 close(0);
880 close(1);
881 close(2);
882 set_term(0);
Erik Andersen983b51b2000-04-04 18:14:25 +0000883 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000884 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000885
Erik Andersene49d5ec2000-02-08 19:58:47 +0000886 /* Make sure PATH is set to something sane */
887 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000888
Erik Andersene49d5ec2000-02-08 19:58:47 +0000889 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000890#ifndef DEBUG_INIT
Erik Andersenea6b67d2000-03-07 07:47:10 +0000891 message(
892#if ! defined BB_FEATURE_EXTRA_QUIET
893 CONSOLE|
894#endif
895 LOG,
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000896 "init started: %s\r\n", full_version);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000897#else
Erik Andersenea6b67d2000-03-07 07:47:10 +0000898 message(
899#if ! defined BB_FEATURE_EXTRA_QUIET
900 CONSOLE|
901#endif
902 LOG,
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000903 "init(%d) started: %s\r\n", getpid(), full_version);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000904#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000905
Eric Andersencc8ed391999-10-05 16:24:54 +0000906
Erik Andersene49d5ec2000-02-08 19:58:47 +0000907 /* Make sure there is enough memory to do something useful. */
908 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +0000909
Erik Andersene49d5ec2000-02-08 19:58:47 +0000910 /* Check if we are supposed to be in single user mode */
911 if (argc > 1 && (!strcmp(argv[1], "single") ||
912 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000913 /* Ask first then start a shell on tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000914 if (secondConsole != NULL)
915 new_initAction(ASKFIRST, SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000916 if (thirdConsole != NULL)
917 new_initAction(ASKFIRST, SHELL, thirdConsole);
918 if (fourthConsole != NULL)
919 new_initAction(ASKFIRST, SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000920 /* Start a shell on tty1 */
921 new_initAction(RESPAWN, SHELL, console);
922 } else {
923 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000924
Erik Andersene49d5ec2000-02-08 19:58:47 +0000925 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
926 * then parse_inittab() simply adds in some default
927 * actions(i.e runs INIT_SCRIPT and then starts a pair
928 * of "askfirst" shells */
929 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000930 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000931
Erik Andersene132f4b2000-02-09 04:16:43 +0000932 /* Fix up argv[0] to be certain we claim to be init */
Eric Andersenf34aa4c2000-09-21 02:32:11 +0000933 argv[0]="init";
934
Erik Andersen07f56042000-02-09 06:05:01 +0000935 if (argc > 1)
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000936 argv[1][0]=0;
Eric Andersen219d6f51999-11-02 19:43:01 +0000937
Erik Andersene49d5ec2000-02-08 19:58:47 +0000938 /* Now run everything that needs to be run */
939
940 /* First run the sysinit command */
941 for (a = initActionList; a; a = a->nextPtr) {
942 if (a->action == SYSINIT) {
943 waitfor(a->process, a->console, FALSE);
944 /* Now remove the "sysinit" entry from the list */
945 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000946 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000947 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000948 /* Next run anything that wants to block */
949 for (a = initActionList; a; a = a->nextPtr) {
950 if (a->action == WAIT) {
951 waitfor(a->process, a->console, FALSE);
952 /* Now remove the "wait" entry from the list */
953 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000954 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000955 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000956 /* Next run anything to be run only once */
957 for (a = initActionList; a; a = a->nextPtr) {
958 if (a->action == ONCE) {
959 run(a->process, a->console, FALSE);
960 /* Now remove the "once" entry from the list */
961 delete_initAction(a);
962 }
963 }
964 /* If there is nothing else to do, stop */
965 if (initActionList == NULL) {
966 message(LOG | CONSOLE,
967 "No more tasks for init -- sleeping forever.\n");
968 while (1)
969 sleep(1);
970 }
971
972 /* Now run the looping stuff for the rest of forever */
973 while (1) {
974 for (a = initActionList; a; a = a->nextPtr) {
975 /* Only run stuff with pid==0. If they have
976 * a pid, that means they are still running */
977 if (a->pid == 0) {
978 switch (a->action) {
979 case RESPAWN:
980 /* run the respawn stuff */
981 a->pid = run(a->process, a->console, FALSE);
982 break;
983 case ASKFIRST:
984 /* run the askfirst stuff */
985 a->pid = run(a->process, a->console, TRUE);
986 break;
987 /* silence the compiler's incessant whining */
988 default:
989 break;
990 }
991 }
992 }
993 /* Wait for a child process to exit */
994 wpid = wait(&status);
995 if (wpid > 0) {
996 /* Find out who died and clean up their corpse */
997 for (a = initActionList; a; a = a->nextPtr) {
998 if (a->pid == wpid) {
999 a->pid = 0;
1000 message(LOG,
1001 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
1002 a->process, wpid);
1003 }
1004 }
1005 }
1006 sleep(1);
1007 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001008}
Erik Andersen029011b2000-03-04 21:19:32 +00001009
1010/*
1011Local Variables:
1012c-file-style: "linux"
1013c-basic-offset: 4
1014tab-width: 4
1015End:
1016*/