blob: 229e3c4d6f648b633f29162f699a0b5b1043f2b8 [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 {
58 unsigned short v_active; /* active vt */
59 unsigned short v_signal; /* signal to send */
60 unsigned short v_state; /* vt bitmask */
61};
Mark Whitley59ab0252001-01-23 22:30:04 +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 {
66 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];
80};
81
82
Eric Andersen72f9a422001-10-28 05:12:20 +000083#if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__)
84 #include <sys/reboot.h>
85 #define init_reboot(magic) reboot(magic)
86#else
87 #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
88#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
109 #include <sys/kdaemon.h>
Erik Andersen4f3f7572000-04-28 00:18:56 +0000110#else
Eric Andersenb6b519b2001-04-09 23:52:18 +0000111 extern int bdflush (int func, long int data);
112#endif
Erik Andersen4f3f7572000-04-28 00:18:56 +0000113
Matt Kraai7bd773c2001-06-12 20:55:02 +0000114#define SHELL "/bin/sh" /* Default shell */
115#define LOGIN_SHELL "-" SHELL /* Default login shell */
Erik Andersen42094cd2000-03-20 21:34:52 +0000116#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000117#ifndef INIT_SCRIPT
Erik Andersen42094cd2000-03-20 21:34:52 +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
123/* Allowed init action types */
Eric Andersen0298be82002-03-05 15:12:19 +0000124#define SYSINIT 0x001
125#define RESPAWN 0x002
126#define ASKFIRST 0x004
127#define WAIT 0x008
128#define ONCE 0x010
129#define CTRLALTDEL 0x020
130#define SHUTDOWN 0x040
131#define RESTART 0x080
Erik Andersen7dc16072000-01-04 01:10:25 +0000132
Erik Andersen42094cd2000-03-20 21:34:52 +0000133/* A mapping between "inittab" action name strings and action type codes. */
Eric Andersen0298be82002-03-05 15:12:19 +0000134struct init_action_type {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135 const char *name;
Eric Andersen0298be82002-03-05 15:12:19 +0000136 int action;
137};
Erik Andersen7dc16072000-01-04 01:10:25 +0000138
Eric Andersen0298be82002-03-05 15:12:19 +0000139static const struct init_action_type actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000140 {"sysinit", SYSINIT},
141 {"respawn", RESPAWN},
142 {"askfirst", ASKFIRST},
143 {"wait", WAIT},
144 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000145 {"ctrlaltdel", CTRLALTDEL},
Eric Andersenc97ec342001-04-03 18:01:51 +0000146 {"shutdown", SHUTDOWN},
Eric Andersen730f8262001-12-17 23:13:08 +0000147 {"restart", RESTART},
Pavel Roskin9027bcf2000-07-14 15:44:25 +0000148 {0, 0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000149};
150
Eric Andersen0298be82002-03-05 15:12:19 +0000151/* Set up a linked list of init_actions, to be read from inittab */
152struct init_action {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000153 pid_t pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000154 char command[INIT_BUFFS_SIZE];
155 char terminal[INIT_BUFFS_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000156 struct init_action *next;
157 int action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000158};
Erik Andersen7dc16072000-01-04 01:10:25 +0000159
Eric Andersen0298be82002-03-05 15:12:19 +0000160/* Static variables */
161static struct init_action *init_action_list = NULL;
Matt Kraai439e3df2001-07-23 14:52:08 +0000162static char *secondConsole = VC_2;
163static char *thirdConsole = VC_3;
164static char *fourthConsole = VC_4;
165static char *log = VC_5;
Erik Andersen42094cd2000-03-20 21:34:52 +0000166static int kernelVersion = 0;
167static char termType[32] = "TERM=linux";
168static char console[32] = _PATH_CONSOLE;
Eric Andersen0298be82002-03-05 15:12:19 +0000169static sig_atomic_t got_cont = 0;
170static const int LOG = 0x1;
171static const int CONSOLE = 0x2;
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000172#if defined CONFIG_FEATURE_EXTRA_QUIET
Eric Andersen0298be82002-03-05 15:12:19 +0000173static const int MAYBE_CONSOLE = 0x0;
174#else
175#define MAYBE_CONSOLE CONSOLE
176#endif
177#ifndef RB_HALT_SYSTEM
178static const int RB_HALT_SYSTEM = 0xcdef0123;
179static const int RB_ENABLE_CAD = 0x89abcdef;
180static const int RB_DISABLE_CAD = 0;
181#define RB_POWER_OFF 0x4321fedc
182static const int RB_AUTOBOOT = 0x01234567;
183#endif
Erik Andersen42094cd2000-03-20 21:34:52 +0000184
Eric Andersen0298be82002-03-05 15:12:19 +0000185/* Function prototypes */
186static void delete_init_action(struct init_action *a);
187static int waitfor(struct init_action *a);
188
Eric Andersen0460ff21999-10-25 23:32:44 +0000189
Eric Andersen74400cc2001-10-18 04:11:39 +0000190static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000191{
192 while (1)
193 sleep (1);
194}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000195
Erik Andersen42094cd2000-03-20 21:34:52 +0000196/* Print a message to the specified device.
197 * Device may be bitwise-or'd from LOG | CONSOLE */
Eric Andersenfedce062001-11-17 07:27:14 +0000198#ifdef DEBUG_INIT
199static inline messageND(int device, char *fmt, ...) { }
200#else
201#define messageND message
202#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000203static void message(int device, char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
Erik Andersen93d65132000-04-06 08:06:36 +0000204static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000205{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 va_list arguments;
207 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000208
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000209#ifdef CONFIG_SYSLOGD
Eric Andersen4c781471999-11-26 08:12:56 +0000210
Erik Andersene49d5ec2000-02-08 19:58:47 +0000211 /* Log the message to syslogd */
212 if (device & LOG) {
213 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000214
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215 va_start(arguments, fmt);
216 vsnprintf(msg, sizeof(msg), fmt, arguments);
217 va_end(arguments);
Eric Andersen0298be82002-03-05 15:12:19 +0000218 syslog_msg(LOG_USER, LOG_INFO, msg);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000219 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000220#else
221 static int log_fd = -1;
222
223 /* Take full control of the log tty, and never close it.
224 * It's mine, all mine! Muhahahaha! */
225 if (log_fd < 0) {
226 if (log == NULL) {
227 /* don't even try to log, because there is no such console */
228 log_fd = -2;
229 /* log to main console instead */
230 device = CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000231 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
232 log_fd = -2;
Eric Andersen72f9a422001-10-28 05:12:20 +0000233 fprintf(stderr, "Bummer, can't write to log on %s!\n", log);
Erik Andersene132f4b2000-02-09 04:16:43 +0000234 log = NULL;
235 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000236 }
237 }
238 if ((device & LOG) && (log_fd >= 0)) {
239 va_start(arguments, fmt);
240 vdprintf(log_fd, fmt, arguments);
241 va_end(arguments);
242 }
Eric Andersen4c781471999-11-26 08:12:56 +0000243#endif
244
Erik Andersene49d5ec2000-02-08 19:58:47 +0000245 if (device & CONSOLE) {
246 /* Always send console messages to /dev/console so people will see them. */
247 if (
248 (fd =
Eric Andersen0298be82002-03-05 15:12:19 +0000249 device_open(_PATH_CONSOLE, O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000250 va_start(arguments, fmt);
251 vdprintf(fd, fmt, arguments);
252 va_end(arguments);
253 close(fd);
254 } else {
255 fprintf(stderr, "Bummer, can't print: ");
256 va_start(arguments, fmt);
257 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 va_end(arguments);
259 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000260 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000261}
262
Eric Andersen0460ff21999-10-25 23:32:44 +0000263/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000264static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000265{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000267
Erik Andersene49d5ec2000-02-08 19:58:47 +0000268 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000269
Erik Andersene49d5ec2000-02-08 19:58:47 +0000270 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000271 tty.c_cc[VINTR] = 3; /* C-c */
272 tty.c_cc[VQUIT] = 28; /* C-\ */
273 tty.c_cc[VERASE] = 127; /* C-? */
274 tty.c_cc[VKILL] = 21; /* C-u */
275 tty.c_cc[VEOF] = 4; /* C-d */
276 tty.c_cc[VSTART] = 17; /* C-q */
277 tty.c_cc[VSTOP] = 19; /* C-s */
278 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000279
Erik Andersene49d5ec2000-02-08 19:58:47 +0000280 /* use line dicipline 0 */
281 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000282
Erik Andersene49d5ec2000-02-08 19:58:47 +0000283 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000284 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
Eric Andersend8862922001-04-23 15:14:11 +0000285 tty.c_cflag |= CREAD|HUPCL|CLOCAL;
286
Eric Andersen08b10341999-11-19 02:38:58 +0000287
Erik Andersene49d5ec2000-02-08 19:58:47 +0000288 /* input modes */
289 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000290
Erik Andersene49d5ec2000-02-08 19:58:47 +0000291 /* output modes */
292 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000293
Erik Andersene49d5ec2000-02-08 19:58:47 +0000294 /* local modes */
295 tty.c_lflag =
296 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000297
Erik Andersene49d5ec2000-02-08 19:58:47 +0000298 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000299}
300
Eric Andersenbc5941a2000-12-06 23:17:37 +0000301/* How much memory does this machine have?
302 Units are kBytes to avoid overflow on 4GB machines */
Eric Andersen74400cc2001-10-18 04:11:39 +0000303static int check_free_memory(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000304{
Erik Andersend07ee462000-02-21 21:26:32 +0000305 struct sysinfo info;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000306 unsigned int result, u, s=10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000307
Erik Andersend07ee462000-02-21 21:26:32 +0000308 if (sysinfo(&info) != 0) {
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000309 perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000310 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000311 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000312
313 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
314 * Kernels 2.4.0 return info.mem_unit in bytes. */
315 u = info.mem_unit;
316 if (u==0) u=1;
317 while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
318 result = (info.totalram>>s) + (info.totalswap>>s);
319 result = result*u;
320 if (result < 0) result = INT_MAX;
321 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000322}
323
Eric Andersen74400cc2001-10-18 04:11:39 +0000324static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000325{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000326 int fd;
327 int tried_devcons = 0;
328 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000329 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000330 struct serial_struct sr;
331 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000332
Erik Andersene49d5ec2000-02-08 19:58:47 +0000333 if ((s = getenv("TERM")) != NULL) {
334 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
335 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000336
Erik Andersene49d5ec2000-02-08 19:58:47 +0000337 if ((s = getenv("CONSOLE")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000338 safe_strncpy(console, s, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000339 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000340#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000341 /* sparc kernel supports console=tty[ab] parameter which is also
342 * passed to init, so catch it here */
343 else if ((s = getenv("console")) != NULL) {
344 /* remap tty[ab] to /dev/ttyS[01] */
345 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000346 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000347 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000348 safe_strncpy(console, SC_1, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000349 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000350#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000351 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000352 /* 2.2 kernels: identify the real console backend and try to use it */
353 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
354 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000355 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000356 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
357 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000358 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000359 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000360 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000361 tried_devcons++;
362 }
Eric Andersen07e52971999-11-07 07:38:08 +0000363 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000364
365 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
366 /* Can't open selected console -- try /dev/console */
367 if (!tried_devcons) {
368 tried_devcons++;
Matt Kraai18447702001-05-18 21:24:58 +0000369 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000370 continue;
371 }
372 /* Can't open selected console -- try vt1 */
373 if (!tried_vtprimary) {
374 tried_vtprimary++;
Matt Kraai439e3df2001-07-23 14:52:08 +0000375 safe_strncpy(console, VC_1, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000376 continue;
377 }
378 break;
379 }
380 if (fd < 0) {
381 /* Perhaps we should panic here? */
Matt Kraai18447702001-05-18 21:24:58 +0000382 safe_strncpy(console, "/dev/null", sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000383 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000384 /* check for serial console and disable logging to tty5 &
385 * running a shell to tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000386 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000387 log = NULL;
388 secondConsole = NULL;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000389 thirdConsole = NULL;
390 fourthConsole = NULL;
Erik Andersenfa4718e2000-02-21 19:25:12 +0000391 /* Force the TERM setting to vt102 for serial console --
392 * iff TERM is set to linux (the default) */
393 if (strcmp( termType, "TERM=linux" ) == 0)
Matt Kraai18447702001-05-18 21:24:58 +0000394 safe_strncpy(termType, "TERM=vt102", sizeof(termType));
Erik Andersene132f4b2000-02-09 04:16:43 +0000395 message(LOG | CONSOLE,
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000396 "\rserial console detected. Disabling virtual terminals.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000397 }
398 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000399 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000400 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000401}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000402
403static void fixup_argv(int argc, char **argv, char *new_argv0)
404{
405 int len;
406 /* Fix up argv[0] to be certain we claim to be init */
407 len = strlen(argv[0]);
408 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000409 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000410
411 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
412 len = 1;
413 while (argc > len) {
414 memset(argv[len], 0, strlen(argv[len]));
415 len++;
416 }
417}
418
Eric Andersen0298be82002-03-05 15:12:19 +0000419/* Make sure there is enough memory to do something useful. *
420 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
421static void check_memory(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000422{
Eric Andersen0298be82002-03-05 15:12:19 +0000423 struct stat statBuf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000424
Eric Andersen0298be82002-03-05 15:12:19 +0000425 if (check_free_memory() > 1000)
426 return;
427
428#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
429 if (stat("/etc/fstab", &statBuf) == 0) {
430 /* swapon -a requires /proc typically */
431 system("/bin/mount -t proc proc /proc");
432 /* Try to turn on swap */
433 system("/sbin/swapon -a");
434 if (check_free_memory() < 1000)
435 goto goodnight;
436 } else
437 goto goodnight;
438 return;
Eric Andersen38624232001-01-25 00:04:16 +0000439#endif
440
Eric Andersen0298be82002-03-05 15:12:19 +0000441 goodnight:
442 message(CONSOLE,
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000443 "\rSorry, your computer does not have enough memory.\n");
Eric Andersen0298be82002-03-05 15:12:19 +0000444 loop_forever();
445}
446
447static pid_t run(struct init_action *a)
448{
449 struct stat sb;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000450 int i, j, junk;
Eric Andersen0298be82002-03-05 15:12:19 +0000451 pid_t pid, pgrp, tmp_pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000452 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
453 char buf[INIT_BUFFS_SIZE+6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000454 sigset_t nmask, omask;
Eric Andersen477aedd2001-02-20 18:01:50 +0000455 char *environment[MAXENV+1] = {
Eric Andersen7f197852001-03-16 01:14:04 +0000456 termType,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000457 "HOME=/",
Eric Andersen72f9a422001-10-28 05:12:20 +0000458 "PATH=" _PATH_STDPATH,
Matt Kraai7bd773c2001-06-12 20:55:02 +0000459 "SHELL=" SHELL,
Eric Andersen7f197852001-03-16 01:14:04 +0000460 "USER=root",
461 NULL
Erik Andersene49d5ec2000-02-08 19:58:47 +0000462 };
Eric Andersen0298be82002-03-05 15:12:19 +0000463 static const char press_enter[] =
464#ifdef CUSTOMIZED_BANNER
465#include CUSTOMIZED_BANNER
466#endif
467 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000468
Eric Andersen7f197852001-03-16 01:14:04 +0000469 /* inherit environment to the child, merging our values -andy */
470 for (i=0; environ[i]; i++) {
471 for (j=0; environment[j]; j++) {
472 s = strchr(environment[j], '=');
473 if (!strncmp(environ[i], environment[j], s - environment[j]))
474 break;
475 }
476 if (!environment[j]) {
477 environment[j++] = environ[i];
478 environment[j] = NULL;
479 }
Eric Andersen477aedd2001-02-20 18:01:50 +0000480 }
481
Eric Andersen0298be82002-03-05 15:12:19 +0000482 /* Block sigchild while forking. */
483 sigemptyset(&nmask);
484 sigaddset(&nmask, SIGCHLD);
485 sigprocmask(SIG_BLOCK, &nmask, &omask);
486
Eric Andersen72f9a422001-10-28 05:12:20 +0000487 if ((pid = fork()) == 0)
Eric Andersen72f9a422001-10-28 05:12:20 +0000488 {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000489 /* Clean up */
490 close(0);
491 close(1);
492 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000493 sigprocmask(SIG_SETMASK, &omask, NULL);
494
Eric Andersen0298be82002-03-05 15:12:19 +0000495 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000496 signal(SIGUSR1, SIG_DFL);
497 signal(SIGUSR2, SIG_DFL);
Eric Andersen0298be82002-03-05 15:12:19 +0000498 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000499 signal(SIGTERM, SIG_DFL);
Eric Andersen0298be82002-03-05 15:12:19 +0000500 signal(SIGHUP, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000501 signal(SIGCONT, SIG_DFL);
502 signal(SIGSTOP, SIG_DFL);
503 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000504
Eric Andersen599e3ce2002-07-03 11:08:10 +0000505 /* Create a new session and make ourself the process
506 * group leader for non-interactive jobs */
507 if ((a->action & (RESPAWN))==0)
508 setsid();
509
Eric Andersen0298be82002-03-05 15:12:19 +0000510 /* Open the new terminal device */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000511 if ((device_open(a->terminal, O_RDWR|O_NOCTTY)) < 0) {
Eric Andersen0298be82002-03-05 15:12:19 +0000512 if (stat(a->terminal, &sb) != 0) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000513 message(LOG | CONSOLE, "\rdevice '%s' does not exist.\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000514 a->terminal);
515 _exit(1);
Eric Andersen53f50612001-03-14 09:01:11 +0000516 }
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000517 message(LOG | CONSOLE, "\rBummer, can't open %s\n", a->terminal);
Eric Andersen0298be82002-03-05 15:12:19 +0000518 _exit(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000519 }
Eric Andersen599e3ce2002-07-03 11:08:10 +0000520
521 /* Non-interactive jobs should not get a controling tty */
522 if ((a->action & (RESPAWN))==0)
Eric Andersen0826b6b2002-07-03 23:50:16 +0000523 (void)ioctl(0, TIOCSCTTY, 0);
Eric Andersen599e3ce2002-07-03 11:08:10 +0000524
Eric Andersen0298be82002-03-05 15:12:19 +0000525 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000526 set_term(0);
Eric Andersen0826b6b2002-07-03 23:50:16 +0000527 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000528 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000529 dup(0);
530 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000531
Eric Andersen599e3ce2002-07-03 11:08:10 +0000532 /* For interactive jobs, create a new session
533 * and become the process group leader */
534 if ((a->action & (RESPAWN)))
535 setsid();
536
537 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000538 * supplied terminal to be the controlling tty. */
Eric Andersen599e3ce2002-07-03 11:08:10 +0000539 if (a->action & (SYSINIT|WAIT|CTRLALTDEL|SHUTDOWN|RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000540
541 /* Now fork off another process to just hang around */
542 if ((pid = fork()) < 0) {
543 message(LOG | CONSOLE, "Can't fork!\n");
544 _exit(1);
545 }
546
547 if (pid > 0) {
548
549 /* We are the parent -- wait till the child is done */
550 signal(SIGINT, SIG_IGN);
551 signal(SIGTSTP, SIG_IGN);
552 signal(SIGQUIT, SIG_IGN);
553 signal(SIGCHLD, SIG_DFL);
554
555 /* Wait for child to exit */
Eric Andersen599e3ce2002-07-03 11:08:10 +0000556 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid)
557 ;
Eric Andersen0298be82002-03-05 15:12:19 +0000558
559 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000560 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000561 if (pgrp != getpid())
562 _exit(0);
563
564 /* Use a temporary process to steal the controlling tty. */
565 if ((pid = fork()) < 0) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000566 message(LOG | CONSOLE, "\rCan't fork!\n");
Eric Andersen0298be82002-03-05 15:12:19 +0000567 _exit(1);
568 }
569 if (pid == 0) {
570 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000571 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000572 _exit(0);
573 }
574 while((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
575 if (tmp_pid < 0 && errno == ECHILD)
576 break;
577 }
578 _exit(0);
579 }
580
581 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000582 }
583
Erik Andersene132f4b2000-02-09 04:16:43 +0000584 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000585 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000586 cmd[0] = SHELL;
587 cmd[1] = "-c";
Eric Andersen0826b6b2002-07-03 23:50:16 +0000588 strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000589 cmd[2] = buf;
590 cmd[3] = NULL;
591 } else {
592 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000593 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000594 s = buf;
595 for (tmpCmd = buf, i = 0;
596 (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000597 if (*tmpCmd != '\0') {
598 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000599 i++;
600 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000601 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000602 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000603 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000604
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000605 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000606
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000607 /*
608 Interactive shells want to see a dash in argv[0]. This
609 typically is handled by login, argv will be setup this
610 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000611 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000612 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000613
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000614 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000615
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000616 /* skip over the dash */
617 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000618
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000619 /* find the last component in the command pathname */
620 s = get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000621
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000622 /* make a new argv[0] */
623 if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
624 message(LOG | CONSOLE, "malloc failed");
625 cmd[0] = cmdpath;
626 } else {
627 cmd[0][0] = '-';
628 strcpy(cmd[0]+1, s);
629 }
630 }
631
Eric Andersen0298be82002-03-05 15:12:19 +0000632 if (a->action & ASKFIRST) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000633 /*
634 * Save memory by not exec-ing anything large (like a shell)
635 * before the user wants it. This is critical if swap is not
636 * enabled and the system has low memory. Generally this will
637 * be run on the second virtual console, and the first will
638 * be allowed to start a shell or whatever an init script
639 * specifies.
640 */
Eric Andersen0298be82002-03-05 15:12:19 +0000641 messageND(LOG, "Waiting for enter to start '%s' (pid %d, terminal %s)\n",
642 cmdpath, getpid(), a->terminal);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000643 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
644 getc(stdin);
645 }
646
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000647 /* Log the process name and args */
Eric Andersenfedce062001-11-17 07:27:14 +0000648 messageND(LOG, "Starting pid %d, console %s: '%s'\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000649 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000650
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000651#if defined CONFIG_FEATURE_INIT_COREDUMPS
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000652 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
653 struct rlimit limit;
654 limit.rlim_cur = RLIM_INFINITY;
655 limit.rlim_max = RLIM_INFINITY;
656 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000657 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000658#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000659
Erik Andersene49d5ec2000-02-08 19:58:47 +0000660 /* Now run it. The new program will take over this PID,
661 * so nothing further in init.c should be run. */
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000662 execve(cmdpath, cmd, environment);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000663
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000664 /* We're still here? Some error happened. */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000665 message(LOG | CONSOLE, "\rBummer, could not run '%s': %s\n", cmdpath,
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000666 strerror(errno));
Eric Andersen0298be82002-03-05 15:12:19 +0000667 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000668 }
Eric Andersen0298be82002-03-05 15:12:19 +0000669 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000670 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000671}
672
Eric Andersen0298be82002-03-05 15:12:19 +0000673static int waitfor(struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000674{
Eric Andersen0298be82002-03-05 15:12:19 +0000675 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000676 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000677
Eric Andersen0298be82002-03-05 15:12:19 +0000678 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000679 while (1) {
680 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000681 if (wpid > 0 && wpid != pid) {
682 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000683 }
684 if (wpid == pid)
685 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000686 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000687 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000688}
689
Eric Andersen0298be82002-03-05 15:12:19 +0000690/* Run all commands of a particular type */
691static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000692{
Eric Andersen0298be82002-03-05 15:12:19 +0000693 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000694
Eric Andersen0298be82002-03-05 15:12:19 +0000695 for (a = init_action_list; a; a = tmp) {
696 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000697 if (a->action == action) {
Eric Andersen0298be82002-03-05 15:12:19 +0000698 if (a->action & (SYSINIT|WAIT|CTRLALTDEL|SHUTDOWN|RESTART)) {
699 waitfor(a);
700 delete_init_action(a);
701 } else if (a->action & ONCE) {
702 run(a);
703 delete_init_action(a);
704 } else if (a->action & (RESPAWN|ASKFIRST)) {
705 /* Only run stuff with pid==0. If they have
706 * a pid, that means it is still running */
707 if (a->pid == 0) {
708 a->pid = run(a);
709 }
710 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000711 }
712 }
713}
714
715
Erik Andersen7dc16072000-01-04 01:10:25 +0000716#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000717static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000718{
Eric Andersen813d88c2001-10-28 22:49:48 +0000719 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000720
Eric Andersen72f9a422001-10-28 05:12:20 +0000721 /* first disable all our signals */
722 sigemptyset(&block_signals);
723 sigaddset(&block_signals, SIGHUP);
724 sigaddset(&block_signals, SIGCHLD);
725 sigaddset(&block_signals, SIGUSR1);
726 sigaddset(&block_signals, SIGUSR2);
727 sigaddset(&block_signals, SIGINT);
728 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000729 sigaddset(&block_signals, SIGCONT);
730 sigaddset(&block_signals, SIGSTOP);
731 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000732 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000733
Erik Andersene49d5ec2000-02-08 19:58:47 +0000734 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000735 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000736
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000737 message(CONSOLE|LOG, "\n\rThe system is going down NOW !!\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000738 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000739
740 /* Send signals to every process _except_ pid 1 */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000741 message(CONSOLE|LOG, "\rSending SIGTERM to all processes.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000742 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000743 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000744 sync();
745
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000746 message(CONSOLE|LOG, "\rSending SIGKILL to all processes.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000747 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000748 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000749
Matt Kraai8fc364e2001-04-12 20:12:16 +0000750 /* run everything to be run at "shutdown" */
Eric Andersenc97ec342001-04-03 18:01:51 +0000751 run_actions(SHUTDOWN);
Erik Andersene132f4b2000-02-09 04:16:43 +0000752
Erik Andersene49d5ec2000-02-08 19:58:47 +0000753 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000754 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000755 /* bdflush, kupdate not needed for kernels >2.2.11 */
756 bdflush(1, 0);
757 sync();
758 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000759}
760
Eric Andersen730f8262001-12-17 23:13:08 +0000761static void exec_signal(int sig)
762{
Eric Andersen0298be82002-03-05 15:12:19 +0000763 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000764 sigset_t unblock_signals;
765
Eric Andersen0298be82002-03-05 15:12:19 +0000766 for (a = init_action_list; a; a = tmp) {
767 tmp = a->next;
768 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000769 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000770
771 /* unblock all signals, blocked in shutdown_system() */
772 sigemptyset(&unblock_signals);
773 sigaddset(&unblock_signals, SIGHUP);
774 sigaddset(&unblock_signals, SIGCHLD);
775 sigaddset(&unblock_signals, SIGUSR1);
776 sigaddset(&unblock_signals, SIGUSR2);
777 sigaddset(&unblock_signals, SIGINT);
778 sigaddset(&unblock_signals, SIGTERM);
779 sigaddset(&unblock_signals, SIGCONT);
780 sigaddset(&unblock_signals, SIGSTOP);
781 sigaddset(&unblock_signals, SIGTSTP);
782 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
783
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000784 message(CONSOLE|LOG, "\rTrying to re-exec %s\n", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000785 execl(a->command, a->command, NULL);
Eric Andersen730f8262001-12-17 23:13:08 +0000786
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000787 message(CONSOLE|LOG, "\rexec of '%s' failed: %s\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000788 a->command, sys_errlist[errno]);
Eric Andersen730f8262001-12-17 23:13:08 +0000789 sync();
790 sleep(2);
791 init_reboot(RB_HALT_SYSTEM);
792 loop_forever();
793 }
794 }
795}
796
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000797static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000798{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000799 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000800 message(CONSOLE|LOG,
Eric Andersenf435a912001-11-20 05:42:57 +0000801#if #cpu(s390)
802 /* Seems the s390 console is Wierd(tm). */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000803 "\rThe system is halted. You may reboot now.\n"
Eric Andersenf435a912001-11-20 05:42:57 +0000804#else
805 /* secondConsole is NULL for a serial console */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000806 "\rThe system is halted. Press %s or turn off power\n",
Eric Andersenf435a912001-11-20 05:42:57 +0000807 (secondConsole == NULL)? "Reset" : "CTRL-ALT-DEL"
808#endif
809 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000810 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000811
Erik Andersene49d5ec2000-02-08 19:58:47 +0000812 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000813 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000814
Eric Andersenbd22ed82000-07-08 18:55:24 +0000815 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000816 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000817 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000818 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000819
820 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000821}
822
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000823static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000824{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000825 shutdown_system();
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000826 message(CONSOLE|LOG, "\rPlease stand by while rebooting the system.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000827 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000828
Erik Andersene49d5ec2000-02-08 19:58:47 +0000829 /* allow time for last message to reach serial console */
830 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000831
Erik Andersen4f3f7572000-04-28 00:18:56 +0000832 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000833
834 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000835}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000836
Eric Andersenc97ec342001-04-03 18:01:51 +0000837static void ctrlaltdel_signal(int sig)
838{
839 run_actions(CTRLALTDEL);
840}
841
Eric Andersen0298be82002-03-05 15:12:19 +0000842/* The SIGSTOP & SIGTSTP handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000843static void stop_handler(int sig)
844{
Eric Andersen0298be82002-03-05 15:12:19 +0000845 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000846
847 got_cont = 0;
848 while(!got_cont) pause();
849 got_cont = 0;
850 errno = saved_errno;
851}
852
Eric Andersen0298be82002-03-05 15:12:19 +0000853/* The SIGCONT handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000854static void cont_handler(int sig)
855{
856 got_cont = 1;
857}
858
Erik Andersene49d5ec2000-02-08 19:58:47 +0000859#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000860
Eric Andersen0298be82002-03-05 15:12:19 +0000861static void new_init_action(int action, char *command, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000862{
Eric Andersen0298be82002-03-05 15:12:19 +0000863 struct init_action *new_action, *a;
Erik Andersen9e737252000-01-06 01:16:13 +0000864
Erik Andersene49d5ec2000-02-08 19:58:47 +0000865 if (*cons == '\0')
866 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000867
Eric Andersen0298be82002-03-05 15:12:19 +0000868 /* If BusyBox detects that a serial console is in use, then entries
869 * not refering to the console or null devices will _not_ be run.
Erik Andersene49d5ec2000-02-08 19:58:47 +0000870 * The exception to this rule is the null device.
871 */
872 if (secondConsole == NULL && strcmp(cons, console)
873 && strcmp(cons, "/dev/null"))
874 return;
Eric Andersen0298be82002-03-05 15:12:19 +0000875 if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000876 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000877
Eric Andersen0298be82002-03-05 15:12:19 +0000878 new_action = calloc((size_t) (1), sizeof(struct init_action));
879 if (!new_action) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000880 message(LOG | CONSOLE, "\rMemory allocation failure\n");
Matt Kraai67a46402001-06-03 05:55:52 +0000881 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000882 }
Eric Andersen0298be82002-03-05 15:12:19 +0000883
884 /* Append to the end of the list */
885 for (a = init_action_list; a && a->next; a = a->next) ;
Eric Andersen1644db92001-09-05 20:18:15 +0000886 if (a) {
Eric Andersen0298be82002-03-05 15:12:19 +0000887 a->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000888 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000889 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000890 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000891 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000892 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000893 strcpy(new_action->terminal, cons);
Eric Andersen0298be82002-03-05 15:12:19 +0000894 new_action->pid = 0;
895// message(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
896// new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000897}
898
Eric Andersen0298be82002-03-05 15:12:19 +0000899static void delete_init_action(struct init_action * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000900{
Eric Andersen0298be82002-03-05 15:12:19 +0000901 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902
Eric Andersen0298be82002-03-05 15:12:19 +0000903 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000904 if (a == action) {
905 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000906 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000907 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000908 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000909 }
910 free(a);
911 break;
912 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000913 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000914}
915
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000916/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000917 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +0000918 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000919 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
Erik Andersen812d4662000-01-07 18:30:40 +0000920 * _is_ defined, but /etc/inittab is missing, this
921 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000922 * */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000923static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000924{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000925#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000926 FILE *file;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000927 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE], tmpConsole[INIT_BUFFS_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000928 char *id, *runlev, *action, *command, *eol;
929 const struct init_action_type *a = actions;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000930 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000931
932
Erik Andersene49d5ec2000-02-08 19:58:47 +0000933 file = fopen(INITTAB, "r");
934 if (file == NULL) {
935 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000936#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000937 /* Reboot on Ctrl-Alt-Del */
Eric Andersen0298be82002-03-05 15:12:19 +0000938 new_init_action(CTRLALTDEL, "/sbin/reboot", console);
Eric Andersen1644db92001-09-05 20:18:15 +0000939 /* Umount all filesystems on halt/reboot */
Eric Andersen0298be82002-03-05 15:12:19 +0000940 new_init_action(SHUTDOWN, "/bin/umount -a -r", console);
Eric Andersen72f9a422001-10-28 05:12:20 +0000941#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen1644db92001-09-05 20:18:15 +0000942 /* Swapoff on halt/reboot */
Eric Andersen0298be82002-03-05 15:12:19 +0000943 new_init_action(SHUTDOWN, "/sbin/swapoff -a", console);
Eric Andersen1644db92001-09-05 20:18:15 +0000944#endif
Eric Andersen730f8262001-12-17 23:13:08 +0000945 /* Prepare to restart init when a HUP is received */
Eric Andersen0298be82002-03-05 15:12:19 +0000946 new_init_action(RESTART, "/sbin/init", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000947 /* Askfirst shell on tty1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000948 new_init_action(ASKFIRST, LOGIN_SHELL, console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000949 /* Askfirst shell on tty2 */
950 if (secondConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +0000951 new_init_action(ASKFIRST, LOGIN_SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000952 /* Askfirst shell on tty3 */
953 if (thirdConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +0000954 new_init_action(ASKFIRST, LOGIN_SHELL, thirdConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000955 /* Askfirst shell on tty4 */
956 if (fourthConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +0000957 new_init_action(ASKFIRST, LOGIN_SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000958 /* sysinit */
Eric Andersen0298be82002-03-05 15:12:19 +0000959 new_init_action(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000960
Erik Andersene49d5ec2000-02-08 19:58:47 +0000961 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000962#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000963 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000964
Eric Andersen0826b6b2002-07-03 23:50:16 +0000965 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000966 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000967 /* Skip leading spaces */
968 for (id = buf; *id == ' ' || *id == '\t'; id++);
969
970 /* Skip the line if it's a comment */
971 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000972 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000973
Erik Andersene49d5ec2000-02-08 19:58:47 +0000974 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000975 eol = strrchr(id, '\n');
976 if (eol != NULL)
977 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000978
Erik Andersene49d5ec2000-02-08 19:58:47 +0000979 /* Keep a copy around for posterity's sake (and error msgs) */
980 strcpy(lineAsRead, buf);
981
Eric Andersenb5966362000-05-31 20:04:38 +0000982 /* Separate the ID field from the runlevels */
983 runlev = strchr(id, ':');
984 if (runlev == NULL || *(runlev + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000985 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000986 continue;
987 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000988 *runlev = '\0';
989 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000990 }
991
Eric Andersenb5966362000-05-31 20:04:38 +0000992 /* Separate the runlevels from the action */
993 action = strchr(runlev, ':');
994 if (action == NULL || *(action + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000995 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000996 continue;
997 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000998 *action = '\0';
999 ++action;
1000 }
1001
Eric Andersen0298be82002-03-05 15:12:19 +00001002 /* Separate the action from the command */
1003 command = strchr(action, ':');
1004 if (command == NULL || *(command + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001005 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +00001006 continue;
1007 } else {
Eric Andersen0298be82002-03-05 15:12:19 +00001008 *command = '\0';
1009 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001010 }
1011
1012 /* Ok, now process it */
1013 a = actions;
1014 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +00001015 if (strcmp(a->name, action) == 0) {
1016 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001017 strcpy(tmpConsole, "/dev/");
Eric Andersen0826b6b2002-07-03 23:50:16 +00001018 strncat(tmpConsole, id, INIT_BUFFS_SIZE-6);
Eric Andersenb5966362000-05-31 20:04:38 +00001019 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001020 }
Eric Andersen0298be82002-03-05 15:12:19 +00001021 new_init_action(a->action, command, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001022 foundIt = TRUE;
1023 }
1024 a++;
1025 }
Eric Andersen0298be82002-03-05 15:12:19 +00001026 if (foundIt == TRUE)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001027 continue;
1028 else {
1029 /* Choke on an unknown action */
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001030 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001031 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001032 }
Eric Andersend8636ca2002-05-15 22:19:09 +00001033 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001034 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001035#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +00001036}
1037
Erik Andersene132f4b2000-02-09 04:16:43 +00001038
1039
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001040extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001041{
Eric Andersen0298be82002-03-05 15:12:19 +00001042 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001043 pid_t wpid;
1044 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001045
Eric Andersen730f8262001-12-17 23:13:08 +00001046 if (argc > 1 && !strcmp(argv[1], "-q")) {
Eric Andersen467a18b2002-01-25 23:13:06 +00001047 /* don't assume init's pid == 1 */
1048 long *pid = find_pid_by_name("init");
1049 if (!pid || *pid<=0) {
1050 pid = find_pid_by_name("linuxrc");
1051 if (!pid || *pid<=0)
1052 error_msg_and_die("no process killed");
1053 }
1054 kill(*pid, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001055 exit(0);
1056 }
1057
Eric Andersend73dc5b1999-11-10 23:13:02 +00001058#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001059 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1060 if (getpid() != 1
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001061#ifdef CONFIG_FEATURE_INITRD
Matt Kraaie58771e2000-07-12 15:38:49 +00001062 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +00001063#endif
1064 )
1065 {
Eric Andersen67991cf2001-02-14 21:23:06 +00001066 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001067 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001068 /* Set up sig handlers -- be sure to
1069 * clear all of these in run() */
Eric Andersen0298be82002-03-05 15:12:19 +00001070 signal(SIGHUP, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001071 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001072 signal(SIGUSR2, halt_signal);
Eric Andersen0298be82002-03-05 15:12:19 +00001073 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001074 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001075 signal(SIGCONT, cont_handler);
1076 signal(SIGSTOP, stop_handler);
1077 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001078
Erik Andersene49d5ec2000-02-08 19:58:47 +00001079 /* Turn off rebooting via CTL-ALT-DEL -- we get a
1080 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001081 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001082#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001083
Erik Andersen298854f2000-03-23 01:09:18 +00001084 /* Figure out what kernel this is running */
1085 kernelVersion = get_kernel_revision();
1086
Eric Andersen599e3ce2002-07-03 11:08:10 +00001087 /* Figure out where the default console should be */
1088 console_init();
1089
Erik Andersene49d5ec2000-02-08 19:58:47 +00001090 /* Close whatever files are open, and reset the console. */
1091 close(0);
1092 close(1);
1093 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001094
Eric Andersen599e3ce2002-07-03 11:08:10 +00001095 if(device_open(console, O_RDWR|O_NOCTTY)==0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001096 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001097 close(0);
1098 }
1099
Erik Andersen983b51b2000-04-04 18:14:25 +00001100 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001101 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +00001102
Erik Andersene49d5ec2000-02-08 19:58:47 +00001103 /* Make sure PATH is set to something sane */
Eric Andersen452fd332001-03-04 06:47:33 +00001104 putenv("PATH="_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001105
Erik Andersene49d5ec2000-02-08 19:58:47 +00001106 /* Hello world */
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001107 message(MAYBE_CONSOLE|LOG, "\rinit started: %s\n", full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001108
Erik Andersene49d5ec2000-02-08 19:58:47 +00001109 /* Make sure there is enough memory to do something useful. */
1110 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +00001111
Erik Andersene49d5ec2000-02-08 19:58:47 +00001112 /* Check if we are supposed to be in single user mode */
1113 if (argc > 1 && (!strcmp(argv[1], "single") ||
1114 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001115 /* Ask first then start a shell on tty2-4 */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001116 if (secondConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +00001117 new_init_action(ASKFIRST, LOGIN_SHELL, secondConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001118 if (thirdConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +00001119 new_init_action(ASKFIRST, LOGIN_SHELL, thirdConsole);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001120 if (fourthConsole != NULL)
Eric Andersen0298be82002-03-05 15:12:19 +00001121 new_init_action(ASKFIRST, LOGIN_SHELL, fourthConsole);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001122 /* Start a shell on tty1 */
Eric Andersen0298be82002-03-05 15:12:19 +00001123 new_init_action(RESPAWN, LOGIN_SHELL, console);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001124 } else {
1125 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001126
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001127 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001128 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +00001129 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001130 * of "askfirst" shells */
1131 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001132 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001133
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001134 /* Make the command line just say "init" -- thats all, nothing else */
1135 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001136
Erik Andersene49d5ec2000-02-08 19:58:47 +00001137 /* Now run everything that needs to be run */
1138
1139 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001140 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001141
Erik Andersene49d5ec2000-02-08 19:58:47 +00001142 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001143 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001144
Erik Andersene49d5ec2000-02-08 19:58:47 +00001145 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001146 run_actions(ONCE);
1147
Erik Andersene49d5ec2000-02-08 19:58:47 +00001148 /* If there is nothing else to do, stop */
Eric Andersen0298be82002-03-05 15:12:19 +00001149 if (init_action_list == NULL) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001150 message(LOG | CONSOLE, "\rNo more tasks for init -- sleeping forever.\n");
Matt Kraai67a46402001-06-03 05:55:52 +00001151 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001152 }
1153
1154 /* Now run the looping stuff for the rest of forever */
1155 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001156 /* run the respawn stuff */
1157 run_actions(RESPAWN);
1158
1159 /* run the askfirst stuff */
1160 run_actions(ASKFIRST);
1161
1162 /* Don't consume all CPU time -- sleep a bit */
1163 sleep(1);
1164
Erik Andersene49d5ec2000-02-08 19:58:47 +00001165 /* Wait for a child process to exit */
1166 wpid = wait(&status);
1167 if (wpid > 0) {
1168 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001169 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001170 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001171 /* Set the pid to 0 so that the process gets
1172 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001173 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001174 message(LOG, "Process '%s' (pid %d) exited. "
1175 "Scheduling it for restart.\n", a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001176 }
1177 }
1178 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001179 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001180}
Erik Andersen029011b2000-03-04 21:19:32 +00001181
1182/*
1183Local Variables:
1184c-file-style: "linux"
1185c-basic-offset: 4
1186tab-width: 4
1187End:
1188*/