blob: 8687b106c8b690a044cf10178ab0bab0eb4d5e7a [file] [log] [blame]
Erik Andersenccc74882000-01-27 02:40:21 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc4996011999-10-20 22:08:37 +00002/*
3 * Mini init implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Eric Andersenc7bda1c2004-03-15 08:29:22 +00006 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenc4996011999-10-20 22:08:37 +00007 * Adjusted by so many folks, it's impossible to keep track.
8 *
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
Eric Andersenc7bda1c2004-03-15 08:29:22 +000025/* Turn this on to disable all the dangerous
Erik Andersene132f4b2000-02-09 04:16:43 +000026 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>
Erik Andersen42094cd2000-03-20 21:34:52 +000042#include <sys/types.h>
Erik Andersen42094cd2000-03-20 21:34:52 +000043#include <sys/wait.h>
Eric Andersen85e5e722003-07-22 08:56:55 +000044#include <sys/reboot.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000045#include "busybox.h"
Eric Andersenb01ed652003-06-27 17:08:15 +000046
47#include "init_shared.h"
48
49
Eric Andersenbdfd0d72001-10-24 05:00:29 +000050#ifdef CONFIG_SYSLOGD
Erik Andersen4f3f7572000-04-28 00:18:56 +000051# include <sys/syslog.h>
52#endif
Eric Andersen2c1de612003-04-24 11:41:28 +000053
Erik Andersen4f3f7572000-04-28 00:18:56 +000054
Eric Andersen0826b6b2002-07-03 23:50:16 +000055#define INIT_BUFFS_SIZE 256
56
Eric Andersenbd22ed82000-07-08 18:55:24 +000057/* From <linux/vt.h> */
58struct vt_stat {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000059 unsigned short v_active; /* active vt */
60 unsigned short v_signal; /* signal to send */
61 unsigned short v_state; /* vt bitmask */
Eric Andersenbd22ed82000-07-08 18:55:24 +000062};
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000063static const int VT_GETSTATE = 0x5603; /* get global vt state info */
Eric Andersenbd22ed82000-07-08 18:55:24 +000064
65/* From <linux/serial.h> */
66struct serial_struct {
Eric Andersen81155f82003-09-11 08:52:22 +000067 int type;
68 int line;
69 unsigned int port;
70 int irq;
71 int flags;
72 int xmit_fifo_size;
73 int custom_divisor;
74 int baud_base;
75 unsigned short close_delay;
76 char io_type;
77 char reserved_char[1];
78 int hub6;
79 unsigned short closing_wait; /* time to wait before closing */
80 unsigned short closing_wait2; /* no longer used... */
81 unsigned char *iomem_base;
82 unsigned short iomem_reg_shift;
83 unsigned int port_high;
84 unsigned long iomap_base; /* cookie passed into ioremap */
85 int reserved[1];
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/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +000095 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
Erik Andersen183da4a2000-04-04 18:36:37 +000096 * 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
Mike Frysinger72a4c332005-07-05 02:19:20 +0000158static char *log_console = 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" */
Eric Andersen36adca82004-06-22 10:07:17 +0000227 openlog(bb_applet_name, 0, LOG_DAEMON);
228 syslog(LOG_INFO, "%s", msg);
229 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000230 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000231
232 msg[l++] = '\n';
233 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000234#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000235
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000236 msg[l++] = '\n';
237 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000238 /* Take full control of the log tty, and never close it.
239 * It's mine, all mine! Muhahahaha! */
240 if (log_fd < 0) {
Mike Frysingere548bdf2005-07-06 04:46:14 +0000241 if ((log_fd = device_open(log_console, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000242 log_fd = -2;
Mike Frysinger72a4c332005-07-05 02:19:20 +0000243 bb_error_msg("Bummer, can't write to log on %s!", log_console);
Erik Andersene132f4b2000-02-09 04:16:43 +0000244 device = CONSOLE;
Eric Andersen6a979902002-09-30 20:08:53 +0000245 } else {
246 fcntl(log_fd, F_SETFD, FD_CLOEXEC);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000247 }
248 }
249 if ((device & LOG) && (log_fd >= 0)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000250 bb_full_write(log_fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000251 }
Eric Andersen4c781471999-11-26 08:12:56 +0000252#endif
253
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254 if (device & CONSOLE) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000255 int fd = device_open(_PATH_CONSOLE,
Mike Frysingere548bdf2005-07-06 04:46:14 +0000256 O_WRONLY | O_NOCTTY | O_NONBLOCK);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000257 /* Always send console messages to /dev/console so people will see them. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000258 if (fd >= 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000259 bb_full_write(fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000260 close(fd);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000261#ifdef DEBUG_INIT
262 /* all descriptors may be closed */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000264 bb_error_msg("Bummer, can't print: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000265 va_start(arguments, fmt);
266 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000267 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000268#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000269 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000270 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000271}
272
Eric Andersen0460ff21999-10-25 23:32:44 +0000273/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000274static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000275{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000277
Erik Andersene49d5ec2000-02-08 19:58:47 +0000278 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000279
Erik Andersene49d5ec2000-02-08 19:58:47 +0000280 /* set control chars */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000281 tty.c_cc[VINTR] = 3; /* C-c */
282 tty.c_cc[VQUIT] = 28; /* C-\ */
283 tty.c_cc[VERASE] = 127; /* C-? */
284 tty.c_cc[VKILL] = 21; /* C-u */
285 tty.c_cc[VEOF] = 4; /* C-d */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000286 tty.c_cc[VSTART] = 17; /* C-q */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000287 tty.c_cc[VSTOP] = 19; /* C-s */
288 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000289
Erik Andersene49d5ec2000-02-08 19:58:47 +0000290 /* use line dicipline 0 */
291 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000292
Erik Andersene49d5ec2000-02-08 19:58:47 +0000293 /* Make it be sane */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000294 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
295 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
Eric Andersend8862922001-04-23 15:14:11 +0000296
Eric Andersen08b10341999-11-19 02:38:58 +0000297
Erik Andersene49d5ec2000-02-08 19:58:47 +0000298 /* input modes */
299 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000300
Erik Andersene49d5ec2000-02-08 19:58:47 +0000301 /* output modes */
302 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000303
Erik Andersene49d5ec2000-02-08 19:58:47 +0000304 /* local modes */
305 tty.c_lflag =
306 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000307
Erik Andersene49d5ec2000-02-08 19:58:47 +0000308 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000309}
310
Mike Frysinger95ef1652005-07-06 04:39:08 +0000311#ifdef CONFIG_FEATURE_INIT_SWAPON
Eric Andersenbc5941a2000-12-06 23:17:37 +0000312/* How much memory does this machine have?
313 Units are kBytes to avoid overflow on 4GB machines */
Glenn L McGrathce6482e2003-08-26 02:14:58 +0000314static unsigned int check_free_memory(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000315{
Erik Andersend07ee462000-02-21 21:26:32 +0000316 struct sysinfo info;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000317 unsigned int result, u, s = 10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000318
Erik Andersend07ee462000-02-21 21:26:32 +0000319 if (sysinfo(&info) != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000320 bb_perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000322 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000323
324 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
325 * Kernels 2.4.0 return info.mem_unit in bytes. */
326 u = info.mem_unit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000327 if (u == 0)
328 u = 1;
329 while ((u & 1) == 0 && s > 0) {
330 u >>= 1;
331 s--;
332 }
333 result = (info.totalram >> s) + (info.totalswap >> s);
Eric Andersen2205c842003-09-15 08:11:29 +0000334 if (((unsigned long long)result * (unsigned long long)u) > UINT_MAX) {
Glenn L McGrathce6482e2003-08-26 02:14:58 +0000335 return(UINT_MAX);
336 } else {
337 return(result * u);
338 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000339}
Mike Frysinger95ef1652005-07-06 04:39:08 +0000340#endif /* CONFIG_FEATURE_INIT_SWAPON */
Eric Andersencc8ed391999-10-05 16:24:54 +0000341
Eric Andersen74400cc2001-10-18 04:11:39 +0000342static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000343{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000344 int fd;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000345 int tried = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000346 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000347 struct serial_struct sr;
348 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000349
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000350 if ((s = getenv("CONSOLE")) != NULL || (s = getenv("console")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000351 safe_strncpy(console, s, sizeof(console));
Eric Andersenfbb39c81999-11-08 17:00:52 +0000352#if #cpu(sparc)
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000353 /* sparc kernel supports console=tty[ab] parameter which is also
Erik Andersene49d5ec2000-02-08 19:58:47 +0000354 * passed to init, so catch it here */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000355 /* remap tty[ab] to /dev/ttyS[01] */
356 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000357 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000358 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000359 safe_strncpy(console, SC_1, sizeof(console));
Eric Andersen219d6f51999-11-02 19:43:01 +0000360#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000361 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000362 /* 2.2 kernels: identify the real console backend and try to use it */
363 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
364 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000365 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000366 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
367 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000368 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000369 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000370 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000371 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000372 }
Eric Andersen07e52971999-11-07 07:38:08 +0000373 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000374
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000375 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0 && tried < 2) {
376 /* Can't open selected console -- try
377 logical system console and VT_MASTER */
378 safe_strncpy(console, (tried == 0 ? _PATH_CONSOLE : CURRENT_VC),
379 sizeof(console));
380 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000381 }
382 if (fd < 0) {
383 /* Perhaps we should panic here? */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000384#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000385 log_console =
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000386#endif
Matt Kraai18447702001-05-18 21:24:58 +0000387 safe_strncpy(console, "/dev/null", sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000388 } else {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000389 s = getenv("TERM");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000390 /* check for serial console */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000391 if (ioctl(fd, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000392 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000393 * if TERM is set to linux (the default) */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000394 if (s == NULL || strcmp(s, "linux") == 0)
395 putenv("TERM=vt102");
396#ifndef CONFIG_SYSLOGD
Mike Frysinger72a4c332005-07-05 02:19:20 +0000397 log_console = console;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000398#endif
399 } else {
400 if (s == NULL)
401 putenv("TERM=linux");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000402 }
403 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000404 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000405 messageD(LOG, "console=%s", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000406}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000407
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000408static void fixup_argv(int argc, char **argv, char *new_argv0)
409{
410 int len;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000411
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000412 /* Fix up argv[0] to be certain we claim to be init */
413 len = strlen(argv[0]);
414 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000415 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000416
417 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
418 len = 1;
419 while (argc > len) {
420 memset(argv[len], 0, strlen(argv[len]));
421 len++;
422 }
423}
424
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000425static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000426{
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000427 int i, junk;
Mike Frysinger10427ab2005-07-06 05:00:48 +0000428 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000429 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000430 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000431 sigset_t nmask, omask;
Eric Andersen0298be82002-03-05 15:12:19 +0000432 static const char press_enter[] =
433#ifdef CUSTOMIZED_BANNER
434#include CUSTOMIZED_BANNER
435#endif
436 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000437
Eric Andersen0298be82002-03-05 15:12:19 +0000438 /* Block sigchild while forking. */
439 sigemptyset(&nmask);
440 sigaddset(&nmask, SIGCHLD);
441 sigprocmask(SIG_BLOCK, &nmask, &omask);
442
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000443 if ((pid = fork()) == 0) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000444 struct stat sb;
445
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);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000458 signal(SIGQUIT, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000459 signal(SIGCONT, SIG_DFL);
460 signal(SIGSTOP, SIG_DFL);
461 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000462
Eric Andersen599e3ce2002-07-03 11:08:10 +0000463 /* Create a new session and make ourself the process
Eric Andersene8a90fb2002-10-12 04:05:48 +0000464 * group leader */
465 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000466
Eric Andersen0298be82002-03-05 15:12:19 +0000467 /* Open the new terminal device */
Eric Andersene8a90fb2002-10-12 04:05:48 +0000468 if ((device_open(a->terminal, O_RDWR)) < 0) {
Eric Andersen0298be82002-03-05 15:12:19 +0000469 if (stat(a->terminal, &sb) != 0) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000470 message(LOG | CONSOLE, "device '%s' does not exist.", a->terminal);
471 } else {
472 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
Eric Andersen53f50612001-03-14 09:01:11 +0000473 }
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)) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000487 pid_t pgrp, tmp_pid;
Eric Andersen0298be82002-03-05 15:12:19 +0000488
489 /* Now fork off another process to just hang around */
490 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000491 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000492 _exit(1);
493 }
494
495 if (pid > 0) {
496
497 /* We are the parent -- wait till the child is done */
498 signal(SIGINT, SIG_IGN);
499 signal(SIGTSTP, SIG_IGN);
500 signal(SIGQUIT, SIG_IGN);
501 signal(SIGCHLD, SIG_DFL);
502
503 /* Wait for child to exit */
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000504 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
505 if (tmp_pid == -1 && errno == ECHILD) {
506 break;
507 }
508 /* FIXME handle other errors */
509 }
Eric Andersen0298be82002-03-05 15:12:19 +0000510
511 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000512 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000513 if (pgrp != getpid())
514 _exit(0);
515
516 /* Use a temporary process to steal the controlling tty. */
517 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000518 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000519 _exit(1);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000520 }
Eric Andersen0298be82002-03-05 15:12:19 +0000521 if (pid == 0) {
522 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000523 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000524 _exit(0);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000525 }
526 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000527 if (tmp_pid < 0 && errno == ECHILD)
528 break;
529 }
530 _exit(0);
531 }
532
533 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000534 }
535
Erik Andersene132f4b2000-02-09 04:16:43 +0000536 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000537 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000538 cmd[0] = (char *)DEFAULT_SHELL;
Erik Andersene132f4b2000-02-09 04:16:43 +0000539 cmd[1] = "-c";
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000540 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000541 cmd[3] = NULL;
542 } else {
543 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000544 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000545 s = buf;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000546 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000547 if (*tmpCmd != '\0') {
548 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000549 i++;
550 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000551 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000552 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000553 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000554
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000555 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000556
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000557 /*
558 Interactive shells want to see a dash in argv[0]. This
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000559 typically is handled by login, argv will be setup this
560 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000561 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000562 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000563
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000564 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000565
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000566 /* skip over the dash */
567 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000568
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000569 /* find the last component in the command pathname */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000570 s = bb_get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000571
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000572 /* make a new argv[0] */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000573 if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000574 message(LOG | CONSOLE, bb_msg_memory_exhausted);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000575 cmd[0] = cmdpath;
576 } else {
577 cmd[0][0] = '-';
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000578 strcpy(cmd[0] + 1, s);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000579 }
580 }
581
Eric Andersen1f50e842004-08-16 09:29:42 +0000582#if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
Eric Andersen0298be82002-03-05 15:12:19 +0000583 if (a->action & ASKFIRST) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000584 char c;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000585 /*
586 * Save memory by not exec-ing anything large (like a shell)
587 * before the user wants it. This is critical if swap is not
588 * enabled and the system has low memory. Generally this will
589 * be run on the second virtual console, and the first will
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000590 * be allowed to start a shell or whatever an init script
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000591 * specifies.
592 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000593 messageD(LOG, "Waiting for enter to start '%s'"
594 "(pid %d, terminal %s)\n",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000595 cmdpath, getpid(), a->terminal);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000596 bb_full_write(1, press_enter, sizeof(press_enter) - 1);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000597 while(read(0, &c, 1) == 1 && c != '\n')
598 ;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000599 }
Eric Andersen1f50e842004-08-16 09:29:42 +0000600#endif
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000601
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000602 /* Log the process name and args */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000603 message(LOG, "Starting pid %d, console %s: '%s'",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000604 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000605
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000606#if defined CONFIG_FEATURE_INIT_COREDUMPS
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000607 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000608 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000609
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000610 limit.rlim_cur = RLIM_INFINITY;
611 limit.rlim_max = RLIM_INFINITY;
612 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000613 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000614#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000615
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000616 /* Now run it. The new program will take over this PID,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000617 * so nothing further in init.c should be run. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000618 execv(cmdpath, cmd);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000619
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000620 /* We're still here? Some error happened. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000621 message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath);
Eric Andersen0298be82002-03-05 15:12:19 +0000622 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000623 }
Eric Andersen0298be82002-03-05 15:12:19 +0000624 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000625 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000626}
627
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000628static int waitfor(const struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000629{
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000630 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000631 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000632
Eric Andersen0298be82002-03-05 15:12:19 +0000633 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000634 while (1) {
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000635 wpid = waitpid(pid,&status,0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000636 if (wpid == pid)
637 break;
Glenn L McGrathe6ba16f2003-09-26 10:45:55 +0000638 if (wpid == -1 && errno == ECHILD) {
639 /* we missed its termination */
640 break;
641 }
642 /* FIXME other errors should maybe trigger an error, but allow
643 * the program to continue */
Erik Andersen0e3782f2000-01-07 02:54:55 +0000644 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000645 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000646}
647
Eric Andersen0298be82002-03-05 15:12:19 +0000648/* Run all commands of a particular type */
649static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000650{
Eric Andersen0298be82002-03-05 15:12:19 +0000651 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000652
Eric Andersen0298be82002-03-05 15:12:19 +0000653 for (a = init_action_list; a; a = tmp) {
654 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000655 if (a->action == action) {
Eric Andersen59560282002-10-22 11:45:20 +0000656 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000657 waitfor(a);
658 delete_init_action(a);
659 } else if (a->action & ONCE) {
660 run(a);
661 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000662 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000663 /* Only run stuff with pid==0. If they have
664 * a pid, that means it is still running */
665 if (a->pid == 0) {
666 a->pid = run(a);
667 }
668 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000669 }
670 }
671}
672
Erik Andersen7dc16072000-01-04 01:10:25 +0000673#ifndef DEBUG_INIT
Eric Andersen2c1de612003-04-24 11:41:28 +0000674static void init_reboot(unsigned long magic)
675{
676 pid_t pid;
677 /* We have to fork here, since the kernel calls do_exit(0) in
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000678 * linux/kernel/sys.c, which can cause the machine to panic when
Eric Andersen2c1de612003-04-24 11:41:28 +0000679 * the init process is killed.... */
680 if ((pid = fork()) == 0) {
Eric Andersen2c1de612003-04-24 11:41:28 +0000681 reboot(magic);
Eric Andersen2c1de612003-04-24 11:41:28 +0000682 _exit(0);
683 }
684 waitpid (pid, NULL, 0);
685}
686
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000687static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000688{
Eric Andersen813d88c2001-10-28 22:49:48 +0000689 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000690
Eric Andersena9cc8962002-09-16 06:49:06 +0000691 /* run everything to be run at "shutdown". This is done _prior_
692 * to killing everything, in case people wish to use scripts to
693 * shut things down gracefully... */
694 run_actions(SHUTDOWN);
695
Eric Andersen72f9a422001-10-28 05:12:20 +0000696 /* first disable all our signals */
697 sigemptyset(&block_signals);
698 sigaddset(&block_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000699 sigaddset(&block_signals, SIGQUIT);
Eric Andersen72f9a422001-10-28 05:12:20 +0000700 sigaddset(&block_signals, SIGCHLD);
701 sigaddset(&block_signals, SIGUSR1);
702 sigaddset(&block_signals, SIGUSR2);
703 sigaddset(&block_signals, SIGINT);
704 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000705 sigaddset(&block_signals, SIGCONT);
706 sigaddset(&block_signals, SIGSTOP);
707 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000708 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000709
Erik Andersene49d5ec2000-02-08 19:58:47 +0000710 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000711 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000712
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000713 message(CONSOLE | LOG, "The system is going down NOW !!");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000714 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000715
716 /* Send signals to every process _except_ pid 1 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000717 message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000718 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000719 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000720 sync();
721
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000722 message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000723 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000724 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000725
Erik Andersene49d5ec2000-02-08 19:58:47 +0000726 sync();
Eric Andersencc8ed391999-10-05 16:24:54 +0000727}
728
Eric Andersen730f8262001-12-17 23:13:08 +0000729static void exec_signal(int sig)
730{
Eric Andersen0298be82002-03-05 15:12:19 +0000731 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000732 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000733
Eric Andersen0298be82002-03-05 15:12:19 +0000734 for (a = init_action_list; a; a = tmp) {
735 tmp = a->next;
736 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000737 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000738
739 /* unblock all signals, blocked in shutdown_system() */
740 sigemptyset(&unblock_signals);
741 sigaddset(&unblock_signals, SIGHUP);
Mike Frysingera77b4f32005-04-16 08:21:34 +0000742 sigaddset(&unblock_signals, SIGQUIT);
Eric Andersen5222d312002-07-03 05:15:23 +0000743 sigaddset(&unblock_signals, SIGCHLD);
744 sigaddset(&unblock_signals, SIGUSR1);
745 sigaddset(&unblock_signals, SIGUSR2);
746 sigaddset(&unblock_signals, SIGINT);
747 sigaddset(&unblock_signals, SIGTERM);
748 sigaddset(&unblock_signals, SIGCONT);
749 sigaddset(&unblock_signals, SIGSTOP);
750 sigaddset(&unblock_signals, SIGTSTP);
751 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
752
Eric Andersen9cdef5d2003-07-29 06:33:12 +0000753 /* Close whatever files are open. */
754 close(0);
755 close(1);
756 close(2);
757
Eric Andersen3c8064f2003-07-05 08:29:01 +0000758 /* Open the new terminal device */
759 if ((device_open(a->terminal, O_RDWR)) < 0) {
Mike Frysinger10427ab2005-07-06 05:00:48 +0000760 struct stat sb;
Eric Andersen3c8064f2003-07-05 08:29:01 +0000761 if (stat(a->terminal, &sb) != 0) {
762 message(LOG | CONSOLE, "device '%s' does not exist.", a->terminal);
763 } else {
764 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
765 }
766 halt_signal(SIGUSR1);
767 }
768
769 /* Make sure the terminal will act fairly normal for us */
770 set_term(0);
771 /* Setup stdout, stderr on the supplied terminal */
772 dup(0);
773 dup(0);
774
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000775 messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000776 execl(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000777
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000778 message(CONSOLE | LOG, "exec of '%s' failed: %m",
Eric Andersen71ae64b2002-10-10 04:20:21 +0000779 a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000780 sync();
781 sleep(2);
782 init_reboot(RB_HALT_SYSTEM);
783 loop_forever();
784 }
785 }
786}
787
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000788static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000789{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000790 shutdown_system();
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000791 message(CONSOLE | LOG,
Eric Andersenf435a912001-11-20 05:42:57 +0000792#if #cpu(s390)
793 /* Seems the s390 console is Wierd(tm). */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000794 "The system is halted. You may reboot now."
Eric Andersenf435a912001-11-20 05:42:57 +0000795#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000796 "The system is halted. Press Reset or turn off power"
Eric Andersenf435a912001-11-20 05:42:57 +0000797#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000798 );
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 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000802 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000803
Eric Andersenb01ed652003-06-27 17:08:15 +0000804 if (sig == SIGUSR2)
Erik Andersen4f3f7572000-04-28 00:18:56 +0000805 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000806 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000807 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000808
809 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000810}
811
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000812static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000813{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000814 shutdown_system();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000815 message(CONSOLE | LOG, "Please stand by while rebooting the system.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000816 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000817
Erik Andersene49d5ec2000-02-08 19:58:47 +0000818 /* allow time for last message to reach serial console */
819 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000820
Erik Andersen4f3f7572000-04-28 00:18:56 +0000821 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000822
823 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000824}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000825
Eric Andersenc97ec342001-04-03 18:01:51 +0000826static void ctrlaltdel_signal(int sig)
827{
828 run_actions(CTRLALTDEL);
829}
830
Eric Andersen0298be82002-03-05 15:12:19 +0000831/* The SIGSTOP & SIGTSTP handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000832static void stop_handler(int sig)
833{
Eric Andersen0298be82002-03-05 15:12:19 +0000834 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000835
836 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000837 while (!got_cont)
838 pause();
Eric Andersened8a9be2001-11-30 19:10:58 +0000839 got_cont = 0;
840 errno = saved_errno;
841}
842
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000843/* The SIGCONT handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000844static void cont_handler(int sig)
845{
846 got_cont = 1;
847}
848
Erik Andersene49d5ec2000-02-08 19:58:47 +0000849#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000850
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000851static void new_init_action(int action, const char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000852{
Eric Andersen22718092004-10-08 08:17:39 +0000853 struct init_action *new_action, *a, *last;
Erik Andersen9e737252000-01-06 01:16:13 +0000854
Erik Andersene49d5ec2000-02-08 19:58:47 +0000855 if (*cons == '\0')
856 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000857
Eric Andersen3bc2b202002-07-29 06:39:58 +0000858 /* do not run entries if console device is not available */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000859 if (access(cons, R_OK | W_OK))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000860 return;
Eric Andersen0298be82002-03-05 15:12:19 +0000861 if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000862 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000863
Eric Andersen0298be82002-03-05 15:12:19 +0000864 new_action = calloc((size_t) (1), sizeof(struct init_action));
865 if (!new_action) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000866 message(LOG | CONSOLE, "Memory allocation failure");
Matt Kraai67a46402001-06-03 05:55:52 +0000867 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000868 }
Eric Andersen0298be82002-03-05 15:12:19 +0000869
870 /* Append to the end of the list */
Eric Andersen22718092004-10-08 08:17:39 +0000871 for (a = last = init_action_list; a; a = a->next) {
Eric Andersen82baf632004-10-08 08:21:54 +0000872 /* don't enter action if it's already in the list,
873 * but do overwrite existing actions */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000874 if ((strcmp(a->command, command) == 0) &&
Eric Andersen6fd0e312003-07-22 09:48:56 +0000875 (strcmp(a->terminal, cons) ==0)) {
Eric Andersen82baf632004-10-08 08:21:54 +0000876 a->action = action;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000877 free(new_action);
878 return;
879 }
Eric Andersen22718092004-10-08 08:17:39 +0000880 last = a;
Eric Andersen6fd0e312003-07-22 09:48:56 +0000881 }
Eric Andersen22718092004-10-08 08:17:39 +0000882 if (last) {
883 last->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000884 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000885 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000886 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000887 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000888 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000889 strcpy(new_action->terminal, cons);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000890#if 0 /* calloc zeroed always */
Eric Andersen0298be82002-03-05 15:12:19 +0000891 new_action->pid = 0;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000892#endif
893 messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
894 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000895}
896
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000897static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000898{
Eric Andersen0298be82002-03-05 15:12:19 +0000899 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000900
Eric Andersen0298be82002-03-05 15:12:19 +0000901 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 if (a == action) {
903 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000904 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000905 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000906 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000907 }
908 free(a);
909 break;
910 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000911 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000912}
913
Mike Frysinger95ef1652005-07-06 04:39:08 +0000914#ifdef CONFIG_FEATURE_INIT_SWAPON
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000915/* Make sure there is enough memory to do something useful. *
916 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
917static void check_memory(void)
918{
919 struct stat statBuf;
920
921 if (check_free_memory() > 1000)
922 return;
923
Eric Andersene3efc922004-04-12 17:59:24 +0000924#if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000925 if (stat("/etc/fstab", &statBuf) == 0) {
926 /* swapon -a requires /proc typically */
927 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
928 /* Try to turn on swap */
929 new_init_action(SYSINIT, "/sbin/swapon -a", "");
930 run_actions(SYSINIT); /* wait and removing */
931 if (check_free_memory() < 1000)
932 goto goodnight;
933 } else
934 goto goodnight;
935 return;
936#endif
937
938 goodnight:
939 message(CONSOLE, "Sorry, your computer does not have enough memory.");
940 loop_forever();
941}
Mike Frysinger95ef1652005-07-06 04:39:08 +0000942#else
943# define check_memory()
944#endif /* CONFIG_FEATURE_INIT_SWAPON */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000945
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000946/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000947 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000948 * actions(i.e., runs INIT_SCRIPT and then starts a pair
949 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
950 * _is_ defined, but /etc/inittab is missing, this
Erik Andersen812d4662000-01-07 18:30:40 +0000951 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000952 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000953static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000954{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000955#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000956 FILE *file;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000957 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
958 char tmpConsole[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000959 char *id, *runlev, *action, *command, *eol;
960 const struct init_action_type *a = actions;
Erik Andersen7dc16072000-01-04 01:10:25 +0000961
962
Erik Andersene49d5ec2000-02-08 19:58:47 +0000963 file = fopen(INITTAB, "r");
964 if (file == NULL) {
965 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000966#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000967 /* Reboot on Ctrl-Alt-Del */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000968 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000969 /* Umount all filesystems on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000970 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
Eric Andersene3efc922004-04-12 17:59:24 +0000971#if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__)
Eric Andersen1644db92001-09-05 20:18:15 +0000972 /* Swapoff on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000973 new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000974#endif
Eric Andersen730f8262001-12-17 23:13:08 +0000975 /* Prepare to restart init when a HUP is received */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000976 new_init_action(RESTART, "/sbin/init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000977 /* Askfirst shell on tty1-4 */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +0000978 new_init_action(ASKFIRST, bb_default_login_shell, "");
979 new_init_action(ASKFIRST, bb_default_login_shell, VC_2);
980 new_init_action(ASKFIRST, bb_default_login_shell, VC_3);
981 new_init_action(ASKFIRST, bb_default_login_shell, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000982 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000983 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000984
Erik Andersene49d5ec2000-02-08 19:58:47 +0000985 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000986#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000987 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000988
Eric Andersen0826b6b2002-07-03 23:50:16 +0000989 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Eric Andersenb5966362000-05-31 20:04:38 +0000990 /* Skip leading spaces */
991 for (id = buf; *id == ' ' || *id == '\t'; id++);
992
993 /* Skip the line if it's a comment */
994 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000995 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000996
Erik Andersene49d5ec2000-02-08 19:58:47 +0000997 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000998 eol = strrchr(id, '\n');
999 if (eol != NULL)
1000 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +00001001
Erik Andersene49d5ec2000-02-08 19:58:47 +00001002 /* Keep a copy around for posterity's sake (and error msgs) */
1003 strcpy(lineAsRead, buf);
1004
Eric Andersenb5966362000-05-31 20:04:38 +00001005 /* Separate the ID field from the runlevels */
1006 runlev = strchr(id, ':');
1007 if (runlev == NULL || *(runlev + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001008 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001009 continue;
1010 } else {
Eric Andersenb5966362000-05-31 20:04:38 +00001011 *runlev = '\0';
1012 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001013 }
1014
Eric Andersenb5966362000-05-31 20:04:38 +00001015 /* Separate the runlevels from the action */
1016 action = strchr(runlev, ':');
1017 if (action == NULL || *(action + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001018 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001019 continue;
1020 } else {
Eric Andersenb5966362000-05-31 20:04:38 +00001021 *action = '\0';
1022 ++action;
1023 }
1024
Eric Andersen0298be82002-03-05 15:12:19 +00001025 /* Separate the action from the command */
1026 command = strchr(action, ':');
1027 if (command == NULL || *(command + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001028 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +00001029 continue;
1030 } else {
Eric Andersen0298be82002-03-05 15:12:19 +00001031 *command = '\0';
1032 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001033 }
1034
1035 /* Ok, now process it */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001036 for (a = actions; a->name != 0; a++) {
Eric Andersenb5966362000-05-31 20:04:38 +00001037 if (strcmp(a->name, action) == 0) {
1038 if (*id != '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001039 if(strncmp(id, "/dev/", 5) == 0)
1040 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001041 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001042 safe_strncpy(tmpConsole + 5, id,
1043 CONSOLE_BUFF_SIZE - 5);
Eric Andersenb5966362000-05-31 20:04:38 +00001044 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001045 }
Eric Andersen0298be82002-03-05 15:12:19 +00001046 new_init_action(a->action, command, id);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001047 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001048 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001049 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001050 if (a->name == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001051 /* Choke on an unknown action */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001052 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001053 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001054 }
Eric Andersend8636ca2002-05-15 22:19:09 +00001055 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001056 return;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001057#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +00001058}
1059
Eric Andersen82baf632004-10-08 08:21:54 +00001060#ifdef CONFIG_FEATURE_USE_INITTAB
Eric Andersen6fd0e312003-07-22 09:48:56 +00001061static void reload_signal(int sig)
1062{
Eric Andersen82baf632004-10-08 08:21:54 +00001063 struct init_action *a, *tmp;
1064
1065 message(LOG, "Reloading /etc/inittab");
1066
1067 /* disable old entrys */
1068 for (a = init_action_list; a; a = a->next ) {
1069 a->action = ONCE;
1070 }
1071
1072 parse_inittab();
1073
1074 /* remove unused entrys */
1075 for (a = init_action_list; a; a = tmp) {
1076 tmp = a->next;
1077 if (a->action & (ONCE | SYSINIT | WAIT ) &&
1078 a->pid == 0 ) {
1079 delete_init_action(a);
1080 }
1081 }
Eric Andersen6fd0e312003-07-22 09:48:56 +00001082 run_actions(RESPAWN);
Eric Andersen82baf632004-10-08 08:21:54 +00001083 return;
Eric Andersen6fd0e312003-07-22 09:48:56 +00001084}
Eric Andersen82baf632004-10-08 08:21:54 +00001085#endif /* CONFIG_FEATURE_USE_INITTAB */
1086
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001087extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001088{
Eric Andersen0298be82002-03-05 15:12:19 +00001089 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001090 pid_t wpid;
1091 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001092
Eric Andersen730f8262001-12-17 23:13:08 +00001093 if (argc > 1 && !strcmp(argv[1], "-q")) {
Eric Andersenb01ed652003-06-27 17:08:15 +00001094 return kill_init(SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001095 }
Eric Andersend73dc5b1999-11-10 23:13:02 +00001096#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001097 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1098 if (getpid() != 1
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001099#ifdef CONFIG_FEATURE_INITRD
Manuel Novoa III cad53642003-03-19 09:13:01 +00001100 && strstr(bb_applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +00001101#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001102 ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001103 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001104 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001105 /* Set up sig handlers -- be sure to
1106 * clear all of these in run() */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001107 signal(SIGHUP, exec_signal);
Mike Frysingera77b4f32005-04-16 08:21:34 +00001108 signal(SIGQUIT, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001109 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001110 signal(SIGUSR2, halt_signal);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001111 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001112 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001113 signal(SIGCONT, cont_handler);
1114 signal(SIGSTOP, stop_handler);
1115 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001116
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001117 /* Turn off rebooting via CTL-ALT-DEL -- we get a
Erik Andersene49d5ec2000-02-08 19:58:47 +00001118 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001119 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001120#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001121
Eric Andersen599e3ce2002-07-03 11:08:10 +00001122 /* Figure out where the default console should be */
1123 console_init();
1124
Erik Andersene49d5ec2000-02-08 19:58:47 +00001125 /* Close whatever files are open, and reset the console. */
1126 close(0);
1127 close(1);
1128 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001129
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001130 if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1131 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001132 close(0);
1133 }
1134
Erik Andersen983b51b2000-04-04 18:14:25 +00001135 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001136 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001137 {
1138 const char * const *e;
1139 /* Make sure environs is set to something sane */
1140 for(e = environment; *e; e++)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001141 putenv((char *) *e);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001142 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001143 /* Hello world */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001144 message(MAYBE_CONSOLE | LOG, "init started: %s", bb_msg_full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001145
Erik Andersene49d5ec2000-02-08 19:58:47 +00001146 /* Make sure there is enough memory to do something useful. */
1147 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +00001148
Erik Andersene49d5ec2000-02-08 19:58:47 +00001149 /* Check if we are supposed to be in single user mode */
1150 if (argc > 1 && (!strcmp(argv[1], "single") ||
1151 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001152 /* Start a shell on console */
Glenn L McGrathdc4e75e2003-09-02 02:36:18 +00001153 new_init_action(RESPAWN, bb_default_login_shell, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001154 } else {
1155 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001156
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001157 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001158 * then parse_inittab() simply adds in some default
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001159 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001160 * of "askfirst" shells */
1161 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001162 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001163
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001164 /* Make the command line just say "init" -- thats all, nothing else */
1165 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001166
Erik Andersene49d5ec2000-02-08 19:58:47 +00001167 /* Now run everything that needs to be run */
1168
1169 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001170 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001171
Erik Andersene49d5ec2000-02-08 19:58:47 +00001172 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001173 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001174
Erik Andersene49d5ec2000-02-08 19:58:47 +00001175 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001176 run_actions(ONCE);
1177
Eric Andersen82baf632004-10-08 08:21:54 +00001178#ifdef CONFIG_FEATURE_USE_INITTAB
Eric Andersen6fd0e312003-07-22 09:48:56 +00001179 /* Redefine SIGHUP to reread /etc/inittab */
1180 signal(SIGHUP, reload_signal);
Eric Andersen82baf632004-10-08 08:21:54 +00001181#else
1182 signal(SIGHUP, SIG_IGN);
1183#endif /* CONFIG_FEATURE_USE_INITTAB */
1184
Eric Andersen6fd0e312003-07-22 09:48:56 +00001185
Erik Andersene49d5ec2000-02-08 19:58:47 +00001186 /* Now run the looping stuff for the rest of forever */
1187 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001188 /* run the respawn stuff */
1189 run_actions(RESPAWN);
1190
1191 /* run the askfirst stuff */
1192 run_actions(ASKFIRST);
1193
1194 /* Don't consume all CPU time -- sleep a bit */
1195 sleep(1);
1196
Erik Andersene49d5ec2000-02-08 19:58:47 +00001197 /* Wait for a child process to exit */
1198 wpid = wait(&status);
Eric Andersen87812dc2004-04-12 19:21:54 +00001199 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001200 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001201 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001202 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001203 /* Set the pid to 0 so that the process gets
1204 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001205 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001206 message(LOG, "Process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001207 "Scheduling it for restart.",
1208 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001209 }
1210 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001211 /* see if anyone else is waiting to be reaped */
1212 wpid = waitpid (-1, &status, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001213 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001214 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001215}
Erik Andersen029011b2000-03-04 21:19:32 +00001216
1217/*
1218Local Variables:
1219c-file-style: "linux"
1220c-basic-offset: 4
1221tab-width: 4
1222End:
1223*/