blob: b71c9f74e60aeb4bb54bddca775bb608a6fdaf00 [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>
26#include <stdlib.h>
27#include <stdarg.h>
28#include <unistd.h>
29#include <errno.h>
30#include <signal.h>
31#include <termios.h>
Eric Andersenb186d981999-12-03 09:19:54 +000032#include <paths.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000033#include <sys/types.h>
34#include <sys/fcntl.h>
35#include <sys/wait.h>
36#include <string.h>
37#include <sys/mount.h>
38#include <sys/reboot.h>
39#include <sys/kdaemon.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000040#include <sys/sysmacros.h>
Eric Andersen8a8fbb81999-10-26 00:18:56 +000041#include <linux/serial.h> /* for serial_struct */
42#include <sys/vt.h> /* for vt_stat */
Eric Andersenabc7d591999-10-19 00:27:50 +000043#include <sys/ioctl.h>
Erik Andersen4d1d0111999-12-17 18:44:15 +000044#include <linux/version.h>
Eric Andersen4c781471999-11-26 08:12:56 +000045#ifdef BB_SYSLOGD
46#include <sys/syslog.h>
47#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000048
Eric Andersen0ecb54a1999-12-05 23:24:55 +000049#if ! defined BB_FEATURE_USE_PROCFS
50#error Sorry, I depend on the /proc filesystem right now.
51#endif
52
Erik Andersen4d1d0111999-12-17 18:44:15 +000053#ifndef KERNEL_VERSION
54#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
55#endif
56
Eric Andersen0ecb54a1999-12-05 23:24:55 +000057
Eric Andersenbe971d61999-11-03 16:52:50 +000058#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
59#define VT_SECONDARY "/dev/tty2" /* Virtual console */
60#define VT_LOG "/dev/tty3" /* Virtual console */
Eric Andersen219d6f51999-11-02 19:43:01 +000061#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
62#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
Eric Andersend00c2621999-12-07 08:37:31 +000063#define GETTY "/sbin/getty" /* Default location of getty */
Eric Andersen8a8fbb81999-10-26 00:18:56 +000064#define SHELL "/bin/sh" /* Default shell */
Erik Andersen9c88cac1999-12-30 09:25:17 +000065#define INITTAB "/etc/inittab" /* inittab file location */
Erik Andersenf294a021999-12-21 02:54:37 +000066#ifndef BB_INIT_SCRIPT
67#define BB_INIT_SCRIPT "/etc/init.d/rcS" /* Initscript. */
68#endif
Eric Andersen0460ff21999-10-25 23:32:44 +000069
Erik Andersen9c88cac1999-12-30 09:25:17 +000070#if 1
71
Eric Andersen3ae0c781999-11-04 01:13:21 +000072#define LOG 0x1
73#define CONSOLE 0x2
Eric Andersenb186d981999-12-03 09:19:54 +000074static char *console = _PATH_CONSOLE;
Eric Andersenbe971d61999-11-03 16:52:50 +000075static char *second_console = VT_SECONDARY;
76static char *log = VT_LOG;
Eric Andersene18c75a1999-11-05 04:23:05 +000077static int kernel_version = 0;
Eric Andersen0460ff21999-10-25 23:32:44 +000078
79
80/* try to open up the specified device */
Eric Andersen8a8fbb81999-10-26 00:18:56 +000081int device_open(char *device, int mode)
Eric Andersencc8ed391999-10-05 16:24:54 +000082{
Eric Andersen0460ff21999-10-25 23:32:44 +000083 int m, f, fd = -1;
Eric Andersen8a8fbb81999-10-26 00:18:56 +000084
Eric Andersen7f1acfd1999-10-29 23:09:13 +000085 m = mode | O_NONBLOCK;
Eric Andersen8a8fbb81999-10-26 00:18:56 +000086
Eric Andersen0460ff21999-10-25 23:32:44 +000087 /* Retry up to 5 times */
Eric Andersen8a8fbb81999-10-26 00:18:56 +000088 for (f = 0; f < 5; f++)
89 if ((fd = open(device, m)) >= 0)
90 break;
91 if (fd < 0)
92 return fd;
Eric Andersen3ae0c781999-11-04 01:13:21 +000093 /* Reset original flags. */
Eric Andersen0460ff21999-10-25 23:32:44 +000094 if (m != mode)
95 fcntl(fd, F_SETFL, mode);
96 return fd;
97}
Eric Andersencc8ed391999-10-05 16:24:54 +000098
Eric Andersen3ae0c781999-11-04 01:13:21 +000099/* print a message to the specified device:
100 * device may be bitwise-or'd from LOG | CONSOLE */
101void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +0000102{
103 int fd;
104 va_list arguments;
Eric Andersen4c781471999-11-26 08:12:56 +0000105#ifdef BB_SYSLOGD
106
107 /* Log the message to syslogd */
108 if (device & LOG ) {
109 char msg[1024];
110 va_start(arguments, fmt);
111 vsnprintf(msg, sizeof(msg), fmt, arguments);
112 va_end(arguments);
113 syslog(LOG_DAEMON|LOG_NOTICE, msg);
114 }
115
116#else
117 static int log_fd=-1;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000118
Eric Andersen3ae0c781999-11-04 01:13:21 +0000119 /* Take full control of the log tty, and never close it.
120 * It's mine, all mine! Muhahahaha! */
Eric Andersen07e52971999-11-07 07:38:08 +0000121 if (log_fd < 0) {
122 if (log == NULL) {
123 /* don't even try to log, because there is no such console */
124 log_fd = -2;
125 /* log to main console instead */
126 device = CONSOLE;
127 }
128 else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000129 log_fd=-1;
130 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
131 fflush(stderr);
132 return;
133 }
134 }
Eric Andersen07e52971999-11-07 07:38:08 +0000135 if ( (device & LOG) && (log_fd >= 0) ) {
Eric Andersen0460ff21999-10-25 23:32:44 +0000136 va_start(arguments, fmt);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000137 vdprintf(log_fd, fmt, arguments);
Eric Andersena7456061999-10-27 02:31:32 +0000138 va_end(arguments);
139 }
Eric Andersen4c781471999-11-26 08:12:56 +0000140#endif
141
Eric Andersen3ae0c781999-11-04 01:13:21 +0000142 if (device & CONSOLE) {
Eric Andersended62591999-11-18 00:19:26 +0000143 /* Always send console messages to /dev/console so people will see them. */
Eric Andersenb186d981999-12-03 09:19:54 +0000144 if ((fd = device_open(_PATH_CONSOLE, O_WRONLY|O_NOCTTY|O_NDELAY)) >= 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000145 va_start(arguments, fmt);
146 vdprintf(fd, fmt, arguments);
147 va_end(arguments);
148 close(fd);
149 } else {
150 fprintf(stderr, "Bummer, can't print: ");
151 va_start(arguments, fmt);
152 vfprintf(stderr, fmt, arguments);
153 fflush(stderr);
154 va_end(arguments);
155 }
156 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000157}
158
Eric Andersen3ae0c781999-11-04 01:13:21 +0000159
Eric Andersen0460ff21999-10-25 23:32:44 +0000160/* Set terminal settings to reasonable defaults */
Eric Andersenc7c41d31999-10-28 00:24:35 +0000161void set_term( int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000162{
Eric Andersen0460ff21999-10-25 23:32:44 +0000163 struct termios tty;
Eric Andersen08b10341999-11-19 02:38:58 +0000164 static const char control_characters[] = {
165 '\003', '\034', '\177', '\025', '\004', '\0',
166 '\1', '\0', '\021', '\023', '\032', '\0', '\022',
167 '\017', '\027', '\026', '\0'
168 };
Eric Andersencc8ed391999-10-05 16:24:54 +0000169
Eric Andersenc7c41d31999-10-28 00:24:35 +0000170 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000171
Eric Andersen08b10341999-11-19 02:38:58 +0000172 /* set control chars */
173 memcpy(tty.c_cc, control_characters, sizeof(control_characters));
Eric Andersencc8ed391999-10-05 16:24:54 +0000174
Eric Andersen219d6f51999-11-02 19:43:01 +0000175 /* use line dicipline 0 */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000176 tty.c_line = 0;
177
Eric Andersen08b10341999-11-19 02:38:58 +0000178 /* Make it be sane */
179 //tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
180 //tty.c_cflag |= HUPCL|CLOCAL;
181
182 /* input modes */
183 tty.c_iflag = ICRNL|IXON|IXOFF;
184
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000185 /* output modes */
Eric Andersenc7c41d31999-10-28 00:24:35 +0000186 tty.c_oflag = OPOST|ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000187
188 /* local modes */
Eric Andersen08b10341999-11-19 02:38:58 +0000189 tty.c_lflag = ISIG|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE|IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000190
Eric Andersenc7c41d31999-10-28 00:24:35 +0000191 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000192}
193
Eric Andersen219d6f51999-11-02 19:43:01 +0000194/* How much memory does this machine have? */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000195static int mem_total()
Eric Andersencc8ed391999-10-05 16:24:54 +0000196{
Eric Andersenabc7d591999-10-19 00:27:50 +0000197 char s[80];
Eric Andersen219d6f51999-11-02 19:43:01 +0000198 char *p = "/proc/meminfo";
Eric Andersenabc7d591999-10-19 00:27:50 +0000199 FILE *f;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000200 const char pattern[] = "MemTotal:";
Eric Andersencc8ed391999-10-05 16:24:54 +0000201
Eric Andersen219d6f51999-11-02 19:43:01 +0000202 if ((f = fopen(p, "r")) < 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000203 message(LOG, "Error opening %s: %s\n", p, strerror( errno));
Eric Andersen219d6f51999-11-02 19:43:01 +0000204 return -1;
205 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000206 while (NULL != fgets(s, 79, f)) {
207 p = strstr(s, pattern);
Eric Andersenabc7d591999-10-19 00:27:50 +0000208 if (NULL != p) {
209 fclose(f);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000210 return (atoi(p + strlen(pattern)));
Eric Andersenabc7d591999-10-19 00:27:50 +0000211 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000212 }
Eric Andersenabc7d591999-10-19 00:27:50 +0000213 return -1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000214}
215
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000216static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000217{
218 int fd;
219 int tried_devcons = 0;
Eric Andersen219d6f51999-11-02 19:43:01 +0000220 int tried_vtprimary = 0;
Eric Andersen07e52971999-11-07 07:38:08 +0000221 struct serial_struct sr;
Eric Andersen0460ff21999-10-25 23:32:44 +0000222 char *s;
223
Eric Andersen219d6f51999-11-02 19:43:01 +0000224 if ((s = getenv("CONSOLE")) != NULL) {
Eric Andersen0460ff21999-10-25 23:32:44 +0000225 console = s;
Eric Andersen07e52971999-11-07 07:38:08 +0000226 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000227#if #cpu(sparc)
Eric Andersen07e52971999-11-07 07:38:08 +0000228 /* sparc kernel supports console=tty[ab] parameter which is also
229 * passed to init, so catch it here */
230 else if ((s = getenv("console")) != NULL) {
231 /* remap tty[ab] to /dev/ttyS[01] */
232 if (strcmp( s, "ttya" )==0)
233 console = SERIAL_CON0;
234 else if (strcmp( s, "ttyb" )==0)
235 console = SERIAL_CON1;
236 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000237#endif
Eric Andersen07e52971999-11-07 07:38:08 +0000238 else {
239 struct vt_stat vt;
240 static char the_console[13];
241
242 console = the_console;
243 /* 2.2 kernels: identify the real console backend and try to use it */
Eric Andersen08b10341999-11-19 02:38:58 +0000244 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Eric Andersen07e52971999-11-07 07:38:08 +0000245 /* this is a serial console */
246 snprintf( the_console, sizeof the_console, "/dev/ttyS%d", sr.line );
247 }
248 else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
249 /* this is linux virtual tty */
250 snprintf( the_console, sizeof the_console, "/dev/tty%d", vt.v_active );
251 } else {
Eric Andersenb186d981999-12-03 09:19:54 +0000252 console = _PATH_CONSOLE;
Eric Andersen07e52971999-11-07 07:38:08 +0000253 tried_devcons++;
254 }
Eric Andersen0460ff21999-10-25 23:32:44 +0000255 }
Eric Andersena7456061999-10-27 02:31:32 +0000256
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000257 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
Eric Andersen219d6f51999-11-02 19:43:01 +0000258 /* Can't open selected console -- try /dev/console */
Eric Andersen0460ff21999-10-25 23:32:44 +0000259 if (!tried_devcons) {
260 tried_devcons++;
Eric Andersenb186d981999-12-03 09:19:54 +0000261 console = _PATH_CONSOLE;
Eric Andersen0460ff21999-10-25 23:32:44 +0000262 continue;
263 }
Eric Andersenbe971d61999-11-03 16:52:50 +0000264 /* Can't open selected console -- try vt1 */
265 if (!tried_vtprimary) {
266 tried_vtprimary++;
267 console = VT_PRIMARY;
268 continue;
269 }
Eric Andersen0460ff21999-10-25 23:32:44 +0000270 break;
271 }
272 if (fd < 0)
Eric Andersen219d6f51999-11-02 19:43:01 +0000273 /* Perhaps we should panic here? */
Eric Andersen0460ff21999-10-25 23:32:44 +0000274 console = "/dev/null";
Eric Andersen07e52971999-11-07 07:38:08 +0000275 else {
276 /* check for serial console and disable logging to tty3 & running a
277 * shell to tty2 */
278 if (ioctl(0,TIOCGSERIAL,&sr) == 0) {
Eric Andersen08b10341999-11-19 02:38:58 +0000279 message(LOG|CONSOLE, "serial console detected. Disabling 2nd virtual terminal.\r\n", console );
Eric Andersen07e52971999-11-07 07:38:08 +0000280 log = NULL;
281 second_console = NULL;
282 }
Eric Andersen0460ff21999-10-25 23:32:44 +0000283 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000284 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000285 message(LOG, "console=%s\n", console );
Eric Andersen0460ff21999-10-25 23:32:44 +0000286}
287
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000288static int waitfor(int pid)
Eric Andersen0460ff21999-10-25 23:32:44 +0000289{
290 int status, wpid;
291
Eric Andersen3ae0c781999-11-04 01:13:21 +0000292 message(LOG, "Waiting for process %d.\n", pid);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000293 while ((wpid = wait(&status)) != pid) {
294 if (wpid > 0)
Eric Andersen3ae0c781999-11-04 01:13:21 +0000295 message(LOG, "pid %d exited, status=0x%x.\n", wpid, status);
Eric Andersen0460ff21999-10-25 23:32:44 +0000296 }
297 return wpid;
298}
299
Eric Andersena7456061999-10-27 02:31:32 +0000300
Eric Andersenc7c41d31999-10-28 00:24:35 +0000301static pid_t run(const char * const* command,
302 char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000303{
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000304 int fd;
Eric Andersenc7c41d31999-10-28 00:24:35 +0000305 pid_t pid;
Eric Andersen219d6f51999-11-02 19:43:01 +0000306 const char * const* cmd = command+1;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000307 static const char press_enter[] =
Eric Andersen0460ff21999-10-25 23:32:44 +0000308 "\nPlease press Enter to activate this console. ";
309
Eric Andersen0460ff21999-10-25 23:32:44 +0000310 if ((pid = fork()) == 0) {
311 /* Clean up */
312 close(0);
313 close(1);
314 close(2);
315 setsid();
316
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000317 /* Reset signal handlers set for parent process */
318 signal(SIGUSR1, SIG_DFL);
319 signal(SIGUSR2, SIG_DFL);
320 signal(SIGINT, SIG_DFL);
321 signal(SIGTERM, SIG_DFL);
322
323 if ((fd = device_open(terminal, O_RDWR)) < 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000324 message(LOG, "Bummer, can't open %s\r\n", terminal);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000325 exit(-1);
326 }
327 dup(fd);
328 dup(fd);
Eric Andersenc7c41d31999-10-28 00:24:35 +0000329 tcsetpgrp(0, getpgrp());
330 set_term(0);
Eric Andersen0460ff21999-10-25 23:32:44 +0000331
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000332 if (get_enter==TRUE) {
Eric Andersen0460ff21999-10-25 23:32:44 +0000333 /*
334 * Save memory by not exec-ing anything large (like a shell)
335 * before the user wants it. This is critical if swap is not
336 * enabled and the system has low memory. Generally this will
337 * be run on the second virtual console, and the first will
338 * be allowed to start a shell or whatever an init script
339 * specifies.
340 */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000341 char c;
Eric Andersen3ae0c781999-11-04 01:13:21 +0000342 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
343 *cmd, getpid(), terminal );
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000344 write(1, press_enter, sizeof(press_enter) - 1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000345 read(0, &c, 1);
346 }
347
348 /* Log the process name and args */
Eric Andersen2cb55071999-12-10 08:25:07 +0000349 message(LOG|CONSOLE, "Starting pid %d, console %s: '", getpid(), terminal);
350 while ( *cmd) message(LOG|CONSOLE, "%s ", *cmd++);
351 message(LOG|CONSOLE, "'\r\n");
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000352
Eric Andersenc7c41d31999-10-28 00:24:35 +0000353 /* Now run it. The new program will take over this PID,
Eric Andersena7456061999-10-27 02:31:32 +0000354 * so nothing further in init.c should be run. */
Eric Andersenc7c41d31999-10-28 00:24:35 +0000355 execvp(*command, (char**)command+1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000356
Eric Andersen3ae0c781999-11-04 01:13:21 +0000357 message(LOG, "Bummer, could not run '%s'\n", command);
Eric Andersen0460ff21999-10-25 23:32:44 +0000358 exit(-1);
359 }
360 return pid;
361}
362
Eric Andersen219d6f51999-11-02 19:43:01 +0000363/* Make sure there is enough memory to do something useful. *
364 * Calls swapon if needed so be sure /proc is mounted. */
365static void check_memory()
366{
367 struct stat statbuf;
368 const char* const swap_on_cmd[] =
369 { "/bin/swapon", "swapon", "-a", 0};
Eric Andersen219d6f51999-11-02 19:43:01 +0000370
371 if (mem_total() > 3500)
372 return;
373
374 if (stat("/etc/fstab", &statbuf) == 0) {
375 /* Try to turn on swap */
376 waitfor(run(swap_on_cmd, log, FALSE));
377 if (mem_total() < 3500)
378 goto goodnight;
379 } else
380 goto goodnight;
381 return;
382
383goodnight:
Eric Andersen3ae0c781999-11-04 01:13:21 +0000384 message(CONSOLE, "Sorry, your computer does not have enough memory.\r\n");
Eric Andersen219d6f51999-11-02 19:43:01 +0000385 while (1) sleep(1);
386}
387
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000388static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000389{
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000390 const char* const swap_off_cmd[] = { "swapoff", "swapoff", "-a", 0};
Eric Andersen485b9551999-12-07 23:14:59 +0000391 const char* const umount_cmd[] = { "umount", "umount", "-a", 0};
Eric Andersencc8ed391999-10-05 16:24:54 +0000392
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000393#ifndef DEBUG_INIT
Eric Andersen0460ff21999-10-25 23:32:44 +0000394 /* Allow Ctrl-Alt-Del to reboot system. */
395 reboot(RB_ENABLE_CAD);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000396#endif
Eric Andersen08b10341999-11-19 02:38:58 +0000397 message(CONSOLE, "\r\nThe system is going down NOW !!\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000398 sync();
Eric Andersen0460ff21999-10-25 23:32:44 +0000399 /* Send signals to every process _except_ pid 1 */
Eric Andersen3ae0c781999-11-04 01:13:21 +0000400 message(CONSOLE, "Sending SIGHUP to all processes.\r\n");
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000401#ifndef DEBUG_INIT
Eric Andersen0460ff21999-10-25 23:32:44 +0000402 kill(-1, SIGHUP);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000403#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000404 sleep(2);
405 sync();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000406 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000407#ifndef DEBUG_INIT
Eric Andersen0460ff21999-10-25 23:32:44 +0000408 kill(-1, SIGKILL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000409#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000410 sleep(1);
Eric Andersen08b10341999-11-19 02:38:58 +0000411 message(CONSOLE, "Disabling swap.\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000412 waitfor(run( swap_off_cmd, console, FALSE));
Eric Andersen08b10341999-11-19 02:38:58 +0000413 message(CONSOLE, "Unmounting filesystems.\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000414 waitfor(run( umount_cmd, console, FALSE));
Eric Andersen0460ff21999-10-25 23:32:44 +0000415 sync();
Eric Andersene18c75a1999-11-05 04:23:05 +0000416 if (kernel_version > 0 && kernel_version <= 2 * 65536 + 2 * 256 + 11) {
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000417 /* bdflush, kupdate not needed for kernels >2.2.11 */
Eric Andersene18c75a1999-11-05 04:23:05 +0000418 message(CONSOLE, "Flushing buffers.\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000419 bdflush(1, 0);
420 sync();
421 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000422}
423
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000424static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000425{
Eric Andersenabc7d591999-10-19 00:27:50 +0000426 shutdown_system();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000427 message(CONSOLE,
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000428 "The system is halted. Press CTRL-ALT-DEL or turn off power\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000429 sync();
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000430#ifndef DEBUG_INIT
Erik Andersen4d1d0111999-12-17 18:44:15 +0000431#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
Eric Andersen2cb55071999-12-10 08:25:07 +0000432 if (sig == SIGUSR2)
433 reboot(RB_POWER_OFF);
434 else
Erik Andersen4d1d0111999-12-17 18:44:15 +0000435#endif
Eric Andersen2cb55071999-12-10 08:25:07 +0000436 reboot(RB_HALT_SYSTEM);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000437#endif
Eric Andersenabc7d591999-10-19 00:27:50 +0000438 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000439}
440
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000441static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000442{
Eric Andersenabc7d591999-10-19 00:27:50 +0000443 shutdown_system();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000444 message(CONSOLE, "Please stand by while rebooting the system.\r\n");
445 sync();
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000446#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000447 reboot(RB_AUTOBOOT);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000448#endif
Eric Andersenabc7d591999-10-19 00:27:50 +0000449 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000450}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000451
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000452extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000453{
Eric Andersend00c2621999-12-07 08:37:31 +0000454 int run_rc = FALSE;
455 int single = FALSE;
456 int wait_for_enter_tty1 = TRUE;
457 int wait_for_enter_tty2 = TRUE;
Eric Andersenc7c41d31999-10-28 00:24:35 +0000458 pid_t pid1 = 0;
459 pid_t pid2 = 0;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000460 struct stat statbuf;
Eric Andersen84b00921999-12-11 04:16:51 +0000461 char which_vt1[30];
462 char which_vt2[30];
Erik Andersenf294a021999-12-21 02:54:37 +0000463 const char* const rc_script_command[] = { BB_INIT_SCRIPT, BB_INIT_SCRIPT, 0};
Eric Andersen84b00921999-12-11 04:16:51 +0000464 const char* const getty1_command[] = { GETTY, GETTY, "38400", which_vt1, 0};
465 const char* const getty2_command[] = { GETTY, GETTY, "38400", which_vt2, 0};
Eric Andersenb6a44b81999-11-13 04:47:09 +0000466 const char* const shell_command[] = { SHELL, "-" SHELL, 0};
Eric Andersenb6a44b81999-11-13 04:47:09 +0000467 const char* const* tty1_command = shell_command;
Eric Andersend00c2621999-12-07 08:37:31 +0000468 const char* const* tty2_command = shell_command;
Eric Andersen4c781471999-11-26 08:12:56 +0000469#ifdef BB_INIT_CMD_IF_RC_SCRIPT_EXITS
470 const char* const rc_exit_command[] = { "BB_INIT_CMD_IF_RC_SCRIPT_EXITS",
471 "BB_INIT_CMD_IF_RC_SCRIPT_EXITS", 0 };
Eric Andersenb6a44b81999-11-13 04:47:09 +0000472#endif
473
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000474#ifdef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000475 char *hello_msg_format =
Eric Andersen04579781999-10-29 23:12:50 +0000476 "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n";
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000477#else
478 char *hello_msg_format =
479 "init started: BusyBox v%s (%s) multi-call binary\r\n";
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000480#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000481
Eric Andersen219d6f51999-11-02 19:43:01 +0000482
Eric Andersend73dc5b1999-11-10 23:13:02 +0000483#ifndef DEBUG_INIT
Eric Andersen07274581999-11-21 21:50:07 +0000484 /* Expect to be PID 1 iff we are run as init (not linuxrc) */
485 if (getpid() != 1 && strstr(argv[0], "init")!=NULL ) {
Eric Andersend73dc5b1999-11-10 23:13:02 +0000486 usage( "init\n\nInit is the parent of all processes.\n\n"
487 "This version of init is designed to be run only by the kernel\n");
488 }
489#endif
490
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000491 /* Set up sig handlers -- be sure to
492 * clear all of these in run() */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000493 signal(SIGUSR1, halt_signal);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000494 signal(SIGUSR2, reboot_signal);
495 signal(SIGINT, reboot_signal);
496 signal(SIGTERM, reboot_signal);
Eric Andersen0460ff21999-10-25 23:32:44 +0000497
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000498 /* Turn off rebooting via CTL-ALT-DEL -- we get a
499 * SIGINT on CAD so we can shut things down gracefully... */
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000500#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000501 reboot(RB_DISABLE_CAD);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000502#endif
Eric Andersen219d6f51999-11-02 19:43:01 +0000503
Eric Andersenc7c41d31999-10-28 00:24:35 +0000504 /* Figure out where the default console should be */
505 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000506
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000507 /* Close whatever files are open, and reset the console. */
508 close(0);
509 close(1);
510 close(2);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000511 set_term(0);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000512 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000513
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000514 /* Make sure PATH is set to something sane */
Eric Andersenb186d981999-12-03 09:19:54 +0000515 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000516
Eric Andersen219d6f51999-11-02 19:43:01 +0000517
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000518 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000519#ifndef DEBUG_INIT
Eric Andersen3ae0c781999-11-04 01:13:21 +0000520 message(CONSOLE|LOG, hello_msg_format, BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000521#else
Eric Andersen3ae0c781999-11-04 01:13:21 +0000522 message(CONSOLE|LOG, hello_msg_format, getpid(), BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000523#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000524
Eric Andersenc7c41d31999-10-28 00:24:35 +0000525
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000526 /* Mount /proc */
Eric Andersene18c75a1999-11-05 04:23:05 +0000527 if (mount ("proc", "/proc", "proc", 0, 0) == 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000528 message(CONSOLE|LOG, "Mounting /proc: done.\n");
Eric Andersene18c75a1999-11-05 04:23:05 +0000529 kernel_version = get_kernel_revision();
530 } else
Eric Andersen3ae0c781999-11-04 01:13:21 +0000531 message(CONSOLE|LOG, "Mounting /proc: failed!\n");
Eric Andersencc8ed391999-10-05 16:24:54 +0000532
Eric Andersen219d6f51999-11-02 19:43:01 +0000533 /* Make sure there is enough memory to do something useful. */
534 check_memory();
Eric Andersencc8ed391999-10-05 16:24:54 +0000535
Eric Andersend00c2621999-12-07 08:37:31 +0000536 /* Check if we are supposed to be in single user mode */
537 if ( argc > 1 && (!strcmp(argv[1], "single") ||
538 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
539 single = TRUE;
540 tty1_command = shell_command;
541 tty2_command = shell_command;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000542 }
543
Eric Andersend00c2621999-12-07 08:37:31 +0000544 /* Make sure an init script exists before trying to run it */
Erik Andersenf294a021999-12-21 02:54:37 +0000545 if (single==FALSE && stat(BB_INIT_SCRIPT, &statbuf)==0) {
Eric Andersend00c2621999-12-07 08:37:31 +0000546 run_rc = TRUE;
547 wait_for_enter_tty1 = FALSE;
548 tty1_command = rc_script_command;
549 }
550
551 /* Make sure /sbin/getty exists before trying to run it */
552 if (stat(GETTY, &statbuf)==0) {
553 char* where;
Eric Andersen84b00921999-12-11 04:16:51 +0000554 /* First do tty2 */
Eric Andersend00c2621999-12-07 08:37:31 +0000555 wait_for_enter_tty2 = FALSE;
Eric Andersen84b00921999-12-11 04:16:51 +0000556 where = strrchr( second_console, '/');
Eric Andersend00c2621999-12-07 08:37:31 +0000557 if ( where != NULL) {
Eric Andersen84b00921999-12-11 04:16:51 +0000558 where++;
559 strncpy( which_vt2, where, sizeof(which_vt2));
Eric Andersend00c2621999-12-07 08:37:31 +0000560 }
561 tty2_command = getty2_command;
Eric Andersen84b00921999-12-11 04:16:51 +0000562
Eric Andersend00c2621999-12-07 08:37:31 +0000563 /* Check on hooking a getty onto tty1 */
564 if (run_rc == FALSE && single==FALSE) {
565 wait_for_enter_tty1 = FALSE;
Eric Andersen84b00921999-12-11 04:16:51 +0000566 where = strrchr( console, '/');
Eric Andersend00c2621999-12-07 08:37:31 +0000567 if ( where != NULL) {
Eric Andersen84b00921999-12-11 04:16:51 +0000568 where++;
569 strncpy( which_vt1, where, sizeof(which_vt1));
Eric Andersend00c2621999-12-07 08:37:31 +0000570 }
571 tty1_command = getty1_command;
572 }
573 }
574
Eric Andersen219d6f51999-11-02 19:43:01 +0000575
Eric Andersend00c2621999-12-07 08:37:31 +0000576 /* Ok, now launch the tty1_command and tty2_command */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000577 for (;;) {
Eric Andersenc7c41d31999-10-28 00:24:35 +0000578 pid_t wpid;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000579 int status;
580
Eric Andersend00c2621999-12-07 08:37:31 +0000581 if (pid1 == 0 && tty1_command) {
582 pid1 = run(tty1_command, console, wait_for_enter_tty1);
Eric Andersencc8ed391999-10-05 16:24:54 +0000583 }
Eric Andersend00c2621999-12-07 08:37:31 +0000584#ifdef BB_FEATURE_INIT_SECOND_CONSOLE
585 if (pid2 == 0 && tty2_command && second_console) {
586 pid2 = run(tty2_command, second_console, wait_for_enter_tty2);
Eric Andersencc8ed391999-10-05 16:24:54 +0000587 }
Eric Andersend00c2621999-12-07 08:37:31 +0000588#endif
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000589 wpid = wait(&status);
Eric Andersena7456061999-10-27 02:31:32 +0000590 if (wpid > 0 ) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000591 message(LOG, "pid %d exited, status=%x.\n", wpid, status);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000592 }
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000593 /* Don't respawn init script if it exits */
Eric Andersen219d6f51999-11-02 19:43:01 +0000594 if (wpid == pid1) {
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000595 if (run_rc == FALSE) {
596 pid1 = 0;
Eric Andersenb6a44b81999-11-13 04:47:09 +0000597 }
Eric Andersen4c781471999-11-26 08:12:56 +0000598#ifdef BB_INIT_CMD_IF_RC_SCRIPT_EXITS
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000599 else {
Eric Andersenb6a44b81999-11-13 04:47:09 +0000600 pid1 = 0;
Eric Andersen219d6f51999-11-02 19:43:01 +0000601 run_rc=FALSE;
Eric Andersend00c2621999-12-07 08:37:31 +0000602 wait_for_enter_tty1=TRUE;
603 tty1_command=rc_exit_command;
Eric Andersen219d6f51999-11-02 19:43:01 +0000604 }
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000605#endif
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000606 }
Eric Andersend00c2621999-12-07 08:37:31 +0000607#ifdef BB_FEATURE_INIT_SECOND_CONSOLE
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000608 if (wpid == pid2) {
609 pid2 = 0;
610 }
Eric Andersend00c2621999-12-07 08:37:31 +0000611#endif
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000612 sleep(1);
613 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000614}
Erik Andersen9c88cac1999-12-30 09:25:17 +0000615
616#else
617
618
619void parse_inittab(void)
620{
621 FILE* file;
622 char buf[256];
623 char action[256]="";
624 char process[256]="";
625 char *p, *q;
626
627
628 if ((file = fopen(INITTAB, "r")) < 0) {
629 /* No inittab file -- set up some default behavior */
630
631 /* FIXME */
632 return;
633 }
634
635 while ( fgets(buf, 255, file) != NULL) {
636 for(p = buf; *p == ' ' || *p == '\t'; p++);
637 if (*p == '#' || *p == '\n') continue;
638
639 /* Trim the trailing \n */
640 q = strrchr( p, '\n');
641 if (q != NULL)
642 *q='\0';
643
644 /* Skip past the ID field and the runlevel
645 * field (both are ignored) */
646 p = strchr( p, ':');
647
648 /* Now peal off the process field from the end
649 * of the string */
650 q = strrchr( p, ':');
651 if ( q == NULL || q+1 == NULL)
652 goto choke;
653 *q='\0';
654 strcpy( process, ++q);
655 fprintf(stderr, "process=%s\n", process);
656
657
658 /* Now peal off the action field */
659 q = strrchr( p, ':');
660 if ( q == NULL || q+1 == NULL)
661 goto choke;
662 strcpy( action, ++q);
663 fprintf(stderr, "action=%s\n", action);
664
665
666 /* Ok, now do the right thing */
667
668 }
669 return;
670
671choke:
672 //message(CONSOLE, "Bad entry:");
673 fprintf(stderr, "Bad inittab entry: %s", buf);
674 while (1) sleep(1);
675
676}
677
678
679extern int init_main(int argc, char **argv)
680{
681 parse_inittab();
682 exit( TRUE);
683}
684
685
686#endif