blob: 88b8ed1c1b76063df317de6cbacd88be8b55ac56 [file] [log] [blame]
Eric Andersenc4996011999-10-20 22:08:37 +00001/*
2 * Mini init implementation for busybox
3 *
4 *
5 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6 * Adjusted by so many folks, it's impossible to keep track.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Eric Andersencc8ed391999-10-05 16:24:54 +000024#include "internal.h"
25#include <stdio.h>
Erik Andersen7dc16072000-01-04 01:10:25 +000026#include <string.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000027#include <stdlib.h>
28#include <stdarg.h>
29#include <unistd.h>
30#include <errno.h>
31#include <signal.h>
32#include <termios.h>
Eric Andersenb186d981999-12-03 09:19:54 +000033#include <paths.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000034#include <sys/types.h>
35#include <sys/fcntl.h>
36#include <sys/wait.h>
37#include <string.h>
38#include <sys/mount.h>
39#include <sys/reboot.h>
40#include <sys/kdaemon.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000041#include <sys/sysmacros.h>
Eric Andersen8a8fbb81999-10-26 00:18:56 +000042#include <linux/serial.h> /* for serial_struct */
43#include <sys/vt.h> /* for vt_stat */
Eric Andersenabc7d591999-10-19 00:27:50 +000044#include <sys/ioctl.h>
Erik Andersen4d1d0111999-12-17 18:44:15 +000045#include <linux/version.h>
Eric Andersen4c781471999-11-26 08:12:56 +000046#ifdef BB_SYSLOGD
47#include <sys/syslog.h>
48#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000049
Eric Andersen0ecb54a1999-12-05 23:24:55 +000050#if ! defined BB_FEATURE_USE_PROCFS
51#error Sorry, I depend on the /proc filesystem right now.
52#endif
53
Erik Andersen4d1d0111999-12-17 18:44:15 +000054#ifndef KERNEL_VERSION
55#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
56#endif
57
Eric Andersen0ecb54a1999-12-05 23:24:55 +000058
Erik Andersen7dc16072000-01-04 01:10:25 +000059#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
60#define VT_SECONDARY "/dev/tty2" /* Virtual console */
61#define VT_LOG "/dev/tty3" /* Virtual console */
62#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
63#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
Erik Andersen96e2abd2000-01-07 11:40:44 +000064#define SHELL "/bin/sh" /* Default shell */
Erik Andersen7dc16072000-01-04 01:10:25 +000065#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersen96e2abd2000-01-07 11:40:44 +000066#ifndef INIT_SCRIPT
Erik Andersen7dc16072000-01-04 01:10:25 +000067#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
Erik Andersen96e2abd2000-01-07 11:40:44 +000068#endif
Erik Andersen9c88cac1999-12-30 09:25:17 +000069
Eric Andersen3ae0c781999-11-04 01:13:21 +000070#define LOG 0x1
71#define CONSOLE 0x2
Erik Andersen7dc16072000-01-04 01:10:25 +000072
73/* Allowed init action types */
74typedef enum {
75 SYSINIT=1,
Erik Andersen7dc16072000-01-04 01:10:25 +000076 RESPAWN,
77 ASKFIRST,
78 WAIT,
79 ONCE
80} initActionEnum;
81
82/* And now a list of the actions we support in the version of init */
83typedef struct initActionType{
84 const char* name;
85 initActionEnum action;
86} initActionType;
87
88static const struct initActionType actions[] = {
89 {"sysinit", SYSINIT},
Erik Andersen7dc16072000-01-04 01:10:25 +000090 {"respawn", RESPAWN},
91 {"askfirst", ASKFIRST},
92 {"wait", WAIT},
93 {"once", ONCE},
94 {0}
95};
96
97/* Set up a linked list of initactions, to be read from inittab */
98typedef struct initActionTag initAction;
99struct initActionTag {
100 pid_t pid;
101 char process[256];
Erik Andersen9e737252000-01-06 01:16:13 +0000102 char console[256];
Erik Andersen7dc16072000-01-04 01:10:25 +0000103 initAction *nextPtr;
104 initActionEnum action;
105};
106initAction* initActionList = NULL;
107
108
Eric Andersenb186d981999-12-03 09:19:54 +0000109static char *console = _PATH_CONSOLE;
Eric Andersenbe971d61999-11-03 16:52:50 +0000110static char *second_console = VT_SECONDARY;
111static char *log = VT_LOG;
Eric Andersene18c75a1999-11-05 04:23:05 +0000112static int kernel_version = 0;
Eric Andersen0460ff21999-10-25 23:32:44 +0000113
114
115/* try to open up the specified device */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000116int device_open(char *device, int mode)
Eric Andersencc8ed391999-10-05 16:24:54 +0000117{
Eric Andersen0460ff21999-10-25 23:32:44 +0000118 int m, f, fd = -1;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000119
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000120 m = mode | O_NONBLOCK;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000121
Eric Andersen0460ff21999-10-25 23:32:44 +0000122 /* Retry up to 5 times */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000123 for (f = 0; f < 5; f++)
124 if ((fd = open(device, m)) >= 0)
125 break;
126 if (fd < 0)
127 return fd;
Eric Andersen3ae0c781999-11-04 01:13:21 +0000128 /* Reset original flags. */
Eric Andersen0460ff21999-10-25 23:32:44 +0000129 if (m != mode)
130 fcntl(fd, F_SETFL, mode);
131 return fd;
132}
Eric Andersencc8ed391999-10-05 16:24:54 +0000133
Eric Andersen3ae0c781999-11-04 01:13:21 +0000134/* print a message to the specified device:
135 * device may be bitwise-or'd from LOG | CONSOLE */
136void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000137{
Eric Andersen0460ff21999-10-25 23:32:44 +0000138 va_list arguments;
Erik Andersen7dc16072000-01-04 01:10:25 +0000139 int fd;
140
Eric Andersen4c781471999-11-26 08:12:56 +0000141#ifdef BB_SYSLOGD
142
143 /* Log the message to syslogd */
144 if (device & LOG ) {
145 char msg[1024];
146 va_start(arguments, fmt);
147 vsnprintf(msg, sizeof(msg), fmt, arguments);
148 va_end(arguments);
149 syslog(LOG_DAEMON|LOG_NOTICE, msg);
150 }
151
152#else
153 static int log_fd=-1;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000154
Eric Andersen3ae0c781999-11-04 01:13:21 +0000155 /* Take full control of the log tty, and never close it.
156 * It's mine, all mine! Muhahahaha! */
Eric Andersen07e52971999-11-07 07:38:08 +0000157 if (log_fd < 0) {
158 if (log == NULL) {
159 /* don't even try to log, because there is no such console */
160 log_fd = -2;
161 /* log to main console instead */
162 device = CONSOLE;
163 }
164 else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000165 log_fd=-1;
166 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
167 fflush(stderr);
168 return;
169 }
170 }
Eric Andersen07e52971999-11-07 07:38:08 +0000171 if ( (device & LOG) && (log_fd >= 0) ) {
Eric Andersen0460ff21999-10-25 23:32:44 +0000172 va_start(arguments, fmt);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000173 vdprintf(log_fd, fmt, arguments);
Eric Andersena7456061999-10-27 02:31:32 +0000174 va_end(arguments);
175 }
Eric Andersen4c781471999-11-26 08:12:56 +0000176#endif
177
Eric Andersen3ae0c781999-11-04 01:13:21 +0000178 if (device & CONSOLE) {
Eric Andersended62591999-11-18 00:19:26 +0000179 /* Always send console messages to /dev/console so people will see them. */
Eric Andersenb186d981999-12-03 09:19:54 +0000180 if ((fd = device_open(_PATH_CONSOLE, O_WRONLY|O_NOCTTY|O_NDELAY)) >= 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000181 va_start(arguments, fmt);
182 vdprintf(fd, fmt, arguments);
183 va_end(arguments);
184 close(fd);
185 } else {
186 fprintf(stderr, "Bummer, can't print: ");
187 va_start(arguments, fmt);
188 vfprintf(stderr, fmt, arguments);
189 fflush(stderr);
190 va_end(arguments);
191 }
192 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000193}
194
Eric Andersen3ae0c781999-11-04 01:13:21 +0000195
Eric Andersen0460ff21999-10-25 23:32:44 +0000196/* Set terminal settings to reasonable defaults */
Eric Andersenc7c41d31999-10-28 00:24:35 +0000197void set_term( int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000198{
Eric Andersen0460ff21999-10-25 23:32:44 +0000199 struct termios tty;
Eric Andersen08b10341999-11-19 02:38:58 +0000200 static const char control_characters[] = {
201 '\003', '\034', '\177', '\025', '\004', '\0',
202 '\1', '\0', '\021', '\023', '\032', '\0', '\022',
203 '\017', '\027', '\026', '\0'
204 };
Eric Andersencc8ed391999-10-05 16:24:54 +0000205
Eric Andersenc7c41d31999-10-28 00:24:35 +0000206 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000207
Eric Andersen08b10341999-11-19 02:38:58 +0000208 /* set control chars */
209 memcpy(tty.c_cc, control_characters, sizeof(control_characters));
Eric Andersencc8ed391999-10-05 16:24:54 +0000210
Eric Andersen219d6f51999-11-02 19:43:01 +0000211 /* use line dicipline 0 */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000212 tty.c_line = 0;
213
Eric Andersen08b10341999-11-19 02:38:58 +0000214 /* Make it be sane */
215 //tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
216 //tty.c_cflag |= HUPCL|CLOCAL;
217
218 /* input modes */
219 tty.c_iflag = ICRNL|IXON|IXOFF;
220
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000221 /* output modes */
Eric Andersenc7c41d31999-10-28 00:24:35 +0000222 tty.c_oflag = OPOST|ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000223
224 /* local modes */
Eric Andersen08b10341999-11-19 02:38:58 +0000225 tty.c_lflag = ISIG|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE|IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000226
Eric Andersenc7c41d31999-10-28 00:24:35 +0000227 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000228}
229
Eric Andersen219d6f51999-11-02 19:43:01 +0000230/* How much memory does this machine have? */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000231static int mem_total()
Eric Andersencc8ed391999-10-05 16:24:54 +0000232{
Eric Andersenabc7d591999-10-19 00:27:50 +0000233 char s[80];
Eric Andersen219d6f51999-11-02 19:43:01 +0000234 char *p = "/proc/meminfo";
Eric Andersenabc7d591999-10-19 00:27:50 +0000235 FILE *f;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000236 const char pattern[] = "MemTotal:";
Eric Andersencc8ed391999-10-05 16:24:54 +0000237
Eric Andersen219d6f51999-11-02 19:43:01 +0000238 if ((f = fopen(p, "r")) < 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000239 message(LOG, "Error opening %s: %s\n", p, strerror( errno));
Eric Andersen219d6f51999-11-02 19:43:01 +0000240 return -1;
241 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000242 while (NULL != fgets(s, 79, f)) {
243 p = strstr(s, pattern);
Eric Andersenabc7d591999-10-19 00:27:50 +0000244 if (NULL != p) {
245 fclose(f);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000246 return (atoi(p + strlen(pattern)));
Eric Andersenabc7d591999-10-19 00:27:50 +0000247 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000248 }
Eric Andersenabc7d591999-10-19 00:27:50 +0000249 return -1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000250}
251
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000252static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000253{
254 int fd;
255 int tried_devcons = 0;
Eric Andersen219d6f51999-11-02 19:43:01 +0000256 int tried_vtprimary = 0;
Eric Andersen07e52971999-11-07 07:38:08 +0000257 struct serial_struct sr;
Eric Andersen0460ff21999-10-25 23:32:44 +0000258 char *s;
259
Eric Andersen219d6f51999-11-02 19:43:01 +0000260 if ((s = getenv("CONSOLE")) != NULL) {
Eric Andersen0460ff21999-10-25 23:32:44 +0000261 console = s;
Eric Andersen07e52971999-11-07 07:38:08 +0000262 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000263#if #cpu(sparc)
Eric Andersen07e52971999-11-07 07:38:08 +0000264 /* sparc kernel supports console=tty[ab] parameter which is also
265 * passed to init, so catch it here */
266 else if ((s = getenv("console")) != NULL) {
267 /* remap tty[ab] to /dev/ttyS[01] */
268 if (strcmp( s, "ttya" )==0)
269 console = SERIAL_CON0;
270 else if (strcmp( s, "ttyb" )==0)
271 console = SERIAL_CON1;
272 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000273#endif
Eric Andersen07e52971999-11-07 07:38:08 +0000274 else {
275 struct vt_stat vt;
276 static char the_console[13];
277
278 console = the_console;
279 /* 2.2 kernels: identify the real console backend and try to use it */
Eric Andersen08b10341999-11-19 02:38:58 +0000280 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Eric Andersen07e52971999-11-07 07:38:08 +0000281 /* this is a serial console */
282 snprintf( the_console, sizeof the_console, "/dev/ttyS%d", sr.line );
283 }
284 else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
285 /* this is linux virtual tty */
286 snprintf( the_console, sizeof the_console, "/dev/tty%d", vt.v_active );
287 } else {
Eric Andersenb186d981999-12-03 09:19:54 +0000288 console = _PATH_CONSOLE;
Eric Andersen07e52971999-11-07 07:38:08 +0000289 tried_devcons++;
290 }
Eric Andersen0460ff21999-10-25 23:32:44 +0000291 }
Eric Andersena7456061999-10-27 02:31:32 +0000292
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000293 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
Eric Andersen219d6f51999-11-02 19:43:01 +0000294 /* Can't open selected console -- try /dev/console */
Eric Andersen0460ff21999-10-25 23:32:44 +0000295 if (!tried_devcons) {
296 tried_devcons++;
Eric Andersenb186d981999-12-03 09:19:54 +0000297 console = _PATH_CONSOLE;
Eric Andersen0460ff21999-10-25 23:32:44 +0000298 continue;
299 }
Eric Andersenbe971d61999-11-03 16:52:50 +0000300 /* Can't open selected console -- try vt1 */
301 if (!tried_vtprimary) {
302 tried_vtprimary++;
303 console = VT_PRIMARY;
304 continue;
305 }
Eric Andersen0460ff21999-10-25 23:32:44 +0000306 break;
307 }
308 if (fd < 0)
Eric Andersen219d6f51999-11-02 19:43:01 +0000309 /* Perhaps we should panic here? */
Eric Andersen0460ff21999-10-25 23:32:44 +0000310 console = "/dev/null";
Eric Andersen07e52971999-11-07 07:38:08 +0000311 else {
312 /* check for serial console and disable logging to tty3 & running a
313 * shell to tty2 */
314 if (ioctl(0,TIOCGSERIAL,&sr) == 0) {
Eric Andersen08b10341999-11-19 02:38:58 +0000315 message(LOG|CONSOLE, "serial console detected. Disabling 2nd virtual terminal.\r\n", console );
Eric Andersen07e52971999-11-07 07:38:08 +0000316 log = NULL;
317 second_console = NULL;
318 }
Eric Andersen0460ff21999-10-25 23:32:44 +0000319 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000320 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000321 message(LOG, "console=%s\n", console );
Eric Andersen0460ff21999-10-25 23:32:44 +0000322}
323
Erik Andersen7dc16072000-01-04 01:10:25 +0000324static pid_t run(char* command,
Eric Andersenc7c41d31999-10-28 00:24:35 +0000325 char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000326{
Erik Andersen7dc16072000-01-04 01:10:25 +0000327 int i;
Eric Andersenc7c41d31999-10-28 00:24:35 +0000328 pid_t pid;
Erik Andersen7dc16072000-01-04 01:10:25 +0000329 char* tmpCmd;
330 char* cmd[255];
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000331 static const char press_enter[] =
Eric Andersen0460ff21999-10-25 23:32:44 +0000332 "\nPlease press Enter to activate this console. ";
333
Eric Andersen0460ff21999-10-25 23:32:44 +0000334 if ((pid = fork()) == 0) {
Erik Andersen96e2abd2000-01-07 11:40:44 +0000335 int fd;
Erik Andersen0881de72000-01-05 09:34:26 +0000336 pid_t shell_pgid = getpid ();
337
Eric Andersen0460ff21999-10-25 23:32:44 +0000338 /* Clean up */
339 close(0);
340 close(1);
341 close(2);
342 setsid();
343
Erik Andersen96e2abd2000-01-07 11:40:44 +0000344 if ((fd=device_open(terminal, O_RDWR)) < 0) {
Erik Andersen0881de72000-01-05 09:34:26 +0000345 message(LOG|CONSOLE, "Bummer, can't open %s\r\n", terminal);
346 exit(1);
347 }
Erik Andersen96e2abd2000-01-07 11:40:44 +0000348 dup(fd);
349 dup(fd);
350 set_term(fd);
351 tcsetpgrp (fd, getpgrp());
Erik Andersen0881de72000-01-05 09:34:26 +0000352
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000353 /* Reset signal handlers set for parent process */
354 signal(SIGUSR1, SIG_DFL);
355 signal(SIGUSR2, SIG_DFL);
356 signal(SIGINT, SIG_DFL);
357 signal(SIGTERM, SIG_DFL);
358
Eric Andersen0460ff21999-10-25 23:32:44 +0000359
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000360 if (get_enter==TRUE) {
Eric Andersen0460ff21999-10-25 23:32:44 +0000361 /*
362 * Save memory by not exec-ing anything large (like a shell)
363 * before the user wants it. This is critical if swap is not
364 * enabled and the system has low memory. Generally this will
365 * be run on the second virtual console, and the first will
366 * be allowed to start a shell or whatever an init script
367 * specifies.
368 */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000369 char c;
Eric Andersen3ae0c781999-11-04 01:13:21 +0000370 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
Erik Andersen0881de72000-01-05 09:34:26 +0000371 command, shell_pgid, terminal );
Erik Andersen7dc16072000-01-04 01:10:25 +0000372 write(fileno(stdout), press_enter, sizeof(press_enter) - 1);
373 read(fileno(stdin), &c, 1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000374 }
375
Erik Andersen7dc16072000-01-04 01:10:25 +0000376 /* Convert command (char*) into cmd (char**, one word per string) */
377 for (tmpCmd=command, i=0; (tmpCmd=strsep(&command, " \t")) != NULL;) {
378 if (*tmpCmd != '\0') {
379 cmd[i] = tmpCmd;
380 tmpCmd++;
381 i++;
382 }
383 }
384 cmd[i] = NULL;
385
Eric Andersen0460ff21999-10-25 23:32:44 +0000386 /* Log the process name and args */
Erik Andersen7dc16072000-01-04 01:10:25 +0000387 message(LOG, "Starting pid %d, console %s: '%s'\r\n",
Erik Andersen0881de72000-01-05 09:34:26 +0000388 shell_pgid, terminal, cmd[0]);
Erik Andersen7dc16072000-01-04 01:10:25 +0000389
Eric Andersenc7c41d31999-10-28 00:24:35 +0000390 /* Now run it. The new program will take over this PID,
Eric Andersena7456061999-10-27 02:31:32 +0000391 * so nothing further in init.c should be run. */
Erik Andersen7dc16072000-01-04 01:10:25 +0000392 execvp(cmd[0], cmd);
Eric Andersen0460ff21999-10-25 23:32:44 +0000393
Erik Andersen7dc16072000-01-04 01:10:25 +0000394 /* We're still here? Some error happened. */
395 message(LOG|CONSOLE, "Bummer, could not run '%s': %s\n", cmd[0],
396 strerror(errno));
Eric Andersen0460ff21999-10-25 23:32:44 +0000397 exit(-1);
398 }
399 return pid;
400}
401
Erik Andersen0e3782f2000-01-07 02:54:55 +0000402static int waitfor(char* command,
403 char *terminal, int get_enter)
404{
405 int status, wpid;
406 int pid = run( command, terminal, get_enter);
407
408 while (1) {
409 wpid = wait(&status);
410 if (wpid > 0 ) {
411 message(LOG, "Process '%s' (pid %d) exited.\n",
412 command, wpid);
413 break;
414 }
415 if (wpid == pid )
416 break;
417 }
418 return wpid;
419}
420
Eric Andersen219d6f51999-11-02 19:43:01 +0000421/* Make sure there is enough memory to do something useful. *
422 * Calls swapon if needed so be sure /proc is mounted. */
423static void check_memory()
424{
Erik Andersen0e3782f2000-01-07 02:54:55 +0000425 struct stat statBuf;
Eric Andersen219d6f51999-11-02 19:43:01 +0000426
427 if (mem_total() > 3500)
428 return;
429
Erik Andersen0e3782f2000-01-07 02:54:55 +0000430 if (stat("/etc/fstab", &statBuf) == 0) {
Eric Andersen219d6f51999-11-02 19:43:01 +0000431 /* Try to turn on swap */
Erik Andersen0e3782f2000-01-07 02:54:55 +0000432 waitfor("/bin/swapon swapon -a", log, FALSE);
Eric Andersen219d6f51999-11-02 19:43:01 +0000433 if (mem_total() < 3500)
434 goto goodnight;
435 } else
436 goto goodnight;
437 return;
438
439goodnight:
Eric Andersen3ae0c781999-11-04 01:13:21 +0000440 message(CONSOLE, "Sorry, your computer does not have enough memory.\r\n");
Eric Andersen219d6f51999-11-02 19:43:01 +0000441 while (1) sleep(1);
442}
443
Erik Andersen7dc16072000-01-04 01:10:25 +0000444#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000445static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000446{
Eric Andersen0460ff21999-10-25 23:32:44 +0000447 /* Allow Ctrl-Alt-Del to reboot system. */
448 reboot(RB_ENABLE_CAD);
Eric Andersen08b10341999-11-19 02:38:58 +0000449 message(CONSOLE, "\r\nThe system is going down NOW !!\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000450 sync();
Erik Andersen7dc16072000-01-04 01:10:25 +0000451
Eric Andersen0460ff21999-10-25 23:32:44 +0000452 /* Send signals to every process _except_ pid 1 */
Eric Andersen3ae0c781999-11-04 01:13:21 +0000453 message(CONSOLE, "Sending SIGHUP to all processes.\r\n");
Eric Andersen0460ff21999-10-25 23:32:44 +0000454 kill(-1, SIGHUP);
455 sleep(2);
456 sync();
Erik Andersen7dc16072000-01-04 01:10:25 +0000457
Eric Andersen3ae0c781999-11-04 01:13:21 +0000458 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
Eric Andersen0460ff21999-10-25 23:32:44 +0000459 kill(-1, SIGKILL);
460 sleep(1);
Erik Andersen7dc16072000-01-04 01:10:25 +0000461
Eric Andersen08b10341999-11-19 02:38:58 +0000462 message(CONSOLE, "Disabling swap.\r\n");
Erik Andersen0e3782f2000-01-07 02:54:55 +0000463 waitfor( "swapoff -a", console, FALSE);
Eric Andersen08b10341999-11-19 02:38:58 +0000464 message(CONSOLE, "Unmounting filesystems.\r\n");
Erik Andersen0e3782f2000-01-07 02:54:55 +0000465 waitfor("umount -a", console, FALSE);
Eric Andersen0460ff21999-10-25 23:32:44 +0000466 sync();
Eric Andersene18c75a1999-11-05 04:23:05 +0000467 if (kernel_version > 0 && kernel_version <= 2 * 65536 + 2 * 256 + 11) {
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000468 /* bdflush, kupdate not needed for kernels >2.2.11 */
469 bdflush(1, 0);
470 sync();
471 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000472}
473
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000474static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000475{
Eric Andersenabc7d591999-10-19 00:27:50 +0000476 shutdown_system();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000477 message(CONSOLE,
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000478 "The system is halted. Press CTRL-ALT-DEL or turn off power\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000479 sync();
Erik Andersen4d1d0111999-12-17 18:44:15 +0000480#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
Eric Andersen2cb55071999-12-10 08:25:07 +0000481 if (sig == SIGUSR2)
482 reboot(RB_POWER_OFF);
483 else
Erik Andersen4d1d0111999-12-17 18:44:15 +0000484#endif
Erik Andersen7dc16072000-01-04 01:10:25 +0000485 reboot(RB_HALT_SYSTEM);
Eric Andersenabc7d591999-10-19 00:27:50 +0000486 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000487}
488
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000489static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000490{
Eric Andersenabc7d591999-10-19 00:27:50 +0000491 shutdown_system();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000492 message(CONSOLE, "Please stand by while rebooting the system.\r\n");
493 sync();
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000494 reboot(RB_AUTOBOOT);
Eric Andersenabc7d591999-10-19 00:27:50 +0000495 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000496}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000497
Erik Andersen7dc16072000-01-04 01:10:25 +0000498#endif
499
Erik Andersen96e2abd2000-01-07 11:40:44 +0000500void new_initAction (initActionEnum action,
Erik Andersen9e737252000-01-06 01:16:13 +0000501 char* process, char* cons)
Erik Andersen7dc16072000-01-04 01:10:25 +0000502{
503 initAction* newAction;
Erik Andersen9e737252000-01-06 01:16:13 +0000504
505 /* If BusyBox detects that a serial console is in use,
506 * then entries containing non-empty id fields will _not_ be run.
507 */
Erik Andersen0e3782f2000-01-07 02:54:55 +0000508 if (second_console == NULL && *cons != '\0') {
Erik Andersen9e737252000-01-06 01:16:13 +0000509 return;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000510 }
Erik Andersen9e737252000-01-06 01:16:13 +0000511
Erik Andersen7dc16072000-01-04 01:10:25 +0000512 newAction = calloc ((size_t)(1), sizeof(initAction));
513 if (!newAction) {
Erik Andersen0e3782f2000-01-07 02:54:55 +0000514 message(LOG|CONSOLE,"Memory allocation failure\n");
Erik Andersen7dc16072000-01-04 01:10:25 +0000515 while (1) sleep(1);
516 }
517 newAction->nextPtr = initActionList;
518 initActionList = newAction;
519 strncpy( newAction->process, process, 255);
Erik Andersen96e2abd2000-01-07 11:40:44 +0000520 newAction->action = action;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000521 if (*cons != '\0') {
Erik Andersen9e737252000-01-06 01:16:13 +0000522 strncpy(newAction->console, cons, 255);
Erik Andersen0e3782f2000-01-07 02:54:55 +0000523 } else
Erik Andersen9e737252000-01-06 01:16:13 +0000524 strncpy(newAction->console, console, 255);
Erik Andersen7dc16072000-01-04 01:10:25 +0000525 newAction->pid = 0;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000526 message(LOG|CONSOLE, "process='%s' action='%d' console='%s'\n",
527 newAction->process, newAction->action, newAction->console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000528}
529
530void delete_initAction (initAction *action)
531{
532 initAction *a, *b=NULL;
533 for( a=initActionList ; a; b=a, a=a->nextPtr) {
534 if (a == action && b != NULL) {
535 b->nextPtr=a->nextPtr;
536 free( a);
537 break;
538 }
539 }
540}
541
Erik Andersen9e737252000-01-06 01:16:13 +0000542/* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
543 * then parse_inittab() simply adds in some default
544 * actions(i.e runs INIT_SCRIPT and then starts a pair
545 * of "askfirst" shells. If BB_FEATURE_USE_INITTAB
546 * _is_ defined, but /etc/inittab is missing == same
547 * default behavior.
548 * */
Erik Andersen7dc16072000-01-04 01:10:25 +0000549void parse_inittab(void)
550{
Erik Andersen9e737252000-01-06 01:16:13 +0000551#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen7dc16072000-01-04 01:10:25 +0000552 FILE* file;
Erik Andersen0e3782f2000-01-07 02:54:55 +0000553 char buf[256], lineAsRead[256], tmpConsole[256];
Erik Andersen9e737252000-01-06 01:16:13 +0000554 char *p, *q, *r, *s;
Erik Andersen7dc16072000-01-04 01:10:25 +0000555 const struct initActionType *a = actions;
556 int foundIt;
557
558
559 file = fopen(INITTAB, "r");
560 if (file == NULL) {
561 /* No inittab file -- set up some default behavior */
Erik Andersen9e737252000-01-06 01:16:13 +0000562#endif
Erik Andersen7dc16072000-01-04 01:10:25 +0000563 /* Askfirst shell on tty1 */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000564 new_initAction( ASKFIRST, SHELL, console );
Erik Andersen7dc16072000-01-04 01:10:25 +0000565 /* Askfirst shell on tty2 */
566 if (second_console != NULL)
Erik Andersen96e2abd2000-01-07 11:40:44 +0000567 new_initAction( ASKFIRST, SHELL, second_console );
Erik Andersen7dc16072000-01-04 01:10:25 +0000568 /* sysinit */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000569 new_initAction( SYSINIT, INIT_SCRIPT, console );
Erik Andersen7dc16072000-01-04 01:10:25 +0000570
571 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000572#ifdef BB_FEATURE_USE_INITTAB
Erik Andersen7dc16072000-01-04 01:10:25 +0000573 }
574
575 while ( fgets(buf, 255, file) != NULL) {
576 foundIt=FALSE;
577 for(p = buf; *p == ' ' || *p == '\t'; p++);
578 if (*p == '#' || *p == '\n') continue;
579
580 /* Trim the trailing \n */
581 q = strrchr( p, '\n');
582 if (q != NULL)
583 *q='\0';
584
Erik Andersen9e737252000-01-06 01:16:13 +0000585 /* Keep a copy around for posterity's sake (and error msgs) */
Erik Andersen0e3782f2000-01-07 02:54:55 +0000586 strcpy(lineAsRead, buf);
Erik Andersen9e737252000-01-06 01:16:13 +0000587
588 /* Grab the ID field */
589 s=p;
Erik Andersen7dc16072000-01-04 01:10:25 +0000590 p = strchr( p, ':');
Erik Andersen9e737252000-01-06 01:16:13 +0000591 if ( p != NULL || *(p+1) != '\0' ) {
592 *p='\0';
593 ++p;
594 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000595
596 /* Now peal off the process field from the end
597 * of the string */
598 q = strrchr( p, ':');
599 if ( q == NULL || *(q+1) == '\0' ) {
Erik Andersen0e3782f2000-01-07 02:54:55 +0000600 message(LOG|CONSOLE,"Bad inittab entry: %s\n", lineAsRead);
Erik Andersen7dc16072000-01-04 01:10:25 +0000601 continue;
602 } else {
603 *q='\0';
604 ++q;
605 }
606
607 /* Now peal off the action field */
608 r = strrchr( p, ':');
609 if ( r == NULL || *(r+1) == '\0') {
Erik Andersen0e3782f2000-01-07 02:54:55 +0000610 message(LOG|CONSOLE,"Bad inittab entry: %s\n", lineAsRead);
Erik Andersen7dc16072000-01-04 01:10:25 +0000611 continue;
612 } else {
613 ++r;
614 }
615
616 /* Ok, now process it */
617 a = actions;
618 while (a->name != 0) {
619 if (strcmp(a->name, r) == 0) {
Erik Andersen0e3782f2000-01-07 02:54:55 +0000620 if (*s != '\0') {
621 struct stat statBuf;
622 strcpy(tmpConsole, "/dev/");
623 strncat(tmpConsole, s, 200);
624 if (stat(tmpConsole, &statBuf) != 0) {
625 message(LOG|CONSOLE, "device '%s' does not exist. Did you read the directions?\n", tmpConsole);
626 break;
627 }
628 s = tmpConsole;
629 }
Erik Andersen96e2abd2000-01-07 11:40:44 +0000630 new_initAction( a->action, q, s);
Erik Andersen7dc16072000-01-04 01:10:25 +0000631 foundIt=TRUE;
632 }
633 a++;
634 }
635 if (foundIt==TRUE)
636 continue;
637 else {
638 /* Choke on an unknown action */
Erik Andersen0e3782f2000-01-07 02:54:55 +0000639 message(LOG|CONSOLE, "Bad inittab entry: %s\n", lineAsRead);
Erik Andersen7dc16072000-01-04 01:10:25 +0000640 }
641 }
642 return;
Erik Andersen9e737252000-01-06 01:16:13 +0000643#endif
Erik Andersen7dc16072000-01-04 01:10:25 +0000644}
645
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000646extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000647{
Erik Andersen7dc16072000-01-04 01:10:25 +0000648 initAction *a;
649 pid_t wpid;
650 int status;
Eric Andersen0460ff21999-10-25 23:32:44 +0000651
Eric Andersend73dc5b1999-11-10 23:13:02 +0000652#ifndef DEBUG_INIT
Eric Andersen07274581999-11-21 21:50:07 +0000653 /* Expect to be PID 1 iff we are run as init (not linuxrc) */
654 if (getpid() != 1 && strstr(argv[0], "init")!=NULL ) {
Eric Andersend73dc5b1999-11-10 23:13:02 +0000655 usage( "init\n\nInit is the parent of all processes.\n\n"
656 "This version of init is designed to be run only by the kernel\n");
657 }
Eric Andersend73dc5b1999-11-10 23:13:02 +0000658
Erik Andersen0881de72000-01-05 09:34:26 +0000659 /* from the controlling terminal */
660 setsid();
661
Erik Andersen7dc16072000-01-04 01:10:25 +0000662 /* Set up sig handlers -- be sure to clear all of these in run() */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000663 signal(SIGUSR1, halt_signal);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000664 signal(SIGUSR2, reboot_signal);
Erik Andersen0881de72000-01-05 09:34:26 +0000665 signal(SIGINT, reboot_signal);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000666 signal(SIGTERM, reboot_signal);
Eric Andersen0460ff21999-10-25 23:32:44 +0000667
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000668 /* Turn off rebooting via CTL-ALT-DEL -- we get a
669 * SIGINT on CAD so we can shut things down gracefully... */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000670 reboot(RB_DISABLE_CAD);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000671#endif
Erik Andersen7dc16072000-01-04 01:10:25 +0000672
Eric Andersenc7c41d31999-10-28 00:24:35 +0000673 /* Figure out where the default console should be */
674 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000675
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000676 /* Close whatever files are open, and reset the console. */
677 close(0);
678 close(1);
679 close(2);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000680 set_term(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000681
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000682 /* Make sure PATH is set to something sane */
Eric Andersenb186d981999-12-03 09:19:54 +0000683 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000684
Eric Andersen219d6f51999-11-02 19:43:01 +0000685
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000686 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000687#ifndef DEBUG_INIT
Erik Andersen0e3782f2000-01-07 02:54:55 +0000688 message(LOG|CONSOLE,
Erik Andersen7dc16072000-01-04 01:10:25 +0000689 "init started: BusyBox v%s (%s) multi-call binary\r\n",
690 BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000691#else
Erik Andersen0e3782f2000-01-07 02:54:55 +0000692 message(LOG|CONSOLE,
Erik Andersen7dc16072000-01-04 01:10:25 +0000693 "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n",
694 getpid(), BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000695#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000696
Eric Andersenc7c41d31999-10-28 00:24:35 +0000697
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000698 /* Mount /proc */
Eric Andersene18c75a1999-11-05 04:23:05 +0000699 if (mount ("proc", "/proc", "proc", 0, 0) == 0) {
Erik Andersen0e3782f2000-01-07 02:54:55 +0000700 message(LOG|CONSOLE, "Mounting /proc: done.\n");
Eric Andersene18c75a1999-11-05 04:23:05 +0000701 kernel_version = get_kernel_revision();
702 } else
Erik Andersen0e3782f2000-01-07 02:54:55 +0000703 message(LOG|CONSOLE, "Mounting /proc: failed!\n");
Eric Andersencc8ed391999-10-05 16:24:54 +0000704
Eric Andersen219d6f51999-11-02 19:43:01 +0000705 /* Make sure there is enough memory to do something useful. */
706 check_memory();
Eric Andersencc8ed391999-10-05 16:24:54 +0000707
Eric Andersend00c2621999-12-07 08:37:31 +0000708 /* Check if we are supposed to be in single user mode */
709 if ( argc > 1 && (!strcmp(argv[1], "single") ||
Erik Andersen0881de72000-01-05 09:34:26 +0000710 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1")))
711 {
Erik Andersen7dc16072000-01-04 01:10:25 +0000712 /* Ask first then start a shell on tty2 */
713 if (second_console != NULL)
Erik Andersen96e2abd2000-01-07 11:40:44 +0000714 new_initAction( ASKFIRST, SHELL, second_console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000715 /* Ask first then start a shell on tty1 */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000716 new_initAction( ASKFIRST, SHELL, console);
Erik Andersen7dc16072000-01-04 01:10:25 +0000717 } else {
718 /* Not in single user mode -- see what inittab says */
Erik Andersen9e737252000-01-06 01:16:13 +0000719
720 /* NOTE that if BB_FEATURE_USE_INITTAB is NOT defined,
721 * then parse_inittab() simply adds in some default
722 * actions(i.e runs INIT_SCRIPT and then starts a pair
723 * of "askfirst" shells */
Erik Andersen7dc16072000-01-04 01:10:25 +0000724 parse_inittab();
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000725 }
726
Erik Andersen7dc16072000-01-04 01:10:25 +0000727 /* Now run everything that needs to be run */
Eric Andersen84b00921999-12-11 04:16:51 +0000728
Erik Andersen0e3782f2000-01-07 02:54:55 +0000729 message(LOG|CONSOLE, "Running SYSINIT\n");
Erik Andersen0881de72000-01-05 09:34:26 +0000730 /* First run the sysinit command */
Erik Andersen7dc16072000-01-04 01:10:25 +0000731 for( a=initActionList ; a; a=a->nextPtr) {
732 if (a->action == SYSINIT) {
Erik Andersen96e2abd2000-01-07 11:40:44 +0000733 waitfor(a->process, a->console, FALSE);
Erik Andersen7dc16072000-01-04 01:10:25 +0000734 /* Now remove the "sysinit" entry from the list */
735 delete_initAction( a);
Eric Andersend00c2621999-12-07 08:37:31 +0000736 }
737 }
Erik Andersen7dc16072000-01-04 01:10:25 +0000738 /* Next run anything that wants to block */
739 for( a=initActionList ; a; a=a->nextPtr) {
740 if (a->action == WAIT) {
Erik Andersen96e2abd2000-01-07 11:40:44 +0000741 waitfor(a->process, a->console, FALSE);
Erik Andersen7dc16072000-01-04 01:10:25 +0000742 /* Now remove the "wait" entry from the list */
743 delete_initAction( a);
744 }
745 }
746 /* Next run anything to be run only once */
747 for( a=initActionList ; a; a=a->nextPtr) {
748 if (a->action == ONCE) {
Erik Andersen96e2abd2000-01-07 11:40:44 +0000749 run(a->process, a->console, FALSE);
Erik Andersen7dc16072000-01-04 01:10:25 +0000750 /* Now remove the "once" entry from the list */
751 delete_initAction( a);
752 }
753 }
Erik Andersen0e3782f2000-01-07 02:54:55 +0000754 /* If there is nothing else to do, stop */
755 if (initActionList == NULL) {
756 message(LOG|CONSOLE, "No more tasks for init -- sleeping forever.\n");
757 while (1) sleep(1);
758 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000759
Erik Andersen0881de72000-01-05 09:34:26 +0000760 /* Now run the looping stuff for the rest of forever */
761 while (1) {
Erik Andersen7dc16072000-01-04 01:10:25 +0000762 for( a=initActionList ; a; a=a->nextPtr) {
763 /* Only run stuff with pid==0. If they have
764 * a pid, that means they are still running */
765 if (a->pid == 0) {
766 switch(a->action) {
767 case RESPAWN:
768 /* run the respawn stuff */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000769 a->pid = run(a->process, a->console, FALSE);
Erik Andersen7dc16072000-01-04 01:10:25 +0000770 break;
771 case ASKFIRST:
772 /* run the askfirst stuff */
Erik Andersen96e2abd2000-01-07 11:40:44 +0000773 a->pid = run(a->process, a->console, TRUE);
Erik Andersen7dc16072000-01-04 01:10:25 +0000774 break;
Erik Andersen0881de72000-01-05 09:34:26 +0000775 /* silence the compiler's incessant whining */
Erik Andersen7dc16072000-01-04 01:10:25 +0000776 default:
777 break;
778 }
779 }
780 }
Erik Andersen0881de72000-01-05 09:34:26 +0000781 /* Wait for a child process to exit */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000782 wpid = wait(&status);
Eric Andersena7456061999-10-27 02:31:32 +0000783 if (wpid > 0 ) {
Erik Andersen0881de72000-01-05 09:34:26 +0000784 /* Find out who died and clean up their corpse */
Erik Andersen7dc16072000-01-04 01:10:25 +0000785 for( a=initActionList ; a; a=a->nextPtr) {
786 if (a->pid==wpid) {
787 a->pid=0;
Erik Andersen0881de72000-01-05 09:34:26 +0000788 message(LOG, "Process '%s' (pid %d) exited. Scheduling it for restart.\n",
789 a->process, wpid);
Erik Andersen7dc16072000-01-04 01:10:25 +0000790 }
Eric Andersenb6a44b81999-11-13 04:47:09 +0000791 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000792 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000793 sleep(1);
794 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000795}
Erik Andersen9c88cac1999-12-30 09:25:17 +0000796