blob: 258a7fa6b6c8b2adc3407414dbeb337f95b2525f [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
49
Eric Andersen0298be82002-03-05 15:12:19 +000050#if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_MMU__)
51#define fork vfork
52#endif
Pavel Roskin9c5fcc32000-07-17 23:45:12 +000053
Eric Andersen0826b6b2002-07-03 23:50:16 +000054#define INIT_BUFFS_SIZE 256
55
Eric Andersenbd22ed82000-07-08 18:55:24 +000056/* From <linux/vt.h> */
57struct vt_stat {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000058 unsigned short v_active; /* active vt */
59 unsigned short v_signal; /* signal to send */
60 unsigned short v_state; /* vt bitmask */
Eric Andersenbd22ed82000-07-08 18:55:24 +000061};
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000062static const int VT_GETSTATE = 0x5603; /* get global vt state info */
Eric Andersenbd22ed82000-07-08 18:55:24 +000063
64/* From <linux/serial.h> */
65struct serial_struct {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000066 int type;
67 int line;
68 int port;
69 int irq;
70 int flags;
71 int xmit_fifo_size;
72 int custom_divisor;
73 int baud_base;
74 unsigned short close_delay;
75 char reserved_char[2];
76 int hub6;
77 unsigned short closing_wait; /* time to wait before closing */
78 unsigned short closing_wait2; /* no longer used... */
79 int reserved[4];
Eric Andersenbd22ed82000-07-08 18:55:24 +000080};
81
82
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000083#if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__)
84#include <sys/reboot.h>
85#define init_reboot(magic) reboot(magic)
Eric Andersen72f9a422001-10-28 05:12:20 +000086#else
Glenn L McGrathbaf55a82002-08-22 18:22:10 +000087#define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
Eric Andersen72f9a422001-10-28 05:12:20 +000088#endif
Erik Andersen4f3f7572000-04-28 00:18:56 +000089
Eric Andersen41492d62001-02-23 00:05:56 +000090#ifndef _PATH_STDPATH
Erik Andersen4f3f7572000-04-28 00:18:56 +000091#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
Eric Andersen41492d62001-02-23 00:05:56 +000092#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000093
Eric Andersenbdfd0d72001-10-24 05:00:29 +000094#if defined CONFIG_FEATURE_INIT_COREDUMPS
Erik Andersen983b51b2000-04-04 18:14:25 +000095/*
Erik Andersen183da4a2000-04-04 18:36:37 +000096 * When a file named CORE_ENABLE_FLAG_FILE exists, setrlimit is called
97 * before processes are spawned to set core file size as unlimited.
98 * This is for debugging only. Don't use this is production, unless
99 * you want core dumps lying about....
Erik Andersen983b51b2000-04-04 18:14:25 +0000100 */
101#define CORE_ENABLE_FLAG_FILE "/.init_enable_core"
102#include <sys/resource.h>
103#include <sys/time.h>
Erik Andersen183da4a2000-04-04 18:36:37 +0000104#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000105
Erik Andersen4d1d0111999-12-17 18:44:15 +0000106#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Erik Andersen4d1d0111999-12-17 18:44:15 +0000107
Eric Andersenb6b519b2001-04-09 23:52:18 +0000108#if __GNU_LIBRARY__ > 5
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000109#include <sys/kdaemon.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +0000110#else
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000111extern int bdflush(int func, long int data);
Eric Andersenb6b519b2001-04-09 23:52:18 +0000112#endif
Erik Andersen4f3f7572000-04-28 00:18:56 +0000113
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000114#define SHELL "/bin/sh" /* Default shell */
115#define LOGIN_SHELL "-" SHELL /* Default login shell */
116#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000117#ifndef INIT_SCRIPT
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000118#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000119#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +0000120
Eric Andersen41492d62001-02-23 00:05:56 +0000121#define MAXENV 16 /* Number of env. vars */
Erik Andersen7dc16072000-01-04 01:10:25 +0000122
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000123#define CONSOLE_BUFF_SIZE 32
124
Erik Andersen7dc16072000-01-04 01:10:25 +0000125/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +0000126#define SYSINIT 0x001
127#define RESPAWN 0x002
128#define ASKFIRST 0x004
129#define WAIT 0x008
130#define ONCE 0x010
131#define CTRLALTDEL 0x020
132#define SHUTDOWN 0x040
133#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +0000134
Erik Andersen42094cd2000-03-20 21:34:52 +0000135/* A mapping between "inittab" action name strings and action type codes. */
Eric Andersen0298be82002-03-05 15:12:19 +0000136struct init_action_type {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137 const char *name;
Eric Andersen0298be82002-03-05 15:12:19 +0000138 int action;
139};
Erik Andersen7dc16072000-01-04 01:10:25 +0000140
Eric Andersen0298be82002-03-05 15:12:19 +0000141static const struct init_action_type actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000142 {"sysinit", SYSINIT},
143 {"respawn", RESPAWN},
144 {"askfirst", ASKFIRST},
145 {"wait", WAIT},
146 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000147 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000148 {"shutdown", SHUTDOWN},
Eric Andersen730f8262001-12-17 23:13:08 +0000149 {"restart", RESTART},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000150 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000151};
152
Eric Andersen0298be82002-03-05 15:12:19 +0000153/* Set up a linked list of init_actions, to be read from inittab */
154struct init_action {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000156 char command[INIT_BUFFS_SIZE];
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000157 char terminal[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000158 struct init_action *next;
159 int action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000160};
Erik Andersen7dc16072000-01-04 01:10:25 +0000161
Eric Andersen0298be82002-03-05 15:12:19 +0000162/* Static variables */
163static struct init_action *init_action_list = NULL;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000164static int kernelVersion;
165static char console[CONSOLE_BUFF_SIZE] = _PATH_CONSOLE;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000166
Eric Andersene7078062002-07-29 08:00:16 +0000167#ifndef CONFIG_SYSLOGD
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000168static char *log = VC_5;
Eric Andersene7078062002-07-29 08:00:16 +0000169#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000170static sig_atomic_t got_cont = 0;
171static const int LOG = 0x1;
172static const int CONSOLE = 0x2;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000173
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000174#if defined CONFIG_FEATURE_EXTRA_QUIET
Eric Andersen0298be82002-03-05 15:12:19 +0000175static const int MAYBE_CONSOLE = 0x0;
176#else
177#define MAYBE_CONSOLE CONSOLE
178#endif
179#ifndef RB_HALT_SYSTEM
180static const int RB_HALT_SYSTEM = 0xcdef0123;
181static const int RB_ENABLE_CAD = 0x89abcdef;
182static const int RB_DISABLE_CAD = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000183
Eric Andersen0298be82002-03-05 15:12:19 +0000184#define RB_POWER_OFF 0x4321fedc
185static const int RB_AUTOBOOT = 0x01234567;
186#endif
Erik Andersen42094cd2000-03-20 21:34:52 +0000187
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000188static const char * const environment[] = {
189 "HOME=/",
190 "PATH=" _PATH_STDPATH,
191 "SHELL=" SHELL,
192 "USER=root",
193 NULL
194};
195
Eric Andersen0298be82002-03-05 15:12:19 +0000196/* Function prototypes */
197static void delete_init_action(struct init_action *a);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000198static int waitfor(const struct init_action *a);
Eric Andersen0298be82002-03-05 15:12:19 +0000199
Eric Andersen0460ff21999-10-25 23:32:44 +0000200
Eric Andersen74400cc2001-10-18 04:11:39 +0000201static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000202{
203 while (1)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000204 sleep(1);
Matt Kraai67a46402001-06-03 05:55:52 +0000205}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000206
Erik Andersen42094cd2000-03-20 21:34:52 +0000207/* Print a message to the specified device.
208 * Device may be bitwise-or'd from LOG | CONSOLE */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000209#ifndef DEBUG_INIT
210static inline void messageD(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000211{
212}
213#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000214#define messageD message
Eric Andersenfedce062001-11-17 07:27:14 +0000215#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000216static void message(int device, const char *fmt, ...)
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000217 __attribute__ ((format(printf, 2, 3)));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000218static void message(int device, const char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000219{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000220 va_list arguments;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000221 int l;
Eric Andersen22237012003-01-23 07:08:26 +0000222 char msg[1024];
223#ifndef CONFIG_SYSLOGD
224 static int log_fd = -1;
225#endif
Eric Andersen4c781471999-11-26 08:12:56 +0000226
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000227 msg[0] = '\r';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228 va_start(arguments, fmt);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000229 l = vsnprintf(msg + 1, sizeof(msg) - 2, fmt, arguments) + 1;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000230 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000231
232#ifdef CONFIG_SYSLOGD
233 /* Log the message to syslogd */
234 if (device & LOG) {
235 /* don`t out "\r\n" */
236 syslog_msg(LOG_DAEMON, LOG_INFO, msg + 1);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000237 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000238
239 msg[l++] = '\n';
240 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000241#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000242
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000243 msg[l++] = '\n';
244 msg[l] = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000245 /* Take full control of the log tty, and never close it.
246 * It's mine, all mine! Muhahahaha! */
247 if (log_fd < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000248 if ((log_fd = device_open(log, O_RDWR | O_NDELAY | O_NOCTTY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000249 log_fd = -2;
Glenn L McGrathefdd0ae2002-11-28 09:40:36 +0000250 error_msg("Bummer, can't write to log on %s!", log);
Erik Andersene132f4b2000-02-09 04:16:43 +0000251 device = CONSOLE;
Eric Andersen6a979902002-09-30 20:08:53 +0000252 } else {
253 fcntl(log_fd, F_SETFD, FD_CLOEXEC);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254 }
255 }
256 if ((device & LOG) && (log_fd >= 0)) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000257 full_write(log_fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 }
Eric Andersen4c781471999-11-26 08:12:56 +0000259#endif
260
Erik Andersene49d5ec2000-02-08 19:58:47 +0000261 if (device & CONSOLE) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000262 int fd = device_open(_PATH_CONSOLE,
263 O_WRONLY | O_NOCTTY | O_NDELAY);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264 /* Always send console messages to /dev/console so people will see them. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000265 if (fd >= 0) {
266 full_write(fd, msg, l);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000267 close(fd);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000268#ifdef DEBUG_INIT
269 /* all descriptors may be closed */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000270 } else {
Glenn L McGrathefdd0ae2002-11-28 09:40:36 +0000271 error_msg("Bummer, can't print: ");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000272 va_start(arguments, fmt);
273 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 va_end(arguments);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000275#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000277 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000278}
279
Eric Andersen0460ff21999-10-25 23:32:44 +0000280/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000281static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000282{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000283 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000284
Erik Andersene49d5ec2000-02-08 19:58:47 +0000285 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000286
Erik Andersene49d5ec2000-02-08 19:58:47 +0000287 /* set control chars */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000288 tty.c_cc[VINTR] = 3; /* C-c */
289 tty.c_cc[VQUIT] = 28; /* C-\ */
290 tty.c_cc[VERASE] = 127; /* C-? */
291 tty.c_cc[VKILL] = 21; /* C-u */
292 tty.c_cc[VEOF] = 4; /* C-d */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000293 tty.c_cc[VSTART] = 17; /* C-q */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000294 tty.c_cc[VSTOP] = 19; /* C-s */
295 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000296
Erik Andersene49d5ec2000-02-08 19:58:47 +0000297 /* use line dicipline 0 */
298 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000299
Erik Andersene49d5ec2000-02-08 19:58:47 +0000300 /* Make it be sane */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000301 tty.c_cflag &= CBAUD | CBAUDEX | CSIZE | CSTOPB | PARENB | PARODD;
302 tty.c_cflag |= CREAD | HUPCL | CLOCAL;
Eric Andersend8862922001-04-23 15:14:11 +0000303
Eric Andersen08b10341999-11-19 02:38:58 +0000304
Erik Andersene49d5ec2000-02-08 19:58:47 +0000305 /* input modes */
306 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000307
Erik Andersene49d5ec2000-02-08 19:58:47 +0000308 /* output modes */
309 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000310
Erik Andersene49d5ec2000-02-08 19:58:47 +0000311 /* local modes */
312 tty.c_lflag =
313 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000314
Erik Andersene49d5ec2000-02-08 19:58:47 +0000315 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000316}
317
Eric Andersenbc5941a2000-12-06 23:17:37 +0000318/* How much memory does this machine have?
319 Units are kBytes to avoid overflow on 4GB machines */
Eric Andersen74400cc2001-10-18 04:11:39 +0000320static int check_free_memory(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000321{
Erik Andersend07ee462000-02-21 21:26:32 +0000322 struct sysinfo info;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000323 unsigned int result, u, s = 10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000324
Erik Andersend07ee462000-02-21 21:26:32 +0000325 if (sysinfo(&info) != 0) {
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000326 perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000327 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000328 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000329
330 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
331 * Kernels 2.4.0 return info.mem_unit in bytes. */
332 u = info.mem_unit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000333 if (u == 0)
334 u = 1;
335 while ((u & 1) == 0 && s > 0) {
336 u >>= 1;
337 s--;
338 }
339 result = (info.totalram >> s) + (info.totalswap >> s);
340 result = result * u;
341 if (result < 0)
342 result = INT_MAX;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000343 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000344}
345
Eric Andersen74400cc2001-10-18 04:11:39 +0000346static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000347{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000348 int fd;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000349 int tried = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000350 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000351 struct serial_struct sr;
352 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000353
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000354 if ((s = getenv("CONSOLE")) != NULL || (s = getenv("console")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000355 safe_strncpy(console, s, sizeof(console));
Eric Andersenfbb39c81999-11-08 17:00:52 +0000356#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000357 /* sparc kernel supports console=tty[ab] parameter which is also
358 * passed to init, so catch it here */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000359 /* remap tty[ab] to /dev/ttyS[01] */
360 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000361 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000362 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000363 safe_strncpy(console, SC_1, sizeof(console));
Eric Andersen219d6f51999-11-02 19:43:01 +0000364#endif
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000365 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000366 /* 2.2 kernels: identify the real console backend and try to use it */
367 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
368 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000369 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000370 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
371 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000372 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000373 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000374 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000375 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000376 }
Eric Andersen07e52971999-11-07 07:38:08 +0000377 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000378
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000379 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0 && tried < 2) {
380 /* Can't open selected console -- try
381 logical system console and VT_MASTER */
382 safe_strncpy(console, (tried == 0 ? _PATH_CONSOLE : CURRENT_VC),
383 sizeof(console));
384 tried++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000385 }
386 if (fd < 0) {
387 /* Perhaps we should panic here? */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000388#ifndef CONFIG_SYSLOGD
389 log =
390#endif
Matt Kraai18447702001-05-18 21:24:58 +0000391 safe_strncpy(console, "/dev/null", sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000392 } else {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000393 s = getenv("TERM");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000394 /* check for serial console */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000395 if (ioctl(fd, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000396 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000397 * if TERM is set to linux (the default) */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000398 if (s == NULL || strcmp(s, "linux") == 0)
399 putenv("TERM=vt102");
400#ifndef CONFIG_SYSLOGD
401 log = console;
402#endif
403 } else {
404 if (s == NULL)
405 putenv("TERM=linux");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000406 }
407 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000408 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000409 messageD(LOG, "console=%s", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000410}
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000411
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000412static void fixup_argv(int argc, char **argv, char *new_argv0)
413{
414 int len;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000415
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000416 /* Fix up argv[0] to be certain we claim to be init */
417 len = strlen(argv[0]);
418 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000419 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000420
421 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
422 len = 1;
423 while (argc > len) {
424 memset(argv[len], 0, strlen(argv[len]));
425 len++;
426 }
427}
428
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000429static pid_t run(const struct init_action *a)
Eric Andersen0298be82002-03-05 15:12:19 +0000430{
431 struct stat sb;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000432 int i, junk;
Eric Andersen0298be82002-03-05 15:12:19 +0000433 pid_t pid, pgrp, tmp_pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000434 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000435 char buf[INIT_BUFFS_SIZE + 6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000436 sigset_t nmask, omask;
Eric Andersen0298be82002-03-05 15:12:19 +0000437 static const char press_enter[] =
438#ifdef CUSTOMIZED_BANNER
439#include CUSTOMIZED_BANNER
440#endif
441 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000442
Eric Andersen0298be82002-03-05 15:12:19 +0000443 /* Block sigchild while forking. */
444 sigemptyset(&nmask);
445 sigaddset(&nmask, SIGCHLD);
446 sigprocmask(SIG_BLOCK, &nmask, &omask);
447
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000448 if ((pid = fork()) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000449 /* Clean up */
450 close(0);
451 close(1);
452 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000453 sigprocmask(SIG_SETMASK, &omask, NULL);
454
Eric Andersen0298be82002-03-05 15:12:19 +0000455 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000456 signal(SIGUSR1, SIG_DFL);
457 signal(SIGUSR2, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000458 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000459 signal(SIGTERM, SIG_DFL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000460 signal(SIGHUP, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000461 signal(SIGCONT, SIG_DFL);
462 signal(SIGSTOP, SIG_DFL);
463 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000464
Eric Andersen599e3ce2002-07-03 11:08:10 +0000465 /* Create a new session and make ourself the process
Eric Andersene8a90fb2002-10-12 04:05:48 +0000466 * group leader */
467 setsid();
Eric Andersen599e3ce2002-07-03 11:08:10 +0000468
Eric Andersen0298be82002-03-05 15:12:19 +0000469 /* Open the new terminal device */
Eric Andersene8a90fb2002-10-12 04:05:48 +0000470 if ((device_open(a->terminal, O_RDWR)) < 0) {
Eric Andersen0298be82002-03-05 15:12:19 +0000471 if (stat(a->terminal, &sb) != 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000472 message(LOG | CONSOLE, "device '%s' does not exist.",
Eric Andersen0298be82002-03-05 15:12:19 +0000473 a->terminal);
474 _exit(1);
Eric Andersen53f50612001-03-14 09:01:11 +0000475 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000476 message(LOG | CONSOLE, "Bummer, can't open %s", a->terminal);
Eric Andersen0298be82002-03-05 15:12:19 +0000477 _exit(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000478 }
Eric Andersen599e3ce2002-07-03 11:08:10 +0000479
Eric Andersen0298be82002-03-05 15:12:19 +0000480 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000481 set_term(0);
Eric Andersen0826b6b2002-07-03 23:50:16 +0000482 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000483 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000484 dup(0);
485 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000486
Eric Andersen599e3ce2002-07-03 11:08:10 +0000487 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000488 * supplied terminal to be the controlling tty. */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000489 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000490
491 /* Now fork off another process to just hang around */
492 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000493 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000494 _exit(1);
495 }
496
497 if (pid > 0) {
498
499 /* We are the parent -- wait till the child is done */
500 signal(SIGINT, SIG_IGN);
501 signal(SIGTSTP, SIG_IGN);
502 signal(SIGQUIT, SIG_IGN);
503 signal(SIGCHLD, SIG_DFL);
504
505 /* Wait for child to exit */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000506 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid);
Eric Andersen0298be82002-03-05 15:12:19 +0000507
508 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000509 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000510 if (pgrp != getpid())
511 _exit(0);
512
513 /* Use a temporary process to steal the controlling tty. */
514 if ((pid = fork()) < 0) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000515 message(LOG | CONSOLE, "Can't fork!");
Eric Andersen0298be82002-03-05 15:12:19 +0000516 _exit(1);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000517 }
Eric Andersen0298be82002-03-05 15:12:19 +0000518 if (pid == 0) {
519 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000520 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000521 _exit(0);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000522 }
523 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
Eric Andersen0298be82002-03-05 15:12:19 +0000524 if (tmp_pid < 0 && errno == ECHILD)
525 break;
526 }
527 _exit(0);
528 }
529
530 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000531 }
532
Erik Andersene132f4b2000-02-09 04:16:43 +0000533 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000534 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000535 cmd[0] = SHELL;
536 cmd[1] = "-c";
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000537 cmd[2] = strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000538 cmd[3] = NULL;
539 } else {
540 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000541 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000542 s = buf;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000543 for (tmpCmd = buf, i = 0; (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000544 if (*tmpCmd != '\0') {
545 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000546 i++;
547 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000548 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000549 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000550 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000551
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000552 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000553
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000554 /*
555 Interactive shells want to see a dash in argv[0]. This
556 typically is handled by login, argv will be setup this
557 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000558 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000559 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000560
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000561 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000562
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000563 /* skip over the dash */
564 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000565
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000566 /* find the last component in the command pathname */
567 s = get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000568
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000569 /* make a new argv[0] */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000570 if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000571 message(LOG | CONSOLE, memory_exhausted);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000572 cmd[0] = cmdpath;
573 } else {
574 cmd[0][0] = '-';
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000575 strcpy(cmd[0] + 1, s);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000576 }
577 }
578
Eric Andersen0298be82002-03-05 15:12:19 +0000579 if (a->action & ASKFIRST) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000580 char c;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000581 /*
582 * Save memory by not exec-ing anything large (like a shell)
583 * before the user wants it. This is critical if swap is not
584 * enabled and the system has low memory. Generally this will
585 * be run on the second virtual console, and the first will
586 * be allowed to start a shell or whatever an init script
587 * specifies.
588 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000589 messageD(LOG, "Waiting for enter to start '%s'"
590 "(pid %d, terminal %s)\n",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000591 cmdpath, getpid(), a->terminal);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000592 full_write(1, press_enter, sizeof(press_enter) - 1);
593 while(read(0, &c, 1) == 1 && c != '\n')
594 ;
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000595 }
596
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000597 /* Log the process name and args */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000598 message(LOG, "Starting pid %d, console %s: '%s'",
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000599 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000600
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000601#if defined CONFIG_FEATURE_INIT_COREDUMPS
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000602 if (stat(CORE_ENABLE_FLAG_FILE, &sb) == 0) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000603 struct rlimit limit;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000604
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000605 limit.rlim_cur = RLIM_INFINITY;
606 limit.rlim_max = RLIM_INFINITY;
607 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000608 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000609#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000610
Erik Andersene49d5ec2000-02-08 19:58:47 +0000611 /* Now run it. The new program will take over this PID,
612 * so nothing further in init.c should be run. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000613 execv(cmdpath, cmd);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000614
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000615 /* We're still here? Some error happened. */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000616 message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath);
Eric Andersen0298be82002-03-05 15:12:19 +0000617 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000618 }
Eric Andersen0298be82002-03-05 15:12:19 +0000619 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000620 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000621}
622
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000623static int waitfor(const struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000624{
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000625 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000626 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000627
Eric Andersen0298be82002-03-05 15:12:19 +0000628 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000629 while (1) {
630 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000631 if (wpid > 0 && wpid != pid) {
632 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000633 }
634 if (wpid == pid)
635 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000636 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000637 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000638}
639
Eric Andersen0298be82002-03-05 15:12:19 +0000640/* Run all commands of a particular type */
641static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000642{
Eric Andersen0298be82002-03-05 15:12:19 +0000643 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000644
Eric Andersen0298be82002-03-05 15:12:19 +0000645 for (a = init_action_list; a; a = tmp) {
646 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000647 if (a->action == action) {
Eric Andersen59560282002-10-22 11:45:20 +0000648 if (a->action & (SYSINIT | WAIT | CTRLALTDEL | SHUTDOWN | RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000649 waitfor(a);
650 delete_init_action(a);
651 } else if (a->action & ONCE) {
652 run(a);
653 delete_init_action(a);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000654 } else if (a->action & (RESPAWN | ASKFIRST)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000655 /* Only run stuff with pid==0. If they have
656 * a pid, that means it is still running */
657 if (a->pid == 0) {
658 a->pid = run(a);
659 }
660 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000661 }
662 }
663}
664
Erik Andersen7dc16072000-01-04 01:10:25 +0000665#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000666static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000667{
Eric Andersen813d88c2001-10-28 22:49:48 +0000668 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000669
Eric Andersena9cc8962002-09-16 06:49:06 +0000670 /* run everything to be run at "shutdown". This is done _prior_
671 * to killing everything, in case people wish to use scripts to
672 * shut things down gracefully... */
673 run_actions(SHUTDOWN);
674
Eric Andersen72f9a422001-10-28 05:12:20 +0000675 /* first disable all our signals */
676 sigemptyset(&block_signals);
677 sigaddset(&block_signals, SIGHUP);
678 sigaddset(&block_signals, SIGCHLD);
679 sigaddset(&block_signals, SIGUSR1);
680 sigaddset(&block_signals, SIGUSR2);
681 sigaddset(&block_signals, SIGINT);
682 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000683 sigaddset(&block_signals, SIGCONT);
684 sigaddset(&block_signals, SIGSTOP);
685 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000686 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000687
Erik Andersene49d5ec2000-02-08 19:58:47 +0000688 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000689 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000690
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000691 message(CONSOLE | LOG, "The system is going down NOW !!");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000692 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693
694 /* Send signals to every process _except_ pid 1 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000695 message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000696 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000697 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000698 sync();
699
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000700 message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000701 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000702 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000703
Erik Andersene49d5ec2000-02-08 19:58:47 +0000704 sync();
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000705 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2, 2, 11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000706 /* bdflush, kupdate not needed for kernels >2.2.11 */
707 bdflush(1, 0);
708 sync();
709 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000710}
711
Eric Andersen730f8262001-12-17 23:13:08 +0000712static void exec_signal(int sig)
713{
Eric Andersen0298be82002-03-05 15:12:19 +0000714 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000715 sigset_t unblock_signals;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000716
Eric Andersen0298be82002-03-05 15:12:19 +0000717 for (a = init_action_list; a; a = tmp) {
718 tmp = a->next;
719 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000720 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000721
722 /* unblock all signals, blocked in shutdown_system() */
723 sigemptyset(&unblock_signals);
724 sigaddset(&unblock_signals, SIGHUP);
725 sigaddset(&unblock_signals, SIGCHLD);
726 sigaddset(&unblock_signals, SIGUSR1);
727 sigaddset(&unblock_signals, SIGUSR2);
728 sigaddset(&unblock_signals, SIGINT);
729 sigaddset(&unblock_signals, SIGTERM);
730 sigaddset(&unblock_signals, SIGCONT);
731 sigaddset(&unblock_signals, SIGSTOP);
732 sigaddset(&unblock_signals, SIGTSTP);
733 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
734
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000735 messageD(CONSOLE | LOG, "Trying to re-exec %s", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000736 execl(a->command, a->command, NULL);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000737
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000738 message(CONSOLE | LOG, "exec of '%s' failed: %m",
Eric Andersen71ae64b2002-10-10 04:20:21 +0000739 a->command);
Eric Andersen730f8262001-12-17 23:13:08 +0000740 sync();
741 sleep(2);
742 init_reboot(RB_HALT_SYSTEM);
743 loop_forever();
744 }
745 }
746}
747
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000748static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000749{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000750 shutdown_system();
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000751 message(CONSOLE | LOG,
Eric Andersenf435a912001-11-20 05:42:57 +0000752#if #cpu(s390)
753 /* Seems the s390 console is Wierd(tm). */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000754 "The system is halted. You may reboot now."
Eric Andersenf435a912001-11-20 05:42:57 +0000755#else
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000756 "The system is halted. Press Reset or turn off power"
Eric Andersenf435a912001-11-20 05:42:57 +0000757#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000758 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000759 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000760
Erik Andersene49d5ec2000-02-08 19:58:47 +0000761 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000762 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000763
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000764 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2, 2, 0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000765 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000766 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000767 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000768
769 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000770}
771
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000772static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000773{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000774 shutdown_system();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000775 message(CONSOLE | LOG, "Please stand by while rebooting the system.");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000776 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000777
Erik Andersene49d5ec2000-02-08 19:58:47 +0000778 /* allow time for last message to reach serial console */
779 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000780
Erik Andersen4f3f7572000-04-28 00:18:56 +0000781 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000782
783 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000784}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000785
Eric Andersenc97ec342001-04-03 18:01:51 +0000786static void ctrlaltdel_signal(int sig)
787{
788 run_actions(CTRLALTDEL);
789}
790
Eric Andersen0298be82002-03-05 15:12:19 +0000791/* The SIGSTOP & SIGTSTP handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000792static void stop_handler(int sig)
793{
Eric Andersen0298be82002-03-05 15:12:19 +0000794 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000795
796 got_cont = 0;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000797 while (!got_cont)
798 pause();
Eric Andersened8a9be2001-11-30 19:10:58 +0000799 got_cont = 0;
800 errno = saved_errno;
801}
802
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000803/* The SIGCONT handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000804static void cont_handler(int sig)
805{
806 got_cont = 1;
807}
808
Erik Andersene49d5ec2000-02-08 19:58:47 +0000809#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000810
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000811static void new_init_action(int action, char *command, const char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000812{
Eric Andersen0298be82002-03-05 15:12:19 +0000813 struct init_action *new_action, *a;
Erik Andersen9e737252000-01-06 01:16:13 +0000814
Erik Andersene49d5ec2000-02-08 19:58:47 +0000815 if (*cons == '\0')
816 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000817
Eric Andersen3bc2b202002-07-29 06:39:58 +0000818 /* do not run entries if console device is not available */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000819 if (access(cons, R_OK | W_OK))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000820 return;
Eric Andersen0298be82002-03-05 15:12:19 +0000821 if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000822 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000823
Eric Andersen0298be82002-03-05 15:12:19 +0000824 new_action = calloc((size_t) (1), sizeof(struct init_action));
825 if (!new_action) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000826 message(LOG | CONSOLE, "Memory allocation failure");
Matt Kraai67a46402001-06-03 05:55:52 +0000827 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000828 }
Eric Andersen0298be82002-03-05 15:12:19 +0000829
830 /* Append to the end of the list */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000831 for (a = init_action_list; a && a->next; a = a->next);
Eric Andersen1644db92001-09-05 20:18:15 +0000832 if (a) {
Eric Andersen0298be82002-03-05 15:12:19 +0000833 a->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000834 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000835 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000836 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000837 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000838 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000839 strcpy(new_action->terminal, cons);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000840#if 0 /* calloc zeroed always */
Eric Andersen0298be82002-03-05 15:12:19 +0000841 new_action->pid = 0;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000842#endif
843 messageD(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
844 new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000845}
846
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000847static void delete_init_action(struct init_action *action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000848{
Eric Andersen0298be82002-03-05 15:12:19 +0000849 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000850
Eric Andersen0298be82002-03-05 15:12:19 +0000851 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000852 if (a == action) {
853 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000854 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000855 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000856 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000857 }
858 free(a);
859 break;
860 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000861 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000862}
863
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000864/* Make sure there is enough memory to do something useful. *
865 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
866static void check_memory(void)
867{
868 struct stat statBuf;
869
870 if (check_free_memory() > 1000)
871 return;
872
873#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
874 if (stat("/etc/fstab", &statBuf) == 0) {
875 /* swapon -a requires /proc typically */
876 new_init_action(SYSINIT, "/bin/mount -t proc proc /proc", "");
877 /* Try to turn on swap */
878 new_init_action(SYSINIT, "/sbin/swapon -a", "");
879 run_actions(SYSINIT); /* wait and removing */
880 if (check_free_memory() < 1000)
881 goto goodnight;
882 } else
883 goto goodnight;
884 return;
885#endif
886
887 goodnight:
888 message(CONSOLE, "Sorry, your computer does not have enough memory.");
889 loop_forever();
890}
891
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000892/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000893 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +0000894 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000895 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
Erik Andersen812d4662000-01-07 18:30:40 +0000896 * _is_ defined, but /etc/inittab is missing, this
897 * results in the same set of default behaviors.
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000898 */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000899static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000900{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000901#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 FILE *file;
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000903 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE];
904 char tmpConsole[CONSOLE_BUFF_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000905 char *id, *runlev, *action, *command, *eol;
906 const struct init_action_type *a = actions;
Erik Andersen7dc16072000-01-04 01:10:25 +0000907
908
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 file = fopen(INITTAB, "r");
910 if (file == NULL) {
911 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000912#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000913 /* Reboot on Ctrl-Alt-Del */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000914 new_init_action(CTRLALTDEL, "/sbin/reboot", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000915 /* Umount all filesystems on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000916 new_init_action(SHUTDOWN, "/bin/umount -a -r", "");
Eric Andersen72f9a422001-10-28 05:12:20 +0000917#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen1644db92001-09-05 20:18:15 +0000918 /* Swapoff on halt/reboot */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000919 new_init_action(SHUTDOWN, "/sbin/swapoff -a", "");
Eric Andersen1644db92001-09-05 20:18:15 +0000920#endif
Eric Andersen730f8262001-12-17 23:13:08 +0000921 /* Prepare to restart init when a HUP is received */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000922 new_init_action(RESTART, "/sbin/init", "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000923 /* Askfirst shell on tty1-4 */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000924 new_init_action(ASKFIRST, LOGIN_SHELL, "");
Eric Andersen3bc2b202002-07-29 06:39:58 +0000925 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
926 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
927 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000928 /* sysinit */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000929 new_init_action(SYSINIT, INIT_SCRIPT, "");
Erik Andersen7dc16072000-01-04 01:10:25 +0000930
Erik Andersene49d5ec2000-02-08 19:58:47 +0000931 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000932#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000933 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000934
Eric Andersen0826b6b2002-07-03 23:50:16 +0000935 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Eric Andersenb5966362000-05-31 20:04:38 +0000936 /* Skip leading spaces */
937 for (id = buf; *id == ' ' || *id == '\t'; id++);
938
939 /* Skip the line if it's a comment */
940 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000941 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000942
Erik Andersene49d5ec2000-02-08 19:58:47 +0000943 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000944 eol = strrchr(id, '\n');
945 if (eol != NULL)
946 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000947
Erik Andersene49d5ec2000-02-08 19:58:47 +0000948 /* Keep a copy around for posterity's sake (and error msgs) */
949 strcpy(lineAsRead, buf);
950
Eric Andersenb5966362000-05-31 20:04:38 +0000951 /* Separate the ID field from the runlevels */
952 runlev = strchr(id, ':');
953 if (runlev == NULL || *(runlev + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000954 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000955 continue;
956 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000957 *runlev = '\0';
958 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000959 }
960
Eric Andersenb5966362000-05-31 20:04:38 +0000961 /* Separate the runlevels from the action */
962 action = strchr(runlev, ':');
963 if (action == NULL || *(action + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000964 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000965 continue;
966 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000967 *action = '\0';
968 ++action;
969 }
970
Eric Andersen0298be82002-03-05 15:12:19 +0000971 /* Separate the action from the command */
972 command = strchr(action, ':');
973 if (command == NULL || *(command + 1) == '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000974 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +0000975 continue;
976 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000977 *command = '\0';
978 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000979 }
980
981 /* Ok, now process it */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000982 for (a = actions; a->name != 0; a++) {
Eric Andersenb5966362000-05-31 20:04:38 +0000983 if (strcmp(a->name, action) == 0) {
984 if (*id != '\0') {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000985 if(strncmp(id, "/dev/", 5) == 0)
986 id += 5;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000987 strcpy(tmpConsole, "/dev/");
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000988 safe_strncpy(tmpConsole + 5, id,
989 CONSOLE_BUFF_SIZE - 5);
Eric Andersenb5966362000-05-31 20:04:38 +0000990 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000991 }
Eric Andersen0298be82002-03-05 15:12:19 +0000992 new_init_action(a->action, command, id);
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000993 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000994 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000995 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000996 if (a->name == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000997 /* Choke on an unknown action */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +0000998 message(LOG | CONSOLE, "Bad inittab entry: %s", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000999 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001000 }
Eric Andersend8636ca2002-05-15 22:19:09 +00001001 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001002 return;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001003#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +00001004}
1005
Erik Andersene132f4b2000-02-09 04:16:43 +00001006
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001007extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001008{
Eric Andersen0298be82002-03-05 15:12:19 +00001009 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001010 pid_t wpid;
1011 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001012
Eric Andersen730f8262001-12-17 23:13:08 +00001013 if (argc > 1 && !strcmp(argv[1], "-q")) {
Eric Andersen467a18b2002-01-25 23:13:06 +00001014 /* don't assume init's pid == 1 */
1015 long *pid = find_pid_by_name("init");
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001016
1017 if (!pid || *pid <= 0) {
Eric Andersen467a18b2002-01-25 23:13:06 +00001018 pid = find_pid_by_name("linuxrc");
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001019 if (!pid || *pid <= 0)
Eric Andersen467a18b2002-01-25 23:13:06 +00001020 error_msg_and_die("no process killed");
1021 }
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001022 return kill(*pid, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001023 }
Eric Andersend73dc5b1999-11-10 23:13:02 +00001024#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001025 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1026 if (getpid() != 1
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001027#ifdef CONFIG_FEATURE_INITRD
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001028 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +00001029#endif
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001030 ) {
1031 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001032 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001033 /* Set up sig handlers -- be sure to
1034 * clear all of these in run() */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001035 signal(SIGHUP, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001036 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001037 signal(SIGUSR2, halt_signal);
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001038 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001039 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001040 signal(SIGCONT, cont_handler);
1041 signal(SIGSTOP, stop_handler);
1042 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001043
Erik Andersene49d5ec2000-02-08 19:58:47 +00001044 /* Turn off rebooting via CTL-ALT-DEL -- we get a
1045 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001046 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001047#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001048
Erik Andersen298854f2000-03-23 01:09:18 +00001049 /* Figure out what kernel this is running */
1050 kernelVersion = get_kernel_revision();
1051
Eric Andersen599e3ce2002-07-03 11:08:10 +00001052 /* Figure out where the default console should be */
1053 console_init();
1054
Erik Andersene49d5ec2000-02-08 19:58:47 +00001055 /* Close whatever files are open, and reset the console. */
1056 close(0);
1057 close(1);
1058 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001059
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001060 if (device_open(console, O_RDWR | O_NOCTTY) == 0) {
1061 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001062 close(0);
1063 }
1064
Erik Andersen983b51b2000-04-04 18:14:25 +00001065 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001066 setsid();
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001067 {
1068 const char * const *e;
1069 /* Make sure environs is set to something sane */
1070 for(e = environment; *e; e++)
1071 putenv(*e);
1072 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001073 /* Hello world */
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001074 message(MAYBE_CONSOLE | LOG, "init started: %s", full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001075
Erik Andersene49d5ec2000-02-08 19:58:47 +00001076 /* Make sure there is enough memory to do something useful. */
1077 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +00001078
Erik Andersene49d5ec2000-02-08 19:58:47 +00001079 /* Check if we are supposed to be in single user mode */
1080 if (argc > 1 && (!strcmp(argv[1], "single") ||
1081 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001082 /* Start a shell on console */
1083 new_init_action(RESPAWN, LOGIN_SHELL, "");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001084 } else {
1085 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001086
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001087 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001088 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +00001089 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001090 * of "askfirst" shells */
1091 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001092 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001093
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001094 /* Make the command line just say "init" -- thats all, nothing else */
1095 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001096
Erik Andersene49d5ec2000-02-08 19:58:47 +00001097 /* Now run everything that needs to be run */
1098
1099 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001100 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001101
Erik Andersene49d5ec2000-02-08 19:58:47 +00001102 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001103 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001104
Erik Andersene49d5ec2000-02-08 19:58:47 +00001105 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001106 run_actions(ONCE);
1107
Erik Andersene49d5ec2000-02-08 19:58:47 +00001108 /* If there is nothing else to do, stop */
Eric Andersen0298be82002-03-05 15:12:19 +00001109 if (init_action_list == NULL) {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +00001110 message(LOG | CONSOLE,
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001111 "No more tasks for init -- sleeping forever.");
Matt Kraai67a46402001-06-03 05:55:52 +00001112 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001113 }
1114
1115 /* Now run the looping stuff for the rest of forever */
1116 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001117 /* run the respawn stuff */
1118 run_actions(RESPAWN);
1119
1120 /* run the askfirst stuff */
1121 run_actions(ASKFIRST);
1122
1123 /* Don't consume all CPU time -- sleep a bit */
1124 sleep(1);
1125
Erik Andersene49d5ec2000-02-08 19:58:47 +00001126 /* Wait for a child process to exit */
1127 wpid = wait(&status);
Eric Andersencf1fee02002-12-17 09:48:16 +00001128 while (wpid > 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001129 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001130 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001131 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001132 /* Set the pid to 0 so that the process gets
1133 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001134 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001135 message(LOG, "Process '%s' (pid %d) exited. "
Glenn L McGrathb4a1baa2003-01-13 22:09:50 +00001136 "Scheduling it for restart.",
1137 a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001138 }
1139 }
Eric Andersencf1fee02002-12-17 09:48:16 +00001140 /* see if anyone else is waiting to be reaped */
1141 wpid = waitpid (-1, &status, WNOHANG);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001142 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001143 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001144}
Erik Andersen029011b2000-03-04 21:19:32 +00001145
1146/*
1147Local Variables:
1148c-file-style: "linux"
1149c-basic-offset: 4
1150tab-width: 4
1151End:
1152*/