blob: b3d1f6d365bc4d1c1c24d5758a32c86d3b50d261 [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
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +000012#include "busybox.h"
Erik Andersen4f3f7572000-04-28 00:18:56 +000013#include <stdio.h>
14#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000015#include <errno.h>
Eric Andersenb186d981999-12-03 09:19:54 +000016#include <paths.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000017#include <signal.h>
18#include <stdarg.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000019#include <string.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +000020#include <termios.h>
21#include <unistd.h>
Eric Andersened3ef502001-01-27 08:24:39 +000022#include <limits.h>
Mike Frysinger706f8f62006-04-29 04:43:31 +000023#include <fcntl.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000024#include <sys/ioctl.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000025#include <sys/types.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000026#include <sys/wait.h>
Eric Andersen85e5e722003-07-22 08:56:55 +000027#include <sys/reboot.h>
Eric Andersenb01ed652003-06-27 17:08:15 +000028
29#include "init_shared.h"
30
31
Eric Andersenbdfd0d72001-10-24 05:00:29 +000032#ifdef CONFIG_SYSLOGD
Erik Andersen4f3f7572000-04-28 00:18:56 +000033# include <sys/syslog.h>
34#endif
Eric Andersen2c1de612003-04-24 11:41:28 +000035
Erik Andersen4f3f7572000-04-28 00:18:56 +000036
Rob Landleyb3ede5a2006-03-27 23:09:12 +000037#ifdef CONFIG_SELINUX
38# include <selinux/selinux.h>
39#endif /* CONFIG_SELINUX */
40
41
Eric Andersen0826b6b2002-07-03 23:50:16 +000042#define INIT_BUFFS_SIZE 256
43
Eric Andersenbd22ed82000-07-08 18:55:24 +000044/* From <linux/vt.h> */
45struct vt_stat {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000046 unsigned short v_active; /* active vt */
47 unsigned short v_signal; /* signal to send */
48 unsigned short v_state; /* vt bitmask */
Eric Andersenbd22ed82000-07-08 18:55:24 +000049};
Rob Landleybc68cd12006-03-10 19:22:06 +000050enum { VT_GETSTATE = 0x5603 }; /* get global vt state info */
Eric Andersenbd22ed82000-07-08 18:55:24 +000051
52/* From <linux/serial.h> */
53struct serial_struct {
Eric Andersen81155f82003-09-11 08:52:22 +000054 int type;
55 int line;
56 unsigned int port;
57 int irq;
58 int flags;
59 int xmit_fifo_size;
60 int custom_divisor;
61 int baud_base;
62 unsigned short close_delay;
63 char io_type;
64 char reserved_char[1];
65 int hub6;
66 unsigned short closing_wait; /* time to wait before closing */
67 unsigned short closing_wait2; /* no longer used... */
68 unsigned char *iomem_base;
69 unsigned short iomem_reg_shift;
70 unsigned int port_high;
71 unsigned long iomap_base; /* cookie passed into ioremap */
72 int reserved[1];
Eric Andersenbd22ed82000-07-08 18:55:24 +000073};
74
75
Eric Andersen41492d62001-02-23 00:05:56 +000076#ifndef _PATH_STDPATH
Erik Andersen4f3f7572000-04-28 00:18:56 +000077#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
Eric Andersen41492d62001-02-23 00:05:56 +000078#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000079
Eric Andersenbdfd0d72001-10-24 05:00:29 +000080#if defined CONFIG_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000081/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +000082 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
Erik Andersen183da4a2000-04-04 18:36:37 +000083 * before processes are spawned to set core file size as unlimited.
84 * This is for debugging only. Don't use this is production, unless
85 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000086 */
87#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
88#include <sys/resource.h>
Erik Andersen183da4a2000-04-04 18:36:37 +000089#endif
Erik Andersen983b51b2000-04-04 18:14:25 +000090
Erik Andersen4d1d0111999-12-17 18:44:15 +000091#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +000092
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000093#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +000094#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000095#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +000096#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +000097
Eric Andersen41492d62001-02-23 00:05:56 +000098#define MAXENV 16 /* Number of env. vars */
Erik Andersen7dc16072000-01-04 01:10:25 +000099
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000100#define CONSOLE_BUFF_SIZE 32
101
Erik Andersen7dc16072000-01-04 01:10:25 +0000102/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +0000103#define SYSINIT 0x001
104#define RESPAWN 0x002
105#define ASKFIRST 0x004
106#define WAIT 0x008
107#define ONCE 0x010
108#define CTRLALTDEL 0x020
109#define SHUTDOWN 0x040
110#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +0000111
Erik Andersen42094cd2000-03-20 21:34:52 +0000112/* A mapping between "inittab" action name strings and action type codes. */
Eric Andersen0298be82002-03-05 15:12:19 +0000113struct init_action_type {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000114 const char *name;
Eric Andersen0298be82002-03-05 15:12:19 +0000115 int action;
116};
Erik Andersen7dc16072000-01-04 01:10:25 +0000117
Eric Andersen0298be82002-03-05 15:12:19 +0000118static const struct init_action_type actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119 {"sysinit", SYSINIT},
120 {"respawn", RESPAWN},
121 {"askfirst", ASKFIRST},
122 {"wait", WAIT},
123 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000124 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000125 {"shutdown", SHUTDOWN},
Eric Andersen730f8262001-12-17 23:13:08 +0000126 {"restart", RESTART},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000127 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000128};
129
Eric Andersen0298be82002-03-05 15:12:19 +0000130/* Set up a linked list of init_actions, to be read from inittab */
131struct init_action {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000132 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000133 char command[INIT_BUFFS_SIZE];
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000134 char terminal[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000135 struct init_action *next;
136 int action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000137};
Erik Andersen7dc16072000-01-04 01:10:25 +0000138
Eric Andersen0298be82002-03-05 15:12:19 +0000139/* Static variables */
140static struct init_action *init_action_list = NULL;
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000141static char console[CONSOLE_BUFF_SIZE] = CONSOLE_DEV;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000142
Eric Andersene7078062002-07-29 08:00:16 +0000143#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000144static char *log_console = VC_5;
Eric Andersene7078062002-07-29 08:00:16 +0000145#endif
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000146#if !ENABLE_DEBUG_INIT
Eric Andersen0298be82002-03-05 15:12:19 +0000147static sig_atomic_t got_cont = 0;
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000148#endif
Rob Landleybc68cd12006-03-10 19:22:06 +0000149
150enum {
151 LOG = 0x1,
152 CONSOLE = 0x2,
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000153
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000154#if defined CONFIG_FEATURE_EXTRA_QUIET
Rob Landleybc68cd12006-03-10 19:22:06 +0000155 MAYBE_CONSOLE = 0x0,
Eric Andersen0298be82002-03-05 15:12:19 +0000156#else
Rob Landleybc68cd12006-03-10 19:22:06 +0000157 MAYBE_CONSOLE = CONSOLE,
Eric Andersen0298be82002-03-05 15:12:19 +0000158#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000159
Rob Landleybc68cd12006-03-10 19:22:06 +0000160#ifndef RB_HALT_SYSTEM
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000161 RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */
Rob Landleybc68cd12006-03-10 19:22:06 +0000162 RB_ENABLE_CAD = 0x89abcdef,
163 RB_DISABLE_CAD = 0,
164 RB_POWER_OFF = 0x4321fedc,
165 RB_AUTOBOOT = 0x01234567,
Eric Andersen0298be82002-03-05 15:12:19 +0000166#endif
Rob Landleybc68cd12006-03-10 19:22:06 +0000167};
Erik Andersen42094cd2000-03-20 21:34:52 +0000168
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000169static const char * const environment[] = {
170 "HOME=/",
171 "PATH=" _PATH_STDPATH,
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000172 "SHELL=/bin/sh",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000173 "USER=root",
174 NULL
175};
176
Eric Andersen0298be82002-03-05 15:12:19 +0000177/* Function prototypes */
178static void delete_init_action(struct init_action *a);
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000179static int waitfor(const struct init_action *a, pid_t pid);
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000180#if !ENABLE_DEBUG_INIT
Paul Foxd112f8f2006-06-01 13:17:49 +0000181static void shutdown_signal(int sig);
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000182#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000183
Eric Andersen74400cc2001-10-18 04:11:39 +0000184static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000185{
186 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000187 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000188}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000189
Erik Andersen42094cd2000-03-20 21:34:52 +0000190/* Print a message to the specified device.
191 * Device may be bitwise-or'd from LOG | CONSOLE */
Bernhard Reutner-Fischer35e1a072006-05-29 13:08:35 +0000192#if ENABLE_DEBUG_INIT
193#define messageD message
194#else
195static inline void messageD(int ATTRIBUTE_UNUSED device,
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000196 const char ATTRIBUTE_UNUSED *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000197{
198}
Eric Andersenfedce062001-11-17 07:27:14 +0000199#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000200static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000201 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000202static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000203{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000204 va_list arguments;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000205 int l;
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000206 RESERVE_CONFIG_BUFFER(msg, 1024);
Eric Andersen22237012003-01-23 07:08:26 +0000207#ifndef CONFIG_SYSLOGD
208 static int log_fd = -1;
209#endif
Eric Andersen4c781471999-11-26 08:12:56 +0000210
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000211 msg[0] = '\r';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000212 va_start(arguments, fmt);
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000213 l = vsnprintf(msg + 1, 1024 - 2, fmt, arguments) + 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000214 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000215
216#ifdef CONFIG_SYSLOGD
217 /* Log the message to syslogd */
218 if (device & LOG) {
219 /* don`t out "\r\n" */
Eric Andersen36adca82004-06-22 10:07:17 +0000220 openlog(bb_applet_name, 0, LOG_DAEMON);
"Vladimir N. Oleynik"8e1bd4a2005-09-29 12:55:21 +0000221 syslog(LOG_INFO, "%s", msg + 1);
Eric Andersen36adca82004-06-22 10:07:17 +0000222 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000223 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000224
225 msg[l++] = '\n';
226 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000227#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000229 msg[l++] = '\n';
230 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000231 /* Take full control of the log tty, and never close it.
232 * It's mine, all mine! Muhahahaha! */
233 if (log_fd < 0) {
Mike Frysingere548bdf2005-07-06 04:46:14 +0000234 if ((log_fd = device_open(log_console, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000235 log_fd = -2;
Mike Frysinger72a4c332005-07-05 02:19:20 +0000236 bb_error_msg("Bummer, can't write to log on %s!", log_console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000237 device = CONSOLE;
Eric Andersen6a979902002-09-30 20:08:53 +0000238 } else {
239 fcntl(log_fd, F_SETFD, FD_CLOEXEC);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000240 }
241 }
242 if ((device & LOG) && (log_fd >= 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000243 bb_full_write(log_fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000244 }
Eric Andersen4c781471999-11-26 08:12:56 +0000245#endif
246
Erik Andersene49d5ec2000-02-08 19:58:47 +0000247 if (device & CONSOLE) {
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000248 int fd = device_open(CONSOLE_DEV,
Mike Frysingere548bdf2005-07-06 04:46:14 +0000249 O_WRONLY | O_NOCTTY | O_NONBLOCK);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000250 /* Always send console messages to /dev/console so people will see them. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000251 if (fd >= 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000252 bb_full_write(fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000253 close(fd);
Bernhard Reutner-Fischer35e1a072006-05-29 13:08:35 +0000254#if ENABLE_DEBUG_INIT
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000255 /* all descriptors may be closed */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000256 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000257 bb_error_msg("Bummer, can't print: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 va_start(arguments, fmt);
259 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000260 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000261#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000262 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000263 }
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000264 RELEASE_CONFIG_BUFFER(msg);
Eric Andersencc8ed391999-10-05 16:24:54 +0000265}
266
Eric Andersen0460ff21999-10-25 23:32:44 +0000267/* Set terminal settings to reasonable defaults */
Bernhard Reutner-Fischer49e60b92006-05-29 12:57:52 +0000268static void set_term(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000269{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000270 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000271
Bernhard Reutner-Fischer49e60b92006-05-29 12:57:52 +0000272 tcgetattr(STDIN_FILENO, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000273
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 /* set control chars */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000275 tty.c_cc[VINTR] = 3; /* C-c */
276 tty.c_cc[VQUIT] = 28; /* C-\ */
277 tty.c_cc[VERASE] = 127; /* C-? */
278 tty.c_cc[VKILL] = 21; /* C-u */
279 tty.c_cc[VEOF] = 4; /* C-d */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000280 tty.c_cc[VSTART] = 17; /* C-q */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000281 tty.c_cc[VSTOP] = 19; /* C-s */
282 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000283
Erik Andersene49d5ec2000-02-08 19:58:47 +0000284 /* use line dicipline 0 */
285 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000286
Erik Andersene49d5ec2000-02-08 19:58:47 +0000287 /* Make it be sane */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000288 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
289 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
Eric Andersend8862922001-04-23 15:14:11 +0000290
Eric Andersen08b10341999-11-19 02:38:58 +0000291
Erik Andersene49d5ec2000-02-08 19:58:47 +0000292 /* input modes */
293 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000294
Erik Andersene49d5ec2000-02-08 19:58:47 +0000295 /* output modes */
296 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000297
Erik Andersene49d5ec2000-02-08 19:58:47 +0000298 /* local modes */
299 tty.c_lflag =
300 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000301
Bernhard Reutner-Fischer49e60b92006-05-29 12:57:52 +0000302 tcsetattr(STDIN_FILENO, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000303}
304
Eric Andersen74400cc2001-10-18 04:11:39 +0000305static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000306{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000307 int fd;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000308 int tried = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000309 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000310 struct serial_struct sr;
311 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000312
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000313 if ((s = getenv("CONSOLE")) != NULL || (s = getenv("console")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000314 safe_strncpy(console, s, sizeof(console));
Bernhard Reutner-Fischer76bb97c2006-05-29 13:01:37 +0000315#if 0 /* #cpu(sparc) */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000316 /* sparc kernel supports console=tty[ab] parameter which is also
Erik Andersene49d5ec2000-02-08 19:58:47 +0000317 * passed to init, so catch it here */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000318 /* remap tty[ab] to /dev/ttyS[01] */
319 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000320 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000322 safe_strncpy(console, SC_1, sizeof(console));
Eric Andersen219d6f51999-11-02 19:43:01 +0000323#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000324 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000325 /* 2.2 kernels: identify the real console backend and try to use it */
326 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
327 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000328 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000329 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
330 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000331 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332 } else {
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000333 safe_strncpy(console, CONSOLE_DEV, sizeof(console));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000334 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000335 }
Eric Andersen07e52971999-11-07 07:38:08 +0000336 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000337
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000338 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0 && tried < 2) {
339 /* Can't open selected console -- try
340 logical system console and VT_MASTER */
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000341 safe_strncpy(console, (tried == 0 ? CONSOLE_DEV : CURRENT_VC),
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000342 sizeof(console));
343 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000344 }
345 if (fd < 0) {
346 /* Perhaps we should panic here? */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000347#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000348 log_console =
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000349#endif
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000350 safe_strncpy(console, bb_dev_null, sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000351 } else {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000352 s = getenv("TERM");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000353 /* check for serial console */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000354 if (ioctl(fd, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000355 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000356 * if TERM is set to linux (the default) */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000357 if (s == NULL || strcmp(s, "linux") == 0)
358 putenv("TERM=vt102");
359#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000360 log_console = console;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000361#endif
362 } else {
363 if (s == NULL)
364 putenv("TERM=linux");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000365 }
366 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000367 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000368 messageD(LOG, "console=%s", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000369}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000370
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000371static void fixup_argv(int argc, char **argv, char *new_argv0)
372{
373 int len;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000374
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000375 /* Fix up argv[0] to be certain we claim to be init */
376 len = strlen(argv[0]);
377 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000378 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000379
380 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
381 len = 1;
382 while (argc > len) {
383 memset(argv[len], 0, strlen(argv[len]));
384 len++;
385 }
386}
387
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000388/* Open the new terminal device */
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000389static void open_new_terminal(const char * const device, const int fail) {
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000390 struct stat sb;
391
392 if ((device_open(device, O_RDWR)) < 0) {
393 if (stat(device, &sb) != 0) {
394 message(LOG | CONSOLE, "device '%s' does not exist.", device);
395 } else {
396 message(LOG | CONSOLE, "Bummer, can't open %s", device);
397 }
398 if (fail)
399 _exit(1);
400 /* else */
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000401#if !ENABLE_DEBUG_INIT
Paul Foxd112f8f2006-06-01 13:17:49 +0000402 shutdown_signal(SIGUSR1);
Bernhard Reutner-Fischercf1f2ac2006-06-02 10:43:17 +0000403#else
404 _exit(2);
405#endif
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000406 }
407}
408
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000409static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000410{
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000411 int i;
Mike Frysinger10427ab2005-07-06 05:00:48 +0000412 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000413 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000414 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000415 sigset_t nmask, omask;
Eric Andersen0298be82002-03-05 15:12:19 +0000416 static const char press_enter[] =
417#ifdef CUSTOMIZED_BANNER
418#include CUSTOMIZED_BANNER
419#endif
420 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000421
Eric Andersen0298be82002-03-05 15:12:19 +0000422 /* Block sigchild while forking. */
423 sigemptyset(&nmask);
424 sigaddset(&nmask, SIGCHLD);
425 sigprocmask(SIG_BLOCK, &nmask, &omask);
426
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000427 if ((pid = fork()) == 0) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000428
Erik Andersene49d5ec2000-02-08 19:58:47 +0000429 /* Clean up */
430 close(0);
431 close(1);
432 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000433 sigprocmask(SIG_SETMASK, &omask, NULL);
434
Eric Andersen0298be82002-03-05 15:12:19 +0000435 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000436 signal(SIGUSR1, SIG_DFL);
437 signal(SIGUSR2, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000438 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000439 signal(SIGTERM, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000440 signal(SIGHUP, SIG_DFL);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000441 signal(SIGQUIT, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000442 signal(SIGCONT, SIG_DFL);
443 signal(SIGSTOP, SIG_DFL);
444 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000445
Eric Andersen599e3ce2002-07-03 11:08:10 +0000446 /* Create a new session and make ourself the process
Eric Andersene8a90fb2002-10-12 04:05:48 +0000447 * group leader */
448 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000449
Eric Andersen0298be82002-03-05 15:12:19 +0000450 /* Open the new terminal device */
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000451 open_new_terminal(a->terminal, 1);
Eric Andersen599e3ce2002-07-03 11:08:10 +0000452
Eric Andersen0298be82002-03-05 15:12:19 +0000453 /* Make sure the terminal will act fairly normal for us */
Bernhard Reutner-Fischer49e60b92006-05-29 12:57:52 +0000454 set_term();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000455 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000456 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000457 dup(0);
458 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000459
Eric Andersen599e3ce2002-07-03 11:08:10 +0000460 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000461 * supplied terminal to be the controlling tty. */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000462 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000463
464 /* Now fork off another process to just hang around */
465 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000466 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000467 _exit(1);
468 }
469
470 if (pid > 0) {
471
472 /* We are the parent -- wait till the child is done */
473 signal(SIGINT, SIG_IGN);
474 signal(SIGTSTP, SIG_IGN);
475 signal(SIGQUIT, SIG_IGN);
476 signal(SIGCHLD, SIG_DFL);
477
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000478 waitfor(NULL, pid);
Eric Andersen0298be82002-03-05 15:12:19 +0000479 /* See if stealing the controlling tty back is necessary */
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000480 if (tcgetpgrp(0) != getpid())
Eric Andersen0298be82002-03-05 15:12:19 +0000481 _exit(0);
482
483 /* Use a temporary process to steal the controlling tty. */
484 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000485 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000486 _exit(1);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000487 }
Eric Andersen0298be82002-03-05 15:12:19 +0000488 if (pid == 0) {
489 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000490 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000491 _exit(0);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000492 }
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000493 waitfor(NULL, pid);
Eric Andersen0298be82002-03-05 15:12:19 +0000494 _exit(0);
495 }
496
497 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000498 }
499
Erik Andersene132f4b2000-02-09 04:16:43 +0000500 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000501 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000502 cmd[0] = (char *)DEFAULT_SHELL;
Erik Andersene132f4b2000-02-09 04:16:43 +0000503 cmd[1] = "-c";
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000504 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000505 cmd[3] = NULL;
506 } else {
507 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000508 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000509 s = buf;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000510 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000511 if (*tmpCmd != '\0') {
512 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000513 i++;
514 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000515 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000516 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000517 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000518
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000519 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000520
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000521 /*
522 Interactive shells want to see a dash in argv[0]. This
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000523 typically is handled by login, argv will be setup this
524 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000525 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000526 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000527
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000528 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000529
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000530 /* skip over the dash */
531 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000532
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000533 /* find the last component in the command pathname */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000534 s = bb_get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000535
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000536 /* make a new argv[0] */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000537 if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000538 message(LOG | CONSOLE, bb_msg_memory_exhausted);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000539 cmd[0] = cmdpath;
540 } else {
541 cmd[0][0] = '-';
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000542 strcpy(cmd[0] + 1, s);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000543 }
Paul Fox41a72ec2005-08-01 16:43:13 +0000544#ifdef CONFIG_FEATURE_INIT_SCTTY
545 /* Establish this process as session leader and
546 * (attempt) to make the tty (if any) a controlling tty.
547 */
548 (void) setsid();
549 (void) ioctl(0, TIOCSCTTY, 0/*don't steal it*/);
550#endif
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000551 }
552
Eric Andersen1f50e842004-08-16 09:29:42 +0000553#if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
Eric Andersen0298be82002-03-05 15:12:19 +0000554 if (a->action & ASKFIRST) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000555 char c;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000556 /*
557 * Save memory by not exec-ing anything large (like a shell)
558 * before the user wants it. This is critical if swap is not
559 * enabled and the system has low memory. Generally this will
560 * be run on the second virtual console, and the first will
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000561 * be allowed to start a shell or whatever an init script
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000562 * specifies.
563 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000564 messageD(LOG, "Waiting for enter to start '%s'"
565 "(pid %d, terminal %s)\n",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000566 cmdpath, getpid(), a->terminal);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000567 bb_full_write(1, press_enter, sizeof(press_enter) - 1);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000568 while(read(0, &c, 1) == 1 && c != '\n')
569 ;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000570 }
Eric Andersen1f50e842004-08-16 09:29:42 +0000571#endif
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000572
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000573 /* Log the process name and args */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000574 message(LOG, "Starting pid %d, console %s: '%s'",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000575 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000576
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000577#if defined CONFIG_FEATURE_INIT_COREDUMPS
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000578 {
579 struct stat sb;
580 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
581 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000582
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000583 limit.rlim_cur = RLIM_INFINITY;
584 limit.rlim_max = RLIM_INFINITY;
585 setrlimit(RLIMIT_CORE, &limit);
586 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000587 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000588#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000589
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000590 /* Now run it. The new program will take over this PID,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000591 * so nothing further in init.c should be run. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000592 execv(cmdpath, cmd);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000593
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000594 /* We're still here? Some error happened. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000595 message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath);
Eric Andersen0298be82002-03-05 15:12:19 +0000596 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000597 }
Eric Andersen0298be82002-03-05 15:12:19 +0000598 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000599 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000600}
601
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000602static int waitfor(const struct init_action *a, pid_t pid)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000603{
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000604 int runpid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000605 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000606
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000607 runpid = (NULL == a)? pid : run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000608 while (1) {
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000609 wpid = waitpid(runpid,&status,0);
610 if (wpid == runpid)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000611 break;
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000612 if (wpid == -1 && errno == ECHILD) {
613 /* we missed its termination */
614 break;
615 }
616 /* FIXME other errors should maybe trigger an error, but allow
617 * the program to continue */
Erik Andersen0e3782f2000-01-07 02:54:55 +0000618 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000619 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000620}
621
Eric Andersen0298be82002-03-05 15:12:19 +0000622/* Run all commands of a particular type */
623static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000624{
Eric Andersen0298be82002-03-05 15:12:19 +0000625 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000626
Eric Andersen0298be82002-03-05 15:12:19 +0000627 for (a = init_action_list; a; a = tmp) {
628 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000629 if (a->action == action) {
Rob Landley2dd42792006-03-22 17:39:13 +0000630 if (access(a->terminal, R_OK | W_OK)) {
631 delete_init_action(a);
632 } else if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Bernhard Reutner-Fischer3ab30802006-05-30 12:10:29 +0000633 waitfor(a, 0);
Eric Andersen0298be82002-03-05 15:12:19 +0000634 delete_init_action(a);
635 } else if (a->action & ONCE) {
636 run(a);
637 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000638 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000639 /* Only run stuff with pid==0. If they have
640 * a pid, that means it is still running */
641 if (a->pid == 0) {
642 a->pid = run(a);
643 }
644 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000645 }
646 }
647}
648
Bernhard Reutner-Fischer35e1a072006-05-29 13:08:35 +0000649#if !ENABLE_DEBUG_INIT
Eric Andersen2c1de612003-04-24 11:41:28 +0000650static void init_reboot(unsigned long magic)
651{
652 pid_t pid;
653 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000654 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000655 * the init process is killed.... */
656 if ((pid = fork()) == 0) {
Eric Andersen2c1de612003-04-24 11:41:28 +0000657 reboot(magic);
Eric Andersen2c1de612003-04-24 11:41:28 +0000658 _exit(0);
659 }
660 waitpid (pid, NULL, 0);
661}
662
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000663static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000664{
Eric Andersen813d88c2001-10-28 22:49:48 +0000665 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000666
Eric Andersena9cc8962002-09-16 06:49:06 +0000667 /* run everything to be run at "shutdown". This is done _prior_
668 * to killing everything, in case people wish to use scripts to
669 * shut things down gracefully... */
670 run_actions(SHUTDOWN);
671
Eric Andersen72f9a422001-10-28 05:12:20 +0000672 /* first disable all our signals */
673 sigemptyset(&block_signals);
674 sigaddset(&block_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000675 sigaddset(&block_signals, SIGQUIT);
Eric Andersen72f9a422001-10-28 05:12:20 +0000676 sigaddset(&block_signals, SIGCHLD);
677 sigaddset(&block_signals, SIGUSR1);
678 sigaddset(&block_signals, SIGUSR2);
679 sigaddset(&block_signals, SIGINT);
680 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000681 sigaddset(&block_signals, SIGCONT);
682 sigaddset(&block_signals, SIGSTOP);
683 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000684 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000685
Erik Andersene49d5ec2000-02-08 19:58:47 +0000686 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000687 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000688
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000689 message(CONSOLE | LOG, "The system is going down NOW !!");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000690 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000691
692 /* Send signals to every process _except_ pid 1 */
Bernhard Reutner-Fischer7ae15532006-05-30 18:17:21 +0000693 message(CONSOLE | LOG, init_sending_format, "TERM");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000694 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000695 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000696 sync();
697
Bernhard Reutner-Fischer7ae15532006-05-30 18:17:21 +0000698 message(CONSOLE | LOG, init_sending_format, "KILL");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000699 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000700 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000701
Erik Andersene49d5ec2000-02-08 19:58:47 +0000702 sync();
Eric Andersencc8ed391999-10-05 16:24:54 +0000703}
704
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000705static void exec_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen730f8262001-12-17 23:13:08 +0000706{
Eric Andersen0298be82002-03-05 15:12:19 +0000707 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000708 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000709
Eric Andersen0298be82002-03-05 15:12:19 +0000710 for (a = init_action_list; a; a = tmp) {
711 tmp = a->next;
712 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000713 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000714
715 /* unblock all signals, blocked in shutdown_system() */
716 sigemptyset(&unblock_signals);
717 sigaddset(&unblock_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000718 sigaddset(&unblock_signals, SIGQUIT);
Eric Andersen5222d312002-07-03 05:15:23 +0000719 sigaddset(&unblock_signals, SIGCHLD);
720 sigaddset(&unblock_signals, SIGUSR1);
721 sigaddset(&unblock_signals, SIGUSR2);
722 sigaddset(&unblock_signals, SIGINT);
723 sigaddset(&unblock_signals, SIGTERM);
724 sigaddset(&unblock_signals, SIGCONT);
725 sigaddset(&unblock_signals, SIGSTOP);
726 sigaddset(&unblock_signals, SIGTSTP);
727 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
728
Eric Andersen9cdef5d2003-07-29 06:33:12 +0000729 /* Close whatever files are open. */
730 close(0);
731 close(1);
732 close(2);
733
Eric Andersen3c8064f2003-07-05 08:29:01 +0000734 /* Open the new terminal device */
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000735 open_new_terminal(a->terminal, 0);
Eric Andersen3c8064f2003-07-05 08:29:01 +0000736
737 /* Make sure the terminal will act fairly normal for us */
Bernhard Reutner-Fischer49e60b92006-05-29 12:57:52 +0000738 set_term();
Eric Andersen3c8064f2003-07-05 08:29:01 +0000739 /* Setup stdout, stderr on the supplied terminal */
740 dup(0);
741 dup(0);
742
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000743 messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000744 execl(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000745
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000746 message(CONSOLE | LOG, "exec of '%s' failed: %m",
Eric Andersen71ae64b2002-10-10 04:20:21 +0000747 a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000748 sync();
749 sleep(2);
750 init_reboot(RB_HALT_SYSTEM);
751 loop_forever();
752 }
753 }
754}
755
Paul Foxd112f8f2006-06-01 13:17:49 +0000756static void shutdown_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000757{
Paul Foxd112f8f2006-06-01 13:17:49 +0000758 char *m;
759 int rb;
760
Erik Andersene49d5ec2000-02-08 19:58:47 +0000761 shutdown_system();
Paul Foxd112f8f2006-06-01 13:17:49 +0000762
763 if (sig == SIGTERM) {
764 m = "reboot";
765 rb = RB_AUTOBOOT;
766 } else if (sig == SIGUSR2) {
767 m = "poweroff";
768 rb = RB_POWER_OFF;
769 } else {
770 m = "halt";
771 rb = RB_HALT_SYSTEM;
772 }
773 message(CONSOLE | LOG, "Requesting system %s.", m);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000774 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000775
Erik Andersene49d5ec2000-02-08 19:58:47 +0000776 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000777 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000778
Paul Foxd112f8f2006-06-01 13:17:49 +0000779 init_reboot(rb);
Matt Kraai67a46402001-06-03 05:55:52 +0000780
781 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000782}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000783
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000784static void ctrlaltdel_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersenc97ec342001-04-03 18:01:51 +0000785{
786 run_actions(CTRLALTDEL);
787}
788
Eric Andersen0298be82002-03-05 15:12:19 +0000789/* The SIGSTOP & SIGTSTP handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000790static void stop_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000791{
Eric Andersen0298be82002-03-05 15:12:19 +0000792 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000793
794 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000795 while (!got_cont)
796 pause();
Eric Andersened8a9be2001-11-30 19:10:58 +0000797 got_cont = 0;
798 errno = saved_errno;
799}
800
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000801/* The SIGCONT handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000802static void cont_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000803{
804 got_cont = 1;
805}
806
Bernhard Reutner-Fischer35e1a072006-05-29 13:08:35 +0000807#endif /* ! ENABLE_DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000808
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000809static void new_init_action(int action, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000810{
Eric Andersen22718092004-10-08 08:17:39 +0000811 struct init_action *new_action, *a, *last;
Erik Andersen9e737252000-01-06 01:16:13 +0000812
Erik Andersene49d5ec2000-02-08 19:58:47 +0000813 if (*cons == '\0')
814 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000815
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000816 if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000817 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000818
Eric Andersen0298be82002-03-05 15:12:19 +0000819 new_action = calloc((size_t) (1), sizeof(struct init_action));
820 if (!new_action) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000821 message(LOG | CONSOLE, "Memory allocation failure");
Matt Kraai67a46402001-06-03 05:55:52 +0000822 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000823 }
Eric Andersen0298be82002-03-05 15:12:19 +0000824
825 /* Append to the end of the list */
Eric Andersen22718092004-10-08 08:17:39 +0000826 for (a = last = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000827 /* don't enter action if it's already in the list,
828 * but do overwrite existing actions */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000829 if ((strcmp(a->command, command) == 0) &&
Eric Andersen6fd0e312003-07-22 09:48:56 +0000830 (strcmp(a->terminal, cons) ==0)) {
Eric Andersen82baf632004-10-08 08:21:54 +0000831 a->action = action;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000832 free(new_action);
833 return;
834 }
Eric Andersen22718092004-10-08 08:17:39 +0000835 last = a;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000836 }
Eric Andersen22718092004-10-08 08:17:39 +0000837 if (last) {
838 last->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000839 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000840 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000841 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000842 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000843 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000844 strcpy(new_action->terminal, cons);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000845#if 0 /* calloc zeroed always */
Eric Andersen0298be82002-03-05 15:12:19 +0000846 new_action->pid = 0;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000847#endif
848 messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
849 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000850}
851
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000852static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000853{
Eric Andersen0298be82002-03-05 15:12:19 +0000854 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000855
Eric Andersen0298be82002-03-05 15:12:19 +0000856 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000857 if (a == action) {
858 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000859 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000860 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000861 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000862 }
863 free(a);
864 break;
865 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000866 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000867}
868
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000869/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000870 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000871 * actions(i.e., runs INIT_SCRIPT and then starts a pair
872 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
873 * _is_ defined, but /etc/inittab is missing, this
Erik Andersen812d4662000-01-07 18:30:40 +0000874 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000875 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000876static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000877{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000878#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000879 FILE *file;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000880 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
881 char tmpConsole[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000882 char *id, *runlev, *action, *command, *eol;
883 const struct init_action_type *a = actions;
Erik Andersen7dc16072000-01-04 01:10:25 +0000884
885
Erik Andersene49d5ec2000-02-08 19:58:47 +0000886 file = fopen(INITTAB, "r");
887 if (file == NULL) {
888 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000889#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000890 /* Reboot on Ctrl-Alt-Del */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000891 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000892 /* Umount all filesystems on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000893 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000894 /* Swapoff on halt/reboot */
Rob Landley7a8f6792005-08-30 18:17:05 +0000895 if(ENABLE_SWAPONOFF) new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
Eric Andersen730f8262001-12-17 23:13:08 +0000896 /* Prepare to restart init when a HUP is received */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000897 new_init_action(RESTART, "/sbin/init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000898 /* Askfirst shell on tty1-4 */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000899 new_init_action(ASKFIRST, bb_default_login_shell, "");
900 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
901 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
902 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000903 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000904 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000905
Erik Andersene49d5ec2000-02-08 19:58:47 +0000906 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000907#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000908 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000909
Eric Andersen0826b6b2002-07-03 23:50:16 +0000910 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Eric Andersenb5966362000-05-31 20:04:38 +0000911 /* Skip leading spaces */
912 for (id = buf; *id == ' ' || *id == '\t'; id++);
913
914 /* Skip the line if it's a comment */
915 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000916 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000917
Erik Andersene49d5ec2000-02-08 19:58:47 +0000918 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000919 eol = strrchr(id, '\n');
920 if (eol != NULL)
921 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000922
Erik Andersene49d5ec2000-02-08 19:58:47 +0000923 /* Keep a copy around for posterity's sake (and error msgs) */
924 strcpy(lineAsRead, buf);
925
Eric Andersenb5966362000-05-31 20:04:38 +0000926 /* Separate the ID field from the runlevels */
927 runlev = strchr(id, ':');
928 if (runlev == NULL || *(runlev + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000929 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000930 continue;
931 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000932 *runlev = '\0';
933 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000934 }
935
Eric Andersenb5966362000-05-31 20:04:38 +0000936 /* Separate the runlevels from the action */
937 action = strchr(runlev, ':');
938 if (action == NULL || *(action + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000939 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000940 continue;
941 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000942 *action = '\0';
943 ++action;
944 }
945
Eric Andersen0298be82002-03-05 15:12:19 +0000946 /* Separate the action from the command */
947 command = strchr(action, ':');
948 if (command == NULL || *(command + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000949 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +0000950 continue;
951 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000952 *command = '\0';
953 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000954 }
955
956 /* Ok, now process it */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000957 for (a = actions; a->name != 0; a++) {
Eric Andersenb5966362000-05-31 20:04:38 +0000958 if (strcmp(a->name, action) == 0) {
959 if (*id != '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000960 if(strncmp(id, "/dev/", 5) == 0)
961 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000962 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000963 safe_strncpy(tmpConsole + 5, id,
964 CONSOLE_BUFF_SIZE - 5);
Eric Andersenb5966362000-05-31 20:04:38 +0000965 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000966 }
Eric Andersen0298be82002-03-05 15:12:19 +0000967 new_init_action(a->action, command, id);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000968 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000969 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000970 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000971 if (a->name == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000972 /* Choke on an unknown action */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000973 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000974 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000975 }
Eric Andersend8636ca2002-05-15 22:19:09 +0000976 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000977 return;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000978#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000979}
980
Eric Andersen82baf632004-10-08 08:21:54 +0000981#ifdef CONFIG_FEATURE_USE_INITTAB
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000982static void reload_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen6fd0e312003-07-22 09:48:56 +0000983{
Eric Andersen82baf632004-10-08 08:21:54 +0000984 struct init_action *a, *tmp;
985
986 message(LOG, "Reloading /etc/inittab");
987
988 /* disable old entrys */
989 for (a = init_action_list; a; a = a->next ) {
990 a->action = ONCE;
991 }
992
993 parse_inittab();
994
995 /* remove unused entrys */
996 for (a = init_action_list; a; a = tmp) {
997 tmp = a->next;
998 if (a->action & (ONCE | SYSINIT | WAIT ) &&
999 a->pid == 0 ) {
1000 delete_init_action(a);
1001 }
1002 }
Eric Andersen6fd0e312003-07-22 09:48:56 +00001003 run_actions(RESPAWN);
Eric Andersen82baf632004-10-08 08:21:54 +00001004 return;
Eric Andersen6fd0e312003-07-22 09:48:56 +00001005}
Eric Andersen82baf632004-10-08 08:21:54 +00001006#endif /* CONFIG_FEATURE_USE_INITTAB */
1007
Rob Landleydfba7412006-03-06 20:47:33 +00001008int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001009{
Eric Andersen0298be82002-03-05 15:12:19 +00001010 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001011 pid_t wpid;
Eric Andersen0460ff21999-10-25 23:32:44 +00001012
Eric Andersen730f8262001-12-17 23:13:08 +00001013 if (argc > 1 && !strcmp(argv[1], "-q")) {
Rob Landley2edf5262006-01-22 02:41:51 +00001014 return kill(1,SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001015 }
Bernhard Reutner-Fischer35e1a072006-05-29 13:08:35 +00001016#if !ENABLE_DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001017 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
Rob Landley64612912006-01-30 08:31:37 +00001018 if (getpid() != 1 &&
1019 (!ENABLE_FEATURE_INITRD || !strstr(bb_applet_name, "linuxrc")))
1020 {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001021 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001022 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001023 /* Set up sig handlers -- be sure to
1024 * clear all of these in run() */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001025 signal(SIGHUP, exec_signal);
Mike Frysingera77b4f32005-04-16 08:21:34 +00001026 signal(SIGQUIT, exec_signal);
Paul Foxd112f8f2006-06-01 13:17:49 +00001027 signal(SIGUSR1, shutdown_signal);
1028 signal(SIGUSR2, shutdown_signal);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001029 signal(SIGINT, ctrlaltdel_signal);
Paul Foxd112f8f2006-06-01 13:17:49 +00001030 signal(SIGTERM, shutdown_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001031 signal(SIGCONT, cont_handler);
1032 signal(SIGSTOP, stop_handler);
1033 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001034
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001035 /* Turn off rebooting via CTL-ALT-DEL -- we get a
Erik Andersene49d5ec2000-02-08 19:58:47 +00001036 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001037 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001038#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001039
Eric Andersen599e3ce2002-07-03 11:08:10 +00001040 /* Figure out where the default console should be */
1041 console_init();
1042
Erik Andersene49d5ec2000-02-08 19:58:47 +00001043 /* Close whatever files are open, and reset the console. */
1044 close(0);
1045 close(1);
1046 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001047
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001048 if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
Bernhard Reutner-Fischer49e60b92006-05-29 12:57:52 +00001049 set_term();
Eric Andersen599e3ce2002-07-03 11:08:10 +00001050 close(0);
1051 }
1052
Erik Andersen983b51b2000-04-04 18:14:25 +00001053 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001054 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001055 {
1056 const char * const *e;
1057 /* Make sure environs is set to something sane */
1058 for(e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001059 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001060 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001061 /* Hello world */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001062 message(MAYBE_CONSOLE | LOG, "init started: %s", bb_msg_full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001063
Erik Andersene49d5ec2000-02-08 19:58:47 +00001064 /* Make sure there is enough memory to do something useful. */
Rob Landleyc3386a42005-08-30 18:50:37 +00001065 if (ENABLE_SWAPONOFF) {
1066 struct sysinfo info;
1067
1068 if (!sysinfo(&info) &&
1069 (info.mem_unit ? : 1) * (long long)info.totalram < MEGABYTE)
1070 {
1071 message(CONSOLE,"Low memory: forcing swapon.");
1072 /* swapon -a requires /proc typically */
1073 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
1074 /* Try to turn on swap */
1075 new_init_action(SYSINIT, "/sbin/swapon -a", "");
1076 run_actions(SYSINIT); /* wait and removing */
1077 }
1078 }
Erik Andersen9e737252000-01-06 01:16:13 +00001079
Erik Andersene49d5ec2000-02-08 19:58:47 +00001080 /* Check if we are supposed to be in single user mode */
1081 if (argc > 1 && (!strcmp(argv[1], "single") ||
1082 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001083 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +00001084 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001085 } else {
1086 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001087
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001088 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001089 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001090 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001091 * of "askfirst" shells */
1092 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001093 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001094
Rob Landleyb3ede5a2006-03-27 23:09:12 +00001095#ifdef CONFIG_SELINUX
1096 if (getenv("SELINUX_INIT") == NULL) {
1097 int enforce = 0;
1098
1099 putenv("SELINUX_INIT=YES");
1100 if (selinux_init_load_policy(&enforce) == 0) {
1101 execv(argv[0], argv);
1102 } else if (enforce > 0) {
1103 /* SELinux in enforcing mode but load_policy failed */
1104 /* At this point, we probably can't open /dev/console, so log() won't work */
1105 message(CONSOLE,"Unable to load SELinux Policy. Machine is in enforcing mode. Halting now.");
1106 exit(1);
1107 }
1108 }
1109#endif /* CONFIG_SELINUX */
1110
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001111 /* Make the command line just say "init" -- thats all, nothing else */
1112 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001113
Erik Andersene49d5ec2000-02-08 19:58:47 +00001114 /* Now run everything that needs to be run */
1115
1116 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001117 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001118
Erik Andersene49d5ec2000-02-08 19:58:47 +00001119 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001120 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001121
Erik Andersene49d5ec2000-02-08 19:58:47 +00001122 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001123 run_actions(ONCE);
1124
Eric Andersen82baf632004-10-08 08:21:54 +00001125#ifdef CONFIG_FEATURE_USE_INITTAB
Eric Andersen6fd0e312003-07-22 09:48:56 +00001126 /* Redefine SIGHUP to reread /etc/inittab */
1127 signal(SIGHUP, reload_signal);
Eric Andersen82baf632004-10-08 08:21:54 +00001128#else
1129 signal(SIGHUP, SIG_IGN);
1130#endif /* CONFIG_FEATURE_USE_INITTAB */
1131
Eric Andersen6fd0e312003-07-22 09:48:56 +00001132
Erik Andersene49d5ec2000-02-08 19:58:47 +00001133 /* Now run the looping stuff for the rest of forever */
1134 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001135 /* run the respawn stuff */
1136 run_actions(RESPAWN);
1137
1138 /* run the askfirst stuff */
1139 run_actions(ASKFIRST);
1140
1141 /* Don't consume all CPU time -- sleep a bit */
1142 sleep(1);
1143
Erik Andersene49d5ec2000-02-08 19:58:47 +00001144 /* Wait for a child process to exit */
Bernhard Reutner-Fischerc58dbf22006-05-30 12:16:54 +00001145 wpid = wait(NULL);
Eric Andersen87812dc2004-04-12 19:21:54 +00001146 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001147 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001148 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001149 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001150 /* Set the pid to 0 so that the process gets
1151 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001152 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001153 message(LOG, "Process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001154 "Scheduling it for restart.",
1155 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001156 }
1157 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001158 /* see if anyone else is waiting to be reaped */
Bernhard Reutner-Fischerc58dbf22006-05-30 12:16:54 +00001159 wpid = waitpid (-1, NULL, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001160 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001161 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001162}