blob: 2f44e13bf6b5634cf2d04b4607f1bbb62406b12d [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 Andersencb81e642003-07-14 21:21:08 +00006 * Copyright (C) 1999-2003 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 *
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 Andersen85e5e722003-07-22 08:56:55 +000045#include <sys/reboot.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000046#include "busybox.h"
Eric Andersenb01ed652003-06-27 17:08:15 +000047
48#include "init_shared.h"
49
50
Eric Andersenbdfd0d72001-10-24 05:00:29 +000051#ifdef CONFIG_SYSLOGD
Erik Andersen4f3f7572000-04-28 00:18:56 +000052# include <sys/syslog.h>
53#endif
Eric Andersen2c1de612003-04-24 11:41:28 +000054
Erik Andersen4f3f7572000-04-28 00:18:56 +000055
Eric Andersen0298be82002-03-05 15:12:19 +000056#if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_MMU__)
57#define fork vfork
58#endif
Pavel Roskin9c5fcc32000-07-17 23:45:12 +000059
Eric Andersen0826b6b2002-07-03 23:50:16 +000060#define INIT_BUFFS_SIZE 256
61
Eric Andersenbd22ed82000-07-08 18:55:24 +000062/* From <linux/vt.h> */
63struct vt_stat {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000064 unsigned short v_active; /* active vt */
65 unsigned short v_signal; /* signal to send */
66 unsigned short v_state; /* vt bitmask */
Eric Andersenbd22ed82000-07-08 18:55:24 +000067};
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000068static const int VT_GETSTATE = 0x5603; /* get global vt state info */
Eric Andersenbd22ed82000-07-08 18:55:24 +000069
70/* From <linux/serial.h> */
71struct serial_struct {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000072 int type;
73 int line;
74 int port;
75 int irq;
76 int flags;
77 int xmit_fifo_size;
78 int custom_divisor;
79 int baud_base;
80 unsigned short close_delay;
81 char reserved_char[2];
82 int hub6;
83 unsigned short closing_wait; /* time to wait before closing */
84 unsigned short closing_wait2; /* no longer used... */
85 int reserved[4];
Eric Andersenbd22ed82000-07-08 18:55:24 +000086};
87
88
Eric Andersen41492d62001-02-23 00:05:56 +000089#ifndef _PATH_STDPATH
Erik Andersen4f3f7572000-04-28 00:18:56 +000090#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
Eric Andersen41492d62001-02-23 00:05:56 +000091#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000092
Eric Andersenbdfd0d72001-10-24 05:00:29 +000093#if defined CONFIG_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000094/*
Erik Andersen183da4a2000-04-04 18:36:37 +000095 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
96 * before processes are spawned to set core file size as unlimited.
97 * This is for debugging only. Don't use this is production, unless
98 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000099 */
100#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
101#include <sys/resource.h>
102#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +0000103#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000104
Erik Andersen4d1d0111999-12-17 18:44:15 +0000105#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +0000106
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000107#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000108#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000109#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000110#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000111
Eric Andersen41492d62001-02-23 00:05:56 +0000112#define MAXENV 16 /* Number of env. vars */
Erik Andersen7dc16072000-01-04 01:10:25 +0000113
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000114#define CONSOLE_BUFF_SIZE 32
115
Erik Andersen7dc16072000-01-04 01:10:25 +0000116/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +0000117#define SYSINIT 0x001
118#define RESPAWN 0x002
119#define ASKFIRST 0x004
120#define WAIT 0x008
121#define ONCE 0x010
122#define CTRLALTDEL 0x020
123#define SHUTDOWN 0x040
124#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +0000125
Erik Andersen42094cd2000-03-20 21:34:52 +0000126/* A mapping between "inittab" action name strings and action type codes. */
Eric Andersen0298be82002-03-05 15:12:19 +0000127struct init_action_type {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000128 const char *name;
Eric Andersen0298be82002-03-05 15:12:19 +0000129 int action;
130};
Erik Andersen7dc16072000-01-04 01:10:25 +0000131
Eric Andersen0298be82002-03-05 15:12:19 +0000132static const struct init_action_type actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133 {"sysinit", SYSINIT},
134 {"respawn", RESPAWN},
135 {"askfirst", ASKFIRST},
136 {"wait", WAIT},
137 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000138 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000139 {"shutdown", SHUTDOWN},
Eric Andersen730f8262001-12-17 23:13:08 +0000140 {"restart", RESTART},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000141 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000142};
143
Eric Andersen0298be82002-03-05 15:12:19 +0000144/* Set up a linked list of init_actions, to be read from inittab */
145struct init_action {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000146 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000147 char command[INIT_BUFFS_SIZE];
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000148 char terminal[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000149 struct init_action *next;
150 int action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000151};
Erik Andersen7dc16072000-01-04 01:10:25 +0000152
Eric Andersen0298be82002-03-05 15:12:19 +0000153/* Static variables */
154static struct init_action *init_action_list = NULL;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000155static char console[CONSOLE_BUFF_SIZE] = _PATH_CONSOLE;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000156
Eric Andersene7078062002-07-29 08:00:16 +0000157#ifndef CONFIG_SYSLOGD
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000158static char *log = VC_5;
Eric Andersene7078062002-07-29 08:00:16 +0000159#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000160static sig_atomic_t got_cont = 0;
161static const int LOG = 0x1;
162static const int CONSOLE = 0x2;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000163
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000164#if defined CONFIG_FEATURE_EXTRA_QUIET
Eric Andersen0298be82002-03-05 15:12:19 +0000165static const int MAYBE_CONSOLE = 0x0;
166#else
167#define MAYBE_CONSOLE CONSOLE
168#endif
169#ifndef RB_HALT_SYSTEM
170static const int RB_HALT_SYSTEM = 0xcdef0123;
171static const int RB_ENABLE_CAD = 0x89abcdef;
172static const int RB_DISABLE_CAD = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000173
Eric Andersen0298be82002-03-05 15:12:19 +0000174#define RB_POWER_OFF 0x4321fedc
175static const int RB_AUTOBOOT = 0x01234567;
176#endif
Erik Andersen42094cd2000-03-20 21:34:52 +0000177
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000178static const char * const environment[] = {
179 "HOME=/",
180 "PATH=" _PATH_STDPATH,
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000181 "SHELL=/bin/sh",
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000182 "USER=root",
183 NULL
184};
185
Eric Andersen0298be82002-03-05 15:12:19 +0000186/* Function prototypes */
187static void delete_init_action(struct init_action *a);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000188static int waitfor(const struct init_action *a);
Eric Andersend5a27802003-07-05 08:39:47 +0000189static void halt_signal(int sig);
Eric Andersen0298be82002-03-05 15:12:19 +0000190
Eric Andersen0460ff21999-10-25 23:32:44 +0000191
Eric Andersen74400cc2001-10-18 04:11:39 +0000192static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000193{
194 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000195 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000196}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000197
Erik Andersen42094cd2000-03-20 21:34:52 +0000198/* Print a message to the specified device.
199 * Device may be bitwise-or'd from LOG | CONSOLE */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000200#ifndef DEBUG_INIT
201static inline void messageD(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000202{
203}
204#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000205#define messageD message
Eric Andersenfedce062001-11-17 07:27:14 +0000206#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000207static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000208 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000209static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000210{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000211 va_list arguments;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000212 int l;
Eric Andersen22237012003-01-23 07:08:26 +0000213 char msg[1024];
214#ifndef CONFIG_SYSLOGD
215 static int log_fd = -1;
216#endif
Eric Andersen4c781471999-11-26 08:12:56 +0000217
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000218 msg[0] = '\r';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000219 va_start(arguments, fmt);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000220 l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments) + 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000221 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000222
223#ifdef CONFIG_SYSLOGD
224 /* Log the message to syslogd */
225 if (device & LOG) {
226 /* don`t out "\r\n" */
227 syslog_msg(LOG_DAEMON, LOG_INFO, msg + 1);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000228 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000229
230 msg[l++] = '\n';
231 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000232#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000233
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000234 msg[l++] = '\n';
235 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000236 /* Take full control of the log tty, and never close it.
237 * It's mine, all mine! Muhahahaha! */
238 if (log_fd < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000239 if ((log_fd = device_open(log, O_RDWR | O_NDELAY | O_NOCTTY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000240 log_fd = -2;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000241 bb_error_msg("Bummer, can't write to log on %s!", log);
Erik Andersene132f4b2000-02-09 04:16:43 +0000242 device = CONSOLE;
Eric Andersen6a979902002-09-30 20:08:53 +0000243 } else {
244 fcntl(log_fd, F_SETFD, FD_CLOEXEC);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000245 }
246 }
247 if ((device & LOG) && (log_fd >= 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000248 bb_full_write(log_fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000249 }
Eric Andersen4c781471999-11-26 08:12:56 +0000250#endif
251
Erik Andersene49d5ec2000-02-08 19:58:47 +0000252 if (device & CONSOLE) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000253 int fd = device_open(_PATH_CONSOLE,
254 O_WRONLY | O_NOCTTY | O_NDELAY);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000255 /* Always send console messages to /dev/console so people will see them. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000256 if (fd >= 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000257 bb_full_write(fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 close(fd);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000259#ifdef DEBUG_INIT
260 /* all descriptors may be closed */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000261 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000262 bb_error_msg("Bummer, can't print: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263 va_start(arguments, fmt);
264 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000265 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000266#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000267 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000268 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000269}
270
Eric Andersen0460ff21999-10-25 23:32:44 +0000271/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000272static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000273{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000275
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000277
Erik Andersene49d5ec2000-02-08 19:58:47 +0000278 /* set control chars */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000279 tty.c_cc[VINTR] = 3; /* C-c */
280 tty.c_cc[VQUIT] = 28; /* C-\ */
281 tty.c_cc[VERASE] = 127; /* C-? */
282 tty.c_cc[VKILL] = 21; /* C-u */
283 tty.c_cc[VEOF] = 4; /* C-d */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000284 tty.c_cc[VSTART] = 17; /* C-q */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000285 tty.c_cc[VSTOP] = 19; /* C-s */
286 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000287
Erik Andersene49d5ec2000-02-08 19:58:47 +0000288 /* use line dicipline 0 */
289 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000290
Erik Andersene49d5ec2000-02-08 19:58:47 +0000291 /* Make it be sane */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000292 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
293 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
Eric Andersend8862922001-04-23 15:14:11 +0000294
Eric Andersen08b10341999-11-19 02:38:58 +0000295
Erik Andersene49d5ec2000-02-08 19:58:47 +0000296 /* input modes */
297 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000298
Erik Andersene49d5ec2000-02-08 19:58:47 +0000299 /* output modes */
300 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000301
Erik Andersene49d5ec2000-02-08 19:58:47 +0000302 /* local modes */
303 tty.c_lflag =
304 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000305
Erik Andersene49d5ec2000-02-08 19:58:47 +0000306 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000307}
308
Eric Andersenbc5941a2000-12-06 23:17:37 +0000309/* How much memory does this machine have?
310 Units are kBytes to avoid overflow on 4GB machines */
Glenn L McGrathce6482e2003-08-26 02:14:58 +0000311static unsigned int check_free_memory(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000312{
Erik Andersend07ee462000-02-21 21:26:32 +0000313 struct sysinfo info;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000314 unsigned int result, u, s = 10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000315
Erik Andersend07ee462000-02-21 21:26:32 +0000316 if (sysinfo(&info) != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000317 bb_perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000318 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000319 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000320
321 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
322 * Kernels 2.4.0 return info.mem_unit in bytes. */
323 u = info.mem_unit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000324 if (u == 0)
325 u = 1;
326 while ((u & 1) == 0 && s > 0) {
327 u >>= 1;
328 s--;
329 }
330 result = (info.totalram >> s) + (info.totalswap >> s);
Glenn L McGrathce6482e2003-08-26 02:14:58 +0000331 if ((unsigned long long) (result * u) > UINT_MAX) {
332 return(UINT_MAX);
333 } else {
334 return(result * u);
335 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000336}
337
Eric Andersen74400cc2001-10-18 04:11:39 +0000338static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000339{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000340 int fd;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000341 int tried = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000342 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000343 struct serial_struct sr;
344 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000345
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000346 if ((s = getenv("CONSOLE")) != NULL || (s = getenv("console")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000347 safe_strncpy(console, s, sizeof(console));
Eric Andersenfbb39c81999-11-08 17:00:52 +0000348#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000349 /* sparc kernel supports console=tty[ab] parameter which is also
350 * passed to init, so catch it here */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000351 /* remap tty[ab] to /dev/ttyS[01] */
352 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000353 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000354 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000355 safe_strncpy(console, SC_1, sizeof(console));
Eric Andersen219d6f51999-11-02 19:43:01 +0000356#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000357 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000358 /* 2.2 kernels: identify the real console backend and try to use it */
359 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
360 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000361 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000362 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
363 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000364 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000365 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000366 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000367 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000368 }
Eric Andersen07e52971999-11-07 07:38:08 +0000369 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000370
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000371 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0 && tried < 2) {
372 /* Can't open selected console -- try
373 logical system console and VT_MASTER */
374 safe_strncpy(console, (tried == 0 ? _PATH_CONSOLE : CURRENT_VC),
375 sizeof(console));
376 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000377 }
378 if (fd < 0) {
379 /* Perhaps we should panic here? */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000380#ifndef CONFIG_SYSLOGD
381 log =
382#endif
Matt Kraai18447702001-05-18 21:24:58 +0000383 safe_strncpy(console, "/dev/null", sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000384 } else {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000385 s = getenv("TERM");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000386 /* check for serial console */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000387 if (ioctl(fd, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000388 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000389 * if TERM is set to linux (the default) */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000390 if (s == NULL || strcmp(s, "linux") == 0)
391 putenv("TERM=vt102");
392#ifndef CONFIG_SYSLOGD
393 log = console;
394#endif
395 } else {
396 if (s == NULL)
397 putenv("TERM=linux");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000398 }
399 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000400 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000401 messageD(LOG, "console=%s", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000402}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000403
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000404static void fixup_argv(int argc, char **argv, char *new_argv0)
405{
406 int len;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000407
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000408 /* Fix up argv[0] to be certain we claim to be init */
409 len = strlen(argv[0]);
410 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000411 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000412
413 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
414 len = 1;
415 while (argc > len) {
416 memset(argv[len], 0, strlen(argv[len]));
417 len++;
418 }
419}
420
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000421static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000422{
423 struct stat sb;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000424 int i, junk;
Eric Andersen0298be82002-03-05 15:12:19 +0000425 pid_t pid, pgrp, tmp_pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000426 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000427 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000428 sigset_t nmask, omask;
Eric Andersen0298be82002-03-05 15:12:19 +0000429 static const char press_enter[] =
430#ifdef CUSTOMIZED_BANNER
431#include CUSTOMIZED_BANNER
432#endif
433 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000434
Eric Andersen0298be82002-03-05 15:12:19 +0000435 /* Block sigchild while forking. */
436 sigemptyset(&nmask);
437 sigaddset(&nmask, SIGCHLD);
438 sigprocmask(SIG_BLOCK, &nmask, &omask);
439
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000440 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000441 /* Clean up */
442 close(0);
443 close(1);
444 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000445 sigprocmask(SIG_SETMASK, &omask, NULL);
446
Eric Andersen0298be82002-03-05 15:12:19 +0000447 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000448 signal(SIGUSR1, SIG_DFL);
449 signal(SIGUSR2, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000450 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000451 signal(SIGTERM, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000452 signal(SIGHUP, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000453 signal(SIGCONT, SIG_DFL);
454 signal(SIGSTOP, SIG_DFL);
455 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000456
Eric Andersen599e3ce2002-07-03 11:08:10 +0000457 /* Create a new session and make ourself the process
Eric Andersene8a90fb2002-10-12 04:05:48 +0000458 * group leader */
459 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000460
Eric Andersen0298be82002-03-05 15:12:19 +0000461 /* Open the new terminal device */
Eric Andersene8a90fb2002-10-12 04:05:48 +0000462 if ((device_open(a->terminal, O_RDWR)) < 0) {
Eric Andersen0298be82002-03-05 15:12:19 +0000463 if (stat(a->terminal, &sb) != 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000464 message(LOG | CONSOLE, "device '%s' does not exist.",
Eric Andersen0298be82002-03-05 15:12:19 +0000465 a->terminal);
466 _exit(1);
Eric Andersen53f50612001-03-14 09:01:11 +0000467 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000468 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
Eric Andersen0298be82002-03-05 15:12:19 +0000469 _exit(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000470 }
Eric Andersen599e3ce2002-07-03 11:08:10 +0000471
Eric Andersen0298be82002-03-05 15:12:19 +0000472 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000473 set_term(0);
Eric Andersen0826b6b2002-07-03 23:50:16 +0000474 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000475 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000476 dup(0);
477 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000478
Eric Andersen599e3ce2002-07-03 11:08:10 +0000479 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000480 * supplied terminal to be the controlling tty. */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000481 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000482
483 /* Now fork off another process to just hang around */
484 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000485 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000486 _exit(1);
487 }
488
489 if (pid > 0) {
490
491 /* We are the parent -- wait till the child is done */
492 signal(SIGINT, SIG_IGN);
493 signal(SIGTSTP, SIG_IGN);
494 signal(SIGQUIT, SIG_IGN);
495 signal(SIGCHLD, SIG_DFL);
496
497 /* Wait for child to exit */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000498 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid);
Eric Andersen0298be82002-03-05 15:12:19 +0000499
500 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000501 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000502 if (pgrp != getpid())
503 _exit(0);
504
505 /* Use a temporary process to steal the controlling tty. */
506 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000507 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000508 _exit(1);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000509 }
Eric Andersen0298be82002-03-05 15:12:19 +0000510 if (pid == 0) {
511 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000512 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000513 _exit(0);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000514 }
515 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000516 if (tmp_pid < 0 && errno == ECHILD)
517 break;
518 }
519 _exit(0);
520 }
521
522 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000523 }
524
Erik Andersene132f4b2000-02-09 04:16:43 +0000525 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000526 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000527 cmd[0] = (char *)DEFAULT_SHELL;
Erik Andersene132f4b2000-02-09 04:16:43 +0000528 cmd[1] = "-c";
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000529 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000530 cmd[3] = NULL;
531 } else {
532 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000533 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000534 s = buf;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000535 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000536 if (*tmpCmd != '\0') {
537 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000538 i++;
539 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000540 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000541 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000542 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000543
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000544 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000545
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000546 /*
547 Interactive shells want to see a dash in argv[0]. This
548 typically is handled by login, argv will be setup this
549 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000550 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000551 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000552
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000553 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000554
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000555 /* skip over the dash */
556 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000557
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000558 /* find the last component in the command pathname */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000559 s = bb_get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000560
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000561 /* make a new argv[0] */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000562 if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000563 message(LOG | CONSOLE, bb_msg_memory_exhausted);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000564 cmd[0] = cmdpath;
565 } else {
566 cmd[0][0] = '-';
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000567 strcpy(cmd[0] + 1, s);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000568 }
569 }
570
Eric Andersen0298be82002-03-05 15:12:19 +0000571 if (a->action & ASKFIRST) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000572 char c;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000573 /*
574 * Save memory by not exec-ing anything large (like a shell)
575 * before the user wants it. This is critical if swap is not
576 * enabled and the system has low memory. Generally this will
577 * be run on the second virtual console, and the first will
578 * be allowed to start a shell or whatever an init script
579 * specifies.
580 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000581 messageD(LOG, "Waiting for enter to start '%s'"
582 "(pid %d, terminal %s)\n",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000583 cmdpath, getpid(), a->terminal);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000584 bb_full_write(1, press_enter, sizeof(press_enter) - 1);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000585 while(read(0, &c, 1) == 1 && c != '\n')
586 ;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000587 }
588
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000589 /* Log the process name and args */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000590 message(LOG, "Starting pid %d, console %s: '%s'",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000591 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000592
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000593#if defined CONFIG_FEATURE_INIT_COREDUMPS
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000594 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000595 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000596
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000597 limit.rlim_cur = RLIM_INFINITY;
598 limit.rlim_max = RLIM_INFINITY;
599 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000600 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000601#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000602
Erik Andersene49d5ec2000-02-08 19:58:47 +0000603 /* Now run it. The new program will take over this PID,
604 * so nothing further in init.c should be run. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000605 execv(cmdpath, cmd);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000606
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000607 /* We're still here? Some error happened. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000608 message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath);
Eric Andersen0298be82002-03-05 15:12:19 +0000609 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000610 }
Eric Andersen0298be82002-03-05 15:12:19 +0000611 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000612 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000613}
614
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000615static int waitfor(const struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000616{
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000617 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000618 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000619
Eric Andersen0298be82002-03-05 15:12:19 +0000620 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000621 while (1) {
622 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000623 if (wpid > 0 && wpid != pid) {
624 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000625 }
626 if (wpid == pid)
627 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000628 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000629 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000630}
631
Eric Andersen0298be82002-03-05 15:12:19 +0000632/* Run all commands of a particular type */
633static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000634{
Eric Andersen0298be82002-03-05 15:12:19 +0000635 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000636
Eric Andersen0298be82002-03-05 15:12:19 +0000637 for (a = init_action_list; a; a = tmp) {
638 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000639 if (a->action == action) {
Eric Andersen59560282002-10-22 11:45:20 +0000640 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000641 waitfor(a);
642 delete_init_action(a);
643 } else if (a->action & ONCE) {
644 run(a);
645 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000646 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000647 /* Only run stuff with pid==0. If they have
648 * a pid, that means it is still running */
649 if (a->pid == 0) {
650 a->pid = run(a);
651 }
652 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000653 }
654 }
655}
656
Erik Andersen7dc16072000-01-04 01:10:25 +0000657#ifndef DEBUG_INIT
Eric Andersen2c1de612003-04-24 11:41:28 +0000658static void init_reboot(unsigned long magic)
659{
660 pid_t pid;
661 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersen3c8064f2003-07-05 08:29:01 +0000662 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000663 * the init process is killed.... */
664 if ((pid = fork()) == 0) {
Eric Andersen2c1de612003-04-24 11:41:28 +0000665 reboot(magic);
Eric Andersen2c1de612003-04-24 11:41:28 +0000666 _exit(0);
667 }
668 waitpid (pid, NULL, 0);
669}
670
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000671static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000672{
Eric Andersen813d88c2001-10-28 22:49:48 +0000673 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000674
Eric Andersena9cc8962002-09-16 06:49:06 +0000675 /* run everything to be run at "shutdown". This is done _prior_
676 * to killing everything, in case people wish to use scripts to
677 * shut things down gracefully... */
678 run_actions(SHUTDOWN);
679
Eric Andersen72f9a422001-10-28 05:12:20 +0000680 /* first disable all our signals */
681 sigemptyset(&block_signals);
682 sigaddset(&block_signals, SIGHUP);
683 sigaddset(&block_signals, SIGCHLD);
684 sigaddset(&block_signals, SIGUSR1);
685 sigaddset(&block_signals, SIGUSR2);
686 sigaddset(&block_signals, SIGINT);
687 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000688 sigaddset(&block_signals, SIGCONT);
689 sigaddset(&block_signals, SIGSTOP);
690 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000691 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000692
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000694 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000695
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000696 message(CONSOLE | LOG, "The system is going down NOW !!");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000697 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000698
699 /* Send signals to every process _except_ pid 1 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000700 message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000701 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000702 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000703 sync();
704
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000705 message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000706 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000707 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000708
Erik Andersene49d5ec2000-02-08 19:58:47 +0000709 sync();
Eric Andersencc8ed391999-10-05 16:24:54 +0000710}
711
Eric Andersen730f8262001-12-17 23:13:08 +0000712static void exec_signal(int sig)
713{
Eric Andersen0298be82002-03-05 15:12:19 +0000714 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000715 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000716
Eric Andersen0298be82002-03-05 15:12:19 +0000717 for (a = init_action_list; a; a = tmp) {
718 tmp = a->next;
719 if (a->action & RESTART) {
Eric Andersend5a27802003-07-05 08:39:47 +0000720 struct stat sb;
721
Eric Andersen730f8262001-12-17 23:13:08 +0000722 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000723
724 /* unblock all signals, blocked in shutdown_system() */
725 sigemptyset(&unblock_signals);
726 sigaddset(&unblock_signals, SIGHUP);
727 sigaddset(&unblock_signals, SIGCHLD);
728 sigaddset(&unblock_signals, SIGUSR1);
729 sigaddset(&unblock_signals, SIGUSR2);
730 sigaddset(&unblock_signals, SIGINT);
731 sigaddset(&unblock_signals, SIGTERM);
732 sigaddset(&unblock_signals, SIGCONT);
733 sigaddset(&unblock_signals, SIGSTOP);
734 sigaddset(&unblock_signals, SIGTSTP);
735 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
736
Eric Andersen9cdef5d2003-07-29 06:33:12 +0000737 /* Close whatever files are open. */
738 close(0);
739 close(1);
740 close(2);
741
Eric Andersen3c8064f2003-07-05 08:29:01 +0000742 /* Open the new terminal device */
743 if ((device_open(a->terminal, O_RDWR)) < 0) {
744 if (stat(a->terminal, &sb) != 0) {
745 message(LOG | CONSOLE, "device '%s' does not exist.", a->terminal);
746 } else {
747 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
748 }
749 halt_signal(SIGUSR1);
750 }
751
752 /* Make sure the terminal will act fairly normal for us */
753 set_term(0);
754 /* Setup stdout, stderr on the supplied terminal */
755 dup(0);
756 dup(0);
757
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000758 messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000759 execl(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000760
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000761 message(CONSOLE | LOG, "exec of '%s' failed: %m",
Eric Andersen71ae64b2002-10-10 04:20:21 +0000762 a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000763 sync();
764 sleep(2);
765 init_reboot(RB_HALT_SYSTEM);
766 loop_forever();
767 }
768 }
769}
770
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000771static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000772{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000773 shutdown_system();
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000774 message(CONSOLE | LOG,
Eric Andersenf435a912001-11-20 05:42:57 +0000775#if #cpu(s390)
776 /* Seems the s390 console is Wierd(tm). */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000777 "The system is halted. You may reboot now."
Eric Andersenf435a912001-11-20 05:42:57 +0000778#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000779 "The system is halted. Press Reset or turn off power"
Eric Andersenf435a912001-11-20 05:42:57 +0000780#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000781 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000782 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000783
Erik Andersene49d5ec2000-02-08 19:58:47 +0000784 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000785 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000786
Eric Andersenb01ed652003-06-27 17:08:15 +0000787 if (sig == SIGUSR2)
Erik Andersen4f3f7572000-04-28 00:18:56 +0000788 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000789 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000790 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000791
792 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000793}
794
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000795static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000796{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000797 shutdown_system();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000798 message(CONSOLE | LOG, "Please stand by while rebooting the system.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000799 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000800
Erik Andersene49d5ec2000-02-08 19:58:47 +0000801 /* allow time for last message to reach serial console */
802 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000803
Erik Andersen4f3f7572000-04-28 00:18:56 +0000804 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000805
806 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000807}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000808
Eric Andersenc97ec342001-04-03 18:01:51 +0000809static void ctrlaltdel_signal(int sig)
810{
811 run_actions(CTRLALTDEL);
812}
813
Eric Andersen0298be82002-03-05 15:12:19 +0000814/* The SIGSTOP & SIGTSTP handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000815static void stop_handler(int sig)
816{
Eric Andersen0298be82002-03-05 15:12:19 +0000817 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000818
819 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000820 while (!got_cont)
821 pause();
Eric Andersened8a9be2001-11-30 19:10:58 +0000822 got_cont = 0;
823 errno = saved_errno;
824}
825
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000826/* The SIGCONT handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000827static void cont_handler(int sig)
828{
829 got_cont = 1;
830}
831
Eric Andersend5868c12003-07-26 06:25:12 +0000832/* Reap any zombie processes that are reparented to init */
833static void child_handler(int sig)
834{
835 int status;
836 while ( wait3(&status, WNOHANG, NULL) > 0 );
837}
838
Erik Andersene49d5ec2000-02-08 19:58:47 +0000839#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000840
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000841static void new_init_action(int action, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000842{
Eric Andersen0298be82002-03-05 15:12:19 +0000843 struct init_action *new_action, *a;
Erik Andersen9e737252000-01-06 01:16:13 +0000844
Erik Andersene49d5ec2000-02-08 19:58:47 +0000845 if (*cons == '\0')
846 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000847
Eric Andersen3bc2b202002-07-29 06:39:58 +0000848 /* do not run entries if console device is not available */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000849 if (access(cons, R_OK | W_OK))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000850 return;
Eric Andersen0298be82002-03-05 15:12:19 +0000851 if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000852 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000853
Eric Andersen0298be82002-03-05 15:12:19 +0000854 new_action = calloc((size_t) (1), sizeof(struct init_action));
855 if (!new_action) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000856 message(LOG | CONSOLE, "Memory allocation failure");
Matt Kraai67a46402001-06-03 05:55:52 +0000857 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000858 }
Eric Andersen0298be82002-03-05 15:12:19 +0000859
860 /* Append to the end of the list */
Eric Andersen6fd0e312003-07-22 09:48:56 +0000861 for (a = init_action_list; a && a->next; a = a->next) {
862 /* don't enter action if it's already in the list */
863 if ((strcmp(a->command, command) == 0) &&
864 (strcmp(a->terminal, cons) ==0)) {
865 free(new_action);
866 return;
867 }
868 }
Eric Andersen1644db92001-09-05 20:18:15 +0000869 if (a) {
Eric Andersen0298be82002-03-05 15:12:19 +0000870 a->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000871 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000872 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000873 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000874 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000875 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000876 strcpy(new_action->terminal, cons);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000877#if 0 /* calloc zeroed always */
Eric Andersen0298be82002-03-05 15:12:19 +0000878 new_action->pid = 0;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000879#endif
880 messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
881 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000882}
883
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000884static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000885{
Eric Andersen0298be82002-03-05 15:12:19 +0000886 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000887
Eric Andersen0298be82002-03-05 15:12:19 +0000888 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000889 if (a == action) {
890 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000891 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000892 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000893 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000894 }
895 free(a);
896 break;
897 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000898 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000899}
900
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000901/* Make sure there is enough memory to do something useful. *
902 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
903static void check_memory(void)
904{
905 struct stat statBuf;
906
907 if (check_free_memory() > 1000)
908 return;
909
910#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
911 if (stat("/etc/fstab", &statBuf) == 0) {
912 /* swapon -a requires /proc typically */
913 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
914 /* Try to turn on swap */
915 new_init_action(SYSINIT, "/sbin/swapon -a", "");
916 run_actions(SYSINIT); /* wait and removing */
917 if (check_free_memory() < 1000)
918 goto goodnight;
919 } else
920 goto goodnight;
921 return;
922#endif
923
924 goodnight:
925 message(CONSOLE, "Sorry, your computer does not have enough memory.");
926 loop_forever();
927}
928
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000929/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000930 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +0000931 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000932 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
Erik Andersen812d4662000-01-07 18:30:40 +0000933 * _is_ defined, but /etc/inittab is missing, this
934 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000935 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000936static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000937{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000938#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000939 FILE *file;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000940 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
941 char tmpConsole[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000942 char *id, *runlev, *action, *command, *eol;
943 const struct init_action_type *a = actions;
Erik Andersen7dc16072000-01-04 01:10:25 +0000944
945
Erik Andersene49d5ec2000-02-08 19:58:47 +0000946 file = fopen(INITTAB, "r");
947 if (file == NULL) {
948 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000949#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000950 /* Reboot on Ctrl-Alt-Del */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000951 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000952 /* Umount all filesystems on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000953 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
Eric Andersen72f9a422001-10-28 05:12:20 +0000954#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen1644db92001-09-05 20:18:15 +0000955 /* Swapoff on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000956 new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000957#endif
Eric Andersen730f8262001-12-17 23:13:08 +0000958 /* Prepare to restart init when a HUP is received */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000959 new_init_action(RESTART, "/sbin/init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000960 /* Askfirst shell on tty1-4 */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000961 new_init_action(ASKFIRST, bb_default_login_shell, "");
962 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
963 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
964 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000965 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000966 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000967
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000969#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000970 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000971
Eric Andersen0826b6b2002-07-03 23:50:16 +0000972 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Eric Andersenb5966362000-05-31 20:04:38 +0000973 /* Skip leading spaces */
974 for (id = buf; *id == ' ' || *id == '\t'; id++);
975
976 /* Skip the line if it's a comment */
977 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000978 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000979
Erik Andersene49d5ec2000-02-08 19:58:47 +0000980 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000981 eol = strrchr(id, '\n');
982 if (eol != NULL)
983 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000984
Erik Andersene49d5ec2000-02-08 19:58:47 +0000985 /* Keep a copy around for posterity's sake (and error msgs) */
986 strcpy(lineAsRead, buf);
987
Eric Andersenb5966362000-05-31 20:04:38 +0000988 /* Separate the ID field from the runlevels */
989 runlev = strchr(id, ':');
990 if (runlev == NULL || *(runlev + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000991 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000992 continue;
993 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000994 *runlev = '\0';
995 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000996 }
997
Eric Andersenb5966362000-05-31 20:04:38 +0000998 /* Separate the runlevels from the action */
999 action = strchr(runlev, ':');
1000 if (action == NULL || *(action + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001001 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001002 continue;
1003 } else {
Eric Andersenb5966362000-05-31 20:04:38 +00001004 *action = '\0';
1005 ++action;
1006 }
1007
Eric Andersen0298be82002-03-05 15:12:19 +00001008 /* Separate the action from the command */
1009 command = strchr(action, ':');
1010 if (command == NULL || *(command + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001011 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +00001012 continue;
1013 } else {
Eric Andersen0298be82002-03-05 15:12:19 +00001014 *command = '\0';
1015 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001016 }
1017
1018 /* Ok, now process it */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001019 for (a = actions; a->name != 0; a++) {
Eric Andersenb5966362000-05-31 20:04:38 +00001020 if (strcmp(a->name, action) == 0) {
1021 if (*id != '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001022 if(strncmp(id, "/dev/", 5) == 0)
1023 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001024 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001025 safe_strncpy(tmpConsole + 5, id,
1026 CONSOLE_BUFF_SIZE - 5);
Eric Andersenb5966362000-05-31 20:04:38 +00001027 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001028 }
Eric Andersen0298be82002-03-05 15:12:19 +00001029 new_init_action(a->action, command, id);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001030 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001031 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001032 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001033 if (a->name == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001034 /* Choke on an unknown action */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001035 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001036 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001037 }
Eric Andersend8636ca2002-05-15 22:19:09 +00001038 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001039 return;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001040#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +00001041}
1042
Eric Andersen6fd0e312003-07-22 09:48:56 +00001043static void reload_signal(int sig)
1044{
1045 message(LOG, "Reloading /etc/inittab");
1046 parse_inittab();
1047 run_actions(RESPAWN);
1048 return;
1049}
1050
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001051extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001052{
Eric Andersen0298be82002-03-05 15:12:19 +00001053 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001054 pid_t wpid;
1055 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001056
Eric Andersen730f8262001-12-17 23:13:08 +00001057 if (argc > 1 && !strcmp(argv[1], "-q")) {
Eric Andersenb01ed652003-06-27 17:08:15 +00001058 return kill_init(SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001059 }
Eric Andersend73dc5b1999-11-10 23:13:02 +00001060#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001061 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1062 if (getpid() != 1
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001063#ifdef CONFIG_FEATURE_INITRD
Manuel Novoa III cad53642003-03-19 09:13:01 +00001064 && strstr(bb_applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +00001065#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001066 ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001067 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001068 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001069 /* Set up sig handlers -- be sure to
1070 * clear all of these in run() */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001071 signal(SIGHUP, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001072 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001073 signal(SIGUSR2, halt_signal);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001074 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001075 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001076 signal(SIGCONT, cont_handler);
1077 signal(SIGSTOP, stop_handler);
1078 signal(SIGTSTP, stop_handler);
Eric Andersend5868c12003-07-26 06:25:12 +00001079 signal(SIGCHLD, child_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001080
Erik Andersene49d5ec2000-02-08 19:58:47 +00001081 /* Turn off rebooting via CTL-ALT-DEL -- we get a
1082 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001083 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001084#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001085
Eric Andersen599e3ce2002-07-03 11:08:10 +00001086 /* Figure out where the default console should be */
1087 console_init();
1088
Erik Andersene49d5ec2000-02-08 19:58:47 +00001089 /* Close whatever files are open, and reset the console. */
1090 close(0);
1091 close(1);
1092 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001093
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001094 if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1095 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001096 close(0);
1097 }
1098
Erik Andersen983b51b2000-04-04 18:14:25 +00001099 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001100 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001101 {
1102 const char * const *e;
1103 /* Make sure environs is set to something sane */
1104 for(e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001105 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001106 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001107 /* Hello world */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001108 message(MAYBE_CONSOLE | LOG, "init started: %s", bb_msg_full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001109
Erik Andersene49d5ec2000-02-08 19:58:47 +00001110 /* Make sure there is enough memory to do something useful. */
1111 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +00001112
Erik Andersene49d5ec2000-02-08 19:58:47 +00001113 /* Check if we are supposed to be in single user mode */
1114 if (argc > 1 && (!strcmp(argv[1], "single") ||
1115 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001116 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +00001117 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001118 } else {
1119 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001120
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001121 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001122 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +00001123 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001124 * of "askfirst" shells */
1125 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001126 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001127
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001128 /* Make the command line just say "init" -- thats all, nothing else */
1129 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001130
Erik Andersene49d5ec2000-02-08 19:58:47 +00001131 /* Now run everything that needs to be run */
1132
1133 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001134 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001135
Erik Andersene49d5ec2000-02-08 19:58:47 +00001136 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001137 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001138
Erik Andersene49d5ec2000-02-08 19:58:47 +00001139 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001140 run_actions(ONCE);
1141
Erik Andersene49d5ec2000-02-08 19:58:47 +00001142 /* If there is nothing else to do, stop */
Eric Andersen0298be82002-03-05 15:12:19 +00001143 if (init_action_list == NULL) {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001144 message(LOG | CONSOLE,
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001145 "No more tasks for init -- sleeping forever.");
Matt Kraai67a46402001-06-03 05:55:52 +00001146 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001147 }
1148
Eric Andersen6fd0e312003-07-22 09:48:56 +00001149 /* Redefine SIGHUP to reread /etc/inittab */
1150 signal(SIGHUP, reload_signal);
1151
Erik Andersene49d5ec2000-02-08 19:58:47 +00001152 /* Now run the looping stuff for the rest of forever */
1153 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001154 /* run the respawn stuff */
1155 run_actions(RESPAWN);
1156
1157 /* run the askfirst stuff */
1158 run_actions(ASKFIRST);
1159
1160 /* Don't consume all CPU time -- sleep a bit */
1161 sleep(1);
1162
Erik Andersene49d5ec2000-02-08 19:58:47 +00001163 /* Wait for a child process to exit */
1164 wpid = wait(&status);
Eric Andersencf1fee02002-12-17 09:48:16 +00001165 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001166 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001167 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001168 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001169 /* Set the pid to 0 so that the process gets
1170 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001171 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001172 message(LOG, "Process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001173 "Scheduling it for restart.",
1174 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001175 }
1176 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001177 /* see if anyone else is waiting to be reaped */
1178 wpid = waitpid (-1, &status, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001179 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001180 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001181}
Erik Andersen029011b2000-03-04 21:19:32 +00001182
1183/*
1184Local Variables:
1185c-file-style: "linux"
1186c-basic-offset: 4
1187tab-width: 4
1188End:
1189*/