blob: 51125f3480da71c74a946803a9cbc58f2e2e6dfd [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>
Mike Frysingerbb50fdf2007-12-25 04:30:14 +000015#include <sys/syslog.h>
Eric Andersen2c1de612003-04-24 11:41:28 +000016
Eric Andersen0826b6b2002-07-03 23:50:16 +000017#define INIT_BUFFS_SIZE 256
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000018#define CONSOLE_NAME_SIZE 32
19#define MAXENV 16 /* Number of env. vars */
Eric Andersenbd22ed82000-07-08 18:55:24 +000020
Erik Andersen983b51b2000-04-04 18:14:25 +000021/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +000022 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
Erik Andersen183da4a2000-04-04 18:36:37 +000023 * before processes are spawned to set core file size as unlimited.
24 * This is for debugging only. Don't use this is production, unless
25 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000026 */
27#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
28#include <sys/resource.h>
Erik Andersen983b51b2000-04-04 18:14:25 +000029
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000030#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +000031#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000032#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +000033#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +000034
Erik Andersen7dc16072000-01-04 01:10:25 +000035/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +000036#define SYSINIT 0x001
37#define RESPAWN 0x002
38#define ASKFIRST 0x004
39#define WAIT 0x008
40#define ONCE 0x010
41#define CTRLALTDEL 0x020
42#define SHUTDOWN 0x040
43#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +000044
Denis Vlasenko2afabe82007-12-10 07:06:04 +000045#define STR_SYSINIT "\x01"
46#define STR_RESPAWN "\x02"
47#define STR_ASKFIRST "\x04"
48#define STR_WAIT "\x08"
49#define STR_ONCE "\x10"
50#define STR_CTRLALTDEL "\x20"
51#define STR_SHUTDOWN "\x40"
52#define STR_RESTART "\x80"
Erik Andersen7dc16072000-01-04 01:10:25 +000053
Eric Andersen0298be82002-03-05 15:12:19 +000054/* Set up a linked list of init_actions, to be read from inittab */
55struct init_action {
Eric Andersen0298be82002-03-05 15:12:19 +000056 struct init_action *next;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000057 pid_t pid;
Denis Vlasenko2afabe82007-12-10 07:06:04 +000058 uint8_t action;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000059 char terminal[CONSOLE_NAME_SIZE];
Denis Vlasenko2afabe82007-12-10 07:06:04 +000060 char command[INIT_BUFFS_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +000061};
Erik Andersen7dc16072000-01-04 01:10:25 +000062
Eric Andersen0298be82002-03-05 15:12:19 +000063/* Static variables */
64static struct init_action *init_action_list = NULL;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000065
Denis Vlasenko4c978632007-02-03 03:31:13 +000066static const char *log_console = VC_5;
Eric Andersen0298be82002-03-05 15:12:19 +000067static sig_atomic_t got_cont = 0;
Rob Landleybc68cd12006-03-10 19:22:06 +000068
69enum {
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000070 L_LOG = 0x1,
71 L_CONSOLE = 0x2,
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000072
Denis Vlasenko9b1381f2007-01-03 02:56:00 +000073#if ENABLE_FEATURE_EXTRA_QUIET
Rob Landleybc68cd12006-03-10 19:22:06 +000074 MAYBE_CONSOLE = 0x0,
Eric Andersen0298be82002-03-05 15:12:19 +000075#else
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000076 MAYBE_CONSOLE = L_CONSOLE,
Eric Andersen0298be82002-03-05 15:12:19 +000077#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000078
Rob Landleybc68cd12006-03-10 19:22:06 +000079#ifndef RB_HALT_SYSTEM
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +000080 RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */
Rob Landleybc68cd12006-03-10 19:22:06 +000081 RB_ENABLE_CAD = 0x89abcdef,
82 RB_DISABLE_CAD = 0,
83 RB_POWER_OFF = 0x4321fedc,
84 RB_AUTOBOOT = 0x01234567,
Eric Andersen0298be82002-03-05 15:12:19 +000085#endif
Rob Landleybc68cd12006-03-10 19:22:06 +000086};
Erik Andersen42094cd2000-03-20 21:34:52 +000087
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000088static const char *const environment[] = {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +000089 "HOME=/",
Denis Vlasenkof5f75c52007-06-12 22:35:19 +000090 bb_PATH_root_path,
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +000091 "SHELL=/bin/sh",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +000092 "USER=root",
93 NULL
94};
95
Eric Andersen0298be82002-03-05 15:12:19 +000096/* Function prototypes */
97static void delete_init_action(struct init_action *a);
Denis Vlasenko2afabe82007-12-10 07:06:04 +000098static int waitfor(pid_t pid);
Denis Vlasenkod55268d2007-12-26 18:32:58 +000099static void halt_reboot_pwoff(int sig) ATTRIBUTE_NORETURN;
Eric Andersen0460ff21999-10-25 23:32:44 +0000100
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000101static void loop_forever(void) ATTRIBUTE_NORETURN;
Eric Andersen74400cc2001-10-18 04:11:39 +0000102static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000103{
104 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000105 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000106}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000107
Erik Andersen42094cd2000-03-20 21:34:52 +0000108/* Print a message to the specified device.
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000109 * Device may be bitwise-or'd from L_LOG | L_CONSOLE */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000110#define messageD(...) do { if (ENABLE_DEBUG_INIT) message(__VA_ARGS__); } while (0)
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000111static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000112 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000113static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000114{
Eric Andersen22237012003-01-23 07:08:26 +0000115 static int log_fd = -1;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000116 va_list arguments;
117 int l;
118 char msg[128];
119
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000120 msg[0] = '\r';
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000121 va_start(arguments, fmt);
122 vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments);
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000123 va_end(arguments);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000124 msg[sizeof(msg) - 2] = '\0';
125 l = strlen(msg);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000126
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000127 if (ENABLE_FEATURE_INIT_SYSLOG) {
128 /* Log the message to syslogd */
129 if (device & L_LOG) {
130 /* don't out "\r" */
131 openlog(applet_name, 0, LOG_DAEMON);
132 syslog(LOG_INFO, "init: %s", msg + 1);
133 closelog();
134 }
135 msg[l++] = '\n';
136 msg[l] = '\0';
137 } else {
138 msg[l++] = '\n';
139 msg[l] = '\0';
140 /* Take full control of the log tty, and never close it.
141 * It's mine, all mine! Muhahahaha! */
142 if (log_fd < 0) {
143 if (!log_console) {
144 log_fd = 2;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000145 } else {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000146 log_fd = device_open(log_console, O_WRONLY | O_NONBLOCK | O_NOCTTY);
147 if (log_fd < 0) {
148 bb_error_msg("can't log to %s", log_console);
149 device = L_CONSOLE;
150 } else {
151 close_on_exec_on(log_fd);
152 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000153 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000155 if (device & L_LOG) {
156 full_write(log_fd, msg, l);
157 if (log_fd == 2)
158 return; /* don't print dup messages */
159 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160 }
Eric Andersen4c781471999-11-26 08:12:56 +0000161
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000162 if (device & L_CONSOLE) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000163 /* Send console messages to console so people will see them. */
164 full_write(2, msg, l);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000165 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000166}
167
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000168/* From <linux/serial.h> */
169struct serial_struct {
170 int type;
171 int line;
172 unsigned int port;
173 int irq;
174 int flags;
175 int xmit_fifo_size;
176 int custom_divisor;
177 int baud_base;
178 unsigned short close_delay;
179 char io_type;
180 char reserved_char[1];
181 int hub6;
182 unsigned short closing_wait; /* time to wait before closing */
183 unsigned short closing_wait2; /* no longer used... */
184 unsigned char *iomem_base;
185 unsigned short iomem_reg_shift;
186 unsigned int port_high;
187 unsigned long iomap_base; /* cookie passed into ioremap */
188 int reserved[1];
189 /* Paranoia (imagine 64bit kernel overwriting 32bit userspace stack) */
190 uint32_t bbox_reserved[16];
191};
Eric Andersen74400cc2001-10-18 04:11:39 +0000192static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000193{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000194 struct serial_struct sr;
195 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000196
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000197 s = getenv("CONSOLE");
198 if (!s) s = getenv("console");
199 if (s) {
200 int fd = open(s, O_RDWR | O_NONBLOCK | O_NOCTTY);
201 if (fd >= 0) {
202 dup2(fd, 0);
203 dup2(fd, 1);
204 dup2(fd, 2);
205 while (fd > 2) close(fd--);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000207 messageD(L_LOG, "console='%s'", s);
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000208 } else {
209 /* Make sure fd 0,1,2 are not closed */
210 bb_sanitize_stdio();
Eric Andersen07e52971999-11-07 07:38:08 +0000211 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000212
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000213 s = getenv("TERM");
214 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000215 /* Force the TERM setting to vt102 for serial console
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000216 * if TERM is set to linux (the default) */
217 if (!s || strcmp(s, "linux") == 0)
218 putenv((char*)"TERM=vt102");
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000219 if (!ENABLE_FEATURE_INIT_SYSLOG)
220 log_console = NULL;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000221 } else if (!s)
222 putenv((char*)"TERM=linux");
Eric Andersen0460ff21999-10-25 23:32:44 +0000223}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000224
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000225/* Set terminal settings to reasonable defaults */
226static void set_sane_term(void)
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000227{
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000228 struct termios tty;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000229
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000230 tcgetattr(STDIN_FILENO, &tty);
231
232 /* set control chars */
233 tty.c_cc[VINTR] = 3; /* C-c */
234 tty.c_cc[VQUIT] = 28; /* C-\ */
235 tty.c_cc[VERASE] = 127; /* C-? */
236 tty.c_cc[VKILL] = 21; /* C-u */
237 tty.c_cc[VEOF] = 4; /* C-d */
238 tty.c_cc[VSTART] = 17; /* C-q */
239 tty.c_cc[VSTOP] = 19; /* C-s */
240 tty.c_cc[VSUSP] = 26; /* C-z */
241
242 /* use line dicipline 0 */
243 tty.c_line = 0;
244
245 /* Make it be sane */
246 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
247 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
248
249 /* input modes */
250 tty.c_iflag = ICRNL | IXON | IXOFF;
251
252 /* output modes */
253 tty.c_oflag = OPOST | ONLCR;
254
255 /* local modes */
256 tty.c_lflag =
257 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
258
259 tcsetattr(STDIN_FILENO, TCSANOW, &tty);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000260}
261
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000262/* Open the new terminal device */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000263static void open_stdio_to_tty(const char* tty_name, int exit_on_failure)
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000264{
265 /* empty tty_name means "use init's tty", else... */
266 if (tty_name[0]) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000267 int fd;
268 close(0);
269 /* fd can be only < 0 or 0: */
270 fd = device_open(tty_name, O_RDWR);
271 if (fd) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000272 message(L_LOG | L_CONSOLE, "Can't open %s: %s",
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000273 tty_name, strerror(errno));
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000274 if (exit_on_failure)
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000275 _exit(1);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000276 if (ENABLE_DEBUG_INIT)
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000277 _exit(2);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000278 halt_reboot_pwoff(SIGUSR1); /* halt the system */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000279 }
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000280 dup2(0, 1);
281 dup2(0, 2);
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000282 }
Denis Vlasenkod238a472007-03-05 19:22:04 +0000283 set_sane_term();
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000284}
285
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000286/* Used only by run_actions */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000287static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000288{
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000289 int i;
Mike Frysinger10427ab2005-07-06 05:00:48 +0000290 pid_t pid;
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000291 char *s, *tmpCmd, *cmdpath;
292 char *cmd[INIT_BUFFS_SIZE];
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000293 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000294 sigset_t nmask, omask;
Erik Andersenac6e71f2000-01-08 22:04:33 +0000295
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000296 /* Block sigchild while forking (why?) */
Eric Andersen0298be82002-03-05 15:12:19 +0000297 sigemptyset(&nmask);
298 sigaddset(&nmask, SIGCHLD);
299 sigprocmask(SIG_BLOCK, &nmask, &omask);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000300 pid = fork();
301 sigprocmask(SIG_SETMASK, &omask, NULL);
Eric Andersen0298be82002-03-05 15:12:19 +0000302
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000303 if (pid < 0)
304 message(L_LOG | L_CONSOLE, "Can't fork");
Denis Vlasenko966bb432007-02-27 19:20:33 +0000305 if (pid)
306 return pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000307
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000308 /* Child */
309
Denis Vlasenko966bb432007-02-27 19:20:33 +0000310 /* Reset signal handlers that were set by the parent process */
311 signal(SIGUSR1, SIG_DFL);
312 signal(SIGUSR2, SIG_DFL);
313 signal(SIGINT, SIG_DFL);
314 signal(SIGTERM, SIG_DFL);
315 signal(SIGHUP, SIG_DFL);
316 signal(SIGQUIT, SIG_DFL);
317 signal(SIGCONT, SIG_DFL);
318 signal(SIGSTOP, SIG_DFL);
319 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000320
Denis Vlasenko966bb432007-02-27 19:20:33 +0000321 /* Create a new session and make ourself the process
322 * group leader */
323 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000324
Denis Vlasenko966bb432007-02-27 19:20:33 +0000325 /* Open the new terminal device */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000326 open_stdio_to_tty(a->terminal, 1 /* - exit if open fails*/);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000327
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000328#ifdef BUT_RUN_ACTIONS_ALREADY_DOES_WAITING
Denis Vlasenko966bb432007-02-27 19:20:33 +0000329 /* If the init Action requires us to wait, then force the
330 * supplied terminal to be the controlling tty. */
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000331 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000332 /* Now fork off another process to just hang around */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000333 pid = fork();
Denis Vlasenkof6ccc622007-11-10 01:57:35 +0000334 if (pid < 0) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000335 message(L_LOG | L_CONSOLE, "Can't fork");
336 _exit(1);
337 }
338
339 if (pid > 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000340 /* Parent - wait till the child is done */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000341 signal(SIGINT, SIG_IGN);
342 signal(SIGTSTP, SIG_IGN);
343 signal(SIGQUIT, SIG_IGN);
344 signal(SIGCHLD, SIG_DFL);
345
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000346 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000347 /* See if stealing the controlling tty back is necessary */
348 if (tcgetpgrp(0) != getpid())
349 _exit(0);
350
351 /* Use a temporary process to steal the controlling tty. */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000352 pid = fork();
353 if (pid < 0) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000354 message(L_LOG | L_CONSOLE, "Can't fork");
Eric Andersen0298be82002-03-05 15:12:19 +0000355 _exit(1);
356 }
Denis Vlasenko966bb432007-02-27 19:20:33 +0000357 if (pid == 0) {
358 setsid();
359 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000360 _exit(0);
361 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000362 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000363 _exit(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000364 }
365
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000366 /* Child - fall though to actually execute things */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000367 }
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000368#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000369
370 /* See if any special /bin/sh requiring characters are present */
371 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
372 cmd[0] = (char*)DEFAULT_SHELL;
373 cmd[1] = (char*)"-c";
374 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
375 cmd[3] = NULL;
376 } else {
377 /* Convert command (char*) into cmd (char**, one word per string) */
378 strcpy(buf, a->command);
379 s = buf;
380 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
381 if (*tmpCmd != '\0') {
382 cmd[i] = tmpCmd;
383 i++;
384 }
385 }
386 cmd[i] = NULL;
387 }
388
389 cmdpath = cmd[0];
390
391 /*
392 * Interactive shells want to see a dash in argv[0]. This
393 * typically is handled by login, argv will be setup this
394 * way if a dash appears at the front of the command path
395 * (like "-/bin/sh").
396 */
397 if (*cmdpath == '-') {
398 /* skip over the dash */
399 ++cmdpath;
400
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000401#ifdef WHY_WE_DO_THIS_SHELL_MUST_HANDLE_THIS_ITSELF
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000402 /* find the last component in the command pathname */
403 s = bb_get_last_path_component_nostrip(cmdpath);
404 /* make a new argv[0] */
405 cmd[0] = malloc(strlen(s) + 2);
406 if (cmd[0] == NULL) {
407 message(L_LOG | L_CONSOLE, bb_msg_memory_exhausted);
408 cmd[0] = cmdpath;
409 } else {
410 cmd[0][0] = '-';
411 strcpy(cmd[0] + 1, s);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000412 }
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000413#endif
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000414
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000415 /* _Attempt_ to make stdin a controlling tty. */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000416 if (ENABLE_FEATURE_INIT_SCTTY)
417 ioctl(0, TIOCSCTTY, 0 /*only try, don't steal*/);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000418 }
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000419
Denis Vlasenko966bb432007-02-27 19:20:33 +0000420 if (a->action & ASKFIRST) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000421 static const char press_enter[] ALIGN1 =
Denis Vlasenko966bb432007-02-27 19:20:33 +0000422#ifdef CUSTOMIZED_BANNER
423#include CUSTOMIZED_BANNER
Eric Andersen1f50e842004-08-16 09:29:42 +0000424#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000425 "\nPlease press Enter to activate this console. ";
426 char c;
427 /*
428 * Save memory by not exec-ing anything large (like a shell)
429 * before the user wants it. This is critical if swap is not
430 * enabled and the system has low memory. Generally this will
431 * be run on the second virtual console, and the first will
432 * be allowed to start a shell or whatever an init script
433 * specifies.
434 */
435 messageD(L_LOG, "waiting for enter to start '%s'"
436 "(pid %d, tty '%s')\n",
437 cmdpath, getpid(), a->terminal);
438 full_write(1, press_enter, sizeof(press_enter) - 1);
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000439 while (safe_read(0, &c, 1) == 1 && c != '\n')
440 continue;
Denis Vlasenko966bb432007-02-27 19:20:33 +0000441 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000442
Denis Vlasenko966bb432007-02-27 19:20:33 +0000443 /* Log the process name and args */
444 message(L_LOG, "starting pid %d, tty '%s': '%s'",
445 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000446
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000447 if (ENABLE_FEATURE_INIT_COREDUMPS) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000448 struct stat sb;
449 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
450 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000451
Denis Vlasenko966bb432007-02-27 19:20:33 +0000452 limit.rlim_cur = RLIM_INFINITY;
453 limit.rlim_max = RLIM_INFINITY;
454 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000455 }
Erik Andersen05df2392000-01-13 04:43:48 +0000456 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000457
Denis Vlasenko966bb432007-02-27 19:20:33 +0000458 /* Now run it. The new program will take over this PID,
459 * so nothing further in init.c should be run. */
460 BB_EXECVP(cmdpath, cmd);
461
462 /* We're still here? Some error happened. */
463 message(L_LOG | L_CONSOLE, "Cannot run '%s': %s",
464 cmdpath, strerror(errno));
465 _exit(-1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000466}
467
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000468static int waitfor(pid_t runpid)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000469{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000470 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000471
Erik Andersene49d5ec2000-02-08 19:58:47 +0000472 while (1) {
Bernhard Reutner-Fischerd818dcc2007-02-16 17:17:07 +0000473 wpid = waitpid(runpid, &status, 0);
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000474 if (wpid == -1 && errno == EINTR)
475 continue;
476 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000477 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000478 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000479}
480
Eric Andersen0298be82002-03-05 15:12:19 +0000481/* Run all commands of a particular type */
482static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000483{
Eric Andersen0298be82002-03-05 15:12:19 +0000484 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000485
Eric Andersen0298be82002-03-05 15:12:19 +0000486 for (a = init_action_list; a; a = tmp) {
487 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000488 if (a->action == action) {
Denis Vlasenkod7e2e122007-12-10 08:40:29 +0000489 // Pointless: run() will error out if open of device fails.
490 ///* a->terminal of "" means "init's console" */
491 //if (a->terminal[0] && access(a->terminal, R_OK | W_OK)) {
492 // //message(L_LOG | L_CONSOLE, "Device %s cannot be opened in RW mode", a->terminal /*, strerror(errno)*/);
493 // delete_init_action(a);
494 //} else
495 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000496 waitfor(run(a));
Eric Andersen0298be82002-03-05 15:12:19 +0000497 delete_init_action(a);
498 } else if (a->action & ONCE) {
499 run(a);
500 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000501 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000502 /* Only run stuff with pid==0. If they have
503 * a pid, that means it is still running */
504 if (a->pid == 0) {
505 a->pid = run(a);
506 }
507 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000508 }
509 }
510}
511
Eric Andersen2c1de612003-04-24 11:41:28 +0000512static void init_reboot(unsigned long magic)
513{
514 pid_t pid;
515 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000516 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000517 * the init process is killed.... */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000518 pid = vfork();
519 if (pid == 0) { /* child */
Eric Andersen2c1de612003-04-24 11:41:28 +0000520 reboot(magic);
Eric Andersen2c1de612003-04-24 11:41:28 +0000521 _exit(0);
522 }
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000523 waitpid(pid, NULL, 0);
Eric Andersen2c1de612003-04-24 11:41:28 +0000524}
525
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000526static void kill_all_processes(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000527{
Eric Andersen813d88c2001-10-28 22:49:48 +0000528 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000529
Eric Andersena9cc8962002-09-16 06:49:06 +0000530 /* run everything to be run at "shutdown". This is done _prior_
531 * to killing everything, in case people wish to use scripts to
532 * shut things down gracefully... */
533 run_actions(SHUTDOWN);
534
Eric Andersen72f9a422001-10-28 05:12:20 +0000535 /* first disable all our signals */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000536 sigfillset(&block_signals);
537 /*sigemptyset(&block_signals);
Eric Andersen72f9a422001-10-28 05:12:20 +0000538 sigaddset(&block_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000539 sigaddset(&block_signals, SIGQUIT);
Eric Andersen72f9a422001-10-28 05:12:20 +0000540 sigaddset(&block_signals, SIGCHLD);
541 sigaddset(&block_signals, SIGUSR1);
542 sigaddset(&block_signals, SIGUSR2);
543 sigaddset(&block_signals, SIGINT);
544 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000545 sigaddset(&block_signals, SIGCONT);
546 sigaddset(&block_signals, SIGSTOP);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000547 sigaddset(&block_signals, SIGTSTP);*/
Eric Andersen72f9a422001-10-28 05:12:20 +0000548 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000549
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000550 message(L_CONSOLE | L_LOG, "The system is going down NOW!");
551
Erik Andersene49d5ec2000-02-08 19:58:47 +0000552 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000553 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000554
Erik Andersene49d5ec2000-02-08 19:58:47 +0000555 /* Send signals to every process _except_ pid 1 */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000556 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "TERM");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000557 kill(-1, SIGTERM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000558 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000559 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000560
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000561 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "KILL");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000562 kill(-1, SIGKILL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000563 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000564 sleep(1);
Eric Andersencc8ed391999-10-05 16:24:54 +0000565}
566
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000567static void halt_reboot_pwoff(int sig)
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000568{
569 const char *m;
570 int rb;
571
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000572 kill_all_processes();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000573
574 m = "halt";
575 rb = RB_HALT_SYSTEM;
576 if (sig == SIGTERM) {
577 m = "reboot";
578 rb = RB_AUTOBOOT;
579 } else if (sig == SIGUSR2) {
580 m = "poweroff";
581 rb = RB_POWER_OFF;
582 }
583 message(L_CONSOLE | L_LOG, "Requesting system %s", m);
584 /* allow time for last message to reach serial console */
585 sleep(2);
586 init_reboot(rb);
587 loop_forever();
588}
589
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000590/* Handler for HUP and QUIT - exec "restart" action,
591 * else (no such action defined) do nothing */
592static void exec_restart_action(int sig ATTRIBUTE_UNUSED)
Eric Andersen730f8262001-12-17 23:13:08 +0000593{
Eric Andersen0298be82002-03-05 15:12:19 +0000594 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000595 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000596
Eric Andersen0298be82002-03-05 15:12:19 +0000597 for (a = init_action_list; a; a = tmp) {
598 tmp = a->next;
599 if (a->action & RESTART) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000600 kill_all_processes();
Eric Andersen5222d312002-07-03 05:15:23 +0000601
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000602 /* unblock all signals (blocked in kill_all_processes()) */
603 sigfillset(&unblock_signals);
604 /*sigemptyset(&unblock_signals);
Eric Andersen5222d312002-07-03 05:15:23 +0000605 sigaddset(&unblock_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000606 sigaddset(&unblock_signals, SIGQUIT);
Eric Andersen5222d312002-07-03 05:15:23 +0000607 sigaddset(&unblock_signals, SIGCHLD);
608 sigaddset(&unblock_signals, SIGUSR1);
609 sigaddset(&unblock_signals, SIGUSR2);
610 sigaddset(&unblock_signals, SIGINT);
611 sigaddset(&unblock_signals, SIGTERM);
612 sigaddset(&unblock_signals, SIGCONT);
613 sigaddset(&unblock_signals, SIGSTOP);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000614 sigaddset(&unblock_signals, SIGTSTP);*/
Eric Andersen5222d312002-07-03 05:15:23 +0000615 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
616
Eric Andersen3c8064f2003-07-05 08:29:01 +0000617 /* Open the new terminal device */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000618 open_stdio_to_tty(a->terminal, 0 /* - halt if open fails */);
Eric Andersen3c8064f2003-07-05 08:29:01 +0000619
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000620 messageD(L_CONSOLE | L_LOG, "Trying to re-exec %s", a->command);
Denis Vlasenko4921b542007-02-03 02:17:41 +0000621 BB_EXECLP(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000622
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000623 message(L_CONSOLE | L_LOG, "Cannot run '%s': %s",
624 a->command, strerror(errno));
Eric Andersen730f8262001-12-17 23:13:08 +0000625 sleep(2);
626 init_reboot(RB_HALT_SYSTEM);
627 loop_forever();
628 }
629 }
630}
631
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000632static void ctrlaltdel_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersenc97ec342001-04-03 18:01:51 +0000633{
634 run_actions(CTRLALTDEL);
635}
636
Eric Andersen0298be82002-03-05 15:12:19 +0000637/* The SIGSTOP & SIGTSTP handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000638static void stop_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000639{
Eric Andersen0298be82002-03-05 15:12:19 +0000640 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000641
642 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000643 while (!got_cont)
644 pause();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000645
Eric Andersened8a9be2001-11-30 19:10:58 +0000646 errno = saved_errno;
647}
648
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000649/* The SIGCONT handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000650static void cont_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000651{
652 got_cont = 1;
653}
654
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000655static void new_init_action(uint8_t action, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000656{
Eric Andersen22718092004-10-08 08:17:39 +0000657 struct init_action *new_action, *a, *last;
Erik Andersen9e737252000-01-06 01:16:13 +0000658
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000659 if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000660 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000661
Eric Andersen0298be82002-03-05 15:12:19 +0000662 /* Append to the end of the list */
Eric Andersen22718092004-10-08 08:17:39 +0000663 for (a = last = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000664 /* don't enter action if it's already in the list,
665 * but do overwrite existing actions */
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000666 if ((strcmp(a->command, command) == 0)
667 && (strcmp(a->terminal, cons) == 0)
668 ) {
Eric Andersen82baf632004-10-08 08:21:54 +0000669 a->action = action;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000670 return;
671 }
Eric Andersen22718092004-10-08 08:17:39 +0000672 last = a;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000673 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000674
675 new_action = xzalloc(sizeof(struct init_action));
Eric Andersen22718092004-10-08 08:17:39 +0000676 if (last) {
677 last->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000678 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000679 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000680 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000681 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000682 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000683 strcpy(new_action->terminal, cons);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000684 messageD(L_LOG | L_CONSOLE, "command='%s' action=%d tty='%s'\n",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000685 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000686}
687
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000688static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000689{
Eric Andersen0298be82002-03-05 15:12:19 +0000690 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000691
Eric Andersen0298be82002-03-05 15:12:19 +0000692 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693 if (a == action) {
694 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000695 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000696 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000697 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000698 }
699 free(a);
700 break;
701 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000702 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000703}
704
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000705/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000706 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000707 * actions(i.e., runs INIT_SCRIPT and then starts a pair
708 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
709 * _is_ defined, but /etc/inittab is missing, this
Erik Andersen812d4662000-01-07 18:30:40 +0000710 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000711 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000712static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000713{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000714 FILE *file;
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000715 char buf[INIT_BUFFS_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +0000716
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000717 if (ENABLE_FEATURE_USE_INITTAB)
718 file = fopen(INITTAB, "r");
719 else
720 file = NULL;
721
722 /* No inittab file -- set up some default behavior */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000723 if (file == NULL) {
Eric Andersenc97ec342001-04-03 18:01:51 +0000724 /* Reboot on Ctrl-Alt-Del */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000725 new_init_action(CTRLALTDEL, "reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000726 /* Umount all filesystems on halt/reboot */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000727 new_init_action(SHUTDOWN, "umount -a -r", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000728 /* Swapoff on halt/reboot */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000729 if (ENABLE_SWAPONOFF)
730 new_init_action(SHUTDOWN, "swapoff -a", "");
Eric Andersen730f8262001-12-17 23:13:08 +0000731 /* Prepare to restart init when a HUP is received */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000732 new_init_action(RESTART, "init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000733 /* Askfirst shell on tty1-4 */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000734 new_init_action(ASKFIRST, bb_default_login_shell, "");
735 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
736 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
737 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000738 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000739 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000740
Erik Andersene49d5ec2000-02-08 19:58:47 +0000741 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000742 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000743
Eric Andersen0826b6b2002-07-03 23:50:16 +0000744 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000745 static const char actions[] =
746 STR_SYSINIT "sysinit\0"
747 STR_RESPAWN "respawn\0"
748 STR_ASKFIRST "askfirst\0"
749 STR_WAIT "wait\0"
750 STR_ONCE "once\0"
751 STR_CTRLALTDEL "ctrlaltdel\0"
752 STR_SHUTDOWN "shutdown\0"
753 STR_RESTART "restart\0"
754 ;
755 char tmpConsole[CONSOLE_NAME_SIZE];
756 char *id, *runlev, *action, *command;
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000757 const char *a;
758
Eric Andersenb5966362000-05-31 20:04:38 +0000759 /* Skip leading spaces */
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000760 id = skip_whitespace(buf);
Eric Andersenb5966362000-05-31 20:04:38 +0000761 /* Skip the line if it's a comment */
762 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000763 continue;
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000764 /* Trim the trailing '\n' */
765 *strchrnul(id, '\n') = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000766
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000767 /* Line is: "id:runlevel_ignored:action:command" */
Eric Andersenb5966362000-05-31 20:04:38 +0000768 runlev = strchr(id, ':');
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000769 if (runlev == NULL /*|| runlev[1] == '\0' - not needed */)
770 goto bad_entry;
771 action = strchr(runlev + 1, ':');
772 if (action == NULL /*|| action[1] == '\0' - not needed */)
773 goto bad_entry;
774 command = strchr(action + 1, ':');
775 if (command == NULL || command[1] == '\0')
776 goto bad_entry;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000777
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000778 *command = '\0'; /* action => ":action\0" now */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000779 for (a = actions; a[0]; a += strlen(a) + 1) {
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000780 if (strcmp(a + 1, action + 1) == 0) {
781 *runlev = '\0';
Eric Andersenb5966362000-05-31 20:04:38 +0000782 if (*id != '\0') {
Denis Vlasenko51742f42007-04-12 00:32:05 +0000783 if (strncmp(id, "/dev/", 5) == 0)
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000784 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000785 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000786 safe_strncpy(tmpConsole + 5, id,
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000787 sizeof(tmpConsole) - 5);
Eric Andersenb5966362000-05-31 20:04:38 +0000788 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000789 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000790 new_init_action((uint8_t)a[0], command + 1, id);
791 goto next_line;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000792 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000793 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000794 *command = ':';
795 /* Choke on an unknown action */
796 bad_entry:
797 message(L_LOG | L_CONSOLE, "Bad inittab entry: %s", id);
798 next_line: ;
Erik Andersen7dc16072000-01-04 01:10:25 +0000799 }
Eric Andersend8636ca2002-05-15 22:19:09 +0000800 fclose(file);
Erik Andersen7dc16072000-01-04 01:10:25 +0000801}
802
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000803static void reload_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen6fd0e312003-07-22 09:48:56 +0000804{
Eric Andersen82baf632004-10-08 08:21:54 +0000805 struct init_action *a, *tmp;
806
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000807 message(L_LOG, "reloading /etc/inittab");
Eric Andersen82baf632004-10-08 08:21:54 +0000808
809 /* disable old entrys */
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000810 for (a = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000811 a->action = ONCE;
812 }
813
814 parse_inittab();
815
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000816 if (ENABLE_FEATURE_KILL_REMOVED) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000817 /* Be nice and send SIGTERM first */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000818 for (a = init_action_list; a; a = a->next) {
819 pid_t pid = a->pid;
820 if ((a->action & ONCE) && pid != 0) {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000821 kill(pid, SIGTERM);
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000822 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000823 }
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000824#if CONFIG_FEATURE_KILL_DELAY
825 if (fork() == 0) { /* child */
826 sleep(CONFIG_FEATURE_KILL_DELAY);
827 for (a = init_action_list; a; a = a->next) {
828 pid_t pid = a->pid;
829 if ((a->action & ONCE) && pid != 0) {
830 kill(pid, SIGKILL);
831 }
832 }
833 _exit(0);
834 }
835#endif
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000836 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000837
Eric Andersen82baf632004-10-08 08:21:54 +0000838 /* remove unused entrys */
839 for (a = init_action_list; a; a = tmp) {
840 tmp = a->next;
Denis Vlasenko219d14d2007-03-24 15:40:16 +0000841 if ((a->action & (ONCE | SYSINIT | WAIT)) && a->pid == 0) {
Eric Andersen82baf632004-10-08 08:21:54 +0000842 delete_init_action(a);
843 }
844 }
Eric Andersen6fd0e312003-07-22 09:48:56 +0000845 run_actions(RESPAWN);
Eric Andersen6fd0e312003-07-22 09:48:56 +0000846}
Eric Andersen82baf632004-10-08 08:21:54 +0000847
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000848int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000849int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000850{
Eric Andersen0298be82002-03-05 15:12:19 +0000851 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000852 pid_t wpid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000853
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000854 die_sleep = 30 * 24*60*60; /* if xmalloc will ever die... */
855
Eric Andersen730f8262001-12-17 23:13:08 +0000856 if (argc > 1 && !strcmp(argv[1], "-q")) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000857 return kill(1, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +0000858 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000859
860 if (!ENABLE_DEBUG_INIT) {
861 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
862 if (getpid() != 1
863 && (!ENABLE_FEATURE_INITRD || !strstr(applet_name, "linuxrc"))
864 ) {
865 bb_show_usage();
866 }
867 /* Set up sig handlers -- be sure to
868 * clear all of these in run() */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000869 signal(SIGHUP, exec_restart_action);
870 signal(SIGQUIT, exec_restart_action);
871 signal(SIGUSR1, halt_reboot_pwoff); /* halt */
872 signal(SIGUSR2, halt_reboot_pwoff); /* poweroff */
873 signal(SIGTERM, halt_reboot_pwoff); /* reboot */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000874 signal(SIGINT, ctrlaltdel_signal);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000875 signal(SIGCONT, cont_handler);
876 signal(SIGSTOP, stop_handler);
877 signal(SIGTSTP, stop_handler);
878
879 /* Turn off rebooting via CTL-ALT-DEL -- we get a
880 * SIGINT on CAD so we can shut things down gracefully... */
881 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000882 }
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000883
Eric Andersen599e3ce2002-07-03 11:08:10 +0000884 /* Figure out where the default console should be */
885 console_init();
Denis Vlasenkod238a472007-03-05 19:22:04 +0000886 set_sane_term();
Erik Andersen983b51b2000-04-04 18:14:25 +0000887 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000888 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000889 {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000890 const char *const *e;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000891 /* Make sure environs is set to something sane */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000892 for (e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000893 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000894 }
Rob Landleycba1b962006-07-09 17:28:17 +0000895
896 if (argc > 1) setenv("RUNLEVEL", argv[1], 1);
897
Erik Andersene49d5ec2000-02-08 19:58:47 +0000898 /* Hello world */
Denis Vlasenkoca525b42007-06-13 12:27:17 +0000899 message(MAYBE_CONSOLE | L_LOG, "init started: %s", bb_banner);
Eric Andersencc8ed391999-10-05 16:24:54 +0000900
Erik Andersene49d5ec2000-02-08 19:58:47 +0000901 /* Make sure there is enough memory to do something useful. */
Rob Landleyc3386a42005-08-30 18:50:37 +0000902 if (ENABLE_SWAPONOFF) {
903 struct sysinfo info;
904
905 if (!sysinfo(&info) &&
Denis Vlasenkodca0b702006-10-27 09:05:02 +0000906 (info.mem_unit ? : 1) * (long long)info.totalram < 1024*1024)
Rob Landleyc3386a42005-08-30 18:50:37 +0000907 {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000908 message(L_CONSOLE, "Low memory, forcing swapon");
Rob Landleyc3386a42005-08-30 18:50:37 +0000909 /* swapon -a requires /proc typically */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000910 new_init_action(SYSINIT, "mount -t proc proc /proc", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000911 /* Try to turn on swap */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000912 new_init_action(SYSINIT, "swapon -a", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000913 run_actions(SYSINIT); /* wait and removing */
914 }
915 }
Erik Andersen9e737252000-01-06 01:16:13 +0000916
Erik Andersene49d5ec2000-02-08 19:58:47 +0000917 /* Check if we are supposed to be in single user mode */
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000918 if (argc > 1
919 && (!strcmp(argv[1], "single") || !strcmp(argv[1], "-s") || LONE_CHAR(argv[1], '1'))
920 ) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000921 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000922 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000923 } else {
924 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000925
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000926 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000927 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000928 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +0000929 * of "askfirst" shells */
930 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000931 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000932
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000933#if ENABLE_SELINUX
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000934 if (getenv("SELINUX_INIT") == NULL) {
935 int enforce = 0;
936
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000937 putenv((char*)"SELINUX_INIT=YES");
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000938 if (selinux_init_load_policy(&enforce) == 0) {
Denis Vlasenko4921b542007-02-03 02:17:41 +0000939 BB_EXECVP(argv[0], argv);
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000940 } else if (enforce > 0) {
941 /* SELinux in enforcing mode but load_policy failed */
Denis Vlasenkob7167542007-02-27 19:20:00 +0000942 message(L_CONSOLE, "Cannot load SELinux Policy. "
943 "Machine is in enforcing mode. Halting now.");
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000944 exit(1);
945 }
946 }
947#endif /* CONFIG_SELINUX */
948
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000949 /* Make the command line just say "init" - thats all, nothing else */
950 strncpy(argv[0], "init", strlen(argv[0]));
951 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
952 while (*++argv)
953 memset(*argv, 0, strlen(*argv));
Eric Andersen219d6f51999-11-02 19:43:01 +0000954
Erik Andersene49d5ec2000-02-08 19:58:47 +0000955 /* Now run everything that needs to be run */
956
957 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +0000958 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000959
Erik Andersene49d5ec2000-02-08 19:58:47 +0000960 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +0000961 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000962
Erik Andersene49d5ec2000-02-08 19:58:47 +0000963 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +0000964 run_actions(ONCE);
965
Eric Andersen6fd0e312003-07-22 09:48:56 +0000966 /* Redefine SIGHUP to reread /etc/inittab */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000967 if (ENABLE_FEATURE_USE_INITTAB)
968 signal(SIGHUP, reload_signal);
969 else
970 signal(SIGHUP, SIG_IGN);
Eric Andersen82baf632004-10-08 08:21:54 +0000971
Erik Andersene49d5ec2000-02-08 19:58:47 +0000972 /* Now run the looping stuff for the rest of forever */
973 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +0000974 /* run the respawn stuff */
975 run_actions(RESPAWN);
976
977 /* run the askfirst stuff */
978 run_actions(ASKFIRST);
979
980 /* Don't consume all CPU time -- sleep a bit */
981 sleep(1);
982
Erik Andersene49d5ec2000-02-08 19:58:47 +0000983 /* Wait for a child process to exit */
Bernhard Reutner-Fischerc58dbf22006-05-30 12:16:54 +0000984 wpid = wait(NULL);
Eric Andersen87812dc2004-04-12 19:21:54 +0000985 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000986 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +0000987 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000988 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000989 /* Set the pid to 0 so that the process gets
990 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000991 a->pid = 0;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000992 message(L_LOG, "process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000993 "Scheduling it for restart.",
994 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000995 }
996 }
Eric Andersencf1fee02002-12-17 09:48:16 +0000997 /* see if anyone else is waiting to be reaped */
Denis Vlasenkoce979602006-09-27 23:31:08 +0000998 wpid = waitpid(-1, NULL, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000999 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001000 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001001}