blob: 8adff1cd2e8047ff650bdffc20758ce309aa15b1 [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 Andersenbdfd0d72001-10-24 05:00:29 +000046#ifdef CONFIG_SYSLOGD
Erik Andersen4f3f7572000-04-28 00:18:56 +000047# include <sys/syslog.h>
48#endif
Eric Andersen2c1de612003-04-24 11:41:28 +000049#if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__)
50#include <sys/reboot.h>
51#endif
52
Erik Andersen4f3f7572000-04-28 00:18:56 +000053
Eric Andersen0298be82002-03-05 15:12:19 +000054#if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_MMU__)
55#define fork vfork
56#endif
Pavel Roskin9c5fcc32000-07-17 23:45:12 +000057
Eric Andersen0826b6b2002-07-03 23:50:16 +000058#define INIT_BUFFS_SIZE 256
59
Eric Andersenbd22ed82000-07-08 18:55:24 +000060/* From <linux/vt.h> */
61struct vt_stat {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000062 unsigned short v_active; /* active vt */
63 unsigned short v_signal; /* signal to send */
64 unsigned short v_state; /* vt bitmask */
Eric Andersenbd22ed82000-07-08 18:55:24 +000065};
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000066static const int VT_GETSTATE = 0x5603; /* get global vt state info */
Eric Andersenbd22ed82000-07-08 18:55:24 +000067
68/* From <linux/serial.h> */
69struct serial_struct {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000070 int type;
71 int line;
72 int port;
73 int irq;
74 int flags;
75 int xmit_fifo_size;
76 int custom_divisor;
77 int baud_base;
78 unsigned short close_delay;
79 char reserved_char[2];
80 int hub6;
81 unsigned short closing_wait; /* time to wait before closing */
82 unsigned short closing_wait2; /* no longer used... */
83 int reserved[4];
Eric Andersenbd22ed82000-07-08 18:55:24 +000084};
85
86
Eric Andersen41492d62001-02-23 00:05:56 +000087#ifndef _PATH_STDPATH
Erik Andersen4f3f7572000-04-28 00:18:56 +000088#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
Eric Andersen41492d62001-02-23 00:05:56 +000089#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000090
Eric Andersenbdfd0d72001-10-24 05:00:29 +000091#if defined CONFIG_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000092/*
Erik Andersen183da4a2000-04-04 18:36:37 +000093 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
94 * before processes are spawned to set core file size as unlimited.
95 * This is for debugging only. Don't use this is production, unless
96 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +000097 */
98#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
99#include <sys/resource.h>
100#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +0000101#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000102
Erik Andersen4d1d0111999-12-17 18:44:15 +0000103#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +0000104
Eric Andersenb6b519b2001-04-09 23:52:18 +0000105#if __GNU_LIBRARY__ > 5
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000106#include <sys/kdaemon.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +0000107#else
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000108extern int bdflush(int func, long int data);
Eric Andersenb6b519b2001-04-09 23:52:18 +0000109#endif
Erik Andersen4f3f7572000-04-28 00:18:56 +0000110
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000111#define SHELL "/bin/sh" /* Default shell */
112#define LOGIN_SHELL "-" SHELL /* Default login shell */
113#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000114#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000115#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000116#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000117
Eric Andersen41492d62001-02-23 00:05:56 +0000118#define MAXENV 16 /* Number of env. vars */
Erik Andersen7dc16072000-01-04 01:10:25 +0000119
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000120#define CONSOLE_BUFF_SIZE 32
121
Erik Andersen7dc16072000-01-04 01:10:25 +0000122/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +0000123#define SYSINIT 0x001
124#define RESPAWN 0x002
125#define ASKFIRST 0x004
126#define WAIT 0x008
127#define ONCE 0x010
128#define CTRLALTDEL 0x020
129#define SHUTDOWN 0x040
130#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +0000131
Erik Andersen42094cd2000-03-20 21:34:52 +0000132/* A mapping between "inittab" action name strings and action type codes. */
Eric Andersen0298be82002-03-05 15:12:19 +0000133struct init_action_type {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134 const char *name;
Eric Andersen0298be82002-03-05 15:12:19 +0000135 int action;
136};
Erik Andersen7dc16072000-01-04 01:10:25 +0000137
Eric Andersen0298be82002-03-05 15:12:19 +0000138static const struct init_action_type actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000139 {"sysinit", SYSINIT},
140 {"respawn", RESPAWN},
141 {"askfirst", ASKFIRST},
142 {"wait", WAIT},
143 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000144 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000145 {"shutdown", SHUTDOWN},
Eric Andersen730f8262001-12-17 23:13:08 +0000146 {"restart", RESTART},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000147 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000148};
149
Eric Andersen0298be82002-03-05 15:12:19 +0000150/* Set up a linked list of init_actions, to be read from inittab */
151struct init_action {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000153 char command[INIT_BUFFS_SIZE];
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000154 char terminal[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000155 struct init_action *next;
156 int action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000157};
Erik Andersen7dc16072000-01-04 01:10:25 +0000158
Eric Andersen0298be82002-03-05 15:12:19 +0000159/* Static variables */
160static struct init_action *init_action_list = NULL;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000161static int kernelVersion;
162static char console[CONSOLE_BUFF_SIZE] = _PATH_CONSOLE;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000163
Eric Andersene7078062002-07-29 08:00:16 +0000164#ifndef CONFIG_SYSLOGD
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000165static char *log = VC_5;
Eric Andersene7078062002-07-29 08:00:16 +0000166#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000167static sig_atomic_t got_cont = 0;
168static const int LOG = 0x1;
169static const int CONSOLE = 0x2;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000170
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000171#if defined CONFIG_FEATURE_EXTRA_QUIET
Eric Andersen0298be82002-03-05 15:12:19 +0000172static const int MAYBE_CONSOLE = 0x0;
173#else
174#define MAYBE_CONSOLE CONSOLE
175#endif
176#ifndef RB_HALT_SYSTEM
177static const int RB_HALT_SYSTEM = 0xcdef0123;
178static const int RB_ENABLE_CAD = 0x89abcdef;
179static const int RB_DISABLE_CAD = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000180
Eric Andersen0298be82002-03-05 15:12:19 +0000181#define RB_POWER_OFF 0x4321fedc
182static const int RB_AUTOBOOT = 0x01234567;
183#endif
Erik Andersen42094cd2000-03-20 21:34:52 +0000184
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000185static const char * const environment[] = {
186 "HOME=/",
187 "PATH=" _PATH_STDPATH,
188 "SHELL=" SHELL,
189 "USER=root",
190 NULL
191};
192
Eric Andersen0298be82002-03-05 15:12:19 +0000193/* Function prototypes */
194static void delete_init_action(struct init_action *a);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000195static int waitfor(const struct init_action *a);
Eric Andersen0298be82002-03-05 15:12:19 +0000196
Eric Andersen0460ff21999-10-25 23:32:44 +0000197
Eric Andersen74400cc2001-10-18 04:11:39 +0000198static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000199{
200 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000201 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000202}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000203
Erik Andersen42094cd2000-03-20 21:34:52 +0000204/* Print a message to the specified device.
205 * Device may be bitwise-or'd from LOG | CONSOLE */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000206#ifndef DEBUG_INIT
207static inline void messageD(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000208{
209}
210#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000211#define messageD message
Eric Andersenfedce062001-11-17 07:27:14 +0000212#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000213static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000214 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000215static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000216{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000217 va_list arguments;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000218 int l;
Eric Andersen22237012003-01-23 07:08:26 +0000219 char msg[1024];
220#ifndef CONFIG_SYSLOGD
221 static int log_fd = -1;
222#endif
Eric Andersen4c781471999-11-26 08:12:56 +0000223
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000224 msg[0] = '\r';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000225 va_start(arguments, fmt);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000226 l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments) + 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000227 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000228
229#ifdef CONFIG_SYSLOGD
230 /* Log the message to syslogd */
231 if (device & LOG) {
232 /* don`t out "\r\n" */
233 syslog_msg(LOG_DAEMON, LOG_INFO, msg + 1);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000234 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000235
236 msg[l++] = '\n';
237 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000238#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000239
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000240 msg[l++] = '\n';
241 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000242 /* Take full control of the log tty, and never close it.
243 * It's mine, all mine! Muhahahaha! */
244 if (log_fd < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000245 if ((log_fd = device_open(log, O_RDWR | O_NDELAY | O_NOCTTY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000246 log_fd = -2;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000247 bb_error_msg("Bummer, can't write to log on %s!", log);
Erik Andersene132f4b2000-02-09 04:16:43 +0000248 device = CONSOLE;
Eric Andersen6a979902002-09-30 20:08:53 +0000249 } else {
250 fcntl(log_fd, F_SETFD, FD_CLOEXEC);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000251 }
252 }
253 if ((device & LOG) && (log_fd >= 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000254 bb_full_write(log_fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000255 }
Eric Andersen4c781471999-11-26 08:12:56 +0000256#endif
257
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 if (device & CONSOLE) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000259 int fd = device_open(_PATH_CONSOLE,
260 O_WRONLY | O_NOCTTY | O_NDELAY);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000261 /* Always send console messages to /dev/console so people will see them. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000262 if (fd >= 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000263 bb_full_write(fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264 close(fd);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000265#ifdef DEBUG_INIT
266 /* all descriptors may be closed */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000267 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000268 bb_error_msg("Bummer, can't print: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000269 va_start(arguments, fmt);
270 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000271 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000272#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000273 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000274 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000275}
276
Eric Andersen0460ff21999-10-25 23:32:44 +0000277/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000278static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000279{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000280 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000281
Erik Andersene49d5ec2000-02-08 19:58:47 +0000282 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000283
Erik Andersene49d5ec2000-02-08 19:58:47 +0000284 /* set control chars */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000285 tty.c_cc[VINTR] = 3; /* C-c */
286 tty.c_cc[VQUIT] = 28; /* C-\ */
287 tty.c_cc[VERASE] = 127; /* C-? */
288 tty.c_cc[VKILL] = 21; /* C-u */
289 tty.c_cc[VEOF] = 4; /* C-d */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000290 tty.c_cc[VSTART] = 17; /* C-q */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000291 tty.c_cc[VSTOP] = 19; /* C-s */
292 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000293
Erik Andersene49d5ec2000-02-08 19:58:47 +0000294 /* use line dicipline 0 */
295 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000296
Erik Andersene49d5ec2000-02-08 19:58:47 +0000297 /* Make it be sane */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000298 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
299 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
Eric Andersend8862922001-04-23 15:14:11 +0000300
Eric Andersen08b10341999-11-19 02:38:58 +0000301
Erik Andersene49d5ec2000-02-08 19:58:47 +0000302 /* input modes */
303 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000304
Erik Andersene49d5ec2000-02-08 19:58:47 +0000305 /* output modes */
306 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000307
Erik Andersene49d5ec2000-02-08 19:58:47 +0000308 /* local modes */
309 tty.c_lflag =
310 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000311
Erik Andersene49d5ec2000-02-08 19:58:47 +0000312 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000313}
314
Eric Andersenbc5941a2000-12-06 23:17:37 +0000315/* How much memory does this machine have?
316 Units are kBytes to avoid overflow on 4GB machines */
Eric Andersen74400cc2001-10-18 04:11:39 +0000317static int check_free_memory(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000318{
Erik Andersend07ee462000-02-21 21:26:32 +0000319 struct sysinfo info;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000320 unsigned int result, u, s = 10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000321
Erik Andersend07ee462000-02-21 21:26:32 +0000322 if (sysinfo(&info) != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000323 bb_perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000324 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000325 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000326
327 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
328 * Kernels 2.4.0 return info.mem_unit in bytes. */
329 u = info.mem_unit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000330 if (u == 0)
331 u = 1;
332 while ((u & 1) == 0 && s > 0) {
333 u >>= 1;
334 s--;
335 }
336 result = (info.totalram >> s) + (info.totalswap >> s);
337 result = result * u;
338 if (result < 0)
339 result = INT_MAX;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000340 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000341}
342
Eric Andersen74400cc2001-10-18 04:11:39 +0000343static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000344{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345 int fd;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000346 int tried = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000347 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000348 struct serial_struct sr;
349 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000350
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000351 if ((s = getenv("CONSOLE")) != NULL || (s = getenv("console")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000352 safe_strncpy(console, s, sizeof(console));
Eric Andersenfbb39c81999-11-08 17:00:52 +0000353#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000354 /* sparc kernel supports console=tty[ab] parameter which is also
355 * passed to init, so catch it here */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000356 /* remap tty[ab] to /dev/ttyS[01] */
357 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000358 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000359 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000360 safe_strncpy(console, SC_1, sizeof(console));
Eric Andersen219d6f51999-11-02 19:43:01 +0000361#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000362 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000363 /* 2.2 kernels: identify the real console backend and try to use it */
364 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
365 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000366 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000367 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
368 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000369 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000370 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000371 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000372 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000373 }
Eric Andersen07e52971999-11-07 07:38:08 +0000374 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000375
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000376 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0 && tried < 2) {
377 /* Can't open selected console -- try
378 logical system console and VT_MASTER */
379 safe_strncpy(console, (tried == 0 ? _PATH_CONSOLE : CURRENT_VC),
380 sizeof(console));
381 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000382 }
383 if (fd < 0) {
384 /* Perhaps we should panic here? */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000385#ifndef CONFIG_SYSLOGD
386 log =
387#endif
Matt Kraai18447702001-05-18 21:24:58 +0000388 safe_strncpy(console, "/dev/null", sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000389 } else {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000390 s = getenv("TERM");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000391 /* check for serial console */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000392 if (ioctl(fd, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000393 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000394 * if TERM is set to linux (the default) */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000395 if (s == NULL || strcmp(s, "linux") == 0)
396 putenv("TERM=vt102");
397#ifndef CONFIG_SYSLOGD
398 log = console;
399#endif
400 } else {
401 if (s == NULL)
402 putenv("TERM=linux");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000403 }
404 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000405 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000406 messageD(LOG, "console=%s", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000407}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000408
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000409static void fixup_argv(int argc, char **argv, char *new_argv0)
410{
411 int len;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000412
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000413 /* Fix up argv[0] to be certain we claim to be init */
414 len = strlen(argv[0]);
415 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000416 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000417
418 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
419 len = 1;
420 while (argc > len) {
421 memset(argv[len], 0, strlen(argv[len]));
422 len++;
423 }
424}
425
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000426static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000427{
428 struct stat sb;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000429 int i, junk;
Eric Andersen0298be82002-03-05 15:12:19 +0000430 pid_t pid, pgrp, tmp_pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000431 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000432 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000433 sigset_t nmask, omask;
Eric Andersen0298be82002-03-05 15:12:19 +0000434 static const char press_enter[] =
435#ifdef CUSTOMIZED_BANNER
436#include CUSTOMIZED_BANNER
437#endif
438 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000439
Eric Andersen0298be82002-03-05 15:12:19 +0000440 /* Block sigchild while forking. */
441 sigemptyset(&nmask);
442 sigaddset(&nmask, SIGCHLD);
443 sigprocmask(SIG_BLOCK, &nmask, &omask);
444
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000445 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000446 /* Clean up */
447 close(0);
448 close(1);
449 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000450 sigprocmask(SIG_SETMASK, &omask, NULL);
451
Eric Andersen0298be82002-03-05 15:12:19 +0000452 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000453 signal(SIGUSR1, SIG_DFL);
454 signal(SIGUSR2, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000455 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000456 signal(SIGTERM, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000457 signal(SIGHUP, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000458 signal(SIGCONT, SIG_DFL);
459 signal(SIGSTOP, SIG_DFL);
460 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000461
Eric Andersen599e3ce2002-07-03 11:08:10 +0000462 /* Create a new session and make ourself the process
Eric Andersene8a90fb2002-10-12 04:05:48 +0000463 * group leader */
464 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000465
Eric Andersen0298be82002-03-05 15:12:19 +0000466 /* Open the new terminal device */
Eric Andersene8a90fb2002-10-12 04:05:48 +0000467 if ((device_open(a->terminal, O_RDWR)) < 0) {
Eric Andersen0298be82002-03-05 15:12:19 +0000468 if (stat(a->terminal, &sb) != 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000469 message(LOG | CONSOLE, "device '%s' does not exist.",
Eric Andersen0298be82002-03-05 15:12:19 +0000470 a->terminal);
471 _exit(1);
Eric Andersen53f50612001-03-14 09:01:11 +0000472 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000473 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
Eric Andersen0298be82002-03-05 15:12:19 +0000474 _exit(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000475 }
Eric Andersen599e3ce2002-07-03 11:08:10 +0000476
Eric Andersen0298be82002-03-05 15:12:19 +0000477 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000478 set_term(0);
Eric Andersen0826b6b2002-07-03 23:50:16 +0000479 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000480 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000481 dup(0);
482 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000483
Eric Andersen599e3ce2002-07-03 11:08:10 +0000484 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000485 * supplied terminal to be the controlling tty. */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000486 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000487
488 /* Now fork off another process to just hang around */
489 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000490 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000491 _exit(1);
492 }
493
494 if (pid > 0) {
495
496 /* We are the parent -- wait till the child is done */
497 signal(SIGINT, SIG_IGN);
498 signal(SIGTSTP, SIG_IGN);
499 signal(SIGQUIT, SIG_IGN);
500 signal(SIGCHLD, SIG_DFL);
501
502 /* Wait for child to exit */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000503 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid);
Eric Andersen0298be82002-03-05 15:12:19 +0000504
505 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000506 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000507 if (pgrp != getpid())
508 _exit(0);
509
510 /* Use a temporary process to steal the controlling tty. */
511 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000512 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000513 _exit(1);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000514 }
Eric Andersen0298be82002-03-05 15:12:19 +0000515 if (pid == 0) {
516 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000517 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000518 _exit(0);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000519 }
520 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000521 if (tmp_pid < 0 && errno == ECHILD)
522 break;
523 }
524 _exit(0);
525 }
526
527 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000528 }
529
Erik Andersene132f4b2000-02-09 04:16:43 +0000530 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000531 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000532 cmd[0] = SHELL;
533 cmd[1] = "-c";
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000534 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000535 cmd[3] = NULL;
536 } else {
537 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000538 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000539 s = buf;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000540 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000541 if (*tmpCmd != '\0') {
542 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000543 i++;
544 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000545 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000546 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000547 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000548
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000549 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000550
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000551 /*
552 Interactive shells want to see a dash in argv[0]. This
553 typically is handled by login, argv will be setup this
554 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000555 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000556 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000557
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000558 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000559
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000560 /* skip over the dash */
561 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000562
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000563 /* find the last component in the command pathname */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000564 s = bb_get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000565
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000566 /* make a new argv[0] */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000567 if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000568 message(LOG | CONSOLE, bb_msg_memory_exhausted);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000569 cmd[0] = cmdpath;
570 } else {
571 cmd[0][0] = '-';
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000572 strcpy(cmd[0] + 1, s);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000573 }
574 }
575
Eric Andersen0298be82002-03-05 15:12:19 +0000576 if (a->action & ASKFIRST) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000577 char c;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000578 /*
579 * Save memory by not exec-ing anything large (like a shell)
580 * before the user wants it. This is critical if swap is not
581 * enabled and the system has low memory. Generally this will
582 * be run on the second virtual console, and the first will
583 * be allowed to start a shell or whatever an init script
584 * specifies.
585 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000586 messageD(LOG, "Waiting for enter to start '%s'"
587 "(pid %d, terminal %s)\n",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000588 cmdpath, getpid(), a->terminal);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000589 bb_full_write(1, press_enter, sizeof(press_enter) - 1);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000590 while(read(0, &c, 1) == 1 && c != '\n')
591 ;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000592 }
593
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000594 /* Log the process name and args */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000595 message(LOG, "Starting pid %d, console %s: '%s'",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000596 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000597
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000598#if defined CONFIG_FEATURE_INIT_COREDUMPS
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000599 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000600 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000601
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000602 limit.rlim_cur = RLIM_INFINITY;
603 limit.rlim_max = RLIM_INFINITY;
604 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000605 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000606#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000607
Erik Andersene49d5ec2000-02-08 19:58:47 +0000608 /* Now run it. The new program will take over this PID,
609 * so nothing further in init.c should be run. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000610 execv(cmdpath, cmd);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000611
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000612 /* We're still here? Some error happened. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000613 message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath);
Eric Andersen0298be82002-03-05 15:12:19 +0000614 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000615 }
Eric Andersen0298be82002-03-05 15:12:19 +0000616 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000617 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000618}
619
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000620static int waitfor(const struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000621{
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000622 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000623 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000624
Eric Andersen0298be82002-03-05 15:12:19 +0000625 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000626 while (1) {
627 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000628 if (wpid > 0 && wpid != pid) {
629 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000630 }
631 if (wpid == pid)
632 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000633 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000634 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000635}
636
Eric Andersen0298be82002-03-05 15:12:19 +0000637/* Run all commands of a particular type */
638static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000639{
Eric Andersen0298be82002-03-05 15:12:19 +0000640 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000641
Eric Andersen0298be82002-03-05 15:12:19 +0000642 for (a = init_action_list; a; a = tmp) {
643 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000644 if (a->action == action) {
Eric Andersen59560282002-10-22 11:45:20 +0000645 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000646 waitfor(a);
647 delete_init_action(a);
648 } else if (a->action & ONCE) {
649 run(a);
650 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000651 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000652 /* Only run stuff with pid==0. If they have
653 * a pid, that means it is still running */
654 if (a->pid == 0) {
655 a->pid = run(a);
656 }
657 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000658 }
659 }
660}
661
Erik Andersen7dc16072000-01-04 01:10:25 +0000662#ifndef DEBUG_INIT
Eric Andersen2c1de612003-04-24 11:41:28 +0000663static void init_reboot(unsigned long magic)
664{
665 pid_t pid;
666 /* We have to fork here, since the kernel calls do_exit(0) in
667 * linux/kernel/sys.c, which can cause the machint to panic when
668 * the init process is killed.... */
669 if ((pid = fork()) == 0) {
670#if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__)
671 reboot(magic);
672#else
673 reboot(0xfee1dead, 672274793, magic);
674#endif
675 _exit(0);
676 }
677 waitpid (pid, NULL, 0);
678}
679
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000680static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000681{
Eric Andersen813d88c2001-10-28 22:49:48 +0000682 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000683
Eric Andersena9cc8962002-09-16 06:49:06 +0000684 /* run everything to be run at "shutdown". This is done _prior_
685 * to killing everything, in case people wish to use scripts to
686 * shut things down gracefully... */
687 run_actions(SHUTDOWN);
688
Eric Andersen72f9a422001-10-28 05:12:20 +0000689 /* first disable all our signals */
690 sigemptyset(&block_signals);
691 sigaddset(&block_signals, SIGHUP);
692 sigaddset(&block_signals, SIGCHLD);
693 sigaddset(&block_signals, SIGUSR1);
694 sigaddset(&block_signals, SIGUSR2);
695 sigaddset(&block_signals, SIGINT);
696 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000697 sigaddset(&block_signals, SIGCONT);
698 sigaddset(&block_signals, SIGSTOP);
699 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000700 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000701
Erik Andersene49d5ec2000-02-08 19:58:47 +0000702 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000703 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000704
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000705 message(CONSOLE | LOG, "The system is going down NOW !!");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000706 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000707
708 /* Send signals to every process _except_ pid 1 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000709 message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000710 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000711 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000712 sync();
713
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000714 message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000715 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000716 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000717
Erik Andersene49d5ec2000-02-08 19:58:47 +0000718 sync();
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000719 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2, 2, 11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000720 /* bdflush, kupdate not needed for kernels >2.2.11 */
721 bdflush(1, 0);
722 sync();
723 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000724}
725
Eric Andersen730f8262001-12-17 23:13:08 +0000726static void exec_signal(int sig)
727{
Eric Andersen0298be82002-03-05 15:12:19 +0000728 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000729 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000730
Eric Andersen0298be82002-03-05 15:12:19 +0000731 for (a = init_action_list; a; a = tmp) {
732 tmp = a->next;
733 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000734 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000735
736 /* unblock all signals, blocked in shutdown_system() */
737 sigemptyset(&unblock_signals);
738 sigaddset(&unblock_signals, SIGHUP);
739 sigaddset(&unblock_signals, SIGCHLD);
740 sigaddset(&unblock_signals, SIGUSR1);
741 sigaddset(&unblock_signals, SIGUSR2);
742 sigaddset(&unblock_signals, SIGINT);
743 sigaddset(&unblock_signals, SIGTERM);
744 sigaddset(&unblock_signals, SIGCONT);
745 sigaddset(&unblock_signals, SIGSTOP);
746 sigaddset(&unblock_signals, SIGTSTP);
747 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
748
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000749 messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000750 execl(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000751
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000752 message(CONSOLE | LOG, "exec of '%s' failed: %m",
Eric Andersen71ae64b2002-10-10 04:20:21 +0000753 a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000754 sync();
755 sleep(2);
756 init_reboot(RB_HALT_SYSTEM);
757 loop_forever();
758 }
759 }
760}
761
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000762static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000763{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000764 shutdown_system();
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000765 message(CONSOLE | LOG,
Eric Andersenf435a912001-11-20 05:42:57 +0000766#if #cpu(s390)
767 /* Seems the s390 console is Wierd(tm). */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000768 "The system is halted. You may reboot now."
Eric Andersenf435a912001-11-20 05:42:57 +0000769#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000770 "The system is halted. Press Reset or turn off power"
Eric Andersenf435a912001-11-20 05:42:57 +0000771#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000772 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000773 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000774
Erik Andersene49d5ec2000-02-08 19:58:47 +0000775 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000776 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000777
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000778 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2, 2, 0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000779 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000780 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000781 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000782
783 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000784}
785
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000786static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000787{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000788 shutdown_system();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000789 message(CONSOLE | LOG, "Please stand by while rebooting the system.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000790 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000791
Erik Andersene49d5ec2000-02-08 19:58:47 +0000792 /* allow time for last message to reach serial console */
793 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000794
Erik Andersen4f3f7572000-04-28 00:18:56 +0000795 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000796
797 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000798}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000799
Eric Andersenc97ec342001-04-03 18:01:51 +0000800static void ctrlaltdel_signal(int sig)
801{
802 run_actions(CTRLALTDEL);
803}
804
Eric Andersen0298be82002-03-05 15:12:19 +0000805/* The SIGSTOP & SIGTSTP handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000806static void stop_handler(int sig)
807{
Eric Andersen0298be82002-03-05 15:12:19 +0000808 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000809
810 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000811 while (!got_cont)
812 pause();
Eric Andersened8a9be2001-11-30 19:10:58 +0000813 got_cont = 0;
814 errno = saved_errno;
815}
816
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000817/* The SIGCONT handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000818static void cont_handler(int sig)
819{
820 got_cont = 1;
821}
822
Erik Andersene49d5ec2000-02-08 19:58:47 +0000823#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000824
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000825static void new_init_action(int action, char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000826{
Eric Andersen0298be82002-03-05 15:12:19 +0000827 struct init_action *new_action, *a;
Erik Andersen9e737252000-01-06 01:16:13 +0000828
Erik Andersene49d5ec2000-02-08 19:58:47 +0000829 if (*cons == '\0')
830 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000831
Eric Andersen3bc2b202002-07-29 06:39:58 +0000832 /* do not run entries if console device is not available */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000833 if (access(cons, R_OK | W_OK))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000834 return;
Eric Andersen0298be82002-03-05 15:12:19 +0000835 if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000836 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000837
Eric Andersen0298be82002-03-05 15:12:19 +0000838 new_action = calloc((size_t) (1), sizeof(struct init_action));
839 if (!new_action) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000840 message(LOG | CONSOLE, "Memory allocation failure");
Matt Kraai67a46402001-06-03 05:55:52 +0000841 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000842 }
Eric Andersen0298be82002-03-05 15:12:19 +0000843
844 /* Append to the end of the list */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000845 for (a = init_action_list; a && a->next; a = a->next);
Eric Andersen1644db92001-09-05 20:18:15 +0000846 if (a) {
Eric Andersen0298be82002-03-05 15:12:19 +0000847 a->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000848 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000849 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000850 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000851 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000852 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000853 strcpy(new_action->terminal, cons);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000854#if 0 /* calloc zeroed always */
Eric Andersen0298be82002-03-05 15:12:19 +0000855 new_action->pid = 0;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000856#endif
857 messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
858 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000859}
860
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000861static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000862{
Eric Andersen0298be82002-03-05 15:12:19 +0000863 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000864
Eric Andersen0298be82002-03-05 15:12:19 +0000865 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000866 if (a == action) {
867 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000868 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000869 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000870 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000871 }
872 free(a);
873 break;
874 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000875 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000876}
877
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000878/* Make sure there is enough memory to do something useful. *
879 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
880static void check_memory(void)
881{
882 struct stat statBuf;
883
884 if (check_free_memory() > 1000)
885 return;
886
887#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
888 if (stat("/etc/fstab", &statBuf) == 0) {
889 /* swapon -a requires /proc typically */
890 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
891 /* Try to turn on swap */
892 new_init_action(SYSINIT, "/sbin/swapon -a", "");
893 run_actions(SYSINIT); /* wait and removing */
894 if (check_free_memory() < 1000)
895 goto goodnight;
896 } else
897 goto goodnight;
898 return;
899#endif
900
901 goodnight:
902 message(CONSOLE, "Sorry, your computer does not have enough memory.");
903 loop_forever();
904}
905
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000906/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000907 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +0000908 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000909 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
Erik Andersen812d4662000-01-07 18:30:40 +0000910 * _is_ defined, but /etc/inittab is missing, this
911 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000912 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000913static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000914{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000915#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000916 FILE *file;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000917 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
918 char tmpConsole[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000919 char *id, *runlev, *action, *command, *eol;
920 const struct init_action_type *a = actions;
Erik Andersen7dc16072000-01-04 01:10:25 +0000921
922
Erik Andersene49d5ec2000-02-08 19:58:47 +0000923 file = fopen(INITTAB, "r");
924 if (file == NULL) {
925 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000926#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000927 /* Reboot on Ctrl-Alt-Del */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000928 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000929 /* Umount all filesystems on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000930 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
Eric Andersen72f9a422001-10-28 05:12:20 +0000931#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen1644db92001-09-05 20:18:15 +0000932 /* Swapoff on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000933 new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000934#endif
Eric Andersen730f8262001-12-17 23:13:08 +0000935 /* Prepare to restart init when a HUP is received */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000936 new_init_action(RESTART, "/sbin/init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000937 /* Askfirst shell on tty1-4 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000938 new_init_action(ASKFIRST, LOGIN_SHELL, "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000939 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
940 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
941 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000942 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000943 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000944
Erik Andersene49d5ec2000-02-08 19:58:47 +0000945 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000946#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000947 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000948
Eric Andersen0826b6b2002-07-03 23:50:16 +0000949 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Eric Andersenb5966362000-05-31 20:04:38 +0000950 /* Skip leading spaces */
951 for (id = buf; *id == ' ' || *id == '\t'; id++);
952
953 /* Skip the line if it's a comment */
954 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000955 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000956
Erik Andersene49d5ec2000-02-08 19:58:47 +0000957 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000958 eol = strrchr(id, '\n');
959 if (eol != NULL)
960 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000961
Erik Andersene49d5ec2000-02-08 19:58:47 +0000962 /* Keep a copy around for posterity's sake (and error msgs) */
963 strcpy(lineAsRead, buf);
964
Eric Andersenb5966362000-05-31 20:04:38 +0000965 /* Separate the ID field from the runlevels */
966 runlev = strchr(id, ':');
967 if (runlev == NULL || *(runlev + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000968 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000969 continue;
970 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000971 *runlev = '\0';
972 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000973 }
974
Eric Andersenb5966362000-05-31 20:04:38 +0000975 /* Separate the runlevels from the action */
976 action = strchr(runlev, ':');
977 if (action == NULL || *(action + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000978 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000979 continue;
980 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000981 *action = '\0';
982 ++action;
983 }
984
Eric Andersen0298be82002-03-05 15:12:19 +0000985 /* Separate the action from the command */
986 command = strchr(action, ':');
987 if (command == NULL || *(command + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000988 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +0000989 continue;
990 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000991 *command = '\0';
992 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000993 }
994
995 /* Ok, now process it */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000996 for (a = actions; a->name != 0; a++) {
Eric Andersenb5966362000-05-31 20:04:38 +0000997 if (strcmp(a->name, action) == 0) {
998 if (*id != '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000999 if(strncmp(id, "/dev/", 5) == 0)
1000 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001001 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001002 safe_strncpy(tmpConsole + 5, id,
1003 CONSOLE_BUFF_SIZE - 5);
Eric Andersenb5966362000-05-31 20:04:38 +00001004 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001005 }
Eric Andersen0298be82002-03-05 15:12:19 +00001006 new_init_action(a->action, command, id);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001007 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001008 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001009 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001010 if (a->name == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001011 /* Choke on an unknown action */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001012 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001013 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001014 }
Eric Andersend8636ca2002-05-15 22:19:09 +00001015 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001016 return;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001017#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +00001018}
1019
Erik Andersene132f4b2000-02-09 04:16:43 +00001020
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001021extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001022{
Eric Andersen0298be82002-03-05 15:12:19 +00001023 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001024 pid_t wpid;
1025 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001026
Eric Andersen730f8262001-12-17 23:13:08 +00001027 if (argc > 1 && !strcmp(argv[1], "-q")) {
Eric Andersen467a18b2002-01-25 23:13:06 +00001028 /* don't assume init's pid == 1 */
1029 long *pid = find_pid_by_name("init");
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001030
1031 if (!pid || *pid <= 0) {
Eric Andersen467a18b2002-01-25 23:13:06 +00001032 pid = find_pid_by_name("linuxrc");
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001033 if (!pid || *pid <= 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001034 bb_error_msg_and_die("no process killed");
Eric Andersen467a18b2002-01-25 23:13:06 +00001035 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001036 return kill(*pid, 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
Erik Andersen298854f2000-03-23 01:09:18 +00001063 /* Figure out what kernel this is running */
1064 kernelVersion = get_kernel_revision();
1065
Eric Andersen599e3ce2002-07-03 11:08:10 +00001066 /* Figure out where the default console should be */
1067 console_init();
1068
Erik Andersene49d5ec2000-02-08 19:58:47 +00001069 /* Close whatever files are open, and reset the console. */
1070 close(0);
1071 close(1);
1072 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001073
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001074 if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1075 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001076 close(0);
1077 }
1078
Erik Andersen983b51b2000-04-04 18:14:25 +00001079 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001080 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001081 {
1082 const char * const *e;
1083 /* Make sure environs is set to something sane */
1084 for(e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001085 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001086 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001087 /* Hello world */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001088 message(MAYBE_CONSOLE | LOG, "init started: %s", bb_msg_full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001089
Erik Andersene49d5ec2000-02-08 19:58:47 +00001090 /* Make sure there is enough memory to do something useful. */
1091 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +00001092
Erik Andersene49d5ec2000-02-08 19:58:47 +00001093 /* Check if we are supposed to be in single user mode */
1094 if (argc > 1 && (!strcmp(argv[1], "single") ||
1095 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001096 /* Start a shell on console */
1097 new_init_action(RESPAWN, LOGIN_SHELL, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001098 } else {
1099 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001100
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001101 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001102 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +00001103 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001104 * of "askfirst" shells */
1105 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001106 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001107
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001108 /* Make the command line just say "init" -- thats all, nothing else */
1109 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001110
Erik Andersene49d5ec2000-02-08 19:58:47 +00001111 /* Now run everything that needs to be run */
1112
1113 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001114 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001115
Erik Andersene49d5ec2000-02-08 19:58:47 +00001116 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001117 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001118
Erik Andersene49d5ec2000-02-08 19:58:47 +00001119 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001120 run_actions(ONCE);
1121
Erik Andersene49d5ec2000-02-08 19:58:47 +00001122 /* If there is nothing else to do, stop */
Eric Andersen0298be82002-03-05 15:12:19 +00001123 if (init_action_list == NULL) {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001124 message(LOG | CONSOLE,
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001125 "No more tasks for init -- sleeping forever.");
Matt Kraai67a46402001-06-03 05:55:52 +00001126 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001127 }
1128
1129 /* Now run the looping stuff for the rest of forever */
1130 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001131 /* run the respawn stuff */
1132 run_actions(RESPAWN);
1133
1134 /* run the askfirst stuff */
1135 run_actions(ASKFIRST);
1136
1137 /* Don't consume all CPU time -- sleep a bit */
1138 sleep(1);
1139
Erik Andersene49d5ec2000-02-08 19:58:47 +00001140 /* Wait for a child process to exit */
1141 wpid = wait(&status);
Eric Andersencf1fee02002-12-17 09:48:16 +00001142 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001143 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001144 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001145 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001146 /* Set the pid to 0 so that the process gets
1147 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001148 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001149 message(LOG, "Process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001150 "Scheduling it for restart.",
1151 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001152 }
1153 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001154 /* see if anyone else is waiting to be reaped */
1155 wpid = waitpid (-1, &status, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001156 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001157 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001158}
Erik Andersen029011b2000-03-04 21:19:32 +00001159
1160/*
1161Local Variables:
1162c-file-style: "linux"
1163c-basic-offset: 4
1164tab-width: 4
1165End:
1166*/