blob: 080c5b3aff800bf2e29f532d8ee1a8a7cacf683f [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
Eric Andersen0826b6b2002-07-03 23:50:16 +000017#define INIT_BUFFS_SIZE 256
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000018#define CONSOLE_NAME_SIZE 32
19#define MAXENV 16 /* Number of env. vars */
Eric Andersenbd22ed82000-07-08 18:55:24 +000020
Erik Andersen983b51b2000-04-04 18:14:25 +000021/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +000022 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
Erik Andersen183da4a2000-04-04 18:36:37 +000023 * before processes are spawned to set core file size as unlimited.
24 * This is for debugging only. Don't use this is production, unless
25 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000026 */
27#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
28#include <sys/resource.h>
Erik Andersen983b51b2000-04-04 18:14:25 +000029
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000030#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +000031#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000032#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +000033#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +000034
Erik Andersen7dc16072000-01-04 01:10:25 +000035/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +000036#define SYSINIT 0x001
37#define RESPAWN 0x002
38#define ASKFIRST 0x004
39#define WAIT 0x008
40#define ONCE 0x010
41#define CTRLALTDEL 0x020
42#define SHUTDOWN 0x040
43#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +000044
Denis Vlasenko2afabe82007-12-10 07:06:04 +000045#define STR_SYSINIT "\x01"
46#define STR_RESPAWN "\x02"
47#define STR_ASKFIRST "\x04"
48#define STR_WAIT "\x08"
49#define STR_ONCE "\x10"
50#define STR_CTRLALTDEL "\x20"
51#define STR_SHUTDOWN "\x40"
52#define STR_RESTART "\x80"
Erik Andersen7dc16072000-01-04 01:10:25 +000053
Eric Andersen0298be82002-03-05 15:12:19 +000054/* Set up a linked list of init_actions, to be read from inittab */
55struct init_action {
Eric Andersen0298be82002-03-05 15:12:19 +000056 struct init_action *next;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000057 pid_t pid;
Denis Vlasenko2afabe82007-12-10 07:06:04 +000058 uint8_t action;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +000059 char terminal[CONSOLE_NAME_SIZE];
Denis Vlasenko2afabe82007-12-10 07:06:04 +000060 char command[INIT_BUFFS_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +000061};
Erik Andersen7dc16072000-01-04 01:10:25 +000062
Eric Andersen0298be82002-03-05 15:12:19 +000063/* Static variables */
64static struct init_action *init_action_list = NULL;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000065
Denis Vlasenko4c978632007-02-03 03:31:13 +000066static const char *log_console = VC_5;
Eric Andersen0298be82002-03-05 15:12:19 +000067static sig_atomic_t got_cont = 0;
Rob Landleybc68cd12006-03-10 19:22:06 +000068
69enum {
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000070 L_LOG = 0x1,
71 L_CONSOLE = 0x2,
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000072
Denis Vlasenko9b1381f2007-01-03 02:56:00 +000073#if ENABLE_FEATURE_EXTRA_QUIET
Rob Landleybc68cd12006-03-10 19:22:06 +000074 MAYBE_CONSOLE = 0x0,
Eric Andersen0298be82002-03-05 15:12:19 +000075#else
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000076 MAYBE_CONSOLE = L_CONSOLE,
Eric Andersen0298be82002-03-05 15:12:19 +000077#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000078
Rob Landleybc68cd12006-03-10 19:22:06 +000079#ifndef RB_HALT_SYSTEM
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +000080 RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */
Rob Landleybc68cd12006-03-10 19:22:06 +000081 RB_ENABLE_CAD = 0x89abcdef,
82 RB_DISABLE_CAD = 0,
83 RB_POWER_OFF = 0x4321fedc,
84 RB_AUTOBOOT = 0x01234567,
Eric Andersen0298be82002-03-05 15:12:19 +000085#endif
Rob Landleybc68cd12006-03-10 19:22:06 +000086};
Erik Andersen42094cd2000-03-20 21:34:52 +000087
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000088static const char *const environment[] = {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +000089 "HOME=/",
Denis Vlasenkof5f75c52007-06-12 22:35:19 +000090 bb_PATH_root_path,
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +000091 "SHELL=/bin/sh",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +000092 "USER=root",
93 NULL
94};
95
Eric Andersen0298be82002-03-05 15:12:19 +000096/* Function prototypes */
97static void delete_init_action(struct init_action *a);
Denis Vlasenkod55268d2007-12-26 18:32:58 +000098static void halt_reboot_pwoff(int sig) ATTRIBUTE_NORETURN;
Eric Andersen0460ff21999-10-25 23:32:44 +000099
Denis Vlasenko21e20cb2008-01-04 15:10:47 +0000100static void waitfor(pid_t pid)
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000101{
Denis Vlasenko21e20cb2008-01-04 15:10:47 +0000102 /* waitfor(run(x)): protect against failed fork inside run() */
103 if (pid <= 0)
104 return;
105
106 /* Wait for any child (prevent zombies from exiting orphaned processes)
107 * but exit the loop only when specified one has exited. */
108 while (wait(NULL) != pid)
109 continue;
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000110}
111
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000112static void loop_forever(void) ATTRIBUTE_NORETURN;
Eric Andersen74400cc2001-10-18 04:11:39 +0000113static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000114{
115 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000116 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000117}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000118
Erik Andersen42094cd2000-03-20 21:34:52 +0000119/* Print a message to the specified device.
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000120 * Device may be bitwise-or'd from L_LOG | L_CONSOLE */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000121#define messageD(...) do { if (ENABLE_DEBUG_INIT) message(__VA_ARGS__); } while (0)
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000122static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000123 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000124static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000125{
Eric Andersen22237012003-01-23 07:08:26 +0000126 static int log_fd = -1;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000127 va_list arguments;
128 int l;
129 char msg[128];
130
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000131 msg[0] = '\r';
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000132 va_start(arguments, fmt);
133 vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments);
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000134 va_end(arguments);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000135 msg[sizeof(msg) - 2] = '\0';
136 l = strlen(msg);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000137
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000138 if (ENABLE_FEATURE_INIT_SYSLOG) {
139 /* Log the message to syslogd */
140 if (device & L_LOG) {
141 /* don't out "\r" */
142 openlog(applet_name, 0, LOG_DAEMON);
143 syslog(LOG_INFO, "init: %s", msg + 1);
144 closelog();
145 }
146 msg[l++] = '\n';
147 msg[l] = '\0';
148 } else {
149 msg[l++] = '\n';
150 msg[l] = '\0';
151 /* Take full control of the log tty, and never close it.
152 * It's mine, all mine! Muhahahaha! */
153 if (log_fd < 0) {
154 if (!log_console) {
155 log_fd = 2;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000156 } else {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000157 log_fd = device_open(log_console, O_WRONLY | O_NONBLOCK | O_NOCTTY);
158 if (log_fd < 0) {
159 bb_error_msg("can't log to %s", log_console);
160 device = L_CONSOLE;
161 } else {
162 close_on_exec_on(log_fd);
163 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000164 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000165 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000166 if (device & L_LOG) {
167 full_write(log_fd, msg, l);
168 if (log_fd == 2)
169 return; /* don't print dup messages */
170 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000171 }
Eric Andersen4c781471999-11-26 08:12:56 +0000172
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000173 if (device & L_CONSOLE) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000174 /* Send console messages to console so people will see them. */
175 full_write(2, msg, l);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000176 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000177}
178
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000179/* From <linux/serial.h> */
180struct serial_struct {
181 int type;
182 int line;
183 unsigned int port;
184 int irq;
185 int flags;
186 int xmit_fifo_size;
187 int custom_divisor;
188 int baud_base;
189 unsigned short close_delay;
190 char io_type;
191 char reserved_char[1];
192 int hub6;
193 unsigned short closing_wait; /* time to wait before closing */
194 unsigned short closing_wait2; /* no longer used... */
195 unsigned char *iomem_base;
196 unsigned short iomem_reg_shift;
197 unsigned int port_high;
198 unsigned long iomap_base; /* cookie passed into ioremap */
199 int reserved[1];
200 /* Paranoia (imagine 64bit kernel overwriting 32bit userspace stack) */
201 uint32_t bbox_reserved[16];
202};
Eric Andersen74400cc2001-10-18 04:11:39 +0000203static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000204{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000205 struct serial_struct sr;
206 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000207
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000208 s = getenv("CONSOLE");
209 if (!s) s = getenv("console");
210 if (s) {
211 int fd = open(s, O_RDWR | O_NONBLOCK | O_NOCTTY);
212 if (fd >= 0) {
213 dup2(fd, 0);
214 dup2(fd, 1);
215 dup2(fd, 2);
216 while (fd > 2) close(fd--);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000217 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000218 messageD(L_LOG, "console='%s'", s);
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000219 } else {
220 /* Make sure fd 0,1,2 are not closed */
221 bb_sanitize_stdio();
Eric Andersen07e52971999-11-07 07:38:08 +0000222 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000223
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000224 s = getenv("TERM");
225 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000226 /* Force the TERM setting to vt102 for serial console
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000227 * if TERM is set to linux (the default) */
228 if (!s || strcmp(s, "linux") == 0)
229 putenv((char*)"TERM=vt102");
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000230 if (!ENABLE_FEATURE_INIT_SYSLOG)
231 log_console = NULL;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000232 } else if (!s)
233 putenv((char*)"TERM=linux");
Eric Andersen0460ff21999-10-25 23:32:44 +0000234}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000235
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000236/* Set terminal settings to reasonable defaults */
237static void set_sane_term(void)
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000238{
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000239 struct termios tty;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000240
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000241 tcgetattr(STDIN_FILENO, &tty);
242
243 /* set control chars */
244 tty.c_cc[VINTR] = 3; /* C-c */
245 tty.c_cc[VQUIT] = 28; /* C-\ */
246 tty.c_cc[VERASE] = 127; /* C-? */
247 tty.c_cc[VKILL] = 21; /* C-u */
248 tty.c_cc[VEOF] = 4; /* C-d */
249 tty.c_cc[VSTART] = 17; /* C-q */
250 tty.c_cc[VSTOP] = 19; /* C-s */
251 tty.c_cc[VSUSP] = 26; /* C-z */
252
253 /* use line dicipline 0 */
254 tty.c_line = 0;
255
256 /* Make it be sane */
257 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
258 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
259
260 /* input modes */
261 tty.c_iflag = ICRNL | IXON | IXOFF;
262
263 /* output modes */
264 tty.c_oflag = OPOST | ONLCR;
265
266 /* local modes */
267 tty.c_lflag =
268 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
269
270 tcsetattr(STDIN_FILENO, TCSANOW, &tty);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000271}
272
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000273/* Open the new terminal device */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000274static void open_stdio_to_tty(const char* tty_name, int exit_on_failure)
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000275{
276 /* empty tty_name means "use init's tty", else... */
277 if (tty_name[0]) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000278 int fd;
279 close(0);
280 /* fd can be only < 0 or 0: */
281 fd = device_open(tty_name, O_RDWR);
282 if (fd) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000283 message(L_LOG | L_CONSOLE, "Can't open %s: %s",
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000284 tty_name, strerror(errno));
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000285 if (exit_on_failure)
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000286 _exit(1);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000287 if (ENABLE_DEBUG_INIT)
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000288 _exit(2);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000289 halt_reboot_pwoff(SIGUSR1); /* halt the system */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000290 }
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000291 dup2(0, 1);
292 dup2(0, 2);
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000293 }
Denis Vlasenkod238a472007-03-05 19:22:04 +0000294 set_sane_term();
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000295}
296
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000297/* Used only by run_actions */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000298static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000299{
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000300 int i;
Mike Frysinger10427ab2005-07-06 05:00:48 +0000301 pid_t pid;
Denis Vlasenko06c0a712007-01-29 22:51:44 +0000302 char *s, *tmpCmd, *cmdpath;
303 char *cmd[INIT_BUFFS_SIZE];
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000304 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000305 sigset_t nmask, omask;
Erik Andersenac6e71f2000-01-08 22:04:33 +0000306
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000307 /* Block sigchild while forking (why?) */
Eric Andersen0298be82002-03-05 15:12:19 +0000308 sigemptyset(&nmask);
309 sigaddset(&nmask, SIGCHLD);
310 sigprocmask(SIG_BLOCK, &nmask, &omask);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000311 pid = fork();
312 sigprocmask(SIG_SETMASK, &omask, NULL);
Eric Andersen0298be82002-03-05 15:12:19 +0000313
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000314 if (pid < 0)
315 message(L_LOG | L_CONSOLE, "Can't fork");
Denis Vlasenko966bb432007-02-27 19:20:33 +0000316 if (pid)
317 return pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000318
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000319 /* Child */
320
Denis Vlasenko966bb432007-02-27 19:20:33 +0000321 /* Reset signal handlers that were set by the parent process */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000322 bb_signals(0
323 + (1 << SIGUSR1)
324 + (1 << SIGUSR2)
325 + (1 << SIGINT)
326 + (1 << SIGTERM)
327 + (1 << SIGHUP)
328 + (1 << SIGQUIT)
329 + (1 << SIGCONT)
330 + (1 << SIGSTOP)
331 + (1 << SIGTSTP)
332 , SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000333
Denis Vlasenko966bb432007-02-27 19:20:33 +0000334 /* Create a new session and make ourself the process
335 * group leader */
336 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000337
Denis Vlasenko966bb432007-02-27 19:20:33 +0000338 /* Open the new terminal device */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000339 open_stdio_to_tty(a->terminal, 1 /* - exit if open fails*/);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000340
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000341#ifdef BUT_RUN_ACTIONS_ALREADY_DOES_WAITING
Denis Vlasenko966bb432007-02-27 19:20:33 +0000342 /* If the init Action requires us to wait, then force the
343 * supplied terminal to be the controlling tty. */
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000344 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000345 /* Now fork off another process to just hang around */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000346 pid = fork();
Denis Vlasenkof6ccc622007-11-10 01:57:35 +0000347 if (pid < 0) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000348 message(L_LOG | L_CONSOLE, "Can't fork");
349 _exit(1);
350 }
351
352 if (pid > 0) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000353 /* Parent - wait till the child is done */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000354 bb_signals(0
355 + (1 << SIGINT)
356 + (1 << SIGTSTP)
357 + (1 << SIGQUIT)
358 , SIG_IGN);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000359 signal(SIGCHLD, SIG_DFL);
360
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000361 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000362 /* See if stealing the controlling tty back is necessary */
363 if (tcgetpgrp(0) != getpid())
364 _exit(0);
365
366 /* Use a temporary process to steal the controlling tty. */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000367 pid = fork();
368 if (pid < 0) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000369 message(L_LOG | L_CONSOLE, "Can't fork");
Eric Andersen0298be82002-03-05 15:12:19 +0000370 _exit(1);
371 }
Denis Vlasenko966bb432007-02-27 19:20:33 +0000372 if (pid == 0) {
373 setsid();
374 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000375 _exit(0);
376 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000377 waitfor(pid);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000378 _exit(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000379 }
380
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000381 /* Child - fall though to actually execute things */
Denis Vlasenko966bb432007-02-27 19:20:33 +0000382 }
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000383#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000384
385 /* See if any special /bin/sh requiring characters are present */
386 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
387 cmd[0] = (char*)DEFAULT_SHELL;
388 cmd[1] = (char*)"-c";
389 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
390 cmd[3] = NULL;
391 } else {
392 /* Convert command (char*) into cmd (char**, one word per string) */
393 strcpy(buf, a->command);
394 s = buf;
395 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
396 if (*tmpCmd != '\0') {
397 cmd[i] = tmpCmd;
398 i++;
399 }
400 }
401 cmd[i] = NULL;
402 }
403
404 cmdpath = cmd[0];
405
406 /*
407 * Interactive shells want to see a dash in argv[0]. This
408 * typically is handled by login, argv will be setup this
409 * way if a dash appears at the front of the command path
410 * (like "-/bin/sh").
411 */
412 if (*cmdpath == '-') {
413 /* skip over the dash */
414 ++cmdpath;
415
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000416#ifdef WHY_WE_DO_THIS_SHELL_MUST_HANDLE_THIS_ITSELF
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000417 /* find the last component in the command pathname */
418 s = bb_get_last_path_component_nostrip(cmdpath);
419 /* make a new argv[0] */
420 cmd[0] = malloc(strlen(s) + 2);
421 if (cmd[0] == NULL) {
422 message(L_LOG | L_CONSOLE, bb_msg_memory_exhausted);
423 cmd[0] = cmdpath;
424 } else {
425 cmd[0][0] = '-';
426 strcpy(cmd[0] + 1, s);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000427 }
Denis Vlasenko5adfa442007-12-25 16:08:53 +0000428#endif
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000429
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000430 /* _Attempt_ to make stdin a controlling tty. */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000431 if (ENABLE_FEATURE_INIT_SCTTY)
432 ioctl(0, TIOCSCTTY, 0 /*only try, don't steal*/);
Denis Vlasenko966bb432007-02-27 19:20:33 +0000433 }
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000434
Denis Vlasenko966bb432007-02-27 19:20:33 +0000435 if (a->action & ASKFIRST) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000436 static const char press_enter[] ALIGN1 =
Denis Vlasenko966bb432007-02-27 19:20:33 +0000437#ifdef CUSTOMIZED_BANNER
438#include CUSTOMIZED_BANNER
Eric Andersen1f50e842004-08-16 09:29:42 +0000439#endif
Denis Vlasenko966bb432007-02-27 19:20:33 +0000440 "\nPlease press Enter to activate this console. ";
441 char c;
442 /*
443 * Save memory by not exec-ing anything large (like a shell)
444 * before the user wants it. This is critical if swap is not
445 * enabled and the system has low memory. Generally this will
446 * be run on the second virtual console, and the first will
447 * be allowed to start a shell or whatever an init script
448 * specifies.
449 */
450 messageD(L_LOG, "waiting for enter to start '%s'"
451 "(pid %d, tty '%s')\n",
452 cmdpath, getpid(), a->terminal);
453 full_write(1, press_enter, sizeof(press_enter) - 1);
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000454 while (safe_read(0, &c, 1) == 1 && c != '\n')
455 continue;
Denis Vlasenko966bb432007-02-27 19:20:33 +0000456 }
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000457
Denis Vlasenko966bb432007-02-27 19:20:33 +0000458 /* Log the process name and args */
459 message(L_LOG, "starting pid %d, tty '%s': '%s'",
460 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000461
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000462 if (ENABLE_FEATURE_INIT_COREDUMPS) {
Denis Vlasenko966bb432007-02-27 19:20:33 +0000463 struct stat sb;
464 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
465 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000466
Denis Vlasenko966bb432007-02-27 19:20:33 +0000467 limit.rlim_cur = RLIM_INFINITY;
468 limit.rlim_max = RLIM_INFINITY;
469 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000470 }
Erik Andersen05df2392000-01-13 04:43:48 +0000471 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000472
Denis Vlasenko966bb432007-02-27 19:20:33 +0000473 /* Now run it. The new program will take over this PID,
474 * so nothing further in init.c should be run. */
475 BB_EXECVP(cmdpath, cmd);
476
477 /* We're still here? Some error happened. */
478 message(L_LOG | L_CONSOLE, "Cannot run '%s': %s",
479 cmdpath, strerror(errno));
480 _exit(-1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000481}
482
Eric Andersen0298be82002-03-05 15:12:19 +0000483/* Run all commands of a particular type */
484static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000485{
Eric Andersen0298be82002-03-05 15:12:19 +0000486 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000487
Eric Andersen0298be82002-03-05 15:12:19 +0000488 for (a = init_action_list; a; a = tmp) {
489 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000490 if (a->action == action) {
Denis Vlasenkod7e2e122007-12-10 08:40:29 +0000491 // Pointless: run() will error out if open of device fails.
492 ///* a->terminal of "" means "init's console" */
493 //if (a->terminal[0] && access(a->terminal, R_OK | W_OK)) {
494 // //message(L_LOG | L_CONSOLE, "Device %s cannot be opened in RW mode", a->terminal /*, strerror(errno)*/);
495 // delete_init_action(a);
496 //} else
497 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000498 waitfor(run(a));
Eric Andersen0298be82002-03-05 15:12:19 +0000499 delete_init_action(a);
500 } else if (a->action & ONCE) {
501 run(a);
502 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000503 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000504 /* Only run stuff with pid==0. If they have
505 * a pid, that means it is still running */
506 if (a->pid == 0) {
507 a->pid = run(a);
508 }
509 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000510 }
511 }
512}
513
Eric Andersen2c1de612003-04-24 11:41:28 +0000514static void init_reboot(unsigned long magic)
515{
516 pid_t pid;
517 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000518 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000519 * the init process is killed.... */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000520 pid = vfork();
521 if (pid == 0) { /* child */
Eric Andersen2c1de612003-04-24 11:41:28 +0000522 reboot(magic);
Eric Andersen2c1de612003-04-24 11:41:28 +0000523 _exit(0);
524 }
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000525 waitfor(pid);
Eric Andersen2c1de612003-04-24 11:41:28 +0000526}
527
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000528static void kill_all_processes(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000529{
Eric Andersen813d88c2001-10-28 22:49:48 +0000530 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000531
Eric Andersena9cc8962002-09-16 06:49:06 +0000532 /* run everything to be run at "shutdown". This is done _prior_
533 * to killing everything, in case people wish to use scripts to
534 * shut things down gracefully... */
535 run_actions(SHUTDOWN);
536
Eric Andersen72f9a422001-10-28 05:12:20 +0000537 /* first disable all our signals */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000538 sigfillset(&block_signals);
539 /*sigemptyset(&block_signals);
Eric Andersen72f9a422001-10-28 05:12:20 +0000540 sigaddset(&block_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000541 sigaddset(&block_signals, SIGQUIT);
Eric Andersen72f9a422001-10-28 05:12:20 +0000542 sigaddset(&block_signals, SIGCHLD);
543 sigaddset(&block_signals, SIGUSR1);
544 sigaddset(&block_signals, SIGUSR2);
545 sigaddset(&block_signals, SIGINT);
546 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000547 sigaddset(&block_signals, SIGCONT);
548 sigaddset(&block_signals, SIGSTOP);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000549 sigaddset(&block_signals, SIGTSTP);*/
Eric Andersen72f9a422001-10-28 05:12:20 +0000550 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000551
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000552 message(L_CONSOLE | L_LOG, "The system is going down NOW!");
553
Erik Andersene49d5ec2000-02-08 19:58:47 +0000554 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000555 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000556
Erik Andersene49d5ec2000-02-08 19:58:47 +0000557 /* Send signals to every process _except_ pid 1 */
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000558 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "TERM");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000559 kill(-1, SIGTERM);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000560 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000561 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000562
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000563 message(L_CONSOLE | L_LOG, "Sending SIG%s to all processes", "KILL");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000564 kill(-1, SIGKILL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000565 sync();
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000566 sleep(1);
Eric Andersencc8ed391999-10-05 16:24:54 +0000567}
568
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000569static void halt_reboot_pwoff(int sig)
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000570{
571 const char *m;
572 int rb;
573
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000574 kill_all_processes();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000575
576 m = "halt";
577 rb = RB_HALT_SYSTEM;
578 if (sig == SIGTERM) {
579 m = "reboot";
580 rb = RB_AUTOBOOT;
581 } else if (sig == SIGUSR2) {
582 m = "poweroff";
583 rb = RB_POWER_OFF;
584 }
585 message(L_CONSOLE | L_LOG, "Requesting system %s", m);
586 /* allow time for last message to reach serial console */
587 sleep(2);
588 init_reboot(rb);
589 loop_forever();
590}
591
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000592/* Handler for HUP and QUIT - exec "restart" action,
593 * else (no such action defined) do nothing */
594static void exec_restart_action(int sig ATTRIBUTE_UNUSED)
Eric Andersen730f8262001-12-17 23:13:08 +0000595{
Eric Andersen0298be82002-03-05 15:12:19 +0000596 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000597 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000598
Eric Andersen0298be82002-03-05 15:12:19 +0000599 for (a = init_action_list; a; a = tmp) {
600 tmp = a->next;
601 if (a->action & RESTART) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000602 kill_all_processes();
Eric Andersen5222d312002-07-03 05:15:23 +0000603
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000604 /* unblock all signals (blocked in kill_all_processes()) */
605 sigfillset(&unblock_signals);
606 /*sigemptyset(&unblock_signals);
Eric Andersen5222d312002-07-03 05:15:23 +0000607 sigaddset(&unblock_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000608 sigaddset(&unblock_signals, SIGQUIT);
Eric Andersen5222d312002-07-03 05:15:23 +0000609 sigaddset(&unblock_signals, SIGCHLD);
610 sigaddset(&unblock_signals, SIGUSR1);
611 sigaddset(&unblock_signals, SIGUSR2);
612 sigaddset(&unblock_signals, SIGINT);
613 sigaddset(&unblock_signals, SIGTERM);
614 sigaddset(&unblock_signals, SIGCONT);
615 sigaddset(&unblock_signals, SIGSTOP);
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000616 sigaddset(&unblock_signals, SIGTSTP);*/
Eric Andersen5222d312002-07-03 05:15:23 +0000617 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
618
Eric Andersen3c8064f2003-07-05 08:29:01 +0000619 /* Open the new terminal device */
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000620 open_stdio_to_tty(a->terminal, 0 /* - halt if open fails */);
Eric Andersen3c8064f2003-07-05 08:29:01 +0000621
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000622 messageD(L_CONSOLE | L_LOG, "Trying to re-exec %s", a->command);
Denis Vlasenko4921b542007-02-03 02:17:41 +0000623 BB_EXECLP(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000624
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000625 message(L_CONSOLE | L_LOG, "Cannot run '%s': %s",
626 a->command, strerror(errno));
Eric Andersen730f8262001-12-17 23:13:08 +0000627 sleep(2);
628 init_reboot(RB_HALT_SYSTEM);
629 loop_forever();
630 }
631 }
632}
633
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000634static void ctrlaltdel_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersenc97ec342001-04-03 18:01:51 +0000635{
636 run_actions(CTRLALTDEL);
637}
638
Eric Andersen0298be82002-03-05 15:12:19 +0000639/* The SIGSTOP & SIGTSTP handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000640static void stop_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000641{
Eric Andersen0298be82002-03-05 15:12:19 +0000642 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000643
644 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000645 while (!got_cont)
646 pause();
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000647
Eric Andersened8a9be2001-11-30 19:10:58 +0000648 errno = saved_errno;
649}
650
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000651/* The SIGCONT handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000652static void cont_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000653{
654 got_cont = 1;
655}
656
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000657static void new_init_action(uint8_t action, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000658{
Eric Andersen22718092004-10-08 08:17:39 +0000659 struct init_action *new_action, *a, *last;
Erik Andersen9e737252000-01-06 01:16:13 +0000660
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000661 if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000662 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000663
Eric Andersen0298be82002-03-05 15:12:19 +0000664 /* Append to the end of the list */
Eric Andersen22718092004-10-08 08:17:39 +0000665 for (a = last = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000666 /* don't enter action if it's already in the list,
667 * but do overwrite existing actions */
Denis Vlasenkoec27feb2007-02-17 15:52:02 +0000668 if ((strcmp(a->command, command) == 0)
669 && (strcmp(a->terminal, cons) == 0)
670 ) {
Eric Andersen82baf632004-10-08 08:21:54 +0000671 a->action = action;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000672 return;
673 }
Eric Andersen22718092004-10-08 08:17:39 +0000674 last = a;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000675 }
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000676
677 new_action = xzalloc(sizeof(struct init_action));
Eric Andersen22718092004-10-08 08:17:39 +0000678 if (last) {
679 last->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000680 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000681 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000682 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000683 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000684 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000685 strcpy(new_action->terminal, cons);
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000686 messageD(L_LOG | L_CONSOLE, "command='%s' action=%d tty='%s'\n",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000687 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000688}
689
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000690static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000691{
Eric Andersen0298be82002-03-05 15:12:19 +0000692 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693
Eric Andersen0298be82002-03-05 15:12:19 +0000694 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000695 if (a == action) {
696 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000697 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000698 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000699 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000700 }
701 free(a);
702 break;
703 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000704 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000705}
706
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000707/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000708 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000709 * actions(i.e., runs INIT_SCRIPT and then starts a pair
710 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
711 * _is_ defined, but /etc/inittab is missing, this
Erik Andersen812d4662000-01-07 18:30:40 +0000712 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000713 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000714static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000715{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000716 FILE *file;
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000717 char buf[INIT_BUFFS_SIZE];
Erik Andersen7dc16072000-01-04 01:10:25 +0000718
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000719 if (ENABLE_FEATURE_USE_INITTAB)
720 file = fopen(INITTAB, "r");
721 else
722 file = NULL;
723
724 /* No inittab file -- set up some default behavior */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000725 if (file == NULL) {
Eric Andersenc97ec342001-04-03 18:01:51 +0000726 /* Reboot on Ctrl-Alt-Del */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000727 new_init_action(CTRLALTDEL, "reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000728 /* Umount all filesystems on halt/reboot */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000729 new_init_action(SHUTDOWN, "umount -a -r", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000730 /* Swapoff on halt/reboot */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000731 if (ENABLE_SWAPONOFF)
732 new_init_action(SHUTDOWN, "swapoff -a", "");
Eric Andersen730f8262001-12-17 23:13:08 +0000733 /* Prepare to restart init when a HUP is received */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000734 new_init_action(RESTART, "init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000735 /* Askfirst shell on tty1-4 */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000736 new_init_action(ASKFIRST, bb_default_login_shell, "");
737 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
738 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
739 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000740 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000741 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000742
Erik Andersene49d5ec2000-02-08 19:58:47 +0000743 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000744 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000745
Eric Andersen0826b6b2002-07-03 23:50:16 +0000746 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000747 static const char actions[] =
748 STR_SYSINIT "sysinit\0"
749 STR_RESPAWN "respawn\0"
750 STR_ASKFIRST "askfirst\0"
751 STR_WAIT "wait\0"
752 STR_ONCE "once\0"
753 STR_CTRLALTDEL "ctrlaltdel\0"
754 STR_SHUTDOWN "shutdown\0"
755 STR_RESTART "restart\0"
756 ;
757 char tmpConsole[CONSOLE_NAME_SIZE];
758 char *id, *runlev, *action, *command;
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000759 const char *a;
760
Eric Andersenb5966362000-05-31 20:04:38 +0000761 /* Skip leading spaces */
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000762 id = skip_whitespace(buf);
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000763 /* Trim the trailing '\n' */
764 *strchrnul(id, '\n') = '\0';
Denis Vlasenkoc882f342008-01-29 09:56:21 +0000765 /* Skip the line if it is a comment */
766 if (*id == '#' || *id == '\0')
767 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000768
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000769 /* Line is: "id:runlevel_ignored:action:command" */
Eric Andersenb5966362000-05-31 20:04:38 +0000770 runlev = strchr(id, ':');
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000771 if (runlev == NULL /*|| runlev[1] == '\0' - not needed */)
772 goto bad_entry;
773 action = strchr(runlev + 1, ':');
774 if (action == NULL /*|| action[1] == '\0' - not needed */)
775 goto bad_entry;
776 command = strchr(action + 1, ':');
777 if (command == NULL || command[1] == '\0')
778 goto bad_entry;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000779
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000780 *command = '\0'; /* action => ":action\0" now */
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000781 for (a = actions; a[0]; a += strlen(a) + 1) {
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000782 if (strcmp(a + 1, action + 1) == 0) {
783 *runlev = '\0';
Eric Andersenb5966362000-05-31 20:04:38 +0000784 if (*id != '\0') {
Denis Vlasenko51742f42007-04-12 00:32:05 +0000785 if (strncmp(id, "/dev/", 5) == 0)
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000786 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000787 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000788 safe_strncpy(tmpConsole + 5, id,
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000789 sizeof(tmpConsole) - 5);
Eric Andersenb5966362000-05-31 20:04:38 +0000790 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000791 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000792 new_init_action((uint8_t)a[0], command + 1, id);
793 goto next_line;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000794 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000795 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000796 *command = ':';
797 /* Choke on an unknown action */
798 bad_entry:
799 message(L_LOG | L_CONSOLE, "Bad inittab entry: %s", id);
800 next_line: ;
Erik Andersen7dc16072000-01-04 01:10:25 +0000801 }
Eric Andersend8636ca2002-05-15 22:19:09 +0000802 fclose(file);
Erik Andersen7dc16072000-01-04 01:10:25 +0000803}
804
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000805static void reload_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen6fd0e312003-07-22 09:48:56 +0000806{
Eric Andersen82baf632004-10-08 08:21:54 +0000807 struct init_action *a, *tmp;
808
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000809 message(L_LOG, "reloading /etc/inittab");
Eric Andersen82baf632004-10-08 08:21:54 +0000810
811 /* disable old entrys */
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000812 for (a = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000813 a->action = ONCE;
814 }
815
816 parse_inittab();
817
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000818 if (ENABLE_FEATURE_KILL_REMOVED) {
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000819 /* Be nice and send SIGTERM first */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000820 for (a = init_action_list; a; a = a->next) {
821 pid_t pid = a->pid;
822 if ((a->action & ONCE) && pid != 0) {
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000823 kill(pid, SIGTERM);
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000824 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000825 }
Denis Vlasenkod55268d2007-12-26 18:32:58 +0000826#if CONFIG_FEATURE_KILL_DELAY
827 if (fork() == 0) { /* child */
828 sleep(CONFIG_FEATURE_KILL_DELAY);
829 for (a = init_action_list; a; a = a->next) {
830 pid_t pid = a->pid;
831 if ((a->action & ONCE) && pid != 0) {
832 kill(pid, SIGKILL);
833 }
834 }
835 _exit(0);
836 }
837#endif
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000838 }
Denis Vlasenkoec5631b2007-12-25 01:08:58 +0000839
Eric Andersen82baf632004-10-08 08:21:54 +0000840 /* remove unused entrys */
841 for (a = init_action_list; a; a = tmp) {
842 tmp = a->next;
Denis Vlasenko219d14d2007-03-24 15:40:16 +0000843 if ((a->action & (ONCE | SYSINIT | WAIT)) && a->pid == 0) {
Eric Andersen82baf632004-10-08 08:21:54 +0000844 delete_init_action(a);
845 }
846 }
Eric Andersen6fd0e312003-07-22 09:48:56 +0000847 run_actions(RESPAWN);
Eric Andersen6fd0e312003-07-22 09:48:56 +0000848}
Eric Andersen82baf632004-10-08 08:21:54 +0000849
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000850int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000851int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000852{
Eric Andersen0298be82002-03-05 15:12:19 +0000853 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000854 pid_t wpid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000855
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000856 die_sleep = 30 * 24*60*60; /* if xmalloc will ever die... */
857
Eric Andersen730f8262001-12-17 23:13:08 +0000858 if (argc > 1 && !strcmp(argv[1], "-q")) {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000859 return kill(1, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +0000860 }
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000861
862 if (!ENABLE_DEBUG_INIT) {
863 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
864 if (getpid() != 1
865 && (!ENABLE_FEATURE_INITRD || !strstr(applet_name, "linuxrc"))
866 ) {
867 bb_show_usage();
868 }
869 /* Set up sig handlers -- be sure to
870 * clear all of these in run() */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000871 bb_signals(0
872 + (1 << SIGHUP)
873 + (1 << SIGQUIT)
874 , exec_restart_action);
875 bb_signals(0
876 + (1 << SIGUSR1) /* halt */
877 + (1 << SIGUSR2) /* poweroff */
878 + (1 << SIGTERM) /* reboot */
879 , halt_reboot_pwoff);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000880 signal(SIGINT, ctrlaltdel_signal);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000881 signal(SIGCONT, cont_handler);
Denis Vlasenko25591c32008-02-16 22:58:56 +0000882 bb_signals(0
883 + (1 << SIGSTOP)
884 + (1 << SIGTSTP)
885 , stop_handler);
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000886
887 /* Turn off rebooting via CTL-ALT-DEL -- we get a
888 * SIGINT on CAD so we can shut things down gracefully... */
889 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000890 }
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000891
Eric Andersen599e3ce2002-07-03 11:08:10 +0000892 /* Figure out where the default console should be */
893 console_init();
Denis Vlasenkod238a472007-03-05 19:22:04 +0000894 set_sane_term();
Erik Andersen983b51b2000-04-04 18:14:25 +0000895 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000896 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000897 {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000898 const char *const *e;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000899 /* Make sure environs is set to something sane */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000900 for (e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000901 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000902 }
Rob Landleycba1b962006-07-09 17:28:17 +0000903
904 if (argc > 1) setenv("RUNLEVEL", argv[1], 1);
905
Erik Andersene49d5ec2000-02-08 19:58:47 +0000906 /* Hello world */
Denis Vlasenkoca525b42007-06-13 12:27:17 +0000907 message(MAYBE_CONSOLE | L_LOG, "init started: %s", bb_banner);
Eric Andersencc8ed391999-10-05 16:24:54 +0000908
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 /* Make sure there is enough memory to do something useful. */
Rob Landleyc3386a42005-08-30 18:50:37 +0000910 if (ENABLE_SWAPONOFF) {
911 struct sysinfo info;
912
913 if (!sysinfo(&info) &&
Denis Vlasenkodca0b702006-10-27 09:05:02 +0000914 (info.mem_unit ? : 1) * (long long)info.totalram < 1024*1024)
Rob Landleyc3386a42005-08-30 18:50:37 +0000915 {
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +0000916 message(L_CONSOLE, "Low memory, forcing swapon");
Rob Landleyc3386a42005-08-30 18:50:37 +0000917 /* swapon -a requires /proc typically */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000918 new_init_action(SYSINIT, "mount -t proc proc /proc", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000919 /* Try to turn on swap */
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000920 new_init_action(SYSINIT, "swapon -a", "");
Rob Landleyc3386a42005-08-30 18:50:37 +0000921 run_actions(SYSINIT); /* wait and removing */
922 }
923 }
Erik Andersen9e737252000-01-06 01:16:13 +0000924
Erik Andersene49d5ec2000-02-08 19:58:47 +0000925 /* Check if we are supposed to be in single user mode */
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000926 if (argc > 1
927 && (!strcmp(argv[1], "single") || !strcmp(argv[1], "-s") || LONE_CHAR(argv[1], '1'))
928 ) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000929 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000930 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000931 } else {
932 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000933
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000934 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000935 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000936 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +0000937 * of "askfirst" shells */
938 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000939 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000940
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000941#if ENABLE_SELINUX
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000942 if (getenv("SELINUX_INIT") == NULL) {
943 int enforce = 0;
944
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000945 putenv((char*)"SELINUX_INIT=YES");
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000946 if (selinux_init_load_policy(&enforce) == 0) {
Denis Vlasenko4921b542007-02-03 02:17:41 +0000947 BB_EXECVP(argv[0], argv);
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000948 } else if (enforce > 0) {
949 /* SELinux in enforcing mode but load_policy failed */
Denis Vlasenkob7167542007-02-27 19:20:00 +0000950 message(L_CONSOLE, "Cannot load SELinux Policy. "
951 "Machine is in enforcing mode. Halting now.");
Rob Landleyb3ede5a2006-03-27 23:09:12 +0000952 exit(1);
953 }
954 }
955#endif /* CONFIG_SELINUX */
956
Denis Vlasenko2afabe82007-12-10 07:06:04 +0000957 /* Make the command line just say "init" - thats all, nothing else */
958 strncpy(argv[0], "init", strlen(argv[0]));
959 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
960 while (*++argv)
961 memset(*argv, 0, strlen(*argv));
Eric Andersen219d6f51999-11-02 19:43:01 +0000962
Erik Andersene49d5ec2000-02-08 19:58:47 +0000963 /* Now run everything that needs to be run */
964
965 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +0000966 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000967
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +0000969 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +0000970
Erik Andersene49d5ec2000-02-08 19:58:47 +0000971 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +0000972 run_actions(ONCE);
973
Eric Andersen6fd0e312003-07-22 09:48:56 +0000974 /* Redefine SIGHUP to reread /etc/inittab */
Mike Frysingerbb50fdf2007-12-25 04:30:14 +0000975 if (ENABLE_FEATURE_USE_INITTAB)
976 signal(SIGHUP, reload_signal);
977 else
978 signal(SIGHUP, SIG_IGN);
Eric Andersen82baf632004-10-08 08:21:54 +0000979
Erik Andersene49d5ec2000-02-08 19:58:47 +0000980 /* Now run the looping stuff for the rest of forever */
981 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +0000982 /* run the respawn stuff */
983 run_actions(RESPAWN);
984
985 /* run the askfirst stuff */
986 run_actions(ASKFIRST);
987
988 /* Don't consume all CPU time -- sleep a bit */
989 sleep(1);
990
Denis Vlasenkofb0eba72008-01-02 19:55:04 +0000991 /* Wait for any child process to exit */
Bernhard Reutner-Fischerc58dbf22006-05-30 12:16:54 +0000992 wpid = wait(NULL);
Eric Andersen87812dc2004-04-12 19:21:54 +0000993 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000994 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +0000995 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000996 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000997 /* Set the pid to 0 so that the process gets
998 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000999 a->pid = 0;
Denis Vlasenko7a2ca5e2007-02-21 00:15:20 +00001000 message(L_LOG, "process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001001 "Scheduling it for restart.",
1002 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001003 }
1004 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001005 /* see if anyone else is waiting to be reaped */
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001006 wpid = wait_any_nohang(NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001007 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001008 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001009}