blob: 84b558d84901acc28a40dacb4de932b9b037abcd [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>
Eric Andersen4c781471999-11-26 08:12:56 +000044#ifdef BB_SYSLOGD
45#include <sys/syslog.h>
46#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000047
Eric Andersen0ecb54a1999-12-05 23:24:55 +000048#if ! defined BB_FEATURE_USE_PROCFS
49#error Sorry, I depend on the /proc filesystem right now.
50#endif
51
52
Eric Andersenbe971d61999-11-03 16:52:50 +000053#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
54#define VT_SECONDARY "/dev/tty2" /* Virtual console */
55#define VT_LOG "/dev/tty3" /* Virtual console */
Eric Andersen219d6f51999-11-02 19:43:01 +000056#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
57#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
Eric Andersen8a8fbb81999-10-26 00:18:56 +000058#define SHELL "/bin/sh" /* Default shell */
Eric Andersen219d6f51999-11-02 19:43:01 +000059#define INITSCRIPT "/etc/init.d/rcS" /* Initscript. */
Eric Andersen0460ff21999-10-25 23:32:44 +000060
Eric Andersen3ae0c781999-11-04 01:13:21 +000061#define LOG 0x1
62#define CONSOLE 0x2
Eric Andersenb186d981999-12-03 09:19:54 +000063static char *console = _PATH_CONSOLE;
Eric Andersenbe971d61999-11-03 16:52:50 +000064static char *second_console = VT_SECONDARY;
65static char *log = VT_LOG;
Eric Andersene18c75a1999-11-05 04:23:05 +000066static int kernel_version = 0;
Eric Andersen0460ff21999-10-25 23:32:44 +000067
68
69/* try to open up the specified device */
Eric Andersen8a8fbb81999-10-26 00:18:56 +000070int device_open(char *device, int mode)
Eric Andersencc8ed391999-10-05 16:24:54 +000071{
Eric Andersen0460ff21999-10-25 23:32:44 +000072 int m, f, fd = -1;
Eric Andersen8a8fbb81999-10-26 00:18:56 +000073
Eric Andersen7f1acfd1999-10-29 23:09:13 +000074 m = mode | O_NONBLOCK;
Eric Andersen8a8fbb81999-10-26 00:18:56 +000075
Eric Andersen0460ff21999-10-25 23:32:44 +000076 /* Retry up to 5 times */
Eric Andersen8a8fbb81999-10-26 00:18:56 +000077 for (f = 0; f < 5; f++)
78 if ((fd = open(device, m)) >= 0)
79 break;
80 if (fd < 0)
81 return fd;
Eric Andersen3ae0c781999-11-04 01:13:21 +000082 /* Reset original flags. */
Eric Andersen0460ff21999-10-25 23:32:44 +000083 if (m != mode)
84 fcntl(fd, F_SETFL, mode);
85 return fd;
86}
Eric Andersencc8ed391999-10-05 16:24:54 +000087
Eric Andersen3ae0c781999-11-04 01:13:21 +000088/* print a message to the specified device:
89 * device may be bitwise-or'd from LOG | CONSOLE */
90void message(int device, char *fmt, ...)
Eric Andersen0460ff21999-10-25 23:32:44 +000091{
92 int fd;
93 va_list arguments;
Eric Andersen4c781471999-11-26 08:12:56 +000094#ifdef BB_SYSLOGD
95
96 /* Log the message to syslogd */
97 if (device & LOG ) {
98 char msg[1024];
99 va_start(arguments, fmt);
100 vsnprintf(msg, sizeof(msg), fmt, arguments);
101 va_end(arguments);
102 syslog(LOG_DAEMON|LOG_NOTICE, msg);
103 }
104
105#else
106 static int log_fd=-1;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000107
Eric Andersen3ae0c781999-11-04 01:13:21 +0000108 /* Take full control of the log tty, and never close it.
109 * It's mine, all mine! Muhahahaha! */
Eric Andersen07e52971999-11-07 07:38:08 +0000110 if (log_fd < 0) {
111 if (log == NULL) {
112 /* don't even try to log, because there is no such console */
113 log_fd = -2;
114 /* log to main console instead */
115 device = CONSOLE;
116 }
117 else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000118 log_fd=-1;
119 fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
120 fflush(stderr);
121 return;
122 }
123 }
Eric Andersen07e52971999-11-07 07:38:08 +0000124 if ( (device & LOG) && (log_fd >= 0) ) {
Eric Andersen0460ff21999-10-25 23:32:44 +0000125 va_start(arguments, fmt);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000126 vdprintf(log_fd, fmt, arguments);
Eric Andersena7456061999-10-27 02:31:32 +0000127 va_end(arguments);
128 }
Eric Andersen4c781471999-11-26 08:12:56 +0000129#endif
130
Eric Andersen3ae0c781999-11-04 01:13:21 +0000131 if (device & CONSOLE) {
Eric Andersended62591999-11-18 00:19:26 +0000132 /* Always send console messages to /dev/console so people will see them. */
Eric Andersenb186d981999-12-03 09:19:54 +0000133 if ((fd = device_open(_PATH_CONSOLE, O_WRONLY|O_NOCTTY|O_NDELAY)) >= 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000134 va_start(arguments, fmt);
135 vdprintf(fd, fmt, arguments);
136 va_end(arguments);
137 close(fd);
138 } else {
139 fprintf(stderr, "Bummer, can't print: ");
140 va_start(arguments, fmt);
141 vfprintf(stderr, fmt, arguments);
142 fflush(stderr);
143 va_end(arguments);
144 }
145 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000146}
147
Eric Andersen3ae0c781999-11-04 01:13:21 +0000148
Eric Andersen0460ff21999-10-25 23:32:44 +0000149/* Set terminal settings to reasonable defaults */
Eric Andersenc7c41d31999-10-28 00:24:35 +0000150void set_term( int fd)
Eric Andersencc8ed391999-10-05 16:24:54 +0000151{
Eric Andersen0460ff21999-10-25 23:32:44 +0000152 struct termios tty;
Eric Andersen08b10341999-11-19 02:38:58 +0000153#if 0
Eric Andersen3ae0c781999-11-04 01:13:21 +0000154 static const char control_characters[] = {
155 '\003', '\034', '\177', '\030', '\004', '\0',
156 '\1', '\0', '\021', '\023', '\032', '\0', '\022',
157 '\017', '\027', '\026', '\0'
158 };
Eric Andersen08b10341999-11-19 02:38:58 +0000159#else
160 static const char control_characters[] = {
161 '\003', '\034', '\177', '\025', '\004', '\0',
162 '\1', '\0', '\021', '\023', '\032', '\0', '\022',
163 '\017', '\027', '\026', '\0'
164 };
165#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000166
Eric Andersenc7c41d31999-10-28 00:24:35 +0000167 tcgetattr(fd, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000168
Eric Andersen08b10341999-11-19 02:38:58 +0000169 /* set control chars */
170 memcpy(tty.c_cc, control_characters, sizeof(control_characters));
Eric Andersencc8ed391999-10-05 16:24:54 +0000171
Eric Andersen219d6f51999-11-02 19:43:01 +0000172 /* use line dicipline 0 */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000173 tty.c_line = 0;
174
Eric Andersen08b10341999-11-19 02:38:58 +0000175 /* Make it be sane */
176 //tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
177 //tty.c_cflag |= HUPCL|CLOCAL;
178
179 /* input modes */
180 tty.c_iflag = ICRNL|IXON|IXOFF;
181
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000182 /* output modes */
Eric Andersenc7c41d31999-10-28 00:24:35 +0000183 tty.c_oflag = OPOST|ONLCR;
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000184
185 /* local modes */
Eric Andersen08b10341999-11-19 02:38:58 +0000186 tty.c_lflag = ISIG|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE|IEXTEN;
Eric Andersencc8ed391999-10-05 16:24:54 +0000187
Eric Andersenc7c41d31999-10-28 00:24:35 +0000188 tcsetattr(fd, TCSANOW, &tty);
Eric Andersencc8ed391999-10-05 16:24:54 +0000189}
190
Eric Andersen219d6f51999-11-02 19:43:01 +0000191/* How much memory does this machine have? */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000192static int mem_total()
Eric Andersencc8ed391999-10-05 16:24:54 +0000193{
Eric Andersenabc7d591999-10-19 00:27:50 +0000194 char s[80];
Eric Andersen219d6f51999-11-02 19:43:01 +0000195 char *p = "/proc/meminfo";
Eric Andersenabc7d591999-10-19 00:27:50 +0000196 FILE *f;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000197 const char pattern[] = "MemTotal:";
Eric Andersencc8ed391999-10-05 16:24:54 +0000198
Eric Andersen219d6f51999-11-02 19:43:01 +0000199 if ((f = fopen(p, "r")) < 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000200 message(LOG, "Error opening %s: %s\n", p, strerror( errno));
Eric Andersen219d6f51999-11-02 19:43:01 +0000201 return -1;
202 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000203 while (NULL != fgets(s, 79, f)) {
204 p = strstr(s, pattern);
Eric Andersenabc7d591999-10-19 00:27:50 +0000205 if (NULL != p) {
206 fclose(f);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000207 return (atoi(p + strlen(pattern)));
Eric Andersenabc7d591999-10-19 00:27:50 +0000208 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000209 }
Eric Andersenabc7d591999-10-19 00:27:50 +0000210 return -1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000211}
212
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000213static void console_init()
Eric Andersen0460ff21999-10-25 23:32:44 +0000214{
215 int fd;
216 int tried_devcons = 0;
Eric Andersen219d6f51999-11-02 19:43:01 +0000217 int tried_vtprimary = 0;
Eric Andersen07e52971999-11-07 07:38:08 +0000218 struct serial_struct sr;
Eric Andersen0460ff21999-10-25 23:32:44 +0000219 char *s;
220
Eric Andersen219d6f51999-11-02 19:43:01 +0000221 if ((s = getenv("CONSOLE")) != NULL) {
Eric Andersen0460ff21999-10-25 23:32:44 +0000222 console = s;
Eric Andersen07e52971999-11-07 07:38:08 +0000223 }
Eric Andersenfbb39c81999-11-08 17:00:52 +0000224#if #cpu(sparc)
Eric Andersen07e52971999-11-07 07:38:08 +0000225 /* sparc kernel supports console=tty[ab] parameter which is also
226 * passed to init, so catch it here */
227 else if ((s = getenv("console")) != NULL) {
228 /* remap tty[ab] to /dev/ttyS[01] */
229 if (strcmp( s, "ttya" )==0)
230 console = SERIAL_CON0;
231 else if (strcmp( s, "ttyb" )==0)
232 console = SERIAL_CON1;
233 }
Eric Andersen219d6f51999-11-02 19:43:01 +0000234#endif
Eric Andersen07e52971999-11-07 07:38:08 +0000235 else {
236 struct vt_stat vt;
237 static char the_console[13];
238
239 console = the_console;
240 /* 2.2 kernels: identify the real console backend and try to use it */
Eric Andersen08b10341999-11-19 02:38:58 +0000241 if (ioctl(0, TIOCGSERIAL, &sr) == 0) {
Eric Andersen07e52971999-11-07 07:38:08 +0000242 /* this is a serial console */
243 snprintf( the_console, sizeof the_console, "/dev/ttyS%d", sr.line );
244 }
245 else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
246 /* this is linux virtual tty */
247 snprintf( the_console, sizeof the_console, "/dev/tty%d", vt.v_active );
248 } else {
Eric Andersenb186d981999-12-03 09:19:54 +0000249 console = _PATH_CONSOLE;
Eric Andersen07e52971999-11-07 07:38:08 +0000250 tried_devcons++;
251 }
Eric Andersen0460ff21999-10-25 23:32:44 +0000252 }
Eric Andersena7456061999-10-27 02:31:32 +0000253
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000254 while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
Eric Andersen219d6f51999-11-02 19:43:01 +0000255 /* Can't open selected console -- try /dev/console */
Eric Andersen0460ff21999-10-25 23:32:44 +0000256 if (!tried_devcons) {
257 tried_devcons++;
Eric Andersenb186d981999-12-03 09:19:54 +0000258 console = _PATH_CONSOLE;
Eric Andersen0460ff21999-10-25 23:32:44 +0000259 continue;
260 }
Eric Andersenbe971d61999-11-03 16:52:50 +0000261 /* Can't open selected console -- try vt1 */
262 if (!tried_vtprimary) {
263 tried_vtprimary++;
264 console = VT_PRIMARY;
265 continue;
266 }
Eric Andersen0460ff21999-10-25 23:32:44 +0000267 break;
268 }
269 if (fd < 0)
Eric Andersen219d6f51999-11-02 19:43:01 +0000270 /* Perhaps we should panic here? */
Eric Andersen0460ff21999-10-25 23:32:44 +0000271 console = "/dev/null";
Eric Andersen07e52971999-11-07 07:38:08 +0000272 else {
273 /* check for serial console and disable logging to tty3 & running a
274 * shell to tty2 */
275 if (ioctl(0,TIOCGSERIAL,&sr) == 0) {
Eric Andersen08b10341999-11-19 02:38:58 +0000276 message(LOG|CONSOLE, "serial console detected. Disabling 2nd virtual terminal.\r\n", console );
Eric Andersen07e52971999-11-07 07:38:08 +0000277 log = NULL;
278 second_console = NULL;
279 }
Eric Andersen0460ff21999-10-25 23:32:44 +0000280 close(fd);
Eric Andersen07e52971999-11-07 07:38:08 +0000281 }
Eric Andersen3ae0c781999-11-04 01:13:21 +0000282 message(LOG, "console=%s\n", console );
Eric Andersen0460ff21999-10-25 23:32:44 +0000283}
284
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000285static int waitfor(int pid)
Eric Andersen0460ff21999-10-25 23:32:44 +0000286{
287 int status, wpid;
288
Eric Andersen3ae0c781999-11-04 01:13:21 +0000289 message(LOG, "Waiting for process %d.\n", pid);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000290 while ((wpid = wait(&status)) != pid) {
291 if (wpid > 0)
Eric Andersen3ae0c781999-11-04 01:13:21 +0000292 message(LOG, "pid %d exited, status=0x%x.\n", wpid, status);
Eric Andersen0460ff21999-10-25 23:32:44 +0000293 }
294 return wpid;
295}
296
Eric Andersena7456061999-10-27 02:31:32 +0000297
Eric Andersenc7c41d31999-10-28 00:24:35 +0000298static pid_t run(const char * const* command,
299 char *terminal, int get_enter)
Eric Andersen0460ff21999-10-25 23:32:44 +0000300{
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000301 int fd;
Eric Andersenc7c41d31999-10-28 00:24:35 +0000302 pid_t pid;
Eric Andersen219d6f51999-11-02 19:43:01 +0000303 const char * const* cmd = command+1;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000304 static const char press_enter[] =
Eric Andersen0460ff21999-10-25 23:32:44 +0000305 "\nPlease press Enter to activate this console. ";
306
Eric Andersen0460ff21999-10-25 23:32:44 +0000307 if ((pid = fork()) == 0) {
308 /* Clean up */
309 close(0);
310 close(1);
311 close(2);
312 setsid();
313
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000314 /* Reset signal handlers set for parent process */
315 signal(SIGUSR1, SIG_DFL);
316 signal(SIGUSR2, SIG_DFL);
317 signal(SIGINT, SIG_DFL);
318 signal(SIGTERM, SIG_DFL);
319
320 if ((fd = device_open(terminal, O_RDWR)) < 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000321 message(LOG, "Bummer, can't open %s\r\n", terminal);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000322 exit(-1);
323 }
324 dup(fd);
325 dup(fd);
Eric Andersenc7c41d31999-10-28 00:24:35 +0000326 tcsetpgrp(0, getpgrp());
327 set_term(0);
Eric Andersen0460ff21999-10-25 23:32:44 +0000328
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000329 if (get_enter==TRUE) {
Eric Andersen0460ff21999-10-25 23:32:44 +0000330 /*
331 * Save memory by not exec-ing anything large (like a shell)
332 * before the user wants it. This is critical if swap is not
333 * enabled and the system has low memory. Generally this will
334 * be run on the second virtual console, and the first will
335 * be allowed to start a shell or whatever an init script
336 * specifies.
337 */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000338 char c;
Eric Andersen3ae0c781999-11-04 01:13:21 +0000339 message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
340 *cmd, getpid(), terminal );
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000341 write(1, press_enter, sizeof(press_enter) - 1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000342 read(0, &c, 1);
343 }
344
345 /* Log the process name and args */
Eric Andersen3ae0c781999-11-04 01:13:21 +0000346 message(LOG, "Starting pid %d, console %s: '", getpid(), terminal);
347 while ( *cmd) message(LOG, "%s ", *cmd++);
348 message(LOG, "'\r\n");
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000349
Eric Andersenc7c41d31999-10-28 00:24:35 +0000350 /* Now run it. The new program will take over this PID,
Eric Andersena7456061999-10-27 02:31:32 +0000351 * so nothing further in init.c should be run. */
Eric Andersenc7c41d31999-10-28 00:24:35 +0000352 execvp(*command, (char**)command+1);
Eric Andersen0460ff21999-10-25 23:32:44 +0000353
Eric Andersen3ae0c781999-11-04 01:13:21 +0000354 message(LOG, "Bummer, could not run '%s'\n", command);
Eric Andersen0460ff21999-10-25 23:32:44 +0000355 exit(-1);
356 }
357 return pid;
358}
359
Eric Andersen219d6f51999-11-02 19:43:01 +0000360/* Make sure there is enough memory to do something useful. *
361 * Calls swapon if needed so be sure /proc is mounted. */
362static void check_memory()
363{
364 struct stat statbuf;
365 const char* const swap_on_cmd[] =
366 { "/bin/swapon", "swapon", "-a", 0};
Eric Andersen219d6f51999-11-02 19:43:01 +0000367
368 if (mem_total() > 3500)
369 return;
370
371 if (stat("/etc/fstab", &statbuf) == 0) {
372 /* Try to turn on swap */
373 waitfor(run(swap_on_cmd, log, FALSE));
374 if (mem_total() < 3500)
375 goto goodnight;
376 } else
377 goto goodnight;
378 return;
379
380goodnight:
Eric Andersen3ae0c781999-11-04 01:13:21 +0000381 message(CONSOLE, "Sorry, your computer does not have enough memory.\r\n");
Eric Andersen219d6f51999-11-02 19:43:01 +0000382 while (1) sleep(1);
383}
384
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000385static void shutdown_system(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000386{
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000387 const char* const swap_off_cmd[] = { "swapoff", "swapoff", "-a", 0};
388 const char* const umount_cmd[] = { "umount", "umount", "-a", "-n", 0};
Eric Andersencc8ed391999-10-05 16:24:54 +0000389
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000390#ifndef DEBUG_INIT
Eric Andersen0460ff21999-10-25 23:32:44 +0000391 /* Allow Ctrl-Alt-Del to reboot system. */
392 reboot(RB_ENABLE_CAD);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000393#endif
Eric Andersen08b10341999-11-19 02:38:58 +0000394 message(CONSOLE, "\r\nThe system is going down NOW !!\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000395 sync();
Eric Andersen0460ff21999-10-25 23:32:44 +0000396 /* Send signals to every process _except_ pid 1 */
Eric Andersen3ae0c781999-11-04 01:13:21 +0000397 message(CONSOLE, "Sending SIGHUP to all processes.\r\n");
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000398#ifndef DEBUG_INIT
Eric Andersen0460ff21999-10-25 23:32:44 +0000399 kill(-1, SIGHUP);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000400#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000401 sleep(2);
402 sync();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000403 message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000404#ifndef DEBUG_INIT
Eric Andersen0460ff21999-10-25 23:32:44 +0000405 kill(-1, SIGKILL);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000406#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000407 sleep(1);
Eric Andersen08b10341999-11-19 02:38:58 +0000408 message(CONSOLE, "Disabling swap.\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000409 waitfor(run( swap_off_cmd, console, FALSE));
Eric Andersen08b10341999-11-19 02:38:58 +0000410 message(CONSOLE, "Unmounting filesystems.\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000411 waitfor(run( umount_cmd, console, FALSE));
Eric Andersen0460ff21999-10-25 23:32:44 +0000412 sync();
Eric Andersene18c75a1999-11-05 04:23:05 +0000413 if (kernel_version > 0 && kernel_version <= 2 * 65536 + 2 * 256 + 11) {
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000414 /* bdflush, kupdate not needed for kernels >2.2.11 */
Eric Andersene18c75a1999-11-05 04:23:05 +0000415 message(CONSOLE, "Flushing buffers.\r\n");
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000416 bdflush(1, 0);
417 sync();
418 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000419}
420
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000421static void halt_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000422{
Eric Andersenabc7d591999-10-19 00:27:50 +0000423 shutdown_system();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000424 message(CONSOLE,
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000425 "The system is halted. Press CTRL-ALT-DEL or turn off power\r\n");
Eric Andersen3ae0c781999-11-04 01:13:21 +0000426 sync();
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000427#ifndef DEBUG_INIT
Eric Andersenb186d981999-12-03 09:19:54 +0000428 while (1) sleep(1);
Eric Andersen3ae0c781999-11-04 01:13:21 +0000429 reboot(RB_HALT_SYSTEM);
430 //reboot(RB_POWER_OFF);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000431#endif
Eric Andersenabc7d591999-10-19 00:27:50 +0000432 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000433}
434
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000435static void reboot_signal(int sig)
Eric Andersencc8ed391999-10-05 16:24:54 +0000436{
Eric Andersenabc7d591999-10-19 00:27:50 +0000437 shutdown_system();
Eric Andersen3ae0c781999-11-04 01:13:21 +0000438 message(CONSOLE, "Please stand by while rebooting the system.\r\n");
439 sync();
Eric Andersenb186d981999-12-03 09:19:54 +0000440 while (1) sleep(1);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000441#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000442 reboot(RB_AUTOBOOT);
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000443#endif
Eric Andersenabc7d591999-10-19 00:27:50 +0000444 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000445}
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000446
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000447extern int init_main(int argc, char **argv)
Eric Andersen0460ff21999-10-25 23:32:44 +0000448{
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000449 int run_rc = TRUE;
Eric Andersen219d6f51999-11-02 19:43:01 +0000450 int wait_for_enter = TRUE;
Eric Andersenc7c41d31999-10-28 00:24:35 +0000451 pid_t pid1 = 0;
452 pid_t pid2 = 0;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000453 struct stat statbuf;
Eric Andersenb6a44b81999-11-13 04:47:09 +0000454 const char* const rc_script_command[] = { INITSCRIPT, INITSCRIPT, 0};
455 const char* const shell_command[] = { SHELL, "-" SHELL, 0};
456 const char* const* tty0_command = shell_command;
457 const char* const* tty1_command = shell_command;
Eric Andersen4c781471999-11-26 08:12:56 +0000458#ifdef BB_INIT_CMD_IF_RC_SCRIPT_EXITS
459 const char* const rc_exit_command[] = { "BB_INIT_CMD_IF_RC_SCRIPT_EXITS",
460 "BB_INIT_CMD_IF_RC_SCRIPT_EXITS", 0 };
Eric Andersenb6a44b81999-11-13 04:47:09 +0000461#endif
462
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000463#ifdef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000464 char *hello_msg_format =
Eric Andersen04579781999-10-29 23:12:50 +0000465 "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n";
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000466#else
467 char *hello_msg_format =
468 "init started: BusyBox v%s (%s) multi-call binary\r\n";
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000469#endif
Eric Andersen0460ff21999-10-25 23:32:44 +0000470
Eric Andersen219d6f51999-11-02 19:43:01 +0000471
Eric Andersend73dc5b1999-11-10 23:13:02 +0000472#ifndef DEBUG_INIT
Eric Andersen07274581999-11-21 21:50:07 +0000473 /* Expect to be PID 1 iff we are run as init (not linuxrc) */
474 if (getpid() != 1 && strstr(argv[0], "init")!=NULL ) {
Eric Andersend73dc5b1999-11-10 23:13:02 +0000475 usage( "init\n\nInit is the parent of all processes.\n\n"
476 "This version of init is designed to be run only by the kernel\n");
477 }
478#endif
479
Eric Andersen219d6f51999-11-02 19:43:01 +0000480 /* Check if we are supposed to be in single user mode */
481 if ( argc > 1 && (!strcmp(argv[1], "single") ||
482 !strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
483 run_rc = FALSE;
484 }
485
486
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000487 /* Set up sig handlers -- be sure to
488 * clear all of these in run() */
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000489 signal(SIGUSR1, halt_signal);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000490 signal(SIGUSR2, reboot_signal);
491 signal(SIGINT, reboot_signal);
492 signal(SIGTERM, reboot_signal);
Eric Andersen0460ff21999-10-25 23:32:44 +0000493
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000494 /* Turn off rebooting via CTL-ALT-DEL -- we get a
495 * SIGINT on CAD so we can shut things down gracefully... */
Eric Andersen2f6c04f1999-11-01 23:59:44 +0000496#ifndef DEBUG_INIT
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000497 reboot(RB_DISABLE_CAD);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000498#endif
Eric Andersen219d6f51999-11-02 19:43:01 +0000499
Eric Andersenc7c41d31999-10-28 00:24:35 +0000500 /* Figure out where the default console should be */
501 console_init();
Eric Andersen0460ff21999-10-25 23:32:44 +0000502
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000503 /* Close whatever files are open, and reset the console. */
504 close(0);
505 close(1);
506 close(2);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000507 set_term(0);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000508 setsid();
Eric Andersencc8ed391999-10-05 16:24:54 +0000509
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000510 /* Make sure PATH is set to something sane */
Eric Andersenb186d981999-12-03 09:19:54 +0000511 putenv(_PATH_STDPATH);
Eric Andersencc8ed391999-10-05 16:24:54 +0000512
Eric Andersen219d6f51999-11-02 19:43:01 +0000513
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000514 /* Hello world */
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000515#ifndef DEBUG_INIT
Eric Andersen3ae0c781999-11-04 01:13:21 +0000516 message(CONSOLE|LOG, hello_msg_format, BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000517#else
Eric Andersen3ae0c781999-11-04 01:13:21 +0000518 message(CONSOLE|LOG, hello_msg_format, getpid(), BB_VER, BB_BT);
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000519#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000520
Eric Andersenc7c41d31999-10-28 00:24:35 +0000521
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000522 /* Mount /proc */
Eric Andersene18c75a1999-11-05 04:23:05 +0000523 if (mount ("proc", "/proc", "proc", 0, 0) == 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000524 message(CONSOLE|LOG, "Mounting /proc: done.\n");
Eric Andersene18c75a1999-11-05 04:23:05 +0000525 kernel_version = get_kernel_revision();
526 } else
Eric Andersen3ae0c781999-11-04 01:13:21 +0000527 message(CONSOLE|LOG, "Mounting /proc: failed!\n");
Eric Andersencc8ed391999-10-05 16:24:54 +0000528
Eric Andersen219d6f51999-11-02 19:43:01 +0000529 /* Make sure there is enough memory to do something useful. */
530 check_memory();
Eric Andersencc8ed391999-10-05 16:24:54 +0000531
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000532
533 /* Make sure an init script exists before trying to run it */
Eric Andersen219d6f51999-11-02 19:43:01 +0000534 if (run_rc == TRUE && stat(INITSCRIPT, &statbuf)==0) {
535 wait_for_enter = FALSE;
Eric Andersenb6a44b81999-11-13 04:47:09 +0000536 tty0_command = rc_script_command;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000537 }
538
Eric Andersen219d6f51999-11-02 19:43:01 +0000539
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000540 /* Ok, now launch the rc script and/or prepare to
541 * start up some VTs if somebody hits enter...
542 */
543 for (;;) {
Eric Andersenc7c41d31999-10-28 00:24:35 +0000544 pid_t wpid;
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000545 int status;
546
Eric Andersenb6a44b81999-11-13 04:47:09 +0000547 if (pid1 == 0 && tty0_command) {
548 pid1 = run(tty0_command, console, wait_for_enter);
Eric Andersencc8ed391999-10-05 16:24:54 +0000549 }
Eric Andersenb6a44b81999-11-13 04:47:09 +0000550 if (pid2 == 0 && tty1_command && second_console) {
551 pid2 = run(tty1_command, second_console, TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000552 }
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000553 wpid = wait(&status);
Eric Andersena7456061999-10-27 02:31:32 +0000554 if (wpid > 0 ) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000555 message(LOG, "pid %d exited, status=%x.\n", wpid, status);
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000556 }
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000557 /* Don't respawn init script if it exits */
Eric Andersen219d6f51999-11-02 19:43:01 +0000558 if (wpid == pid1) {
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000559 if (run_rc == FALSE) {
560 pid1 = 0;
Eric Andersenb6a44b81999-11-13 04:47:09 +0000561 }
Eric Andersen4c781471999-11-26 08:12:56 +0000562#ifdef BB_INIT_CMD_IF_RC_SCRIPT_EXITS
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000563 else {
Eric Andersenb6a44b81999-11-13 04:47:09 +0000564 pid1 = 0;
Eric Andersen219d6f51999-11-02 19:43:01 +0000565 run_rc=FALSE;
566 wait_for_enter=TRUE;
Eric Andersenb6a44b81999-11-13 04:47:09 +0000567 tty0_command=rc_exit_command;
Eric Andersen219d6f51999-11-02 19:43:01 +0000568 }
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000569#endif
Eric Andersen8a8fbb81999-10-26 00:18:56 +0000570 }
571 if (wpid == pid2) {
572 pid2 = 0;
573 }
574 sleep(1);
575 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000576}