blob: ef387819c3604f59645cc1ddd7c6ec3d8efda6f8 [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 Vlasenko5cb54b52008-10-21 17:14:26 +000017/* Was a CONFIG_xxx option. A lot of people were building
18 * not fully functional init by switching it on! */
19#define DEBUG_INIT 0
20
Denis Vlasenkoa37e7132008-02-19 02:57:07 +000021#define COMMAND_SIZE 256
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000022#define CONSOLE_NAME_SIZE 32
23#define MAXENV 16 /* Number of env. vars */
Eric Andersenbd22ed82000-07-08 18:55:24 +000024
Erik Andersen983b51b2000-04-04 18:14:25 +000025/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +000026 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
Erik Andersen183da4a2000-04-04 18:36:37 +000027 * before processes are spawned to set core file size as unlimited.
28 * This is for debugging only. Don't use this is production, unless
29 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000030 */
31#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
32#include <sys/resource.h>
Erik Andersen983b51b2000-04-04 18:14:25 +000033
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000034#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +000035#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000036#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +000037#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +000038
Erik Andersen7dc16072000-01-04 01:10:25 +000039/* Allowed init action types */
Denis Vlasenkoad4da982008-04-05 04:24:23 +000040#define SYSINIT 0x01
41#define RESPAWN 0x02
42/* like respawn, but wait for <Enter> to be pressed on tty: */
43#define ASKFIRST 0x04
44#define WAIT 0x08
45#define ONCE 0x10
46#define CTRLALTDEL 0x20
47#define SHUTDOWN 0x40
48#define RESTART 0x80
Erik Andersen7dc16072000-01-04 01:10:25 +000049
Eric Andersen0298be82002-03-05 15:12:19 +000050/* Set up a linked list of init_actions, to be read from inittab */
51struct init_action {
Eric Andersen0298be82002-03-05 15:12:19 +000052 struct init_action *next;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000053 pid_t pid;
Denis Vlasenkoa37e7132008-02-19 02:57:07 +000054 uint8_t action_type;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000055 char terminal[CONSOLE_NAME_SIZE];
Denis Vlasenkoa37e7132008-02-19 02:57:07 +000056 char command[COMMAND_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +000057};
Erik Andersen7dc16072000-01-04 01:10:25 +000058
Eric Andersen0298be82002-03-05 15:12:19 +000059/* Static variables */
60static struct init_action *init_action_list = NULL;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000061
Denis Vlasenko4c978632007-02-03 03:31:13 +000062static const char *log_console = VC_5;
Rob Landleybc68cd12006-03-10 19:22:06 +000063
64enum {
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000065 L_LOG = 0x1,
66 L_CONSOLE = 0x2,
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000067
Denis Vlasenko9b1381f2007-01-03 02:56:00 +000068#if ENABLE_FEATURE_EXTRA_QUIET
Rob Landleybc68cd12006-03-10 19:22:06 +000069 MAYBE_CONSOLE = 0x0,
Eric Andersen0298be82002-03-05 15:12:19 +000070#else
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000071 MAYBE_CONSOLE = L_CONSOLE,
Eric Andersen0298be82002-03-05 15:12:19 +000072#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000073
Rob Landleybc68cd12006-03-10 19:22:06 +000074#ifndef RB_HALT_SYSTEM
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +000075 RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */
Rob Landleybc68cd12006-03-10 19:22:06 +000076 RB_ENABLE_CAD = 0x89abcdef,
77 RB_DISABLE_CAD = 0,
78 RB_POWER_OFF = 0x4321fedc,
79 RB_AUTOBOOT = 0x01234567,
Eric Andersen0298be82002-03-05 15:12:19 +000080#endif
Rob Landleybc68cd12006-03-10 19:22:06 +000081};
Erik Andersen42094cd2000-03-20 21:34:52 +000082
Eric Andersen0298be82002-03-05 15:12:19 +000083/* Function prototypes */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000084static void halt_reboot_pwoff(int sig) NORETURN;
Eric Andersen0460ff21999-10-25 23:32:44 +000085
Denis Vlasenko21e20cb2008-01-04 15:10:47 +000086static void waitfor(pid_t pid)
Denis Vlasenkofb0eba72008-01-02 19:55:04 +000087{
Denis Vlasenko21e20cb2008-01-04 15:10:47 +000088 /* waitfor(run(x)): protect against failed fork inside run() */
89 if (pid <= 0)
90 return;
91
92 /* Wait for any child (prevent zombies from exiting orphaned processes)
93 * but exit the loop only when specified one has exited. */
94 while (wait(NULL) != pid)
95 continue;
Denis Vlasenkofb0eba72008-01-02 19:55:04 +000096}
97
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000098static void loop_forever(void) NORETURN;
Eric Andersen74400cc2001-10-18 04:11:39 +000099static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000100{
101 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000102 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000103}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000104
Erik Andersen42094cd2000-03-20 21:34:52 +0000105/* Print a message to the specified device.
Denis Vlasenko671ca332008-02-19 14:13:20 +0000106 * "where" may be bitwise-or'd from L_LOG | L_CONSOLE
107 * NB: careful, we can be called after vfork!
108 */
Denis Vlasenko5cb54b52008-10-21 17:14:26 +0000109#define messageD(...) do { if (DEBUG_INIT) message(__VA_ARGS__); } while (0)
Denis Vlasenko671ca332008-02-19 14:13:20 +0000110static void message(int where, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000111 __attribute__ ((format(printf, 2, 3)));
Denis Vlasenko671ca332008-02-19 14:13:20 +0000112static void message(int where, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000113{
Eric Andersen22237012003-01-23 07:08:26 +0000114 static int log_fd = -1;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000115 va_list arguments;
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +0000116 unsigned l;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000117 char msg[128];
118
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000119 msg[0] = '\r';
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000120 va_start(arguments, fmt);
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +0000121 l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments);
122 if (l > sizeof(msg) - 2)
123 l = sizeof(msg) - 2;
124 msg[l] = '\0';
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000125 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000126
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000127 if (ENABLE_FEATURE_INIT_SYSLOG) {
128 /* Log the message to syslogd */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000129 if (where & L_LOG) {
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000130 /* don't print out "\r" */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000131 openlog(applet_name, 0, LOG_DAEMON);
132 syslog(LOG_INFO, "init: %s", msg + 1);
133 closelog();
134 }
135 msg[l++] = '\n';
136 msg[l] = '\0';
137 } else {
138 msg[l++] = '\n';
139 msg[l] = '\0';
140 /* Take full control of the log tty, and never close it.
141 * It's mine, all mine! Muhahahaha! */
142 if (log_fd < 0) {
143 if (!log_console) {
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000144 log_fd = STDERR_FILENO;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000145 } else {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000146 log_fd = device_open(log_console, O_WRONLY | O_NONBLOCK | O_NOCTTY);
147 if (log_fd < 0) {
148 bb_error_msg("can't log to %s", log_console);
Denis Vlasenko671ca332008-02-19 14:13:20 +0000149 where = L_CONSOLE;
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000150 } else {
151 close_on_exec_on(log_fd);
152 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000153 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154 }
Denis Vlasenko671ca332008-02-19 14:13:20 +0000155 if (where & L_LOG) {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000156 full_write(log_fd, msg, l);
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000157 if (log_fd == STDERR_FILENO)
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000158 return; /* don't print dup messages */
159 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160 }
Eric Andersen4c781471999-11-26 08:12:56 +0000161
Denis Vlasenko671ca332008-02-19 14:13:20 +0000162 if (where & L_CONSOLE) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000163 /* Send console messages to console so people will see them. */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000164 full_write(STDERR_FILENO, msg, l);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000165 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000166}
167
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000168/* From <linux/serial.h> */
169struct serial_struct {
170 int type;
171 int line;
172 unsigned int port;
173 int irq;
174 int flags;
175 int xmit_fifo_size;
176 int custom_divisor;
177 int baud_base;
178 unsigned short close_delay;
179 char io_type;
180 char reserved_char[1];
181 int hub6;
182 unsigned short closing_wait; /* time to wait before closing */
183 unsigned short closing_wait2; /* no longer used... */
184 unsigned char *iomem_base;
185 unsigned short iomem_reg_shift;
186 unsigned int port_high;
187 unsigned long iomap_base; /* cookie passed into ioremap */
188 int reserved[1];
189 /* Paranoia (imagine 64bit kernel overwriting 32bit userspace stack) */
190 uint32_t bbox_reserved[16];
191};
Eric Andersen74400cc2001-10-18 04:11:39 +0000192static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000193{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000194 struct serial_struct sr;
195 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000196
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000197 s = getenv("CONSOLE");
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000198 if (!s)
199 s = getenv("console");
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000200 if (s) {
201 int fd = open(s, O_RDWR | O_NONBLOCK | O_NOCTTY);
202 if (fd >= 0) {
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000203 dup2(fd, STDIN_FILENO);
204 dup2(fd, STDOUT_FILENO);
205 xmove_fd(fd, STDERR_FILENO);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000207 messageD(L_LOG, "console='%s'", s);
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000208 } else {
Denis Vlasenkofb274df2008-03-17 13:26:51 +0000209 /* Make sure fd 0,1,2 are not closed
210 * (so that they won't be used by future opens) */
Denis Vlasenkod48e81f2008-07-06 07:00:11 +0000211 bb_sanitize_stdio();
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +0000212 /* Make sure init can't be blocked by writing to stderr */
213 fcntl(STDERR_FILENO, F_SETFL, fcntl(STDERR_FILENO, F_GETFL) | O_NONBLOCK);
Eric Andersen07e52971999-11-07 07:38:08 +0000214 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000216 s = getenv("TERM");
Denis Vlasenkoe421b5e2008-03-17 22:01:42 +0000217 if (ioctl(STDIN_FILENO, TIOCGSERIAL, &sr) == 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000218 /* Force the TERM setting to vt102 for serial console
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000219 * if TERM is set to linux (the default) */
220 if (!s || strcmp(s, "linux") == 0)
221 putenv((char*)"TERM=vt102");
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000222 if (!ENABLE_FEATURE_INIT_SYSLOG)
223 log_console = NULL;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000224 } else if (!s)
225 putenv((char*)"TERM=linux");
Eric Andersen0460ff21999-10-25 23:32:44 +0000226}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000227
Denis Vlasenko671ca332008-02-19 14:13:20 +0000228/* Set terminal settings to reasonable defaults.
229 * NB: careful, we can be called after vfork! */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000230static void set_sane_term(void)
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000231{
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000232 struct termios tty;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000233
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000234 tcgetattr(STDIN_FILENO, &tty);
235
236 /* set control chars */
237 tty.c_cc[VINTR] = 3; /* C-c */
238 tty.c_cc[VQUIT] = 28; /* C-\ */
239 tty.c_cc[VERASE] = 127; /* C-? */
240 tty.c_cc[VKILL] = 21; /* C-u */
241 tty.c_cc[VEOF] = 4; /* C-d */
242 tty.c_cc[VSTART] = 17; /* C-q */
243 tty.c_cc[VSTOP] = 19; /* C-s */
244 tty.c_cc[VSUSP] = 26; /* C-z */
245
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000246 /* use line discipline 0 */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000247 tty.c_line = 0;
248
249 /* Make it be sane */
250 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
251 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
252
253 /* input modes */
254 tty.c_iflag = ICRNL | IXON | IXOFF;
255
256 /* output modes */
257 tty.c_oflag = OPOST | ONLCR;
258
259 /* local modes */
260 tty.c_lflag =
261 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
262
Denis Vlasenko202ac502008-11-05 13:20:58 +0000263 tcsetattr_stdin_TCSANOW(&tty);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000264}
265
Denis Vlasenko671ca332008-02-19 14:13:20 +0000266/* Open the new terminal device.
267 * NB: careful, we can be called after vfork! */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000268static void open_stdio_to_tty(const char* tty_name, int exit_on_failure)
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000269{
270 /* empty tty_name means "use init's tty", else... */
271 if (tty_name[0]) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000272 int fd;
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000273 close(STDIN_FILENO);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000274 /* fd can be only < 0 or 0: */
275 fd = device_open(tty_name, O_RDWR);
276 if (fd) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000277 message(L_LOG | L_CONSOLE, "can't open %s: %s",
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000278 tty_name, strerror(errno));
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000279 if (exit_on_failure)
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000280 _exit(EXIT_FAILURE);
Denis Vlasenko5cb54b52008-10-21 17:14:26 +0000281 if (DEBUG_INIT)
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000282 _exit(2);
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000283 /* NB: we don't reach this if we were called after vfork.
284 * Thus halt_reboot_pwoff() itself need not be vfork-safe. */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000285 halt_reboot_pwoff(SIGUSR1); /* halt the system */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000286 }
Bernhard Reutner-Fischerad2fa652008-07-21 11:16:39 +0000287 dup2(STDIN_FILENO, STDOUT_FILENO);
288 dup2(STDIN_FILENO, STDERR_FILENO);
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000289 }
Denis Vlasenkod238a472007-03-05 19:22:04 +0000290 set_sane_term();
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000291}
292
Denis Vlasenko671ca332008-02-19 14:13:20 +0000293/* Wrapper around exec:
294 * Takes string (max COMMAND_SIZE chars).
295 * If chars like '>' detected, execs '[-]/bin/sh -c "exec ......."'.
296 * Otherwise splits words on whitespace, deals with leading dash,
297 * and uses plain exec().
298 * NB: careful, we can be called after vfork!
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000299 */
300static void init_exec(const char *command)
301{
302 char *cmd[COMMAND_SIZE / 2];
303 char buf[COMMAND_SIZE + 6]; /* COMMAND_SIZE+strlen("exec ")+1 */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000304 int dash = (command[0] == '-' /* maybe? && command[1] == '/' */);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000305
306 /* See if any special /bin/sh requiring characters are present */
307 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
308 strcpy(buf, "exec ");
309 strcpy(buf + 5, command + dash); /* excluding "-" */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000310 /* NB: LIBBB_DEFAULT_LOGIN_SHELL define has leading dash */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000311 cmd[0] = (char*)(LIBBB_DEFAULT_LOGIN_SHELL + !dash);
312 cmd[1] = (char*)"-c";
313 cmd[2] = buf;
314 cmd[3] = NULL;
315 } else {
316 /* Convert command (char*) into cmd (char**, one word per string) */
317 char *word, *next;
318 int i = 0;
319 next = strcpy(buf, command); /* including "-" */
320 while ((word = strsep(&next, " \t")) != NULL) {
321 if (*word != '\0') { /* not two spaces/tabs together? */
322 cmd[i] = word;
323 i++;
324 }
325 }
326 cmd[i] = NULL;
327 }
328 /* If we saw leading "-", it is interactive shell.
329 * Try harder to give it a controlling tty.
330 * And skip "-" in actual exec call. */
331 if (dash) {
332 /* _Attempt_ to make stdin a controlling tty. */
333 if (ENABLE_FEATURE_INIT_SCTTY)
334 ioctl(STDIN_FILENO, TIOCSCTTY, 0 /*only try, don't steal*/);
335 }
336 BB_EXECVP(cmd[0] + dash, cmd);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000337 message(L_LOG | L_CONSOLE, "cannot run '%s': %s", cmd[0], strerror(errno));
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000338 /* returns if execvp fails */
339}
340
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000341/* Used only by run_actions */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000342static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000343{
Mike Frysinger10427ab2005-07-06 05:00:48 +0000344 pid_t pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000345 sigset_t nmask, omask;
Erik Andersenac6e71f2000-01-08 22:04:33 +0000346
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000347 /* Block sigchild while forking (why?) */
Eric Andersen0298be82002-03-05 15:12:19 +0000348 sigemptyset(&nmask);
349 sigaddset(&nmask, SIGCHLD);
350 sigprocmask(SIG_BLOCK, &nmask, &omask);
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000351 if (BB_MMU && (a->action_type & ASKFIRST))
352 pid = fork();
353 else
354 pid = vfork();
Denis Vlasenko966bb432007-02-27 19:20:33 +0000355 sigprocmask(SIG_SETMASK, &omask, NULL);
Eric Andersen0298be82002-03-05 15:12:19 +0000356
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000357 if (pid < 0)
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000358 message(L_LOG | L_CONSOLE, "can't fork");
Denis Vlasenko966bb432007-02-27 19:20:33 +0000359 if (pid)
360 return pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000361
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000362 /* Child */
363
Denis Vlasenko966bb432007-02-27 19:20:33 +0000364 /* Reset signal handlers that were set by the parent process */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000365 bb_signals(0
366 + (1 << SIGUSR1)
367 + (1 << SIGUSR2)
368 + (1 << SIGINT)
369 + (1 << SIGTERM)
370 + (1 << SIGHUP)
371 + (1 << SIGQUIT)
372 + (1 << SIGCONT)
373 + (1 << SIGSTOP)
374 + (1 << SIGTSTP)
375 , SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000376
Denis Vlasenko966bb432007-02-27 19:20:33 +0000377 /* Create a new session and make ourself the process
378 * group leader */
379 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000380
Denis Vlasenko966bb432007-02-27 19:20:33 +0000381 /* Open the new terminal device */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000382 open_stdio_to_tty(a->terminal, 1 /* - exit if open fails */);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000383
Denis Vlasenko671ca332008-02-19 14:13:20 +0000384// NB: do not enable unless you change vfork to fork above
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000385#ifdef BUT_RUN_ACTIONS_ALREADY_DOES_WAITING
Denis Vlasenko966bb432007-02-27 19:20:33 +0000386 /* If the init Action requires us to wait, then force the
387 * supplied terminal to be the controlling tty. */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000388 if (a->action_type & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000389 /* Now fork off another process to just hang around */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000390 pid = fork();
Denis Vlasenkof6ccc622007-11-10 01:57:35 +0000391 if (pid < 0) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000392 message(L_LOG | L_CONSOLE, "can't fork");
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000393 _exit(EXIT_FAILURE);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000394 }
395
396 if (pid > 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000397 /* Parent - wait till the child is done */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000398 bb_signals(0
399 + (1 << SIGINT)
400 + (1 << SIGTSTP)
401 + (1 << SIGQUIT)
402 , SIG_IGN);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000403 signal(SIGCHLD, SIG_DFL);
404
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000405 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000406 /* See if stealing the controlling tty back is necessary */
407 if (tcgetpgrp(0) != getpid())
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000408 _exit(EXIT_SUCCESS);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000409
410 /* Use a temporary process to steal the controlling tty. */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000411 pid = fork();
412 if (pid < 0) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +0000413 message(L_LOG | L_CONSOLE, "can't fork");
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000414 _exit(EXIT_FAILURE);
Eric Andersen0298be82002-03-05 15:12:19 +0000415 }
Denis Vlasenko966bb432007-02-27 19:20:33 +0000416 if (pid == 0) {
417 setsid();
418 ioctl(0, TIOCSCTTY, 1);
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 waitfor(pid);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000422 _exit(EXIT_SUCCESS);
Eric Andersen0298be82002-03-05 15:12:19 +0000423 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000424 /* Child - fall though to actually execute things */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000425 }
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000426#endif
Denis Vlasenko671ca332008-02-19 14:13:20 +0000427
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000428 /* NB: on NOMMU we can't wait for input in child, so
429 * "askfirst" will work the same as "respawn". */
Denis Vlasenko671ca332008-02-19 14:13:20 +0000430 if (BB_MMU && (a->action_type & ASKFIRST)) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000431 static const char press_enter[] ALIGN1 =
Denis Vlasenko966bb432007-02-27 19:20:33 +0000432#ifdef CUSTOMIZED_BANNER
433#include CUSTOMIZED_BANNER
Eric Andersen1f50e842004-08-16 09:29:42 +0000434#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000435 "\nPlease press Enter to activate this console. ";
436 char c;
437 /*
438 * Save memory by not exec-ing anything large (like a shell)
439 * before the user wants it. This is critical if swap is not
440 * enabled and the system has low memory. Generally this will
441 * be run on the second virtual console, and the first will
442 * be allowed to start a shell or whatever an init script
443 * specifies.
444 */
445 messageD(L_LOG, "waiting for enter to start '%s'"
446 "(pid %d, tty '%s')\n",
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000447 a->command, getpid(), a->terminal);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000448 full_write(STDOUT_FILENO, press_enter, sizeof(press_enter) - 1);
449 while (safe_read(STDIN_FILENO, &c, 1) == 1 && c != '\n')
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000450 continue;
Denis Vlasenko966bb432007-02-27 19:20:33 +0000451 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000452
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000453 if (ENABLE_FEATURE_INIT_COREDUMPS) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000454 struct stat sb;
455 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
456 struct rlimit limit;
Denis Vlasenko966bb432007-02-27 19:20:33 +0000457 limit.rlim_cur = RLIM_INFINITY;
458 limit.rlim_max = RLIM_INFINITY;
459 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000460 }
Erik Andersen05df2392000-01-13 04:43:48 +0000461 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000462
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000463 /* Log the process name and args */
464 message(L_LOG, "starting pid %d, tty '%s': '%s'",
465 getpid(), a->terminal, a->command);
466
Denis Vlasenko966bb432007-02-27 19:20:33 +0000467 /* Now run it. The new program will take over this PID,
468 * so nothing further in init.c should be run. */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000469 init_exec(a->command);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000470 /* We're still here? Some error happened. */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000471 _exit(-1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000472}
473
Bernhard Reutner-Fischer52593612008-07-21 11:53:04 +0000474static void delete_init_action(struct init_action *action)
475{
476 struct init_action *a, *b = NULL;
477
478 for (a = init_action_list; a; b = a, a = a->next) {
479 if (a == action) {
480 if (b == NULL) {
481 init_action_list = a->next;
482 } else {
483 b->next = a->next;
484 }
485 free(a);
486 break;
487 }
488 }
489}
490
Eric Andersen0298be82002-03-05 15:12:19 +0000491/* Run all commands of a particular type */
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000492static void run_actions(int action_type)
Eric Andersen219d6f51999-11-02 19:43:01 +0000493{
Eric Andersen0298be82002-03-05 15:12:19 +0000494 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000495
Eric Andersen0298be82002-03-05 15:12:19 +0000496 for (a = init_action_list; a; a = tmp) {
497 tmp = a->next;
Denis Vlasenkoad4da982008-04-05 04:24:23 +0000498 if (a->action_type & action_type) {
Denis Vlasenkod7e2e122007-12-10 08:40:29 +0000499 // Pointless: run() will error out if open of device fails.
500 ///* a->terminal of "" means "init's console" */
501 //if (a->terminal[0] && access(a->terminal, R_OK | W_OK)) {
502 // //message(L_LOG | L_CONSOLE, "Device %s cannot be opened in RW mode", a->terminal /*, strerror(errno)*/);
503 // delete_init_action(a);
504 //} else
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000505 if (a->action_type & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000506 waitfor(run(a));
Eric Andersen0298be82002-03-05 15:12:19 +0000507 delete_init_action(a);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000508 } else if (a->action_type & ONCE) {
Eric Andersen0298be82002-03-05 15:12:19 +0000509 run(a);
510 delete_init_action(a);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000511 } else if (a->action_type & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000512 /* Only run stuff with pid==0. If they have
513 * a pid, that means it is still running */
514 if (a->pid == 0) {
515 a->pid = run(a);
516 }
517 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000518 }
519 }
520}
521
Eric Andersen2c1de612003-04-24 11:41:28 +0000522static void init_reboot(unsigned long magic)
523{
524 pid_t pid;
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000525 /* We have to fork here, since the kernel calls do_exit(EXIT_SUCCESS) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000526 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000527 * the init process is killed.... */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000528 pid = vfork();
529 if (pid == 0) { /* child */
Eric Andersen2c1de612003-04-24 11:41:28 +0000530 reboot(magic);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000531 _exit(EXIT_SUCCESS);
Eric Andersen2c1de612003-04-24 11:41:28 +0000532 }
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000533 waitfor(pid);
Eric Andersen2c1de612003-04-24 11:41:28 +0000534}
535
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000536static void kill_all_processes(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000537{
Eric Andersena9cc8962002-09-16 06:49:06 +0000538 /* run everything to be run at "shutdown". This is done _prior_
539 * to killing everything, in case people wish to use scripts to
540 * shut things down gracefully... */
541 run_actions(SHUTDOWN);
542
Eric Andersen72f9a422001-10-28 05:12:20 +0000543 /* first disable all our signals */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000544 sigprocmask_allsigs(SIG_BLOCK);
Erik Andersen7dc16072000-01-04 01:10:25 +0000545
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000546 message(L_CONSOLE | L_LOG, "The system is going down NOW!");
547
Erik Andersene49d5ec2000-02-08 19:58:47 +0000548 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000549 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000550
Erik Andersene49d5ec2000-02-08 19:58:47 +0000551 /* Send signals to every process _except_ pid 1 */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000552 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "TERM");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000553 kill(-1, SIGTERM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000554 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000555 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000556
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000557 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "KILL");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000558 kill(-1, SIGKILL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000559 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000560 sleep(1);
Eric Andersencc8ed391999-10-05 16:24:54 +0000561}
562
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000563static void halt_reboot_pwoff(int sig)
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000564{
Bernhard Reutner-Fischer54d50a02008-07-17 14:00:42 +0000565 const char *m = "halt";
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000566 int rb;
567
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000568 kill_all_processes();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000569
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000570 rb = RB_HALT_SYSTEM;
571 if (sig == SIGTERM) {
572 m = "reboot";
573 rb = RB_AUTOBOOT;
574 } else if (sig == SIGUSR2) {
575 m = "poweroff";
576 rb = RB_POWER_OFF;
577 }
578 message(L_CONSOLE | L_LOG, "Requesting system %s", m);
579 /* allow time for last message to reach serial console */
580 sleep(2);
581 init_reboot(rb);
582 loop_forever();
583}
584
Denis Vlasenkoa58a6372008-02-19 12:10:18 +0000585/* Handler for QUIT - exec "restart" action,
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000586 * else (no such action defined) do nothing */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000587static void exec_restart_action(int sig UNUSED_PARAM)
Eric Andersen730f8262001-12-17 23:13:08 +0000588{
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000589 struct init_action *a;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000590
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000591 for (a = init_action_list; a; a = a->next) {
592 if (a->action_type & RESTART) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000593 kill_all_processes();
Eric Andersen5222d312002-07-03 05:15:23 +0000594
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000595 /* unblock all signals (blocked in kill_all_processes()) */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000596 sigprocmask_allsigs(SIG_UNBLOCK);
Eric Andersen5222d312002-07-03 05:15:23 +0000597
Eric Andersen3c8064f2003-07-05 08:29:01 +0000598 /* Open the new terminal device */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000599 open_stdio_to_tty(a->terminal, 0 /* - halt if open fails */);
Eric Andersen3c8064f2003-07-05 08:29:01 +0000600
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000601 messageD(L_CONSOLE | L_LOG, "Trying to re-exec %s", a->command);
Denis Vlasenkoa37e7132008-02-19 02:57:07 +0000602 init_exec(a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000603 sleep(2);
604 init_reboot(RB_HALT_SYSTEM);
605 loop_forever();
606 }
607 }
608}
609
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000610static void ctrlaltdel_signal(int sig UNUSED_PARAM)
Eric Andersenc97ec342001-04-03 18:01:51 +0000611{
612 run_actions(CTRLALTDEL);
613}
614
Denis Vlasenko3fa36e22008-11-09 00:15:11 +0000615/* The SIGCONT handler is set to record_signo().
616 * It just sets bb_got_signal = SIGCONT. */
617
Eric Andersen0298be82002-03-05 15:12:19 +0000618/* The SIGSTOP & SIGTSTP handler */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000619static void stop_handler(int sig UNUSED_PARAM)
Eric Andersened8a9be2001-11-30 19:10:58 +0000620{
Eric Andersen0298be82002-03-05 15:12:19 +0000621 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000622
Denis Vlasenko3fa36e22008-11-09 00:15:11 +0000623 bb_got_signal = 0;
624 while (bb_got_signal == 0)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000625 pause();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000626
Eric Andersened8a9be2001-11-30 19:10:58 +0000627 errno = saved_errno;
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
Denis Vlasenko5cb54b52008-10-21 17:14:26 +0000791 if (!DEBUG_INIT) {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000792 /* 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);
Denis Vlasenko3fa36e22008-11-09 00:15:11 +0000807 signal(SIGCONT, record_signo);
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}