blob: e6581880c18ecd381056b029027dd86bb97d0478 [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 Andersenc7bda1c2004-03-15 08:29:22 +00006 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenc4996011999-10-20 22:08:37 +00007 * Adjusted by so many folks, it's impossible to keep track.
8 *
Rob Landley2edf5262006-01-22 02:41:51 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenc4996011999-10-20 22:08:37 +000010 */
11
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Eric Andersenb186d981999-12-03 09:19:54 +000013#include <paths.h>
Eric Andersen85e5e722003-07-22 08:56:55 +000014#include <sys/reboot.h>
Eric Andersenb01ed652003-06-27 17:08:15 +000015
Denis Vlasenkoccd412d2007-03-05 19:55:30 +000016#if ENABLE_FEATURE_INIT_SYSLOG
Erik Andersen4f3f7572000-04-28 00:18:56 +000017# include <sys/syslog.h>
18#endif
Eric Andersen2c1de612003-04-24 11:41:28 +000019
Eric Andersen0826b6b2002-07-03 23:50:16 +000020#define INIT_BUFFS_SIZE 256
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000021#define CONSOLE_NAME_SIZE 32
22#define MAXENV 16 /* Number of env. vars */
Eric Andersenbd22ed82000-07-08 18:55:24 +000023
Denis Vlasenko9b1381f2007-01-03 02:56:00 +000024#if ENABLE_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000025/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +000026 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
Erik Andersen183da4a2000-04-04 18:36:37 +000027 * before processes are spawned to set core file size as unlimited.
28 * This is for debugging only. Don't use this is production, unless
29 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000030 */
31#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
32#include <sys/resource.h>
Erik Andersen183da4a2000-04-04 18:36:37 +000033#endif
Erik Andersen983b51b2000-04-04 18:14:25 +000034
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000035#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +000036#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000037#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +000038#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +000039
Erik Andersen7dc16072000-01-04 01:10:25 +000040/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +000041#define SYSINIT 0x001
42#define RESPAWN 0x002
43#define ASKFIRST 0x004
44#define WAIT 0x008
45#define ONCE 0x010
46#define CTRLALTDEL 0x020
47#define SHUTDOWN 0x040
48#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +000049
Denis Vlasenko2afabe82007-12-10 07:06:04 +000050#define STR_SYSINIT "\x01"
51#define STR_RESPAWN "\x02"
52#define STR_ASKFIRST "\x04"
53#define STR_WAIT "\x08"
54#define STR_ONCE "\x10"
55#define STR_CTRLALTDEL "\x20"
56#define STR_SHUTDOWN "\x40"
57#define STR_RESTART "\x80"
Erik Andersen7dc16072000-01-04 01:10:25 +000058
Eric Andersen0298be82002-03-05 15:12:19 +000059/* Set up a linked list of init_actions, to be read from inittab */
60struct init_action {
Eric Andersen0298be82002-03-05 15:12:19 +000061 struct init_action *next;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000062 pid_t pid;
Denis Vlasenko2afabe82007-12-10 07:06:04 +000063 uint8_t action;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000064 char terminal[CONSOLE_NAME_SIZE];
Denis Vlasenko2afabe82007-12-10 07:06:04 +000065 char command[INIT_BUFFS_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +000066};
Erik Andersen7dc16072000-01-04 01:10:25 +000067
Eric Andersen0298be82002-03-05 15:12:19 +000068/* Static variables */
69static struct init_action *init_action_list = NULL;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000070
Denis Vlasenkoccd412d2007-03-05 19:55:30 +000071#if !ENABLE_FEATURE_INIT_SYSLOG
Denis Vlasenko4c978632007-02-03 03:31:13 +000072static const char *log_console = VC_5;
Eric Andersene7078062002-07-29 08:00:16 +000073#endif
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +000074#if !ENABLE_DEBUG_INIT
Eric Andersen0298be82002-03-05 15:12:19 +000075static sig_atomic_t got_cont = 0;
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +000076#endif
Rob Landleybc68cd12006-03-10 19:22:06 +000077
78enum {
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000079 L_LOG = 0x1,
80 L_CONSOLE = 0x2,
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000081
Denis Vlasenko9b1381f2007-01-03 02:56:00 +000082#if ENABLE_FEATURE_EXTRA_QUIET
Rob Landleybc68cd12006-03-10 19:22:06 +000083 MAYBE_CONSOLE = 0x0,
Eric Andersen0298be82002-03-05 15:12:19 +000084#else
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000085 MAYBE_CONSOLE = L_CONSOLE,
Eric Andersen0298be82002-03-05 15:12:19 +000086#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000087
Rob Landleybc68cd12006-03-10 19:22:06 +000088#ifndef RB_HALT_SYSTEM
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +000089 RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */
Rob Landleybc68cd12006-03-10 19:22:06 +000090 RB_ENABLE_CAD = 0x89abcdef,
91 RB_DISABLE_CAD = 0,
92 RB_POWER_OFF = 0x4321fedc,
93 RB_AUTOBOOT = 0x01234567,
Eric Andersen0298be82002-03-05 15:12:19 +000094#endif
Rob Landleybc68cd12006-03-10 19:22:06 +000095};
Erik Andersen42094cd2000-03-20 21:34:52 +000096
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000097static const char *const environment[] = {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +000098 "HOME=/",
Denis Vlasenkof5f75c52007-06-12 22:35:19 +000099 bb_PATH_root_path,
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000100 "SHELL=/bin/sh",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000101 "USER=root",
102 NULL
103};
104
Eric Andersen0298be82002-03-05 15:12:19 +0000105/* Function prototypes */
106static void delete_init_action(struct init_action *a);
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000107static int waitfor(pid_t pid);
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000108#if !ENABLE_DEBUG_INIT
Paul Foxd112f8f2006-06-01 13:17:49 +0000109static void shutdown_signal(int sig);
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000110#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000111
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000112#if !ENABLE_DEBUG_INIT
Eric Andersen74400cc2001-10-18 04:11:39 +0000113static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000114{
115 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000116 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000117}
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000118#endif
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000119
Erik Andersen42094cd2000-03-20 21:34:52 +0000120/* Print a message to the specified device.
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000121 * Device may be bitwise-or'd from L_LOG | L_CONSOLE */
Bernhard Reutner-Fischer35e1a072006-05-29 13:08:35 +0000122#if ENABLE_DEBUG_INIT
123#define messageD message
124#else
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000125#define messageD(...) do {} while (0)
Eric Andersenfedce062001-11-17 07:27:14 +0000126#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000127static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000128 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000129static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000130{
Denis Vlasenkoccd412d2007-03-05 19:55:30 +0000131#if !ENABLE_FEATURE_INIT_SYSLOG
Eric Andersen22237012003-01-23 07:08:26 +0000132 static int log_fd = -1;
133#endif
Eric Andersen4c781471999-11-26 08:12:56 +0000134
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000135 va_list arguments;
136 int l;
137 char msg[128];
138
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000139 msg[0] = '\r';
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000140 va_start(arguments, fmt);
141 vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments);
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000142 va_end(arguments);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000143 msg[sizeof(msg) - 2] = '\0';
144 l = strlen(msg);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000145
Denis Vlasenkoccd412d2007-03-05 19:55:30 +0000146#if ENABLE_FEATURE_INIT_SYSLOG
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000147 /* Log the message to syslogd */
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000148 if (device & L_LOG) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000149 /* don't out "\r" */
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000150 openlog(applet_name, 0, LOG_DAEMON);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000151 syslog(LOG_INFO, "init: %s", msg + 1);
Eric Andersen36adca82004-06-22 10:07:17 +0000152 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000153 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000154 msg[l++] = '\n';
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000155 msg[l] = '\0';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000157 msg[l++] = '\n';
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000158 msg[l] = '\0';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 /* Take full control of the log tty, and never close it.
160 * It's mine, all mine! Muhahahaha! */
161 if (log_fd < 0) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000162 if (!log_console) {
163 log_fd = 2;
Eric Andersen6a979902002-09-30 20:08:53 +0000164 } else {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000165 log_fd = device_open(log_console, O_WRONLY | O_NONBLOCK | O_NOCTTY);
166 if (log_fd < 0) {
167 bb_error_msg("can't log to %s", log_console);
168 device = L_CONSOLE;
169 } else {
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000170 close_on_exec_on(log_fd);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000171 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172 }
173 }
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000174 if (device & L_LOG) {
Rob Landley53437472006-07-16 08:14:35 +0000175 full_write(log_fd, msg, l);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000176 if (log_fd == 2)
177 return; /* don't print dup messages */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000178 }
Eric Andersen4c781471999-11-26 08:12:56 +0000179#endif
180
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000181 if (device & L_CONSOLE) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000182 /* Send console messages to console so people will see them. */
183 full_write(2, msg, l);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000184 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000185}
186
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000187/* From <linux/serial.h> */
188struct serial_struct {
189 int type;
190 int line;
191 unsigned int port;
192 int irq;
193 int flags;
194 int xmit_fifo_size;
195 int custom_divisor;
196 int baud_base;
197 unsigned short close_delay;
198 char io_type;
199 char reserved_char[1];
200 int hub6;
201 unsigned short closing_wait; /* time to wait before closing */
202 unsigned short closing_wait2; /* no longer used... */
203 unsigned char *iomem_base;
204 unsigned short iomem_reg_shift;
205 unsigned int port_high;
206 unsigned long iomap_base; /* cookie passed into ioremap */
207 int reserved[1];
208 /* Paranoia (imagine 64bit kernel overwriting 32bit userspace stack) */
209 uint32_t bbox_reserved[16];
210};
Eric Andersen74400cc2001-10-18 04:11:39 +0000211static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000212{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213 struct serial_struct sr;
214 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000215
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000216 s = getenv("CONSOLE");
217 if (!s) s = getenv("console");
218 if (s) {
219 int fd = open(s, O_RDWR | O_NONBLOCK | O_NOCTTY);
220 if (fd >= 0) {
221 dup2(fd, 0);
222 dup2(fd, 1);
223 dup2(fd, 2);
224 while (fd > 2) close(fd--);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000225 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000226 messageD(L_LOG, "console='%s'", s);
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000227 } else {
228 /* Make sure fd 0,1,2 are not closed */
229 bb_sanitize_stdio();
Eric Andersen07e52971999-11-07 07:38:08 +0000230 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000231
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000232 s = getenv("TERM");
233 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000234 /* Force the TERM setting to vt102 for serial console
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000235 * if TERM is set to linux (the default) */
236 if (!s || strcmp(s, "linux") == 0)
237 putenv((char*)"TERM=vt102");
Denis Vlasenkoccd412d2007-03-05 19:55:30 +0000238#if !ENABLE_FEATURE_INIT_SYSLOG
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000239 log_console = NULL;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000240#endif
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000241 } else if (!s)
242 putenv((char*)"TERM=linux");
Eric Andersen0460ff21999-10-25 23:32:44 +0000243}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000244
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000245/* Set terminal settings to reasonable defaults */
246static void set_sane_term(void)
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000247{
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000248 struct termios tty;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000249
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000250 tcgetattr(STDIN_FILENO, &tty);
251
252 /* set control chars */
253 tty.c_cc[VINTR] = 3; /* C-c */
254 tty.c_cc[VQUIT] = 28; /* C-\ */
255 tty.c_cc[VERASE] = 127; /* C-? */
256 tty.c_cc[VKILL] = 21; /* C-u */
257 tty.c_cc[VEOF] = 4; /* C-d */
258 tty.c_cc[VSTART] = 17; /* C-q */
259 tty.c_cc[VSTOP] = 19; /* C-s */
260 tty.c_cc[VSUSP] = 26; /* C-z */
261
262 /* use line dicipline 0 */
263 tty.c_line = 0;
264
265 /* Make it be sane */
266 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
267 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
268
269 /* input modes */
270 tty.c_iflag = ICRNL | IXON | IXOFF;
271
272 /* output modes */
273 tty.c_oflag = OPOST | ONLCR;
274
275 /* local modes */
276 tty.c_lflag =
277 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
278
279 tcsetattr(STDIN_FILENO, TCSANOW, &tty);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000280}
281
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000282/* Open the new terminal device */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000283static void open_stdio_to_tty(const char* tty_name, int fail)
284{
285 /* empty tty_name means "use init's tty", else... */
286 if (tty_name[0]) {
Denis Vlasenkod238a472007-03-05 19:22:04 +0000287 int fd = device_open(tty_name, O_RDWR);
288 if (fd < 0) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000289 message(L_LOG | L_CONSOLE, "Can't open %s: %s",
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000290 tty_name, strerror(errno));
291 if (fail)
292 _exit(1);
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000293#if !ENABLE_DEBUG_INIT
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000294 shutdown_signal(SIGUSR1);
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000295#else
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000296 _exit(2);
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000297#endif
Denis Vlasenkod238a472007-03-05 19:22:04 +0000298 } else {
299 dup2(fd, 0);
300 dup2(fd, 1);
301 dup2(fd, 2);
302 if (fd > 2) close(fd);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000303 }
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000304 }
Denis Vlasenkod238a472007-03-05 19:22:04 +0000305 set_sane_term();
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000306}
307
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000308/* Used only by run_actions */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000309static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000310{
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000311 int i;
Mike Frysinger10427ab2005-07-06 05:00:48 +0000312 pid_t pid;
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000313 char *s, *tmpCmd, *cmdpath;
314 char *cmd[INIT_BUFFS_SIZE];
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000315 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000316 sigset_t nmask, omask;
Erik Andersenac6e71f2000-01-08 22:04:33 +0000317
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000318 /* Block sigchild while forking (why?) */
Eric Andersen0298be82002-03-05 15:12:19 +0000319 sigemptyset(&nmask);
320 sigaddset(&nmask, SIGCHLD);
321 sigprocmask(SIG_BLOCK, &nmask, &omask);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000322 pid = fork();
323 sigprocmask(SIG_SETMASK, &omask, NULL);
Eric Andersen0298be82002-03-05 15:12:19 +0000324
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000325 if (pid < 0)
326 message(L_LOG | L_CONSOLE, "Can't fork");
Denis Vlasenko966bb432007-02-27 19:20:33 +0000327 if (pid)
328 return pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000329
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000330 /* Child */
331
Denis Vlasenko966bb432007-02-27 19:20:33 +0000332 /* Reset signal handlers that were set by the parent process */
333 signal(SIGUSR1, SIG_DFL);
334 signal(SIGUSR2, SIG_DFL);
335 signal(SIGINT, SIG_DFL);
336 signal(SIGTERM, SIG_DFL);
337 signal(SIGHUP, SIG_DFL);
338 signal(SIGQUIT, SIG_DFL);
339 signal(SIGCONT, SIG_DFL);
340 signal(SIGSTOP, SIG_DFL);
341 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000342
Denis Vlasenko966bb432007-02-27 19:20:33 +0000343 /* Create a new session and make ourself the process
344 * group leader */
345 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000346
Denis Vlasenko966bb432007-02-27 19:20:33 +0000347 /* Open the new terminal device */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000348 open_stdio_to_tty(a->terminal, 1 /* - exit if open fails*/);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000349
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000350#ifdef BUT_RUN_ACTIONS_ALREADY_DOES_WAITING
Denis Vlasenko966bb432007-02-27 19:20:33 +0000351 /* If the init Action requires us to wait, then force the
352 * supplied terminal to be the controlling tty. */
353 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000354
Denis Vlasenko966bb432007-02-27 19:20:33 +0000355 /* Now fork off another process to just hang around */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000356 pid = fork();
Denis Vlasenkof6ccc622007-11-10 01:57:35 +0000357 if (pid < 0) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000358 message(L_LOG | L_CONSOLE, "Can't fork");
359 _exit(1);
360 }
361
362 if (pid > 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000363 /* Parent - wait till the child is done */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000364 signal(SIGINT, SIG_IGN);
365 signal(SIGTSTP, SIG_IGN);
366 signal(SIGQUIT, SIG_IGN);
367 signal(SIGCHLD, SIG_DFL);
368
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000369 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000370 /* See if stealing the controlling tty back is necessary */
371 if (tcgetpgrp(0) != getpid())
372 _exit(0);
373
374 /* Use a temporary process to steal the controlling tty. */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000375 pid = fork();
376 if (pid < 0) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000377 message(L_LOG | L_CONSOLE, "Can't fork");
Eric Andersen0298be82002-03-05 15:12:19 +0000378 _exit(1);
379 }
Denis Vlasenko966bb432007-02-27 19:20:33 +0000380 if (pid == 0) {
381 setsid();
382 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000383 _exit(0);
384 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000385 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000386 _exit(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000387 }
388
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000389 /* Child - fall though to actually execute things */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000390 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000391#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000392
393 /* See if any special /bin/sh requiring characters are present */
394 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
395 cmd[0] = (char*)DEFAULT_SHELL;
396 cmd[1] = (char*)"-c";
397 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
398 cmd[3] = NULL;
399 } else {
400 /* Convert command (char*) into cmd (char**, one word per string) */
401 strcpy(buf, a->command);
402 s = buf;
403 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
404 if (*tmpCmd != '\0') {
405 cmd[i] = tmpCmd;
406 i++;
407 }
408 }
409 cmd[i] = NULL;
410 }
411
412 cmdpath = cmd[0];
413
414 /*
415 * Interactive shells want to see a dash in argv[0]. This
416 * typically is handled by login, argv will be setup this
417 * way if a dash appears at the front of the command path
418 * (like "-/bin/sh").
419 */
420 if (*cmdpath == '-') {
421 /* skip over the dash */
422 ++cmdpath;
423
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000424#ifdef WHY_WE_DO_THIS_SHELL_MUST_HANDLE_THIS_ITSELF
Denis Vlasenko966bb432007-02-27 19:20:33 +0000425 /* find the last component in the command pathname */
Denis Vlasenko818322b2007-09-24 18:27:04 +0000426 s = bb_get_last_path_component_nostrip(cmdpath);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000427 /* make a new argv[0] */
Denis Vlasenko818322b2007-09-24 18:27:04 +0000428 cmd[0] = malloc(strlen(s) + 2);
429 if (cmd[0] == NULL) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000430 message(L_LOG | L_CONSOLE, bb_msg_memory_exhausted);
431 cmd[0] = cmdpath;
Erik Andersene132f4b2000-02-09 04:16:43 +0000432 } else {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000433 cmd[0][0] = '-';
434 strcpy(cmd[0] + 1, s);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000435 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000436#endif
437
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000438#if ENABLE_FEATURE_INIT_SCTTY
Denis Vlasenko966bb432007-02-27 19:20:33 +0000439 /* Establish this process as session leader and
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000440 * _attempt_ to make stdin a controlling tty.
Denis Vlasenko966bb432007-02-27 19:20:33 +0000441 */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000442 ioctl(0, TIOCSCTTY, 0 /*only try, don't steal*/);
Paul Fox41a72ec2005-08-01 16:43:13 +0000443#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000444 }
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000445
Denis Vlasenko966bb432007-02-27 19:20:33 +0000446 if (a->action & ASKFIRST) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000447 static const char press_enter[] ALIGN1 =
Denis Vlasenko966bb432007-02-27 19:20:33 +0000448#ifdef CUSTOMIZED_BANNER
449#include CUSTOMIZED_BANNER
Eric Andersen1f50e842004-08-16 09:29:42 +0000450#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000451 "\nPlease press Enter to activate this console. ";
452 char c;
453 /*
454 * Save memory by not exec-ing anything large (like a shell)
455 * before the user wants it. This is critical if swap is not
456 * enabled and the system has low memory. Generally this will
457 * be run on the second virtual console, and the first will
458 * be allowed to start a shell or whatever an init script
459 * specifies.
460 */
461 messageD(L_LOG, "waiting for enter to start '%s'"
462 "(pid %d, tty '%s')\n",
463 cmdpath, getpid(), a->terminal);
464 full_write(1, press_enter, sizeof(press_enter) - 1);
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000465 while (safe_read(0, &c, 1) == 1 && c != '\n')
466 continue;
Denis Vlasenko966bb432007-02-27 19:20:33 +0000467 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000468
Denis Vlasenko966bb432007-02-27 19:20:33 +0000469 /* Log the process name and args */
470 message(L_LOG, "starting pid %d, tty '%s': '%s'",
471 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000472
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000473#if ENABLE_FEATURE_INIT_COREDUMPS
Denis Vlasenko966bb432007-02-27 19:20:33 +0000474 {
475 struct stat sb;
476 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
477 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000478
Denis Vlasenko966bb432007-02-27 19:20:33 +0000479 limit.rlim_cur = RLIM_INFINITY;
480 limit.rlim_max = RLIM_INFINITY;
481 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000482 }
Erik Andersen05df2392000-01-13 04:43:48 +0000483 }
Denis Vlasenko966bb432007-02-27 19:20:33 +0000484#endif
485 /* Now run it. The new program will take over this PID,
486 * so nothing further in init.c should be run. */
487 BB_EXECVP(cmdpath, cmd);
488
489 /* We're still here? Some error happened. */
490 message(L_LOG | L_CONSOLE, "Cannot run '%s': %s",
491 cmdpath, strerror(errno));
492 _exit(-1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000493}
494
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000495static int waitfor(pid_t runpid)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000496{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000497 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000498
Erik Andersene49d5ec2000-02-08 19:58:47 +0000499 while (1) {
Bernhard Reutner-Fischerd818dcc2007-02-16 17:17:07 +0000500 wpid = waitpid(runpid, &status, 0);
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000501 if (wpid == -1 && errno == EINTR)
502 continue;
503 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000504 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000505 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000506}
507
Eric Andersen0298be82002-03-05 15:12:19 +0000508/* Run all commands of a particular type */
509static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000510{
Eric Andersen0298be82002-03-05 15:12:19 +0000511 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000512
Eric Andersen0298be82002-03-05 15:12:19 +0000513 for (a = init_action_list; a; a = tmp) {
514 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000515 if (a->action == action) {
Denis Vlasenkod7e2e122007-12-10 08:40:29 +0000516 // Pointless: run() will error out if open of device fails.
517 ///* a->terminal of "" means "init's console" */
518 //if (a->terminal[0] && access(a->terminal, R_OK | W_OK)) {
519 // //message(L_LOG | L_CONSOLE, "Device %s cannot be opened in RW mode", a->terminal /*, strerror(errno)*/);
520 // delete_init_action(a);
521 //} else
522 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000523 waitfor(run(a));
Eric Andersen0298be82002-03-05 15:12:19 +0000524 delete_init_action(a);
525 } else if (a->action & ONCE) {
526 run(a);
527 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000528 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000529 /* Only run stuff with pid==0. If they have
530 * a pid, that means it is still running */
531 if (a->pid == 0) {
532 a->pid = run(a);
533 }
534 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000535 }
536 }
537}
538
Bernhard Reutner-Fischer35e1a072006-05-29 13:08:35 +0000539#if !ENABLE_DEBUG_INIT
Eric Andersen2c1de612003-04-24 11:41:28 +0000540static void init_reboot(unsigned long magic)
541{
542 pid_t pid;
543 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000544 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000545 * the init process is killed.... */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000546 pid = vfork();
547 if (pid == 0) { /* child */
Eric Andersen2c1de612003-04-24 11:41:28 +0000548 reboot(magic);
Eric Andersen2c1de612003-04-24 11:41:28 +0000549 _exit(0);
550 }
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000551 waitpid(pid, NULL, 0);
Eric Andersen2c1de612003-04-24 11:41:28 +0000552}
553
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000554static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000555{
Eric Andersen813d88c2001-10-28 22:49:48 +0000556 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000557
Eric Andersena9cc8962002-09-16 06:49:06 +0000558 /* run everything to be run at "shutdown". This is done _prior_
559 * to killing everything, in case people wish to use scripts to
560 * shut things down gracefully... */
561 run_actions(SHUTDOWN);
562
Eric Andersen72f9a422001-10-28 05:12:20 +0000563 /* first disable all our signals */
564 sigemptyset(&block_signals);
565 sigaddset(&block_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000566 sigaddset(&block_signals, SIGQUIT);
Eric Andersen72f9a422001-10-28 05:12:20 +0000567 sigaddset(&block_signals, SIGCHLD);
568 sigaddset(&block_signals, SIGUSR1);
569 sigaddset(&block_signals, SIGUSR2);
570 sigaddset(&block_signals, SIGINT);
571 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000572 sigaddset(&block_signals, SIGCONT);
573 sigaddset(&block_signals, SIGSTOP);
574 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000575 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000576
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000577 message(L_CONSOLE | L_LOG, "The system is going down NOW!");
578
Erik Andersene49d5ec2000-02-08 19:58:47 +0000579 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000580 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000581
Erik Andersene49d5ec2000-02-08 19:58:47 +0000582 /* Send signals to every process _except_ pid 1 */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000583 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "TERM");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000584 kill(-1, SIGTERM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000585 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000586 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000587
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000588 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "KILL");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000589 kill(-1, SIGKILL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000590 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000591 sleep(1);
Eric Andersencc8ed391999-10-05 16:24:54 +0000592}
593
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000594static void shutdown_signal(int sig)
595{
596 const char *m;
597 int rb;
598
599 shutdown_system();
600
601 m = "halt";
602 rb = RB_HALT_SYSTEM;
603 if (sig == SIGTERM) {
604 m = "reboot";
605 rb = RB_AUTOBOOT;
606 } else if (sig == SIGUSR2) {
607 m = "poweroff";
608 rb = RB_POWER_OFF;
609 }
610 message(L_CONSOLE | L_LOG, "Requesting system %s", m);
611 /* allow time for last message to reach serial console */
612 sleep(2);
613 init_reboot(rb);
614 loop_forever();
615}
616
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000617static void exec_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen730f8262001-12-17 23:13:08 +0000618{
Eric Andersen0298be82002-03-05 15:12:19 +0000619 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000620 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000621
Eric Andersen0298be82002-03-05 15:12:19 +0000622 for (a = init_action_list; a; a = tmp) {
623 tmp = a->next;
624 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000625 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000626
627 /* unblock all signals, blocked in shutdown_system() */
628 sigemptyset(&unblock_signals);
629 sigaddset(&unblock_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000630 sigaddset(&unblock_signals, SIGQUIT);
Eric Andersen5222d312002-07-03 05:15:23 +0000631 sigaddset(&unblock_signals, SIGCHLD);
632 sigaddset(&unblock_signals, SIGUSR1);
633 sigaddset(&unblock_signals, SIGUSR2);
634 sigaddset(&unblock_signals, SIGINT);
635 sigaddset(&unblock_signals, SIGTERM);
636 sigaddset(&unblock_signals, SIGCONT);
637 sigaddset(&unblock_signals, SIGSTOP);
638 sigaddset(&unblock_signals, SIGTSTP);
639 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
640
Eric Andersen3c8064f2003-07-05 08:29:01 +0000641 /* Open the new terminal device */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000642 open_stdio_to_tty(a->terminal, 0 /* - shutdown_signal(SIGUSR1) [halt] if open fails */);
Eric Andersen3c8064f2003-07-05 08:29:01 +0000643
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000644 messageD(L_CONSOLE | L_LOG, "Trying to re-exec %s", a->command);
Denis Vlasenko4921b542007-02-03 02:17:41 +0000645 BB_EXECLP(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000646
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000647 message(L_CONSOLE | L_LOG, "Cannot run '%s': %s",
648 a->command, strerror(errno));
Eric Andersen730f8262001-12-17 23:13:08 +0000649 sleep(2);
650 init_reboot(RB_HALT_SYSTEM);
651 loop_forever();
652 }
653 }
654}
655
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000656static void ctrlaltdel_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersenc97ec342001-04-03 18:01:51 +0000657{
658 run_actions(CTRLALTDEL);
659}
660
Eric Andersen0298be82002-03-05 15:12:19 +0000661/* The SIGSTOP & SIGTSTP handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000662static void stop_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000663{
Eric Andersen0298be82002-03-05 15:12:19 +0000664 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000665
666 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000667 while (!got_cont)
668 pause();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000669
Eric Andersened8a9be2001-11-30 19:10:58 +0000670 errno = saved_errno;
671}
672
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000673/* The SIGCONT handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000674static void cont_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000675{
676 got_cont = 1;
677}
678
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +0000679#endif /* !ENABLE_DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000680
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000681static void new_init_action(uint8_t action, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000682{
Eric Andersen22718092004-10-08 08:17:39 +0000683 struct init_action *new_action, *a, *last;
Erik Andersen9e737252000-01-06 01:16:13 +0000684
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000685 if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000686 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000687
Eric Andersen0298be82002-03-05 15:12:19 +0000688 /* Append to the end of the list */
Eric Andersen22718092004-10-08 08:17:39 +0000689 for (a = last = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000690 /* don't enter action if it's already in the list,
691 * but do overwrite existing actions */
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000692 if ((strcmp(a->command, command) == 0)
693 && (strcmp(a->terminal, cons) == 0)
694 ) {
Eric Andersen82baf632004-10-08 08:21:54 +0000695 a->action = action;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000696 return;
697 }
Eric Andersen22718092004-10-08 08:17:39 +0000698 last = a;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000699 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000700
701 new_action = xzalloc(sizeof(struct init_action));
Eric Andersen22718092004-10-08 08:17:39 +0000702 if (last) {
703 last->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000704 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000705 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000706 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000707 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000708 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000709 strcpy(new_action->terminal, cons);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000710 messageD(L_LOG | L_CONSOLE, "command='%s' action=%d tty='%s'\n",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000711 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000712}
713
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000714static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000715{
Eric Andersen0298be82002-03-05 15:12:19 +0000716 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000717
Eric Andersen0298be82002-03-05 15:12:19 +0000718 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000719 if (a == action) {
720 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000721 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000722 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000723 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000724 }
725 free(a);
726 break;
727 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000728 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000729}
730
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000731/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000732 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000733 * actions(i.e., runs INIT_SCRIPT and then starts a pair
734 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
735 * _is_ defined, but /etc/inittab is missing, this
Erik Andersen812d4662000-01-07 18:30:40 +0000736 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000737 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000738static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000739{
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000740#if ENABLE_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000741 FILE *file;
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000742 char buf[INIT_BUFFS_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +0000743
Erik Andersene49d5ec2000-02-08 19:58:47 +0000744 file = fopen(INITTAB, "r");
745 if (file == NULL) {
746 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000747#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000748 /* Reboot on Ctrl-Alt-Del */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000749 new_init_action(CTRLALTDEL, "reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000750 /* Umount all filesystems on halt/reboot */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000751 new_init_action(SHUTDOWN, "umount -a -r", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000752 /* Swapoff on halt/reboot */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000753 if (ENABLE_SWAPONOFF)
754 new_init_action(SHUTDOWN, "swapoff -a", "");
Eric Andersen730f8262001-12-17 23:13:08 +0000755 /* Prepare to restart init when a HUP is received */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000756 new_init_action(RESTART, "init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000757 /* Askfirst shell on tty1-4 */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000758 new_init_action(ASKFIRST, bb_default_login_shell, "");
759 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
760 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
761 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000762 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000763 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000764
Erik Andersene49d5ec2000-02-08 19:58:47 +0000765 return;
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000766#if ENABLE_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000767 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000768
Eric Andersen0826b6b2002-07-03 23:50:16 +0000769 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000770 static const char actions[] =
771 STR_SYSINIT "sysinit\0"
772 STR_RESPAWN "respawn\0"
773 STR_ASKFIRST "askfirst\0"
774 STR_WAIT "wait\0"
775 STR_ONCE "once\0"
776 STR_CTRLALTDEL "ctrlaltdel\0"
777 STR_SHUTDOWN "shutdown\0"
778 STR_RESTART "restart\0"
779 ;
780 char tmpConsole[CONSOLE_NAME_SIZE];
781 char *id, *runlev, *action, *command;
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000782 const char *a;
783
Eric Andersenb5966362000-05-31 20:04:38 +0000784 /* Skip leading spaces */
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000785 id = skip_whitespace(buf);
Eric Andersenb5966362000-05-31 20:04:38 +0000786 /* Skip the line if it's a comment */
787 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000788 continue;
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000789 /* Trim the trailing '\n' */
790 *strchrnul(id, '\n') = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000791
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000792 /* Line is: "id:runlevel_ignored:action:command" */
Eric Andersenb5966362000-05-31 20:04:38 +0000793 runlev = strchr(id, ':');
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000794 if (runlev == NULL /*|| runlev[1] == '\0' - not needed */)
795 goto bad_entry;
796 action = strchr(runlev + 1, ':');
797 if (action == NULL /*|| action[1] == '\0' - not needed */)
798 goto bad_entry;
799 command = strchr(action + 1, ':');
800 if (command == NULL || command[1] == '\0')
801 goto bad_entry;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000802
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000803 *command = '\0'; /* action => ":action\0" now */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000804 for (a = actions; a[0]; a += strlen(a) + 1) {
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000805 if (strcmp(a + 1, action + 1) == 0) {
806 *runlev = '\0';
Eric Andersenb5966362000-05-31 20:04:38 +0000807 if (*id != '\0') {
Denis Vlasenko51742f42007-04-12 00:32:05 +0000808 if (strncmp(id, "/dev/", 5) == 0)
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000809 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000810 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000811 safe_strncpy(tmpConsole + 5, id,
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000812 sizeof(tmpConsole) - 5);
Eric Andersenb5966362000-05-31 20:04:38 +0000813 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000814 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000815 new_init_action((uint8_t)a[0], command + 1, id);
816 goto next_line;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000817 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000818 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000819 *command = ':';
820 /* Choke on an unknown action */
821 bad_entry:
822 message(L_LOG | L_CONSOLE, "Bad inittab entry: %s", id);
823 next_line: ;
Erik Andersen7dc16072000-01-04 01:10:25 +0000824 }
Eric Andersend8636ca2002-05-15 22:19:09 +0000825 fclose(file);
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000826#endif /* FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000827}
828
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000829#if ENABLE_FEATURE_USE_INITTAB
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000830static void reload_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen6fd0e312003-07-22 09:48:56 +0000831{
Eric Andersen82baf632004-10-08 08:21:54 +0000832 struct init_action *a, *tmp;
833
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000834 message(L_LOG, "reloading /etc/inittab");
Eric Andersen82baf632004-10-08 08:21:54 +0000835
836 /* disable old entrys */
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000837 for (a = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000838 a->action = ONCE;
839 }
840
841 parse_inittab();
842
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000843#if ENABLE_FEATURE_KILL_REMOVED
844 for (a = init_action_list; a; a = a->next) {
845 pid_t pid = a->pid;
846 if ((a->action & ONCE) && pid != 0) {
847 /* Be nice and send SIGTERM first */
848 kill(pid, SIGTERM);
849#if CONFIG_FEATURE_KILL_DELAY
850 if (fork() == 0) { /* child */
851 sleep(CONFIG_FEATURE_KILL_DELAY);
852 kill(pid, SIGKILL);
853 _exit(0);
854 }
855#endif
856 }
857 }
858#endif /* FEATURE_KILL_REMOVED */
859
Eric Andersen82baf632004-10-08 08:21:54 +0000860 /* remove unused entrys */
861 for (a = init_action_list; a; a = tmp) {
862 tmp = a->next;
Denis Vlasenko219d14d2007-03-24 15:40:16 +0000863 if ((a->action & (ONCE | SYSINIT | WAIT)) && a->pid == 0) {
Eric Andersen82baf632004-10-08 08:21:54 +0000864 delete_init_action(a);
865 }
866 }
Eric Andersen6fd0e312003-07-22 09:48:56 +0000867 run_actions(RESPAWN);
Eric Andersen6fd0e312003-07-22 09:48:56 +0000868}
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000869#endif /* FEATURE_USE_INITTAB */
Eric Andersen82baf632004-10-08 08:21:54 +0000870
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000871int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000872int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000873{
Eric Andersen0298be82002-03-05 15:12:19 +0000874 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000875 pid_t wpid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000876
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000877 die_sleep = 30 * 24*60*60; /* if xmalloc will ever die... */
878
Eric Andersen730f8262001-12-17 23:13:08 +0000879 if (argc > 1 && !strcmp(argv[1], "-q")) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000880 return kill(1, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +0000881 }
Bernhard Reutner-Fischer35e1a072006-05-29 13:08:35 +0000882#if !ENABLE_DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +0000883 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000884 if (getpid() != 1
885 && (!ENABLE_FEATURE_INITRD || !strstr(applet_name, "linuxrc"))
886 ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000887 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000888 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000889 /* Set up sig handlers -- be sure to
890 * clear all of these in run() */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000891 signal(SIGHUP, exec_signal);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000892 signal(SIGQUIT, exec_signal);
Paul Foxd112f8f2006-06-01 13:17:49 +0000893 signal(SIGUSR1, shutdown_signal);
894 signal(SIGUSR2, shutdown_signal);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000895 signal(SIGINT, ctrlaltdel_signal);
Paul Foxd112f8f2006-06-01 13:17:49 +0000896 signal(SIGTERM, shutdown_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +0000897 signal(SIGCONT, cont_handler);
898 signal(SIGSTOP, stop_handler);
899 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +0000900
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000901 /* Turn off rebooting via CTL-ALT-DEL -- we get a
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000903 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000904#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000905
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000906
Eric Andersen599e3ce2002-07-03 11:08:10 +0000907 /* Figure out where the default console should be */
908 console_init();
Denis Vlasenkod238a472007-03-05 19:22:04 +0000909 set_sane_term();
Erik Andersen983b51b2000-04-04 18:14:25 +0000910 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000911 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000912 {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000913 const char *const *e;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000914 /* Make sure environs is set to something sane */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000915 for (e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000916 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000917 }
Rob Landleycba1b962006-07-09 17:28:17 +0000918
919 if (argc > 1) setenv("RUNLEVEL", argv[1], 1);
920
Erik Andersene49d5ec2000-02-08 19:58:47 +0000921 /* Hello world */
Denis Vlasenkoca525b42007-06-13 12:27:17 +0000922 message(MAYBE_CONSOLE | L_LOG, "init started: %s", bb_banner);
Eric Andersencc8ed391999-10-05 16:24:54 +0000923
Erik Andersene49d5ec2000-02-08 19:58:47 +0000924 /* Make sure there is enough memory to do something useful. */
Rob Landleyc3386a42005-08-30 18:50:37 +0000925 if (ENABLE_SWAPONOFF) {
926 struct sysinfo info;
927
928 if (!sysinfo(&info) &&
Denis Vlasenkodca0b702006-10-27 09:05:02 +0000929 (info.mem_unit ? : 1) * (long long)info.totalram < 1024*1024)
Rob Landleyc3386a42005-08-30 18:50:37 +0000930 {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000931 message(L_CONSOLE, "Low memory, forcing swapon");
Rob Landleyc3386a42005-08-30 18:50:37 +0000932 /* swapon -a requires /proc typically */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000933 new_init_action(SYSINIT, "mount -t proc proc /proc", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000934 /* Try to turn on swap */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000935 new_init_action(SYSINIT, "swapon -a", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000936 run_actions(SYSINIT); /* wait and removing */
937 }
938 }
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 */
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000941 if (argc > 1
942 && (!strcmp(argv[1], "single") || !strcmp(argv[1], "-s") || LONE_CHAR(argv[1], '1'))
943 ) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000944 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000945 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000946 } else {
947 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000948
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000949 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000950 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000951 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +0000952 * of "askfirst" shells */
953 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000954 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000955
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000956#if ENABLE_SELINUX
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000957 if (getenv("SELINUX_INIT") == NULL) {
958 int enforce = 0;
959
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000960 putenv((char*)"SELINUX_INIT=YES");
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000961 if (selinux_init_load_policy(&enforce) == 0) {
Denis Vlasenko4921b542007-02-03 02:17:41 +0000962 BB_EXECVP(argv[0], argv);
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000963 } else if (enforce > 0) {
964 /* SELinux in enforcing mode but load_policy failed */
Denis Vlasenkob7167542007-02-27 19:20:00 +0000965 message(L_CONSOLE, "Cannot load SELinux Policy. "
966 "Machine is in enforcing mode. Halting now.");
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000967 exit(1);
968 }
969 }
970#endif /* CONFIG_SELINUX */
971
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000972 /* Make the command line just say "init" - thats all, nothing else */
973 strncpy(argv[0], "init", strlen(argv[0]));
974 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
975 while (*++argv)
976 memset(*argv, 0, strlen(*argv));
Eric Andersen219d6f51999-11-02 19:43:01 +0000977
Erik Andersene49d5ec2000-02-08 19:58:47 +0000978 /* Now run everything that needs to be run */
979
980 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +0000981 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000982
Erik Andersene49d5ec2000-02-08 19:58:47 +0000983 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +0000984 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000985
Erik Andersene49d5ec2000-02-08 19:58:47 +0000986 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +0000987 run_actions(ONCE);
988
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000989#if ENABLE_FEATURE_USE_INITTAB
Eric Andersen6fd0e312003-07-22 09:48:56 +0000990 /* Redefine SIGHUP to reread /etc/inittab */
991 signal(SIGHUP, reload_signal);
Eric Andersen82baf632004-10-08 08:21:54 +0000992#else
993 signal(SIGHUP, SIG_IGN);
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000994#endif /* FEATURE_USE_INITTAB */
Eric Andersen82baf632004-10-08 08:21:54 +0000995
Erik Andersene49d5ec2000-02-08 19:58:47 +0000996 /* Now run the looping stuff for the rest of forever */
997 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +0000998 /* run the respawn stuff */
999 run_actions(RESPAWN);
1000
1001 /* run the askfirst stuff */
1002 run_actions(ASKFIRST);
1003
1004 /* Don't consume all CPU time -- sleep a bit */
1005 sleep(1);
1006
Erik Andersene49d5ec2000-02-08 19:58:47 +00001007 /* Wait for a child process to exit */
Bernhard Reutner-Fischerc58dbf22006-05-30 12:16:54 +00001008 wpid = wait(NULL);
Eric Andersen87812dc2004-04-12 19:21:54 +00001009 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001010 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001011 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001012 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001013 /* Set the pid to 0 so that the process gets
1014 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001015 a->pid = 0;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +00001016 message(L_LOG, "process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001017 "Scheduling it for restart.",
1018 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001019 }
1020 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001021 /* see if anyone else is waiting to be reaped */
Denis Vlasenkoce979602006-09-27 23:31:08 +00001022 wpid = waitpid(-1, NULL, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001023 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001024 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001025}