blob: d800480ee1e993a9f42e4f55a1732a50d6cb9753 [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
Eric Andersenc7bda1c2004-03-15 08:29:22 +000012/* Turn this on to disable all the dangerous
Erik Andersene132f4b2000-02-09 04:16:43 +000013 rebooting stuff when debugging.
14#define DEBUG_INIT
15*/
16
Erik Andersen4f3f7572000-04-28 00:18:56 +000017#include <stdio.h>
18#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000019#include <errno.h>
Eric Andersenb186d981999-12-03 09:19:54 +000020#include <paths.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000021#include <signal.h>
22#include <stdarg.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000023#include <string.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +000024#include <termios.h>
25#include <unistd.h>
Eric Andersened3ef502001-01-27 08:24:39 +000026#include <limits.h>
Mike Frysinger706f8f62006-04-29 04:43:31 +000027#include <fcntl.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000028#include <sys/ioctl.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000029#include <sys/types.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000030#include <sys/wait.h>
Eric Andersen85e5e722003-07-22 08:56:55 +000031#include <sys/reboot.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000032#include "busybox.h"
Eric Andersenb01ed652003-06-27 17:08:15 +000033
34#include "init_shared.h"
35
36
Eric Andersenbdfd0d72001-10-24 05:00:29 +000037#ifdef CONFIG_SYSLOGD
Erik Andersen4f3f7572000-04-28 00:18:56 +000038# include <sys/syslog.h>
39#endif
Eric Andersen2c1de612003-04-24 11:41:28 +000040
Erik Andersen4f3f7572000-04-28 00:18:56 +000041
Rob Landleyb3ede5a2006-03-27 23:09:12 +000042#ifdef CONFIG_SELINUX
43# include <selinux/selinux.h>
44#endif /* CONFIG_SELINUX */
45
46
Eric Andersen0826b6b2002-07-03 23:50:16 +000047#define INIT_BUFFS_SIZE 256
48
Eric Andersenbd22ed82000-07-08 18:55:24 +000049/* From <linux/vt.h> */
50struct vt_stat {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000051 unsigned short v_active; /* active vt */
52 unsigned short v_signal; /* signal to send */
53 unsigned short v_state; /* vt bitmask */
Eric Andersenbd22ed82000-07-08 18:55:24 +000054};
Rob Landleybc68cd12006-03-10 19:22:06 +000055enum { VT_GETSTATE = 0x5603 }; /* get global vt state info */
Eric Andersenbd22ed82000-07-08 18:55:24 +000056
57/* From <linux/serial.h> */
58struct serial_struct {
Eric Andersen81155f82003-09-11 08:52:22 +000059 int type;
60 int line;
61 unsigned int port;
62 int irq;
63 int flags;
64 int xmit_fifo_size;
65 int custom_divisor;
66 int baud_base;
67 unsigned short close_delay;
68 char io_type;
69 char reserved_char[1];
70 int hub6;
71 unsigned short closing_wait; /* time to wait before closing */
72 unsigned short closing_wait2; /* no longer used... */
73 unsigned char *iomem_base;
74 unsigned short iomem_reg_shift;
75 unsigned int port_high;
76 unsigned long iomap_base; /* cookie passed into ioremap */
77 int reserved[1];
Eric Andersenbd22ed82000-07-08 18:55:24 +000078};
79
80
Eric Andersen41492d62001-02-23 00:05:56 +000081#ifndef _PATH_STDPATH
Erik Andersen4f3f7572000-04-28 00:18:56 +000082#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
Eric Andersen41492d62001-02-23 00:05:56 +000083#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000084
Eric Andersenbdfd0d72001-10-24 05:00:29 +000085#if defined CONFIG_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000086/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +000087 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
Erik Andersen183da4a2000-04-04 18:36:37 +000088 * before processes are spawned to set core file size as unlimited.
89 * This is for debugging only. Don't use this is production, unless
90 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000091 */
92#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
93#include <sys/resource.h>
Erik Andersen183da4a2000-04-04 18:36:37 +000094#endif
Erik Andersen983b51b2000-04-04 18:14:25 +000095
Erik Andersen4d1d0111999-12-17 18:44:15 +000096#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +000097
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000098#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +000099#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000100#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000101#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000102
Eric Andersen41492d62001-02-23 00:05:56 +0000103#define MAXENV 16 /* Number of env. vars */
Erik Andersen7dc16072000-01-04 01:10:25 +0000104
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000105#define CONSOLE_BUFF_SIZE 32
106
Erik Andersen7dc16072000-01-04 01:10:25 +0000107/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +0000108#define SYSINIT 0x001
109#define RESPAWN 0x002
110#define ASKFIRST 0x004
111#define WAIT 0x008
112#define ONCE 0x010
113#define CTRLALTDEL 0x020
114#define SHUTDOWN 0x040
115#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +0000116
Erik Andersen42094cd2000-03-20 21:34:52 +0000117/* A mapping between "inittab" action name strings and action type codes. */
Eric Andersen0298be82002-03-05 15:12:19 +0000118struct init_action_type {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119 const char *name;
Eric Andersen0298be82002-03-05 15:12:19 +0000120 int action;
121};
Erik Andersen7dc16072000-01-04 01:10:25 +0000122
Eric Andersen0298be82002-03-05 15:12:19 +0000123static const struct init_action_type actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124 {"sysinit", SYSINIT},
125 {"respawn", RESPAWN},
126 {"askfirst", ASKFIRST},
127 {"wait", WAIT},
128 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000129 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000130 {"shutdown", SHUTDOWN},
Eric Andersen730f8262001-12-17 23:13:08 +0000131 {"restart", RESTART},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000132 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000133};
134
Eric Andersen0298be82002-03-05 15:12:19 +0000135/* Set up a linked list of init_actions, to be read from inittab */
136struct init_action {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000138 char command[INIT_BUFFS_SIZE];
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000139 char terminal[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000140 struct init_action *next;
141 int action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000142};
Erik Andersen7dc16072000-01-04 01:10:25 +0000143
Eric Andersen0298be82002-03-05 15:12:19 +0000144/* Static variables */
145static struct init_action *init_action_list = NULL;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000146static char console[CONSOLE_BUFF_SIZE] = _PATH_CONSOLE;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000147
Eric Andersene7078062002-07-29 08:00:16 +0000148#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000149static char *log_console = VC_5;
Eric Andersene7078062002-07-29 08:00:16 +0000150#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000151static sig_atomic_t got_cont = 0;
Rob Landleybc68cd12006-03-10 19:22:06 +0000152
153enum {
154 LOG = 0x1,
155 CONSOLE = 0x2,
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000156
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000157#if defined CONFIG_FEATURE_EXTRA_QUIET
Rob Landleybc68cd12006-03-10 19:22:06 +0000158 MAYBE_CONSOLE = 0x0,
Eric Andersen0298be82002-03-05 15:12:19 +0000159#else
Rob Landleybc68cd12006-03-10 19:22:06 +0000160 MAYBE_CONSOLE = CONSOLE,
Eric Andersen0298be82002-03-05 15:12:19 +0000161#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000162
Rob Landleybc68cd12006-03-10 19:22:06 +0000163#ifndef RB_HALT_SYSTEM
164 RB_HALT_SYSTEM = 0xcdef0123,
165 RB_ENABLE_CAD = 0x89abcdef,
166 RB_DISABLE_CAD = 0,
167 RB_POWER_OFF = 0x4321fedc,
168 RB_AUTOBOOT = 0x01234567,
Eric Andersen0298be82002-03-05 15:12:19 +0000169#endif
Rob Landleybc68cd12006-03-10 19:22:06 +0000170};
Erik Andersen42094cd2000-03-20 21:34:52 +0000171
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000172static const char * const environment[] = {
173 "HOME=/",
174 "PATH=" _PATH_STDPATH,
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000175 "SHELL=/bin/sh",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000176 "USER=root",
177 NULL
178};
179
Eric Andersen0298be82002-03-05 15:12:19 +0000180/* Function prototypes */
181static void delete_init_action(struct init_action *a);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000182static int waitfor(const struct init_action *a);
Eric Andersend5a27802003-07-05 08:39:47 +0000183static void halt_signal(int sig);
Eric Andersen0298be82002-03-05 15:12:19 +0000184
Eric Andersen0460ff21999-10-25 23:32:44 +0000185
Eric Andersen74400cc2001-10-18 04:11:39 +0000186static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000187{
188 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000189 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000190}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000191
Erik Andersen42094cd2000-03-20 21:34:52 +0000192/* Print a message to the specified device.
193 * Device may be bitwise-or'd from LOG | CONSOLE */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000194#ifndef DEBUG_INIT
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000195static inline void messageD(int ATTRIBUTE_UNUSED device,
196 const char ATTRIBUTE_UNUSED *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000197{
198}
199#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000200#define messageD message
Eric Andersenfedce062001-11-17 07:27:14 +0000201#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000202static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000203 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000204static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000205{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 va_list arguments;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000207 int l;
Eric Andersen22237012003-01-23 07:08:26 +0000208 char msg[1024];
209#ifndef CONFIG_SYSLOGD
210 static int log_fd = -1;
211#endif
Eric Andersen4c781471999-11-26 08:12:56 +0000212
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000213 msg[0] = '\r';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000214 va_start(arguments, fmt);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000215 l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments) + 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000216 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000217
218#ifdef CONFIG_SYSLOGD
219 /* Log the message to syslogd */
220 if (device & LOG) {
221 /* don`t out "\r\n" */
Eric Andersen36adca82004-06-22 10:07:17 +0000222 openlog(bb_applet_name, 0, LOG_DAEMON);
"Vladimir N. Oleynik"8e1bd4a2005-09-29 12:55:21 +0000223 syslog(LOG_INFO, "%s", msg + 1);
Eric Andersen36adca82004-06-22 10:07:17 +0000224 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000225 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000226
227 msg[l++] = '\n';
228 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000229#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000230
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000231 msg[l++] = '\n';
232 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000233 /* Take full control of the log tty, and never close it.
234 * It's mine, all mine! Muhahahaha! */
235 if (log_fd < 0) {
Mike Frysingere548bdf2005-07-06 04:46:14 +0000236 if ((log_fd = device_open(log_console, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000237 log_fd = -2;
Mike Frysinger72a4c332005-07-05 02:19:20 +0000238 bb_error_msg("Bummer, can't write to log on %s!", log_console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000239 device = CONSOLE;
Eric Andersen6a979902002-09-30 20:08:53 +0000240 } else {
241 fcntl(log_fd, F_SETFD, FD_CLOEXEC);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000242 }
243 }
244 if ((device & LOG) && (log_fd >= 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000245 bb_full_write(log_fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000246 }
Eric Andersen4c781471999-11-26 08:12:56 +0000247#endif
248
Erik Andersene49d5ec2000-02-08 19:58:47 +0000249 if (device & CONSOLE) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000250 int fd = device_open(_PATH_CONSOLE,
Mike Frysingere548bdf2005-07-06 04:46:14 +0000251 O_WRONLY | O_NOCTTY | O_NONBLOCK);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000252 /* Always send console messages to /dev/console so people will see them. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000253 if (fd >= 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000254 bb_full_write(fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000255 close(fd);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000256#ifdef DEBUG_INIT
257 /* all descriptors may be closed */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000259 bb_error_msg("Bummer, can't print: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000260 va_start(arguments, fmt);
261 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000262 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000263#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000265 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000266}
267
Eric Andersen0460ff21999-10-25 23:32:44 +0000268/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000269static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000270{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000271 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000272
Erik Andersene49d5ec2000-02-08 19:58:47 +0000273 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000274
Erik Andersene49d5ec2000-02-08 19:58:47 +0000275 /* set control chars */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000276 tty.c_cc[VINTR] = 3; /* C-c */
277 tty.c_cc[VQUIT] = 28; /* C-\ */
278 tty.c_cc[VERASE] = 127; /* C-? */
279 tty.c_cc[VKILL] = 21; /* C-u */
280 tty.c_cc[VEOF] = 4; /* C-d */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000281 tty.c_cc[VSTART] = 17; /* C-q */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000282 tty.c_cc[VSTOP] = 19; /* C-s */
283 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000284
Erik Andersene49d5ec2000-02-08 19:58:47 +0000285 /* use line dicipline 0 */
286 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000287
Erik Andersene49d5ec2000-02-08 19:58:47 +0000288 /* Make it be sane */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000289 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
290 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
Eric Andersend8862922001-04-23 15:14:11 +0000291
Eric Andersen08b10341999-11-19 02:38:58 +0000292
Erik Andersene49d5ec2000-02-08 19:58:47 +0000293 /* input modes */
294 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000295
Erik Andersene49d5ec2000-02-08 19:58:47 +0000296 /* output modes */
297 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000298
Erik Andersene49d5ec2000-02-08 19:58:47 +0000299 /* local modes */
300 tty.c_lflag =
301 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000302
Erik Andersene49d5ec2000-02-08 19:58:47 +0000303 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000304}
305
Eric Andersen74400cc2001-10-18 04:11:39 +0000306static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000307{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000308 int fd;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000309 int tried = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000310 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000311 struct serial_struct sr;
312 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000313
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000314 if ((s = getenv("CONSOLE")) != NULL || (s = getenv("console")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000315 safe_strncpy(console, s, sizeof(console));
Eric Andersenfbb39c81999-11-08 17:00:52 +0000316#if #cpu(sparc)
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000317 /* sparc kernel supports console=tty[ab] parameter which is also
Erik Andersene49d5ec2000-02-08 19:58:47 +0000318 * passed to init, so catch it here */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000319 /* remap tty[ab] to /dev/ttyS[01] */
320 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000321 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000322 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000323 safe_strncpy(console, SC_1, sizeof(console));
Eric Andersen219d6f51999-11-02 19:43:01 +0000324#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000325 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000326 /* 2.2 kernels: identify the real console backend and try to use it */
327 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
328 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000329 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000330 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
331 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000332 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000333 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000334 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000335 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000336 }
Eric Andersen07e52971999-11-07 07:38:08 +0000337 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000338
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000339 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0 && tried < 2) {
340 /* Can't open selected console -- try
341 logical system console and VT_MASTER */
342 safe_strncpy(console, (tried == 0 ? _PATH_CONSOLE : CURRENT_VC),
343 sizeof(console));
344 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345 }
346 if (fd < 0) {
347 /* Perhaps we should panic here? */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000348#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000349 log_console =
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000350#endif
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000351 safe_strncpy(console, bb_dev_null, sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000352 } else {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000353 s = getenv("TERM");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000354 /* check for serial console */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000355 if (ioctl(fd, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000356 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000357 * if TERM is set to linux (the default) */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000358 if (s == NULL || strcmp(s, "linux") == 0)
359 putenv("TERM=vt102");
360#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000361 log_console = console;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000362#endif
363 } else {
364 if (s == NULL)
365 putenv("TERM=linux");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000366 }
367 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000368 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000369 messageD(LOG, "console=%s", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000370}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000371
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000372static void fixup_argv(int argc, char **argv, char *new_argv0)
373{
374 int len;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000375
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000376 /* Fix up argv[0] to be certain we claim to be init */
377 len = strlen(argv[0]);
378 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000379 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000380
381 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
382 len = 1;
383 while (argc > len) {
384 memset(argv[len], 0, strlen(argv[len]));
385 len++;
386 }
387}
388
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000389/* Open the new terminal device */
390static void open_new_terminal(const char *device, char fail) {
391 struct stat sb;
392
393 if ((device_open(device, O_RDWR)) < 0) {
394 if (stat(device, &sb) != 0) {
395 message(LOG | CONSOLE, "device '%s' does not exist.", device);
396 } else {
397 message(LOG | CONSOLE, "Bummer, can't open %s", device);
398 }
399 if (fail)
400 _exit(1);
401 /* else */
402 halt_signal(SIGUSR1);
403 }
404}
405
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000406static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000407{
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000408 int i, junk;
Mike Frysinger10427ab2005-07-06 05:00:48 +0000409 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000410 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000411 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000412 sigset_t nmask, omask;
Eric Andersen0298be82002-03-05 15:12:19 +0000413 static const char press_enter[] =
414#ifdef CUSTOMIZED_BANNER
415#include CUSTOMIZED_BANNER
416#endif
417 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000418
Eric Andersen0298be82002-03-05 15:12:19 +0000419 /* Block sigchild while forking. */
420 sigemptyset(&nmask);
421 sigaddset(&nmask, SIGCHLD);
422 sigprocmask(SIG_BLOCK, &nmask, &omask);
423
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000424 if ((pid = fork()) == 0) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000425
Erik Andersene49d5ec2000-02-08 19:58:47 +0000426 /* Clean up */
427 close(0);
428 close(1);
429 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000430 sigprocmask(SIG_SETMASK, &omask, NULL);
431
Eric Andersen0298be82002-03-05 15:12:19 +0000432 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000433 signal(SIGUSR1, SIG_DFL);
434 signal(SIGUSR2, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000435 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000436 signal(SIGTERM, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000437 signal(SIGHUP, SIG_DFL);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000438 signal(SIGQUIT, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000439 signal(SIGCONT, SIG_DFL);
440 signal(SIGSTOP, SIG_DFL);
441 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000442
Eric Andersen599e3ce2002-07-03 11:08:10 +0000443 /* Create a new session and make ourself the process
Eric Andersene8a90fb2002-10-12 04:05:48 +0000444 * group leader */
445 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000446
Eric Andersen0298be82002-03-05 15:12:19 +0000447 /* Open the new terminal device */
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000448 open_new_terminal(a->terminal, 1);
Eric Andersen599e3ce2002-07-03 11:08:10 +0000449
Eric Andersen0298be82002-03-05 15:12:19 +0000450 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000451 set_term(0);
Eric Andersen0826b6b2002-07-03 23:50:16 +0000452 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000453 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000454 dup(0);
455 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000456
Eric Andersen599e3ce2002-07-03 11:08:10 +0000457 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000458 * supplied terminal to be the controlling tty. */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000459 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000460 pid_t pgrp, tmp_pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000461
462 /* Now fork off another process to just hang around */
463 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000464 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000465 _exit(1);
466 }
467
468 if (pid > 0) {
469
470 /* We are the parent -- wait till the child is done */
471 signal(SIGINT, SIG_IGN);
472 signal(SIGTSTP, SIG_IGN);
473 signal(SIGQUIT, SIG_IGN);
474 signal(SIGCHLD, SIG_DFL);
475
476 /* Wait for child to exit */
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000477 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
478 if (tmp_pid == -1 && errno == ECHILD) {
479 break;
480 }
481 /* FIXME handle other errors */
Mike Frysinger2f4d91d2006-05-13 02:27:52 +0000482 }
Eric Andersen0298be82002-03-05 15:12:19 +0000483
484 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000485 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000486 if (pgrp != getpid())
487 _exit(0);
488
489 /* Use a temporary process to steal the controlling tty. */
490 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000491 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000492 _exit(1);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000493 }
Eric Andersen0298be82002-03-05 15:12:19 +0000494 if (pid == 0) {
495 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000496 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000497 _exit(0);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000498 }
499 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000500 if (tmp_pid < 0 && errno == ECHILD)
501 break;
502 }
503 _exit(0);
504 }
505
506 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000507 }
508
Erik Andersene132f4b2000-02-09 04:16:43 +0000509 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000510 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000511 cmd[0] = (char *)DEFAULT_SHELL;
Erik Andersene132f4b2000-02-09 04:16:43 +0000512 cmd[1] = "-c";
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000513 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000514 cmd[3] = NULL;
515 } else {
516 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000517 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000518 s = buf;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000519 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000520 if (*tmpCmd != '\0') {
521 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000522 i++;
523 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000524 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000525 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000526 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000527
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000528 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000529
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000530 /*
531 Interactive shells want to see a dash in argv[0]. This
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000532 typically is handled by login, argv will be setup this
533 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000534 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000535 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000536
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000537 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000538
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000539 /* skip over the dash */
540 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000541
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000542 /* find the last component in the command pathname */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000543 s = bb_get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000544
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000545 /* make a new argv[0] */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000546 if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000547 message(LOG | CONSOLE, bb_msg_memory_exhausted);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000548 cmd[0] = cmdpath;
549 } else {
550 cmd[0][0] = '-';
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000551 strcpy(cmd[0] + 1, s);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000552 }
Paul Fox41a72ec2005-08-01 16:43:13 +0000553#ifdef CONFIG_FEATURE_INIT_SCTTY
554 /* Establish this process as session leader and
555 * (attempt) to make the tty (if any) a controlling tty.
556 */
557 (void) setsid();
558 (void) ioctl(0, TIOCSCTTY, 0/*don't steal it*/);
559#endif
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000560 }
561
Eric Andersen1f50e842004-08-16 09:29:42 +0000562#if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
Eric Andersen0298be82002-03-05 15:12:19 +0000563 if (a->action & ASKFIRST) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000564 char c;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000565 /*
566 * Save memory by not exec-ing anything large (like a shell)
567 * before the user wants it. This is critical if swap is not
568 * enabled and the system has low memory. Generally this will
569 * be run on the second virtual console, and the first will
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000570 * be allowed to start a shell or whatever an init script
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000571 * specifies.
572 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000573 messageD(LOG, "Waiting for enter to start '%s'"
574 "(pid %d, terminal %s)\n",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000575 cmdpath, getpid(), a->terminal);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000576 bb_full_write(1, press_enter, sizeof(press_enter) - 1);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000577 while(read(0, &c, 1) == 1 && c != '\n')
578 ;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000579 }
Eric Andersen1f50e842004-08-16 09:29:42 +0000580#endif
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000581
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000582 /* Log the process name and args */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000583 message(LOG, "Starting pid %d, console %s: '%s'",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000584 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000585
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000586#if defined CONFIG_FEATURE_INIT_COREDUMPS
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000587 {
588 struct stat sb;
589 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
590 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000591
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000592 limit.rlim_cur = RLIM_INFINITY;
593 limit.rlim_max = RLIM_INFINITY;
594 setrlimit(RLIMIT_CORE, &limit);
595 }
Erik Andersen983b51b2000-04-04 18:14:25 +0000596 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000597#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000598
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000599 /* Now run it. The new program will take over this PID,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000600 * so nothing further in init.c should be run. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000601 execv(cmdpath, cmd);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000602
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000603 /* We're still here? Some error happened. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000604 message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath);
Eric Andersen0298be82002-03-05 15:12:19 +0000605 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000606 }
Eric Andersen0298be82002-03-05 15:12:19 +0000607 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000608 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000609}
610
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000611static int waitfor(const struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000612{
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000613 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000614 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000615
Eric Andersen0298be82002-03-05 15:12:19 +0000616 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000617 while (1) {
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000618 wpid = waitpid(pid,&status,0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000619 if (wpid == pid)
620 break;
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000621 if (wpid == -1 && errno == ECHILD) {
622 /* we missed its termination */
623 break;
624 }
625 /* FIXME other errors should maybe trigger an error, but allow
626 * the program to continue */
Erik Andersen0e3782f2000-01-07 02:54:55 +0000627 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000628 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000629}
630
Eric Andersen0298be82002-03-05 15:12:19 +0000631/* Run all commands of a particular type */
632static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000633{
Eric Andersen0298be82002-03-05 15:12:19 +0000634 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000635
Eric Andersen0298be82002-03-05 15:12:19 +0000636 for (a = init_action_list; a; a = tmp) {
637 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000638 if (a->action == action) {
Rob Landley2dd42792006-03-22 17:39:13 +0000639 if (access(a->terminal, R_OK | W_OK)) {
640 delete_init_action(a);
641 } else if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000642 waitfor(a);
643 delete_init_action(a);
644 } else if (a->action & ONCE) {
645 run(a);
646 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000647 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000648 /* Only run stuff with pid==0. If they have
649 * a pid, that means it is still running */
650 if (a->pid == 0) {
651 a->pid = run(a);
652 }
653 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000654 }
655 }
656}
657
Erik Andersen7dc16072000-01-04 01:10:25 +0000658#ifndef DEBUG_INIT
Eric Andersen2c1de612003-04-24 11:41:28 +0000659static void init_reboot(unsigned long magic)
660{
661 pid_t pid;
662 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000663 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000664 * the init process is killed.... */
665 if ((pid = fork()) == 0) {
Eric Andersen2c1de612003-04-24 11:41:28 +0000666 reboot(magic);
Eric Andersen2c1de612003-04-24 11:41:28 +0000667 _exit(0);
668 }
669 waitpid (pid, NULL, 0);
670}
671
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000672static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000673{
Eric Andersen813d88c2001-10-28 22:49:48 +0000674 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000675
Eric Andersena9cc8962002-09-16 06:49:06 +0000676 /* run everything to be run at "shutdown". This is done _prior_
677 * to killing everything, in case people wish to use scripts to
678 * shut things down gracefully... */
679 run_actions(SHUTDOWN);
680
Eric Andersen72f9a422001-10-28 05:12:20 +0000681 /* first disable all our signals */
682 sigemptyset(&block_signals);
683 sigaddset(&block_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000684 sigaddset(&block_signals, SIGQUIT);
Eric Andersen72f9a422001-10-28 05:12:20 +0000685 sigaddset(&block_signals, SIGCHLD);
686 sigaddset(&block_signals, SIGUSR1);
687 sigaddset(&block_signals, SIGUSR2);
688 sigaddset(&block_signals, SIGINT);
689 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000690 sigaddset(&block_signals, SIGCONT);
691 sigaddset(&block_signals, SIGSTOP);
692 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000693 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000694
Erik Andersene49d5ec2000-02-08 19:58:47 +0000695 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000696 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000697
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000698 message(CONSOLE | LOG, "The system is going down NOW !!");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000699 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000700
701 /* Send signals to every process _except_ pid 1 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000702 message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000703 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000704 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000705 sync();
706
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000707 message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000708 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000709 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000710
Erik Andersene49d5ec2000-02-08 19:58:47 +0000711 sync();
Eric Andersencc8ed391999-10-05 16:24:54 +0000712}
713
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000714static void exec_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen730f8262001-12-17 23:13:08 +0000715{
Eric Andersen0298be82002-03-05 15:12:19 +0000716 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000717 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000718
Eric Andersen0298be82002-03-05 15:12:19 +0000719 for (a = init_action_list; a; a = tmp) {
720 tmp = a->next;
721 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000722 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000723
724 /* unblock all signals, blocked in shutdown_system() */
725 sigemptyset(&unblock_signals);
726 sigaddset(&unblock_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000727 sigaddset(&unblock_signals, SIGQUIT);
Eric Andersen5222d312002-07-03 05:15:23 +0000728 sigaddset(&unblock_signals, SIGCHLD);
729 sigaddset(&unblock_signals, SIGUSR1);
730 sigaddset(&unblock_signals, SIGUSR2);
731 sigaddset(&unblock_signals, SIGINT);
732 sigaddset(&unblock_signals, SIGTERM);
733 sigaddset(&unblock_signals, SIGCONT);
734 sigaddset(&unblock_signals, SIGSTOP);
735 sigaddset(&unblock_signals, SIGTSTP);
736 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
737
Eric Andersen9cdef5d2003-07-29 06:33:12 +0000738 /* Close whatever files are open. */
739 close(0);
740 close(1);
741 close(2);
742
Eric Andersen3c8064f2003-07-05 08:29:01 +0000743 /* Open the new terminal device */
Bernhard Reutner-Fischer0da069d2006-05-29 12:54:16 +0000744 open_new_terminal(a->terminal, 0);
Eric Andersen3c8064f2003-07-05 08:29:01 +0000745
746 /* Make sure the terminal will act fairly normal for us */
747 set_term(0);
748 /* Setup stdout, stderr on the supplied terminal */
749 dup(0);
750 dup(0);
751
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000752 messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000753 execl(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000754
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000755 message(CONSOLE | LOG, "exec of '%s' failed: %m",
Eric Andersen71ae64b2002-10-10 04:20:21 +0000756 a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000757 sync();
758 sleep(2);
759 init_reboot(RB_HALT_SYSTEM);
760 loop_forever();
761 }
762 }
763}
764
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000765static void halt_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersencc8ed391999-10-05 16:24:54 +0000766{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000767 shutdown_system();
Rob Landley64612912006-01-30 08:31:37 +0000768 message(CONSOLE | LOG, "The system is halted.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000769 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000770
Erik Andersene49d5ec2000-02-08 19:58:47 +0000771 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000772 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000773
Eric Andersenb01ed652003-06-27 17:08:15 +0000774 if (sig == SIGUSR2)
Erik Andersen4f3f7572000-04-28 00:18:56 +0000775 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000776 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000777 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000778
779 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000780}
781
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000782static void reboot_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersencc8ed391999-10-05 16:24:54 +0000783{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000784 shutdown_system();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000785 message(CONSOLE | LOG, "Please stand by while rebooting the system.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000786 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000787
Erik Andersene49d5ec2000-02-08 19:58:47 +0000788 /* allow time for last message to reach serial console */
789 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000790
Erik Andersen4f3f7572000-04-28 00:18:56 +0000791 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000792
793 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000794}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000795
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000796static void ctrlaltdel_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersenc97ec342001-04-03 18:01:51 +0000797{
798 run_actions(CTRLALTDEL);
799}
800
Eric Andersen0298be82002-03-05 15:12:19 +0000801/* The SIGSTOP & SIGTSTP handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000802static void stop_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000803{
Eric Andersen0298be82002-03-05 15:12:19 +0000804 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000805
806 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000807 while (!got_cont)
808 pause();
Eric Andersened8a9be2001-11-30 19:10:58 +0000809 got_cont = 0;
810 errno = saved_errno;
811}
812
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000813/* The SIGCONT handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000814static void cont_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000815{
816 got_cont = 1;
817}
818
Erik Andersene49d5ec2000-02-08 19:58:47 +0000819#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000820
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000821static void new_init_action(int action, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000822{
Eric Andersen22718092004-10-08 08:17:39 +0000823 struct init_action *new_action, *a, *last;
Erik Andersen9e737252000-01-06 01:16:13 +0000824
Erik Andersene49d5ec2000-02-08 19:58:47 +0000825 if (*cons == '\0')
826 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000827
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000828 if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000829 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000830
Eric Andersen0298be82002-03-05 15:12:19 +0000831 new_action = calloc((size_t) (1), sizeof(struct init_action));
832 if (!new_action) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000833 message(LOG | CONSOLE, "Memory allocation failure");
Matt Kraai67a46402001-06-03 05:55:52 +0000834 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000835 }
Eric Andersen0298be82002-03-05 15:12:19 +0000836
837 /* Append to the end of the list */
Eric Andersen22718092004-10-08 08:17:39 +0000838 for (a = last = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000839 /* don't enter action if it's already in the list,
840 * but do overwrite existing actions */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000841 if ((strcmp(a->command, command) == 0) &&
Eric Andersen6fd0e312003-07-22 09:48:56 +0000842 (strcmp(a->terminal, cons) ==0)) {
Eric Andersen82baf632004-10-08 08:21:54 +0000843 a->action = action;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000844 free(new_action);
845 return;
846 }
Eric Andersen22718092004-10-08 08:17:39 +0000847 last = a;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000848 }
Eric Andersen22718092004-10-08 08:17:39 +0000849 if (last) {
850 last->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000851 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000852 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000853 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000854 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000855 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000856 strcpy(new_action->terminal, cons);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000857#if 0 /* calloc zeroed always */
Eric Andersen0298be82002-03-05 15:12:19 +0000858 new_action->pid = 0;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000859#endif
860 messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
861 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000862}
863
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000864static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000865{
Eric Andersen0298be82002-03-05 15:12:19 +0000866 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000867
Eric Andersen0298be82002-03-05 15:12:19 +0000868 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000869 if (a == action) {
870 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000871 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000872 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000873 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000874 }
875 free(a);
876 break;
877 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000878 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000879}
880
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000881/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000882 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000883 * actions(i.e., runs INIT_SCRIPT and then starts a pair
884 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
885 * _is_ defined, but /etc/inittab is missing, this
Erik Andersen812d4662000-01-07 18:30:40 +0000886 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000887 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000888static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000889{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000890#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000891 FILE *file;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000892 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
893 char tmpConsole[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000894 char *id, *runlev, *action, *command, *eol;
895 const struct init_action_type *a = actions;
Erik Andersen7dc16072000-01-04 01:10:25 +0000896
897
Erik Andersene49d5ec2000-02-08 19:58:47 +0000898 file = fopen(INITTAB, "r");
899 if (file == NULL) {
900 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000901#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000902 /* Reboot on Ctrl-Alt-Del */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000903 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000904 /* Umount all filesystems on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000905 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000906 /* Swapoff on halt/reboot */
Rob Landley7a8f6792005-08-30 18:17:05 +0000907 if(ENABLE_SWAPONOFF) new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
Eric Andersen730f8262001-12-17 23:13:08 +0000908 /* Prepare to restart init when a HUP is received */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000909 new_init_action(RESTART, "/sbin/init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000910 /* Askfirst shell on tty1-4 */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000911 new_init_action(ASKFIRST, bb_default_login_shell, "");
912 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
913 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
914 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000915 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000916 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000917
Erik Andersene49d5ec2000-02-08 19:58:47 +0000918 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000919#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000920 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000921
Eric Andersen0826b6b2002-07-03 23:50:16 +0000922 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Eric Andersenb5966362000-05-31 20:04:38 +0000923 /* Skip leading spaces */
924 for (id = buf; *id == ' ' || *id == '\t'; id++);
925
926 /* Skip the line if it's a comment */
927 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000928 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000929
Erik Andersene49d5ec2000-02-08 19:58:47 +0000930 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000931 eol = strrchr(id, '\n');
932 if (eol != NULL)
933 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000934
Erik Andersene49d5ec2000-02-08 19:58:47 +0000935 /* Keep a copy around for posterity's sake (and error msgs) */
936 strcpy(lineAsRead, buf);
937
Eric Andersenb5966362000-05-31 20:04:38 +0000938 /* Separate the ID field from the runlevels */
939 runlev = strchr(id, ':');
940 if (runlev == NULL || *(runlev + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000941 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000942 continue;
943 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000944 *runlev = '\0';
945 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000946 }
947
Eric Andersenb5966362000-05-31 20:04:38 +0000948 /* Separate the runlevels from the action */
949 action = strchr(runlev, ':');
950 if (action == NULL || *(action + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000951 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000952 continue;
953 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000954 *action = '\0';
955 ++action;
956 }
957
Eric Andersen0298be82002-03-05 15:12:19 +0000958 /* Separate the action from the command */
959 command = strchr(action, ':');
960 if (command == NULL || *(command + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000961 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +0000962 continue;
963 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000964 *command = '\0';
965 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000966 }
967
968 /* Ok, now process it */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000969 for (a = actions; a->name != 0; a++) {
Eric Andersenb5966362000-05-31 20:04:38 +0000970 if (strcmp(a->name, action) == 0) {
971 if (*id != '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000972 if(strncmp(id, "/dev/", 5) == 0)
973 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000974 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000975 safe_strncpy(tmpConsole + 5, id,
976 CONSOLE_BUFF_SIZE - 5);
Eric Andersenb5966362000-05-31 20:04:38 +0000977 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000978 }
Eric Andersen0298be82002-03-05 15:12:19 +0000979 new_init_action(a->action, command, id);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000980 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000981 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000982 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000983 if (a->name == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000984 /* Choke on an unknown action */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000985 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000986 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000987 }
Eric Andersend8636ca2002-05-15 22:19:09 +0000988 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000989 return;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000990#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000991}
992
Eric Andersen82baf632004-10-08 08:21:54 +0000993#ifdef CONFIG_FEATURE_USE_INITTAB
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000994static void reload_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen6fd0e312003-07-22 09:48:56 +0000995{
Eric Andersen82baf632004-10-08 08:21:54 +0000996 struct init_action *a, *tmp;
997
998 message(LOG, "Reloading /etc/inittab");
999
1000 /* disable old entrys */
1001 for (a = init_action_list; a; a = a->next ) {
1002 a->action = ONCE;
1003 }
1004
1005 parse_inittab();
1006
1007 /* remove unused entrys */
1008 for (a = init_action_list; a; a = tmp) {
1009 tmp = a->next;
1010 if (a->action & (ONCE | SYSINIT | WAIT ) &&
1011 a->pid == 0 ) {
1012 delete_init_action(a);
1013 }
1014 }
Eric Andersen6fd0e312003-07-22 09:48:56 +00001015 run_actions(RESPAWN);
Eric Andersen82baf632004-10-08 08:21:54 +00001016 return;
Eric Andersen6fd0e312003-07-22 09:48:56 +00001017}
Eric Andersen82baf632004-10-08 08:21:54 +00001018#endif /* CONFIG_FEATURE_USE_INITTAB */
1019
Rob Landleydfba7412006-03-06 20:47:33 +00001020int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001021{
Eric Andersen0298be82002-03-05 15:12:19 +00001022 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001023 pid_t wpid;
1024 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001025
Eric Andersen730f8262001-12-17 23:13:08 +00001026 if (argc > 1 && !strcmp(argv[1], "-q")) {
Rob Landley2edf5262006-01-22 02:41:51 +00001027 return kill(1,SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001028 }
Eric Andersend73dc5b1999-11-10 23:13:02 +00001029#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001030 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
Rob Landley64612912006-01-30 08:31:37 +00001031 if (getpid() != 1 &&
1032 (!ENABLE_FEATURE_INITRD || !strstr(bb_applet_name, "linuxrc")))
1033 {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001034 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001035 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001036 /* Set up sig handlers -- be sure to
1037 * clear all of these in run() */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001038 signal(SIGHUP, exec_signal);
Mike Frysingera77b4f32005-04-16 08:21:34 +00001039 signal(SIGQUIT, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001040 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001041 signal(SIGUSR2, halt_signal);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001042 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001043 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001044 signal(SIGCONT, cont_handler);
1045 signal(SIGSTOP, stop_handler);
1046 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001047
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001048 /* Turn off rebooting via CTL-ALT-DEL -- we get a
Erik Andersene49d5ec2000-02-08 19:58:47 +00001049 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001050 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001051#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001052
Eric Andersen599e3ce2002-07-03 11:08:10 +00001053 /* Figure out where the default console should be */
1054 console_init();
1055
Erik Andersene49d5ec2000-02-08 19:58:47 +00001056 /* Close whatever files are open, and reset the console. */
1057 close(0);
1058 close(1);
1059 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001060
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001061 if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1062 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001063 close(0);
1064 }
1065
Erik Andersen983b51b2000-04-04 18:14:25 +00001066 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001067 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001068 {
1069 const char * const *e;
1070 /* Make sure environs is set to something sane */
1071 for(e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001072 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001073 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001074 /* Hello world */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001075 message(MAYBE_CONSOLE | LOG, "init started: %s", bb_msg_full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001076
Erik Andersene49d5ec2000-02-08 19:58:47 +00001077 /* Make sure there is enough memory to do something useful. */
Rob Landleyc3386a42005-08-30 18:50:37 +00001078 if (ENABLE_SWAPONOFF) {
1079 struct sysinfo info;
1080
1081 if (!sysinfo(&info) &&
1082 (info.mem_unit ? : 1) * (long long)info.totalram < MEGABYTE)
1083 {
1084 message(CONSOLE,"Low memory: forcing swapon.");
1085 /* swapon -a requires /proc typically */
1086 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
1087 /* Try to turn on swap */
1088 new_init_action(SYSINIT, "/sbin/swapon -a", "");
1089 run_actions(SYSINIT); /* wait and removing */
1090 }
1091 }
Erik Andersen9e737252000-01-06 01:16:13 +00001092
Erik Andersene49d5ec2000-02-08 19:58:47 +00001093 /* Check if we are supposed to be in single user mode */
1094 if (argc > 1 && (!strcmp(argv[1], "single") ||
1095 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001096 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +00001097 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001098 } else {
1099 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001100
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001101 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001102 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001103 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001104 * of "askfirst" shells */
1105 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001106 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001107
Rob Landleyb3ede5a2006-03-27 23:09:12 +00001108#ifdef CONFIG_SELINUX
1109 if (getenv("SELINUX_INIT") == NULL) {
1110 int enforce = 0;
1111
1112 putenv("SELINUX_INIT=YES");
1113 if (selinux_init_load_policy(&enforce) == 0) {
1114 execv(argv[0], argv);
1115 } else if (enforce > 0) {
1116 /* SELinux in enforcing mode but load_policy failed */
1117 /* At this point, we probably can't open /dev/console, so log() won't work */
1118 message(CONSOLE,"Unable to load SELinux Policy. Machine is in enforcing mode. Halting now.");
1119 exit(1);
1120 }
1121 }
1122#endif /* CONFIG_SELINUX */
1123
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001124 /* Make the command line just say "init" -- thats all, nothing else */
1125 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001126
Erik Andersene49d5ec2000-02-08 19:58:47 +00001127 /* Now run everything that needs to be run */
1128
1129 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001130 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001131
Erik Andersene49d5ec2000-02-08 19:58:47 +00001132 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001133 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001134
Erik Andersene49d5ec2000-02-08 19:58:47 +00001135 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001136 run_actions(ONCE);
1137
Eric Andersen82baf632004-10-08 08:21:54 +00001138#ifdef CONFIG_FEATURE_USE_INITTAB
Eric Andersen6fd0e312003-07-22 09:48:56 +00001139 /* Redefine SIGHUP to reread /etc/inittab */
1140 signal(SIGHUP, reload_signal);
Eric Andersen82baf632004-10-08 08:21:54 +00001141#else
1142 signal(SIGHUP, SIG_IGN);
1143#endif /* CONFIG_FEATURE_USE_INITTAB */
1144
Eric Andersen6fd0e312003-07-22 09:48:56 +00001145
Erik Andersene49d5ec2000-02-08 19:58:47 +00001146 /* Now run the looping stuff for the rest of forever */
1147 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001148 /* run the respawn stuff */
1149 run_actions(RESPAWN);
1150
1151 /* run the askfirst stuff */
1152 run_actions(ASKFIRST);
1153
1154 /* Don't consume all CPU time -- sleep a bit */
1155 sleep(1);
1156
Erik Andersene49d5ec2000-02-08 19:58:47 +00001157 /* Wait for a child process to exit */
1158 wpid = wait(&status);
Eric Andersen87812dc2004-04-12 19:21:54 +00001159 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001160 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001161 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001162 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001163 /* Set the pid to 0 so that the process gets
1164 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001165 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001166 message(LOG, "Process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001167 "Scheduling it for restart.",
1168 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001169 }
1170 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001171 /* see if anyone else is waiting to be reaped */
1172 wpid = waitpid (-1, &status, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001173 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001174 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001175}