blob: 112d066a6874e9926480665305c242a12a0eb011 [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 Andersen2f2da902001-04-09 23:54:15 +000088#endif
Eric Andersenb6b519b2001-04-09 23:52:18 +000089
90#if __GNU_LIBRARY__ > 5
91 #include <sys/reboot.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +000092 #define init_reboot(magic) reboot(magic)
93#else
94 #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
95#endif
Erik Andersen4f3f7572000-04-28 00:18:56 +000096
Eric Andersen41492d62001-02-23 00:05:56 +000097#ifndef _PATH_STDPATH
Erik Andersen4f3f7572000-04-28 00:18:56 +000098#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
Eric Andersen41492d62001-02-23 00:05:56 +000099#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000100
Erik Andersen983b51b2000-04-04 18:14:25 +0000101
Erik Andersen183da4a2000-04-04 18:36:37 +0000102#if defined BB_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +0000103/*
Erik Andersen183da4a2000-04-04 18:36:37 +0000104 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
105 * before processes are spawned to set core file size as unlimited.
106 * This is for debugging only. Don't use this is production, unless
107 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +0000108 */
109#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
110#include <sys/resource.h>
111#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +0000112#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000113
Erik Andersen4d1d0111999-12-17 18:44:15 +0000114#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +0000115
Eric Andersenb6b519b2001-04-09 23:52:18 +0000116#if __GNU_LIBRARY__ > 5
117 #include <sys/kdaemon.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +0000118#else
Eric Andersenb6b519b2001-04-09 23:52:18 +0000119 extern int bdflush (int func, long int data);
120#endif
Erik Andersen4f3f7572000-04-28 00:18:56 +0000121
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 Andersen41492d62001-02-23 00:05:56 +0000136#define MAXENV 16 /* Number of env. vars */
137//static const int MAXENV = 16; /* Number of env. vars */
Mark Whitley59ab0252001-01-23 22:30:04 +0000138static const int LOG = 0x1;
139static const int CONSOLE = 0x2;
Erik Andersen7dc16072000-01-04 01:10:25 +0000140
141/* Allowed init action types */
142typedef enum {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143 SYSINIT = 1,
144 RESPAWN,
145 ASKFIRST,
146 WAIT,
Erik Andersene132f4b2000-02-09 04:16:43 +0000147 ONCE,
Eric Andersenc97ec342001-04-03 18:01:51 +0000148 CTRLALTDEL,
149 SHUTDOWN
Erik Andersen7dc16072000-01-04 01:10:25 +0000150} initActionEnum;
151
Erik Andersen42094cd2000-03-20 21:34:52 +0000152/* A mapping between "inittab" action name strings and action type codes. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000153typedef struct initActionType {
154 const char *name;
155 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000156} initActionType;
157
158static const struct initActionType actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 {"sysinit", SYSINIT},
160 {"respawn", RESPAWN},
161 {"askfirst", ASKFIRST},
162 {"wait", WAIT},
163 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000164 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000165 {"shutdown", SHUTDOWN},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000166 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000167};
168
Erik Andersen42094cd2000-03-20 21:34:52 +0000169/* Set up a linked list of initActions, to be read from inittab */
Erik Andersen7dc16072000-01-04 01:10:25 +0000170typedef struct initActionTag initAction;
171struct initActionTag {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172 pid_t pid;
173 char process[256];
174 char console[256];
175 initAction *nextPtr;
176 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000177};
Eric Andersen3e6ff902001-03-09 21:24:12 +0000178static initAction *initActionList = NULL;
Erik Andersen7dc16072000-01-04 01:10:25 +0000179
180
Erik Andersenac6e71f2000-01-08 22:04:33 +0000181static char *secondConsole = VT_SECONDARY;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000182static char *thirdConsole = VT_THIRD;
183static char *fourthConsole = VT_FOURTH;
Erik Andersen42094cd2000-03-20 21:34:52 +0000184static char *log = VT_LOG;
185static int kernelVersion = 0;
186static char termType[32] = "TERM=linux";
187static char console[32] = _PATH_CONSOLE;
188
Erik Andersene132f4b2000-02-09 04:16:43 +0000189static void delete_initAction(initAction * action);
Eric Andersen0460ff21999-10-25 23:32:44 +0000190
191
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000192
Erik Andersen42094cd2000-03-20 21:34:52 +0000193/* Print a message to the specified device.
194 * Device may be bitwise-or'd from LOG | CONSOLE */
195static void message(int device, char *fmt, ...)
Erik Andersen93d65132000-04-06 08:06:36 +0000196 __attribute__ ((format (printf, 2, 3)));
197static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000198{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000199 va_list arguments;
200 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000201
Eric Andersen4c781471999-11-26 08:12:56 +0000202#ifdef BB_SYSLOGD
203
Erik Andersene49d5ec2000-02-08 19:58:47 +0000204 /* Log the message to syslogd */
205 if (device & LOG) {
206 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000207
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208 va_start(arguments, fmt);
209 vsnprintf(msg, sizeof(msg), fmt, arguments);
210 va_end(arguments);
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000211 openlog(applet_name, 0, LOG_USER);
Erik Andersene132f4b2000-02-09 04:16:43 +0000212 syslog(LOG_USER|LOG_INFO, msg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000214 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215#else
216 static int log_fd = -1;
217
218 /* Take full control of the log tty, and never close it.
219 * It's mine, all mine! Muhahahaha! */
220 if (log_fd < 0) {
221 if (log == NULL) {
222 /* don't even try to log, because there is no such console */
223 log_fd = -2;
224 /* log to main console instead */
225 device = CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000226 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
227 log_fd = -2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
Erik Andersene132f4b2000-02-09 04:16:43 +0000229 log = NULL;
230 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000231 }
232 }
233 if ((device & LOG) && (log_fd >= 0)) {
234 va_start(arguments, fmt);
235 vdprintf(log_fd, fmt, arguments);
236 va_end(arguments);
237 }
Eric Andersen4c781471999-11-26 08:12:56 +0000238#endif
239
Erik Andersene49d5ec2000-02-08 19:58:47 +0000240 if (device & CONSOLE) {
241 /* Always send console messages to /dev/console so people will see them. */
242 if (
243 (fd =
244 device_open(_PATH_CONSOLE,
245 O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
246 va_start(arguments, fmt);
247 vdprintf(fd, fmt, arguments);
248 va_end(arguments);
249 close(fd);
250 } else {
251 fprintf(stderr, "Bummer, can't print: ");
252 va_start(arguments, fmt);
253 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254 va_end(arguments);
255 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000256 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000257}
258
Eric Andersen0460ff21999-10-25 23:32:44 +0000259/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000260static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000261{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000262 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000263
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000265
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000267 tty.c_cc[VINTR] = 3; /* C-c */
268 tty.c_cc[VQUIT] = 28; /* C-\ */
269 tty.c_cc[VERASE] = 127; /* C-? */
270 tty.c_cc[VKILL] = 21; /* C-u */
271 tty.c_cc[VEOF] = 4; /* C-d */
272 tty.c_cc[VSTART] = 17; /* C-q */
273 tty.c_cc[VSTOP] = 19; /* C-s */
274 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000275
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 /* use line dicipline 0 */
277 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000278
Erik Andersene49d5ec2000-02-08 19:58:47 +0000279 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000280 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
281 tty.c_cflag |= HUPCL|CLOCAL;
Eric Andersen08b10341999-11-19 02:38:58 +0000282
Erik Andersene49d5ec2000-02-08 19:58:47 +0000283 /* input modes */
284 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000285
Erik Andersene49d5ec2000-02-08 19:58:47 +0000286 /* output modes */
287 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000288
Erik Andersene49d5ec2000-02-08 19:58:47 +0000289 /* local modes */
290 tty.c_lflag =
291 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000292
Erik Andersene49d5ec2000-02-08 19:58:47 +0000293 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000294}
295
Eric Andersenbc5941a2000-12-06 23:17:37 +0000296/* How much memory does this machine have?
297 Units are kBytes to avoid overflow on 4GB machines */
Erik Andersend07ee462000-02-21 21:26:32 +0000298static int check_free_memory()
Eric Andersencc8ed391999-10-05 16:24:54 +0000299{
Erik Andersend07ee462000-02-21 21:26:32 +0000300 struct sysinfo info;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000301 unsigned int result, u, s=10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000302
Erik Andersend07ee462000-02-21 21:26:32 +0000303 if (sysinfo(&info) != 0) {
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000304 perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000305 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000306 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000307
308 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
309 * Kernels 2.4.0 return info.mem_unit in bytes. */
310 u = info.mem_unit;
311 if (u==0) u=1;
312 while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
313 result = (info.totalram>>s) + (info.totalswap>>s);
314 result = result*u;
315 if (result < 0) result = INT_MAX;
316 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000317}
318
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000319static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000320{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 int fd;
322 int tried_devcons = 0;
323 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000324 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000325 struct serial_struct sr;
326 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000327
Erik Andersene49d5ec2000-02-08 19:58:47 +0000328 if ((s = getenv("TERM")) != NULL) {
329 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
330 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000331
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332 if ((s = getenv("CONSOLE")) != NULL) {
333 snprintf(console, sizeof(console) - 1, "%s", s);
334 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000335#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000336 /* sparc kernel supports console=tty[ab] parameter which is also
337 * passed to init, so catch it here */
338 else if ((s = getenv("console")) != NULL) {
339 /* remap tty[ab] to /dev/ttyS[01] */
340 if (strcmp(s, "ttya") == 0)
341 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
342 else if (strcmp(s, "ttyb") == 0)
343 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
344 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000345#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000346 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000347 /* 2.2 kernels: identify the real console backend and try to use it */
348 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
349 /* this is a serial console */
350 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
351 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
352 /* this is linux virtual tty */
353 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
354 vt.v_active);
355 } else {
356 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
357 tried_devcons++;
358 }
Eric Andersen07e52971999-11-07 07:38:08 +0000359 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000360
361 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
362 /* Can't open selected console -- try /dev/console */
363 if (!tried_devcons) {
364 tried_devcons++;
365 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
366 continue;
367 }
368 /* Can't open selected console -- try vt1 */
369 if (!tried_vtprimary) {
370 tried_vtprimary++;
371 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
372 continue;
373 }
374 break;
375 }
376 if (fd < 0) {
377 /* Perhaps we should panic here? */
378 snprintf(console, sizeof(console) - 1, "/dev/null");
Eric Andersen07e52971999-11-07 07:38:08 +0000379 } else {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000380 /* check for serial console and disable logging to tty5 & running a
381 * shell to tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000382 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000383 log = NULL;
384 secondConsole = NULL;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000385 thirdConsole = NULL;
386 fourthConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000387 /* Force the TERM setting to vt102 for serial console --
388 * iff TERM is set to linux (the default) */
389 if (strcmp( termType, "TERM=linux" ) == 0)
390 snprintf(termType, sizeof(termType) - 1, "TERM=vt102");
Erik Andersene132f4b2000-02-09 04:16:43 +0000391 message(LOG | CONSOLE,
392 "serial console detected. Disabling virtual terminals.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000393 }
394 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000395 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000396 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000397}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000398
399static void fixup_argv(int argc, char **argv, char *new_argv0)
400{
401 int len;
402 /* Fix up argv[0] to be certain we claim to be init */
403 len = strlen(argv[0]);
404 memset(argv[0], 0, len);
405 strncpy(argv[0], new_argv0, len);
406
407 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
408 len = 1;
409 while (argc > len) {
410 memset(argv[len], 0, strlen(argv[len]));
411 len++;
412 }
413}
414
Eric Andersen0460ff21999-10-25 23:32:44 +0000415
Erik Andersene49d5ec2000-02-08 19:58:47 +0000416static pid_t run(char *command, char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000417{
Eric Andersen7f197852001-03-16 01:14:04 +0000418 int i, j;
Eric Andersen477aedd2001-02-20 18:01:50 +0000419 int fd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000420 pid_t pid;
Eric Andersen7f197852001-03-16 01:14:04 +0000421 char *tmpCmd, *s;
422 char *cmd[255], *cmdpath;
Erik Andersene132f4b2000-02-09 04:16:43 +0000423 char buf[255];
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000424 struct stat sb;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000425 static const char press_enter[] =
426
Eric Andersen38624232001-01-25 00:04:16 +0000427#ifdef CUSTOMIZED_BANNER
428#include CUSTOMIZED_BANNER
429#endif
430
Erik Andersene49d5ec2000-02-08 19:58:47 +0000431 "\nPlease press Enter to activate this console. ";
Eric Andersen477aedd2001-02-20 18:01:50 +0000432 char *environment[MAXENV+1] = {
Eric Andersen7f197852001-03-16 01:14:04 +0000433 termType,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000434 "HOME=/",
435 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
436 "SHELL=/bin/sh",
Eric Andersen7f197852001-03-16 01:14:04 +0000437 "USER=root",
438 NULL
Erik Andersene49d5ec2000-02-08 19:58:47 +0000439 };
Erik Andersenac6e71f2000-01-08 22:04:33 +0000440
Eric Andersen7f197852001-03-16 01:14:04 +0000441 /* inherit environment to the child, merging our values -andy */
442 for (i=0; environ[i]; i++) {
443 for (j=0; environment[j]; j++) {
444 s = strchr(environment[j], '=');
445 if (!strncmp(environ[i], environment[j], s - environment[j]))
446 break;
447 }
448 if (!environment[j]) {
449 environment[j++] = environ[i];
450 environment[j] = NULL;
451 }
Eric Andersen477aedd2001-02-20 18:01:50 +0000452 }
453
Erik Andersene49d5ec2000-02-08 19:58:47 +0000454 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000455 /* Clean up */
Eric Andersenfb6a5082000-09-13 16:15:29 +0000456 ioctl(0, TIOCNOTTY, 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000457 close(0);
458 close(1);
459 close(2);
460 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000461
Erik Andersene49d5ec2000-02-08 19:58:47 +0000462 /* Reset signal handlers set for parent process */
463 signal(SIGUSR1, SIG_DFL);
464 signal(SIGUSR2, SIG_DFL);
465 signal(SIGINT, SIG_DFL);
466 signal(SIGTERM, SIG_DFL);
467 signal(SIGHUP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000468
Erik Andersene49d5ec2000-02-08 19:58:47 +0000469 if ((fd = device_open(terminal, O_RDWR)) < 0) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000470 if (stat(terminal, &sb) != 0) {
Eric Andersen53f50612001-03-14 09:01:11 +0000471 message(LOG | CONSOLE, "device '%s' does not exist.\n",
472 terminal);
473 exit(1);
474 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000475 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
476 exit(1);
477 }
478 dup2(fd, 0);
479 dup2(fd, 1);
480 dup2(fd, 2);
Eric Andersenfb6a5082000-09-13 16:15:29 +0000481 ioctl(0, TIOCSCTTY, 1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000482 tcsetpgrp(0, getpgrp());
483 set_term(0);
484
Erik Andersene132f4b2000-02-09 04:16:43 +0000485 /* See if any special /bin/sh requiring characters are present */
486 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
487 cmd[0] = SHELL;
488 cmd[1] = "-c";
489 strcpy(buf, "exec ");
490 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
491 cmd[2] = buf;
492 cmd[3] = NULL;
493 } else {
494 /* Convert command (char*) into cmd (char**, one word per string) */
495 for (tmpCmd = command, i = 0;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000496 (tmpCmd = strsep(&command, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000497 if (*tmpCmd != '\0') {
498 cmd[i] = tmpCmd;
499 tmpCmd++;
500 i++;
501 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000502 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000503 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000504 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000505
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000506 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000507
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000508 /*
509 Interactive shells want to see a dash in argv[0]. This
510 typically is handled by login, argv will be setup this
511 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000512 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000513 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000514
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000515 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000516
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000517 /* skip over the dash */
518 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000519
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000520 /* find the last component in the command pathname */
521 s = get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000522
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000523 /* make a new argv[0] */
524 if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
525 message(LOG | CONSOLE, "malloc failed");
526 cmd[0] = cmdpath;
527 } else {
528 cmd[0][0] = '-';
529 strcpy(cmd[0]+1, s);
530 }
531 }
532
533 if (get_enter == TRUE) {
534 /*
535 * Save memory by not exec-ing anything large (like a shell)
536 * before the user wants it. This is critical if swap is not
537 * enabled and the system has low memory. Generally this will
538 * be run on the second virtual console, and the first will
539 * be allowed to start a shell or whatever an init script
540 * specifies.
541 */
542#ifdef DEBUG_INIT
543 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
544 cmd[0], getpid(), terminal);
545#endif
546 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
547 getc(stdin);
548 }
549
550#ifdef DEBUG_INIT
551 /* Log the process name and args */
552 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
553 getpid(), terminal, command);
554#endif
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000555
Erik Andersen183da4a2000-04-04 18:36:37 +0000556#if defined BB_FEATURE_INIT_COREDUMPS
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000557 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
558 struct rlimit limit;
559 limit.rlim_cur = RLIM_INFINITY;
560 limit.rlim_max = RLIM_INFINITY;
561 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000562 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000563#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000564
Erik Andersene49d5ec2000-02-08 19:58:47 +0000565 /* Now run it. The new program will take over this PID,
566 * so nothing further in init.c should be run. */
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000567 execve(cmdpath, cmd, environment);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000568
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000569 /* We're still here? Some error happened. */
570 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmdpath,
571 strerror(errno));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000572 exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000573 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000574 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000575}
576
Erik Andersene49d5ec2000-02-08 19:58:47 +0000577static int waitfor(char *command, char *terminal, int get_enter)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000578{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000579 int status, wpid;
580 int pid = run(command, terminal, get_enter);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000581
Erik Andersene49d5ec2000-02-08 19:58:47 +0000582 while (1) {
583 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000584 if (wpid > 0 && wpid != pid) {
585 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000586 }
587 if (wpid == pid)
588 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000589 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000590 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000591}
592
Eric Andersen219d6f51999-11-02 19:43:01 +0000593/* Make sure there is enough memory to do something useful. *
Erik Andersene132f4b2000-02-09 04:16:43 +0000594 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
Eric Andersen219d6f51999-11-02 19:43:01 +0000595static void check_memory()
596{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000597 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000598
Erik Andersend07ee462000-02-21 21:26:32 +0000599 if (check_free_memory() > 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000600 return;
601
602 if (stat("/etc/fstab", &statBuf) == 0) {
Erik Andersen61677fe2000-04-13 01:18:56 +0000603 /* swapon -a requires /proc typically */
604 waitfor("mount proc /proc -t proc", console, FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000605 /* Try to turn on swap */
Erik Andersen61677fe2000-04-13 01:18:56 +0000606 waitfor("swapon -a", console, FALSE);
Erik Andersend07ee462000-02-21 21:26:32 +0000607 if (check_free_memory() < 1000)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000608 goto goodnight;
609 } else
610 goto goodnight;
Eric Andersen219d6f51999-11-02 19:43:01 +0000611 return;
612
Erik Andersene49d5ec2000-02-08 19:58:47 +0000613 goodnight:
614 message(CONSOLE,
615 "Sorry, your computer does not have enough memory.\r\n");
616 while (1)
617 sleep(1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000618}
619
Erik Andersene132f4b2000-02-09 04:16:43 +0000620/* Run all commands to be run right before halt/reboot */
Eric Andersenc97ec342001-04-03 18:01:51 +0000621static void run_actions(initActionEnum action)
Erik Andersene132f4b2000-02-09 04:16:43 +0000622{
Eric Andersen0d4e51d2001-03-15 19:18:21 +0000623 initAction *a, *tmp;
Eric Andersena4edd0e2001-03-15 21:04:18 +0000624 for (a = initActionList; a; a = tmp) {
625 tmp = a->nextPtr;
Eric Andersenc97ec342001-04-03 18:01:51 +0000626 if (a->action == action) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000627 waitfor(a->process, a->console, FALSE);
628 delete_initAction(a);
629 }
630 }
631}
632
633
Erik Andersen7dc16072000-01-04 01:10:25 +0000634#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000635static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000636{
Erik Andersene132f4b2000-02-09 04:16:43 +0000637
Erik Andersene49d5ec2000-02-08 19:58:47 +0000638 /* first disable our SIGHUP signal */
639 signal(SIGHUP, SIG_DFL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000640
Erik Andersene49d5ec2000-02-08 19:58:47 +0000641 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000642 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000643
644 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000645 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000646
647 /* Send signals to every process _except_ pid 1 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000648 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000649 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000650 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000651 sync();
652
Erik Andersene132f4b2000-02-09 04:16:43 +0000653 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000654 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000655 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000656
Erik Andersene132f4b2000-02-09 04:16:43 +0000657 /* run everything to be run at "ctrlaltdel" */
Eric Andersenc97ec342001-04-03 18:01:51 +0000658 run_actions(SHUTDOWN);
Erik Andersene132f4b2000-02-09 04:16:43 +0000659
Erik Andersene49d5ec2000-02-08 19:58:47 +0000660 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000661 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000662 /* bdflush, kupdate not needed for kernels >2.2.11 */
663 bdflush(1, 0);
664 sync();
665 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000666}
667
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000668static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000669{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000670 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000671 message(CONSOLE|LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000672 "The system is halted. Press %s or turn off power\r\n",
673 (secondConsole == NULL) /* serial console */
674 ? "Reset" : "CTRL-ALT-DEL");
675 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000676
Erik Andersene49d5ec2000-02-08 19:58:47 +0000677 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000678 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000679
Eric Andersenbd22ed82000-07-08 18:55:24 +0000680 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000681 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000682 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000683 init_reboot(RB_HALT_SYSTEM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000684 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000685}
686
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000687static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000688{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000689 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000690 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000691 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000692
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693 /* allow time for last message to reach serial console */
694 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000695
Erik Andersen4f3f7572000-04-28 00:18:56 +0000696 init_reboot(RB_AUTOBOOT);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000697 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000698}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000699
Eric Andersenc97ec342001-04-03 18:01:51 +0000700static void ctrlaltdel_signal(int sig)
701{
702 run_actions(CTRLALTDEL);
703}
704
Erik Andersene49d5ec2000-02-08 19:58:47 +0000705#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000706
Eric Andersen3e6ff902001-03-09 21:24:12 +0000707static void new_initAction(initActionEnum action, char *process, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000708{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000709 initAction *newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000710
Erik Andersene49d5ec2000-02-08 19:58:47 +0000711 if (*cons == '\0')
712 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000713
Erik Andersene49d5ec2000-02-08 19:58:47 +0000714 /* If BusyBox detects that a serial console is in use,
715 * then entries not refering to the console or null devices will _not_ be run.
716 * The exception to this rule is the null device.
717 */
718 if (secondConsole == NULL && strcmp(cons, console)
719 && strcmp(cons, "/dev/null"))
720 return;
721
722 newAction = calloc((size_t) (1), sizeof(initAction));
723 if (!newAction) {
724 message(LOG | CONSOLE, "Memory allocation failure\n");
725 while (1)
726 sleep(1);
727 }
728 newAction->nextPtr = initActionList;
729 initActionList = newAction;
730 strncpy(newAction->process, process, 255);
731 newAction->action = action;
732 strncpy(newAction->console, cons, 255);
733 newAction->pid = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000734// message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000735// newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000736}
737
Erik Andersene132f4b2000-02-09 04:16:43 +0000738static void delete_initAction(initAction * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000739{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000740 initAction *a, *b = NULL;
741
742 for (a = initActionList; a; b = a, a = a->nextPtr) {
743 if (a == action) {
744 if (b == NULL) {
745 initActionList = a->nextPtr;
746 } else {
747 b->nextPtr = a->nextPtr;
748 }
749 free(a);
750 break;
751 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000752 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000753}
754
Erik Andersen9e737252000-01-06 01:16:13 +0000755/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
756 * then parse_inittab() simply adds in some default
757 * actions(i.e runs INIT_SCRIPT and then starts a pair
Erik Andersen812d4662000-01-07 18:30:40 +0000758 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
759 * _is_ defined, but /etc/inittab is missing, this
760 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000761 * */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000762static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000763{
Erik Andersen9e737252000-01-06 01:16:13 +0000764#ifdef BB_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000765 FILE *file;
766 char buf[256], lineAsRead[256], tmpConsole[256];
Eric Andersenb5966362000-05-31 20:04:38 +0000767 char *id, *runlev, *action, *process, *eol;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000768 const struct initActionType *a = actions;
769 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000770
771
Erik Andersene49d5ec2000-02-08 19:58:47 +0000772 file = fopen(INITTAB, "r");
773 if (file == NULL) {
774 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000775#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000776 /* Reboot on Ctrl-Alt-Del */
777 new_initAction(CTRLALTDEL, "/sbin/reboot", console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000778 /* Swapoff on halt/reboot */
Eric Andersenc97ec342001-04-03 18:01:51 +0000779 new_initAction(SHUTDOWN, "/sbin/swapoff -a", console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000780 /* Umount all filesystems on halt/reboot */
Eric Andersenc97ec342001-04-03 18:01:51 +0000781 new_initAction(SHUTDOWN, "/bin/umount -a -r", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000782 /* Askfirst shell on tty1 */
783 new_initAction(ASKFIRST, SHELL, console);
784 /* Askfirst shell on tty2 */
785 if (secondConsole != NULL)
786 new_initAction(ASKFIRST, SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000787 /* Askfirst shell on tty3 */
788 if (thirdConsole != NULL)
789 new_initAction(ASKFIRST, SHELL, thirdConsole);
790 /* Askfirst shell on tty4 */
791 if (fourthConsole != NULL)
792 new_initAction(ASKFIRST, SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000793 /* sysinit */
794 new_initAction(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000795
Erik Andersene49d5ec2000-02-08 19:58:47 +0000796 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000797#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000798 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000799
Erik Andersene49d5ec2000-02-08 19:58:47 +0000800 while (fgets(buf, 255, file) != NULL) {
801 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000802 /* Skip leading spaces */
803 for (id = buf; *id == ' ' || *id == '\t'; id++);
804
805 /* Skip the line if it's a comment */
806 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000807 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000808
Erik Andersene49d5ec2000-02-08 19:58:47 +0000809 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000810 eol = strrchr(id, '\n');
811 if (eol != NULL)
812 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000813
Erik Andersene49d5ec2000-02-08 19:58:47 +0000814 /* Keep a copy around for posterity's sake (and error msgs) */
815 strcpy(lineAsRead, buf);
816
Eric Andersenb5966362000-05-31 20:04:38 +0000817 /* Separate the ID field from the runlevels */
818 runlev = strchr(id, ':');
819 if (runlev == NULL || *(runlev + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000820 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
821 continue;
822 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000823 *runlev = '\0';
824 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000825 }
826
Eric Andersenb5966362000-05-31 20:04:38 +0000827 /* Separate the runlevels from the action */
828 action = strchr(runlev, ':');
829 if (action == NULL || *(action + 1) == '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000830 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
831 continue;
832 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000833 *action = '\0';
834 ++action;
835 }
836
837 /* Separate the action from the process */
838 process = strchr(action, ':');
839 if (process == NULL || *(process + 1) == '\0') {
840 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
841 continue;
842 } else {
843 *process = '\0';
844 ++process;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000845 }
846
847 /* Ok, now process it */
848 a = actions;
849 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +0000850 if (strcmp(a->name, action) == 0) {
851 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000852 strcpy(tmpConsole, "/dev/");
Eric Andersenb5966362000-05-31 20:04:38 +0000853 strncat(tmpConsole, id, 200);
Eric Andersenb5966362000-05-31 20:04:38 +0000854 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000855 }
Eric Andersenb5966362000-05-31 20:04:38 +0000856 new_initAction(a->action, process, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000857 foundIt = TRUE;
858 }
859 a++;
860 }
861 if (foundIt == TRUE)
862 continue;
863 else {
864 /* Choke on an unknown action */
865 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
866 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000867 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000868 return;
Erik Andersen42094cd2000-03-20 21:34:52 +0000869#endif /* BB_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000870}
871
Erik Andersene132f4b2000-02-09 04:16:43 +0000872
873
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000874extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000875{
Eric Andersen0d4e51d2001-03-15 19:18:21 +0000876 initAction *a, *tmp;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000877 pid_t wpid;
878 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000879
Eric Andersend73dc5b1999-11-10 23:13:02 +0000880#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +0000881 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
882 if (getpid() != 1
883#ifdef BB_FEATURE_LINUXRC
Matt Kraaie58771e2000-07-12 15:38:49 +0000884 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +0000885#endif
886 )
887 {
Eric Andersen67991cf2001-02-14 21:23:06 +0000888 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000889 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000890 /* Set up sig handlers -- be sure to
891 * clear all of these in run() */
892 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +0000893 signal(SIGUSR2, halt_signal);
Eric Andersenc97ec342001-04-03 18:01:51 +0000894 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000895 signal(SIGTERM, reboot_signal);
Eric Andersen0460ff21999-10-25 23:32:44 +0000896
Erik Andersene49d5ec2000-02-08 19:58:47 +0000897 /* Turn off rebooting via CTL-ALT-DEL -- we get a
898 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000899 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000900#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000901
Erik Andersen298854f2000-03-23 01:09:18 +0000902 /* Figure out what kernel this is running */
903 kernelVersion = get_kernel_revision();
904
Erik Andersene49d5ec2000-02-08 19:58:47 +0000905 /* Figure out where the default console should be */
906 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000907
Erik Andersene49d5ec2000-02-08 19:58:47 +0000908 /* Close whatever files are open, and reset the console. */
909 close(0);
910 close(1);
911 close(2);
912 set_term(0);
Erik Andersen983b51b2000-04-04 18:14:25 +0000913 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000914 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000915
Erik Andersene49d5ec2000-02-08 19:58:47 +0000916 /* Make sure PATH is set to something sane */
Eric Andersen452fd332001-03-04 06:47:33 +0000917 putenv("PATH="_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000918
Erik Andersene49d5ec2000-02-08 19:58:47 +0000919 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000920#ifndef DEBUG_INIT
Erik Andersenea6b67d2000-03-07 07:47:10 +0000921 message(
922#if ! defined BB_FEATURE_EXTRA_QUIET
923 CONSOLE|
924#endif
925 LOG,
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000926 "init started: %s\r\n", full_version);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000927#else
Erik Andersenea6b67d2000-03-07 07:47:10 +0000928 message(
929#if ! defined BB_FEATURE_EXTRA_QUIET
930 CONSOLE|
931#endif
932 LOG,
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000933 "init(%d) started: %s\r\n", getpid(), full_version);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000934#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000935
Eric Andersencc8ed391999-10-05 16:24:54 +0000936
Erik Andersene49d5ec2000-02-08 19:58:47 +0000937 /* Make sure there is enough memory to do something useful. */
938 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +0000939
Erik Andersene49d5ec2000-02-08 19:58:47 +0000940 /* Check if we are supposed to be in single user mode */
941 if (argc > 1 && (!strcmp(argv[1], "single") ||
942 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000943 /* Ask first then start a shell on tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000944 if (secondConsole != NULL)
945 new_initAction(ASKFIRST, SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000946 if (thirdConsole != NULL)
947 new_initAction(ASKFIRST, SHELL, thirdConsole);
948 if (fourthConsole != NULL)
949 new_initAction(ASKFIRST, SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000950 /* Start a shell on tty1 */
951 new_initAction(RESPAWN, SHELL, console);
952 } else {
953 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000954
Erik Andersene49d5ec2000-02-08 19:58:47 +0000955 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
956 * then parse_inittab() simply adds in some default
957 * actions(i.e runs INIT_SCRIPT and then starts a pair
958 * of "askfirst" shells */
959 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000960 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000961
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000962 /* Make the command line just say "init" -- thats all, nothing else */
963 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +0000964
Erik Andersene49d5ec2000-02-08 19:58:47 +0000965 /* Now run everything that needs to be run */
966
967 /* First run the sysinit command */
Eric Andersena4edd0e2001-03-15 21:04:18 +0000968 for (a = initActionList; a; a = tmp) {
969 tmp = a->nextPtr;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000970 if (a->action == SYSINIT) {
971 waitfor(a->process, a->console, FALSE);
972 /* Now remove the "sysinit" entry from the list */
973 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000974 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000975 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000976 /* Next run anything that wants to block */
Eric Andersena4edd0e2001-03-15 21:04:18 +0000977 for (a = initActionList; a; a = tmp) {
978 tmp = a->nextPtr;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000979 if (a->action == WAIT) {
980 waitfor(a->process, a->console, FALSE);
981 /* Now remove the "wait" entry from the list */
982 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000983 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000984 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000985 /* Next run anything to be run only once */
Eric Andersena4edd0e2001-03-15 21:04:18 +0000986 for (a = initActionList; a; a = tmp) {
987 tmp = a->nextPtr;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000988 if (a->action == ONCE) {
989 run(a->process, a->console, FALSE);
990 /* Now remove the "once" entry from the list */
991 delete_initAction(a);
992 }
993 }
994 /* If there is nothing else to do, stop */
995 if (initActionList == NULL) {
996 message(LOG | CONSOLE,
997 "No more tasks for init -- sleeping forever.\n");
998 while (1)
999 sleep(1);
1000 }
1001
1002 /* Now run the looping stuff for the rest of forever */
1003 while (1) {
1004 for (a = initActionList; a; a = a->nextPtr) {
1005 /* Only run stuff with pid==0. If they have
1006 * a pid, that means they are still running */
1007 if (a->pid == 0) {
1008 switch (a->action) {
1009 case RESPAWN:
1010 /* run the respawn stuff */
1011 a->pid = run(a->process, a->console, FALSE);
1012 break;
1013 case ASKFIRST:
1014 /* run the askfirst stuff */
1015 a->pid = run(a->process, a->console, TRUE);
1016 break;
1017 /* silence the compiler's incessant whining */
1018 default:
1019 break;
1020 }
1021 }
1022 }
1023 /* Wait for a child process to exit */
1024 wpid = wait(&status);
1025 if (wpid > 0) {
1026 /* Find out who died and clean up their corpse */
1027 for (a = initActionList; a; a = a->nextPtr) {
1028 if (a->pid == wpid) {
1029 a->pid = 0;
1030 message(LOG,
1031 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
1032 a->process, wpid);
1033 }
1034 }
1035 }
1036 sleep(1);
1037 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001038}
Erik Andersen029011b2000-03-04 21:19:32 +00001039
1040/*
1041Local Variables:
1042c-file-style: "linux"
1043c-basic-offset: 4
1044tab-width: 4
1045End:
1046*/