blob: e00a3b128796aa5ffee8b36a59c40a302a186ffa [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
Eric Andersen0298be82002-03-05 15:12:19 +000046/* Set up a linked list of init_actions, to be read from inittab */
47struct init_action {
Eric Andersen0298be82002-03-05 15:12:19 +000048 struct init_action *next;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000049 pid_t pid;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +000050 uint8_t action_type;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000051 char terminal[CONSOLE_NAME_SIZE];
Denis Vlasenkoa37e7132008-02-19 02:57:07 +000052 char command[COMMAND_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +000053};
Erik Andersen7dc16072000-01-04 01:10:25 +000054
Eric Andersen0298be82002-03-05 15:12:19 +000055/* Static variables */
56static struct init_action *init_action_list = NULL;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000057
Denis Vlasenko4c978632007-02-03 03:31:13 +000058static const char *log_console = VC_5;
Eric Andersen0298be82002-03-05 15:12:19 +000059static sig_atomic_t got_cont = 0;
Rob Landleybc68cd12006-03-10 19:22:06 +000060
61enum {
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000062 L_LOG = 0x1,
63 L_CONSOLE = 0x2,
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000064
Denis Vlasenko9b1381f2007-01-03 02:56:00 +000065#if ENABLE_FEATURE_EXTRA_QUIET
Rob Landleybc68cd12006-03-10 19:22:06 +000066 MAYBE_CONSOLE = 0x0,
Eric Andersen0298be82002-03-05 15:12:19 +000067#else
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000068 MAYBE_CONSOLE = L_CONSOLE,
Eric Andersen0298be82002-03-05 15:12:19 +000069#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000070
Rob Landleybc68cd12006-03-10 19:22:06 +000071#ifndef RB_HALT_SYSTEM
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +000072 RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */
Rob Landleybc68cd12006-03-10 19:22:06 +000073 RB_ENABLE_CAD = 0x89abcdef,
74 RB_DISABLE_CAD = 0,
75 RB_POWER_OFF = 0x4321fedc,
76 RB_AUTOBOOT = 0x01234567,
Eric Andersen0298be82002-03-05 15:12:19 +000077#endif
Rob Landleybc68cd12006-03-10 19:22:06 +000078};
Erik Andersen42094cd2000-03-20 21:34:52 +000079
Eric Andersen0298be82002-03-05 15:12:19 +000080/* Function prototypes */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000081static void halt_reboot_pwoff(int sig) NORETURN;
Eric Andersen0460ff21999-10-25 23:32:44 +000082
Denis Vlasenko21e20cb2008-01-04 15:10:47 +000083static void waitfor(pid_t pid)
Denis Vlasenkofb0eba72008-01-02 19:55:04 +000084{
Denis Vlasenko21e20cb2008-01-04 15:10:47 +000085 /* waitfor(run(x)): protect against failed fork inside run() */
86 if (pid <= 0)
87 return;
88
89 /* Wait for any child (prevent zombies from exiting orphaned processes)
90 * but exit the loop only when specified one has exited. */
91 while (wait(NULL) != pid)
92 continue;
Denis Vlasenkofb0eba72008-01-02 19:55:04 +000093}
94
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000095static void loop_forever(void) NORETURN;
Eric Andersen74400cc2001-10-18 04:11:39 +000096static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +000097{
98 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000099 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000100}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000101
Erik Andersen42094cd2000-03-20 21:34:52 +0000102/* Print a message to the specified device.
Denis Vlasenko671ca332008-02-19 14:13:20 +0000103 * "where" may be bitwise-or'd from L_LOG | L_CONSOLE
104 * NB: careful, we can be called after vfork!
105 */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000106#define messageD(...) do { if (ENABLE_DEBUG_INIT) message(__VA_ARGS__); } while (0)
Denis Vlasenko671ca332008-02-19 14:13:20 +0000107static void message(int where, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000108 __attribute__ ((format(printf, 2, 3)));
Denis Vlasenko671ca332008-02-19 14:13:20 +0000109static void message(int where, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000110{
Eric Andersen22237012003-01-23 07:08:26 +0000111 static int log_fd = -1;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000112 va_list arguments;
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +0000113 unsigned l;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000114 char msg[128];
115
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000116 msg[0] = '\r';
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000117 va_start(arguments, fmt);
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +0000118 l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments);
119 if (l > sizeof(msg) - 2)
120 l = sizeof(msg) - 2;
121 msg[l] = '\0';
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000122 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000123
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000124 if (ENABLE_FEATURE_INIT_SYSLOG) {
125 /* Log the message to syslogd */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000126 if (where & L_LOG) {
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000127 /* don't print out "\r" */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000128 openlog(applet_name, 0, LOG_DAEMON);
129 syslog(LOG_INFO, "init: %s", msg + 1);
130 closelog();
131 }
132 msg[l++] = '\n';
133 msg[l] = '\0';
134 } else {
135 msg[l++] = '\n';
136 msg[l] = '\0';
137 /* Take full control of the log tty, and never close it.
138 * It's mine, all mine! Muhahahaha! */
139 if (log_fd < 0) {
140 if (!log_console) {
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000141 log_fd = STDERR_FILENO;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000142 } else {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000143 log_fd = device_open(log_console, O_WRONLY | O_NONBLOCK | O_NOCTTY);
144 if (log_fd < 0) {
145 bb_error_msg("can't log to %s", log_console);
Denis Vlasenko671ca332008-02-19 14:13:20 +0000146 where = L_CONSOLE;
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000147 } else {
148 close_on_exec_on(log_fd);
149 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000150 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151 }
Denis Vlasenko671ca332008-02-19 14:13:20 +0000152 if (where & L_LOG) {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000153 full_write(log_fd, msg, l);
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000154 if (log_fd == STDERR_FILENO)
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000155 return; /* don't print dup messages */
156 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000157 }
Eric Andersen4c781471999-11-26 08:12:56 +0000158
Denis Vlasenko671ca332008-02-19 14:13:20 +0000159 if (where & L_CONSOLE) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000160 /* Send console messages to console so people will see them. */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000161 full_write(STDERR_FILENO, msg, l);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000162 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000163}
164
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000165/* From <linux/serial.h> */
166struct serial_struct {
167 int type;
168 int line;
169 unsigned int port;
170 int irq;
171 int flags;
172 int xmit_fifo_size;
173 int custom_divisor;
174 int baud_base;
175 unsigned short close_delay;
176 char io_type;
177 char reserved_char[1];
178 int hub6;
179 unsigned short closing_wait; /* time to wait before closing */
180 unsigned short closing_wait2; /* no longer used... */
181 unsigned char *iomem_base;
182 unsigned short iomem_reg_shift;
183 unsigned int port_high;
184 unsigned long iomap_base; /* cookie passed into ioremap */
185 int reserved[1];
186 /* Paranoia (imagine 64bit kernel overwriting 32bit userspace stack) */
187 uint32_t bbox_reserved[16];
188};
Eric Andersen74400cc2001-10-18 04:11:39 +0000189static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000190{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191 struct serial_struct sr;
192 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000193
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000194 s = getenv("CONSOLE");
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000195 if (!s)
196 s = getenv("console");
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000197 if (s) {
198 int fd = open(s, O_RDWR | O_NONBLOCK | O_NOCTTY);
199 if (fd >= 0) {
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000200 dup2(fd, STDIN_FILENO);
201 dup2(fd, STDOUT_FILENO);
202 xmove_fd(fd, STDERR_FILENO);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000204 messageD(L_LOG, "console='%s'", s);
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000205 } else {
Denis Vlasenkofb274df2008-03-17 13:26:51 +0000206 /* Make sure fd 0,1,2 are not closed
207 * (so that they won't be used by future opens) */
Denis Vlasenkod48e81f2008-07-06 07:00:11 +0000208 bb_sanitize_stdio();
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +0000209 /* Make sure init can't be blocked by writing to stderr */
210 fcntl(STDERR_FILENO, F_SETFL, fcntl(STDERR_FILENO, F_GETFL) | O_NONBLOCK);
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");
Denis Vlasenkoe421b5e2008-03-17 22:01:42 +0000214 if (ioctl(STDIN_FILENO, 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 Vlasenko671ca332008-02-19 14:13:20 +0000225/* Set terminal settings to reasonable defaults.
226 * NB: careful, we can be called after vfork! */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000227static void set_sane_term(void)
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000228{
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000229 struct termios tty;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000230
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000231 tcgetattr(STDIN_FILENO, &tty);
232
233 /* set control chars */
234 tty.c_cc[VINTR] = 3; /* C-c */
235 tty.c_cc[VQUIT] = 28; /* C-\ */
236 tty.c_cc[VERASE] = 127; /* C-? */
237 tty.c_cc[VKILL] = 21; /* C-u */
238 tty.c_cc[VEOF] = 4; /* C-d */
239 tty.c_cc[VSTART] = 17; /* C-q */
240 tty.c_cc[VSTOP] = 19; /* C-s */
241 tty.c_cc[VSUSP] = 26; /* C-z */
242
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000243 /* use line discipline 0 */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000244 tty.c_line = 0;
245
246 /* Make it be sane */
247 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
248 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
249
250 /* input modes */
251 tty.c_iflag = ICRNL | IXON | IXOFF;
252
253 /* output modes */
254 tty.c_oflag = OPOST | ONLCR;
255
256 /* local modes */
257 tty.c_lflag =
258 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
259
260 tcsetattr(STDIN_FILENO, TCSANOW, &tty);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000261}
262
Denis Vlasenko671ca332008-02-19 14:13:20 +0000263/* Open the new terminal device.
264 * NB: careful, we can be called after vfork! */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000265static void open_stdio_to_tty(const char* tty_name, int exit_on_failure)
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000266{
267 /* empty tty_name means "use init's tty", else... */
268 if (tty_name[0]) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000269 int fd;
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000270 close(STDIN_FILENO);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000271 /* fd can be only < 0 or 0: */
272 fd = device_open(tty_name, O_RDWR);
273 if (fd) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000274 message(L_LOG | L_CONSOLE, "can't open %s: %s",
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000275 tty_name, strerror(errno));
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000276 if (exit_on_failure)
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000277 _exit(EXIT_FAILURE);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000278 if (ENABLE_DEBUG_INIT)
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000279 _exit(2);
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000280 /* NB: we don't reach this if we were called after vfork.
281 * Thus halt_reboot_pwoff() itself need not be vfork-safe. */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000282 halt_reboot_pwoff(SIGUSR1); /* halt the system */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000283 }
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000284 dup2(STDIN_FILENO, STDOUT_FILENO);
285 dup2(STDIN_FILENO, STDERR_FILENO);
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000286 }
Denis Vlasenkod238a472007-03-05 19:22:04 +0000287 set_sane_term();
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000288}
289
Denis Vlasenko671ca332008-02-19 14:13:20 +0000290/* Wrapper around exec:
291 * Takes string (max COMMAND_SIZE chars).
292 * If chars like '>' detected, execs '[-]/bin/sh -c "exec ......."'.
293 * Otherwise splits words on whitespace, deals with leading dash,
294 * and uses plain exec().
295 * NB: careful, we can be called after vfork!
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000296 */
297static void init_exec(const char *command)
298{
299 char *cmd[COMMAND_SIZE / 2];
300 char buf[COMMAND_SIZE + 6]; /* COMMAND_SIZE+strlen("exec ")+1 */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000301 int dash = (command[0] == '-' /* maybe? && command[1] == '/' */);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000302
303 /* See if any special /bin/sh requiring characters are present */
304 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
305 strcpy(buf, "exec ");
306 strcpy(buf + 5, command + dash); /* excluding "-" */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000307 /* NB: LIBBB_DEFAULT_LOGIN_SHELL define has leading dash */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000308 cmd[0] = (char*)(LIBBB_DEFAULT_LOGIN_SHELL + !dash);
309 cmd[1] = (char*)"-c";
310 cmd[2] = buf;
311 cmd[3] = NULL;
312 } else {
313 /* Convert command (char*) into cmd (char**, one word per string) */
314 char *word, *next;
315 int i = 0;
316 next = strcpy(buf, command); /* including "-" */
317 while ((word = strsep(&next, " \t")) != NULL) {
318 if (*word != '\0') { /* not two spaces/tabs together? */
319 cmd[i] = word;
320 i++;
321 }
322 }
323 cmd[i] = NULL;
324 }
325 /* If we saw leading "-", it is interactive shell.
326 * Try harder to give it a controlling tty.
327 * And skip "-" in actual exec call. */
328 if (dash) {
329 /* _Attempt_ to make stdin a controlling tty. */
330 if (ENABLE_FEATURE_INIT_SCTTY)
331 ioctl(STDIN_FILENO, TIOCSCTTY, 0 /*only try, don't steal*/);
332 }
333 BB_EXECVP(cmd[0] + dash, cmd);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000334 message(L_LOG | L_CONSOLE, "cannot run '%s': %s", cmd[0], strerror(errno));
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000335 /* returns if execvp fails */
336}
337
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000338/* Used only by run_actions */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000339static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000340{
Mike Frysinger10427ab2005-07-06 05:00:48 +0000341 pid_t pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000342 sigset_t nmask, omask;
Erik Andersenac6e71f2000-01-08 22:04:33 +0000343
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000344 /* Block sigchild while forking (why?) */
Eric Andersen0298be82002-03-05 15:12:19 +0000345 sigemptyset(&nmask);
346 sigaddset(&nmask, SIGCHLD);
347 sigprocmask(SIG_BLOCK, &nmask, &omask);
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000348 if (BB_MMU && (a->action_type & ASKFIRST))
349 pid = fork();
350 else
351 pid = vfork();
Denis Vlasenko966bb432007-02-27 19:20:33 +0000352 sigprocmask(SIG_SETMASK, &omask, NULL);
Eric Andersen0298be82002-03-05 15:12:19 +0000353
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000354 if (pid < 0)
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000355 message(L_LOG | L_CONSOLE, "can't fork");
Denis Vlasenko966bb432007-02-27 19:20:33 +0000356 if (pid)
357 return pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000358
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000359 /* Child */
360
Denis Vlasenko966bb432007-02-27 19:20:33 +0000361 /* Reset signal handlers that were set by the parent process */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000362 bb_signals(0
363 + (1 << SIGUSR1)
364 + (1 << SIGUSR2)
365 + (1 << SIGINT)
366 + (1 << SIGTERM)
367 + (1 << SIGHUP)
368 + (1 << SIGQUIT)
369 + (1 << SIGCONT)
370 + (1 << SIGSTOP)
371 + (1 << SIGTSTP)
372 , SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000373
Denis Vlasenko966bb432007-02-27 19:20:33 +0000374 /* Create a new session and make ourself the process
375 * group leader */
376 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000377
Denis Vlasenko966bb432007-02-27 19:20:33 +0000378 /* Open the new terminal device */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000379 open_stdio_to_tty(a->terminal, 1 /* - exit if open fails */);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000380
Denis Vlasenko671ca332008-02-19 14:13:20 +0000381// NB: do not enable unless you change vfork to fork above
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000382#ifdef BUT_RUN_ACTIONS_ALREADY_DOES_WAITING
Denis Vlasenko966bb432007-02-27 19:20:33 +0000383 /* If the init Action requires us to wait, then force the
384 * supplied terminal to be the controlling tty. */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000385 if (a->action_type & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000386 /* Now fork off another process to just hang around */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000387 pid = fork();
Denis Vlasenkof6ccc622007-11-10 01:57:35 +0000388 if (pid < 0) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000389 message(L_LOG | L_CONSOLE, "can't fork");
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000390 _exit(EXIT_FAILURE);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000391 }
392
393 if (pid > 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000394 /* Parent - wait till the child is done */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000395 bb_signals(0
396 + (1 << SIGINT)
397 + (1 << SIGTSTP)
398 + (1 << SIGQUIT)
399 , SIG_IGN);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000400 signal(SIGCHLD, SIG_DFL);
401
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000402 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000403 /* See if stealing the controlling tty back is necessary */
404 if (tcgetpgrp(0) != getpid())
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000405 _exit(EXIT_SUCCESS);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000406
407 /* Use a temporary process to steal the controlling tty. */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000408 pid = fork();
409 if (pid < 0) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000410 message(L_LOG | L_CONSOLE, "can't fork");
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000411 _exit(EXIT_FAILURE);
Eric Andersen0298be82002-03-05 15:12:19 +0000412 }
Denis Vlasenko966bb432007-02-27 19:20:33 +0000413 if (pid == 0) {
414 setsid();
415 ioctl(0, TIOCSCTTY, 1);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000416 _exit(EXIT_SUCCESS);
Eric Andersen0298be82002-03-05 15:12:19 +0000417 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000418 waitfor(pid);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000419 _exit(EXIT_SUCCESS);
Eric Andersen0298be82002-03-05 15:12:19 +0000420 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000421 /* Child - fall though to actually execute things */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000422 }
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000423#endif
Denis Vlasenko671ca332008-02-19 14:13:20 +0000424
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000425 /* NB: on NOMMU we can't wait for input in child, so
426 * "askfirst" will work the same as "respawn". */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000427 if (BB_MMU && (a->action_type & ASKFIRST)) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000428 static const char press_enter[] ALIGN1 =
Denis Vlasenko966bb432007-02-27 19:20:33 +0000429#ifdef CUSTOMIZED_BANNER
430#include CUSTOMIZED_BANNER
Eric Andersen1f50e842004-08-16 09:29:42 +0000431#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000432 "\nPlease press Enter to activate this console. ";
433 char c;
434 /*
435 * Save memory by not exec-ing anything large (like a shell)
436 * before the user wants it. This is critical if swap is not
437 * enabled and the system has low memory. Generally this will
438 * be run on the second virtual console, and the first will
439 * be allowed to start a shell or whatever an init script
440 * specifies.
441 */
442 messageD(L_LOG, "waiting for enter to start '%s'"
443 "(pid %d, tty '%s')\n",
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000444 a->command, getpid(), a->terminal);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000445 full_write(STDOUT_FILENO, press_enter, sizeof(press_enter) - 1);
446 while (safe_read(STDIN_FILENO, &c, 1) == 1 && c != '\n')
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000447 continue;
Denis Vlasenko966bb432007-02-27 19:20:33 +0000448 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000449
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000450 if (ENABLE_FEATURE_INIT_COREDUMPS) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000451 struct stat sb;
452 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
453 struct rlimit limit;
Denis Vlasenko966bb432007-02-27 19:20:33 +0000454 limit.rlim_cur = RLIM_INFINITY;
455 limit.rlim_max = RLIM_INFINITY;
456 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000457 }
Erik Andersen05df2392000-01-13 04:43:48 +0000458 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000459
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000460 /* Log the process name and args */
461 message(L_LOG, "starting pid %d, tty '%s': '%s'",
462 getpid(), a->terminal, a->command);
463
Denis Vlasenko966bb432007-02-27 19:20:33 +0000464 /* Now run it. The new program will take over this PID,
465 * so nothing further in init.c should be run. */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000466 init_exec(a->command);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000467 /* We're still here? Some error happened. */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000468 _exit(-1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000469}
470
Bernhard Reutner-Fischer52593612008-07-21 11:53:04 +0000471static void delete_init_action(struct init_action *action)
472{
473 struct init_action *a, *b = NULL;
474
475 for (a = init_action_list; a; b = a, a = a->next) {
476 if (a == action) {
477 if (b == NULL) {
478 init_action_list = a->next;
479 } else {
480 b->next = a->next;
481 }
482 free(a);
483 break;
484 }
485 }
486}
487
Eric Andersen0298be82002-03-05 15:12:19 +0000488/* Run all commands of a particular type */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000489static void run_actions(int action_type)
Eric Andersen219d6f51999-11-02 19:43:01 +0000490{
Eric Andersen0298be82002-03-05 15:12:19 +0000491 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000492
Eric Andersen0298be82002-03-05 15:12:19 +0000493 for (a = init_action_list; a; a = tmp) {
494 tmp = a->next;
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000495 if (a->action_type & action_type) {
Denis Vlasenkod7e2e122007-12-10 08:40:29 +0000496 // Pointless: run() will error out if open of device fails.
497 ///* a->terminal of "" means "init's console" */
498 //if (a->terminal[0] && access(a->terminal, R_OK | W_OK)) {
499 // //message(L_LOG | L_CONSOLE, "Device %s cannot be opened in RW mode", a->terminal /*, strerror(errno)*/);
500 // delete_init_action(a);
501 //} else
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000502 if (a->action_type & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000503 waitfor(run(a));
Eric Andersen0298be82002-03-05 15:12:19 +0000504 delete_init_action(a);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000505 } else if (a->action_type & ONCE) {
Eric Andersen0298be82002-03-05 15:12:19 +0000506 run(a);
507 delete_init_action(a);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000508 } else if (a->action_type & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000509 /* Only run stuff with pid==0. If they have
510 * a pid, that means it is still running */
511 if (a->pid == 0) {
512 a->pid = run(a);
513 }
514 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000515 }
516 }
517}
518
Eric Andersen2c1de612003-04-24 11:41:28 +0000519static void init_reboot(unsigned long magic)
520{
521 pid_t pid;
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000522 /* We have to fork here, since the kernel calls do_exit(EXIT_SUCCESS) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000523 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000524 * the init process is killed.... */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000525 pid = vfork();
526 if (pid == 0) { /* child */
Eric Andersen2c1de612003-04-24 11:41:28 +0000527 reboot(magic);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000528 _exit(EXIT_SUCCESS);
Eric Andersen2c1de612003-04-24 11:41:28 +0000529 }
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000530 waitfor(pid);
Eric Andersen2c1de612003-04-24 11:41:28 +0000531}
532
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000533static void kill_all_processes(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000534{
Eric Andersena9cc8962002-09-16 06:49:06 +0000535 /* run everything to be run at "shutdown". This is done _prior_
536 * to killing everything, in case people wish to use scripts to
537 * shut things down gracefully... */
538 run_actions(SHUTDOWN);
539
Eric Andersen72f9a422001-10-28 05:12:20 +0000540 /* first disable all our signals */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000541 sigprocmask_allsigs(SIG_BLOCK);
Erik Andersen7dc16072000-01-04 01:10:25 +0000542
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000543 message(L_CONSOLE | L_LOG, "The system is going down NOW!");
544
Erik Andersene49d5ec2000-02-08 19:58:47 +0000545 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000546 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000547
Erik Andersene49d5ec2000-02-08 19:58:47 +0000548 /* Send signals to every process _except_ pid 1 */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000549 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "TERM");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000550 kill(-1, SIGTERM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000551 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000552 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000553
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000554 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "KILL");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000555 kill(-1, SIGKILL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000556 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000557 sleep(1);
Eric Andersencc8ed391999-10-05 16:24:54 +0000558}
559
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000560static void halt_reboot_pwoff(int sig)
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000561{
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000562 const char *m = "halt";
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000563 int rb;
564
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000565 kill_all_processes();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000566
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000567 rb = RB_HALT_SYSTEM;
568 if (sig == SIGTERM) {
569 m = "reboot";
570 rb = RB_AUTOBOOT;
571 } else if (sig == SIGUSR2) {
572 m = "poweroff";
573 rb = RB_POWER_OFF;
574 }
575 message(L_CONSOLE | L_LOG, "Requesting system %s", m);
576 /* allow time for last message to reach serial console */
577 sleep(2);
578 init_reboot(rb);
579 loop_forever();
580}
581
Denis Vlasenkoa58a6372008-02-19 12:10:18 +0000582/* Handler for QUIT - exec "restart" action,
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000583 * else (no such action defined) do nothing */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000584static void exec_restart_action(int sig UNUSED_PARAM)
Eric Andersen730f8262001-12-17 23:13:08 +0000585{
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000586 struct init_action *a;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000587
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000588 for (a = init_action_list; a; a = a->next) {
589 if (a->action_type & RESTART) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000590 kill_all_processes();
Eric Andersen5222d312002-07-03 05:15:23 +0000591
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000592 /* unblock all signals (blocked in kill_all_processes()) */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000593 sigprocmask_allsigs(SIG_UNBLOCK);
Eric Andersen5222d312002-07-03 05:15:23 +0000594
Eric Andersen3c8064f2003-07-05 08:29:01 +0000595 /* Open the new terminal device */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000596 open_stdio_to_tty(a->terminal, 0 /* - halt if open fails */);
Eric Andersen3c8064f2003-07-05 08:29:01 +0000597
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000598 messageD(L_CONSOLE | L_LOG, "Trying to re-exec %s", a->command);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000599 init_exec(a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000600 sleep(2);
601 init_reboot(RB_HALT_SYSTEM);
602 loop_forever();
603 }
604 }
605}
606
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000607static void ctrlaltdel_signal(int sig UNUSED_PARAM)
Eric Andersenc97ec342001-04-03 18:01:51 +0000608{
609 run_actions(CTRLALTDEL);
610}
611
Eric Andersen0298be82002-03-05 15:12:19 +0000612/* The SIGSTOP & SIGTSTP handler */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000613static void stop_handler(int sig UNUSED_PARAM)
Eric Andersened8a9be2001-11-30 19:10:58 +0000614{
Eric Andersen0298be82002-03-05 15:12:19 +0000615 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000616
617 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000618 while (!got_cont)
619 pause();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000620
Eric Andersened8a9be2001-11-30 19:10:58 +0000621 errno = saved_errno;
622}
623
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000624/* The SIGCONT handler */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000625static void cont_handler(int sig UNUSED_PARAM)
Eric Andersened8a9be2001-11-30 19:10:58 +0000626{
627 got_cont = 1;
628}
629
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000630static void new_init_action(uint8_t action_type, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000631{
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000632 struct init_action *a, *last;
Erik Andersen9e737252000-01-06 01:16:13 +0000633
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000634// Why?
635// if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
636// return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000637
Eric Andersen0298be82002-03-05 15:12:19 +0000638 /* Append to the end of the list */
Eric Andersen22718092004-10-08 08:17:39 +0000639 for (a = last = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000640 /* don't enter action if it's already in the list,
641 * but do overwrite existing actions */
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000642 if ((strcmp(a->command, command) == 0)
Denis Vlasenkob74a2db2008-07-21 21:34:51 +0000643 && (strcmp(a->terminal, cons) == 0)
644 ) {
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000645 a->action_type = action_type;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000646 return;
647 }
Eric Andersen22718092004-10-08 08:17:39 +0000648 last = a;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000649 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000650
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000651 a = xzalloc(sizeof(*a));
Eric Andersen22718092004-10-08 08:17:39 +0000652 if (last) {
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000653 last->next = a;
Eric Andersen1644db92001-09-05 20:18:15 +0000654 } else {
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000655 init_action_list = a;
Eric Andersen1644db92001-09-05 20:18:15 +0000656 }
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000657 a->action_type = action_type;
658 safe_strncpy(a->command, command, sizeof(a->command));
659 safe_strncpy(a->terminal, cons, sizeof(a->terminal));
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000660 messageD(L_LOG | L_CONSOLE, "command='%s' action=%d tty='%s'\n",
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000661 a->command, a->action_type, a->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000662}
663
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000664/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000665 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000666 * actions(i.e., runs INIT_SCRIPT and then starts a pair
667 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
668 * _is_ defined, but /etc/inittab is missing, this
Erik Andersen812d4662000-01-07 18:30:40 +0000669 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000670 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000671static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000672{
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000673 char *token[4];
Denis Vlasenkoa474b682008-07-17 17:58:44 +0000674 /* order must correspond to SYSINIT..RESTART constants */
675 static const char actions[] ALIGN1 =
676 "sysinit\0""respawn\0""askfirst\0""wait\0""once\0"
677 "ctrlaltdel\0""shutdown\0""restart\0";
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000678
Denis Vlasenko5415c852008-07-21 23:05:26 +0000679 parser_t *parser = config_open2(INITTAB, fopen_for_read);
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000680 /* No inittab file -- set up some default behavior */
681 if (parser == NULL) {
682 /* Reboot on Ctrl-Alt-Del */
683 new_init_action(CTRLALTDEL, "reboot", "");
684 /* Umount all filesystems on halt/reboot */
685 new_init_action(SHUTDOWN, "umount -a -r", "");
686 /* Swapoff on halt/reboot */
687 if (ENABLE_SWAPONOFF)
688 new_init_action(SHUTDOWN, "swapoff -a", "");
689 /* Prepare to restart init when a QUIT is received */
690 new_init_action(RESTART, "init", "");
691 /* Askfirst shell on tty1-4 */
692 new_init_action(ASKFIRST, bb_default_login_shell, "");
Denis Vlasenkoa474b682008-07-17 17:58:44 +0000693//TODO: VC_1 instead of ""? "" is console -> ctty problems -> angry users
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000694 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
695 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
696 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
697 /* sysinit */
698 new_init_action(SYSINIT, INIT_SCRIPT, "");
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000699 return;
700 }
701 /* optional_tty:ignored_runlevel:action:command
Denis Vlasenkoa474b682008-07-17 17:58:44 +0000702 * Delims are not to be collapsed and need exactly 4 tokens
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000703 */
Denis Vlasenko084266e2008-07-26 23:08:31 +0000704 while (config_read(parser, token, 4, 0, "#:",
705 PARSE_NORMAL & ~(PARSE_TRIM | PARSE_COLLAPSE))) {
Denis Vlasenkoa474b682008-07-17 17:58:44 +0000706 int action;
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000707 char *tty = token[0];
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000708
Denis Vlasenkoa474b682008-07-17 17:58:44 +0000709 if (!token[3]) /* less than 4 tokens */
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000710 goto bad_entry;
Denis Vlasenkoa474b682008-07-17 17:58:44 +0000711 action = index_in_strings(actions, token[2]);
712 if (action < 0 || !token[3][0]) /* token[3]: command */
713 goto bad_entry;
714 /* turn .*TTY -> /dev/TTY */
715 if (tty[0]) {
716 if (strncmp(tty, "/dev/", 5) == 0)
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000717 tty += 5;
718 tty = concat_path_file("/dev/", tty);
Denis Vlasenkoa474b682008-07-17 17:58:44 +0000719 }
720 new_init_action(1 << action, token[3], tty);
721 if (tty[0])
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000722 free(tty);
723 continue;
724 bad_entry:
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000725 message(L_LOG | L_CONSOLE, "Bad inittab entry at line %d",
726 parser->lineno);
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000727 }
728 config_close(parser);
Erik Andersen7dc16072000-01-04 01:10:25 +0000729}
730
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000731#if ENABLE_FEATURE_USE_INITTAB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000732static void reload_signal(int sig UNUSED_PARAM)
Eric Andersen6fd0e312003-07-22 09:48:56 +0000733{
Eric Andersen82baf632004-10-08 08:21:54 +0000734 struct init_action *a, *tmp;
735
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000736 message(L_LOG, "reloading /etc/inittab");
Eric Andersen82baf632004-10-08 08:21:54 +0000737
738 /* disable old entrys */
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000739 for (a = init_action_list; a; a = a->next) {
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000740 a->action_type = ONCE;
Eric Andersen82baf632004-10-08 08:21:54 +0000741 }
742
743 parse_inittab();
744
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000745 if (ENABLE_FEATURE_KILL_REMOVED) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000746 /* Be nice and send SIGTERM first */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000747 for (a = init_action_list; a; a = a->next) {
748 pid_t pid = a->pid;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000749 if ((a->action_type & ONCE) && pid != 0) {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000750 kill(pid, SIGTERM);
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000751 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000752 }
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000753#if CONFIG_FEATURE_KILL_DELAY
Denis Vlasenko671ca332008-02-19 14:13:20 +0000754 /* NB: parent will wait in NOMMU case */
755 if ((BB_MMU ? fork() : vfork()) == 0) { /* child */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000756 sleep(CONFIG_FEATURE_KILL_DELAY);
757 for (a = init_action_list; a; a = a->next) {
758 pid_t pid = a->pid;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000759 if ((a->action_type & ONCE) && pid != 0) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000760 kill(pid, SIGKILL);
761 }
762 }
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000763 _exit(EXIT_SUCCESS);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000764 }
765#endif
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000766 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000767
Eric Andersen82baf632004-10-08 08:21:54 +0000768 /* remove unused entrys */
769 for (a = init_action_list; a; a = tmp) {
770 tmp = a->next;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000771 if ((a->action_type & (ONCE | SYSINIT | WAIT)) && a->pid == 0) {
Eric Andersen82baf632004-10-08 08:21:54 +0000772 delete_init_action(a);
773 }
774 }
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000775 run_actions(RESPAWN | ASKFIRST);
Eric Andersen6fd0e312003-07-22 09:48:56 +0000776}
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000777#endif
Eric Andersen82baf632004-10-08 08:21:54 +0000778
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000779int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000780int init_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000781{
Eric Andersen0298be82002-03-05 15:12:19 +0000782 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000783 pid_t wpid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000784
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000785 die_sleep = 30 * 24*60*60; /* if xmalloc will ever die... */
786
Denis Vlasenko1d426652008-03-17 09:09:09 +0000787 if (argv[1] && !strcmp(argv[1], "-q")) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000788 return kill(1, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +0000789 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000790
791 if (!ENABLE_DEBUG_INIT) {
792 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
793 if (getpid() != 1
794 && (!ENABLE_FEATURE_INITRD || !strstr(applet_name, "linuxrc"))
795 ) {
796 bb_show_usage();
797 }
798 /* Set up sig handlers -- be sure to
799 * clear all of these in run() */
Denis Vlasenko99a61842008-02-19 12:08:38 +0000800 signal(SIGQUIT, exec_restart_action);
Denis Vlasenko25591c32008-02-16 22:58:56 +0000801 bb_signals(0
802 + (1 << SIGUSR1) /* halt */
803 + (1 << SIGUSR2) /* poweroff */
804 + (1 << SIGTERM) /* reboot */
805 , halt_reboot_pwoff);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000806 signal(SIGINT, ctrlaltdel_signal);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000807 signal(SIGCONT, cont_handler);
Denis Vlasenko25591c32008-02-16 22:58:56 +0000808 bb_signals(0
809 + (1 << SIGSTOP)
810 + (1 << SIGTSTP)
811 , stop_handler);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000812
813 /* Turn off rebooting via CTL-ALT-DEL -- we get a
814 * SIGINT on CAD so we can shut things down gracefully... */
815 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000816 }
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000817
Eric Andersen599e3ce2002-07-03 11:08:10 +0000818 /* Figure out where the default console should be */
819 console_init();
Denis Vlasenkod238a472007-03-05 19:22:04 +0000820 set_sane_term();
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000821 xchdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000822 setsid();
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +0000823
824 /* Make sure environs is set to something sane */
825 putenv((char *) "HOME=/");
826 putenv((char *) bb_PATH_root_path);
827 putenv((char *) "SHELL=/bin/sh");
828 putenv((char *) "USER=root"); /* needed? why? */
Rob Landleycba1b962006-07-09 17:28:17 +0000829
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000830 if (argv[1])
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +0000831 xsetenv("RUNLEVEL", argv[1]);
Rob Landleycba1b962006-07-09 17:28:17 +0000832
Erik Andersene49d5ec2000-02-08 19:58:47 +0000833 /* Hello world */
Denis Vlasenkoca525b42007-06-13 12:27:17 +0000834 message(MAYBE_CONSOLE | L_LOG, "init started: %s", bb_banner);
Eric Andersencc8ed391999-10-05 16:24:54 +0000835
Erik Andersene49d5ec2000-02-08 19:58:47 +0000836 /* Make sure there is enough memory to do something useful. */
Rob Landleyc3386a42005-08-30 18:50:37 +0000837 if (ENABLE_SWAPONOFF) {
838 struct sysinfo info;
839
840 if (!sysinfo(&info) &&
Denis Vlasenkodca0b702006-10-27 09:05:02 +0000841 (info.mem_unit ? : 1) * (long long)info.totalram < 1024*1024)
Rob Landleyc3386a42005-08-30 18:50:37 +0000842 {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000843 message(L_CONSOLE, "Low memory, forcing swapon");
Rob Landleyc3386a42005-08-30 18:50:37 +0000844 /* swapon -a requires /proc typically */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000845 new_init_action(SYSINIT, "mount -t proc proc /proc", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000846 /* Try to turn on swap */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000847 new_init_action(SYSINIT, "swapon -a", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000848 run_actions(SYSINIT); /* wait and removing */
849 }
850 }
Erik Andersen9e737252000-01-06 01:16:13 +0000851
Erik Andersene49d5ec2000-02-08 19:58:47 +0000852 /* Check if we are supposed to be in single user mode */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000853 if (argv[1]
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000854 && (!strcmp(argv[1], "single") || !strcmp(argv[1], "-s") || LONE_CHAR(argv[1], '1'))
855 ) {
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000856 /* ??? shouldn't we set RUNLEVEL="b" here? */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000857 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000858 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000859 } else {
860 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000861
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000862 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000863 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000864 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +0000865 * of "askfirst" shells */
866 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000867 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000868
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000869#if ENABLE_SELINUX
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000870 if (getenv("SELINUX_INIT") == NULL) {
871 int enforce = 0;
872
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000873 putenv((char*)"SELINUX_INIT=YES");
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000874 if (selinux_init_load_policy(&enforce) == 0) {
Denis Vlasenko4921b542007-02-03 02:17:41 +0000875 BB_EXECVP(argv[0], argv);
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000876 } else if (enforce > 0) {
877 /* SELinux in enforcing mode but load_policy failed */
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000878 message(L_CONSOLE, "cannot load SELinux Policy. "
Denis Vlasenkob7167542007-02-27 19:20:00 +0000879 "Machine is in enforcing mode. Halting now.");
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000880 exit(EXIT_FAILURE);
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000881 }
882 }
883#endif /* CONFIG_SELINUX */
884
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000885 /* Make the command line just say "init" - thats all, nothing else */
886 strncpy(argv[0], "init", strlen(argv[0]));
887 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
888 while (*++argv)
889 memset(*argv, 0, strlen(*argv));
Eric Andersen219d6f51999-11-02 19:43:01 +0000890
Erik Andersene49d5ec2000-02-08 19:58:47 +0000891 /* Now run everything that needs to be run */
892
893 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +0000894 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000895
Erik Andersene49d5ec2000-02-08 19:58:47 +0000896 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +0000897 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000898
Erik Andersene49d5ec2000-02-08 19:58:47 +0000899 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +0000900 run_actions(ONCE);
901
Eric Andersen6fd0e312003-07-22 09:48:56 +0000902 /* Redefine SIGHUP to reread /etc/inittab */
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000903#if ENABLE_FEATURE_USE_INITTAB
904 signal(SIGHUP, reload_signal);
905#else
906 signal(SIGHUP, SIG_IGN);
907#endif
Eric Andersen82baf632004-10-08 08:21:54 +0000908
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 /* Now run the looping stuff for the rest of forever */
910 while (1) {
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000911 /* run the respawn/askfirst stuff */
912 run_actions(RESPAWN | ASKFIRST);
Eric Andersen0298be82002-03-05 15:12:19 +0000913
914 /* Don't consume all CPU time -- sleep a bit */
915 sleep(1);
916
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000917 /* Wait for any child process to exit */
Bernhard Reutner-Fischerc58dbf22006-05-30 12:16:54 +0000918 wpid = wait(NULL);
Eric Andersen87812dc2004-04-12 19:21:54 +0000919 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000920 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +0000921 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000922 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000923 /* Set the pid to 0 so that the process gets
924 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000925 a->pid = 0;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000926 message(L_LOG, "process '%s' (pid %d) exited. "
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000927 "Scheduling for restart.",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000928 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000929 }
930 }
Eric Andersencf1fee02002-12-17 09:48:16 +0000931 /* see if anyone else is waiting to be reaped */
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000932 wpid = wait_any_nohang(NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000933 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000934 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000935}