blob: 8b68a0556a6a4e8f8de367300c5a8f100593cf7b [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 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Eric Andersen1d1d2f92002-04-13 08:31:59 +00006 * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org>
Eric Andersenc4996011999-10-20 22:08:37 +00007 * 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"
Eric Andersenbdfd0d72001-10-24 05:00:29 +000046#ifdef CONFIG_SYSLOGD
Erik Andersen4f3f7572000-04-28 00:18:56 +000047# include <sys/syslog.h>
48#endif
49
Eric Andersen0298be82002-03-05 15:12:19 +000050#if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_MMU__)
51#define fork vfork
52#endif
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
Eric Andersen72f9a422001-10-28 05:12:20 +000081#if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__)
82 #include <sys/reboot.h>
83 #define init_reboot(magic) reboot(magic)
84#else
85 #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
86#endif
Erik Andersen4f3f7572000-04-28 00:18:56 +000087
Eric Andersen41492d62001-02-23 00:05:56 +000088#ifndef _PATH_STDPATH
Erik Andersen4f3f7572000-04-28 00:18:56 +000089#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
Eric Andersen41492d62001-02-23 00:05:56 +000090#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000091
Eric Andersenbdfd0d72001-10-24 05:00:29 +000092#if defined CONFIG_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000093/*
Erik Andersen183da4a2000-04-04 18:36:37 +000094 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
95 * before processes are spawned to set core file size as unlimited.
96 * This is for debugging only. Don't use this is production, unless
97 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000098 */
99#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
100#include <sys/resource.h>
101#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +0000102#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000103
Erik Andersen4d1d0111999-12-17 18:44:15 +0000104#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +0000105
Eric Andersenb6b519b2001-04-09 23:52:18 +0000106#if __GNU_LIBRARY__ > 5
107 #include <sys/kdaemon.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +0000108#else
Eric Andersenb6b519b2001-04-09 23:52:18 +0000109 extern int bdflush (int func, long int data);
110#endif
Erik Andersen4f3f7572000-04-28 00:18:56 +0000111
Matt Kraai7bd773c2001-06-12 20:55:02 +0000112#define SHELL "/bin/sh" /* Default shell */
113#define LOGIN_SHELL "-" SHELL /* Default login shell */
Erik Andersen42094cd2000-03-20 21:34:52 +0000114#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000115#ifndef INIT_SCRIPT
Erik Andersen42094cd2000-03-20 21:34:52 +0000116#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000117#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000118
Eric Andersen41492d62001-02-23 00:05:56 +0000119#define MAXENV 16 /* Number of env. vars */
Erik Andersen7dc16072000-01-04 01:10:25 +0000120
121/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +0000122#define SYSINIT 0x001
123#define RESPAWN 0x002
124#define ASKFIRST 0x004
125#define WAIT 0x008
126#define ONCE 0x010
127#define CTRLALTDEL 0x020
128#define SHUTDOWN 0x040
129#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +0000130
Erik Andersen42094cd2000-03-20 21:34:52 +0000131/* A mapping between "inittab" action name strings and action type codes. */
Eric Andersen0298be82002-03-05 15:12:19 +0000132struct init_action_type {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133 const char *name;
Eric Andersen0298be82002-03-05 15:12:19 +0000134 int action;
135};
Erik Andersen7dc16072000-01-04 01:10:25 +0000136
Eric Andersen0298be82002-03-05 15:12:19 +0000137static const struct init_action_type actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138 {"sysinit", SYSINIT},
139 {"respawn", RESPAWN},
140 {"askfirst", ASKFIRST},
141 {"wait", WAIT},
142 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000143 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000144 {"shutdown", SHUTDOWN},
Eric Andersen730f8262001-12-17 23:13:08 +0000145 {"restart", RESTART},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000146 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000147};
148
Eric Andersen0298be82002-03-05 15:12:19 +0000149/* Set up a linked list of init_actions, to be read from inittab */
150struct init_action {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151 pid_t pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000152 char command[256];
153 char terminal[256];
154 struct init_action *next;
155 int action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000156};
Erik Andersen7dc16072000-01-04 01:10:25 +0000157
Eric Andersen0298be82002-03-05 15:12:19 +0000158/* Static variables */
159static struct init_action *init_action_list = NULL;
Matt Kraai439e3df2001-07-23 14:52:08 +0000160static char *secondConsole = VC_2;
161static char *thirdConsole = VC_3;
162static char *fourthConsole = VC_4;
163static char *log = VC_5;
Erik Andersen42094cd2000-03-20 21:34:52 +0000164static int kernelVersion = 0;
165static char termType[32] = "TERM=linux";
166static char console[32] = _PATH_CONSOLE;
Eric Andersen0298be82002-03-05 15:12:19 +0000167static sig_atomic_t got_cont = 0;
168static const int LOG = 0x1;
169static const int CONSOLE = 0x2;
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000170#if defined CONFIG_FEATURE_EXTRA_QUIET
Eric Andersen0298be82002-03-05 15:12:19 +0000171static const int MAYBE_CONSOLE = 0x0;
172#else
173#define MAYBE_CONSOLE CONSOLE
174#endif
175#ifndef RB_HALT_SYSTEM
176static const int RB_HALT_SYSTEM = 0xcdef0123;
177static const int RB_ENABLE_CAD = 0x89abcdef;
178static const int RB_DISABLE_CAD = 0;
179#define RB_POWER_OFF 0x4321fedc
180static const int RB_AUTOBOOT = 0x01234567;
181#endif
Erik Andersen42094cd2000-03-20 21:34:52 +0000182
Eric Andersen0298be82002-03-05 15:12:19 +0000183/* Function prototypes */
184static void delete_init_action(struct init_action *a);
185static int waitfor(struct init_action *a);
186
Eric Andersen0460ff21999-10-25 23:32:44 +0000187
Eric Andersen74400cc2001-10-18 04:11:39 +0000188static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000189{
190 while (1)
191 sleep (1);
192}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000193
Erik Andersen42094cd2000-03-20 21:34:52 +0000194/* Print a message to the specified device.
195 * Device may be bitwise-or'd from LOG | CONSOLE */
Eric Andersenfedce062001-11-17 07:27:14 +0000196#ifdef DEBUG_INIT
197static inline messageND(int device, char *fmt, ...) { }
198#else
199#define messageND message
200#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000201static void message(int device, char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
Erik Andersen93d65132000-04-06 08:06:36 +0000202static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000203{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000204 va_list arguments;
205 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000206
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000207#ifdef CONFIG_SYSLOGD
Eric Andersen4c781471999-11-26 08:12:56 +0000208
Erik Andersene49d5ec2000-02-08 19:58:47 +0000209 /* Log the message to syslogd */
210 if (device & LOG) {
211 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000212
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213 va_start(arguments, fmt);
214 vsnprintf(msg, sizeof(msg), fmt, arguments);
215 va_end(arguments);
Eric Andersen0298be82002-03-05 15:12:19 +0000216 syslog_msg(LOG_USER, LOG_INFO, msg);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000217 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218#else
219 static int log_fd = -1;
220
221 /* Take full control of the log tty, and never close it.
222 * It's mine, all mine! Muhahahaha! */
223 if (log_fd < 0) {
224 if (log == NULL) {
225 /* don't even try to log, because there is no such console */
226 log_fd = -2;
227 /* log to main console instead */
228 device = CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000229 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
230 log_fd = -2;
Eric Andersen72f9a422001-10-28 05:12:20 +0000231 fprintf(stderr, "Bummer, can't write to log on %s!\n", log);
Erik Andersene132f4b2000-02-09 04:16:43 +0000232 log = NULL;
233 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000234 }
235 }
236 if ((device & LOG) && (log_fd >= 0)) {
237 va_start(arguments, fmt);
238 vdprintf(log_fd, fmt, arguments);
239 va_end(arguments);
240 }
Eric Andersen4c781471999-11-26 08:12:56 +0000241#endif
242
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243 if (device & CONSOLE) {
244 /* Always send console messages to /dev/console so people will see them. */
245 if (
246 (fd =
Eric Andersen0298be82002-03-05 15:12:19 +0000247 device_open(_PATH_CONSOLE, O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000248 va_start(arguments, fmt);
249 vdprintf(fd, fmt, arguments);
250 va_end(arguments);
251 close(fd);
252 } else {
253 fprintf(stderr, "Bummer, can't print: ");
254 va_start(arguments, fmt);
255 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000256 va_end(arguments);
257 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000258 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000259}
260
Eric Andersen0460ff21999-10-25 23:32:44 +0000261/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000262static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000263{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000265
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000267
Erik Andersene49d5ec2000-02-08 19:58:47 +0000268 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000269 tty.c_cc[VINTR] = 3; /* C-c */
270 tty.c_cc[VQUIT] = 28; /* C-\ */
271 tty.c_cc[VERASE] = 127; /* C-? */
272 tty.c_cc[VKILL] = 21; /* C-u */
273 tty.c_cc[VEOF] = 4; /* C-d */
274 tty.c_cc[VSTART] = 17; /* C-q */
275 tty.c_cc[VSTOP] = 19; /* C-s */
276 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000277
Erik Andersene49d5ec2000-02-08 19:58:47 +0000278 /* use line dicipline 0 */
279 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000280
Erik Andersene49d5ec2000-02-08 19:58:47 +0000281 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000282 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
Eric Andersend8862922001-04-23 15:14:11 +0000283 tty.c_cflag |= CREAD|HUPCL|CLOCAL;
284
Eric Andersen08b10341999-11-19 02:38:58 +0000285
Erik Andersene49d5ec2000-02-08 19:58:47 +0000286 /* input modes */
287 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000288
Erik Andersene49d5ec2000-02-08 19:58:47 +0000289 /* output modes */
290 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000291
Erik Andersene49d5ec2000-02-08 19:58:47 +0000292 /* local modes */
293 tty.c_lflag =
294 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000295
Erik Andersene49d5ec2000-02-08 19:58:47 +0000296 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000297}
298
Eric Andersenbc5941a2000-12-06 23:17:37 +0000299/* How much memory does this machine have?
300 Units are kBytes to avoid overflow on 4GB machines */
Eric Andersen74400cc2001-10-18 04:11:39 +0000301static int check_free_memory(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000302{
Erik Andersend07ee462000-02-21 21:26:32 +0000303 struct sysinfo info;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000304 unsigned int result, u, s=10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000305
Erik Andersend07ee462000-02-21 21:26:32 +0000306 if (sysinfo(&info) != 0) {
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000307 perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000308 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000309 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000310
311 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
312 * Kernels 2.4.0 return info.mem_unit in bytes. */
313 u = info.mem_unit;
314 if (u==0) u=1;
315 while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
316 result = (info.totalram>>s) + (info.totalswap>>s);
317 result = result*u;
318 if (result < 0) result = INT_MAX;
319 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000320}
321
Eric Andersen74400cc2001-10-18 04:11:39 +0000322static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000323{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000324 int fd;
325 int tried_devcons = 0;
326 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000327 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000328 struct serial_struct sr;
329 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000330
Erik Andersene49d5ec2000-02-08 19:58:47 +0000331 if ((s = getenv("TERM")) != NULL) {
332 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
333 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000334
Erik Andersene49d5ec2000-02-08 19:58:47 +0000335 if ((s = getenv("CONSOLE")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000336 safe_strncpy(console, s, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000337 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000338#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000339 /* sparc kernel supports console=tty[ab] parameter which is also
340 * passed to init, so catch it here */
341 else if ((s = getenv("console")) != NULL) {
342 /* remap tty[ab] to /dev/ttyS[01] */
343 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000344 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000346 safe_strncpy(console, SC_1, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000347 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000348#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000349 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000350 /* 2.2 kernels: identify the real console backend and try to use it */
351 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
352 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000353 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000354 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
355 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000356 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000357 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000358 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000359 tried_devcons++;
360 }
Eric Andersen07e52971999-11-07 07:38:08 +0000361 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000362
363 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
364 /* Can't open selected console -- try /dev/console */
365 if (!tried_devcons) {
366 tried_devcons++;
Matt Kraai18447702001-05-18 21:24:58 +0000367 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000368 continue;
369 }
370 /* Can't open selected console -- try vt1 */
371 if (!tried_vtprimary) {
372 tried_vtprimary++;
Matt Kraai439e3df2001-07-23 14:52:08 +0000373 safe_strncpy(console, VC_1, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000374 continue;
375 }
376 break;
377 }
378 if (fd < 0) {
379 /* Perhaps we should panic here? */
Matt Kraai18447702001-05-18 21:24:58 +0000380 safe_strncpy(console, "/dev/null", sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000381 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000382 /* check for serial console and disable logging to tty5 &
383 * running a shell to tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000384 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000385 log = NULL;
386 secondConsole = NULL;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000387 thirdConsole = NULL;
388 fourthConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000389 /* Force the TERM setting to vt102 for serial console --
390 * iff TERM is set to linux (the default) */
391 if (strcmp( termType, "TERM=linux" ) == 0)
Matt Kraai18447702001-05-18 21:24:58 +0000392 safe_strncpy(termType, "TERM=vt102", sizeof(termType));
Erik Andersene132f4b2000-02-09 04:16:43 +0000393 message(LOG | CONSOLE,
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000394 "\rserial console detected. Disabling virtual terminals.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000395 }
396 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000397 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000398 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000399}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000400
401static void fixup_argv(int argc, char **argv, char *new_argv0)
402{
403 int len;
404 /* Fix up argv[0] to be certain we claim to be init */
405 len = strlen(argv[0]);
406 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000407 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000408
409 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
410 len = 1;
411 while (argc > len) {
412 memset(argv[len], 0, strlen(argv[len]));
413 len++;
414 }
415}
416
Eric Andersen0298be82002-03-05 15:12:19 +0000417/* Make sure there is enough memory to do something useful. *
418 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
419static void check_memory(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000420{
Eric Andersen0298be82002-03-05 15:12:19 +0000421 struct stat statBuf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000422
Eric Andersen0298be82002-03-05 15:12:19 +0000423 if (check_free_memory() > 1000)
424 return;
425
426#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
427 if (stat("/etc/fstab", &statBuf) == 0) {
428 /* swapon -a requires /proc typically */
429 system("/bin/mount -t proc proc /proc");
430 /* Try to turn on swap */
431 system("/sbin/swapon -a");
432 if (check_free_memory() < 1000)
433 goto goodnight;
434 } else
435 goto goodnight;
436 return;
Eric Andersen38624232001-01-25 00:04:16 +0000437#endif
438
Eric Andersen0298be82002-03-05 15:12:19 +0000439 goodnight:
440 message(CONSOLE,
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000441 "\rSorry, your computer does not have enough memory.\n");
Eric Andersen0298be82002-03-05 15:12:19 +0000442 loop_forever();
443}
444
445static pid_t run(struct init_action *a)
446{
447 struct stat sb;
448 int i, j, fd, junk;
449 pid_t pid, pgrp, tmp_pid;
450 char *s, *tmpCmd, *cmd[255], *cmdpath, buf[255];
451 sigset_t nmask, omask;
Eric Andersen477aedd2001-02-20 18:01:50 +0000452 char *environment[MAXENV+1] = {
Eric Andersen7f197852001-03-16 01:14:04 +0000453 termType,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000454 "HOME=/",
Eric Andersen72f9a422001-10-28 05:12:20 +0000455 "PATH=" _PATH_STDPATH,
Matt Kraai7bd773c2001-06-12 20:55:02 +0000456 "SHELL=" SHELL,
Eric Andersen7f197852001-03-16 01:14:04 +0000457 "USER=root",
458 NULL
Erik Andersene49d5ec2000-02-08 19:58:47 +0000459 };
Eric Andersen0298be82002-03-05 15:12:19 +0000460 static const char press_enter[] =
461#ifdef CUSTOMIZED_BANNER
462#include CUSTOMIZED_BANNER
463#endif
464 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000465
Eric Andersen7f197852001-03-16 01:14:04 +0000466 /* inherit environment to the child, merging our values -andy */
467 for (i=0; environ[i]; i++) {
468 for (j=0; environment[j]; j++) {
469 s = strchr(environment[j], '=');
470 if (!strncmp(environ[i], environment[j], s - environment[j]))
471 break;
472 }
473 if (!environment[j]) {
474 environment[j++] = environ[i];
475 environment[j] = NULL;
476 }
Eric Andersen477aedd2001-02-20 18:01:50 +0000477 }
478
Eric Andersen0298be82002-03-05 15:12:19 +0000479 /* Block sigchild while forking. */
480 sigemptyset(&nmask);
481 sigaddset(&nmask, SIGCHLD);
482 sigprocmask(SIG_BLOCK, &nmask, &omask);
483
Eric Andersen72f9a422001-10-28 05:12:20 +0000484 if ((pid = fork()) == 0)
Eric Andersen72f9a422001-10-28 05:12:20 +0000485 {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000486 /* Clean up */
Eric Andersenfb6a5082000-09-13 16:15:29 +0000487 ioctl(0, TIOCNOTTY, 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000488 close(0);
489 close(1);
490 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000491 sigprocmask(SIG_SETMASK, &omask, NULL);
492
493 /* Create a new session and make ourself the process group leader */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000494 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000495
Eric Andersen0298be82002-03-05 15:12:19 +0000496 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000497 signal(SIGUSR1, SIG_DFL);
498 signal(SIGUSR2, SIG_DFL);
Eric Andersen0298be82002-03-05 15:12:19 +0000499 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000500 signal(SIGTERM, SIG_DFL);
Eric Andersen0298be82002-03-05 15:12:19 +0000501 signal(SIGHUP, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000502 signal(SIGCONT, SIG_DFL);
503 signal(SIGSTOP, SIG_DFL);
504 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000505
Eric Andersen0298be82002-03-05 15:12:19 +0000506 /* Open the new terminal device */
507 if ((fd = device_open(a->terminal, O_RDWR|O_NOCTTY)) < 0) {
508 if (stat(a->terminal, &sb) != 0) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000509 message(LOG | CONSOLE, "\rdevice '%s' does not exist.\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000510 a->terminal);
511 _exit(1);
Eric Andersen53f50612001-03-14 09:01:11 +0000512 }
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000513 message(LOG | CONSOLE, "\rBummer, can't open %s\n", a->terminal);
Eric Andersen0298be82002-03-05 15:12:19 +0000514 _exit(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000515 }
Eric Andersen0298be82002-03-05 15:12:19 +0000516 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000517 set_term(0);
518
Eric Andersen0298be82002-03-05 15:12:19 +0000519 /* If the init Action requires up to wait, then force the
520 * supplied terminal to be the controlling tty. */
Eric Andersenc57e42b2002-03-29 00:59:44 +0000521 if (a->action & (SYSINIT|WAIT|CTRLALTDEL|SHUTDOWN|RESTART|ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000522
523 /* Take over the controlling tty */
524 ioctl(fd, TIOCSCTTY, 1);
525 /* Setup stdin, stdout, stderr for the new process so
526 * they point to the supplied terminal */
527 dup(fd);
528 dup(fd);
529
530 /* Now fork off another process to just hang around */
531 if ((pid = fork()) < 0) {
532 message(LOG | CONSOLE, "Can't fork!\n");
533 _exit(1);
534 }
535
536 if (pid > 0) {
537
538 /* We are the parent -- wait till the child is done */
539 signal(SIGINT, SIG_IGN);
540 signal(SIGTSTP, SIG_IGN);
541 signal(SIGQUIT, SIG_IGN);
542 signal(SIGCHLD, SIG_DFL);
543
544 /* Wait for child to exit */
545 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
546 if (tmp_pid < 0 && errno == ECHILD)
547 break;
548 }
549
550 /* See if stealing the controlling tty back is necessary */
551 pgrp = tcgetpgrp(tmp_pid);
552 if (pgrp != getpid())
553 _exit(0);
554
555 /* Use a temporary process to steal the controlling tty. */
556 if ((pid = fork()) < 0) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000557 message(LOG | CONSOLE, "\rCan't fork!\n");
Eric Andersen0298be82002-03-05 15:12:19 +0000558 _exit(1);
559 }
560 if (pid == 0) {
561 setsid();
562 ioctl(tmp_pid, TIOCSCTTY, 1);
563 _exit(0);
564 }
565 while((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
566 if (tmp_pid < 0 && errno == ECHILD)
567 break;
568 }
569 _exit(0);
570 }
571
572 /* Now fall though to actually execute things */
573 } else {
574 dup(fd);
575 dup(fd);
576 }
577
Erik Andersene132f4b2000-02-09 04:16:43 +0000578 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000579 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000580 cmd[0] = SHELL;
581 cmd[1] = "-c";
Eric Andersen79644672002-07-03 05:44:18 +0000582 snprintf(buf, sizeof(buf), "exec %s", a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000583 cmd[2] = buf;
584 cmd[3] = NULL;
585 } else {
586 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0298be82002-03-05 15:12:19 +0000587 safe_strncpy(buf, a->command, sizeof(buf));
Eric Andersen72f9a422001-10-28 05:12:20 +0000588 s = buf;
589 for (tmpCmd = buf, i = 0;
590 (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000591 if (*tmpCmd != '\0') {
592 cmd[i] = tmpCmd;
593 tmpCmd++;
594 i++;
595 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000596 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000597 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000598 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000599
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000600 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000601
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000602 /*
603 Interactive shells want to see a dash in argv[0]. This
604 typically is handled by login, argv will be setup this
605 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000606 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000607 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000608
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000609 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000610
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000611 /* skip over the dash */
612 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000613
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000614 /* find the last component in the command pathname */
615 s = get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000616
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000617 /* make a new argv[0] */
618 if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
619 message(LOG | CONSOLE, "malloc failed");
620 cmd[0] = cmdpath;
621 } else {
622 cmd[0][0] = '-';
623 strcpy(cmd[0]+1, s);
624 }
625 }
626
Eric Andersen0298be82002-03-05 15:12:19 +0000627 if (a->action & ASKFIRST) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000628 /*
629 * Save memory by not exec-ing anything large (like a shell)
630 * before the user wants it. This is critical if swap is not
631 * enabled and the system has low memory. Generally this will
632 * be run on the second virtual console, and the first will
633 * be allowed to start a shell or whatever an init script
634 * specifies.
635 */
Eric Andersen0298be82002-03-05 15:12:19 +0000636 messageND(LOG, "Waiting for enter to start '%s' (pid %d, terminal %s)\n",
637 cmdpath, getpid(), a->terminal);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000638 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
639 getc(stdin);
640 }
641
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000642 /* Log the process name and args */
Eric Andersenfedce062001-11-17 07:27:14 +0000643 messageND(LOG, "Starting pid %d, console %s: '%s'\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000644 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000645
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000646#if defined CONFIG_FEATURE_INIT_COREDUMPS
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000647 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
648 struct rlimit limit;
649 limit.rlim_cur = RLIM_INFINITY;
650 limit.rlim_max = RLIM_INFINITY;
651 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000652 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000653#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000654
Erik Andersene49d5ec2000-02-08 19:58:47 +0000655 /* Now run it. The new program will take over this PID,
656 * so nothing further in init.c should be run. */
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000657 execve(cmdpath, cmd, environment);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000658
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000659 /* We're still here? Some error happened. */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000660 message(LOG | CONSOLE, "\rBummer, could not run '%s': %s\n", cmdpath,
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000661 strerror(errno));
Eric Andersen0298be82002-03-05 15:12:19 +0000662 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000663 }
Eric Andersen0298be82002-03-05 15:12:19 +0000664 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000665 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000666}
667
Eric Andersen0298be82002-03-05 15:12:19 +0000668static int waitfor(struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000669{
Eric Andersen0298be82002-03-05 15:12:19 +0000670 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000671 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000672
Eric Andersen0298be82002-03-05 15:12:19 +0000673 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000674 while (1) {
675 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000676 if (wpid > 0 && wpid != pid) {
677 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000678 }
679 if (wpid == pid)
680 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000681 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000682 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000683}
684
Eric Andersen0298be82002-03-05 15:12:19 +0000685/* Run all commands of a particular type */
686static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000687{
Eric Andersen0298be82002-03-05 15:12:19 +0000688 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000689
Eric Andersen0298be82002-03-05 15:12:19 +0000690 for (a = init_action_list; a; a = tmp) {
691 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000692 if (a->action == action) {
Eric Andersen0298be82002-03-05 15:12:19 +0000693 if (a->action & (SYSINIT|WAIT|CTRLALTDEL|SHUTDOWN|RESTART)) {
694 waitfor(a);
695 delete_init_action(a);
696 } else if (a->action & ONCE) {
697 run(a);
698 delete_init_action(a);
699 } else if (a->action & (RESPAWN|ASKFIRST)) {
700 /* Only run stuff with pid==0. If they have
701 * a pid, that means it is still running */
702 if (a->pid == 0) {
703 a->pid = run(a);
704 }
705 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000706 }
707 }
708}
709
710
Erik Andersen7dc16072000-01-04 01:10:25 +0000711#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000712static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000713{
Eric Andersen813d88c2001-10-28 22:49:48 +0000714 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000715
Eric Andersen72f9a422001-10-28 05:12:20 +0000716 /* first disable all our signals */
717 sigemptyset(&block_signals);
718 sigaddset(&block_signals, SIGHUP);
719 sigaddset(&block_signals, SIGCHLD);
720 sigaddset(&block_signals, SIGUSR1);
721 sigaddset(&block_signals, SIGUSR2);
722 sigaddset(&block_signals, SIGINT);
723 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000724 sigaddset(&block_signals, SIGCONT);
725 sigaddset(&block_signals, SIGSTOP);
726 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000727 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000728
Erik Andersene49d5ec2000-02-08 19:58:47 +0000729 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000730 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000731
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000732 message(CONSOLE|LOG, "\n\rThe system is going down NOW !!\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000733 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000734
735 /* Send signals to every process _except_ pid 1 */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000736 message(CONSOLE|LOG, "\rSending SIGTERM to all processes.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000737 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000738 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000739 sync();
740
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000741 message(CONSOLE|LOG, "\rSending SIGKILL to all processes.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000742 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000743 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000744
Matt Kraai8fc364e2001-04-12 20:12:16 +0000745 /* run everything to be run at "shutdown" */
Eric Andersenc97ec342001-04-03 18:01:51 +0000746 run_actions(SHUTDOWN);
Erik Andersene132f4b2000-02-09 04:16:43 +0000747
Erik Andersene49d5ec2000-02-08 19:58:47 +0000748 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000749 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000750 /* bdflush, kupdate not needed for kernels >2.2.11 */
751 bdflush(1, 0);
752 sync();
753 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000754}
755
Eric Andersen730f8262001-12-17 23:13:08 +0000756static void exec_signal(int sig)
757{
Eric Andersen0298be82002-03-05 15:12:19 +0000758 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000759 sigset_t unblock_signals;
760
Eric Andersen0298be82002-03-05 15:12:19 +0000761 for (a = init_action_list; a; a = tmp) {
762 tmp = a->next;
763 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000764 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000765
766 /* unblock all signals, blocked in shutdown_system() */
767 sigemptyset(&unblock_signals);
768 sigaddset(&unblock_signals, SIGHUP);
769 sigaddset(&unblock_signals, SIGCHLD);
770 sigaddset(&unblock_signals, SIGUSR1);
771 sigaddset(&unblock_signals, SIGUSR2);
772 sigaddset(&unblock_signals, SIGINT);
773 sigaddset(&unblock_signals, SIGTERM);
774 sigaddset(&unblock_signals, SIGCONT);
775 sigaddset(&unblock_signals, SIGSTOP);
776 sigaddset(&unblock_signals, SIGTSTP);
777 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
778
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000779 message(CONSOLE|LOG, "\rTrying to re-exec %s\n", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000780 execl(a->command, a->command, NULL);
Eric Andersen730f8262001-12-17 23:13:08 +0000781
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000782 message(CONSOLE|LOG, "\rexec of '%s' failed: %s\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000783 a->command, sys_errlist[errno]);
Eric Andersen730f8262001-12-17 23:13:08 +0000784 sync();
785 sleep(2);
786 init_reboot(RB_HALT_SYSTEM);
787 loop_forever();
788 }
789 }
790}
791
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000792static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000793{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000794 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000795 message(CONSOLE|LOG,
Eric Andersenf435a912001-11-20 05:42:57 +0000796#if #cpu(s390)
797 /* Seems the s390 console is Wierd(tm). */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000798 "\rThe system is halted. You may reboot now.\n"
Eric Andersenf435a912001-11-20 05:42:57 +0000799#else
800 /* secondConsole is NULL for a serial console */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000801 "\rThe system is halted. Press %s or turn off power\n",
Eric Andersenf435a912001-11-20 05:42:57 +0000802 (secondConsole == NULL)? "Reset" : "CTRL-ALT-DEL"
803#endif
804 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000805 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000806
Erik Andersene49d5ec2000-02-08 19:58:47 +0000807 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000808 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000809
Eric Andersenbd22ed82000-07-08 18:55:24 +0000810 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000811 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000812 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000813 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000814
815 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000816}
817
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000818static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000819{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000820 shutdown_system();
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000821 message(CONSOLE|LOG, "\rPlease stand by while rebooting the system.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000822 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000823
Erik Andersene49d5ec2000-02-08 19:58:47 +0000824 /* allow time for last message to reach serial console */
825 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000826
Erik Andersen4f3f7572000-04-28 00:18:56 +0000827 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000828
829 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000830}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000831
Eric Andersenc97ec342001-04-03 18:01:51 +0000832static void ctrlaltdel_signal(int sig)
833{
834 run_actions(CTRLALTDEL);
835}
836
Eric Andersen0298be82002-03-05 15:12:19 +0000837/* The SIGSTOP & SIGTSTP handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000838static void stop_handler(int sig)
839{
Eric Andersen0298be82002-03-05 15:12:19 +0000840 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000841
842 got_cont = 0;
843 while(!got_cont) pause();
844 got_cont = 0;
845 errno = saved_errno;
846}
847
Eric Andersen0298be82002-03-05 15:12:19 +0000848/* The SIGCONT handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000849static void cont_handler(int sig)
850{
851 got_cont = 1;
852}
853
Erik Andersene49d5ec2000-02-08 19:58:47 +0000854#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000855
Eric Andersen0298be82002-03-05 15:12:19 +0000856static void new_init_action(int action, char *command, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000857{
Eric Andersen0298be82002-03-05 15:12:19 +0000858 struct init_action *new_action, *a;
Erik Andersen9e737252000-01-06 01:16:13 +0000859
Erik Andersene49d5ec2000-02-08 19:58:47 +0000860 if (*cons == '\0')
861 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000862
Eric Andersen0298be82002-03-05 15:12:19 +0000863 /* If BusyBox detects that a serial console is in use, then entries
864 * not refering to the console or null devices will _not_ be run.
Erik Andersene49d5ec2000-02-08 19:58:47 +0000865 * The exception to this rule is the null device.
866 */
867 if (secondConsole == NULL && strcmp(cons, console)
868 && strcmp(cons, "/dev/null"))
869 return;
Eric Andersen0298be82002-03-05 15:12:19 +0000870 if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000871 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000872
Eric Andersen0298be82002-03-05 15:12:19 +0000873 new_action = calloc((size_t) (1), sizeof(struct init_action));
874 if (!new_action) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000875 message(LOG | CONSOLE, "\rMemory allocation failure\n");
Matt Kraai67a46402001-06-03 05:55:52 +0000876 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000877 }
Eric Andersen0298be82002-03-05 15:12:19 +0000878
879 /* Append to the end of the list */
880 for (a = init_action_list; a && a->next; a = a->next) ;
Eric Andersen1644db92001-09-05 20:18:15 +0000881 if (a) {
Eric Andersen0298be82002-03-05 15:12:19 +0000882 a->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000883 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000884 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000885 }
Eric Andersen0298be82002-03-05 15:12:19 +0000886 safe_strncpy(new_action->command, command, 255);
887 new_action->action = action;
888 safe_strncpy(new_action->terminal, cons, 255);
889 new_action->pid = 0;
890// message(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
891// new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000892}
893
Eric Andersen0298be82002-03-05 15:12:19 +0000894static void delete_init_action(struct init_action * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000895{
Eric Andersen0298be82002-03-05 15:12:19 +0000896 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000897
Eric Andersen0298be82002-03-05 15:12:19 +0000898 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000899 if (a == action) {
900 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000901 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000903 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000904 }
905 free(a);
906 break;
907 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000908 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000909}
910
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000911/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000912 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +0000913 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000914 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
Erik Andersen812d4662000-01-07 18:30:40 +0000915 * _is_ defined, but /etc/inittab is missing, this
916 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000917 * */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000918static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000919{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000920#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000921 FILE *file;
922 char buf[256], lineAsRead[256], tmpConsole[256];
Eric Andersen0298be82002-03-05 15:12:19 +0000923 char *id, *runlev, *action, *command, *eol;
924 const struct init_action_type *a = actions;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000925 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000926
927
Erik Andersene49d5ec2000-02-08 19:58:47 +0000928 file = fopen(INITTAB, "r");
929 if (file == NULL) {
930 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000931#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000932 /* Reboot on Ctrl-Alt-Del */
Eric Andersen0298be82002-03-05 15:12:19 +0000933 new_init_action(CTRLALTDEL, "/sbin/reboot", console);
Eric Andersen1644db92001-09-05 20:18:15 +0000934 /* Umount all filesystems on halt/reboot */
Eric Andersen0298be82002-03-05 15:12:19 +0000935 new_init_action(SHUTDOWN, "/bin/umount -a -r", console);
Eric Andersen72f9a422001-10-28 05:12:20 +0000936#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen1644db92001-09-05 20:18:15 +0000937 /* Swapoff on halt/reboot */
Eric Andersen0298be82002-03-05 15:12:19 +0000938 new_init_action(SHUTDOWN, "/sbin/swapoff -a", console);
Eric Andersen1644db92001-09-05 20:18:15 +0000939#endif
Eric Andersen730f8262001-12-17 23:13:08 +0000940 /* Prepare to restart init when a HUP is received */
Eric Andersen0298be82002-03-05 15:12:19 +0000941 new_init_action(RESTART, "/sbin/init", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000942 /* Askfirst shell on tty1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000943 new_init_action(ASKFIRST, LOGIN_SHELL, console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000944 /* Askfirst shell on tty2 */
945 if (secondConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +0000946 new_init_action(ASKFIRST, LOGIN_SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000947 /* Askfirst shell on tty3 */
948 if (thirdConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +0000949 new_init_action(ASKFIRST, LOGIN_SHELL, thirdConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000950 /* Askfirst shell on tty4 */
951 if (fourthConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +0000952 new_init_action(ASKFIRST, LOGIN_SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000953 /* sysinit */
Eric Andersen0298be82002-03-05 15:12:19 +0000954 new_init_action(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000955
Erik Andersene49d5ec2000-02-08 19:58:47 +0000956 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000957#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000958 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000959
Erik Andersene49d5ec2000-02-08 19:58:47 +0000960 while (fgets(buf, 255, file) != NULL) {
961 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000962 /* Skip leading spaces */
963 for (id = buf; *id == ' ' || *id == '\t'; id++);
964
965 /* Skip the line if it's a comment */
966 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000967 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000968
Erik Andersene49d5ec2000-02-08 19:58:47 +0000969 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000970 eol = strrchr(id, '\n');
971 if (eol != NULL)
972 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000973
Erik Andersene49d5ec2000-02-08 19:58:47 +0000974 /* Keep a copy around for posterity's sake (and error msgs) */
975 strcpy(lineAsRead, buf);
976
Eric Andersenb5966362000-05-31 20:04:38 +0000977 /* Separate the ID field from the runlevels */
978 runlev = strchr(id, ':');
979 if (runlev == NULL || *(runlev + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000980 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000981 continue;
982 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000983 *runlev = '\0';
984 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000985 }
986
Eric Andersenb5966362000-05-31 20:04:38 +0000987 /* Separate the runlevels from the action */
988 action = strchr(runlev, ':');
989 if (action == NULL || *(action + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000990 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000991 continue;
992 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000993 *action = '\0';
994 ++action;
995 }
996
Eric Andersen0298be82002-03-05 15:12:19 +0000997 /* Separate the action from the command */
998 command = strchr(action, ':');
999 if (command == NULL || *(command + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001000 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +00001001 continue;
1002 } else {
Eric Andersen0298be82002-03-05 15:12:19 +00001003 *command = '\0';
1004 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001005 }
1006
1007 /* Ok, now process it */
1008 a = actions;
1009 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +00001010 if (strcmp(a->name, action) == 0) {
1011 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001012 strcpy(tmpConsole, "/dev/");
Eric Andersenb5966362000-05-31 20:04:38 +00001013 strncat(tmpConsole, id, 200);
Eric Andersenb5966362000-05-31 20:04:38 +00001014 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001015 }
Eric Andersen0298be82002-03-05 15:12:19 +00001016 new_init_action(a->action, command, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001017 foundIt = TRUE;
1018 }
1019 a++;
1020 }
Eric Andersen0298be82002-03-05 15:12:19 +00001021 if (foundIt == TRUE)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001022 continue;
1023 else {
1024 /* Choke on an unknown action */
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001025 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001026 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001027 }
Eric Andersend8636ca2002-05-15 22:19:09 +00001028 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001029 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001030#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +00001031}
1032
Erik Andersene132f4b2000-02-09 04:16:43 +00001033
1034
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001035extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001036{
Eric Andersen0298be82002-03-05 15:12:19 +00001037 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001038 pid_t wpid;
1039 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001040
Eric Andersen730f8262001-12-17 23:13:08 +00001041 if (argc > 1 && !strcmp(argv[1], "-q")) {
Eric Andersen467a18b2002-01-25 23:13:06 +00001042 /* don't assume init's pid == 1 */
1043 long *pid = find_pid_by_name("init");
1044 if (!pid || *pid<=0) {
1045 pid = find_pid_by_name("linuxrc");
1046 if (!pid || *pid<=0)
1047 error_msg_and_die("no process killed");
1048 }
1049 kill(*pid, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001050 exit(0);
1051 }
1052
Eric Andersend73dc5b1999-11-10 23:13:02 +00001053#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001054 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1055 if (getpid() != 1
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001056#ifdef CONFIG_FEATURE_INITRD
Matt Kraaie58771e2000-07-12 15:38:49 +00001057 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +00001058#endif
1059 )
1060 {
Eric Andersen67991cf2001-02-14 21:23:06 +00001061 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001062 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001063 /* Set up sig handlers -- be sure to
1064 * clear all of these in run() */
Eric Andersen0298be82002-03-05 15:12:19 +00001065 signal(SIGHUP, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001066 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001067 signal(SIGUSR2, halt_signal);
Eric Andersen0298be82002-03-05 15:12:19 +00001068 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001069 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001070 signal(SIGCONT, cont_handler);
1071 signal(SIGSTOP, stop_handler);
1072 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001073
Erik Andersene49d5ec2000-02-08 19:58:47 +00001074 /* Turn off rebooting via CTL-ALT-DEL -- we get a
1075 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001076 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001077#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001078
Erik Andersen298854f2000-03-23 01:09:18 +00001079 /* Figure out what kernel this is running */
1080 kernelVersion = get_kernel_revision();
1081
Erik Andersene49d5ec2000-02-08 19:58:47 +00001082 /* Close whatever files are open, and reset the console. */
1083 close(0);
1084 close(1);
1085 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001086
1087 /* Figure out where the default console should be */
1088 console_init();
1089
Erik Andersene49d5ec2000-02-08 19:58:47 +00001090 set_term(0);
Erik Andersen983b51b2000-04-04 18:14:25 +00001091 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001092 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +00001093
Erik Andersene49d5ec2000-02-08 19:58:47 +00001094 /* Make sure PATH is set to something sane */
Eric Andersen452fd332001-03-04 06:47:33 +00001095 putenv("PATH="_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001096
Erik Andersene49d5ec2000-02-08 19:58:47 +00001097 /* Hello world */
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001098 message(MAYBE_CONSOLE|LOG, "\rinit started: %s\n", full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001099
Erik Andersene49d5ec2000-02-08 19:58:47 +00001100 /* Make sure there is enough memory to do something useful. */
1101 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +00001102
Erik Andersene49d5ec2000-02-08 19:58:47 +00001103 /* Check if we are supposed to be in single user mode */
1104 if (argc > 1 && (!strcmp(argv[1], "single") ||
1105 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001106 /* Ask first then start a shell on tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001107 if (secondConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +00001108 new_init_action(ASKFIRST, LOGIN_SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001109 if (thirdConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +00001110 new_init_action(ASKFIRST, LOGIN_SHELL, thirdConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001111 if (fourthConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +00001112 new_init_action(ASKFIRST, LOGIN_SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001113 /* Start a shell on tty1 */
Eric Andersen0298be82002-03-05 15:12:19 +00001114 new_init_action(RESPAWN, LOGIN_SHELL, console);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001115 } else {
1116 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001117
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001118 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001119 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +00001120 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001121 * of "askfirst" shells */
1122 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001123 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001124
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001125 /* Make the command line just say "init" -- thats all, nothing else */
1126 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001127
Erik Andersene49d5ec2000-02-08 19:58:47 +00001128 /* Now run everything that needs to be run */
1129
1130 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001131 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001132
Erik Andersene49d5ec2000-02-08 19:58:47 +00001133 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001134 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001135
Erik Andersene49d5ec2000-02-08 19:58:47 +00001136 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001137 run_actions(ONCE);
1138
Erik Andersene49d5ec2000-02-08 19:58:47 +00001139 /* If there is nothing else to do, stop */
Eric Andersen0298be82002-03-05 15:12:19 +00001140 if (init_action_list == NULL) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001141 message(LOG | CONSOLE, "\rNo more tasks for init -- sleeping forever.\n");
Matt Kraai67a46402001-06-03 05:55:52 +00001142 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001143 }
1144
1145 /* Now run the looping stuff for the rest of forever */
1146 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001147 /* run the respawn stuff */
1148 run_actions(RESPAWN);
1149
1150 /* run the askfirst stuff */
1151 run_actions(ASKFIRST);
1152
1153 /* Don't consume all CPU time -- sleep a bit */
1154 sleep(1);
1155
Erik Andersene49d5ec2000-02-08 19:58:47 +00001156 /* Wait for a child process to exit */
1157 wpid = wait(&status);
1158 if (wpid > 0) {
1159 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001160 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001161 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001162 /* Set the pid to 0 so that the process gets
1163 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001164 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001165 message(LOG, "Process '%s' (pid %d) exited. "
1166 "Scheduling it for restart.\n", a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001167 }
1168 }
1169 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001170 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001171}
Erik Andersen029011b2000-03-04 21:19:32 +00001172
1173/*
1174Local Variables:
1175c-file-style: "linux"
1176c-basic-offset: 4
1177tab-width: 4
1178End:
1179*/