blob: 333fba5dcf72befa917ad45a3bbcced6d65b0d83 [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 Andersene7078062002-07-29 08:00:16 +0000165#ifndef CONFIG_SYSLOGD
Eric Andersen3bc2b202002-07-29 06:39:58 +0000166static char *log = VC_5;
Eric Andersene7078062002-07-29 08:00:16 +0000167#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000168static sig_atomic_t got_cont = 0;
169static const int LOG = 0x1;
170static const int CONSOLE = 0x2;
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000171#if defined CONFIG_FEATURE_EXTRA_QUIET
Eric Andersen0298be82002-03-05 15:12:19 +0000172static const int MAYBE_CONSOLE = 0x0;
173#else
174#define MAYBE_CONSOLE CONSOLE
175#endif
176#ifndef RB_HALT_SYSTEM
177static const int RB_HALT_SYSTEM = 0xcdef0123;
178static const int RB_ENABLE_CAD = 0x89abcdef;
179static const int RB_DISABLE_CAD = 0;
180#define RB_POWER_OFF 0x4321fedc
181static const int RB_AUTOBOOT = 0x01234567;
182#endif
Erik Andersen42094cd2000-03-20 21:34:52 +0000183
Eric Andersen0298be82002-03-05 15:12:19 +0000184/* Function prototypes */
185static void delete_init_action(struct init_action *a);
186static int waitfor(struct init_action *a);
187
Eric Andersen0460ff21999-10-25 23:32:44 +0000188
Eric Andersen74400cc2001-10-18 04:11:39 +0000189static void loop_forever(void)
Matt Kraai67a46402001-06-03 05:55:52 +0000190{
191 while (1)
192 sleep (1);
193}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000194
Erik Andersen42094cd2000-03-20 21:34:52 +0000195/* Print a message to the specified device.
196 * Device may be bitwise-or'd from LOG | CONSOLE */
Eric Andersenfedce062001-11-17 07:27:14 +0000197#ifdef DEBUG_INIT
198static inline messageND(int device, char *fmt, ...) { }
199#else
200#define messageND message
201#endif
Eric Andersen0298be82002-03-05 15:12:19 +0000202static void message(int device, char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
Erik Andersen93d65132000-04-06 08:06:36 +0000203static void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000204{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000205 va_list arguments;
206 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000207
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000208#ifdef CONFIG_SYSLOGD
Eric Andersen4c781471999-11-26 08:12:56 +0000209
Erik Andersene49d5ec2000-02-08 19:58:47 +0000210 /* Log the message to syslogd */
211 if (device & LOG) {
212 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000213
Erik Andersene49d5ec2000-02-08 19:58:47 +0000214 va_start(arguments, fmt);
215 vsnprintf(msg, sizeof(msg), fmt, arguments);
216 va_end(arguments);
Eric Andersen0298be82002-03-05 15:12:19 +0000217 syslog_msg(LOG_USER, LOG_INFO, msg);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000218 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000219#else
220 static int log_fd = -1;
221
222 /* Take full control of the log tty, and never close it.
223 * It's mine, all mine! Muhahahaha! */
224 if (log_fd < 0) {
Eric Andersen3bc2b202002-07-29 06:39:58 +0000225 if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000226 log_fd = -2;
Eric Andersen72f9a422001-10-28 05:12:20 +0000227 fprintf(stderr, "Bummer, can't write to log on %s!\n", log);
Erik Andersene132f4b2000-02-09 04:16:43 +0000228 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000229 }
230 }
231 if ((device & LOG) && (log_fd >= 0)) {
232 va_start(arguments, fmt);
233 vdprintf(log_fd, fmt, arguments);
234 va_end(arguments);
235 }
Eric Andersen4c781471999-11-26 08:12:56 +0000236#endif
237
Erik Andersene49d5ec2000-02-08 19:58:47 +0000238 if (device & CONSOLE) {
239 /* Always send console messages to /dev/console so people will see them. */
240 if (
241 (fd =
Eric Andersen0298be82002-03-05 15:12:19 +0000242 device_open(_PATH_CONSOLE, O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243 va_start(arguments, fmt);
244 vdprintf(fd, fmt, arguments);
245 va_end(arguments);
246 close(fd);
247 } else {
248 fprintf(stderr, "Bummer, can't print: ");
249 va_start(arguments, fmt);
250 vfprintf(stderr, fmt, arguments);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000251 va_end(arguments);
252 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000253 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000254}
255
Eric Andersen0460ff21999-10-25 23:32:44 +0000256/* Set terminal settings to reasonable defaults */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000257static void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000258{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259 struct termios tty;
Eric Andersencc8ed391999-10-05 16:24:54 +0000260
Erik Andersene49d5ec2000-02-08 19:58:47 +0000261 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000262
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263 /* set control chars */
Eric Andersen3849f9b2000-07-10 19:56:47 +0000264 tty.c_cc[VINTR] = 3; /* C-c */
265 tty.c_cc[VQUIT] = 28; /* C-\ */
266 tty.c_cc[VERASE] = 127; /* C-? */
267 tty.c_cc[VKILL] = 21; /* C-u */
268 tty.c_cc[VEOF] = 4; /* C-d */
269 tty.c_cc[VSTART] = 17; /* C-q */
270 tty.c_cc[VSTOP] = 19; /* C-s */
271 tty.c_cc[VSUSP] = 26; /* C-z */
Eric Andersen02bc25b2000-07-06 21:29:32 +0000272
Erik Andersene49d5ec2000-02-08 19:58:47 +0000273 /* use line dicipline 0 */
274 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000275
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 /* Make it be sane */
Erik Andersen6c41c442000-03-19 05:13:49 +0000277 tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
Eric Andersend8862922001-04-23 15:14:11 +0000278 tty.c_cflag |= CREAD|HUPCL|CLOCAL;
279
Eric Andersen08b10341999-11-19 02:38:58 +0000280
Erik Andersene49d5ec2000-02-08 19:58:47 +0000281 /* input modes */
282 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000283
Erik Andersene49d5ec2000-02-08 19:58:47 +0000284 /* output modes */
285 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000286
Erik Andersene49d5ec2000-02-08 19:58:47 +0000287 /* local modes */
288 tty.c_lflag =
289 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000290
Erik Andersene49d5ec2000-02-08 19:58:47 +0000291 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000292}
293
Eric Andersenbc5941a2000-12-06 23:17:37 +0000294/* How much memory does this machine have?
295 Units are kBytes to avoid overflow on 4GB machines */
Eric Andersen74400cc2001-10-18 04:11:39 +0000296static int check_free_memory(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000297{
Erik Andersend07ee462000-02-21 21:26:32 +0000298 struct sysinfo info;
Eric Andersenbc5941a2000-12-06 23:17:37 +0000299 unsigned int result, u, s=10;
Eric Andersencc8ed391999-10-05 16:24:54 +0000300
Erik Andersend07ee462000-02-21 21:26:32 +0000301 if (sysinfo(&info) != 0) {
Eric Andersen53cfb7e2001-01-31 17:29:47 +0000302 perror_msg("Error checking free memory");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000303 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000304 }
Eric Andersenbc5941a2000-12-06 23:17:37 +0000305
306 /* Kernels 2.0.x and 2.2.x return info.mem_unit==0 with values in bytes.
307 * Kernels 2.4.0 return info.mem_unit in bytes. */
308 u = info.mem_unit;
309 if (u==0) u=1;
310 while ( (u&1) == 0 && s > 0 ) { u>>=1; s--; }
311 result = (info.totalram>>s) + (info.totalswap>>s);
312 result = result*u;
313 if (result < 0) result = INT_MAX;
314 return result;
Eric Andersencc8ed391999-10-05 16:24:54 +0000315}
316
Eric Andersen74400cc2001-10-18 04:11:39 +0000317static void console_init(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000318{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000319 int fd;
320 int tried_devcons = 0;
321 int tried_vtprimary = 0;
Erik Andersen029011b2000-03-04 21:19:32 +0000322 struct vt_stat vt;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000323 struct serial_struct sr;
324 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000325
Erik Andersene49d5ec2000-02-08 19:58:47 +0000326 if ((s = getenv("TERM")) != NULL) {
327 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
328 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000329
Erik Andersene49d5ec2000-02-08 19:58:47 +0000330 if ((s = getenv("CONSOLE")) != NULL) {
Matt Kraai18447702001-05-18 21:24:58 +0000331 safe_strncpy(console, s, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000333#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000334 /* sparc kernel supports console=tty[ab] parameter which is also
335 * passed to init, so catch it here */
336 else if ((s = getenv("console")) != NULL) {
337 /* remap tty[ab] to /dev/ttyS[01] */
338 if (strcmp(s, "ttya") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000339 safe_strncpy(console, SC_0, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000340 else if (strcmp(s, "ttyb") == 0)
Matt Kraai439e3df2001-07-23 14:52:08 +0000341 safe_strncpy(console, SC_1, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000342 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000343#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000344 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345 /* 2.2 kernels: identify the real console backend and try to use it */
346 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
347 /* this is a serial console */
Matt Kraai439e3df2001-07-23 14:52:08 +0000348 snprintf(console, sizeof(console) - 1, SC_FORMAT, sr.line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000349 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
350 /* this is linux virtual tty */
Matt Kraai439e3df2001-07-23 14:52:08 +0000351 snprintf(console, sizeof(console) - 1, VC_FORMAT, vt.v_active);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000352 } else {
Matt Kraai18447702001-05-18 21:24:58 +0000353 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000354 tried_devcons++;
355 }
Eric Andersen07e52971999-11-07 07:38:08 +0000356 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000357
358 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
359 /* Can't open selected console -- try /dev/console */
360 if (!tried_devcons) {
361 tried_devcons++;
Matt Kraai18447702001-05-18 21:24:58 +0000362 safe_strncpy(console, _PATH_CONSOLE, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000363 continue;
364 }
365 /* Can't open selected console -- try vt1 */
366 if (!tried_vtprimary) {
367 tried_vtprimary++;
Matt Kraai439e3df2001-07-23 14:52:08 +0000368 safe_strncpy(console, VC_1, sizeof(console));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000369 continue;
370 }
371 break;
372 }
373 if (fd < 0) {
374 /* Perhaps we should panic here? */
Matt Kraai18447702001-05-18 21:24:58 +0000375 safe_strncpy(console, "/dev/null", sizeof(console));
Eric Andersen07e52971999-11-07 07:38:08 +0000376 } else {
Eric Andersen3bc2b202002-07-29 06:39:58 +0000377 /* check for serial console */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000378 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersenfa4718e2000-02-21 19:25:12 +0000379 /* Force the TERM setting to vt102 for serial console --
Eric Andersen3bc2b202002-07-29 06:39:58 +0000380 * if TERM is set to linux (the default) */
Erik Andersenfa4718e2000-02-21 19:25:12 +0000381 if (strcmp( termType, "TERM=linux" ) == 0)
Matt Kraai18447702001-05-18 21:24:58 +0000382 safe_strncpy(termType, "TERM=vt102", sizeof(termType));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000383 }
384 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000385 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000386 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000387}
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000388
389static void fixup_argv(int argc, char **argv, char *new_argv0)
390{
391 int len;
392 /* Fix up argv[0] to be certain we claim to be init */
393 len = strlen(argv[0]);
394 memset(argv[0], 0, len);
Eric Andersen72f9a422001-10-28 05:12:20 +0000395 safe_strncpy(argv[0], new_argv0, len + 1);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000396
397 /* Wipe argv[1]-argv[N] so they don't clutter the ps listing */
398 len = 1;
399 while (argc > len) {
400 memset(argv[len], 0, strlen(argv[len]));
401 len++;
402 }
403}
404
Eric Andersen0298be82002-03-05 15:12:19 +0000405/* Make sure there is enough memory to do something useful. *
406 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
407static void check_memory(void)
Eric Andersen0460ff21999-10-25 23:32:44 +0000408{
Eric Andersen0298be82002-03-05 15:12:19 +0000409 struct stat statBuf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000410
Eric Andersen0298be82002-03-05 15:12:19 +0000411 if (check_free_memory() > 1000)
412 return;
413
414#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
415 if (stat("/etc/fstab", &statBuf) == 0) {
416 /* swapon -a requires /proc typically */
417 system("/bin/mount -t proc proc /proc");
418 /* Try to turn on swap */
419 system("/sbin/swapon -a");
420 if (check_free_memory() < 1000)
421 goto goodnight;
422 } else
423 goto goodnight;
424 return;
Eric Andersen38624232001-01-25 00:04:16 +0000425#endif
426
Eric Andersen0298be82002-03-05 15:12:19 +0000427 goodnight:
428 message(CONSOLE,
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000429 "\rSorry, your computer does not have enough memory.\n");
Eric Andersen0298be82002-03-05 15:12:19 +0000430 loop_forever();
431}
432
433static pid_t run(struct init_action *a)
434{
435 struct stat sb;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000436 int i, j, junk;
Eric Andersen0298be82002-03-05 15:12:19 +0000437 pid_t pid, pgrp, tmp_pid;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000438 char *s, *tmpCmd, *cmd[INIT_BUFFS_SIZE], *cmdpath;
439 char buf[INIT_BUFFS_SIZE+6]; /* INIT_BUFFS_SIZE+strlen("exec ")+1 */
Eric Andersen0298be82002-03-05 15:12:19 +0000440 sigset_t nmask, omask;
Eric Andersen477aedd2001-02-20 18:01:50 +0000441 char *environment[MAXENV+1] = {
Eric Andersen7f197852001-03-16 01:14:04 +0000442 termType,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000443 "HOME=/",
Eric Andersen72f9a422001-10-28 05:12:20 +0000444 "PATH=" _PATH_STDPATH,
Matt Kraai7bd773c2001-06-12 20:55:02 +0000445 "SHELL=" SHELL,
Eric Andersen7f197852001-03-16 01:14:04 +0000446 "USER=root",
447 NULL
Erik Andersene49d5ec2000-02-08 19:58:47 +0000448 };
Eric Andersen0298be82002-03-05 15:12:19 +0000449 static const char press_enter[] =
450#ifdef CUSTOMIZED_BANNER
451#include CUSTOMIZED_BANNER
452#endif
453 "\nPlease press Enter to activate this console. ";
Erik Andersenac6e71f2000-01-08 22:04:33 +0000454
Eric Andersen7f197852001-03-16 01:14:04 +0000455 /* inherit environment to the child, merging our values -andy */
456 for (i=0; environ[i]; i++) {
457 for (j=0; environment[j]; j++) {
458 s = strchr(environment[j], '=');
459 if (!strncmp(environ[i], environment[j], s - environment[j]))
460 break;
461 }
462 if (!environment[j]) {
463 environment[j++] = environ[i];
464 environment[j] = NULL;
465 }
Eric Andersen477aedd2001-02-20 18:01:50 +0000466 }
467
Eric Andersen0298be82002-03-05 15:12:19 +0000468 /* Block sigchild while forking. */
469 sigemptyset(&nmask);
470 sigaddset(&nmask, SIGCHLD);
471 sigprocmask(SIG_BLOCK, &nmask, &omask);
472
Eric Andersen72f9a422001-10-28 05:12:20 +0000473 if ((pid = fork()) == 0)
Eric Andersen72f9a422001-10-28 05:12:20 +0000474 {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000475 /* Clean up */
476 close(0);
477 close(1);
478 close(2);
Eric Andersen0298be82002-03-05 15:12:19 +0000479 sigprocmask(SIG_SETMASK, &omask, NULL);
480
Eric Andersen0298be82002-03-05 15:12:19 +0000481 /* Reset signal handlers that were set by the parent process */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000482 signal(SIGUSR1, SIG_DFL);
483 signal(SIGUSR2, SIG_DFL);
Eric Andersen0298be82002-03-05 15:12:19 +0000484 signal(SIGINT, SIG_DFL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000485 signal(SIGTERM, SIG_DFL);
Eric Andersen0298be82002-03-05 15:12:19 +0000486 signal(SIGHUP, SIG_DFL);
Eric Andersened8a9be2001-11-30 19:10:58 +0000487 signal(SIGCONT, SIG_DFL);
488 signal(SIGSTOP, SIG_DFL);
489 signal(SIGTSTP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000490
Eric Andersen599e3ce2002-07-03 11:08:10 +0000491 /* Create a new session and make ourself the process
492 * group leader for non-interactive jobs */
493 if ((a->action & (RESPAWN))==0)
494 setsid();
495
Eric Andersen0298be82002-03-05 15:12:19 +0000496 /* Open the new terminal device */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000497 if ((device_open(a->terminal, O_RDWR|O_NOCTTY)) < 0) {
Eric Andersen0298be82002-03-05 15:12:19 +0000498 if (stat(a->terminal, &sb) != 0) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000499 message(LOG | CONSOLE, "\rdevice '%s' does not exist.\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000500 a->terminal);
501 _exit(1);
Eric Andersen53f50612001-03-14 09:01:11 +0000502 }
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000503 message(LOG | CONSOLE, "\rBummer, can't open %s\n", a->terminal);
Eric Andersen0298be82002-03-05 15:12:19 +0000504 _exit(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000505 }
Eric Andersen599e3ce2002-07-03 11:08:10 +0000506
507 /* Non-interactive jobs should not get a controling tty */
508 if ((a->action & (RESPAWN))==0)
Eric Andersen0826b6b2002-07-03 23:50:16 +0000509 (void)ioctl(0, TIOCSCTTY, 0);
Eric Andersen599e3ce2002-07-03 11:08:10 +0000510
Eric Andersen0298be82002-03-05 15:12:19 +0000511 /* Make sure the terminal will act fairly normal for us */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000512 set_term(0);
Eric Andersen0826b6b2002-07-03 23:50:16 +0000513 /* Setup stdout, stderr for the new process so
Eric Andersen599e3ce2002-07-03 11:08:10 +0000514 * they point to the supplied terminal */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000515 dup(0);
516 dup(0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000517
Eric Andersen599e3ce2002-07-03 11:08:10 +0000518 /* For interactive jobs, create a new session
519 * and become the process group leader */
520 if ((a->action & (RESPAWN)))
521 setsid();
522
523 /* If the init Action requires us to wait, then force the
Eric Andersen0298be82002-03-05 15:12:19 +0000524 * supplied terminal to be the controlling tty. */
Eric Andersen599e3ce2002-07-03 11:08:10 +0000525 if (a->action & (SYSINIT|WAIT|CTRLALTDEL|SHUTDOWN|RESTART)) {
Eric Andersen0298be82002-03-05 15:12:19 +0000526
527 /* Now fork off another process to just hang around */
528 if ((pid = fork()) < 0) {
529 message(LOG | CONSOLE, "Can't fork!\n");
530 _exit(1);
531 }
532
533 if (pid > 0) {
534
535 /* We are the parent -- wait till the child is done */
536 signal(SIGINT, SIG_IGN);
537 signal(SIGTSTP, SIG_IGN);
538 signal(SIGQUIT, SIG_IGN);
539 signal(SIGCHLD, SIG_DFL);
540
541 /* Wait for child to exit */
Eric Andersen599e3ce2002-07-03 11:08:10 +0000542 while ((tmp_pid = waitpid(pid, &junk, 0)) != pid)
543 ;
Eric Andersen0298be82002-03-05 15:12:19 +0000544
545 /* See if stealing the controlling tty back is necessary */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000546 pgrp = tcgetpgrp(0);
Eric Andersen0298be82002-03-05 15:12:19 +0000547 if (pgrp != getpid())
548 _exit(0);
549
550 /* Use a temporary process to steal the controlling tty. */
551 if ((pid = fork()) < 0) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000552 message(LOG | CONSOLE, "\rCan't fork!\n");
Eric Andersen0298be82002-03-05 15:12:19 +0000553 _exit(1);
554 }
555 if (pid == 0) {
556 setsid();
Eric Andersen0826b6b2002-07-03 23:50:16 +0000557 ioctl(0, TIOCSCTTY, 1);
Eric Andersen0298be82002-03-05 15:12:19 +0000558 _exit(0);
559 }
560 while((tmp_pid = waitpid(pid, &junk, 0)) != pid) {
561 if (tmp_pid < 0 && errno == ECHILD)
562 break;
563 }
564 _exit(0);
565 }
566
567 /* Now fall though to actually execute things */
Eric Andersen0298be82002-03-05 15:12:19 +0000568 }
569
Erik Andersene132f4b2000-02-09 04:16:43 +0000570 /* See if any special /bin/sh requiring characters are present */
Eric Andersen0298be82002-03-05 15:12:19 +0000571 if (strpbrk(a->command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000572 cmd[0] = SHELL;
573 cmd[1] = "-c";
Eric Andersen0826b6b2002-07-03 23:50:16 +0000574 strcat(strcpy(buf, "exec "), a->command);
Erik Andersene132f4b2000-02-09 04:16:43 +0000575 cmd[2] = buf;
576 cmd[3] = NULL;
577 } else {
578 /* Convert command (char*) into cmd (char**, one word per string) */
Eric Andersen0826b6b2002-07-03 23:50:16 +0000579 strcpy(buf, a->command);
Eric Andersen72f9a422001-10-28 05:12:20 +0000580 s = buf;
581 for (tmpCmd = buf, i = 0;
582 (tmpCmd = strsep(&s, " \t")) != NULL;) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000583 if (*tmpCmd != '\0') {
584 cmd[i] = tmpCmd;
Erik Andersene132f4b2000-02-09 04:16:43 +0000585 i++;
586 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000587 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000588 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000589 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000590
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000591 cmdpath = cmd[0];
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000592
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000593 /*
594 Interactive shells want to see a dash in argv[0]. This
595 typically is handled by login, argv will be setup this
596 way if a dash appears at the front of the command path
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000597 (like "-/bin/sh").
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000598 */
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000599
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000600 if (*cmdpath == '-') {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000601
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000602 /* skip over the dash */
603 ++cmdpath;
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000604
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000605 /* find the last component in the command pathname */
606 s = get_last_path_component(cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000607
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000608 /* make a new argv[0] */
609 if ((cmd[0] = malloc(strlen(s)+2)) == NULL) {
610 message(LOG | CONSOLE, "malloc failed");
611 cmd[0] = cmdpath;
612 } else {
613 cmd[0][0] = '-';
614 strcpy(cmd[0]+1, s);
615 }
616 }
617
Eric Andersen0298be82002-03-05 15:12:19 +0000618 if (a->action & ASKFIRST) {
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000619 /*
620 * Save memory by not exec-ing anything large (like a shell)
621 * before the user wants it. This is critical if swap is not
622 * enabled and the system has low memory. Generally this will
623 * be run on the second virtual console, and the first will
624 * be allowed to start a shell or whatever an init script
625 * specifies.
626 */
Eric Andersen0298be82002-03-05 15:12:19 +0000627 messageND(LOG, "Waiting for enter to start '%s' (pid %d, terminal %s)\n",
628 cmdpath, getpid(), a->terminal);
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000629 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
630 getc(stdin);
631 }
632
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000633 /* Log the process name and args */
Eric Andersenfedce062001-11-17 07:27:14 +0000634 messageND(LOG, "Starting pid %d, console %s: '%s'\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000635 getpid(), a->terminal, cmdpath);
Eric Andersen7e3bf6e2000-09-14 22:01:31 +0000636
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000637#if defined CONFIG_FEATURE_INIT_COREDUMPS
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000638 if (stat (CORE_ENABLE_FLAG_FILE, &sb) == 0) {
639 struct rlimit limit;
640 limit.rlim_cur = RLIM_INFINITY;
641 limit.rlim_max = RLIM_INFINITY;
642 setrlimit(RLIMIT_CORE, &limit);
Erik Andersen983b51b2000-04-04 18:14:25 +0000643 }
Erik Andersen183da4a2000-04-04 18:36:37 +0000644#endif
Erik Andersen983b51b2000-04-04 18:14:25 +0000645
Erik Andersene49d5ec2000-02-08 19:58:47 +0000646 /* Now run it. The new program will take over this PID,
647 * so nothing further in init.c should be run. */
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000648 execve(cmdpath, cmd, environment);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000649
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000650 /* We're still here? Some error happened. */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000651 message(LOG | CONSOLE, "\rBummer, could not run '%s': %s\n", cmdpath,
Eric Andersen7ef1a5b2001-03-20 17:39:08 +0000652 strerror(errno));
Eric Andersen0298be82002-03-05 15:12:19 +0000653 _exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000654 }
Eric Andersen0298be82002-03-05 15:12:19 +0000655 sigprocmask(SIG_SETMASK, &omask, NULL);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000656 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000657}
658
Eric Andersen0298be82002-03-05 15:12:19 +0000659static int waitfor(struct init_action *a)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000660{
Eric Andersen0298be82002-03-05 15:12:19 +0000661 int pid;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000662 int status, wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000663
Eric Andersen0298be82002-03-05 15:12:19 +0000664 pid = run(a);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000665 while (1) {
666 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000667 if (wpid > 0 && wpid != pid) {
668 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000669 }
670 if (wpid == pid)
671 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000672 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000673 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000674}
675
Eric Andersen0298be82002-03-05 15:12:19 +0000676/* Run all commands of a particular type */
677static void run_actions(int action)
Eric Andersen219d6f51999-11-02 19:43:01 +0000678{
Eric Andersen0298be82002-03-05 15:12:19 +0000679 struct init_action *a, *tmp;
Eric Andersen219d6f51999-11-02 19:43:01 +0000680
Eric Andersen0298be82002-03-05 15:12:19 +0000681 for (a = init_action_list; a; a = tmp) {
682 tmp = a->next;
Eric Andersenc97ec342001-04-03 18:01:51 +0000683 if (a->action == action) {
Eric Andersen0298be82002-03-05 15:12:19 +0000684 if (a->action & (SYSINIT|WAIT|CTRLALTDEL|SHUTDOWN|RESTART)) {
685 waitfor(a);
686 delete_init_action(a);
687 } else if (a->action & ONCE) {
688 run(a);
689 delete_init_action(a);
690 } else if (a->action & (RESPAWN|ASKFIRST)) {
691 /* Only run stuff with pid==0. If they have
692 * a pid, that means it is still running */
693 if (a->pid == 0) {
694 a->pid = run(a);
695 }
696 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000697 }
698 }
699}
700
701
Erik Andersen7dc16072000-01-04 01:10:25 +0000702#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000703static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000704{
Eric Andersen813d88c2001-10-28 22:49:48 +0000705 sigset_t block_signals;
Erik Andersene132f4b2000-02-09 04:16:43 +0000706
Eric Andersen72f9a422001-10-28 05:12:20 +0000707 /* first disable all our signals */
708 sigemptyset(&block_signals);
709 sigaddset(&block_signals, SIGHUP);
710 sigaddset(&block_signals, SIGCHLD);
711 sigaddset(&block_signals, SIGUSR1);
712 sigaddset(&block_signals, SIGUSR2);
713 sigaddset(&block_signals, SIGINT);
714 sigaddset(&block_signals, SIGTERM);
Eric Andersened8a9be2001-11-30 19:10:58 +0000715 sigaddset(&block_signals, SIGCONT);
716 sigaddset(&block_signals, SIGSTOP);
717 sigaddset(&block_signals, SIGTSTP);
Eric Andersen72f9a422001-10-28 05:12:20 +0000718 sigprocmask(SIG_BLOCK, &block_signals, NULL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000719
Erik Andersene49d5ec2000-02-08 19:58:47 +0000720 /* Allow Ctrl-Alt-Del to reboot system. */
Erik Andersen4f3f7572000-04-28 00:18:56 +0000721 init_reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000722
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000723 message(CONSOLE|LOG, "\n\rThe system is going down NOW !!\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000724 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000725
726 /* Send signals to every process _except_ pid 1 */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000727 message(CONSOLE|LOG, "\rSending SIGTERM to all processes.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000728 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000729 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000730 sync();
731
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000732 message(CONSOLE|LOG, "\rSending SIGKILL to all processes.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000733 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000734 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000735
Matt Kraai8fc364e2001-04-12 20:12:16 +0000736 /* run everything to be run at "shutdown" */
Eric Andersenc97ec342001-04-03 18:01:51 +0000737 run_actions(SHUTDOWN);
Erik Andersene132f4b2000-02-09 04:16:43 +0000738
Erik Andersene49d5ec2000-02-08 19:58:47 +0000739 sync();
Eric Andersenbd22ed82000-07-08 18:55:24 +0000740 if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000741 /* bdflush, kupdate not needed for kernels >2.2.11 */
742 bdflush(1, 0);
743 sync();
744 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000745}
746
Eric Andersen730f8262001-12-17 23:13:08 +0000747static void exec_signal(int sig)
748{
Eric Andersen0298be82002-03-05 15:12:19 +0000749 struct init_action *a, *tmp;
Eric Andersen5222d312002-07-03 05:15:23 +0000750 sigset_t unblock_signals;
751
Eric Andersen0298be82002-03-05 15:12:19 +0000752 for (a = init_action_list; a; a = tmp) {
753 tmp = a->next;
754 if (a->action & RESTART) {
Eric Andersen730f8262001-12-17 23:13:08 +0000755 shutdown_system();
Eric Andersen5222d312002-07-03 05:15:23 +0000756
757 /* unblock all signals, blocked in shutdown_system() */
758 sigemptyset(&unblock_signals);
759 sigaddset(&unblock_signals, SIGHUP);
760 sigaddset(&unblock_signals, SIGCHLD);
761 sigaddset(&unblock_signals, SIGUSR1);
762 sigaddset(&unblock_signals, SIGUSR2);
763 sigaddset(&unblock_signals, SIGINT);
764 sigaddset(&unblock_signals, SIGTERM);
765 sigaddset(&unblock_signals, SIGCONT);
766 sigaddset(&unblock_signals, SIGSTOP);
767 sigaddset(&unblock_signals, SIGTSTP);
768 sigprocmask(SIG_UNBLOCK, &unblock_signals, NULL);
769
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000770 message(CONSOLE|LOG, "\rTrying to re-exec %s\n", a->command);
Eric Andersen0298be82002-03-05 15:12:19 +0000771 execl(a->command, a->command, NULL);
Eric Andersen730f8262001-12-17 23:13:08 +0000772
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000773 message(CONSOLE|LOG, "\rexec of '%s' failed: %s\n",
Eric Andersen0298be82002-03-05 15:12:19 +0000774 a->command, sys_errlist[errno]);
Eric Andersen730f8262001-12-17 23:13:08 +0000775 sync();
776 sleep(2);
777 init_reboot(RB_HALT_SYSTEM);
778 loop_forever();
779 }
780 }
781}
782
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000783static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000784{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000785 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000786 message(CONSOLE|LOG,
Eric Andersenf435a912001-11-20 05:42:57 +0000787#if #cpu(s390)
788 /* Seems the s390 console is Wierd(tm). */
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000789 "\rThe system is halted. You may reboot now.\n"
Eric Andersenf435a912001-11-20 05:42:57 +0000790#else
Eric Andersen3bc2b202002-07-29 06:39:58 +0000791 "\rThe system is halted. Press Reset or turn off power\n"
Eric Andersenf435a912001-11-20 05:42:57 +0000792#endif
793 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000794 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000795
Erik Andersene49d5ec2000-02-08 19:58:47 +0000796 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000797 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000798
Eric Andersenbd22ed82000-07-08 18:55:24 +0000799 if (sig == SIGUSR2 && kernelVersion >= KERNEL_VERSION(2,2,0))
Erik Andersen4f3f7572000-04-28 00:18:56 +0000800 init_reboot(RB_POWER_OFF);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000801 else
Erik Andersen4f3f7572000-04-28 00:18:56 +0000802 init_reboot(RB_HALT_SYSTEM);
Matt Kraai67a46402001-06-03 05:55:52 +0000803
804 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000805}
806
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000807static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000808{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000809 shutdown_system();
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000810 message(CONSOLE|LOG, "\rPlease stand by while rebooting the system.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000811 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000812
Erik Andersene49d5ec2000-02-08 19:58:47 +0000813 /* allow time for last message to reach serial console */
814 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000815
Erik Andersen4f3f7572000-04-28 00:18:56 +0000816 init_reboot(RB_AUTOBOOT);
Matt Kraai67a46402001-06-03 05:55:52 +0000817
818 loop_forever();
Eric Andersencc8ed391999-10-05 16:24:54 +0000819}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000820
Eric Andersenc97ec342001-04-03 18:01:51 +0000821static void ctrlaltdel_signal(int sig)
822{
823 run_actions(CTRLALTDEL);
824}
825
Eric Andersen0298be82002-03-05 15:12:19 +0000826/* The SIGSTOP & SIGTSTP handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000827static void stop_handler(int sig)
828{
Eric Andersen0298be82002-03-05 15:12:19 +0000829 int saved_errno = errno;
Eric Andersened8a9be2001-11-30 19:10:58 +0000830
831 got_cont = 0;
832 while(!got_cont) pause();
833 got_cont = 0;
834 errno = saved_errno;
835}
836
Eric Andersen0298be82002-03-05 15:12:19 +0000837/* The SIGCONT handler */
Eric Andersened8a9be2001-11-30 19:10:58 +0000838static void cont_handler(int sig)
839{
840 got_cont = 1;
841}
842
Erik Andersene49d5ec2000-02-08 19:58:47 +0000843#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000844
Eric Andersen0298be82002-03-05 15:12:19 +0000845static void new_init_action(int action, char *command, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000846{
Eric Andersen0298be82002-03-05 15:12:19 +0000847 struct init_action *new_action, *a;
Erik Andersen9e737252000-01-06 01:16:13 +0000848
Erik Andersene49d5ec2000-02-08 19:58:47 +0000849 if (*cons == '\0')
850 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000851
Eric Andersen3bc2b202002-07-29 06:39:58 +0000852 /* do not run entries if console device is not available */
853 if (access(cons, R_OK|W_OK))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000854 return;
Eric Andersen0298be82002-03-05 15:12:19 +0000855 if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST))
Eric Andersen1644db92001-09-05 20:18:15 +0000856 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000857
Eric Andersen0298be82002-03-05 15:12:19 +0000858 new_action = calloc((size_t) (1), sizeof(struct init_action));
859 if (!new_action) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000860 message(LOG | CONSOLE, "\rMemory allocation failure\n");
Matt Kraai67a46402001-06-03 05:55:52 +0000861 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000862 }
Eric Andersen0298be82002-03-05 15:12:19 +0000863
864 /* Append to the end of the list */
865 for (a = init_action_list; a && a->next; a = a->next) ;
Eric Andersen1644db92001-09-05 20:18:15 +0000866 if (a) {
Eric Andersen0298be82002-03-05 15:12:19 +0000867 a->next = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000868 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000869 init_action_list = new_action;
Eric Andersen1644db92001-09-05 20:18:15 +0000870 }
Eric Andersen0826b6b2002-07-03 23:50:16 +0000871 strcpy(new_action->command, command);
Eric Andersen0298be82002-03-05 15:12:19 +0000872 new_action->action = action;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000873 strcpy(new_action->terminal, cons);
Eric Andersen0298be82002-03-05 15:12:19 +0000874 new_action->pid = 0;
875// message(LOG|CONSOLE, "command='%s' action='%d' terminal='%s'\n",
876// new_action->command, new_action->action, new_action->terminal);
Erik Andersen7dc16072000-01-04 01:10:25 +0000877}
878
Eric Andersen0298be82002-03-05 15:12:19 +0000879static void delete_init_action(struct init_action * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000880{
Eric Andersen0298be82002-03-05 15:12:19 +0000881 struct init_action *a, *b = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000882
Eric Andersen0298be82002-03-05 15:12:19 +0000883 for (a = init_action_list; a; b = a, a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000884 if (a == action) {
885 if (b == NULL) {
Eric Andersen0298be82002-03-05 15:12:19 +0000886 init_action_list = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000887 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000888 b->next = a->next;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000889 }
890 free(a);
891 break;
892 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000893 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000894}
895
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000896/* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersen9e737252000-01-06 01:16:13 +0000897 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +0000898 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000899 * of "askfirst" shells). If CONFIG_FEATURE_USE_INITTAB
Erik Andersen812d4662000-01-07 18:30:40 +0000900 * _is_ defined, but /etc/inittab is missing, this
901 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000902 * */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000903static void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000904{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000905#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000906 FILE *file;
Eric Andersen0826b6b2002-07-03 23:50:16 +0000907 char buf[INIT_BUFFS_SIZE], lineAsRead[INIT_BUFFS_SIZE], tmpConsole[INIT_BUFFS_SIZE];
Eric Andersen0298be82002-03-05 15:12:19 +0000908 char *id, *runlev, *action, *command, *eol;
909 const struct init_action_type *a = actions;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000910 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000911
912
Erik Andersene49d5ec2000-02-08 19:58:47 +0000913 file = fopen(INITTAB, "r");
914 if (file == NULL) {
915 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000916#endif
Eric Andersenc97ec342001-04-03 18:01:51 +0000917 /* Reboot on Ctrl-Alt-Del */
Eric Andersen0298be82002-03-05 15:12:19 +0000918 new_init_action(CTRLALTDEL, "/sbin/reboot", console);
Eric Andersen1644db92001-09-05 20:18:15 +0000919 /* Umount all filesystems on halt/reboot */
Eric Andersen0298be82002-03-05 15:12:19 +0000920 new_init_action(SHUTDOWN, "/bin/umount -a -r", console);
Eric Andersen72f9a422001-10-28 05:12:20 +0000921#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen1644db92001-09-05 20:18:15 +0000922 /* Swapoff on halt/reboot */
Eric Andersen0298be82002-03-05 15:12:19 +0000923 new_init_action(SHUTDOWN, "/sbin/swapoff -a", console);
Eric Andersen1644db92001-09-05 20:18:15 +0000924#endif
Eric Andersen730f8262001-12-17 23:13:08 +0000925 /* Prepare to restart init when a HUP is received */
Eric Andersen0298be82002-03-05 15:12:19 +0000926 new_init_action(RESTART, "/sbin/init", console);
Eric Andersen3bc2b202002-07-29 06:39:58 +0000927 /* Askfirst shell on tty1-4 */
Eric Andersen0298be82002-03-05 15:12:19 +0000928 new_init_action(ASKFIRST, LOGIN_SHELL, console);
Eric Andersen3bc2b202002-07-29 06:39:58 +0000929 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
930 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
931 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000932 /* sysinit */
Eric Andersen0298be82002-03-05 15:12:19 +0000933 new_init_action(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000934
Erik Andersene49d5ec2000-02-08 19:58:47 +0000935 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000936#ifdef CONFIG_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000937 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000938
Eric Andersen0826b6b2002-07-03 23:50:16 +0000939 while (fgets(buf, INIT_BUFFS_SIZE, file) != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000940 foundIt = FALSE;
Eric Andersenb5966362000-05-31 20:04:38 +0000941 /* Skip leading spaces */
942 for (id = buf; *id == ' ' || *id == '\t'; id++);
943
944 /* Skip the line if it's a comment */
945 if (*id == '#' || *id == '\n')
Erik Andersene49d5ec2000-02-08 19:58:47 +0000946 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000947
Erik Andersene49d5ec2000-02-08 19:58:47 +0000948 /* Trim the trailing \n */
Eric Andersenb5966362000-05-31 20:04:38 +0000949 eol = strrchr(id, '\n');
950 if (eol != NULL)
951 *eol = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000952
Erik Andersene49d5ec2000-02-08 19:58:47 +0000953 /* Keep a copy around for posterity's sake (and error msgs) */
954 strcpy(lineAsRead, buf);
955
Eric Andersenb5966362000-05-31 20:04:38 +0000956 /* Separate the ID field from the runlevels */
957 runlev = strchr(id, ':');
958 if (runlev == NULL || *(runlev + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000959 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000960 continue;
961 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000962 *runlev = '\0';
963 ++runlev;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000964 }
965
Eric Andersenb5966362000-05-31 20:04:38 +0000966 /* Separate the runlevels from the action */
967 action = strchr(runlev, ':');
968 if (action == NULL || *(action + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000969 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000970 continue;
971 } else {
Eric Andersenb5966362000-05-31 20:04:38 +0000972 *action = '\0';
973 ++action;
974 }
975
Eric Andersen0298be82002-03-05 15:12:19 +0000976 /* Separate the action from the command */
977 command = strchr(action, ':');
978 if (command == NULL || *(command + 1) == '\0') {
Eric Andersenb0cc0a62002-03-20 14:57:50 +0000979 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Eric Andersenb5966362000-05-31 20:04:38 +0000980 continue;
981 } else {
Eric Andersen0298be82002-03-05 15:12:19 +0000982 *command = '\0';
983 ++command;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000984 }
985
986 /* Ok, now process it */
987 a = actions;
988 while (a->name != 0) {
Eric Andersenb5966362000-05-31 20:04:38 +0000989 if (strcmp(a->name, action) == 0) {
990 if (*id != '\0') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000991 strcpy(tmpConsole, "/dev/");
Eric Andersen0826b6b2002-07-03 23:50:16 +0000992 strncat(tmpConsole, id, INIT_BUFFS_SIZE-6);
Eric Andersenb5966362000-05-31 20:04:38 +0000993 id = tmpConsole;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000994 }
Eric Andersen0298be82002-03-05 15:12:19 +0000995 new_init_action(a->action, command, id);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000996 foundIt = TRUE;
997 }
998 a++;
999 }
Eric Andersen0298be82002-03-05 15:12:19 +00001000 if (foundIt == TRUE)
Erik Andersene49d5ec2000-02-08 19:58:47 +00001001 continue;
1002 else {
1003 /* Choke on an unknown action */
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001004 message(LOG | CONSOLE, "\rBad inittab entry: %s\n", lineAsRead);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001005 }
Erik Andersen7dc16072000-01-04 01:10:25 +00001006 }
Eric Andersend8636ca2002-05-15 22:19:09 +00001007 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001008 return;
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001009#endif /* CONFIG_FEATURE_USE_INITTAB */
Erik Andersen7dc16072000-01-04 01:10:25 +00001010}
1011
Erik Andersene132f4b2000-02-09 04:16:43 +00001012
1013
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001014extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +00001015{
Eric Andersen0298be82002-03-05 15:12:19 +00001016 struct init_action *a;
Erik Andersene49d5ec2000-02-08 19:58:47 +00001017 pid_t wpid;
1018 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +00001019
Eric Andersen730f8262001-12-17 23:13:08 +00001020 if (argc > 1 && !strcmp(argv[1], "-q")) {
Eric Andersen467a18b2002-01-25 23:13:06 +00001021 /* don't assume init's pid == 1 */
1022 long *pid = find_pid_by_name("init");
1023 if (!pid || *pid<=0) {
1024 pid = find_pid_by_name("linuxrc");
1025 if (!pid || *pid<=0)
1026 error_msg_and_die("no process killed");
1027 }
1028 kill(*pid, SIGHUP);
Eric Andersen730f8262001-12-17 23:13:08 +00001029 exit(0);
1030 }
1031
Eric Andersend73dc5b1999-11-10 23:13:02 +00001032#ifndef DEBUG_INIT
Erik Andersena51ecdd2000-02-24 18:09:58 +00001033 /* Expect to be invoked as init with PID=1 or be invoked as linuxrc */
1034 if (getpid() != 1
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001035#ifdef CONFIG_FEATURE_INITRD
Matt Kraaie58771e2000-07-12 15:38:49 +00001036 && strstr(applet_name, "linuxrc") == NULL
Erik Andersena51ecdd2000-02-24 18:09:58 +00001037#endif
1038 )
1039 {
Eric Andersen67991cf2001-02-14 21:23:06 +00001040 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001041 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001042 /* Set up sig handlers -- be sure to
1043 * clear all of these in run() */
Eric Andersen0298be82002-03-05 15:12:19 +00001044 signal(SIGHUP, exec_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001045 signal(SIGUSR1, halt_signal);
Eric Andersen4c95a282000-07-07 19:30:28 +00001046 signal(SIGUSR2, halt_signal);
Eric Andersen0298be82002-03-05 15:12:19 +00001047 signal(SIGINT, ctrlaltdel_signal);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001048 signal(SIGTERM, reboot_signal);
Eric Andersened8a9be2001-11-30 19:10:58 +00001049 signal(SIGCONT, cont_handler);
1050 signal(SIGSTOP, stop_handler);
1051 signal(SIGTSTP, stop_handler);
Eric Andersen0460ff21999-10-25 23:32:44 +00001052
Erik Andersene49d5ec2000-02-08 19:58:47 +00001053 /* Turn off rebooting via CTL-ALT-DEL -- we get a
1054 * SIGINT on CAD so we can shut things down gracefully... */
Erik Andersen4f3f7572000-04-28 00:18:56 +00001055 init_reboot(RB_DISABLE_CAD);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001056#endif
Erik Andersen05df2392000-01-13 04:43:48 +00001057
Erik Andersen298854f2000-03-23 01:09:18 +00001058 /* Figure out what kernel this is running */
1059 kernelVersion = get_kernel_revision();
1060
Eric Andersen599e3ce2002-07-03 11:08:10 +00001061 /* Figure out where the default console should be */
1062 console_init();
1063
Erik Andersene49d5ec2000-02-08 19:58:47 +00001064 /* Close whatever files are open, and reset the console. */
1065 close(0);
1066 close(1);
1067 close(2);
Eric Andersen72f9a422001-10-28 05:12:20 +00001068
Eric Andersen599e3ce2002-07-03 11:08:10 +00001069 if(device_open(console, O_RDWR|O_NOCTTY)==0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001070 set_term(0);
Eric Andersen599e3ce2002-07-03 11:08:10 +00001071 close(0);
1072 }
1073
Erik Andersen983b51b2000-04-04 18:14:25 +00001074 chdir("/");
Erik Andersene49d5ec2000-02-08 19:58:47 +00001075 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +00001076
Erik Andersene49d5ec2000-02-08 19:58:47 +00001077 /* Make sure PATH is set to something sane */
Eric Andersen452fd332001-03-04 06:47:33 +00001078 putenv("PATH="_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +00001079
Erik Andersene49d5ec2000-02-08 19:58:47 +00001080 /* Hello world */
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001081 message(MAYBE_CONSOLE|LOG, "\rinit started: %s\n", full_version);
Eric Andersencc8ed391999-10-05 16:24:54 +00001082
Erik Andersene49d5ec2000-02-08 19:58:47 +00001083 /* Make sure there is enough memory to do something useful. */
1084 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +00001085
Erik Andersene49d5ec2000-02-08 19:58:47 +00001086 /* Check if we are supposed to be in single user mode */
1087 if (argc > 1 && (!strcmp(argv[1], "single") ||
1088 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
Eric Andersen7e3bf6e2000-09-14 22:01:31 +00001089 /* Ask first then start a shell on tty2-4 */
Eric Andersen3bc2b202002-07-29 06:39:58 +00001090 new_init_action(ASKFIRST, LOGIN_SHELL, VC_2);
1091 new_init_action(ASKFIRST, LOGIN_SHELL, VC_3);
1092 new_init_action(ASKFIRST, LOGIN_SHELL, VC_4);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001093 /* Start a shell on tty1 */
Eric Andersen0298be82002-03-05 15:12:19 +00001094 new_init_action(RESPAWN, LOGIN_SHELL, console);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001095 } else {
1096 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +00001097
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001098 /* NOTE that if CONFIG_FEATURE_USE_INITTAB is NOT defined,
Erik Andersene49d5ec2000-02-08 19:58:47 +00001099 * then parse_inittab() simply adds in some default
Eric Andersen77d92682001-05-23 20:32:09 +00001100 * actions(i.e., runs INIT_SCRIPT and then starts a pair
Erik Andersene49d5ec2000-02-08 19:58:47 +00001101 * of "askfirst" shells */
1102 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +00001103 }
Erik Andersen983b51b2000-04-04 18:14:25 +00001104
Eric Andersen7ef1a5b2001-03-20 17:39:08 +00001105 /* Make the command line just say "init" -- thats all, nothing else */
1106 fixup_argv(argc, argv, "init");
Eric Andersen219d6f51999-11-02 19:43:01 +00001107
Erik Andersene49d5ec2000-02-08 19:58:47 +00001108 /* Now run everything that needs to be run */
1109
1110 /* First run the sysinit command */
Eric Andersen1644db92001-09-05 20:18:15 +00001111 run_actions(SYSINIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001112
Erik Andersene49d5ec2000-02-08 19:58:47 +00001113 /* Next run anything that wants to block */
Eric Andersen1644db92001-09-05 20:18:15 +00001114 run_actions(WAIT);
Eric Andersen0298be82002-03-05 15:12:19 +00001115
Erik Andersene49d5ec2000-02-08 19:58:47 +00001116 /* Next run anything to be run only once */
Eric Andersen0298be82002-03-05 15:12:19 +00001117 run_actions(ONCE);
1118
Erik Andersene49d5ec2000-02-08 19:58:47 +00001119 /* If there is nothing else to do, stop */
Eric Andersen0298be82002-03-05 15:12:19 +00001120 if (init_action_list == NULL) {
Eric Andersenb0cc0a62002-03-20 14:57:50 +00001121 message(LOG | CONSOLE, "\rNo more tasks for init -- sleeping forever.\n");
Matt Kraai67a46402001-06-03 05:55:52 +00001122 loop_forever();
Erik Andersene49d5ec2000-02-08 19:58:47 +00001123 }
1124
1125 /* Now run the looping stuff for the rest of forever */
1126 while (1) {
Eric Andersen0298be82002-03-05 15:12:19 +00001127 /* run the respawn stuff */
1128 run_actions(RESPAWN);
1129
1130 /* run the askfirst stuff */
1131 run_actions(ASKFIRST);
1132
1133 /* Don't consume all CPU time -- sleep a bit */
1134 sleep(1);
1135
Erik Andersene49d5ec2000-02-08 19:58:47 +00001136 /* Wait for a child process to exit */
1137 wpid = wait(&status);
1138 if (wpid > 0) {
1139 /* Find out who died and clean up their corpse */
Eric Andersen0298be82002-03-05 15:12:19 +00001140 for (a = init_action_list; a; a = a->next) {
Erik Andersene49d5ec2000-02-08 19:58:47 +00001141 if (a->pid == wpid) {
Eric Andersen0298be82002-03-05 15:12:19 +00001142 /* Set the pid to 0 so that the process gets
1143 * restarted by run_actions() */
Erik Andersene49d5ec2000-02-08 19:58:47 +00001144 a->pid = 0;
Eric Andersen0298be82002-03-05 15:12:19 +00001145 message(LOG, "Process '%s' (pid %d) exited. "
1146 "Scheduling it for restart.\n", a->command, wpid);
Erik Andersene49d5ec2000-02-08 19:58:47 +00001147 }
1148 }
1149 }
Erik Andersene49d5ec2000-02-08 19:58:47 +00001150 }
Eric Andersencc8ed391999-10-05 16:24:54 +00001151}
Erik Andersen029011b2000-03-04 21:19:32 +00001152
1153/*
1154Local Variables:
1155c-file-style: "linux"
1156c-basic-offset: 4
1157tab-width: 4
1158End:
1159*/