blob: e2fde5f23f8fc9a7d913496e651e56c9cc56e6f8 [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"
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +000013#include <syslog.h>
Eric Andersenb186d981999-12-03 09:19:54 +000014#include <paths.h>
Eric Andersen85e5e722003-07-22 08:56:55 +000015#include <sys/reboot.h>
Eric Andersen2c1de612003-04-24 11:41:28 +000016
Denis Vlasenkoa37e7132008-02-19 02:57:07 +000017#define COMMAND_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 */
Denis Vlasenkoad4da982008-04-05 04:24:23 +000036#define SYSINIT 0x01
37#define RESPAWN 0x02
38/* like respawn, but wait for <Enter> to be pressed on tty: */
39#define ASKFIRST 0x04
40#define WAIT 0x08
41#define ONCE 0x10
42#define CTRLALTDEL 0x20
43#define SHUTDOWN 0x40
44#define RESTART 0x80
Erik Andersen7dc16072000-01-04 01:10:25 +000045
Denis Vlasenko2afabe82007-12-10 07:06:04 +000046#define STR_SYSINIT "\x01"
47#define STR_RESPAWN "\x02"
48#define STR_ASKFIRST "\x04"
49#define STR_WAIT "\x08"
50#define STR_ONCE "\x10"
51#define STR_CTRLALTDEL "\x20"
52#define STR_SHUTDOWN "\x40"
53#define STR_RESTART "\x80"
Erik Andersen7dc16072000-01-04 01:10:25 +000054
Eric Andersen0298be82002-03-05 15:12:19 +000055/* Set up a linked list of init_actions, to be read from inittab */
56struct init_action {
Eric Andersen0298be82002-03-05 15:12:19 +000057 struct init_action *next;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000058 pid_t pid;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +000059 uint8_t action_type;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000060 char terminal[CONSOLE_NAME_SIZE];
Denis Vlasenkoa37e7132008-02-19 02:57:07 +000061 char command[COMMAND_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +000062};
Erik Andersen7dc16072000-01-04 01:10:25 +000063
Eric Andersen0298be82002-03-05 15:12:19 +000064/* Static variables */
65static struct init_action *init_action_list = NULL;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000066
Denis Vlasenko4c978632007-02-03 03:31:13 +000067static const char *log_console = VC_5;
Eric Andersen0298be82002-03-05 15:12:19 +000068static sig_atomic_t got_cont = 0;
Rob Landleybc68cd12006-03-10 19:22:06 +000069
70enum {
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000071 L_LOG = 0x1,
72 L_CONSOLE = 0x2,
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000073
Denis Vlasenko9b1381f2007-01-03 02:56:00 +000074#if ENABLE_FEATURE_EXTRA_QUIET
Rob Landleybc68cd12006-03-10 19:22:06 +000075 MAYBE_CONSOLE = 0x0,
Eric Andersen0298be82002-03-05 15:12:19 +000076#else
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000077 MAYBE_CONSOLE = L_CONSOLE,
Eric Andersen0298be82002-03-05 15:12:19 +000078#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000079
Rob Landleybc68cd12006-03-10 19:22:06 +000080#ifndef RB_HALT_SYSTEM
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +000081 RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */
Rob Landleybc68cd12006-03-10 19:22:06 +000082 RB_ENABLE_CAD = 0x89abcdef,
83 RB_DISABLE_CAD = 0,
84 RB_POWER_OFF = 0x4321fedc,
85 RB_AUTOBOOT = 0x01234567,
Eric Andersen0298be82002-03-05 15:12:19 +000086#endif
Rob Landleybc68cd12006-03-10 19:22:06 +000087};
Erik Andersen42094cd2000-03-20 21:34:52 +000088
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000089static const char *const environment[] = {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +000090 "HOME=/",
Denis Vlasenkof5f75c52007-06-12 22:35:19 +000091 bb_PATH_root_path,
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +000092 "SHELL=/bin/sh",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +000093 "USER=root",
94 NULL
95};
96
Eric Andersen0298be82002-03-05 15:12:19 +000097/* Function prototypes */
98static void delete_init_action(struct init_action *a);
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 Vlasenko21e20cb2008-01-04 15:10:47 +0000101static void waitfor(pid_t pid)
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000102{
Denis Vlasenko21e20cb2008-01-04 15:10:47 +0000103 /* waitfor(run(x)): protect against failed fork inside run() */
104 if (pid <= 0)
105 return;
106
107 /* Wait for any child (prevent zombies from exiting orphaned processes)
108 * but exit the loop only when specified one has exited. */
109 while (wait(NULL) != pid)
110 continue;
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000111}
112
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000113static void loop_forever(void) ATTRIBUTE_NORETURN;
Eric Andersen74400cc2001-10-18 04:11:39 +0000114static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000115{
116 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000117 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000118}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000119
Erik Andersen42094cd2000-03-20 21:34:52 +0000120/* Print a message to the specified device.
Denis Vlasenko671ca332008-02-19 14:13:20 +0000121 * "where" may be bitwise-or'd from L_LOG | L_CONSOLE
122 * NB: careful, we can be called after vfork!
123 */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000124#define messageD(...) do { if (ENABLE_DEBUG_INIT) message(__VA_ARGS__); } while (0)
Denis Vlasenko671ca332008-02-19 14:13:20 +0000125static void message(int where, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000126 __attribute__ ((format(printf, 2, 3)));
Denis Vlasenko671ca332008-02-19 14:13:20 +0000127static void message(int where, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000128{
Eric Andersen22237012003-01-23 07:08:26 +0000129 static int log_fd = -1;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000130 va_list arguments;
131 int l;
132 char msg[128];
133
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000134 msg[0] = '\r';
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000135 va_start(arguments, fmt);
136 vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments);
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000137 va_end(arguments);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000138 msg[sizeof(msg) - 2] = '\0';
139 l = strlen(msg);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000140
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000141 if (ENABLE_FEATURE_INIT_SYSLOG) {
142 /* Log the message to syslogd */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000143 if (where & L_LOG) {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000144 /* don't out "\r" */
145 openlog(applet_name, 0, LOG_DAEMON);
146 syslog(LOG_INFO, "init: %s", msg + 1);
147 closelog();
148 }
149 msg[l++] = '\n';
150 msg[l] = '\0';
151 } else {
152 msg[l++] = '\n';
153 msg[l] = '\0';
154 /* Take full control of the log tty, and never close it.
155 * It's mine, all mine! Muhahahaha! */
156 if (log_fd < 0) {
157 if (!log_console) {
158 log_fd = 2;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000159 } else {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000160 log_fd = device_open(log_console, O_WRONLY | O_NONBLOCK | O_NOCTTY);
161 if (log_fd < 0) {
162 bb_error_msg("can't log to %s", log_console);
Denis Vlasenko671ca332008-02-19 14:13:20 +0000163 where = L_CONSOLE;
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000164 } else {
165 close_on_exec_on(log_fd);
166 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000167 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000168 }
Denis Vlasenko671ca332008-02-19 14:13:20 +0000169 if (where & L_LOG) {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000170 full_write(log_fd, msg, l);
171 if (log_fd == 2)
172 return; /* don't print dup messages */
173 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000174 }
Eric Andersen4c781471999-11-26 08:12:56 +0000175
Denis Vlasenko671ca332008-02-19 14:13:20 +0000176 if (where & L_CONSOLE) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000177 /* Send console messages to console so people will see them. */
178 full_write(2, msg, l);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000179 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000180}
181
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000182/* From <linux/serial.h> */
183struct serial_struct {
184 int type;
185 int line;
186 unsigned int port;
187 int irq;
188 int flags;
189 int xmit_fifo_size;
190 int custom_divisor;
191 int baud_base;
192 unsigned short close_delay;
193 char io_type;
194 char reserved_char[1];
195 int hub6;
196 unsigned short closing_wait; /* time to wait before closing */
197 unsigned short closing_wait2; /* no longer used... */
198 unsigned char *iomem_base;
199 unsigned short iomem_reg_shift;
200 unsigned int port_high;
201 unsigned long iomap_base; /* cookie passed into ioremap */
202 int reserved[1];
203 /* Paranoia (imagine 64bit kernel overwriting 32bit userspace stack) */
204 uint32_t bbox_reserved[16];
205};
Eric Andersen74400cc2001-10-18 04:11:39 +0000206static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000207{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208 struct serial_struct sr;
209 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000210
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000211 s = getenv("CONSOLE");
212 if (!s) s = getenv("console");
213 if (s) {
214 int fd = open(s, O_RDWR | O_NONBLOCK | O_NOCTTY);
215 if (fd >= 0) {
216 dup2(fd, 0);
217 dup2(fd, 1);
Denis Vlasenkoe421b5e2008-03-17 22:01:42 +0000218 xmove_fd(fd, 2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000219 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000220 messageD(L_LOG, "console='%s'", s);
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000221 } else {
Denis Vlasenkofb274df2008-03-17 13:26:51 +0000222 /* Make sure fd 0,1,2 are not closed
223 * (so that they won't be used by future opens) */
224
225 /* bb_sanitize_stdio(); - WRONG.
Denis Vlasenkoe421b5e2008-03-17 22:01:42 +0000226 * It fails if "/dev/null" doesnt exist, and for init
Denis Vlasenkofb274df2008-03-17 13:26:51 +0000227 * this is a real possibility! Open code it instead. */
228
229 int fd = open(bb_dev_null, O_RDWR);
230 if (fd < 0) {
231 /* Give me _ANY_ open descriptor! */
232 fd = xopen("/", O_RDONLY); /* we don't believe this can fail */
233 }
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000234 while ((unsigned)fd < 2)
235 fd = dup(fd);
Denis Vlasenkofb274df2008-03-17 13:26:51 +0000236 if (fd > 2)
Denis Vlasenkoe421b5e2008-03-17 22:01:42 +0000237 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000238 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000239
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000240 s = getenv("TERM");
Denis Vlasenkoe421b5e2008-03-17 22:01:42 +0000241 if (ioctl(STDIN_FILENO, TIOCGSERIAL, &sr) == 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000242 /* Force the TERM setting to vt102 for serial console
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000243 * if TERM is set to linux (the default) */
244 if (!s || strcmp(s, "linux") == 0)
245 putenv((char*)"TERM=vt102");
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000246 if (!ENABLE_FEATURE_INIT_SYSLOG)
247 log_console = NULL;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000248 } else if (!s)
249 putenv((char*)"TERM=linux");
Eric Andersen0460ff21999-10-25 23:32:44 +0000250}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000251
Denis Vlasenko671ca332008-02-19 14:13:20 +0000252/* Set terminal settings to reasonable defaults.
253 * NB: careful, we can be called after vfork! */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000254static void set_sane_term(void)
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000255{
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000256 struct termios tty;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000257
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000258 tcgetattr(STDIN_FILENO, &tty);
259
260 /* set control chars */
261 tty.c_cc[VINTR] = 3; /* C-c */
262 tty.c_cc[VQUIT] = 28; /* C-\ */
263 tty.c_cc[VERASE] = 127; /* C-? */
264 tty.c_cc[VKILL] = 21; /* C-u */
265 tty.c_cc[VEOF] = 4; /* C-d */
266 tty.c_cc[VSTART] = 17; /* C-q */
267 tty.c_cc[VSTOP] = 19; /* C-s */
268 tty.c_cc[VSUSP] = 26; /* C-z */
269
270 /* use line dicipline 0 */
271 tty.c_line = 0;
272
273 /* Make it be sane */
274 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
275 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
276
277 /* input modes */
278 tty.c_iflag = ICRNL | IXON | IXOFF;
279
280 /* output modes */
281 tty.c_oflag = OPOST | ONLCR;
282
283 /* local modes */
284 tty.c_lflag =
285 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
286
287 tcsetattr(STDIN_FILENO, TCSANOW, &tty);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000288}
289
Denis Vlasenko671ca332008-02-19 14:13:20 +0000290/* Open the new terminal device.
291 * NB: careful, we can be called after vfork! */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000292static void open_stdio_to_tty(const char* tty_name, int exit_on_failure)
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000293{
294 /* empty tty_name means "use init's tty", else... */
295 if (tty_name[0]) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000296 int fd;
297 close(0);
298 /* fd can be only < 0 or 0: */
299 fd = device_open(tty_name, O_RDWR);
300 if (fd) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000301 message(L_LOG | L_CONSOLE, "Can't open %s: %s",
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000302 tty_name, strerror(errno));
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000303 if (exit_on_failure)
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000304 _exit(1);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000305 if (ENABLE_DEBUG_INIT)
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000306 _exit(2);
Denis Vlasenko671ca332008-02-19 14:13:20 +0000307 /* NB: we don't reach this if we were called after vfork.
308 * Thus halt_reboot_pwoff() itself need not be vfork-safe. */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000309 halt_reboot_pwoff(SIGUSR1); /* halt the system */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000310 }
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000311 dup2(0, 1);
312 dup2(0, 2);
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000313 }
Denis Vlasenkod238a472007-03-05 19:22:04 +0000314 set_sane_term();
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000315}
316
Denis Vlasenko671ca332008-02-19 14:13:20 +0000317/* Wrapper around exec:
318 * Takes string (max COMMAND_SIZE chars).
319 * If chars like '>' detected, execs '[-]/bin/sh -c "exec ......."'.
320 * Otherwise splits words on whitespace, deals with leading dash,
321 * and uses plain exec().
322 * NB: careful, we can be called after vfork!
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000323 */
324static void init_exec(const char *command)
325{
326 char *cmd[COMMAND_SIZE / 2];
327 char buf[COMMAND_SIZE + 6]; /* COMMAND_SIZE+strlen("exec ")+1 */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000328 int dash = (command[0] == '-' /* maybe? && command[1] == '/' */);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000329
330 /* See if any special /bin/sh requiring characters are present */
331 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
332 strcpy(buf, "exec ");
333 strcpy(buf + 5, command + dash); /* excluding "-" */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000334 /* NB: LIBBB_DEFAULT_LOGIN_SHELL define has leading dash */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000335 cmd[0] = (char*)(LIBBB_DEFAULT_LOGIN_SHELL + !dash);
336 cmd[1] = (char*)"-c";
337 cmd[2] = buf;
338 cmd[3] = NULL;
339 } else {
340 /* Convert command (char*) into cmd (char**, one word per string) */
341 char *word, *next;
342 int i = 0;
343 next = strcpy(buf, command); /* including "-" */
344 while ((word = strsep(&next, " \t")) != NULL) {
345 if (*word != '\0') { /* not two spaces/tabs together? */
346 cmd[i] = word;
347 i++;
348 }
349 }
350 cmd[i] = NULL;
351 }
352 /* If we saw leading "-", it is interactive shell.
353 * Try harder to give it a controlling tty.
354 * And skip "-" in actual exec call. */
355 if (dash) {
356 /* _Attempt_ to make stdin a controlling tty. */
357 if (ENABLE_FEATURE_INIT_SCTTY)
358 ioctl(STDIN_FILENO, TIOCSCTTY, 0 /*only try, don't steal*/);
359 }
360 BB_EXECVP(cmd[0] + dash, cmd);
361 message(L_LOG | L_CONSOLE, "Cannot run '%s': %s",
362 cmd[0], strerror(errno));
363 /* returns if execvp fails */
364}
365
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000366/* Used only by run_actions */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000367static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000368{
Mike Frysinger10427ab2005-07-06 05:00:48 +0000369 pid_t pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000370 sigset_t nmask, omask;
Erik Andersenac6e71f2000-01-08 22:04:33 +0000371
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000372 /* Block sigchild while forking (why?) */
Eric Andersen0298be82002-03-05 15:12:19 +0000373 sigemptyset(&nmask);
374 sigaddset(&nmask, SIGCHLD);
375 sigprocmask(SIG_BLOCK, &nmask, &omask);
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000376 if (BB_MMU && (a->action_type & ASKFIRST))
377 pid = fork();
378 else
379 pid = vfork();
Denis Vlasenko966bb432007-02-27 19:20:33 +0000380 sigprocmask(SIG_SETMASK, &omask, NULL);
Eric Andersen0298be82002-03-05 15:12:19 +0000381
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000382 if (pid < 0)
383 message(L_LOG | L_CONSOLE, "Can't fork");
Denis Vlasenko966bb432007-02-27 19:20:33 +0000384 if (pid)
385 return pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000386
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000387 /* Child */
388
Denis Vlasenko966bb432007-02-27 19:20:33 +0000389 /* Reset signal handlers that were set by the parent process */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000390 bb_signals(0
391 + (1 << SIGUSR1)
392 + (1 << SIGUSR2)
393 + (1 << SIGINT)
394 + (1 << SIGTERM)
395 + (1 << SIGHUP)
396 + (1 << SIGQUIT)
397 + (1 << SIGCONT)
398 + (1 << SIGSTOP)
399 + (1 << SIGTSTP)
400 , SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000401
Denis Vlasenko966bb432007-02-27 19:20:33 +0000402 /* Create a new session and make ourself the process
403 * group leader */
404 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000405
Denis Vlasenko966bb432007-02-27 19:20:33 +0000406 /* Open the new terminal device */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000407 open_stdio_to_tty(a->terminal, 1 /* - exit if open fails */);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000408
Denis Vlasenko671ca332008-02-19 14:13:20 +0000409// NB: do not enable unless you change vfork to fork above
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000410#ifdef BUT_RUN_ACTIONS_ALREADY_DOES_WAITING
Denis Vlasenko966bb432007-02-27 19:20:33 +0000411 /* If the init Action requires us to wait, then force the
412 * supplied terminal to be the controlling tty. */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000413 if (a->action_type & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000414 /* Now fork off another process to just hang around */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000415 pid = fork();
Denis Vlasenkof6ccc622007-11-10 01:57:35 +0000416 if (pid < 0) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000417 message(L_LOG | L_CONSOLE, "Can't fork");
418 _exit(1);
419 }
420
421 if (pid > 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000422 /* Parent - wait till the child is done */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000423 bb_signals(0
424 + (1 << SIGINT)
425 + (1 << SIGTSTP)
426 + (1 << SIGQUIT)
427 , SIG_IGN);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000428 signal(SIGCHLD, SIG_DFL);
429
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000430 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000431 /* See if stealing the controlling tty back is necessary */
432 if (tcgetpgrp(0) != getpid())
433 _exit(0);
434
435 /* Use a temporary process to steal the controlling tty. */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000436 pid = fork();
437 if (pid < 0) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000438 message(L_LOG | L_CONSOLE, "Can't fork");
Eric Andersen0298be82002-03-05 15:12:19 +0000439 _exit(1);
440 }
Denis Vlasenko966bb432007-02-27 19:20:33 +0000441 if (pid == 0) {
442 setsid();
443 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000444 _exit(0);
445 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000446 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000447 _exit(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000448 }
449
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000450 /* Child - fall though to actually execute things */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000451 }
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000452#endif
Denis Vlasenko671ca332008-02-19 14:13:20 +0000453
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000454 /* NB: on NOMMU we can't wait for input in child, so
455 * "askfirst" will work the same as "respawn". */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000456 if (BB_MMU && (a->action_type & ASKFIRST)) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000457 static const char press_enter[] ALIGN1 =
Denis Vlasenko966bb432007-02-27 19:20:33 +0000458#ifdef CUSTOMIZED_BANNER
459#include CUSTOMIZED_BANNER
Eric Andersen1f50e842004-08-16 09:29:42 +0000460#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000461 "\nPlease press Enter to activate this console. ";
462 char c;
463 /*
464 * Save memory by not exec-ing anything large (like a shell)
465 * before the user wants it. This is critical if swap is not
466 * enabled and the system has low memory. Generally this will
467 * be run on the second virtual console, and the first will
468 * be allowed to start a shell or whatever an init script
469 * specifies.
470 */
471 messageD(L_LOG, "waiting for enter to start '%s'"
472 "(pid %d, tty '%s')\n",
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000473 a->command, getpid(), a->terminal);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000474 full_write(1, press_enter, sizeof(press_enter) - 1);
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000475 while (safe_read(0, &c, 1) == 1 && c != '\n')
476 continue;
Denis Vlasenko966bb432007-02-27 19:20:33 +0000477 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000478
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000479 if (ENABLE_FEATURE_INIT_COREDUMPS) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000480 struct stat sb;
481 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
482 struct rlimit limit;
Denis Vlasenko966bb432007-02-27 19:20:33 +0000483 limit.rlim_cur = RLIM_INFINITY;
484 limit.rlim_max = RLIM_INFINITY;
485 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000486 }
Erik Andersen05df2392000-01-13 04:43:48 +0000487 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000488
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000489 /* Log the process name and args */
490 message(L_LOG, "starting pid %d, tty '%s': '%s'",
491 getpid(), a->terminal, a->command);
492
Denis Vlasenko966bb432007-02-27 19:20:33 +0000493 /* Now run it. The new program will take over this PID,
494 * so nothing further in init.c should be run. */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000495 init_exec(a->command);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000496 /* We're still here? Some error happened. */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000497 _exit(-1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000498}
499
Eric Andersen0298be82002-03-05 15:12:19 +0000500/* Run all commands of a particular type */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000501static void run_actions(int action_type)
Eric Andersen219d6f51999-11-02 19:43:01 +0000502{
Eric Andersen0298be82002-03-05 15:12:19 +0000503 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000504
Eric Andersen0298be82002-03-05 15:12:19 +0000505 for (a = init_action_list; a; a = tmp) {
506 tmp = a->next;
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000507 if (a->action_type & action_type) {
Denis Vlasenkod7e2e122007-12-10 08:40:29 +0000508 // Pointless: run() will error out if open of device fails.
509 ///* a->terminal of "" means "init's console" */
510 //if (a->terminal[0] && access(a->terminal, R_OK | W_OK)) {
511 // //message(L_LOG | L_CONSOLE, "Device %s cannot be opened in RW mode", a->terminal /*, strerror(errno)*/);
512 // delete_init_action(a);
513 //} else
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000514 if (a->action_type & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000515 waitfor(run(a));
Eric Andersen0298be82002-03-05 15:12:19 +0000516 delete_init_action(a);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000517 } else if (a->action_type & ONCE) {
Eric Andersen0298be82002-03-05 15:12:19 +0000518 run(a);
519 delete_init_action(a);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000520 } else if (a->action_type & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000521 /* Only run stuff with pid==0. If they have
522 * a pid, that means it is still running */
523 if (a->pid == 0) {
524 a->pid = run(a);
525 }
526 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000527 }
528 }
529}
530
Eric Andersen2c1de612003-04-24 11:41:28 +0000531static void init_reboot(unsigned long magic)
532{
533 pid_t pid;
534 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000535 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000536 * the init process is killed.... */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000537 pid = vfork();
538 if (pid == 0) { /* child */
Eric Andersen2c1de612003-04-24 11:41:28 +0000539 reboot(magic);
Eric Andersen2c1de612003-04-24 11:41:28 +0000540 _exit(0);
541 }
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000542 waitfor(pid);
Eric Andersen2c1de612003-04-24 11:41:28 +0000543}
544
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000545static void kill_all_processes(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000546{
Eric Andersena9cc8962002-09-16 06:49:06 +0000547 /* run everything to be run at "shutdown". This is done _prior_
548 * to killing everything, in case people wish to use scripts to
549 * shut things down gracefully... */
550 run_actions(SHUTDOWN);
551
Eric Andersen72f9a422001-10-28 05:12:20 +0000552 /* first disable all our signals */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000553 sigprocmask_allsigs(SIG_BLOCK);
Erik Andersen7dc16072000-01-04 01:10:25 +0000554
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000555 message(L_CONSOLE | L_LOG, "The system is going down NOW!");
556
Erik Andersene49d5ec2000-02-08 19:58:47 +0000557 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000558 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000559
Erik Andersene49d5ec2000-02-08 19:58:47 +0000560 /* Send signals to every process _except_ pid 1 */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000561 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "TERM");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000562 kill(-1, SIGTERM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000563 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000564 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000565
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000566 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "KILL");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000567 kill(-1, SIGKILL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000568 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000569 sleep(1);
Eric Andersencc8ed391999-10-05 16:24:54 +0000570}
571
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000572static void halt_reboot_pwoff(int sig)
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000573{
574 const char *m;
575 int rb;
576
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000577 kill_all_processes();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000578
579 m = "halt";
580 rb = RB_HALT_SYSTEM;
581 if (sig == SIGTERM) {
582 m = "reboot";
583 rb = RB_AUTOBOOT;
584 } else if (sig == SIGUSR2) {
585 m = "poweroff";
586 rb = RB_POWER_OFF;
587 }
588 message(L_CONSOLE | L_LOG, "Requesting system %s", m);
589 /* allow time for last message to reach serial console */
590 sleep(2);
591 init_reboot(rb);
592 loop_forever();
593}
594
Denis Vlasenkoa58a6372008-02-19 12:10:18 +0000595/* Handler for QUIT - exec "restart" action,
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000596 * else (no such action defined) do nothing */
597static void exec_restart_action(int sig ATTRIBUTE_UNUSED)
Eric Andersen730f8262001-12-17 23:13:08 +0000598{
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000599 struct init_action *a;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000600
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000601 for (a = init_action_list; a; a = a->next) {
602 if (a->action_type & RESTART) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000603 kill_all_processes();
Eric Andersen5222d312002-07-03 05:15:23 +0000604
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000605 /* unblock all signals (blocked in kill_all_processes()) */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000606 sigprocmask_allsigs(SIG_UNBLOCK);
Eric Andersen5222d312002-07-03 05:15:23 +0000607
Eric Andersen3c8064f2003-07-05 08:29:01 +0000608 /* Open the new terminal device */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000609 open_stdio_to_tty(a->terminal, 0 /* - halt if open fails */);
Eric Andersen3c8064f2003-07-05 08:29:01 +0000610
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000611 messageD(L_CONSOLE | L_LOG, "Trying to re-exec %s", a->command);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000612 init_exec(a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000613 sleep(2);
614 init_reboot(RB_HALT_SYSTEM);
615 loop_forever();
616 }
617 }
618}
619
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000620static void ctrlaltdel_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersenc97ec342001-04-03 18:01:51 +0000621{
622 run_actions(CTRLALTDEL);
623}
624
Eric Andersen0298be82002-03-05 15:12:19 +0000625/* The SIGSTOP & SIGTSTP handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000626static void stop_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000627{
Eric Andersen0298be82002-03-05 15:12:19 +0000628 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000629
630 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000631 while (!got_cont)
632 pause();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000633
Eric Andersened8a9be2001-11-30 19:10:58 +0000634 errno = saved_errno;
635}
636
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000637/* The SIGCONT handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000638static void cont_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000639{
640 got_cont = 1;
641}
642
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000643static void new_init_action(uint8_t action_type, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000644{
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000645 struct init_action *a, *last;
Erik Andersen9e737252000-01-06 01:16:13 +0000646
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000647// Why?
648// if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
649// return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000650
Eric Andersen0298be82002-03-05 15:12:19 +0000651 /* Append to the end of the list */
Eric Andersen22718092004-10-08 08:17:39 +0000652 for (a = last = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000653 /* don't enter action if it's already in the list,
654 * but do overwrite existing actions */
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000655 if ((strcmp(a->command, command) == 0)
656 && (strcmp(a->terminal, cons) == 0)
657 ) {
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000658 a->action_type = action_type;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000659 return;
660 }
Eric Andersen22718092004-10-08 08:17:39 +0000661 last = a;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000662 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000663
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000664 a = xzalloc(sizeof(*a));
Eric Andersen22718092004-10-08 08:17:39 +0000665 if (last) {
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000666 last->next = a;
Eric Andersen1644db92001-09-05 20:18:15 +0000667 } else {
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000668 init_action_list = a;
Eric Andersen1644db92001-09-05 20:18:15 +0000669 }
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000670 a->action_type = action_type;
671 safe_strncpy(a->command, command, sizeof(a->command));
672 safe_strncpy(a->terminal, cons, sizeof(a->terminal));
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000673 messageD(L_LOG | L_CONSOLE, "command='%s' action=%d tty='%s'\n",
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000674 a->command, a->action_type, a->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000675}
676
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000677static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000678{
Eric Andersen0298be82002-03-05 15:12:19 +0000679 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000680
Eric Andersen0298be82002-03-05 15:12:19 +0000681 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000682 if (a == action) {
683 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000684 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000685 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000686 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000687 }
688 free(a);
689 break;
690 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000691 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000692}
693
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000694/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000695 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000696 * actions(i.e., runs INIT_SCRIPT and then starts a pair
697 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
698 * _is_ defined, but /etc/inittab is missing, this
Erik Andersen812d4662000-01-07 18:30:40 +0000699 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000700 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000701static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000702{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000703 FILE *file;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000704 char buf[COMMAND_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +0000705
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000706 if (ENABLE_FEATURE_USE_INITTAB)
707 file = fopen(INITTAB, "r");
708 else
709 file = NULL;
710
711 /* No inittab file -- set up some default behavior */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000712 if (file == NULL) {
Eric Andersenc97ec342001-04-03 18:01:51 +0000713 /* Reboot on Ctrl-Alt-Del */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000714 new_init_action(CTRLALTDEL, "reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000715 /* Umount all filesystems on halt/reboot */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000716 new_init_action(SHUTDOWN, "umount -a -r", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000717 /* Swapoff on halt/reboot */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000718 if (ENABLE_SWAPONOFF)
719 new_init_action(SHUTDOWN, "swapoff -a", "");
Denis Vlasenkoa58a6372008-02-19 12:10:18 +0000720 /* Prepare to restart init when a QUIT is received */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000721 new_init_action(RESTART, "init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000722 /* Askfirst shell on tty1-4 */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000723 new_init_action(ASKFIRST, bb_default_login_shell, "");
724 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
725 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
726 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000727 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000728 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000729
Erik Andersene49d5ec2000-02-08 19:58:47 +0000730 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000731 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000732
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000733 while (fgets(buf, COMMAND_SIZE, file) != NULL) {
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000734 static const char actions[] =
735 STR_SYSINIT "sysinit\0"
736 STR_RESPAWN "respawn\0"
737 STR_ASKFIRST "askfirst\0"
738 STR_WAIT "wait\0"
739 STR_ONCE "once\0"
740 STR_CTRLALTDEL "ctrlaltdel\0"
741 STR_SHUTDOWN "shutdown\0"
742 STR_RESTART "restart\0"
743 ;
744 char tmpConsole[CONSOLE_NAME_SIZE];
745 char *id, *runlev, *action, *command;
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000746 const char *a;
747
Eric Andersenb5966362000-05-31 20:04:38 +0000748 /* Skip leading spaces */
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000749 id = skip_whitespace(buf);
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000750 /* Trim the trailing '\n' */
751 *strchrnul(id, '\n') = '\0';
Denis Vlasenkoc882f342008-01-29 09:56:21 +0000752 /* Skip the line if it is a comment */
753 if (*id == '#' || *id == '\0')
754 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000755
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000756 /* Line is: "id:runlevel_ignored:action:command" */
Eric Andersenb5966362000-05-31 20:04:38 +0000757 runlev = strchr(id, ':');
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000758 if (runlev == NULL /*|| runlev[1] == '\0' - not needed */)
759 goto bad_entry;
760 action = strchr(runlev + 1, ':');
761 if (action == NULL /*|| action[1] == '\0' - not needed */)
762 goto bad_entry;
763 command = strchr(action + 1, ':');
764 if (command == NULL || command[1] == '\0')
765 goto bad_entry;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000766
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000767 *command = '\0'; /* action => ":action\0" now */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000768 for (a = actions; a[0]; a += strlen(a) + 1) {
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000769 if (strcmp(a + 1, action + 1) == 0) {
770 *runlev = '\0';
Eric Andersenb5966362000-05-31 20:04:38 +0000771 if (*id != '\0') {
Denis Vlasenko51742f42007-04-12 00:32:05 +0000772 if (strncmp(id, "/dev/", 5) == 0)
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000773 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000774 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000775 safe_strncpy(tmpConsole + 5, id,
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000776 sizeof(tmpConsole) - 5);
Eric Andersenb5966362000-05-31 20:04:38 +0000777 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000778 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000779 new_init_action((uint8_t)a[0], command + 1, id);
780 goto next_line;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000781 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000782 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000783 *command = ':';
784 /* Choke on an unknown action */
785 bad_entry:
786 message(L_LOG | L_CONSOLE, "Bad inittab entry: %s", id);
787 next_line: ;
Erik Andersen7dc16072000-01-04 01:10:25 +0000788 }
Eric Andersend8636ca2002-05-15 22:19:09 +0000789 fclose(file);
Erik Andersen7dc16072000-01-04 01:10:25 +0000790}
791
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000792#if ENABLE_FEATURE_USE_INITTAB
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000793static void reload_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen6fd0e312003-07-22 09:48:56 +0000794{
Eric Andersen82baf632004-10-08 08:21:54 +0000795 struct init_action *a, *tmp;
796
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000797 message(L_LOG, "reloading /etc/inittab");
Eric Andersen82baf632004-10-08 08:21:54 +0000798
799 /* disable old entrys */
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000800 for (a = init_action_list; a; a = a->next) {
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000801 a->action_type = ONCE;
Eric Andersen82baf632004-10-08 08:21:54 +0000802 }
803
804 parse_inittab();
805
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000806 if (ENABLE_FEATURE_KILL_REMOVED) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000807 /* Be nice and send SIGTERM first */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000808 for (a = init_action_list; a; a = a->next) {
809 pid_t pid = a->pid;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000810 if ((a->action_type & ONCE) && pid != 0) {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000811 kill(pid, SIGTERM);
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000812 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000813 }
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000814#if CONFIG_FEATURE_KILL_DELAY
Denis Vlasenko671ca332008-02-19 14:13:20 +0000815 /* NB: parent will wait in NOMMU case */
816 if ((BB_MMU ? fork() : vfork()) == 0) { /* child */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000817 sleep(CONFIG_FEATURE_KILL_DELAY);
818 for (a = init_action_list; a; a = a->next) {
819 pid_t pid = a->pid;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000820 if ((a->action_type & ONCE) && pid != 0) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000821 kill(pid, SIGKILL);
822 }
823 }
824 _exit(0);
825 }
826#endif
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000827 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000828
Eric Andersen82baf632004-10-08 08:21:54 +0000829 /* remove unused entrys */
830 for (a = init_action_list; a; a = tmp) {
831 tmp = a->next;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000832 if ((a->action_type & (ONCE | SYSINIT | WAIT)) && a->pid == 0) {
Eric Andersen82baf632004-10-08 08:21:54 +0000833 delete_init_action(a);
834 }
835 }
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000836 run_actions(RESPAWN | ASKFIRST);
Eric Andersen6fd0e312003-07-22 09:48:56 +0000837}
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000838#endif
Eric Andersen82baf632004-10-08 08:21:54 +0000839
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000840int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000841int init_main(int argc ATTRIBUTE_UNUSED, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000842{
Eric Andersen0298be82002-03-05 15:12:19 +0000843 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000844 pid_t wpid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000845
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000846 die_sleep = 30 * 24*60*60; /* if xmalloc will ever die... */
847
Denis Vlasenko1d426652008-03-17 09:09:09 +0000848 if (argv[1] && !strcmp(argv[1], "-q")) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000849 return kill(1, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +0000850 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000851
852 if (!ENABLE_DEBUG_INIT) {
853 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
854 if (getpid() != 1
855 && (!ENABLE_FEATURE_INITRD || !strstr(applet_name, "linuxrc"))
856 ) {
857 bb_show_usage();
858 }
859 /* Set up sig handlers -- be sure to
860 * clear all of these in run() */
Denis Vlasenko99a61842008-02-19 12:08:38 +0000861 signal(SIGQUIT, exec_restart_action);
Denis Vlasenko25591c32008-02-16 22:58:56 +0000862 bb_signals(0
863 + (1 << SIGUSR1) /* halt */
864 + (1 << SIGUSR2) /* poweroff */
865 + (1 << SIGTERM) /* reboot */
866 , halt_reboot_pwoff);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000867 signal(SIGINT, ctrlaltdel_signal);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000868 signal(SIGCONT, cont_handler);
Denis Vlasenko25591c32008-02-16 22:58:56 +0000869 bb_signals(0
870 + (1 << SIGSTOP)
871 + (1 << SIGTSTP)
872 , stop_handler);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000873
874 /* Turn off rebooting via CTL-ALT-DEL -- we get a
875 * SIGINT on CAD so we can shut things down gracefully... */
876 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000877 }
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000878
Eric Andersen599e3ce2002-07-03 11:08:10 +0000879 /* Figure out where the default console should be */
880 console_init();
Denis Vlasenkod238a472007-03-05 19:22:04 +0000881 set_sane_term();
Erik Andersen983b51b2000-04-04 18:14:25 +0000882 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000883 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000884 {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000885 const char *const *e;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000886 /* Make sure environs is set to something sane */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000887 for (e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000888 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000889 }
Rob Landleycba1b962006-07-09 17:28:17 +0000890
Denis Vlasenko1d426652008-03-17 09:09:09 +0000891 if (argv[1]) setenv("RUNLEVEL", argv[1], 1);
Rob Landleycba1b962006-07-09 17:28:17 +0000892
Erik Andersene49d5ec2000-02-08 19:58:47 +0000893 /* Hello world */
Denis Vlasenkoca525b42007-06-13 12:27:17 +0000894 message(MAYBE_CONSOLE | L_LOG, "init started: %s", bb_banner);
Eric Andersencc8ed391999-10-05 16:24:54 +0000895
Erik Andersene49d5ec2000-02-08 19:58:47 +0000896 /* Make sure there is enough memory to do something useful. */
Rob Landleyc3386a42005-08-30 18:50:37 +0000897 if (ENABLE_SWAPONOFF) {
898 struct sysinfo info;
899
900 if (!sysinfo(&info) &&
Denis Vlasenkodca0b702006-10-27 09:05:02 +0000901 (info.mem_unit ? : 1) * (long long)info.totalram < 1024*1024)
Rob Landleyc3386a42005-08-30 18:50:37 +0000902 {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000903 message(L_CONSOLE, "Low memory, forcing swapon");
Rob Landleyc3386a42005-08-30 18:50:37 +0000904 /* swapon -a requires /proc typically */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000905 new_init_action(SYSINIT, "mount -t proc proc /proc", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000906 /* Try to turn on swap */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000907 new_init_action(SYSINIT, "swapon -a", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000908 run_actions(SYSINIT); /* wait and removing */
909 }
910 }
Erik Andersen9e737252000-01-06 01:16:13 +0000911
Erik Andersene49d5ec2000-02-08 19:58:47 +0000912 /* Check if we are supposed to be in single user mode */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000913 if (argv[1]
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000914 && (!strcmp(argv[1], "single") || !strcmp(argv[1], "-s") || LONE_CHAR(argv[1], '1'))
915 ) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000916 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000917 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000918 } else {
919 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000920
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000921 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000922 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000923 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +0000924 * of "askfirst" shells */
925 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000926 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000927
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000928#if ENABLE_SELINUX
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000929 if (getenv("SELINUX_INIT") == NULL) {
930 int enforce = 0;
931
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000932 putenv((char*)"SELINUX_INIT=YES");
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000933 if (selinux_init_load_policy(&enforce) == 0) {
Denis Vlasenko4921b542007-02-03 02:17:41 +0000934 BB_EXECVP(argv[0], argv);
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000935 } else if (enforce > 0) {
936 /* SELinux in enforcing mode but load_policy failed */
Denis Vlasenkob7167542007-02-27 19:20:00 +0000937 message(L_CONSOLE, "Cannot load SELinux Policy. "
938 "Machine is in enforcing mode. Halting now.");
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000939 exit(1);
940 }
941 }
942#endif /* CONFIG_SELINUX */
943
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000944 /* Make the command line just say "init" - thats all, nothing else */
945 strncpy(argv[0], "init", strlen(argv[0]));
946 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
947 while (*++argv)
948 memset(*argv, 0, strlen(*argv));
Eric Andersen219d6f51999-11-02 19:43:01 +0000949
Erik Andersene49d5ec2000-02-08 19:58:47 +0000950 /* Now run everything that needs to be run */
951
952 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +0000953 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000954
Erik Andersene49d5ec2000-02-08 19:58:47 +0000955 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +0000956 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000957
Erik Andersene49d5ec2000-02-08 19:58:47 +0000958 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +0000959 run_actions(ONCE);
960
Eric Andersen6fd0e312003-07-22 09:48:56 +0000961 /* Redefine SIGHUP to reread /etc/inittab */
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000962#if ENABLE_FEATURE_USE_INITTAB
963 signal(SIGHUP, reload_signal);
964#else
965 signal(SIGHUP, SIG_IGN);
966#endif
Eric Andersen82baf632004-10-08 08:21:54 +0000967
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 /* Now run the looping stuff for the rest of forever */
969 while (1) {
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000970 /* run the respawn/askfirst stuff */
971 run_actions(RESPAWN | ASKFIRST);
Eric Andersen0298be82002-03-05 15:12:19 +0000972
973 /* Don't consume all CPU time -- sleep a bit */
974 sleep(1);
975
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000976 /* Wait for any child process to exit */
Bernhard Reutner-Fischerc58dbf22006-05-30 12:16:54 +0000977 wpid = wait(NULL);
Eric Andersen87812dc2004-04-12 19:21:54 +0000978 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000979 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +0000980 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000981 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000982 /* Set the pid to 0 so that the process gets
983 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000984 a->pid = 0;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000985 message(L_LOG, "process '%s' (pid %d) exited. "
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000986 "Scheduling for restart.",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000987 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000988 }
989 }
Eric Andersencf1fee02002-12-17 09:48:16 +0000990 /* see if anyone else is waiting to be reaped */
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000991 wpid = wait_any_nohang(NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000992 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000993 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000994}