blob: 401cf693c214bbf305d0f6c86c6a3392ab640d8f [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 Andersen1d1d2f92002-04-13 08:31:59 +00006 * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org>
Eric Andersenc4996011999-10-20 22:08:37 +00007 * Adjusted by so many folks, it's impossible to keep track.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
Erik Andersene132f4b2000-02-09 04:16:43 +000025/* Turn this on to disable all the dangerous
26 rebooting stuff when debugging.
27#define DEBUG_INIT
28*/
29
Erik Andersen4f3f7572000-04-28 00:18:56 +000030#include <stdio.h>
31#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000032#include <errno.h>
Eric Andersenb186d981999-12-03 09:19:54 +000033#include <paths.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000034#include <signal.h>
35#include <stdarg.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000036#include <string.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +000037#include <termios.h>
38#include <unistd.h>
Eric Andersened3ef502001-01-27 08:24:39 +000039#include <limits.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000040#include <sys/fcntl.h>
41#include <sys/ioctl.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000042#include <sys/mount.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000043#include <sys/types.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000044#include <sys/wait.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000045#include "busybox.h"
Eric Andersenb01ed652003-06-27 17:08:15 +000046
47#include "init_shared.h"
48
49
Eric Andersenbdfd0d72001-10-24 05:00:29 +000050#ifdef CONFIG_SYSLOGD
Erik Andersen4f3f7572000-04-28 00:18:56 +000051# include <sys/syslog.h>
52#endif
Eric Andersen2c1de612003-04-24 11:41:28 +000053#if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__)
54#include <sys/reboot.h>
55#endif
56
Erik Andersen4f3f7572000-04-28 00:18:56 +000057
Eric Andersen0298be82002-03-05 15:12:19 +000058#if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_MMU__)
59#define fork vfork
60#endif
Pavel Roskin9c5fcc32000-07-17 23:45:12 +000061
Eric Andersen0826b6b2002-07-03 23:50:16 +000062#define INIT_BUFFS_SIZE 256
63
Eric Andersenbd22ed82000-07-08 18:55:24 +000064/* From <linux/vt.h> */
65struct vt_stat {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000066 unsigned short v_active; /* active vt */
67 unsigned short v_signal; /* signal to send */
68 unsigned short v_state; /* vt bitmask */
Eric Andersenbd22ed82000-07-08 18:55:24 +000069};
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000070static const int VT_GETSTATE = 0x5603; /* get global vt state info */
Eric Andersenbd22ed82000-07-08 18:55:24 +000071
72/* From <linux/serial.h> */
73struct serial_struct {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000074 int type;
75 int line;
76 int port;
77 int irq;
78 int flags;
79 int xmit_fifo_size;
80 int custom_divisor;
81 int baud_base;
82 unsigned short close_delay;
83 char reserved_char[2];
84 int hub6;
85 unsigned short closing_wait; /* time to wait before closing */
86 unsigned short closing_wait2; /* no longer used... */
87 int reserved[4];
Eric Andersenbd22ed82000-07-08 18:55:24 +000088};
89
90
Eric Andersen41492d62001-02-23 00:05:56 +000091#ifndef _PATH_STDPATH
Erik Andersen4f3f7572000-04-28 00:18:56 +000092#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
Eric Andersen41492d62001-02-23 00:05:56 +000093#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000094
Eric Andersenbdfd0d72001-10-24 05:00:29 +000095#if defined CONFIG_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000096/*
Erik Andersen183da4a2000-04-04 18:36:37 +000097 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
98 * before processes are spawned to set core file size as unlimited.
99 * This is for debugging only. Don't use this is production, unless
100 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +0000101 */
102#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
103#include <sys/resource.h>
104#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +0000105#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000106
Erik Andersen4d1d0111999-12-17 18:44:15 +0000107#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +0000108
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000109#define SHELL "/bin/sh" /* Default shell */
110#define LOGIN_SHELL "-" SHELL /* Default login shell */
111#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000112#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000113#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000114#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000115
Eric Andersen41492d62001-02-23 00:05:56 +0000116#define MAXENV 16 /* Number of env. vars */
Erik Andersen7dc16072000-01-04 01:10:25 +0000117
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000118#define CONSOLE_BUFF_SIZE 32
119
Erik Andersen7dc16072000-01-04 01:10:25 +0000120/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +0000121#define SYSINIT 0x001
122#define RESPAWN 0x002
123#define ASKFIRST 0x004
124#define WAIT 0x008
125#define ONCE 0x010
126#define CTRLALTDEL 0x020
127#define SHUTDOWN 0x040
128#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +0000129
Erik Andersen42094cd2000-03-20 21:34:52 +0000130/* A mapping between "inittab" action name strings and action type codes. */
Eric Andersen0298be82002-03-05 15:12:19 +0000131struct init_action_type {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000132 const char *name;
Eric Andersen0298be82002-03-05 15:12:19 +0000133 int action;
134};
Erik Andersen7dc16072000-01-04 01:10:25 +0000135
Eric Andersen0298be82002-03-05 15:12:19 +0000136static const struct init_action_type actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137 {"sysinit", SYSINIT},
138 {"respawn", RESPAWN},
139 {"askfirst", ASKFIRST},
140 {"wait", WAIT},
141 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000142 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000143 {"shutdown", SHUTDOWN},
Eric Andersen730f8262001-12-17 23:13:08 +0000144 {"restart", RESTART},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000145 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000146};
147
Eric Andersen0298be82002-03-05 15:12:19 +0000148/* Set up a linked list of init_actions, to be read from inittab */
149struct init_action {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000150 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000151 char command[INIT_BUFFS_SIZE];
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000152 char terminal[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000153 struct init_action *next;
154 int action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000155};
Erik Andersen7dc16072000-01-04 01:10:25 +0000156
Eric Andersen0298be82002-03-05 15:12:19 +0000157/* Static variables */
158static struct init_action *init_action_list = NULL;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000159static char console[CONSOLE_BUFF_SIZE] = _PATH_CONSOLE;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000160
Eric Andersene7078062002-07-29 08:00:16 +0000161#ifndef CONFIG_SYSLOGD
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000162static char *log = VC_5;
Eric Andersene7078062002-07-29 08:00:16 +0000163#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000164static sig_atomic_t got_cont = 0;
165static const int LOG = 0x1;
166static const int CONSOLE = 0x2;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000167
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000168#if defined CONFIG_FEATURE_EXTRA_QUIET
Eric Andersen0298be82002-03-05 15:12:19 +0000169static const int MAYBE_CONSOLE = 0x0;
170#else
171#define MAYBE_CONSOLE CONSOLE
172#endif
173#ifndef RB_HALT_SYSTEM
174static const int RB_HALT_SYSTEM = 0xcdef0123;
175static const int RB_ENABLE_CAD = 0x89abcdef;
176static const int RB_DISABLE_CAD = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000177
Eric Andersen0298be82002-03-05 15:12:19 +0000178#define RB_POWER_OFF 0x4321fedc
179static const int RB_AUTOBOOT = 0x01234567;
180#endif
Erik Andersen42094cd2000-03-20 21:34:52 +0000181
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000182static const char * const environment[] = {
183 "HOME=/",
184 "PATH=" _PATH_STDPATH,
185 "SHELL=" SHELL,
186 "USER=root",
187 NULL
188};
189
Eric Andersen0298be82002-03-05 15:12:19 +0000190/* Function prototypes */
191static void delete_init_action(struct init_action *a);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000192static int waitfor(const struct init_action *a);
Eric Andersen0298be82002-03-05 15:12:19 +0000193
Eric Andersen0460ff21999-10-25 23:32:44 +0000194
Eric Andersen74400cc2001-10-18 04:11:39 +0000195static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000196{
197 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000198 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000199}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000200
Erik Andersen42094cd2000-03-20 21:34:52 +0000201/* Print a message to the specified device.
202 * Device may be bitwise-or'd from LOG | CONSOLE */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000203#ifndef DEBUG_INIT
204static inline void messageD(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000205{
206}
207#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000208#define messageD message
Eric Andersenfedce062001-11-17 07:27:14 +0000209#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000210static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000211 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000212static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000213{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000214 va_list arguments;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000215 int l;
Eric Andersen22237012003-01-23 07:08:26 +0000216 char msg[1024];
217#ifndef CONFIG_SYSLOGD
218 static int log_fd = -1;
219#endif
Eric Andersen4c781471999-11-26 08:12:56 +0000220
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000221 msg[0] = '\r';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000222 va_start(arguments, fmt);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000223 l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments) + 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000224 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000225
226#ifdef CONFIG_SYSLOGD
227 /* Log the message to syslogd */
228 if (device & LOG) {
229 /* don`t out "\r\n" */
230 syslog_msg(LOG_DAEMON, LOG_INFO, msg + 1);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000231 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000232
233 msg[l++] = '\n';
234 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000235#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000236
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000237 msg[l++] = '\n';
238 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000239 /* Take full control of the log tty, and never close it.
240 * It's mine, all mine! Muhahahaha! */
241 if (log_fd < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000242 if ((log_fd = device_open(log, O_RDWR | O_NDELAY | O_NOCTTY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000243 log_fd = -2;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000244 bb_error_msg("Bummer, can't write to log on %s!", log);
Erik Andersene132f4b2000-02-09 04:16:43 +0000245 device = CONSOLE;
Eric Andersen6a979902002-09-30 20:08:53 +0000246 } else {
247 fcntl(log_fd, F_SETFD, FD_CLOEXEC);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000248 }
249 }
250 if ((device & LOG) && (log_fd >= 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000251 bb_full_write(log_fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000252 }
Eric Andersen4c781471999-11-26 08:12:56 +0000253#endif
254
Erik Andersene49d5ec2000-02-08 19:58:47 +0000255 if (device & CONSOLE) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000256 int fd = device_open(_PATH_CONSOLE,
257 O_WRONLY | O_NOCTTY | O_NDELAY);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 /* Always send console messages to /dev/console so people will see them. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000259 if (fd >= 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000260 bb_full_write(fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000261 close(fd);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000262#ifdef DEBUG_INIT
263 /* all descriptors may be closed */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000265 bb_error_msg("Bummer, can't print: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 va_start(arguments, fmt);
267 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000268 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000269#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000270 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000271 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000272}
273
Eric Andersen0460ff21999-10-25 23:32:44 +0000274/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000275static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000276{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000277 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000278
Erik Andersene49d5ec2000-02-08 19:58:47 +0000279 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000280
Erik Andersene49d5ec2000-02-08 19:58:47 +0000281 /* set control chars */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000282 tty.c_cc[VINTR] = 3; /* C-c */
283 tty.c_cc[VQUIT] = 28; /* C-\ */
284 tty.c_cc[VERASE] = 127; /* C-? */
285 tty.c_cc[VKILL] = 21; /* C-u */
286 tty.c_cc[VEOF] = 4; /* C-d */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000287 tty.c_cc[VSTART] = 17; /* C-q */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000288 tty.c_cc[VSTOP] = 19; /* C-s */
289 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000290
Erik Andersene49d5ec2000-02-08 19:58:47 +0000291 /* use line dicipline 0 */
292 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000293
Erik Andersene49d5ec2000-02-08 19:58:47 +0000294 /* Make it be sane */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000295 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
296 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
Eric Andersend8862922001-04-23 15:14:11 +0000297
Eric Andersen08b10341999-11-19 02:38:58 +0000298
Erik Andersene49d5ec2000-02-08 19:58:47 +0000299 /* input modes */
300 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000301
Erik Andersene49d5ec2000-02-08 19:58:47 +0000302 /* output modes */
303 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000304
Erik Andersene49d5ec2000-02-08 19:58:47 +0000305 /* local modes */
306 tty.c_lflag =
307 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000308
Erik Andersene49d5ec2000-02-08 19:58:47 +0000309 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000310}
311
Eric Andersenbc5941a2000-12-06 23:17:37 +0000312/* How much memory does this machine have?
313 Units are kBytes to avoid overflow on 4GB machines */
Eric Andersen74400cc2001-10-18 04:11:39 +0000314static int check_free_memory(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000315{
Erik Andersend07ee462000-02-21 21:26:32 +0000316 struct sysinfo info;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000317 unsigned int result, u, s = 10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000318
Erik Andersend07ee462000-02-21 21:26:32 +0000319 if (sysinfo(&info) != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000320 bb_perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000322 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000323
324 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
325 * Kernels 2.4.0 return info.mem_unit in bytes. */
326 u = info.mem_unit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000327 if (u == 0)
328 u = 1;
329 while ((u & 1) == 0 && s > 0) {
330 u >>= 1;
331 s--;
332 }
333 result = (info.totalram >> s) + (info.totalswap >> s);
334 result = result * u;
335 if (result < 0)
336 result = INT_MAX;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000337 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000338}
339
Eric Andersen74400cc2001-10-18 04:11:39 +0000340static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000341{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000342 int fd;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000343 int tried = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000344 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345 struct serial_struct sr;
346 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000347
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000348 if ((s = getenv("CONSOLE")) != NULL || (s = getenv("console")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000349 safe_strncpy(console, s, sizeof(console));
Eric Andersenfbb39c81999-11-08 17:00:52 +0000350#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000351 /* sparc kernel supports console=tty[ab] parameter which is also
352 * passed to init, so catch it here */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000353 /* remap tty[ab] to /dev/ttyS[01] */
354 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000355 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000356 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000357 safe_strncpy(console, SC_1, sizeof(console));
Eric Andersen219d6f51999-11-02 19:43:01 +0000358#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000359 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000360 /* 2.2 kernels: identify the real console backend and try to use it */
361 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
362 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000363 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000364 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
365 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000366 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000367 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000368 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000369 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000370 }
Eric Andersen07e52971999-11-07 07:38:08 +0000371 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000372
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000373 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0 && tried < 2) {
374 /* Can't open selected console -- try
375 logical system console and VT_MASTER */
376 safe_strncpy(console, (tried == 0 ? _PATH_CONSOLE : CURRENT_VC),
377 sizeof(console));
378 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000379 }
380 if (fd < 0) {
381 /* Perhaps we should panic here? */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000382#ifndef CONFIG_SYSLOGD
383 log =
384#endif
Matt Kraai18447702001-05-18 21:24:58 +0000385 safe_strncpy(console, "/dev/null", sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000386 } else {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000387 s = getenv("TERM");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000388 /* check for serial console */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000389 if (ioctl(fd, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000390 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000391 * if TERM is set to linux (the default) */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000392 if (s == NULL || strcmp(s, "linux") == 0)
393 putenv("TERM=vt102");
394#ifndef CONFIG_SYSLOGD
395 log = console;
396#endif
397 } else {
398 if (s == NULL)
399 putenv("TERM=linux");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000400 }
401 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000402 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000403 messageD(LOG, "console=%s", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000404}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000405
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000406static void fixup_argv(int argc, char **argv, char *new_argv0)
407{
408 int len;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000409
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000410 /* Fix up argv[0] to be certain we claim to be init */
411 len = strlen(argv[0]);
412 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000413 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000414
415 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
416 len = 1;
417 while (argc > len) {
418 memset(argv[len], 0, strlen(argv[len]));
419 len++;
420 }
421}
422
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000423static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000424{
425 struct stat sb;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000426 int i, junk;
Eric Andersen0298be82002-03-05 15:12:19 +0000427 pid_t pid, pgrp, tmp_pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000428 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000429 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000430 sigset_t nmask, omask;
Eric Andersen0298be82002-03-05 15:12:19 +0000431 static const char press_enter[] =
432#ifdef CUSTOMIZED_BANNER
433#include CUSTOMIZED_BANNER
434#endif
435 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000436
Eric Andersen0298be82002-03-05 15:12:19 +0000437 /* Block sigchild while forking. */
438 sigemptyset(&nmask);
439 sigaddset(&nmask, SIGCHLD);
440 sigprocmask(SIG_BLOCK, &nmask, &omask);
441
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000442 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000443 /* Clean up */
444 close(0);
445 close(1);
446 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000447 sigprocmask(SIG_SETMASK, &omask, NULL);
448
Eric Andersen0298be82002-03-05 15:12:19 +0000449 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000450 signal(SIGUSR1, SIG_DFL);
451 signal(SIGUSR2, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000452 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000453 signal(SIGTERM, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000454 signal(SIGHUP, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000455 signal(SIGCONT, SIG_DFL);
456 signal(SIGSTOP, SIG_DFL);
457 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000458
Eric Andersen599e3ce2002-07-03 11:08:10 +0000459 /* Create a new session and make ourself the process
Eric Andersene8a90fb2002-10-12 04:05:48 +0000460 * group leader */
461 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000462
Eric Andersen0298be82002-03-05 15:12:19 +0000463 /* Open the new terminal device */
Eric Andersene8a90fb2002-10-12 04:05:48 +0000464 if ((device_open(a->terminal, O_RDWR)) < 0) {
Eric Andersen0298be82002-03-05 15:12:19 +0000465 if (stat(a->terminal, &sb) != 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000466 message(LOG | CONSOLE, "device '%s' does not exist.",
Eric Andersen0298be82002-03-05 15:12:19 +0000467 a->terminal);
468 _exit(1);
Eric Andersen53f50612001-03-14 09:01:11 +0000469 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000470 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
Eric Andersen0298be82002-03-05 15:12:19 +0000471 _exit(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000472 }
Eric Andersen599e3ce2002-07-03 11:08:10 +0000473
Eric Andersen0298be82002-03-05 15:12:19 +0000474 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000475 set_term(0);
Eric Andersen0826b6b2002-07-03 23:50:16 +0000476 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000477 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000478 dup(0);
479 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000480
Eric Andersen599e3ce2002-07-03 11:08:10 +0000481 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000482 * supplied terminal to be the controlling tty. */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000483 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000484
485 /* Now fork off another process to just hang around */
486 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000487 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000488 _exit(1);
489 }
490
491 if (pid > 0) {
492
493 /* We are the parent -- wait till the child is done */
494 signal(SIGINT, SIG_IGN);
495 signal(SIGTSTP, SIG_IGN);
496 signal(SIGQUIT, SIG_IGN);
497 signal(SIGCHLD, SIG_DFL);
498
499 /* Wait for child to exit */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000500 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid);
Eric Andersen0298be82002-03-05 15:12:19 +0000501
502 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000503 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000504 if (pgrp != getpid())
505 _exit(0);
506
507 /* Use a temporary process to steal the controlling tty. */
508 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000509 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000510 _exit(1);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000511 }
Eric Andersen0298be82002-03-05 15:12:19 +0000512 if (pid == 0) {
513 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000514 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000515 _exit(0);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000516 }
517 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000518 if (tmp_pid < 0 && errno == ECHILD)
519 break;
520 }
521 _exit(0);
522 }
523
524 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000525 }
526
Erik Andersene132f4b2000-02-09 04:16:43 +0000527 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000528 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000529 cmd[0] = SHELL;
530 cmd[1] = "-c";
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000531 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000532 cmd[3] = NULL;
533 } else {
534 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000535 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000536 s = buf;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000537 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000538 if (*tmpCmd != '\0') {
539 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000540 i++;
541 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000542 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000543 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000544 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000545
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000546 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000547
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000548 /*
549 Interactive shells want to see a dash in argv[0]. This
550 typically is handled by login, argv will be setup this
551 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000552 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000553 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000554
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000555 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000556
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000557 /* skip over the dash */
558 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000559
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000560 /* find the last component in the command pathname */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000561 s = bb_get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000562
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000563 /* make a new argv[0] */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000564 if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000565 message(LOG | CONSOLE, bb_msg_memory_exhausted);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000566 cmd[0] = cmdpath;
567 } else {
568 cmd[0][0] = '-';
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000569 strcpy(cmd[0] + 1, s);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000570 }
571 }
572
Eric Andersen0298be82002-03-05 15:12:19 +0000573 if (a->action & ASKFIRST) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000574 char c;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000575 /*
576 * Save memory by not exec-ing anything large (like a shell)
577 * before the user wants it. This is critical if swap is not
578 * enabled and the system has low memory. Generally this will
579 * be run on the second virtual console, and the first will
580 * be allowed to start a shell or whatever an init script
581 * specifies.
582 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000583 messageD(LOG, "Waiting for enter to start '%s'"
584 "(pid %d, terminal %s)\n",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000585 cmdpath, getpid(), a->terminal);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000586 bb_full_write(1, press_enter, sizeof(press_enter) - 1);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000587 while(read(0, &c, 1) == 1 && c != '\n')
588 ;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000589 }
590
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000591 /* Log the process name and args */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000592 message(LOG, "Starting pid %d, console %s: '%s'",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000593 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000594
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000595#if defined CONFIG_FEATURE_INIT_COREDUMPS
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000596 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000597 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000598
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000599 limit.rlim_cur = RLIM_INFINITY;
600 limit.rlim_max = RLIM_INFINITY;
601 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000602 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000603#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000604
Erik Andersene49d5ec2000-02-08 19:58:47 +0000605 /* Now run it. The new program will take over this PID,
606 * so nothing further in init.c should be run. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000607 execv(cmdpath, cmd);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000608
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000609 /* We're still here? Some error happened. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000610 message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath);
Eric Andersen0298be82002-03-05 15:12:19 +0000611 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000612 }
Eric Andersen0298be82002-03-05 15:12:19 +0000613 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000614 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000615}
616
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000617static int waitfor(const struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000618{
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000619 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000620 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000621
Eric Andersen0298be82002-03-05 15:12:19 +0000622 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000623 while (1) {
624 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000625 if (wpid > 0 && wpid != pid) {
626 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000627 }
628 if (wpid == pid)
629 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000630 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000631 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000632}
633
Eric Andersen0298be82002-03-05 15:12:19 +0000634/* Run all commands of a particular type */
635static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000636{
Eric Andersen0298be82002-03-05 15:12:19 +0000637 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000638
Eric Andersen0298be82002-03-05 15:12:19 +0000639 for (a = init_action_list; a; a = tmp) {
640 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000641 if (a->action == action) {
Eric Andersen59560282002-10-22 11:45:20 +0000642 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000643 waitfor(a);
644 delete_init_action(a);
645 } else if (a->action & ONCE) {
646 run(a);
647 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000648 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000649 /* Only run stuff with pid==0. If they have
650 * a pid, that means it is still running */
651 if (a->pid == 0) {
652 a->pid = run(a);
653 }
654 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000655 }
656 }
657}
658
Erik Andersen7dc16072000-01-04 01:10:25 +0000659#ifndef DEBUG_INIT
Eric Andersen2c1de612003-04-24 11:41:28 +0000660static void init_reboot(unsigned long magic)
661{
662 pid_t pid;
663 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersen3c8064f2003-07-05 08:29:01 +0000664 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000665 * the init process is killed.... */
666 if ((pid = fork()) == 0) {
667#if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__)
668 reboot(magic);
669#else
670 reboot(0xfee1dead, 672274793, magic);
671#endif
672 _exit(0);
673 }
674 waitpid (pid, NULL, 0);
675}
676
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000677static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000678{
Eric Andersen813d88c2001-10-28 22:49:48 +0000679 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000680
Eric Andersena9cc8962002-09-16 06:49:06 +0000681 /* run everything to be run at "shutdown". This is done _prior_
682 * to killing everything, in case people wish to use scripts to
683 * shut things down gracefully... */
684 run_actions(SHUTDOWN);
685
Eric Andersen72f9a422001-10-28 05:12:20 +0000686 /* first disable all our signals */
687 sigemptyset(&block_signals);
688 sigaddset(&block_signals, SIGHUP);
689 sigaddset(&block_signals, SIGCHLD);
690 sigaddset(&block_signals, SIGUSR1);
691 sigaddset(&block_signals, SIGUSR2);
692 sigaddset(&block_signals, SIGINT);
693 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000694 sigaddset(&block_signals, SIGCONT);
695 sigaddset(&block_signals, SIGSTOP);
696 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000697 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000698
Erik Andersene49d5ec2000-02-08 19:58:47 +0000699 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000700 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000701
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000702 message(CONSOLE | LOG, "The system is going down NOW !!");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000703 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000704
705 /* Send signals to every process _except_ pid 1 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000706 message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000707 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000708 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000709 sync();
710
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000711 message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000712 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000713 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000714
Erik Andersene49d5ec2000-02-08 19:58:47 +0000715 sync();
Eric Andersencc8ed391999-10-05 16:24:54 +0000716}
717
Eric Andersen730f8262001-12-17 23:13:08 +0000718static void exec_signal(int sig)
719{
Eric Andersen0298be82002-03-05 15:12:19 +0000720 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000721 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000722
Eric Andersen0298be82002-03-05 15:12:19 +0000723 for (a = init_action_list; a; a = tmp) {
724 tmp = a->next;
725 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000726 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000727
728 /* unblock all signals, blocked in shutdown_system() */
729 sigemptyset(&unblock_signals);
730 sigaddset(&unblock_signals, SIGHUP);
731 sigaddset(&unblock_signals, SIGCHLD);
732 sigaddset(&unblock_signals, SIGUSR1);
733 sigaddset(&unblock_signals, SIGUSR2);
734 sigaddset(&unblock_signals, SIGINT);
735 sigaddset(&unblock_signals, SIGTERM);
736 sigaddset(&unblock_signals, SIGCONT);
737 sigaddset(&unblock_signals, SIGSTOP);
738 sigaddset(&unblock_signals, SIGTSTP);
739 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
740
Eric Andersen3c8064f2003-07-05 08:29:01 +0000741 /* Open the new terminal device */
742 if ((device_open(a->terminal, O_RDWR)) < 0) {
743 if (stat(a->terminal, &sb) != 0) {
744 message(LOG | CONSOLE, "device '%s' does not exist.", a->terminal);
745 } else {
746 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
747 }
748 halt_signal(SIGUSR1);
749 }
750
751 /* Make sure the terminal will act fairly normal for us */
752 set_term(0);
753 /* Setup stdout, stderr on the supplied terminal */
754 dup(0);
755 dup(0);
756
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000757 messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000758 execl(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000759
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000760 message(CONSOLE | LOG, "exec of '%s' failed: %m",
Eric Andersen71ae64b2002-10-10 04:20:21 +0000761 a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000762 sync();
763 sleep(2);
764 init_reboot(RB_HALT_SYSTEM);
765 loop_forever();
766 }
767 }
768}
769
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000770static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000771{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000772 shutdown_system();
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000773 message(CONSOLE | LOG,
Eric Andersenf435a912001-11-20 05:42:57 +0000774#if #cpu(s390)
775 /* Seems the s390 console is Wierd(tm). */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000776 "The system is halted. You may reboot now."
Eric Andersenf435a912001-11-20 05:42:57 +0000777#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000778 "The system is halted. Press Reset or turn off power"
Eric Andersenf435a912001-11-20 05:42:57 +0000779#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000780 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000781 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000782
Erik Andersene49d5ec2000-02-08 19:58:47 +0000783 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000784 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000785
Eric Andersenb01ed652003-06-27 17:08:15 +0000786 if (sig == SIGUSR2)
Erik Andersen4f3f7572000-04-28 00:18:56 +0000787 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000788 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000789 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000790
791 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000792}
793
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000794static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000795{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000796 shutdown_system();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000797 message(CONSOLE | LOG, "Please stand by while rebooting the system.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000798 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000799
Erik Andersene49d5ec2000-02-08 19:58:47 +0000800 /* allow time for last message to reach serial console */
801 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000802
Erik Andersen4f3f7572000-04-28 00:18:56 +0000803 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000804
805 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000806}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000807
Eric Andersenc97ec342001-04-03 18:01:51 +0000808static void ctrlaltdel_signal(int sig)
809{
810 run_actions(CTRLALTDEL);
811}
812
Eric Andersen0298be82002-03-05 15:12:19 +0000813/* The SIGSTOP & SIGTSTP handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000814static void stop_handler(int sig)
815{
Eric Andersen0298be82002-03-05 15:12:19 +0000816 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000817
818 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000819 while (!got_cont)
820 pause();
Eric Andersened8a9be2001-11-30 19:10:58 +0000821 got_cont = 0;
822 errno = saved_errno;
823}
824
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000825/* The SIGCONT handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000826static void cont_handler(int sig)
827{
828 got_cont = 1;
829}
830
Erik Andersene49d5ec2000-02-08 19:58:47 +0000831#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000832
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000833static void new_init_action(int action, char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000834{
Eric Andersen0298be82002-03-05 15:12:19 +0000835 struct init_action *new_action, *a;
Erik Andersen9e737252000-01-06 01:16:13 +0000836
Erik Andersene49d5ec2000-02-08 19:58:47 +0000837 if (*cons == '\0')
838 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000839
Eric Andersen3bc2b202002-07-29 06:39:58 +0000840 /* do not run entries if console device is not available */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000841 if (access(cons, R_OK | W_OK))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000842 return;
Eric Andersen0298be82002-03-05 15:12:19 +0000843 if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000844 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000845
Eric Andersen0298be82002-03-05 15:12:19 +0000846 new_action = calloc((size_t) (1), sizeof(struct init_action));
847 if (!new_action) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000848 message(LOG | CONSOLE, "Memory allocation failure");
Matt Kraai67a46402001-06-03 05:55:52 +0000849 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000850 }
Eric Andersen0298be82002-03-05 15:12:19 +0000851
852 /* Append to the end of the list */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000853 for (a = init_action_list; a && a->next; a = a->next);
Eric Andersen1644db92001-09-05 20:18:15 +0000854 if (a) {
Eric Andersen0298be82002-03-05 15:12:19 +0000855 a->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000856 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000857 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000858 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000859 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000860 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000861 strcpy(new_action->terminal, cons);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000862#if 0 /* calloc zeroed always */
Eric Andersen0298be82002-03-05 15:12:19 +0000863 new_action->pid = 0;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000864#endif
865 messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
866 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000867}
868
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000869static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000870{
Eric Andersen0298be82002-03-05 15:12:19 +0000871 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000872
Eric Andersen0298be82002-03-05 15:12:19 +0000873 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000874 if (a == action) {
875 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000876 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000877 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000878 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000879 }
880 free(a);
881 break;
882 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000883 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000884}
885
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000886/* Make sure there is enough memory to do something useful. *
887 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
888static void check_memory(void)
889{
890 struct stat statBuf;
891
892 if (check_free_memory() > 1000)
893 return;
894
895#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
896 if (stat("/etc/fstab", &statBuf) == 0) {
897 /* swapon -a requires /proc typically */
898 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
899 /* Try to turn on swap */
900 new_init_action(SYSINIT, "/sbin/swapon -a", "");
901 run_actions(SYSINIT); /* wait and removing */
902 if (check_free_memory() < 1000)
903 goto goodnight;
904 } else
905 goto goodnight;
906 return;
907#endif
908
909 goodnight:
910 message(CONSOLE, "Sorry, your computer does not have enough memory.");
911 loop_forever();
912}
913
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000914/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000915 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +0000916 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000917 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
Erik Andersen812d4662000-01-07 18:30:40 +0000918 * _is_ defined, but /etc/inittab is missing, this
919 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000920 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000921static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000922{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000923#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000924 FILE *file;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000925 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
926 char tmpConsole[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000927 char *id, *runlev, *action, *command, *eol;
928 const struct init_action_type *a = actions;
Erik Andersen7dc16072000-01-04 01:10:25 +0000929
930
Erik Andersene49d5ec2000-02-08 19:58:47 +0000931 file = fopen(INITTAB, "r");
932 if (file == NULL) {
933 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000934#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000935 /* Reboot on Ctrl-Alt-Del */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000936 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000937 /* Umount all filesystems on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000938 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
Eric Andersen72f9a422001-10-28 05:12:20 +0000939#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen1644db92001-09-05 20:18:15 +0000940 /* Swapoff on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000941 new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000942#endif
Eric Andersen730f8262001-12-17 23:13:08 +0000943 /* Prepare to restart init when a HUP is received */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000944 new_init_action(RESTART, "/sbin/init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000945 /* Askfirst shell on tty1-4 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000946 new_init_action(ASKFIRST, LOGIN_SHELL, "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000947 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
948 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
949 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000950 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000951 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000952
Erik Andersene49d5ec2000-02-08 19:58:47 +0000953 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000954#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000955 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000956
Eric Andersen0826b6b2002-07-03 23:50:16 +0000957 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Eric Andersenb5966362000-05-31 20:04:38 +0000958 /* Skip leading spaces */
959 for (id = buf; *id == ' ' || *id == '\t'; id++);
960
961 /* Skip the line if it's a comment */
962 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000963 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000964
Erik Andersene49d5ec2000-02-08 19:58:47 +0000965 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000966 eol = strrchr(id, '\n');
967 if (eol != NULL)
968 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000969
Erik Andersene49d5ec2000-02-08 19:58:47 +0000970 /* Keep a copy around for posterity's sake (and error msgs) */
971 strcpy(lineAsRead, buf);
972
Eric Andersenb5966362000-05-31 20:04:38 +0000973 /* Separate the ID field from the runlevels */
974 runlev = strchr(id, ':');
975 if (runlev == NULL || *(runlev + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000976 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000977 continue;
978 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000979 *runlev = '\0';
980 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000981 }
982
Eric Andersenb5966362000-05-31 20:04:38 +0000983 /* Separate the runlevels from the action */
984 action = strchr(runlev, ':');
985 if (action == NULL || *(action + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000986 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000987 continue;
988 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000989 *action = '\0';
990 ++action;
991 }
992
Eric Andersen0298be82002-03-05 15:12:19 +0000993 /* Separate the action from the command */
994 command = strchr(action, ':');
995 if (command == NULL || *(command + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000996 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +0000997 continue;
998 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000999 *command = '\0';
1000 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001001 }
1002
1003 /* Ok, now process it */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001004 for (a = actions; a->name != 0; a++) {
Eric Andersenb5966362000-05-31 20:04:38 +00001005 if (strcmp(a->name, action) == 0) {
1006 if (*id != '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001007 if(strncmp(id, "/dev/", 5) == 0)
1008 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001009 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001010 safe_strncpy(tmpConsole + 5, id,
1011 CONSOLE_BUFF_SIZE - 5);
Eric Andersenb5966362000-05-31 20:04:38 +00001012 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001013 }
Eric Andersen0298be82002-03-05 15:12:19 +00001014 new_init_action(a->action, command, id);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001015 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001016 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001017 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001018 if (a->name == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001019 /* Choke on an unknown action */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001020 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001021 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001022 }
Eric Andersend8636ca2002-05-15 22:19:09 +00001023 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001024 return;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001025#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +00001026}
1027
Erik Andersene132f4b2000-02-09 04:16:43 +00001028
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001029extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001030{
Eric Andersen0298be82002-03-05 15:12:19 +00001031 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001032 pid_t wpid;
1033 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001034
Eric Andersen730f8262001-12-17 23:13:08 +00001035 if (argc > 1 && !strcmp(argv[1], "-q")) {
Eric Andersenb01ed652003-06-27 17:08:15 +00001036 return kill_init(SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001037 }
Eric Andersend73dc5b1999-11-10 23:13:02 +00001038#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001039 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1040 if (getpid() != 1
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001041#ifdef CONFIG_FEATURE_INITRD
Manuel Novoa III cad53642003-03-19 09:13:01 +00001042 && strstr(bb_applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +00001043#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001044 ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001045 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001046 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001047 /* Set up sig handlers -- be sure to
1048 * clear all of these in run() */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001049 signal(SIGHUP, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001050 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001051 signal(SIGUSR2, halt_signal);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001052 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001053 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001054 signal(SIGCONT, cont_handler);
1055 signal(SIGSTOP, stop_handler);
1056 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001057
Erik Andersene49d5ec2000-02-08 19:58:47 +00001058 /* Turn off rebooting via CTL-ALT-DEL -- we get a
1059 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001060 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001061#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001062
Eric Andersen599e3ce2002-07-03 11:08:10 +00001063 /* Figure out where the default console should be */
1064 console_init();
1065
Erik Andersene49d5ec2000-02-08 19:58:47 +00001066 /* Close whatever files are open, and reset the console. */
1067 close(0);
1068 close(1);
1069 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001070
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001071 if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1072 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001073 close(0);
1074 }
1075
Erik Andersen983b51b2000-04-04 18:14:25 +00001076 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001077 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001078 {
1079 const char * const *e;
1080 /* Make sure environs is set to something sane */
1081 for(e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001082 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001083 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001084 /* Hello world */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001085 message(MAYBE_CONSOLE | LOG, "init started: %s", bb_msg_full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001086
Erik Andersene49d5ec2000-02-08 19:58:47 +00001087 /* Make sure there is enough memory to do something useful. */
1088 check_memory();
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 */
1094 new_init_action(RESPAWN, 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 Andersen77d92682001-05-23 20:32:09 +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
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001105 /* Make the command line just say "init" -- thats all, nothing else */
1106 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001107
Erik Andersene49d5ec2000-02-08 19:58:47 +00001108 /* Now run everything that needs to be run */
1109
1110 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001111 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001112
Erik Andersene49d5ec2000-02-08 19:58:47 +00001113 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001114 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001115
Erik Andersene49d5ec2000-02-08 19:58:47 +00001116 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001117 run_actions(ONCE);
1118
Erik Andersene49d5ec2000-02-08 19:58:47 +00001119 /* If there is nothing else to do, stop */
Eric Andersen0298be82002-03-05 15:12:19 +00001120 if (init_action_list == NULL) {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001121 message(LOG | CONSOLE,
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001122 "No more tasks for init -- sleeping forever.");
Matt Kraai67a46402001-06-03 05:55:52 +00001123 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001124 }
1125
1126 /* Now run the looping stuff for the rest of forever */
1127 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001128 /* run the respawn stuff */
1129 run_actions(RESPAWN);
1130
1131 /* run the askfirst stuff */
1132 run_actions(ASKFIRST);
1133
1134 /* Don't consume all CPU time -- sleep a bit */
1135 sleep(1);
1136
Erik Andersene49d5ec2000-02-08 19:58:47 +00001137 /* Wait for a child process to exit */
1138 wpid = wait(&status);
Eric Andersencf1fee02002-12-17 09:48:16 +00001139 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001140 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001141 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001142 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001143 /* Set the pid to 0 so that the process gets
1144 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001145 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001146 message(LOG, "Process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001147 "Scheduling it for restart.",
1148 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001149 }
1150 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001151 /* see if anyone else is waiting to be reaped */
1152 wpid = waitpid (-1, &status, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001153 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001154 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001155}
Erik Andersen029011b2000-03-04 21:19:32 +00001156
1157/*
1158Local Variables:
1159c-file-style: "linux"
1160c-basic-offset: 4
1161tab-width: 4
1162End:
1163*/