blob: 2f2203b38d9d09a5aaeddd1ce37c4f8b615caf8e [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 *
5 *
6 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
7 * 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
Eric Andersencc8ed391999-10-05 16:24:54 +000030#include "internal.h"
31#include <stdio.h>
Erik Andersen7dc16072000-01-04 01:10:25 +000032#include <string.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000033#include <stdlib.h>
34#include <stdarg.h>
35#include <unistd.h>
36#include <errno.h>
37#include <signal.h>
38#include <termios.h>
Eric Andersenb186d981999-12-03 09:19:54 +000039#include <paths.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000040#include <sys/types.h>
41#include <sys/fcntl.h>
42#include <sys/wait.h>
43#include <string.h>
44#include <sys/mount.h>
45#include <sys/reboot.h>
46#include <sys/kdaemon.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000047#include <sys/sysmacros.h>
Erik Andersenfac10d72000-02-07 05:29:42 +000048#include <asm/types.h>
Erik Andersene49d5ec2000-02-08 19:58:47 +000049#include <linux/serial.h> /* for serial_struct */
50#include <sys/vt.h> /* for vt_stat */
Eric Andersenabc7d591999-10-19 00:27:50 +000051#include <sys/ioctl.h>
Erik Andersen4d1d0111999-12-17 18:44:15 +000052#include <linux/version.h>
Eric Andersen4c781471999-11-26 08:12:56 +000053#ifdef BB_SYSLOGD
54#include <sys/syslog.h>
55#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000056
Eric Andersen0ecb54a1999-12-05 23:24:55 +000057#if ! defined BB_FEATURE_USE_PROCFS
58#error Sorry, I depend on the /proc filesystem right now.
59#endif
60
Erik Andersen4d1d0111999-12-17 18:44:15 +000061#ifndef KERNEL_VERSION
62#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
63#endif
64
Eric Andersen0ecb54a1999-12-05 23:24:55 +000065
Erik Andersene49d5ec2000-02-08 19:58:47 +000066#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
67#define VT_SECONDARY "/dev/tty2" /* Virtual console */
68#define VT_LOG "/dev/tty3" /* Virtual console */
69#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
70#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
71#define SHELL "/bin/sh" /* Default shell */
72#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +000073#ifndef INIT_SCRIPT
Erik Andersene49d5ec2000-02-08 19:58:47 +000074#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +000075#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +000076
Eric Andersen3ae0c781999-11-04 01:13:21 +000077#define LOG 0x1
78#define CONSOLE 0x2
Erik Andersen7dc16072000-01-04 01:10:25 +000079
80/* Allowed init action types */
81typedef enum {
Erik Andersene49d5ec2000-02-08 19:58:47 +000082 SYSINIT = 1,
83 RESPAWN,
84 ASKFIRST,
85 WAIT,
Erik Andersene132f4b2000-02-09 04:16:43 +000086 ONCE,
87 CTRLALTDEL
Erik Andersen7dc16072000-01-04 01:10:25 +000088} initActionEnum;
89
90/* And now a list of the actions we support in the version of init */
Erik Andersene49d5ec2000-02-08 19:58:47 +000091typedef struct initActionType {
92 const char *name;
93 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +000094} initActionType;
95
96static const struct initActionType actions[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +000097 {"sysinit", SYSINIT},
98 {"respawn", RESPAWN},
99 {"askfirst", ASKFIRST},
100 {"wait", WAIT},
101 {"once", ONCE},
Erik Andersene132f4b2000-02-09 04:16:43 +0000102 {"ctrlaltdel", CTRLALTDEL},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103 {0}
Erik Andersen7dc16072000-01-04 01:10:25 +0000104};
105
106/* Set up a linked list of initactions, to be read from inittab */
107typedef struct initActionTag initAction;
108struct initActionTag {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000109 pid_t pid;
110 char process[256];
111 char console[256];
112 initAction *nextPtr;
113 initActionEnum action;
Erik Andersen7dc16072000-01-04 01:10:25 +0000114};
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115initAction *initActionList = NULL;
Erik Andersen7dc16072000-01-04 01:10:25 +0000116
117
Erik Andersenac6e71f2000-01-08 22:04:33 +0000118static char *secondConsole = VT_SECONDARY;
Eric Andersenbe971d61999-11-03 16:52:50 +0000119static char *log = VT_LOG;
Erik Andersenac6e71f2000-01-08 22:04:33 +0000120static int kernelVersion = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000121static char termType[32] = "TERM=ansi";
122static char console[32] = _PATH_CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000123static void delete_initAction(initAction * action);
Eric Andersen0460ff21999-10-25 23:32:44 +0000124
125
Eric Andersen3ae0c781999-11-04 01:13:21 +0000126/* print a message to the specified device:
127 * device may be bitwise-or'd from LOG | CONSOLE */
128void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000129{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000130 va_list arguments;
131 int fd;
Erik Andersen7dc16072000-01-04 01:10:25 +0000132
Eric Andersen4c781471999-11-26 08:12:56 +0000133#ifdef BB_SYSLOGD
134
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135 /* Log the message to syslogd */
136 if (device & LOG) {
137 char msg[1024];
Eric Andersen4c781471999-11-26 08:12:56 +0000138
Erik Andersene49d5ec2000-02-08 19:58:47 +0000139 va_start(arguments, fmt);
140 vsnprintf(msg, sizeof(msg), fmt, arguments);
141 va_end(arguments);
Erik Andersene132f4b2000-02-09 04:16:43 +0000142 openlog("init", 0, LOG_USER);
143 syslog(LOG_USER|LOG_INFO, msg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000144 closelog();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000145 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000146#else
147 static int log_fd = -1;
148
149 /* Take full control of the log tty, and never close it.
150 * It's mine, all mine! Muhahahaha! */
151 if (log_fd < 0) {
152 if (log == NULL) {
153 /* don't even try to log, because there is no such console */
154 log_fd = -2;
155 /* log to main console instead */
156 device = CONSOLE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000157 } else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
158 log_fd = -2;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
160 fflush(stderr);
Erik Andersene132f4b2000-02-09 04:16:43 +0000161 log = NULL;
162 device = CONSOLE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000163 }
164 }
165 if ((device & LOG) && (log_fd >= 0)) {
166 va_start(arguments, fmt);
167 vdprintf(log_fd, fmt, arguments);
168 va_end(arguments);
169 }
Eric Andersen4c781471999-11-26 08:12:56 +0000170#endif
171
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172 if (device & CONSOLE) {
173 /* Always send console messages to /dev/console so people will see them. */
174 if (
175 (fd =
176 device_open(_PATH_CONSOLE,
177 O_WRONLY | O_NOCTTY | O_NDELAY)) >= 0) {
178 va_start(arguments, fmt);
179 vdprintf(fd, fmt, arguments);
180 va_end(arguments);
181 close(fd);
182 } else {
183 fprintf(stderr, "Bummer, can't print: ");
184 va_start(arguments, fmt);
185 vfprintf(stderr, fmt, arguments);
186 fflush(stderr);
187 va_end(arguments);
188 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000189 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000190}
191
Eric Andersen3ae0c781999-11-04 01:13:21 +0000192
Eric Andersen0460ff21999-10-25 23:32:44 +0000193/* Set terminal settings to reasonable defaults */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000194void set_term(int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000195{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000196 struct termios tty;
197 static const char control_characters[] = {
198 '\003', '\034', '\177', '\025', '\004', '\0',
199 '\1', '\0', '\021', '\023', '\032', '\0', '\022',
200 '\017', '\027', '\026', '\0'
Eric Andersen08b10341999-11-19 02:38:58 +0000201 };
Eric Andersencc8ed391999-10-05 16:24:54 +0000202
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000204
Erik Andersene49d5ec2000-02-08 19:58:47 +0000205 /* set control chars */
206 memcpy(tty.c_cc, control_characters, sizeof(control_characters));
Eric Andersencc8ed391999-10-05 16:24:54 +0000207
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208 /* use line dicipline 0 */
209 tty.c_line = 0;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000210
Erik Andersene49d5ec2000-02-08 19:58:47 +0000211 /* Make it be sane */
212 //tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
213 //tty.c_cflag |= HUPCL|CLOCAL;
Eric Andersen08b10341999-11-19 02:38:58 +0000214
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215 /* input modes */
216 tty.c_iflag = ICRNL | IXON | IXOFF;
Eric Andersen08b10341999-11-19 02:38:58 +0000217
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218 /* output modes */
219 tty.c_oflag = OPOST | ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000220
Erik Andersene49d5ec2000-02-08 19:58:47 +0000221 /* local modes */
222 tty.c_lflag =
223 ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE | IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000224
Erik Andersene49d5ec2000-02-08 19:58:47 +0000225 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000226}
227
Eric Andersen219d6f51999-11-02 19:43:01 +0000228/* How much memory does this machine have? */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000229static int mem_total()
Eric Andersencc8ed391999-10-05 16:24:54 +0000230{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000231 char s[80];
232 char *p = "/proc/meminfo";
233 FILE *f;
234 const char pattern[] = "MemTotal:";
Eric Andersencc8ed391999-10-05 16:24:54 +0000235
Erik Andersene49d5ec2000-02-08 19:58:47 +0000236 if ((f = fopen(p, "r")) < 0) {
237 message(LOG, "Error opening %s: %s\n", p, strerror(errno));
238 return -1;
Eric Andersenabc7d591999-10-19 00:27:50 +0000239 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000240 while (NULL != fgets(s, 79, f)) {
241 p = strstr(s, pattern);
242 if (NULL != p) {
243 fclose(f);
244 return (atoi(p + strlen(pattern)));
245 }
246 }
247 return -1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000248}
249
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000250static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000251{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000252 int fd;
253 int tried_devcons = 0;
254 int tried_vtprimary = 0;
255 struct serial_struct sr;
256 char *s;
Eric Andersen0460ff21999-10-25 23:32:44 +0000257
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 if ((s = getenv("TERM")) != NULL) {
259 snprintf(termType, sizeof(termType) - 1, "TERM=%s", s);
260 }
Erik Andersenac6e71f2000-01-08 22:04:33 +0000261
Erik Andersene49d5ec2000-02-08 19:58:47 +0000262 if ((s = getenv("CONSOLE")) != NULL) {
263 snprintf(console, sizeof(console) - 1, "%s", s);
264 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000265#if #cpu(sparc)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 /* sparc kernel supports console=tty[ab] parameter which is also
267 * passed to init, so catch it here */
268 else if ((s = getenv("console")) != NULL) {
269 /* remap tty[ab] to /dev/ttyS[01] */
270 if (strcmp(s, "ttya") == 0)
271 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON0);
272 else if (strcmp(s, "ttyb") == 0)
273 snprintf(console, sizeof(console) - 1, "%s", SERIAL_CON1);
274 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000275#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000276 else {
277 struct vt_stat vt;
Eric Andersen07e52971999-11-07 07:38:08 +0000278
Erik Andersene49d5ec2000-02-08 19:58:47 +0000279 /* 2.2 kernels: identify the real console backend and try to use it */
280 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
281 /* this is a serial console */
282 snprintf(console, sizeof(console) - 1, "/dev/ttyS%d", sr.line);
283 } else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
284 /* this is linux virtual tty */
285 snprintf(console, sizeof(console) - 1, "/dev/tty%d",
286 vt.v_active);
287 } else {
288 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
289 tried_devcons++;
290 }
Eric Andersen07e52971999-11-07 07:38:08 +0000291 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000292
293 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
294 /* Can't open selected console -- try /dev/console */
295 if (!tried_devcons) {
296 tried_devcons++;
297 snprintf(console, sizeof(console) - 1, "%s", _PATH_CONSOLE);
298 continue;
299 }
300 /* Can't open selected console -- try vt1 */
301 if (!tried_vtprimary) {
302 tried_vtprimary++;
303 snprintf(console, sizeof(console) - 1, "%s", VT_PRIMARY);
304 continue;
305 }
306 break;
307 }
308 if (fd < 0) {
309 /* Perhaps we should panic here? */
310 snprintf(console, sizeof(console) - 1, "/dev/null");
Eric Andersen07e52971999-11-07 07:38:08 +0000311 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000312 /* check for serial console and disable logging to tty3 & running a
313 * shell to tty2 */
314 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000315 log = NULL;
316 secondConsole = NULL;
Erik Andersene132f4b2000-02-09 04:16:43 +0000317 message(LOG | CONSOLE,
318 "serial console detected. Disabling virtual terminals.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000319 }
320 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000321 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000322 message(LOG, "console=%s\n", console);
Eric Andersen0460ff21999-10-25 23:32:44 +0000323}
324
Erik Andersene49d5ec2000-02-08 19:58:47 +0000325static pid_t run(char *command, char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000326{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000327 int i, fd;
328 pid_t pid;
329 char *tmpCmd;
330 char *cmd[255];
Erik Andersene132f4b2000-02-09 04:16:43 +0000331 char buf[255];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332 static const char press_enter[] =
333
334 "\nPlease press Enter to activate this console. ";
335 char *environment[] = {
336 "HOME=/",
337 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
338 "SHELL=/bin/sh",
339 termType,
340 "USER=root",
341 0
342 };
Erik Andersenac6e71f2000-01-08 22:04:33 +0000343
Eric Andersen0460ff21999-10-25 23:32:44 +0000344
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345 if ((pid = fork()) == 0) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000346#ifdef DEBUG_INIT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000347 pid_t shell_pgid = getpid();
Erik Andersene132f4b2000-02-09 04:16:43 +0000348#endif
Erik Andersen0881de72000-01-05 09:34:26 +0000349
Erik Andersene49d5ec2000-02-08 19:58:47 +0000350 /* Clean up */
351 close(0);
352 close(1);
353 close(2);
354 setsid();
Eric Andersen0460ff21999-10-25 23:32:44 +0000355
Erik Andersene49d5ec2000-02-08 19:58:47 +0000356 /* Reset signal handlers set for parent process */
357 signal(SIGUSR1, SIG_DFL);
358 signal(SIGUSR2, SIG_DFL);
359 signal(SIGINT, SIG_DFL);
360 signal(SIGTERM, SIG_DFL);
361 signal(SIGHUP, SIG_DFL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000362
Erik Andersene49d5ec2000-02-08 19:58:47 +0000363 if ((fd = device_open(terminal, O_RDWR)) < 0) {
364 message(LOG | CONSOLE, "Bummer, can't open %s\r\n", terminal);
365 exit(1);
366 }
367 dup2(fd, 0);
368 dup2(fd, 1);
369 dup2(fd, 2);
370 tcsetpgrp(0, getpgrp());
371 set_term(0);
372
373 if (get_enter == TRUE) {
374 /*
375 * Save memory by not exec-ing anything large (like a shell)
376 * before the user wants it. This is critical if swap is not
377 * enabled and the system has low memory. Generally this will
378 * be run on the second virtual console, and the first will
379 * be allowed to start a shell or whatever an init script
380 * specifies.
381 */
382 char c;
383
Erik Andersene132f4b2000-02-09 04:16:43 +0000384#ifdef DEBUG_INIT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000385 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
386 command, shell_pgid, terminal);
Erik Andersene132f4b2000-02-09 04:16:43 +0000387#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000388 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
389 read(fileno(stdin), &c, 1);
390 }
391
Erik Andersene49d5ec2000-02-08 19:58:47 +0000392#ifdef DEBUG_INIT
Erik Andersene132f4b2000-02-09 04:16:43 +0000393 /* Log the process name and args */
394 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
395 shell_pgid, terminal, command);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000396#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000397
398 /* See if any special /bin/sh requiring characters are present */
399 if (strpbrk(command, "~`!$^&*()=|\\{}[];\"'<>?") != NULL) {
400 cmd[0] = SHELL;
401 cmd[1] = "-c";
402 strcpy(buf, "exec ");
403 strncat(buf, command, sizeof(buf) - strlen(buf) - 1);
404 cmd[2] = buf;
405 cmd[3] = NULL;
406 } else {
407 /* Convert command (char*) into cmd (char**, one word per string) */
408 for (tmpCmd = command, i = 0;
409 (tmpCmd = strsep(&command, " \t")) != NULL;) {
410 if (*tmpCmd != '\0') {
411 cmd[i] = tmpCmd;
412 tmpCmd++;
413 i++;
414 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000415 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000416 cmd[i] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000417 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000418
419 /* Now run it. The new program will take over this PID,
420 * so nothing further in init.c should be run. */
421 execve(cmd[0], cmd, environment);
422
423 /* We're still here? Some error happened. */
424 message(LOG | CONSOLE, "Bummer, could not run '%s': %s\n", cmd[0],
425 strerror(errno));
426 exit(-1);
Erik Andersen05df2392000-01-13 04:43:48 +0000427 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000428 return pid;
Eric Andersen0460ff21999-10-25 23:32:44 +0000429}
430
Erik Andersene49d5ec2000-02-08 19:58:47 +0000431static int waitfor(char *command, char *terminal, int get_enter)
Erik Andersen0e3782f2000-01-07 02:54:55 +0000432{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000433 int status, wpid;
434 int pid = run(command, terminal, get_enter);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000435
Erik Andersene49d5ec2000-02-08 19:58:47 +0000436 while (1) {
437 wpid = wait(&status);
Erik Andersene132f4b2000-02-09 04:16:43 +0000438 if (wpid > 0 && wpid != pid) {
439 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000440 }
441 if (wpid == pid)
442 break;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000443 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000444 return wpid;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000445}
446
Eric Andersen219d6f51999-11-02 19:43:01 +0000447/* Make sure there is enough memory to do something useful. *
Erik Andersene132f4b2000-02-09 04:16:43 +0000448 * Calls "swapon -a" if needed so be sure /etc/fstab is present... */
Eric Andersen219d6f51999-11-02 19:43:01 +0000449static void check_memory()
450{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000451 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000452
Erik Andersene49d5ec2000-02-08 19:58:47 +0000453 if (mem_total() > 3500)
454 return;
455
456 if (stat("/etc/fstab", &statBuf) == 0) {
457 /* Try to turn on swap */
Erik Andersene132f4b2000-02-09 04:16:43 +0000458 system("/sbin/swapon swapon -a");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000459 if (mem_total() < 3500)
460 goto goodnight;
461 } else
462 goto goodnight;
Eric Andersen219d6f51999-11-02 19:43:01 +0000463 return;
464
Erik Andersene49d5ec2000-02-08 19:58:47 +0000465 goodnight:
466 message(CONSOLE,
467 "Sorry, your computer does not have enough memory.\r\n");
468 while (1)
469 sleep(1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000470}
471
Erik Andersene132f4b2000-02-09 04:16:43 +0000472/* Run all commands to be run right before halt/reboot */
473static void run_lastAction(void)
474{
475 initAction *a;
476 for (a = initActionList; a; a = a->nextPtr) {
477 if (a->action == CTRLALTDEL) {
478 waitfor(a->process, a->console, FALSE);
479 delete_initAction(a);
480 }
481 }
482}
483
484
Erik Andersen7dc16072000-01-04 01:10:25 +0000485#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000486static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000487{
Erik Andersene132f4b2000-02-09 04:16:43 +0000488
Erik Andersene49d5ec2000-02-08 19:58:47 +0000489 /* first disable our SIGHUP signal */
490 signal(SIGHUP, SIG_DFL);
Erik Andersen7dc16072000-01-04 01:10:25 +0000491
Erik Andersene49d5ec2000-02-08 19:58:47 +0000492 /* Allow Ctrl-Alt-Del to reboot system. */
493 reboot(RB_ENABLE_CAD);
Erik Andersene132f4b2000-02-09 04:16:43 +0000494
495 message(CONSOLE|LOG, "\r\nThe system is going down NOW !!\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000496 sync();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000497
498 /* Send signals to every process _except_ pid 1 */
Erik Andersene132f4b2000-02-09 04:16:43 +0000499 message(CONSOLE|LOG, "Sending SIGTERM to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000500 kill(-1, SIGTERM);
Erik Andersene132f4b2000-02-09 04:16:43 +0000501 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000502 sync();
503
Erik Andersene132f4b2000-02-09 04:16:43 +0000504 message(CONSOLE|LOG, "Sending SIGKILL to all processes.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000505 kill(-1, SIGKILL);
Erik Andersene132f4b2000-02-09 04:16:43 +0000506 sleep(1);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000507
Erik Andersene132f4b2000-02-09 04:16:43 +0000508 /* run everything to be run at "ctrlaltdel" */
509 run_lastAction();
510
Erik Andersene49d5ec2000-02-08 19:58:47 +0000511 sync();
512 if (kernelVersion > 0 && kernelVersion <= 2 * 65536 + 2 * 256 + 11) {
513 /* bdflush, kupdate not needed for kernels >2.2.11 */
514 bdflush(1, 0);
515 sync();
516 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000517}
518
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000519static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000520{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000521 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000522 message(CONSOLE|LOG,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000523 "The system is halted. Press %s or turn off power\r\n",
524 (secondConsole == NULL) /* serial console */
525 ? "Reset" : "CTRL-ALT-DEL");
526 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000527
Erik Andersene49d5ec2000-02-08 19:58:47 +0000528 /* allow time for last message to reach serial console */
Erik Andersene132f4b2000-02-09 04:16:43 +0000529 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000530
Erik Andersen4d1d0111999-12-17 18:44:15 +0000531#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000532 if (sig == SIGUSR2)
533 reboot(RB_POWER_OFF);
534 else
Erik Andersen4d1d0111999-12-17 18:44:15 +0000535#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000536 reboot(RB_HALT_SYSTEM);
537 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000538}
539
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000540static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000541{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000542 shutdown_system();
Erik Andersene132f4b2000-02-09 04:16:43 +0000543 message(CONSOLE|LOG, "Please stand by while rebooting the system.\r\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000544 sync();
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000545
Erik Andersene49d5ec2000-02-08 19:58:47 +0000546 /* allow time for last message to reach serial console */
547 sleep(2);
Erik Andersen3fe39dc2000-01-25 18:13:53 +0000548
Erik Andersene49d5ec2000-02-08 19:58:47 +0000549 reboot(RB_AUTOBOOT);
550 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000551}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000552
Erik Andersende552872000-01-23 01:34:05 +0000553#if defined BB_FEATURE_INIT_CHROOT
554static void check_chroot(int sig)
555{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000556 char *argv_init[2] = { "init", NULL, };
557 char *envp_init[3] = { "HOME=/", "TERM=linux", NULL, };
558 char rootpath[256], *tc;
559 int fd;
Erik Andersende552872000-01-23 01:34:05 +0000560
Erik Andersene49d5ec2000-02-08 19:58:47 +0000561 if ((fd = open("/proc/sys/kernel/init-chroot", O_RDONLY)) == -1) {
562 message(CONSOLE,
563 "SIGHUP recived, but could not open proc file\r\n");
564 sleep(2);
565 return;
566 }
567 if (read(fd, rootpath, sizeof(rootpath)) == -1) {
568 message(CONSOLE,
569 "SIGHUP recived, but could not read proc file\r\n");
570 sleep(2);
571 return;
572 }
573 close(fd);
574
575 if (rootpath[0] == '\0') {
576 message(CONSOLE,
577 "SIGHUP recived, but new root is not valid: %s\r\n",
578 rootpath);
579 sleep(2);
580 return;
581 }
582
583 tc = strrchr(rootpath, '\n');
584 *tc = '\0';
585
586 /* Ok, making it this far means we commit */
587 message(CONSOLE, "Please stand by, changing root to `%s'.\r\n",
588 rootpath);
589
590 /* kill all other programs first */
591 message(CONSOLE, "Sending SIGTERM to all processes.\r\n");
592 kill(-1, SIGTERM);
Erik Andersende552872000-01-23 01:34:05 +0000593 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000594 sync();
595
596 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
597 kill(-1, SIGKILL);
Erik Andersende552872000-01-23 01:34:05 +0000598 sleep(2);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000599 sync();
600
601 /* ok, we don't need /proc anymore. we also assume that the signaling
602 * process left the rest of the filesystems alone for us */
603 umount("/proc");
604
605 /* Ok, now we chroot. Hopefully we only have two things mounted, the
606 * new chroot'd mount point, and the old "/" mount. s,
607 * we go ahead and unmount the old "/". This should trigger the kernel
608 * to set things up the Right Way(tm). */
609
610 if (!chroot(rootpath))
611 umount("/dev/root");
612
613 /* If the chroot fails, we are already too far to turn back, so we
614 * continue and hope that executing init below will revive the system */
615
616 /* close all of our descriptors and open new ones */
617 close(0);
618 close(1);
619 close(2);
620 open("/dev/console", O_RDWR, 0);
621 dup(0);
622 dup(0);
623
624 message(CONSOLE, "Executing real init...\r\n");
625 /* execute init in the (hopefully) new root */
626 execve("/sbin/init", argv_init, envp_init);
627
628 message(CONSOLE,
629 "ERROR: Could not exec new init. Press %s to reboot.\r\n",
630 (secondConsole == NULL) /* serial console */
631 ? "Reset" : "CTRL-ALT-DEL");
Erik Andersende552872000-01-23 01:34:05 +0000632 return;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000633}
634#endif /* BB_FEATURE_INIT_CHROOT */
Erik Andersende552872000-01-23 01:34:05 +0000635
Erik Andersene49d5ec2000-02-08 19:58:47 +0000636#endif /* ! DEBUG_INIT */
Erik Andersende552872000-01-23 01:34:05 +0000637
Erik Andersene49d5ec2000-02-08 19:58:47 +0000638void new_initAction(initActionEnum action, char *process, char *cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000639{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000640 initAction *newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000641
Erik Andersene49d5ec2000-02-08 19:58:47 +0000642 if (*cons == '\0')
643 cons = console;
Erik Andersen9e737252000-01-06 01:16:13 +0000644
Erik Andersene49d5ec2000-02-08 19:58:47 +0000645 /* If BusyBox detects that a serial console is in use,
646 * then entries not refering to the console or null devices will _not_ be run.
647 * The exception to this rule is the null device.
648 */
649 if (secondConsole == NULL && strcmp(cons, console)
650 && strcmp(cons, "/dev/null"))
651 return;
652
653 newAction = calloc((size_t) (1), sizeof(initAction));
654 if (!newAction) {
655 message(LOG | CONSOLE, "Memory allocation failure\n");
656 while (1)
657 sleep(1);
658 }
659 newAction->nextPtr = initActionList;
660 initActionList = newAction;
661 strncpy(newAction->process, process, 255);
662 newAction->action = action;
663 strncpy(newAction->console, cons, 255);
664 newAction->pid = 0;
Erik Andersen31638212000-01-15 22:28:50 +0000665// message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +0000666// newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000667}
668
Erik Andersene132f4b2000-02-09 04:16:43 +0000669static void delete_initAction(initAction * action)
Erik Andersen7dc16072000-01-04 01:10:25 +0000670{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000671 initAction *a, *b = NULL;
672
673 for (a = initActionList; a; b = a, a = a->nextPtr) {
674 if (a == action) {
675 if (b == NULL) {
676 initActionList = a->nextPtr;
677 } else {
678 b->nextPtr = a->nextPtr;
679 }
680 free(a);
681 break;
682 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000683 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000684}
685
Erik Andersen9e737252000-01-06 01:16:13 +0000686/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
687 * then parse_inittab() simply adds in some default
688 * actions(i.e runs INIT_SCRIPT and then starts a pair
Erik Andersen812d4662000-01-07 18:30:40 +0000689 * of "askfirst" shells). If BB_FEATURE_USE_INITTAB
690 * _is_ defined, but /etc/inittab is missing, this
691 * results in the same set of default behaviors.
Erik Andersen9e737252000-01-06 01:16:13 +0000692 * */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693void parse_inittab(void)
Erik Andersen7dc16072000-01-04 01:10:25 +0000694{
Erik Andersen9e737252000-01-06 01:16:13 +0000695#ifdef BB_FEATURE_USE_INITTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000696 FILE *file;
697 char buf[256], lineAsRead[256], tmpConsole[256];
698 char *p, *q, *r, *s;
699 const struct initActionType *a = actions;
700 int foundIt;
Erik Andersen7dc16072000-01-04 01:10:25 +0000701
702
Erik Andersene49d5ec2000-02-08 19:58:47 +0000703 file = fopen(INITTAB, "r");
704 if (file == NULL) {
705 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000706#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000707 /* Swapoff on halt/reboot */
708 new_initAction(CTRLALTDEL, "/bin/umount -a -r > /dev/null 2>&1", console);
709 /* Umount all filesystems on halt/reboot */
710 new_initAction(CTRLALTDEL, "/bin/umount -a -r > /dev/null 2>&1", console);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000711 /* Askfirst shell on tty1 */
712 new_initAction(ASKFIRST, SHELL, console);
713 /* Askfirst shell on tty2 */
714 if (secondConsole != NULL)
715 new_initAction(ASKFIRST, SHELL, secondConsole);
716 /* sysinit */
717 new_initAction(SYSINIT, INIT_SCRIPT, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000718
Erik Andersene49d5ec2000-02-08 19:58:47 +0000719 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000720#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen9e737252000-01-06 01:16:13 +0000721 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000722
Erik Andersene49d5ec2000-02-08 19:58:47 +0000723 while (fgets(buf, 255, file) != NULL) {
724 foundIt = FALSE;
725 for (p = buf; *p == ' ' || *p == '\t'; p++);
726 if (*p == '#' || *p == '\n')
727 continue;
Erik Andersen7dc16072000-01-04 01:10:25 +0000728
Erik Andersene49d5ec2000-02-08 19:58:47 +0000729 /* Trim the trailing \n */
730 q = strrchr(p, '\n');
731 if (q != NULL)
732 *q = '\0';
Erik Andersen7dc16072000-01-04 01:10:25 +0000733
Erik Andersene49d5ec2000-02-08 19:58:47 +0000734 /* Keep a copy around for posterity's sake (and error msgs) */
735 strcpy(lineAsRead, buf);
736
737 /* Grab the ID field */
738 s = p;
739 p = strchr(p, ':');
740 if (p != NULL || *(p + 1) != '\0') {
741 *p = '\0';
742 ++p;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000743 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000744
745 /* Now peal off the process field from the end
746 * of the string */
747 q = strrchr(p, ':');
748 if (q == NULL || *(q + 1) == '\0') {
749 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
750 continue;
751 } else {
752 *q = '\0';
753 ++q;
754 }
755
756 /* Now peal off the action field */
757 r = strrchr(p, ':');
758 if (r == NULL || *(r + 1) == '\0') {
759 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
760 continue;
761 } else {
762 ++r;
763 }
764
765 /* Ok, now process it */
766 a = actions;
767 while (a->name != 0) {
768 if (strcmp(a->name, r) == 0) {
769 if (*s != '\0') {
770 struct stat statBuf;
771
772 strcpy(tmpConsole, "/dev/");
773 strncat(tmpConsole, s, 200);
774 if (stat(tmpConsole, &statBuf) != 0) {
775 message(LOG | CONSOLE,
776 "device '%s' does not exist. Did you read the directions?\n",
777 tmpConsole);
778 break;
779 }
780 s = tmpConsole;
781 }
782 new_initAction(a->action, q, s);
783 foundIt = TRUE;
784 }
785 a++;
786 }
787 if (foundIt == TRUE)
788 continue;
789 else {
790 /* Choke on an unknown action */
791 message(LOG | CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
792 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000793 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000794 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000795#endif
Erik Andersen7dc16072000-01-04 01:10:25 +0000796}
797
Erik Andersene132f4b2000-02-09 04:16:43 +0000798
799
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000800extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000801{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000802 initAction *a;
803 pid_t wpid;
804 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000805
Eric Andersend73dc5b1999-11-10 23:13:02 +0000806#ifndef DEBUG_INIT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000807 /* Expect to be PID 1 if we are run as init (not linuxrc) */
808 if (getpid() != 1 && strstr(argv[0], "init") != NULL) {
809 usage("init\n\nInit is the parent of all processes.\n\n"
810 "This version of init is designed to be run only by the kernel\n");
811 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000812 /* Set up sig handlers -- be sure to
813 * clear all of these in run() */
814 signal(SIGUSR1, halt_signal);
815 signal(SIGUSR2, reboot_signal);
816 signal(SIGINT, reboot_signal);
817 signal(SIGTERM, reboot_signal);
Erik Andersende552872000-01-23 01:34:05 +0000818#if defined BB_FEATURE_INIT_CHROOT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000819 signal(SIGHUP, check_chroot);
Erik Andersende552872000-01-23 01:34:05 +0000820#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000821
Erik Andersene49d5ec2000-02-08 19:58:47 +0000822 /* Turn off rebooting via CTL-ALT-DEL -- we get a
823 * SIGINT on CAD so we can shut things down gracefully... */
824 reboot(RB_DISABLE_CAD);
825#endif
Erik Andersen05df2392000-01-13 04:43:48 +0000826
Erik Andersene49d5ec2000-02-08 19:58:47 +0000827 /* Figure out where the default console should be */
828 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000829
Erik Andersene49d5ec2000-02-08 19:58:47 +0000830 /* Close whatever files are open, and reset the console. */
831 close(0);
832 close(1);
833 close(2);
834 set_term(0);
835 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000836
Erik Andersene49d5ec2000-02-08 19:58:47 +0000837 /* Make sure PATH is set to something sane */
838 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000839
Erik Andersene49d5ec2000-02-08 19:58:47 +0000840 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000841#ifndef DEBUG_INIT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000842 message(LOG | CONSOLE,
843 "init started: BusyBox v%s (%s) multi-call binary\r\n",
844 BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000845#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000846 message(LOG | CONSOLE,
847 "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n",
848 getpid(), BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000849#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000850
Eric Andersencc8ed391999-10-05 16:24:54 +0000851
Erik Andersene49d5ec2000-02-08 19:58:47 +0000852 /* Mount /proc */
853 if (mount("proc", "/proc", "proc", 0, 0) == 0) {
854 message(LOG | CONSOLE, "Mounting /proc: done.\n");
855 kernelVersion = get_kernel_revision();
856 } else
857 message(LOG | CONSOLE, "Mounting /proc: failed!\n");
Eric Andersencc8ed391999-10-05 16:24:54 +0000858
Erik Andersene49d5ec2000-02-08 19:58:47 +0000859 /* Make sure there is enough memory to do something useful. */
860 check_memory();
Erik Andersen9e737252000-01-06 01:16:13 +0000861
Erik Andersene49d5ec2000-02-08 19:58:47 +0000862 /* Check if we are supposed to be in single user mode */
863 if (argc > 1 && (!strcmp(argv[1], "single") ||
864 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
865 /* Ask first then start a shell on tty2 */
866 if (secondConsole != NULL)
867 new_initAction(ASKFIRST, SHELL, secondConsole);
868 /* Start a shell on tty1 */
869 new_initAction(RESPAWN, SHELL, console);
870 } else {
871 /* Not in single user mode -- see what inittab says */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000872
Erik Andersene49d5ec2000-02-08 19:58:47 +0000873 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
874 * then parse_inittab() simply adds in some default
875 * actions(i.e runs INIT_SCRIPT and then starts a pair
876 * of "askfirst" shells */
877 parse_inittab();
Eric Andersend00c2621999-12-07 08:37:31 +0000878 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000879
880 /* Fix up argv[0] to be certain we claim to be init */
881 strncpy(argv[0], "init", strlen(argv[0])+1);
882 strncpy(argv[1], "\0", strlen(argv[1])+1);
Eric Andersen219d6f51999-11-02 19:43:01 +0000883
Erik Andersene49d5ec2000-02-08 19:58:47 +0000884 /* Now run everything that needs to be run */
885
886 /* First run the sysinit command */
887 for (a = initActionList; a; a = a->nextPtr) {
888 if (a->action == SYSINIT) {
889 waitfor(a->process, a->console, FALSE);
890 /* Now remove the "sysinit" entry from the list */
891 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000892 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000893 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000894 /* Next run anything that wants to block */
895 for (a = initActionList; a; a = a->nextPtr) {
896 if (a->action == WAIT) {
897 waitfor(a->process, a->console, FALSE);
898 /* Now remove the "wait" entry from the list */
899 delete_initAction(a);
Erik Andersen7dc16072000-01-04 01:10:25 +0000900 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000901 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000902 /* Next run anything to be run only once */
903 for (a = initActionList; a; a = a->nextPtr) {
904 if (a->action == ONCE) {
905 run(a->process, a->console, FALSE);
906 /* Now remove the "once" entry from the list */
907 delete_initAction(a);
908 }
909 }
910 /* If there is nothing else to do, stop */
911 if (initActionList == NULL) {
912 message(LOG | CONSOLE,
913 "No more tasks for init -- sleeping forever.\n");
914 while (1)
915 sleep(1);
916 }
917
918 /* Now run the looping stuff for the rest of forever */
919 while (1) {
920 for (a = initActionList; a; a = a->nextPtr) {
921 /* Only run stuff with pid==0. If they have
922 * a pid, that means they are still running */
923 if (a->pid == 0) {
924 switch (a->action) {
925 case RESPAWN:
926 /* run the respawn stuff */
927 a->pid = run(a->process, a->console, FALSE);
928 break;
929 case ASKFIRST:
930 /* run the askfirst stuff */
931 a->pid = run(a->process, a->console, TRUE);
932 break;
933 /* silence the compiler's incessant whining */
934 default:
935 break;
936 }
937 }
938 }
939 /* Wait for a child process to exit */
940 wpid = wait(&status);
941 if (wpid > 0) {
942 /* Find out who died and clean up their corpse */
943 for (a = initActionList; a; a = a->nextPtr) {
944 if (a->pid == wpid) {
945 a->pid = 0;
946 message(LOG,
947 "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
948 a->process, wpid);
949 }
950 }
951 }
952 sleep(1);
953 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000954}