blob: 575ab9775d60e954b8c9fae9107c8d5a4c6931f9 [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>
Erik Andersen42094cd2000-03-20 21:34:52 +000027#include <sys/fcntl.h>
28#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>
94#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +000095#endif
Erik Andersen983b51b2000-04-04 18:14:25 +000096
Erik Andersen4d1d0111999-12-17 18:44:15 +000097#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +000098
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000099#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000100#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000101#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000102#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000103
Eric Andersen41492d62001-02-23 00:05:56 +0000104#define MAXENV 16 /* Number of env. vars */
Erik Andersen7dc16072000-01-04 01:10:25 +0000105
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000106#define CONSOLE_BUFF_SIZE 32
107
Erik Andersen7dc16072000-01-04 01:10:25 +0000108/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +0000109#define SYSINIT 0x001
110#define RESPAWN 0x002
111#define ASKFIRST 0x004
112#define WAIT 0x008
113#define ONCE 0x010
114#define CTRLALTDEL 0x020
115#define SHUTDOWN 0x040
116#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +0000117
Erik Andersen42094cd2000-03-20 21:34:52 +0000118/* A mapping between "inittab" action name strings and action type codes. */
Eric Andersen0298be82002-03-05 15:12:19 +0000119struct init_action_type {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 const char *name;
Eric Andersen0298be82002-03-05 15:12:19 +0000121 int action;
122};
Erik Andersen7dc16072000-01-04 01:10:25 +0000123
Eric Andersen0298be82002-03-05 15:12:19 +0000124static const struct init_action_type actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125 {"sysinit", SYSINIT},
126 {"respawn", RESPAWN},
127 {"askfirst", ASKFIRST},
128 {"wait", WAIT},
129 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000130 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000131 {"shutdown", SHUTDOWN},
Eric Andersen730f8262001-12-17 23:13:08 +0000132 {"restart", RESTART},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000133 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000134};
135
Eric Andersen0298be82002-03-05 15:12:19 +0000136/* Set up a linked list of init_actions, to be read from inittab */
137struct init_action {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000139 char command[INIT_BUFFS_SIZE];
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000140 char terminal[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000141 struct init_action *next;
142 int action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000143};
Erik Andersen7dc16072000-01-04 01:10:25 +0000144
Eric Andersen0298be82002-03-05 15:12:19 +0000145/* Static variables */
146static struct init_action *init_action_list = NULL;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000147static char console[CONSOLE_BUFF_SIZE] = _PATH_CONSOLE;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000148
Eric Andersene7078062002-07-29 08:00:16 +0000149#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000150static char *log_console = VC_5;
Eric Andersene7078062002-07-29 08:00:16 +0000151#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000152static sig_atomic_t got_cont = 0;
Rob Landleybc68cd12006-03-10 19:22:06 +0000153
154enum {
155 LOG = 0x1,
156 CONSOLE = 0x2,
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000157
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000158#if defined CONFIG_FEATURE_EXTRA_QUIET
Rob Landleybc68cd12006-03-10 19:22:06 +0000159 MAYBE_CONSOLE = 0x0,
Eric Andersen0298be82002-03-05 15:12:19 +0000160#else
Rob Landleybc68cd12006-03-10 19:22:06 +0000161 MAYBE_CONSOLE = CONSOLE,
Eric Andersen0298be82002-03-05 15:12:19 +0000162#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000163
Rob Landleybc68cd12006-03-10 19:22:06 +0000164#ifndef RB_HALT_SYSTEM
165 RB_HALT_SYSTEM = 0xcdef0123,
166 RB_ENABLE_CAD = 0x89abcdef,
167 RB_DISABLE_CAD = 0,
168 RB_POWER_OFF = 0x4321fedc,
169 RB_AUTOBOOT = 0x01234567,
Eric Andersen0298be82002-03-05 15:12:19 +0000170#endif
Rob Landleybc68cd12006-03-10 19:22:06 +0000171};
Erik Andersen42094cd2000-03-20 21:34:52 +0000172
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000173static const char * const environment[] = {
174 "HOME=/",
175 "PATH=" _PATH_STDPATH,
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000176 "SHELL=/bin/sh",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000177 "USER=root",
178 NULL
179};
180
Eric Andersen0298be82002-03-05 15:12:19 +0000181/* Function prototypes */
182static void delete_init_action(struct init_action *a);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000183static int waitfor(const struct init_action *a);
Eric Andersend5a27802003-07-05 08:39:47 +0000184static void halt_signal(int sig);
Eric Andersen0298be82002-03-05 15:12:19 +0000185
Eric Andersen0460ff21999-10-25 23:32:44 +0000186
Eric Andersen74400cc2001-10-18 04:11:39 +0000187static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000188{
189 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000190 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000191}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000192
Erik Andersen42094cd2000-03-20 21:34:52 +0000193/* Print a message to the specified device.
194 * Device may be bitwise-or'd from LOG | CONSOLE */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000195#ifndef DEBUG_INIT
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000196static inline void messageD(int ATTRIBUTE_UNUSED device,
197 const char ATTRIBUTE_UNUSED *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000198{
199}
200#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000201#define messageD message
Eric Andersenfedce062001-11-17 07:27:14 +0000202#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000203static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000204 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000205static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000206{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000207 va_list arguments;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000208 int l;
Eric Andersen22237012003-01-23 07:08:26 +0000209 char msg[1024];
210#ifndef CONFIG_SYSLOGD
211 static int log_fd = -1;
212#endif
Eric Andersen4c781471999-11-26 08:12:56 +0000213
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000214 msg[0] = '\r';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215 va_start(arguments, fmt);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000216 l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments) + 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000217 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000218
219#ifdef CONFIG_SYSLOGD
220 /* Log the message to syslogd */
221 if (device & LOG) {
222 /* don`t out "\r\n" */
Eric Andersen36adca82004-06-22 10:07:17 +0000223 openlog(bb_applet_name, 0, LOG_DAEMON);
"Vladimir N. Oleynik"8e1bd4a2005-09-29 12:55:21 +0000224 syslog(LOG_INFO, "%s", msg + 1);
Eric Andersen36adca82004-06-22 10:07:17 +0000225 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000226 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000227
228 msg[l++] = '\n';
229 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000230#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000231
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000232 msg[l++] = '\n';
233 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000234 /* Take full control of the log tty, and never close it.
235 * It's mine, all mine! Muhahahaha! */
236 if (log_fd < 0) {
Mike Frysingere548bdf2005-07-06 04:46:14 +0000237 if ((log_fd = device_open(log_console, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000238 log_fd = -2;
Mike Frysinger72a4c332005-07-05 02:19:20 +0000239 bb_error_msg("Bummer, can't write to log on %s!", log_console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000240 device = CONSOLE;
Eric Andersen6a979902002-09-30 20:08:53 +0000241 } else {
242 fcntl(log_fd, F_SETFD, FD_CLOEXEC);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243 }
244 }
245 if ((device & LOG) && (log_fd >= 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000246 bb_full_write(log_fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000247 }
Eric Andersen4c781471999-11-26 08:12:56 +0000248#endif
249
Erik Andersene49d5ec2000-02-08 19:58:47 +0000250 if (device & CONSOLE) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000251 int fd = device_open(_PATH_CONSOLE,
Mike Frysingere548bdf2005-07-06 04:46:14 +0000252 O_WRONLY | O_NOCTTY | O_NONBLOCK);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000253 /* Always send console messages to /dev/console so people will see them. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000254 if (fd >= 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000255 bb_full_write(fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000256 close(fd);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000257#ifdef DEBUG_INIT
258 /* all descriptors may be closed */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000260 bb_error_msg("Bummer, can't print: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000261 va_start(arguments, fmt);
262 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000264#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000265 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000266 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000267}
268
Eric Andersen0460ff21999-10-25 23:32:44 +0000269/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000270static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000271{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000272 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000273
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000275
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 /* set control chars */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000277 tty.c_cc[VINTR] = 3; /* C-c */
278 tty.c_cc[VQUIT] = 28; /* C-\ */
279 tty.c_cc[VERASE] = 127; /* C-? */
280 tty.c_cc[VKILL] = 21; /* C-u */
281 tty.c_cc[VEOF] = 4; /* C-d */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000282 tty.c_cc[VSTART] = 17; /* C-q */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000283 tty.c_cc[VSTOP] = 19; /* C-s */
284 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000285
Erik Andersene49d5ec2000-02-08 19:58:47 +0000286 /* use line dicipline 0 */
287 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000288
Erik Andersene49d5ec2000-02-08 19:58:47 +0000289 /* Make it be sane */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000290 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
291 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
Eric Andersend8862922001-04-23 15:14:11 +0000292
Eric Andersen08b10341999-11-19 02:38:58 +0000293
Erik Andersene49d5ec2000-02-08 19:58:47 +0000294 /* input modes */
295 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000296
Erik Andersene49d5ec2000-02-08 19:58:47 +0000297 /* output modes */
298 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000299
Erik Andersene49d5ec2000-02-08 19:58:47 +0000300 /* local modes */
301 tty.c_lflag =
302 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000303
Erik Andersene49d5ec2000-02-08 19:58:47 +0000304 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000305}
306
Eric Andersen74400cc2001-10-18 04:11:39 +0000307static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000308{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000309 int fd;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000310 int tried = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000311 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000312 struct serial_struct sr;
313 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000314
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000315 if ((s = getenv("CONSOLE")) != NULL || (s = getenv("console")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000316 safe_strncpy(console, s, sizeof(console));
Eric Andersenfbb39c81999-11-08 17:00:52 +0000317#if #cpu(sparc)
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000318 /* sparc kernel supports console=tty[ab] parameter which is also
Erik Andersene49d5ec2000-02-08 19:58:47 +0000319 * passed to init, so catch it here */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000320 /* remap tty[ab] to /dev/ttyS[01] */
321 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000322 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000323 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000324 safe_strncpy(console, SC_1, sizeof(console));
Eric Andersen219d6f51999-11-02 19:43:01 +0000325#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000326 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000327 /* 2.2 kernels: identify the real console backend and try to use it */
328 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
329 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000330 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000331 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
332 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000333 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000334 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000335 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000336 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000337 }
Eric Andersen07e52971999-11-07 07:38:08 +0000338 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000339
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000340 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0 && tried < 2) {
341 /* Can't open selected console -- try
342 logical system console and VT_MASTER */
343 safe_strncpy(console, (tried == 0 ? _PATH_CONSOLE : CURRENT_VC),
344 sizeof(console));
345 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000346 }
347 if (fd < 0) {
348 /* Perhaps we should panic here? */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000349#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000350 log_console =
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000351#endif
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000352 safe_strncpy(console, bb_dev_null, sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000353 } else {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000354 s = getenv("TERM");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000355 /* check for serial console */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000356 if (ioctl(fd, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000357 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000358 * if TERM is set to linux (the default) */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000359 if (s == NULL || strcmp(s, "linux") == 0)
360 putenv("TERM=vt102");
361#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000362 log_console = console;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000363#endif
364 } else {
365 if (s == NULL)
366 putenv("TERM=linux");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000367 }
368 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000369 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000370 messageD(LOG, "console=%s", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000371}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000372
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000373static void fixup_argv(int argc, char **argv, char *new_argv0)
374{
375 int len;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000376
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000377 /* Fix up argv[0] to be certain we claim to be init */
378 len = strlen(argv[0]);
379 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000380 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000381
382 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
383 len = 1;
384 while (argc > len) {
385 memset(argv[len], 0, strlen(argv[len]));
386 len++;
387 }
388}
389
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000390static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000391{
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000392 int i, junk;
Mike Frysinger10427ab2005-07-06 05:00:48 +0000393 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000394 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000395 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000396 sigset_t nmask, omask;
Eric Andersen0298be82002-03-05 15:12:19 +0000397 static const char press_enter[] =
398#ifdef CUSTOMIZED_BANNER
399#include CUSTOMIZED_BANNER
400#endif
401 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000402
Eric Andersen0298be82002-03-05 15:12:19 +0000403 /* Block sigchild while forking. */
404 sigemptyset(&nmask);
405 sigaddset(&nmask, SIGCHLD);
406 sigprocmask(SIG_BLOCK, &nmask, &omask);
407
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000408 if ((pid = fork()) == 0) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000409 struct stat sb;
410
Erik Andersene49d5ec2000-02-08 19:58:47 +0000411 /* Clean up */
412 close(0);
413 close(1);
414 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000415 sigprocmask(SIG_SETMASK, &omask, NULL);
416
Eric Andersen0298be82002-03-05 15:12:19 +0000417 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000418 signal(SIGUSR1, SIG_DFL);
419 signal(SIGUSR2, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000420 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000421 signal(SIGTERM, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000422 signal(SIGHUP, SIG_DFL);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000423 signal(SIGQUIT, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000424 signal(SIGCONT, SIG_DFL);
425 signal(SIGSTOP, SIG_DFL);
426 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000427
Eric Andersen599e3ce2002-07-03 11:08:10 +0000428 /* Create a new session and make ourself the process
Eric Andersene8a90fb2002-10-12 04:05:48 +0000429 * group leader */
430 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000431
Eric Andersen0298be82002-03-05 15:12:19 +0000432 /* Open the new terminal device */
Eric Andersene8a90fb2002-10-12 04:05:48 +0000433 if ((device_open(a->terminal, O_RDWR)) < 0) {
Eric Andersen0298be82002-03-05 15:12:19 +0000434 if (stat(a->terminal, &sb) != 0) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000435 message(LOG | CONSOLE, "device '%s' does not exist.", a->terminal);
436 } else {
437 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
Eric Andersen53f50612001-03-14 09:01:11 +0000438 }
Eric Andersen0298be82002-03-05 15:12:19 +0000439 _exit(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000440 }
Eric Andersen599e3ce2002-07-03 11:08:10 +0000441
Eric Andersen0298be82002-03-05 15:12:19 +0000442 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000443 set_term(0);
Eric Andersen0826b6b2002-07-03 23:50:16 +0000444 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000445 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000446 dup(0);
447 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000448
Eric Andersen599e3ce2002-07-03 11:08:10 +0000449 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000450 * supplied terminal to be the controlling tty. */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000451 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000452 pid_t pgrp, tmp_pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000453
454 /* Now fork off another process to just hang around */
455 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000456 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000457 _exit(1);
458 }
459
460 if (pid > 0) {
461
462 /* We are the parent -- wait till the child is done */
463 signal(SIGINT, SIG_IGN);
464 signal(SIGTSTP, SIG_IGN);
465 signal(SIGQUIT, SIG_IGN);
466 signal(SIGCHLD, SIG_DFL);
467
468 /* Wait for child to exit */
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000469 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
470 if (tmp_pid == -1 && errno == ECHILD) {
471 break;
472 }
473 /* FIXME handle other errors */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000474 }
Eric Andersen0298be82002-03-05 15:12:19 +0000475
476 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000477 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000478 if (pgrp != getpid())
479 _exit(0);
480
481 /* Use a temporary process to steal the controlling tty. */
482 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000483 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000484 _exit(1);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000485 }
Eric Andersen0298be82002-03-05 15:12:19 +0000486 if (pid == 0) {
487 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000488 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000489 _exit(0);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000490 }
491 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000492 if (tmp_pid < 0 && errno == ECHILD)
493 break;
494 }
495 _exit(0);
496 }
497
498 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000499 }
500
Erik Andersene132f4b2000-02-09 04:16:43 +0000501 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000502 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000503 cmd[0] = (char *)DEFAULT_SHELL;
Erik Andersene132f4b2000-02-09 04:16:43 +0000504 cmd[1] = "-c";
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000505 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000506 cmd[3] = NULL;
507 } else {
508 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000509 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000510 s = buf;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000511 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000512 if (*tmpCmd != '\0') {
513 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000514 i++;
515 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000516 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000517 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000518 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000519
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000520 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000521
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000522 /*
523 Interactive shells want to see a dash in argv[0]. This
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000524 typically is handled by login, argv will be setup this
525 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000526 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000527 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000528
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000529 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000530
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000531 /* skip over the dash */
532 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000533
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000534 /* find the last component in the command pathname */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000535 s = bb_get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000536
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000537 /* make a new argv[0] */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000538 if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000539 message(LOG | CONSOLE, bb_msg_memory_exhausted);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000540 cmd[0] = cmdpath;
541 } else {
542 cmd[0][0] = '-';
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000543 strcpy(cmd[0] + 1, s);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000544 }
Paul Fox41a72ec2005-08-01 16:43:13 +0000545#ifdef CONFIG_FEATURE_INIT_SCTTY
546 /* Establish this process as session leader and
547 * (attempt) to make the tty (if any) a controlling tty.
548 */
549 (void) setsid();
550 (void) ioctl(0, TIOCSCTTY, 0/*don't steal it*/);
551#endif
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000552 }
553
Eric Andersen1f50e842004-08-16 09:29:42 +0000554#if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
Eric Andersen0298be82002-03-05 15:12:19 +0000555 if (a->action & ASKFIRST) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000556 char c;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000557 /*
558 * Save memory by not exec-ing anything large (like a shell)
559 * before the user wants it. This is critical if swap is not
560 * enabled and the system has low memory. Generally this will
561 * be run on the second virtual console, and the first will
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000562 * be allowed to start a shell or whatever an init script
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000563 * specifies.
564 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000565 messageD(LOG, "Waiting for enter to start '%s'"
566 "(pid %d, terminal %s)\n",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000567 cmdpath, getpid(), a->terminal);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000568 bb_full_write(1, press_enter, sizeof(press_enter) - 1);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000569 while(read(0, &c, 1) == 1 && c != '\n')
570 ;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000571 }
Eric Andersen1f50e842004-08-16 09:29:42 +0000572#endif
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000573
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000574 /* Log the process name and args */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000575 message(LOG, "Starting pid %d, console %s: '%s'",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000576 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000577
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000578#if defined CONFIG_FEATURE_INIT_COREDUMPS
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000579 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000580 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000581
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000582 limit.rlim_cur = RLIM_INFINITY;
583 limit.rlim_max = RLIM_INFINITY;
584 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000585 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000586#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000587
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000588 /* Now run it. The new program will take over this PID,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000589 * so nothing further in init.c should be run. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000590 execv(cmdpath, cmd);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000591
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000592 /* We're still here? Some error happened. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000593 message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath);
Eric Andersen0298be82002-03-05 15:12:19 +0000594 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000595 }
Eric Andersen0298be82002-03-05 15:12:19 +0000596 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000597 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000598}
599
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000600static int waitfor(const struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000601{
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000602 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000603 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000604
Eric Andersen0298be82002-03-05 15:12:19 +0000605 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000606 while (1) {
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000607 wpid = waitpid(pid,&status,0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000608 if (wpid == pid)
609 break;
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000610 if (wpid == -1 && errno == ECHILD) {
611 /* we missed its termination */
612 break;
613 }
614 /* FIXME other errors should maybe trigger an error, but allow
615 * the program to continue */
Erik Andersen0e3782f2000-01-07 02:54:55 +0000616 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000617 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000618}
619
Eric Andersen0298be82002-03-05 15:12:19 +0000620/* Run all commands of a particular type */
621static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000622{
Eric Andersen0298be82002-03-05 15:12:19 +0000623 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000624
Eric Andersen0298be82002-03-05 15:12:19 +0000625 for (a = init_action_list; a; a = tmp) {
626 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000627 if (a->action == action) {
Rob Landley2dd42792006-03-22 17:39:13 +0000628 if (access(a->terminal, R_OK | W_OK)) {
629 delete_init_action(a);
630 } else if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000631 waitfor(a);
632 delete_init_action(a);
633 } else if (a->action & ONCE) {
634 run(a);
635 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000636 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000637 /* Only run stuff with pid==0. If they have
638 * a pid, that means it is still running */
639 if (a->pid == 0) {
640 a->pid = run(a);
641 }
642 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000643 }
644 }
645}
646
Erik Andersen7dc16072000-01-04 01:10:25 +0000647#ifndef DEBUG_INIT
Eric Andersen2c1de612003-04-24 11:41:28 +0000648static void init_reboot(unsigned long magic)
649{
650 pid_t pid;
651 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000652 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000653 * the init process is killed.... */
654 if ((pid = fork()) == 0) {
Eric Andersen2c1de612003-04-24 11:41:28 +0000655 reboot(magic);
Eric Andersen2c1de612003-04-24 11:41:28 +0000656 _exit(0);
657 }
658 waitpid (pid, NULL, 0);
659}
660
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000661static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000662{
Eric Andersen813d88c2001-10-28 22:49:48 +0000663 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000664
Eric Andersena9cc8962002-09-16 06:49:06 +0000665 /* run everything to be run at "shutdown". This is done _prior_
666 * to killing everything, in case people wish to use scripts to
667 * shut things down gracefully... */
668 run_actions(SHUTDOWN);
669
Eric Andersen72f9a422001-10-28 05:12:20 +0000670 /* first disable all our signals */
671 sigemptyset(&block_signals);
672 sigaddset(&block_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000673 sigaddset(&block_signals, SIGQUIT);
Eric Andersen72f9a422001-10-28 05:12:20 +0000674 sigaddset(&block_signals, SIGCHLD);
675 sigaddset(&block_signals, SIGUSR1);
676 sigaddset(&block_signals, SIGUSR2);
677 sigaddset(&block_signals, SIGINT);
678 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000679 sigaddset(&block_signals, SIGCONT);
680 sigaddset(&block_signals, SIGSTOP);
681 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000682 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000683
Erik Andersene49d5ec2000-02-08 19:58:47 +0000684 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000685 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000686
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000687 message(CONSOLE | LOG, "The system is going down NOW !!");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000688 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000689
690 /* Send signals to every process _except_ pid 1 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000691 message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000692 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000693 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000694 sync();
695
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000696 message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000697 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000698 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000699
Erik Andersene49d5ec2000-02-08 19:58:47 +0000700 sync();
Eric Andersencc8ed391999-10-05 16:24:54 +0000701}
702
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000703static void exec_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen730f8262001-12-17 23:13:08 +0000704{
Eric Andersen0298be82002-03-05 15:12:19 +0000705 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000706 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000707
Eric Andersen0298be82002-03-05 15:12:19 +0000708 for (a = init_action_list; a; a = tmp) {
709 tmp = a->next;
710 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000711 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000712
713 /* unblock all signals, blocked in shutdown_system() */
714 sigemptyset(&unblock_signals);
715 sigaddset(&unblock_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000716 sigaddset(&unblock_signals, SIGQUIT);
Eric Andersen5222d312002-07-03 05:15:23 +0000717 sigaddset(&unblock_signals, SIGCHLD);
718 sigaddset(&unblock_signals, SIGUSR1);
719 sigaddset(&unblock_signals, SIGUSR2);
720 sigaddset(&unblock_signals, SIGINT);
721 sigaddset(&unblock_signals, SIGTERM);
722 sigaddset(&unblock_signals, SIGCONT);
723 sigaddset(&unblock_signals, SIGSTOP);
724 sigaddset(&unblock_signals, SIGTSTP);
725 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
726
Eric Andersen9cdef5d2003-07-29 06:33:12 +0000727 /* Close whatever files are open. */
728 close(0);
729 close(1);
730 close(2);
731
Eric Andersen3c8064f2003-07-05 08:29:01 +0000732 /* Open the new terminal device */
733 if ((device_open(a->terminal, O_RDWR)) < 0) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000734 struct stat sb;
Eric Andersen3c8064f2003-07-05 08:29:01 +0000735 if (stat(a->terminal, &sb) != 0) {
736 message(LOG | CONSOLE, "device '%s' does not exist.", a->terminal);
737 } else {
738 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
739 }
740 halt_signal(SIGUSR1);
741 }
742
743 /* Make sure the terminal will act fairly normal for us */
744 set_term(0);
745 /* Setup stdout, stderr on the supplied terminal */
746 dup(0);
747 dup(0);
748
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000749 messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000750 execl(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000751
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000752 message(CONSOLE | LOG, "exec of '%s' failed: %m",
Eric Andersen71ae64b2002-10-10 04:20:21 +0000753 a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000754 sync();
755 sleep(2);
756 init_reboot(RB_HALT_SYSTEM);
757 loop_forever();
758 }
759 }
760}
761
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000762static void halt_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersencc8ed391999-10-05 16:24:54 +0000763{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000764 shutdown_system();
Rob Landley64612912006-01-30 08:31:37 +0000765 message(CONSOLE | LOG, "The system is halted.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000766 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000767
Erik Andersene49d5ec2000-02-08 19:58:47 +0000768 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000769 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000770
Eric Andersenb01ed652003-06-27 17:08:15 +0000771 if (sig == SIGUSR2)
Erik Andersen4f3f7572000-04-28 00:18:56 +0000772 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000773 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000774 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000775
776 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000777}
778
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000779static void reboot_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersencc8ed391999-10-05 16:24:54 +0000780{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000781 shutdown_system();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000782 message(CONSOLE | LOG, "Please stand by while rebooting the system.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000783 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000784
Erik Andersene49d5ec2000-02-08 19:58:47 +0000785 /* allow time for last message to reach serial console */
786 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000787
Erik Andersen4f3f7572000-04-28 00:18:56 +0000788 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000789
790 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000791}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000792
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000793static void ctrlaltdel_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersenc97ec342001-04-03 18:01:51 +0000794{
795 run_actions(CTRLALTDEL);
796}
797
Eric Andersen0298be82002-03-05 15:12:19 +0000798/* The SIGSTOP & SIGTSTP handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000799static void stop_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000800{
Eric Andersen0298be82002-03-05 15:12:19 +0000801 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000802
803 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000804 while (!got_cont)
805 pause();
Eric Andersened8a9be2001-11-30 19:10:58 +0000806 got_cont = 0;
807 errno = saved_errno;
808}
809
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000810/* The SIGCONT handler */
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000811static void cont_handler(int sig ATTRIBUTE_UNUSED)
Eric Andersened8a9be2001-11-30 19:10:58 +0000812{
813 got_cont = 1;
814}
815
Erik Andersene49d5ec2000-02-08 19:58:47 +0000816#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000817
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000818static void new_init_action(int action, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000819{
Eric Andersen22718092004-10-08 08:17:39 +0000820 struct init_action *new_action, *a, *last;
Erik Andersen9e737252000-01-06 01:16:13 +0000821
Erik Andersene49d5ec2000-02-08 19:58:47 +0000822 if (*cons == '\0')
823 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000824
"Vladimir N. Oleynik"6c35c7c2005-10-12 15:34:25 +0000825 if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000826 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000827
Eric Andersen0298be82002-03-05 15:12:19 +0000828 new_action = calloc((size_t) (1), sizeof(struct init_action));
829 if (!new_action) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000830 message(LOG | CONSOLE, "Memory allocation failure");
Matt Kraai67a46402001-06-03 05:55:52 +0000831 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000832 }
Eric Andersen0298be82002-03-05 15:12:19 +0000833
834 /* Append to the end of the list */
Eric Andersen22718092004-10-08 08:17:39 +0000835 for (a = last = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000836 /* don't enter action if it's already in the list,
837 * but do overwrite existing actions */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000838 if ((strcmp(a->command, command) == 0) &&
Eric Andersen6fd0e312003-07-22 09:48:56 +0000839 (strcmp(a->terminal, cons) ==0)) {
Eric Andersen82baf632004-10-08 08:21:54 +0000840 a->action = action;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000841 free(new_action);
842 return;
843 }
Eric Andersen22718092004-10-08 08:17:39 +0000844 last = a;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000845 }
Eric Andersen22718092004-10-08 08:17:39 +0000846 if (last) {
847 last->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000848 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000849 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000850 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000851 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000852 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000853 strcpy(new_action->terminal, cons);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000854#if 0 /* calloc zeroed always */
Eric Andersen0298be82002-03-05 15:12:19 +0000855 new_action->pid = 0;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000856#endif
857 messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
858 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000859}
860
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000861static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000862{
Eric Andersen0298be82002-03-05 15:12:19 +0000863 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000864
Eric Andersen0298be82002-03-05 15:12:19 +0000865 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000866 if (a == action) {
867 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000868 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000869 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000870 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000871 }
872 free(a);
873 break;
874 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000875 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000876}
877
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000878/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000879 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000880 * actions(i.e., runs INIT_SCRIPT and then starts a pair
881 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
882 * _is_ defined, but /etc/inittab is missing, this
Erik Andersen812d4662000-01-07 18:30:40 +0000883 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000884 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000885static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000886{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000887#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000888 FILE *file;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000889 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
890 char tmpConsole[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000891 char *id, *runlev, *action, *command, *eol;
892 const struct init_action_type *a = actions;
Erik Andersen7dc16072000-01-04 01:10:25 +0000893
894
Erik Andersene49d5ec2000-02-08 19:58:47 +0000895 file = fopen(INITTAB, "r");
896 if (file == NULL) {
897 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000898#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000899 /* Reboot on Ctrl-Alt-Del */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000900 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000901 /* Umount all filesystems on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000902 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000903 /* Swapoff on halt/reboot */
Rob Landley7a8f6792005-08-30 18:17:05 +0000904 if(ENABLE_SWAPONOFF) new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
Eric Andersen730f8262001-12-17 23:13:08 +0000905 /* Prepare to restart init when a HUP is received */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000906 new_init_action(RESTART, "/sbin/init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000907 /* Askfirst shell on tty1-4 */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000908 new_init_action(ASKFIRST, bb_default_login_shell, "");
909 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
910 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
911 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000912 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000913 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000914
Erik Andersene49d5ec2000-02-08 19:58:47 +0000915 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000916#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000917 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000918
Eric Andersen0826b6b2002-07-03 23:50:16 +0000919 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Eric Andersenb5966362000-05-31 20:04:38 +0000920 /* Skip leading spaces */
921 for (id = buf; *id == ' ' || *id == '\t'; id++);
922
923 /* Skip the line if it's a comment */
924 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000925 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000926
Erik Andersene49d5ec2000-02-08 19:58:47 +0000927 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000928 eol = strrchr(id, '\n');
929 if (eol != NULL)
930 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000931
Erik Andersene49d5ec2000-02-08 19:58:47 +0000932 /* Keep a copy around for posterity's sake (and error msgs) */
933 strcpy(lineAsRead, buf);
934
Eric Andersenb5966362000-05-31 20:04:38 +0000935 /* Separate the ID field from the runlevels */
936 runlev = strchr(id, ':');
937 if (runlev == NULL || *(runlev + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000938 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000939 continue;
940 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000941 *runlev = '\0';
942 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000943 }
944
Eric Andersenb5966362000-05-31 20:04:38 +0000945 /* Separate the runlevels from the action */
946 action = strchr(runlev, ':');
947 if (action == NULL || *(action + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000948 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000949 continue;
950 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000951 *action = '\0';
952 ++action;
953 }
954
Eric Andersen0298be82002-03-05 15:12:19 +0000955 /* Separate the action from the command */
956 command = strchr(action, ':');
957 if (command == NULL || *(command + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000958 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +0000959 continue;
960 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000961 *command = '\0';
962 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000963 }
964
965 /* Ok, now process it */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000966 for (a = actions; a->name != 0; a++) {
Eric Andersenb5966362000-05-31 20:04:38 +0000967 if (strcmp(a->name, action) == 0) {
968 if (*id != '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000969 if(strncmp(id, "/dev/", 5) == 0)
970 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000971 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000972 safe_strncpy(tmpConsole + 5, id,
973 CONSOLE_BUFF_SIZE - 5);
Eric Andersenb5966362000-05-31 20:04:38 +0000974 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000975 }
Eric Andersen0298be82002-03-05 15:12:19 +0000976 new_init_action(a->action, command, id);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000977 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000978 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000979 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000980 if (a->name == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000981 /* Choke on an unknown action */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000982 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000983 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000984 }
Eric Andersend8636ca2002-05-15 22:19:09 +0000985 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000986 return;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000987#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +0000988}
989
Eric Andersen82baf632004-10-08 08:21:54 +0000990#ifdef CONFIG_FEATURE_USE_INITTAB
"Vladimir N. Oleynik"1f04c9d2006-02-01 14:47:52 +0000991static void reload_signal(int sig ATTRIBUTE_UNUSED)
Eric Andersen6fd0e312003-07-22 09:48:56 +0000992{
Eric Andersen82baf632004-10-08 08:21:54 +0000993 struct init_action *a, *tmp;
994
995 message(LOG, "Reloading /etc/inittab");
996
997 /* disable old entrys */
998 for (a = init_action_list; a; a = a->next ) {
999 a->action = ONCE;
1000 }
1001
1002 parse_inittab();
1003
1004 /* remove unused entrys */
1005 for (a = init_action_list; a; a = tmp) {
1006 tmp = a->next;
1007 if (a->action & (ONCE | SYSINIT | WAIT ) &&
1008 a->pid == 0 ) {
1009 delete_init_action(a);
1010 }
1011 }
Eric Andersen6fd0e312003-07-22 09:48:56 +00001012 run_actions(RESPAWN);
Eric Andersen82baf632004-10-08 08:21:54 +00001013 return;
Eric Andersen6fd0e312003-07-22 09:48:56 +00001014}
Eric Andersen82baf632004-10-08 08:21:54 +00001015#endif /* CONFIG_FEATURE_USE_INITTAB */
1016
Rob Landleydfba7412006-03-06 20:47:33 +00001017int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001018{
Eric Andersen0298be82002-03-05 15:12:19 +00001019 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001020 pid_t wpid;
1021 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001022
Eric Andersen730f8262001-12-17 23:13:08 +00001023 if (argc > 1 && !strcmp(argv[1], "-q")) {
Rob Landley2edf5262006-01-22 02:41:51 +00001024 return kill(1,SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001025 }
Eric Andersend73dc5b1999-11-10 23:13:02 +00001026#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001027 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
Rob Landley64612912006-01-30 08:31:37 +00001028 if (getpid() != 1 &&
1029 (!ENABLE_FEATURE_INITRD || !strstr(bb_applet_name, "linuxrc")))
1030 {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001031 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001032 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001033 /* Set up sig handlers -- be sure to
1034 * clear all of these in run() */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001035 signal(SIGHUP, exec_signal);
Mike Frysingera77b4f32005-04-16 08:21:34 +00001036 signal(SIGQUIT, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001037 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001038 signal(SIGUSR2, halt_signal);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001039 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001040 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001041 signal(SIGCONT, cont_handler);
1042 signal(SIGSTOP, stop_handler);
1043 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001044
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001045 /* Turn off rebooting via CTL-ALT-DEL -- we get a
Erik Andersene49d5ec2000-02-08 19:58:47 +00001046 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001047 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001048#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001049
Eric Andersen599e3ce2002-07-03 11:08:10 +00001050 /* Figure out where the default console should be */
1051 console_init();
1052
Erik Andersene49d5ec2000-02-08 19:58:47 +00001053 /* Close whatever files are open, and reset the console. */
1054 close(0);
1055 close(1);
1056 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001057
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001058 if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1059 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001060 close(0);
1061 }
1062
Erik Andersen983b51b2000-04-04 18:14:25 +00001063 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001064 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001065 {
1066 const char * const *e;
1067 /* Make sure environs is set to something sane */
1068 for(e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001069 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001070 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001071 /* Hello world */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001072 message(MAYBE_CONSOLE | LOG, "init started: %s", bb_msg_full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001073
Erik Andersene49d5ec2000-02-08 19:58:47 +00001074 /* Make sure there is enough memory to do something useful. */
Rob Landleyc3386a42005-08-30 18:50:37 +00001075 if (ENABLE_SWAPONOFF) {
1076 struct sysinfo info;
1077
1078 if (!sysinfo(&info) &&
1079 (info.mem_unit ? : 1) * (long long)info.totalram < MEGABYTE)
1080 {
1081 message(CONSOLE,"Low memory: forcing swapon.");
1082 /* swapon -a requires /proc typically */
1083 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
1084 /* Try to turn on swap */
1085 new_init_action(SYSINIT, "/sbin/swapon -a", "");
1086 run_actions(SYSINIT); /* wait and removing */
1087 }
1088 }
Erik Andersen9e737252000-01-06 01:16:13 +00001089
Erik Andersene49d5ec2000-02-08 19:58:47 +00001090 /* Check if we are supposed to be in single user mode */
1091 if (argc > 1 && (!strcmp(argv[1], "single") ||
1092 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001093 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +00001094 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001095 } else {
1096 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001097
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001098 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001099 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001100 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001101 * of "askfirst" shells */
1102 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001103 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001104
Rob Landleyb3ede5a2006-03-27 23:09:12 +00001105#ifdef CONFIG_SELINUX
1106 if (getenv("SELINUX_INIT") == NULL) {
1107 int enforce = 0;
1108
1109 putenv("SELINUX_INIT=YES");
1110 if (selinux_init_load_policy(&enforce) == 0) {
1111 execv(argv[0], argv);
1112 } else if (enforce > 0) {
1113 /* SELinux in enforcing mode but load_policy failed */
1114 /* At this point, we probably can't open /dev/console, so log() won't work */
1115 message(CONSOLE,"Unable to load SELinux Policy. Machine is in enforcing mode. Halting now.");
1116 exit(1);
1117 }
1118 }
1119#endif /* CONFIG_SELINUX */
1120
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001121 /* Make the command line just say "init" -- thats all, nothing else */
1122 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001123
Erik Andersene49d5ec2000-02-08 19:58:47 +00001124 /* Now run everything that needs to be run */
1125
1126 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001127 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001128
Erik Andersene49d5ec2000-02-08 19:58:47 +00001129 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001130 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001131
Erik Andersene49d5ec2000-02-08 19:58:47 +00001132 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001133 run_actions(ONCE);
1134
Eric Andersen82baf632004-10-08 08:21:54 +00001135#ifdef CONFIG_FEATURE_USE_INITTAB
Eric Andersen6fd0e312003-07-22 09:48:56 +00001136 /* Redefine SIGHUP to reread /etc/inittab */
1137 signal(SIGHUP, reload_signal);
Eric Andersen82baf632004-10-08 08:21:54 +00001138#else
1139 signal(SIGHUP, SIG_IGN);
1140#endif /* CONFIG_FEATURE_USE_INITTAB */
1141
Eric Andersen6fd0e312003-07-22 09:48:56 +00001142
Erik Andersene49d5ec2000-02-08 19:58:47 +00001143 /* Now run the looping stuff for the rest of forever */
1144 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001145 /* run the respawn stuff */
1146 run_actions(RESPAWN);
1147
1148 /* run the askfirst stuff */
1149 run_actions(ASKFIRST);
1150
1151 /* Don't consume all CPU time -- sleep a bit */
1152 sleep(1);
1153
Erik Andersene49d5ec2000-02-08 19:58:47 +00001154 /* Wait for a child process to exit */
1155 wpid = wait(&status);
Eric Andersen87812dc2004-04-12 19:21:54 +00001156 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001157 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001158 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001159 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001160 /* Set the pid to 0 so that the process gets
1161 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001162 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001163 message(LOG, "Process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001164 "Scheduling it for restart.",
1165 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001166 }
1167 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001168 /* see if anyone else is waiting to be reaped */
1169 wpid = waitpid (-1, &status, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001170 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001171 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001172}
Erik Andersen029011b2000-03-04 21:19:32 +00001173
1174/*
1175Local Variables:
1176c-file-style: "linux"
1177c-basic-offset: 4
1178tab-width: 4
1179End:
1180*/