blob: f6c2b66157fcf0c81bd37489ebf774c6e1ffac68 [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;
Erik Andersen42094cd2000-03-20 21:34:52 +0000162static int kernelVersion = 0;
163static char termType[32] = "TERM=linux";
164static char console[32] = _PATH_CONSOLE;
Eric Andersen3bc2b202002-07-29 06:39:58 +0000165static char *log = VC_5;
Eric Andersen0298be82002-03-05 15:12:19 +0000166static sig_atomic_t got_cont = 0;
167static const int LOG = 0x1;
168static const int CONSOLE = 0x2;
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000169#if defined CONFIG_FEATURE_EXTRA_QUIET
Eric Andersen0298be82002-03-05 15:12:19 +0000170static const int MAYBE_CONSOLE = 0x0;
171#else
172#define MAYBE_CONSOLE CONSOLE
173#endif
174#ifndef RB_HALT_SYSTEM
175static const int RB_HALT_SYSTEM = 0xcdef0123;
176static const int RB_ENABLE_CAD = 0x89abcdef;
177static const int RB_DISABLE_CAD = 0;
178#define RB_POWER_OFF 0x4321fedc
179static const int RB_AUTOBOOT = 0x01234567;
180#endif
Erik Andersen42094cd2000-03-20 21:34:52 +0000181
Eric Andersen0298be82002-03-05 15:12:19 +0000182/* Function prototypes */
183static void delete_init_action(struct init_action *a);
184static int waitfor(struct init_action *a);
185
Eric Andersen0460ff21999-10-25 23:32:44 +0000186
Eric Andersen74400cc2001-10-18 04:11:39 +0000187static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000188{
189 while (1)
190 sleep (1);
191}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000192
Erik Andersen42094cd2000-03-20 21:34:52 +0000193/* Print a message to the specified device.
194 * Device may be bitwise-or'd from LOG | CONSOLE */
Eric Andersenfedce062001-11-17 07:27:14 +0000195#ifdef DEBUG_INIT
196static inline messageND(int device, char *fmt, ...) { }
197#else
198#define messageND message
199#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000200static void message(int device, char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
Erik Andersen93d65132000-04-06 08:06:36 +0000201static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000202{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 va_list arguments;
204 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000205
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000206#ifdef CONFIG_SYSLOGD
Eric Andersen4c781471999-11-26 08:12:56 +0000207
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208 /* Log the message to syslogd */
209 if (device & LOG) {
210 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000211
Erik Andersene49d5ec2000-02-08 19:58:47 +0000212 va_start(arguments, fmt);
213 vsnprintf(msg, sizeof(msg), fmt, arguments);
214 va_end(arguments);
Eric Andersen0298be82002-03-05 15:12:19 +0000215 syslog_msg(LOG_USER, LOG_INFO, msg);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000216 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000217#else
218 static int log_fd = -1;
219
220 /* Take full control of the log tty, and never close it.
221 * It's mine, all mine! Muhahahaha! */
222 if (log_fd < 0) {
Eric Andersen3bc2b202002-07-29 06:39:58 +0000223 if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000224 log_fd = -2;
Eric Andersen72f9a422001-10-28 05:12:20 +0000225 fprintf(stderr, "Bummer, can't write to log on %s!\n", log);
Erik Andersene132f4b2000-02-09 04:16:43 +0000226 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000227 }
228 }
229 if ((device & LOG) && (log_fd >= 0)) {
230 va_start(arguments, fmt);
231 vdprintf(log_fd, fmt, arguments);
232 va_end(arguments);
233 }
Eric Andersen4c781471999-11-26 08:12:56 +0000234#endif
235
Erik Andersene49d5ec2000-02-08 19:58:47 +0000236 if (device & CONSOLE) {
237 /* Always send console messages to /dev/console so people will see them. */
238 if (
239 (fd =
Eric Andersen0298be82002-03-05 15:12:19 +0000240 device_open(_PATH_CONSOLE, O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000241 va_start(arguments, fmt);
242 vdprintf(fd, fmt, arguments);
243 va_end(arguments);
244 close(fd);
245 } else {
246 fprintf(stderr, "Bummer, can't print: ");
247 va_start(arguments, fmt);
248 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000249 va_end(arguments);
250 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000251 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000252}
253
Eric Andersen0460ff21999-10-25 23:32:44 +0000254/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000255static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000256{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000257 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000258
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000260
Erik Andersene49d5ec2000-02-08 19:58:47 +0000261 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000262 tty.c_cc[VINTR] = 3; /* C-c */
263 tty.c_cc[VQUIT] = 28; /* C-\ */
264 tty.c_cc[VERASE] = 127; /* C-? */
265 tty.c_cc[VKILL] = 21; /* C-u */
266 tty.c_cc[VEOF] = 4; /* C-d */
267 tty.c_cc[VSTART] = 17; /* C-q */
268 tty.c_cc[VSTOP] = 19; /* C-s */
269 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000270
Erik Andersene49d5ec2000-02-08 19:58:47 +0000271 /* use line dicipline 0 */
272 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000273
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000275 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
Eric Andersend8862922001-04-23 15:14:11 +0000276 tty.c_cflag |= CREAD|HUPCL|CLOCAL;
277
Eric Andersen08b10341999-11-19 02:38:58 +0000278
Erik Andersene49d5ec2000-02-08 19:58:47 +0000279 /* input modes */
280 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000281
Erik Andersene49d5ec2000-02-08 19:58:47 +0000282 /* output modes */
283 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000284
Erik Andersene49d5ec2000-02-08 19:58:47 +0000285 /* local modes */
286 tty.c_lflag =
287 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000288
Erik Andersene49d5ec2000-02-08 19:58:47 +0000289 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000290}
291
Eric Andersenbc5941a2000-12-06 23:17:37 +0000292/* How much memory does this machine have?
293 Units are kBytes to avoid overflow on 4GB machines */
Eric Andersen74400cc2001-10-18 04:11:39 +0000294static int check_free_memory(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000295{
Erik Andersend07ee462000-02-21 21:26:32 +0000296 struct sysinfo info;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000297 unsigned int result, u, s=10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000298
Erik Andersend07ee462000-02-21 21:26:32 +0000299 if (sysinfo(&info) != 0) {
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000300 perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000301 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000302 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000303
304 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
305 * Kernels 2.4.0 return info.mem_unit in bytes. */
306 u = info.mem_unit;
307 if (u==0) u=1;
308 while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
309 result = (info.totalram>>s) + (info.totalswap>>s);
310 result = result*u;
311 if (result < 0) result = INT_MAX;
312 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000313}
314
Eric Andersen74400cc2001-10-18 04:11:39 +0000315static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000316{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000317 int fd;
318 int tried_devcons = 0;
319 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000320 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 struct serial_struct sr;
322 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000323
Erik Andersene49d5ec2000-02-08 19:58:47 +0000324 if ((s = getenv("TERM")) != NULL) {
325 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
326 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000327
Erik Andersene49d5ec2000-02-08 19:58:47 +0000328 if ((s = getenv("CONSOLE")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000329 safe_strncpy(console, s, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000330 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000331#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332 /* sparc kernel supports console=tty[ab] parameter which is also
333 * passed to init, so catch it here */
334 else if ((s = getenv("console")) != NULL) {
335 /* remap tty[ab] to /dev/ttyS[01] */
336 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000337 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000338 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000339 safe_strncpy(console, SC_1, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000340 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000341#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000342 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000343 /* 2.2 kernels: identify the real console backend and try to use it */
344 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
345 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000346 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000347 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
348 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000349 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000350 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000351 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000352 tried_devcons++;
353 }
Eric Andersen07e52971999-11-07 07:38:08 +0000354 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000355
356 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
357 /* Can't open selected console -- try /dev/console */
358 if (!tried_devcons) {
359 tried_devcons++;
Matt Kraai18447702001-05-18 21:24:58 +0000360 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000361 continue;
362 }
363 /* Can't open selected console -- try vt1 */
364 if (!tried_vtprimary) {
365 tried_vtprimary++;
Matt Kraai439e3df2001-07-23 14:52:08 +0000366 safe_strncpy(console, VC_1, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000367 continue;
368 }
369 break;
370 }
371 if (fd < 0) {
372 /* Perhaps we should panic here? */
Matt Kraai18447702001-05-18 21:24:58 +0000373 safe_strncpy(console, "/dev/null", sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000374 } else {
Eric Andersen3bc2b202002-07-29 06:39:58 +0000375 /* check for serial console */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000376 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000377 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000378 * if TERM is set to linux (the default) */
Erik Andersenfa4718e2000-02-21 19:25:12 +0000379 if (strcmp( termType, "TERM=linux" ) == 0)
Matt Kraai18447702001-05-18 21:24:58 +0000380 safe_strncpy(termType, "TERM=vt102", sizeof(termType));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000381 }
382 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000383 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000384 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000385}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000386
387static void fixup_argv(int argc, char **argv, char *new_argv0)
388{
389 int len;
390 /* Fix up argv[0] to be certain we claim to be init */
391 len = strlen(argv[0]);
392 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000393 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000394
395 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
396 len = 1;
397 while (argc > len) {
398 memset(argv[len], 0, strlen(argv[len]));
399 len++;
400 }
401}
402
Eric Andersen0298be82002-03-05 15:12:19 +0000403/* Make sure there is enough memory to do something useful. *
404 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
405static void check_memory(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000406{
Eric Andersen0298be82002-03-05 15:12:19 +0000407 struct stat statBuf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000408
Eric Andersen0298be82002-03-05 15:12:19 +0000409 if (check_free_memory() > 1000)
410 return;
411
412#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
413 if (stat("/etc/fstab", &statBuf) == 0) {
414 /* swapon -a requires /proc typically */
415 system("/bin/mount -t proc proc /proc");
416 /* Try to turn on swap */
417 system("/sbin/swapon -a");
418 if (check_free_memory() < 1000)
419 goto goodnight;
420 } else
421 goto goodnight;
422 return;
Eric Andersen38624232001-01-25 00:04:16 +0000423#endif
424
Eric Andersen0298be82002-03-05 15:12:19 +0000425 goodnight:
426 message(CONSOLE,
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000427 "\rSorry, your computer does not have enough memory.\n");
Eric Andersen0298be82002-03-05 15:12:19 +0000428 loop_forever();
429}
430
431static pid_t run(struct init_action *a)
432{
433 struct stat sb;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000434 int i, j, junk;
Eric Andersen0298be82002-03-05 15:12:19 +0000435 pid_t pid, pgrp, tmp_pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000436 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
437 char buf[INIT_BUFFS_SIZE+6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000438 sigset_t nmask, omask;
Eric Andersen477aedd2001-02-20 18:01:50 +0000439 char *environment[MAXENV+1] = {
Eric Andersen7f197852001-03-16 01:14:04 +0000440 termType,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000441 "HOME=/",
Eric Andersen72f9a422001-10-28 05:12:20 +0000442 "PATH=" _PATH_STDPATH,
Matt Kraai7bd773c2001-06-12 20:55:02 +0000443 "SHELL=" SHELL,
Eric Andersen7f197852001-03-16 01:14:04 +0000444 "USER=root",
445 NULL
Erik Andersene49d5ec2000-02-08 19:58:47 +0000446 };
Eric Andersen0298be82002-03-05 15:12:19 +0000447 static const char press_enter[] =
448#ifdef CUSTOMIZED_BANNER
449#include CUSTOMIZED_BANNER
450#endif
451 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000452
Eric Andersen7f197852001-03-16 01:14:04 +0000453 /* inherit environment to the child, merging our values -andy */
454 for (i=0; environ[i]; i++) {
455 for (j=0; environment[j]; j++) {
456 s = strchr(environment[j], '=');
457 if (!strncmp(environ[i], environment[j], s - environment[j]))
458 break;
459 }
460 if (!environment[j]) {
461 environment[j++] = environ[i];
462 environment[j] = NULL;
463 }
Eric Andersen477aedd2001-02-20 18:01:50 +0000464 }
465
Eric Andersen0298be82002-03-05 15:12:19 +0000466 /* Block sigchild while forking. */
467 sigemptyset(&nmask);
468 sigaddset(&nmask, SIGCHLD);
469 sigprocmask(SIG_BLOCK, &nmask, &omask);
470
Eric Andersen72f9a422001-10-28 05:12:20 +0000471 if ((pid = fork()) == 0)
Eric Andersen72f9a422001-10-28 05:12:20 +0000472 {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000473 /* Clean up */
474 close(0);
475 close(1);
476 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000477 sigprocmask(SIG_SETMASK, &omask, NULL);
478
Eric Andersen0298be82002-03-05 15:12:19 +0000479 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000480 signal(SIGUSR1, SIG_DFL);
481 signal(SIGUSR2, SIG_DFL);
Eric Andersen0298be82002-03-05 15:12:19 +0000482 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000483 signal(SIGTERM, SIG_DFL);
Eric Andersen0298be82002-03-05 15:12:19 +0000484 signal(SIGHUP, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000485 signal(SIGCONT, SIG_DFL);
486 signal(SIGSTOP, SIG_DFL);
487 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000488
Eric Andersen599e3ce2002-07-03 11:08:10 +0000489 /* Create a new session and make ourself the process
490 * group leader for non-interactive jobs */
491 if ((a->action & (RESPAWN))==0)
492 setsid();
493
Eric Andersen0298be82002-03-05 15:12:19 +0000494 /* Open the new terminal device */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000495 if ((device_open(a->terminal, O_RDWR|O_NOCTTY)) < 0) {
Eric Andersen0298be82002-03-05 15:12:19 +0000496 if (stat(a->terminal, &sb) != 0) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000497 message(LOG | CONSOLE, "\rdevice '%s' does not exist.\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000498 a->terminal);
499 _exit(1);
Eric Andersen53f50612001-03-14 09:01:11 +0000500 }
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000501 message(LOG | CONSOLE, "\rBummer, can't open %s\n", a->terminal);
Eric Andersen0298be82002-03-05 15:12:19 +0000502 _exit(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000503 }
Eric Andersen599e3ce2002-07-03 11:08:10 +0000504
505 /* Non-interactive jobs should not get a controling tty */
506 if ((a->action & (RESPAWN))==0)
Eric Andersen0826b6b2002-07-03 23:50:16 +0000507 (void)ioctl(0, TIOCSCTTY, 0);
Eric Andersen599e3ce2002-07-03 11:08:10 +0000508
Eric Andersen0298be82002-03-05 15:12:19 +0000509 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000510 set_term(0);
Eric Andersen0826b6b2002-07-03 23:50:16 +0000511 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000512 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000513 dup(0);
514 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000515
Eric Andersen599e3ce2002-07-03 11:08:10 +0000516 /* For interactive jobs, create a new session
517 * and become the process group leader */
518 if ((a->action & (RESPAWN)))
519 setsid();
520
521 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000522 * supplied terminal to be the controlling tty. */
Eric Andersen599e3ce2002-07-03 11:08:10 +0000523 if (a->action & (SYSINIT|WAIT|CTRLALTDEL|SHUTDOWN|RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000524
525 /* Now fork off another process to just hang around */
526 if ((pid = fork()) < 0) {
527 message(LOG | CONSOLE, "Can't fork!\n");
528 _exit(1);
529 }
530
531 if (pid > 0) {
532
533 /* We are the parent -- wait till the child is done */
534 signal(SIGINT, SIG_IGN);
535 signal(SIGTSTP, SIG_IGN);
536 signal(SIGQUIT, SIG_IGN);
537 signal(SIGCHLD, SIG_DFL);
538
539 /* Wait for child to exit */
Eric Andersen599e3ce2002-07-03 11:08:10 +0000540 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid)
541 ;
Eric Andersen0298be82002-03-05 15:12:19 +0000542
543 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000544 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000545 if (pgrp != getpid())
546 _exit(0);
547
548 /* Use a temporary process to steal the controlling tty. */
549 if ((pid = fork()) < 0) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000550 message(LOG | CONSOLE, "\rCan't fork!\n");
Eric Andersen0298be82002-03-05 15:12:19 +0000551 _exit(1);
552 }
553 if (pid == 0) {
554 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000555 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000556 _exit(0);
557 }
558 while((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
559 if (tmp_pid < 0 && errno == ECHILD)
560 break;
561 }
562 _exit(0);
563 }
564
565 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000566 }
567
Erik Andersene132f4b2000-02-09 04:16:43 +0000568 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000569 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000570 cmd[0] = SHELL;
571 cmd[1] = "-c";
Eric Andersen0826b6b2002-07-03 23:50:16 +0000572 strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000573 cmd[2] = buf;
574 cmd[3] = NULL;
575 } else {
576 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000577 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000578 s = buf;
579 for (tmpCmd = buf, i = 0;
580 (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000581 if (*tmpCmd != '\0') {
582 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000583 i++;
584 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000585 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000586 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000587 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000588
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000589 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000590
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000591 /*
592 Interactive shells want to see a dash in argv[0]. This
593 typically is handled by login, argv will be setup this
594 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000595 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000596 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000597
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000598 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000599
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000600 /* skip over the dash */
601 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000602
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000603 /* find the last component in the command pathname */
604 s = get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000605
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000606 /* make a new argv[0] */
607 if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
608 message(LOG | CONSOLE, "malloc failed");
609 cmd[0] = cmdpath;
610 } else {
611 cmd[0][0] = '-';
612 strcpy(cmd[0]+1, s);
613 }
614 }
615
Eric Andersen0298be82002-03-05 15:12:19 +0000616 if (a->action & ASKFIRST) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000617 /*
618 * Save memory by not exec-ing anything large (like a shell)
619 * before the user wants it. This is critical if swap is not
620 * enabled and the system has low memory. Generally this will
621 * be run on the second virtual console, and the first will
622 * be allowed to start a shell or whatever an init script
623 * specifies.
624 */
Eric Andersen0298be82002-03-05 15:12:19 +0000625 messageND(LOG, "Waiting for enter to start '%s' (pid %d, terminal %s)\n",
626 cmdpath, getpid(), a->terminal);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000627 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
628 getc(stdin);
629 }
630
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000631 /* Log the process name and args */
Eric Andersenfedce062001-11-17 07:27:14 +0000632 messageND(LOG, "Starting pid %d, console %s: '%s'\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000633 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000634
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000635#if defined CONFIG_FEATURE_INIT_COREDUMPS
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000636 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
637 struct rlimit limit;
638 limit.rlim_cur = RLIM_INFINITY;
639 limit.rlim_max = RLIM_INFINITY;
640 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000641 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000642#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000643
Erik Andersene49d5ec2000-02-08 19:58:47 +0000644 /* Now run it. The new program will take over this PID,
645 * so nothing further in init.c should be run. */
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000646 execve(cmdpath, cmd, environment);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000647
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000648 /* We're still here? Some error happened. */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000649 message(LOG | CONSOLE, "\rBummer, could not run '%s': %s\n", cmdpath,
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000650 strerror(errno));
Eric Andersen0298be82002-03-05 15:12:19 +0000651 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000652 }
Eric Andersen0298be82002-03-05 15:12:19 +0000653 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000654 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000655}
656
Eric Andersen0298be82002-03-05 15:12:19 +0000657static int waitfor(struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000658{
Eric Andersen0298be82002-03-05 15:12:19 +0000659 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000660 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000661
Eric Andersen0298be82002-03-05 15:12:19 +0000662 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000663 while (1) {
664 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000665 if (wpid > 0 && wpid != pid) {
666 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000667 }
668 if (wpid == pid)
669 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000670 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000671 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000672}
673
Eric Andersen0298be82002-03-05 15:12:19 +0000674/* Run all commands of a particular type */
675static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000676{
Eric Andersen0298be82002-03-05 15:12:19 +0000677 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000678
Eric Andersen0298be82002-03-05 15:12:19 +0000679 for (a = init_action_list; a; a = tmp) {
680 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000681 if (a->action == action) {
Eric Andersen0298be82002-03-05 15:12:19 +0000682 if (a->action & (SYSINIT|WAIT|CTRLALTDEL|SHUTDOWN|RESTART)) {
683 waitfor(a);
684 delete_init_action(a);
685 } else if (a->action & ONCE) {
686 run(a);
687 delete_init_action(a);
688 } else if (a->action & (RESPAWN|ASKFIRST)) {
689 /* Only run stuff with pid==0. If they have
690 * a pid, that means it is still running */
691 if (a->pid == 0) {
692 a->pid = run(a);
693 }
694 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000695 }
696 }
697}
698
699
Erik Andersen7dc16072000-01-04 01:10:25 +0000700#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000701static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000702{
Eric Andersen813d88c2001-10-28 22:49:48 +0000703 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000704
Eric Andersen72f9a422001-10-28 05:12:20 +0000705 /* first disable all our signals */
706 sigemptyset(&block_signals);
707 sigaddset(&block_signals, SIGHUP);
708 sigaddset(&block_signals, SIGCHLD);
709 sigaddset(&block_signals, SIGUSR1);
710 sigaddset(&block_signals, SIGUSR2);
711 sigaddset(&block_signals, SIGINT);
712 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000713 sigaddset(&block_signals, SIGCONT);
714 sigaddset(&block_signals, SIGSTOP);
715 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000716 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000717
Erik Andersene49d5ec2000-02-08 19:58:47 +0000718 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000719 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000720
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000721 message(CONSOLE|LOG, "\n\rThe system is going down NOW !!\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000722 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000723
724 /* Send signals to every process _except_ pid 1 */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000725 message(CONSOLE|LOG, "\rSending SIGTERM to all processes.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000726 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000727 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000728 sync();
729
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000730 message(CONSOLE|LOG, "\rSending SIGKILL to all processes.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000731 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000732 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000733
Matt Kraai8fc364e2001-04-12 20:12:16 +0000734 /* run everything to be run at "shutdown" */
Eric Andersenc97ec342001-04-03 18:01:51 +0000735 run_actions(SHUTDOWN);
Erik Andersene132f4b2000-02-09 04:16:43 +0000736
Erik Andersene49d5ec2000-02-08 19:58:47 +0000737 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000738 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000739 /* bdflush, kupdate not needed for kernels >2.2.11 */
740 bdflush(1, 0);
741 sync();
742 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000743}
744
Eric Andersen730f8262001-12-17 23:13:08 +0000745static void exec_signal(int sig)
746{
Eric Andersen0298be82002-03-05 15:12:19 +0000747 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000748 sigset_t unblock_signals;
749
Eric Andersen0298be82002-03-05 15:12:19 +0000750 for (a = init_action_list; a; a = tmp) {
751 tmp = a->next;
752 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000753 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000754
755 /* unblock all signals, blocked in shutdown_system() */
756 sigemptyset(&unblock_signals);
757 sigaddset(&unblock_signals, SIGHUP);
758 sigaddset(&unblock_signals, SIGCHLD);
759 sigaddset(&unblock_signals, SIGUSR1);
760 sigaddset(&unblock_signals, SIGUSR2);
761 sigaddset(&unblock_signals, SIGINT);
762 sigaddset(&unblock_signals, SIGTERM);
763 sigaddset(&unblock_signals, SIGCONT);
764 sigaddset(&unblock_signals, SIGSTOP);
765 sigaddset(&unblock_signals, SIGTSTP);
766 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
767
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000768 message(CONSOLE|LOG, "\rTrying to re-exec %s\n", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000769 execl(a->command, a->command, NULL);
Eric Andersen730f8262001-12-17 23:13:08 +0000770
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000771 message(CONSOLE|LOG, "\rexec of '%s' failed: %s\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000772 a->command, sys_errlist[errno]);
Eric Andersen730f8262001-12-17 23:13:08 +0000773 sync();
774 sleep(2);
775 init_reboot(RB_HALT_SYSTEM);
776 loop_forever();
777 }
778 }
779}
780
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000781static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000782{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000783 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000784 message(CONSOLE|LOG,
Eric Andersenf435a912001-11-20 05:42:57 +0000785#if #cpu(s390)
786 /* Seems the s390 console is Wierd(tm). */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000787 "\rThe system is halted. You may reboot now.\n"
Eric Andersenf435a912001-11-20 05:42:57 +0000788#else
Eric Andersen3bc2b202002-07-29 06:39:58 +0000789 "\rThe system is halted. Press Reset or turn off power\n"
Eric Andersenf435a912001-11-20 05:42:57 +0000790#endif
791 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000792 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000793
Erik Andersene49d5ec2000-02-08 19:58:47 +0000794 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000795 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000796
Eric Andersenbd22ed82000-07-08 18:55:24 +0000797 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000798 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000799 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000800 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000801
802 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000803}
804
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000805static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000806{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000807 shutdown_system();
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000808 message(CONSOLE|LOG, "\rPlease stand by while rebooting the system.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000809 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000810
Erik Andersene49d5ec2000-02-08 19:58:47 +0000811 /* allow time for last message to reach serial console */
812 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000813
Erik Andersen4f3f7572000-04-28 00:18:56 +0000814 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000815
816 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000817}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000818
Eric Andersenc97ec342001-04-03 18:01:51 +0000819static void ctrlaltdel_signal(int sig)
820{
821 run_actions(CTRLALTDEL);
822}
823
Eric Andersen0298be82002-03-05 15:12:19 +0000824/* The SIGSTOP & SIGTSTP handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000825static void stop_handler(int sig)
826{
Eric Andersen0298be82002-03-05 15:12:19 +0000827 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000828
829 got_cont = 0;
830 while(!got_cont) pause();
831 got_cont = 0;
832 errno = saved_errno;
833}
834
Eric Andersen0298be82002-03-05 15:12:19 +0000835/* The SIGCONT handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000836static void cont_handler(int sig)
837{
838 got_cont = 1;
839}
840
Erik Andersene49d5ec2000-02-08 19:58:47 +0000841#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000842
Eric Andersen0298be82002-03-05 15:12:19 +0000843static void new_init_action(int action, char *command, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000844{
Eric Andersen0298be82002-03-05 15:12:19 +0000845 struct init_action *new_action, *a;
Erik Andersen9e737252000-01-06 01:16:13 +0000846
Erik Andersene49d5ec2000-02-08 19:58:47 +0000847 if (*cons == '\0')
848 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000849
Eric Andersen3bc2b202002-07-29 06:39:58 +0000850 /* do not run entries if console device is not available */
851 if (access(cons, R_OK|W_OK))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000852 return;
Eric Andersen0298be82002-03-05 15:12:19 +0000853 if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000854 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000855
Eric Andersen0298be82002-03-05 15:12:19 +0000856 new_action = calloc((size_t) (1), sizeof(struct init_action));
857 if (!new_action) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000858 message(LOG | CONSOLE, "\rMemory allocation failure\n");
Matt Kraai67a46402001-06-03 05:55:52 +0000859 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000860 }
Eric Andersen0298be82002-03-05 15:12:19 +0000861
862 /* Append to the end of the list */
863 for (a = init_action_list; a && a->next; a = a->next) ;
Eric Andersen1644db92001-09-05 20:18:15 +0000864 if (a) {
Eric Andersen0298be82002-03-05 15:12:19 +0000865 a->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000866 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000867 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000868 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000869 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000870 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000871 strcpy(new_action->terminal, cons);
Eric Andersen0298be82002-03-05 15:12:19 +0000872 new_action->pid = 0;
873// message(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
874// new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000875}
876
Eric Andersen0298be82002-03-05 15:12:19 +0000877static void delete_init_action(struct init_action * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000878{
Eric Andersen0298be82002-03-05 15:12:19 +0000879 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000880
Eric Andersen0298be82002-03-05 15:12:19 +0000881 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000882 if (a == action) {
883 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000884 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000885 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000886 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000887 }
888 free(a);
889 break;
890 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000891 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000892}
893
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000894/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000895 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +0000896 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000897 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
Erik Andersen812d4662000-01-07 18:30:40 +0000898 * _is_ defined, but /etc/inittab is missing, this
899 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000900 * */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000901static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000902{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000903#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000904 FILE *file;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000905 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE], tmpConsole[INIT_BUFFS_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000906 char *id, *runlev, *action, *command, *eol;
907 const struct init_action_type *a = actions;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000908 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000909
910
Erik Andersene49d5ec2000-02-08 19:58:47 +0000911 file = fopen(INITTAB, "r");
912 if (file == NULL) {
913 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000914#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000915 /* Reboot on Ctrl-Alt-Del */
Eric Andersen0298be82002-03-05 15:12:19 +0000916 new_init_action(CTRLALTDEL, "/sbin/reboot", console);
Eric Andersen1644db92001-09-05 20:18:15 +0000917 /* Umount all filesystems on halt/reboot */
Eric Andersen0298be82002-03-05 15:12:19 +0000918 new_init_action(SHUTDOWN, "/bin/umount -a -r", console);
Eric Andersen72f9a422001-10-28 05:12:20 +0000919#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen1644db92001-09-05 20:18:15 +0000920 /* Swapoff on halt/reboot */
Eric Andersen0298be82002-03-05 15:12:19 +0000921 new_init_action(SHUTDOWN, "/sbin/swapoff -a", console);
Eric Andersen1644db92001-09-05 20:18:15 +0000922#endif
Eric Andersen730f8262001-12-17 23:13:08 +0000923 /* Prepare to restart init when a HUP is received */
Eric Andersen0298be82002-03-05 15:12:19 +0000924 new_init_action(RESTART, "/sbin/init", console);
Eric Andersen3bc2b202002-07-29 06:39:58 +0000925 /* Askfirst shell on tty1-4 */
Eric Andersen0298be82002-03-05 15:12:19 +0000926 new_init_action(ASKFIRST, LOGIN_SHELL, console);
Eric Andersen3bc2b202002-07-29 06:39:58 +0000927 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
928 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
929 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000930 /* sysinit */
Eric Andersen0298be82002-03-05 15:12:19 +0000931 new_init_action(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000932
Erik Andersene49d5ec2000-02-08 19:58:47 +0000933 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000934#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000935 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000936
Eric Andersen0826b6b2002-07-03 23:50:16 +0000937 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000938 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000939 /* Skip leading spaces */
940 for (id = buf; *id == ' ' || *id == '\t'; id++);
941
942 /* Skip the line if it's a comment */
943 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000944 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000945
Erik Andersene49d5ec2000-02-08 19:58:47 +0000946 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000947 eol = strrchr(id, '\n');
948 if (eol != NULL)
949 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000950
Erik Andersene49d5ec2000-02-08 19:58:47 +0000951 /* Keep a copy around for posterity's sake (and error msgs) */
952 strcpy(lineAsRead, buf);
953
Eric Andersenb5966362000-05-31 20:04:38 +0000954 /* Separate the ID field from the runlevels */
955 runlev = strchr(id, ':');
956 if (runlev == NULL || *(runlev + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000957 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000958 continue;
959 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000960 *runlev = '\0';
961 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000962 }
963
Eric Andersenb5966362000-05-31 20:04:38 +0000964 /* Separate the runlevels from the action */
965 action = strchr(runlev, ':');
966 if (action == NULL || *(action + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000967 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000968 continue;
969 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000970 *action = '\0';
971 ++action;
972 }
973
Eric Andersen0298be82002-03-05 15:12:19 +0000974 /* Separate the action from the command */
975 command = strchr(action, ':');
976 if (command == NULL || *(command + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000977 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +0000978 continue;
979 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000980 *command = '\0';
981 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000982 }
983
984 /* Ok, now process it */
985 a = actions;
986 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +0000987 if (strcmp(a->name, action) == 0) {
988 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000989 strcpy(tmpConsole, "/dev/");
Eric Andersen0826b6b2002-07-03 23:50:16 +0000990 strncat(tmpConsole, id, INIT_BUFFS_SIZE-6);
Eric Andersenb5966362000-05-31 20:04:38 +0000991 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000992 }
Eric Andersen0298be82002-03-05 15:12:19 +0000993 new_init_action(a->action, command, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000994 foundIt = TRUE;
995 }
996 a++;
997 }
Eric Andersen0298be82002-03-05 15:12:19 +0000998 if (foundIt == TRUE)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000999 continue;
1000 else {
1001 /* Choke on an unknown action */
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001002 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001003 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001004 }
Eric Andersend8636ca2002-05-15 22:19:09 +00001005 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001006 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001007#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +00001008}
1009
Erik Andersene132f4b2000-02-09 04:16:43 +00001010
1011
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001012extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001013{
Eric Andersen0298be82002-03-05 15:12:19 +00001014 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001015 pid_t wpid;
1016 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001017
Eric Andersen730f8262001-12-17 23:13:08 +00001018 if (argc > 1 && !strcmp(argv[1], "-q")) {
Eric Andersen467a18b2002-01-25 23:13:06 +00001019 /* don't assume init's pid == 1 */
1020 long *pid = find_pid_by_name("init");
1021 if (!pid || *pid<=0) {
1022 pid = find_pid_by_name("linuxrc");
1023 if (!pid || *pid<=0)
1024 error_msg_and_die("no process killed");
1025 }
1026 kill(*pid, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001027 exit(0);
1028 }
1029
Eric Andersend73dc5b1999-11-10 23:13:02 +00001030#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001031 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1032 if (getpid() != 1
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001033#ifdef CONFIG_FEATURE_INITRD
Matt Kraaie58771e2000-07-12 15:38:49 +00001034 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +00001035#endif
1036 )
1037 {
Eric Andersen67991cf2001-02-14 21:23:06 +00001038 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001039 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001040 /* Set up sig handlers -- be sure to
1041 * clear all of these in run() */
Eric Andersen0298be82002-03-05 15:12:19 +00001042 signal(SIGHUP, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001043 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001044 signal(SIGUSR2, halt_signal);
Eric Andersen0298be82002-03-05 15:12:19 +00001045 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001046 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001047 signal(SIGCONT, cont_handler);
1048 signal(SIGSTOP, stop_handler);
1049 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001050
Erik Andersene49d5ec2000-02-08 19:58:47 +00001051 /* Turn off rebooting via CTL-ALT-DEL -- we get a
1052 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001053 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001054#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001055
Erik Andersen298854f2000-03-23 01:09:18 +00001056 /* Figure out what kernel this is running */
1057 kernelVersion = get_kernel_revision();
1058
Eric Andersen599e3ce2002-07-03 11:08:10 +00001059 /* Figure out where the default console should be */
1060 console_init();
1061
Erik Andersene49d5ec2000-02-08 19:58:47 +00001062 /* Close whatever files are open, and reset the console. */
1063 close(0);
1064 close(1);
1065 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001066
Eric Andersen599e3ce2002-07-03 11:08:10 +00001067 if(device_open(console, O_RDWR|O_NOCTTY)==0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001068 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001069 close(0);
1070 }
1071
Erik Andersen983b51b2000-04-04 18:14:25 +00001072 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001073 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +00001074
Erik Andersene49d5ec2000-02-08 19:58:47 +00001075 /* Make sure PATH is set to something sane */
Eric Andersen452fd332001-03-04 06:47:33 +00001076 putenv("PATH="_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001077
Erik Andersene49d5ec2000-02-08 19:58:47 +00001078 /* Hello world */
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001079 message(MAYBE_CONSOLE|LOG, "\rinit started: %s\n", full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001080
Erik Andersene49d5ec2000-02-08 19:58:47 +00001081 /* Make sure there is enough memory to do something useful. */
1082 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +00001083
Erik Andersene49d5ec2000-02-08 19:58:47 +00001084 /* Check if we are supposed to be in single user mode */
1085 if (argc > 1 && (!strcmp(argv[1], "single") ||
1086 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001087 /* Ask first then start a shell on tty2-4 */
Eric Andersen3bc2b202002-07-29 06:39:58 +00001088 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
1089 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
1090 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001091 /* Start a shell on tty1 */
Eric Andersen0298be82002-03-05 15:12:19 +00001092 new_init_action(RESPAWN, LOGIN_SHELL, console);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001093 } else {
1094 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001095
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001096 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001097 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +00001098 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001099 * of "askfirst" shells */
1100 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001101 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001102
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001103 /* Make the command line just say "init" -- thats all, nothing else */
1104 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001105
Erik Andersene49d5ec2000-02-08 19:58:47 +00001106 /* Now run everything that needs to be run */
1107
1108 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001109 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001110
Erik Andersene49d5ec2000-02-08 19:58:47 +00001111 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001112 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001113
Erik Andersene49d5ec2000-02-08 19:58:47 +00001114 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001115 run_actions(ONCE);
1116
Erik Andersene49d5ec2000-02-08 19:58:47 +00001117 /* If there is nothing else to do, stop */
Eric Andersen0298be82002-03-05 15:12:19 +00001118 if (init_action_list == NULL) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001119 message(LOG | CONSOLE, "\rNo more tasks for init -- sleeping forever.\n");
Matt Kraai67a46402001-06-03 05:55:52 +00001120 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001121 }
1122
1123 /* Now run the looping stuff for the rest of forever */
1124 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001125 /* run the respawn stuff */
1126 run_actions(RESPAWN);
1127
1128 /* run the askfirst stuff */
1129 run_actions(ASKFIRST);
1130
1131 /* Don't consume all CPU time -- sleep a bit */
1132 sleep(1);
1133
Erik Andersene49d5ec2000-02-08 19:58:47 +00001134 /* Wait for a child process to exit */
1135 wpid = wait(&status);
1136 if (wpid > 0) {
1137 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001138 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001139 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001140 /* Set the pid to 0 so that the process gets
1141 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001142 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001143 message(LOG, "Process '%s' (pid %d) exited. "
1144 "Scheduling it for restart.\n", a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001145 }
1146 }
1147 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001148 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001149}
Erik Andersen029011b2000-03-04 21:19:32 +00001150
1151/*
1152Local Variables:
1153c-file-style: "linux"
1154c-basic-offset: 4
1155tab-width: 4
1156End:
1157*/