1999-10-21 03:38:37 +05:30
|
|
|
/*
|
|
|
|
* Mini init implementation for busybox
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
|
|
|
|
* Adjusted by so many folks, it's impossible to keep track.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
#include "internal.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <termios.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/reboot.h>
|
|
|
|
#include <sys/kdaemon.h>
|
|
|
|
#include <sys/sysmacros.h>
|
1999-10-26 05:48:56 +05:30
|
|
|
#include <linux/serial.h> /* for serial_struct */
|
|
|
|
#include <sys/vt.h> /* for vt_stat */
|
1999-10-19 05:57:50 +05:30
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
1999-11-04 06:43:21 +05:30
|
|
|
#define VT_CONSOLE "/dev/console" /* Logical system console */
|
1999-11-03 22:22:50 +05:30
|
|
|
#define VT_PRIMARY "/dev/tty1" /* Primary virtual console */
|
|
|
|
#define VT_SECONDARY "/dev/tty2" /* Virtual console */
|
|
|
|
#define VT_LOG "/dev/tty3" /* Virtual console */
|
1999-11-03 01:13:01 +05:30
|
|
|
#define SERIAL_CON0 "/dev/ttyS0" /* Primary serial console */
|
|
|
|
#define SERIAL_CON1 "/dev/ttyS1" /* Serial console */
|
1999-10-26 05:48:56 +05:30
|
|
|
#define SHELL "/bin/sh" /* Default shell */
|
1999-11-03 01:13:01 +05:30
|
|
|
#define INITSCRIPT "/etc/init.d/rcS" /* Initscript. */
|
1999-10-26 05:02:44 +05:30
|
|
|
#define PATH_DEFAULT "PATH=/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin"
|
1999-10-05 21:54:54 +05:30
|
|
|
|
1999-11-04 06:43:21 +05:30
|
|
|
#define LOG 0x1
|
|
|
|
#define CONSOLE 0x2
|
|
|
|
static char *console = VT_CONSOLE;
|
1999-11-03 22:22:50 +05:30
|
|
|
static char *second_console = VT_SECONDARY;
|
|
|
|
static char *log = VT_LOG;
|
1999-11-05 09:53:05 +05:30
|
|
|
static int kernel_version = 0;
|
1999-10-26 05:02:44 +05:30
|
|
|
|
|
|
|
|
|
|
|
/* try to open up the specified device */
|
1999-10-26 05:48:56 +05:30
|
|
|
int device_open(char *device, int mode)
|
1999-10-26 05:02:44 +05:30
|
|
|
{
|
|
|
|
int m, f, fd = -1;
|
1999-10-26 05:48:56 +05:30
|
|
|
|
1999-10-30 04:39:13 +05:30
|
|
|
m = mode | O_NONBLOCK;
|
1999-10-26 05:48:56 +05:30
|
|
|
|
1999-10-26 05:02:44 +05:30
|
|
|
/* Retry up to 5 times */
|
1999-10-26 05:48:56 +05:30
|
|
|
for (f = 0; f < 5; f++)
|
|
|
|
if ((fd = open(device, m)) >= 0)
|
|
|
|
break;
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
1999-11-04 06:43:21 +05:30
|
|
|
/* Reset original flags. */
|
1999-10-26 05:02:44 +05:30
|
|
|
if (m != mode)
|
|
|
|
fcntl(fd, F_SETFL, mode);
|
|
|
|
return fd;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
1999-11-04 06:43:21 +05:30
|
|
|
/* print a message to the specified device:
|
|
|
|
* device may be bitwise-or'd from LOG | CONSOLE */
|
|
|
|
void message(int device, char *fmt, ...)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
1999-10-26 05:02:44 +05:30
|
|
|
int fd;
|
1999-11-04 06:43:21 +05:30
|
|
|
static int log_fd=-1;
|
1999-10-26 05:02:44 +05:30
|
|
|
va_list arguments;
|
1999-10-26 05:48:56 +05:30
|
|
|
|
1999-11-04 06:43:21 +05:30
|
|
|
/* Take full control of the log tty, and never close it.
|
|
|
|
* It's mine, all mine! Muhahahaha! */
|
1999-11-07 13:08:08 +05:30
|
|
|
if (log_fd < 0) {
|
|
|
|
if (log == NULL) {
|
|
|
|
/* don't even try to log, because there is no such console */
|
|
|
|
log_fd = -2;
|
|
|
|
/* log to main console instead */
|
|
|
|
device = CONSOLE;
|
|
|
|
}
|
|
|
|
else if ((log_fd = device_open(log, O_RDWR|O_NDELAY)) < 0) {
|
1999-11-04 06:43:21 +05:30
|
|
|
log_fd=-1;
|
|
|
|
fprintf(stderr, "Bummer, can't write to log on %s!\r\n", log);
|
|
|
|
fflush(stderr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-07 13:08:08 +05:30
|
|
|
if ( (device & LOG) && (log_fd >= 0) ) {
|
1999-10-27 08:01:32 +05:30
|
|
|
va_start(arguments, fmt);
|
1999-11-04 06:43:21 +05:30
|
|
|
vdprintf(log_fd, fmt, arguments);
|
1999-10-27 08:01:32 +05:30
|
|
|
va_end(arguments);
|
|
|
|
}
|
1999-11-04 06:43:21 +05:30
|
|
|
if (device & CONSOLE) {
|
|
|
|
if ((fd = device_open(console, O_WRONLY|O_NOCTTY|O_NDELAY)) >= 0) {
|
|
|
|
va_start(arguments, fmt);
|
|
|
|
vdprintf(fd, fmt, arguments);
|
|
|
|
va_end(arguments);
|
|
|
|
close(fd);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Bummer, can't print: ");
|
|
|
|
va_start(arguments, fmt);
|
|
|
|
vfprintf(stderr, fmt, arguments);
|
|
|
|
fflush(stderr);
|
|
|
|
va_end(arguments);
|
|
|
|
}
|
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
1999-11-04 06:43:21 +05:30
|
|
|
|
1999-10-26 05:02:44 +05:30
|
|
|
/* Set terminal settings to reasonable defaults */
|
1999-10-28 05:54:35 +05:30
|
|
|
void set_term( int fd)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
1999-10-26 05:02:44 +05:30
|
|
|
struct termios tty;
|
1999-11-04 06:43:21 +05:30
|
|
|
static const char control_characters[] = {
|
|
|
|
'\003', '\034', '\177', '\030', '\004', '\0',
|
|
|
|
'\1', '\0', '\021', '\023', '\032', '\0', '\022',
|
|
|
|
'\017', '\027', '\026', '\0'
|
|
|
|
};
|
1999-10-26 05:02:44 +05:30
|
|
|
|
1999-10-28 05:54:35 +05:30
|
|
|
tcgetattr(fd, &tty);
|
1999-10-30 04:39:13 +05:30
|
|
|
|
1999-11-04 06:43:21 +05:30
|
|
|
/* Make it be sane */
|
|
|
|
tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
|
|
|
|
tty.c_cflag |= HUPCL|CLOCAL;
|
|
|
|
|
1999-10-30 04:39:13 +05:30
|
|
|
/* input modes */
|
|
|
|
tty.c_iflag = IGNPAR|ICRNL|IXON|IXOFF|IXANY;
|
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
/* use line dicipline 0 */
|
1999-10-30 04:39:13 +05:30
|
|
|
tty.c_line = 0;
|
|
|
|
|
|
|
|
/* output modes */
|
1999-10-28 05:54:35 +05:30
|
|
|
tty.c_oflag = OPOST|ONLCR;
|
1999-10-30 04:39:13 +05:30
|
|
|
|
|
|
|
/* local modes */
|
|
|
|
tty.c_lflag = ISIG|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOPRT|ECHOKE|IEXTEN;
|
|
|
|
|
|
|
|
/* control chars */
|
|
|
|
memcpy(tty.c_cc, control_characters, sizeof(control_characters));
|
1999-10-26 05:02:44 +05:30
|
|
|
|
1999-10-28 05:54:35 +05:30
|
|
|
tcsetattr(fd, TCSANOW, &tty);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
/* How much memory does this machine have? */
|
1999-10-26 05:48:56 +05:30
|
|
|
static int mem_total()
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
1999-10-19 05:57:50 +05:30
|
|
|
char s[80];
|
1999-11-03 01:13:01 +05:30
|
|
|
char *p = "/proc/meminfo";
|
1999-10-19 05:57:50 +05:30
|
|
|
FILE *f;
|
1999-10-26 05:48:56 +05:30
|
|
|
const char pattern[] = "MemTotal:";
|
1999-10-19 05:57:50 +05:30
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
if ((f = fopen(p, "r")) < 0) {
|
1999-11-04 06:43:21 +05:30
|
|
|
message(LOG, "Error opening %s: %s\n", p, strerror( errno));
|
1999-11-03 01:13:01 +05:30
|
|
|
return -1;
|
|
|
|
}
|
1999-10-26 05:48:56 +05:30
|
|
|
while (NULL != fgets(s, 79, f)) {
|
|
|
|
p = strstr(s, pattern);
|
1999-10-19 05:57:50 +05:30
|
|
|
if (NULL != p) {
|
|
|
|
fclose(f);
|
1999-10-26 05:48:56 +05:30
|
|
|
return (atoi(p + strlen(pattern)));
|
1999-10-19 05:57:50 +05:30
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
1999-10-19 05:57:50 +05:30
|
|
|
return -1;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
static void console_init()
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
1999-10-26 05:02:44 +05:30
|
|
|
int fd;
|
|
|
|
int tried_devcons = 0;
|
1999-11-03 01:13:01 +05:30
|
|
|
int tried_vtprimary = 0;
|
1999-11-07 13:08:08 +05:30
|
|
|
struct serial_struct sr;
|
1999-10-26 05:02:44 +05:30
|
|
|
char *s;
|
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
if ((s = getenv("CONSOLE")) != NULL) {
|
1999-10-26 05:02:44 +05:30
|
|
|
console = s;
|
1999-11-07 13:08:08 +05:30
|
|
|
}
|
1999-11-08 22:30:52 +05:30
|
|
|
#if #cpu(sparc)
|
1999-11-07 13:08:08 +05:30
|
|
|
/* sparc kernel supports console=tty[ab] parameter which is also
|
|
|
|
* passed to init, so catch it here */
|
|
|
|
else if ((s = getenv("console")) != NULL) {
|
|
|
|
/* remap tty[ab] to /dev/ttyS[01] */
|
|
|
|
if (strcmp( s, "ttya" )==0)
|
|
|
|
console = SERIAL_CON0;
|
|
|
|
else if (strcmp( s, "ttyb" )==0)
|
|
|
|
console = SERIAL_CON1;
|
|
|
|
}
|
1999-11-03 01:13:01 +05:30
|
|
|
#endif
|
1999-11-07 13:08:08 +05:30
|
|
|
else {
|
|
|
|
struct vt_stat vt;
|
|
|
|
static char the_console[13];
|
|
|
|
|
|
|
|
console = the_console;
|
|
|
|
/* 2.2 kernels: identify the real console backend and try to use it */
|
|
|
|
if (ioctl(0,TIOCGSERIAL,&sr) == 0) {
|
|
|
|
/* this is a serial console */
|
|
|
|
snprintf( the_console, sizeof the_console, "/dev/ttyS%d", sr.line );
|
|
|
|
}
|
|
|
|
else if (ioctl(0, VT_GETSTATE, &vt) == 0) {
|
|
|
|
/* this is linux virtual tty */
|
|
|
|
snprintf( the_console, sizeof the_console, "/dev/tty%d", vt.v_active );
|
|
|
|
} else {
|
|
|
|
console = VT_CONSOLE;
|
|
|
|
tried_devcons++;
|
|
|
|
}
|
1999-10-26 05:02:44 +05:30
|
|
|
}
|
1999-10-27 08:01:32 +05:30
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
while ((fd = open(console, O_RDONLY | O_NONBLOCK)) < 0) {
|
1999-11-03 01:13:01 +05:30
|
|
|
/* Can't open selected console -- try /dev/console */
|
1999-10-26 05:02:44 +05:30
|
|
|
if (!tried_devcons) {
|
|
|
|
tried_devcons++;
|
1999-11-04 06:43:21 +05:30
|
|
|
console = VT_CONSOLE;
|
1999-10-26 05:02:44 +05:30
|
|
|
continue;
|
|
|
|
}
|
1999-11-03 22:22:50 +05:30
|
|
|
/* Can't open selected console -- try vt1 */
|
|
|
|
if (!tried_vtprimary) {
|
|
|
|
tried_vtprimary++;
|
|
|
|
console = VT_PRIMARY;
|
|
|
|
continue;
|
|
|
|
}
|
1999-10-26 05:02:44 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (fd < 0)
|
1999-11-03 01:13:01 +05:30
|
|
|
/* Perhaps we should panic here? */
|
1999-10-26 05:02:44 +05:30
|
|
|
console = "/dev/null";
|
1999-11-07 13:08:08 +05:30
|
|
|
else {
|
|
|
|
/* check for serial console and disable logging to tty3 & running a
|
|
|
|
* shell to tty2 */
|
|
|
|
if (ioctl(0,TIOCGSERIAL,&sr) == 0) {
|
|
|
|
log = NULL;
|
|
|
|
second_console = NULL;
|
|
|
|
}
|
1999-10-26 05:02:44 +05:30
|
|
|
close(fd);
|
1999-11-07 13:08:08 +05:30
|
|
|
}
|
1999-11-04 06:43:21 +05:30
|
|
|
message(LOG, "console=%s\n", console );
|
1999-10-26 05:02:44 +05:30
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
static int waitfor(int pid)
|
1999-10-26 05:02:44 +05:30
|
|
|
{
|
|
|
|
int status, wpid;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
1999-11-04 06:43:21 +05:30
|
|
|
message(LOG, "Waiting for process %d.\n", pid);
|
1999-10-26 05:48:56 +05:30
|
|
|
while ((wpid = wait(&status)) != pid) {
|
|
|
|
if (wpid > 0)
|
1999-11-04 06:43:21 +05:30
|
|
|
message(LOG, "pid %d exited, status=0x%x.\n", wpid, status);
|
1999-10-26 05:02:44 +05:30
|
|
|
}
|
|
|
|
return wpid;
|
|
|
|
}
|
|
|
|
|
1999-10-27 08:01:32 +05:30
|
|
|
|
1999-10-28 05:54:35 +05:30
|
|
|
static pid_t run(const char * const* command,
|
|
|
|
char *terminal, int get_enter)
|
1999-10-26 05:02:44 +05:30
|
|
|
{
|
1999-11-02 05:29:44 +05:30
|
|
|
int fd;
|
1999-10-28 05:54:35 +05:30
|
|
|
pid_t pid;
|
1999-11-03 01:13:01 +05:30
|
|
|
const char * const* cmd = command+1;
|
1999-10-26 05:48:56 +05:30
|
|
|
static const char press_enter[] =
|
1999-10-26 05:02:44 +05:30
|
|
|
"\nPlease press Enter to activate this console. ";
|
|
|
|
|
|
|
|
if ((pid = fork()) == 0) {
|
|
|
|
/* Clean up */
|
|
|
|
close(0);
|
|
|
|
close(1);
|
|
|
|
close(2);
|
|
|
|
setsid();
|
|
|
|
|
1999-11-02 05:29:44 +05:30
|
|
|
/* Reset signal handlers set for parent process */
|
|
|
|
signal(SIGUSR1, SIG_DFL);
|
|
|
|
signal(SIGUSR2, SIG_DFL);
|
|
|
|
signal(SIGINT, SIG_DFL);
|
|
|
|
signal(SIGTERM, SIG_DFL);
|
|
|
|
|
|
|
|
if ((fd = device_open(terminal, O_RDWR)) < 0) {
|
1999-11-04 06:43:21 +05:30
|
|
|
message(LOG, "Bummer, can't open %s\r\n", terminal);
|
1999-11-02 05:29:44 +05:30
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
dup(fd);
|
|
|
|
dup(fd);
|
1999-10-28 05:54:35 +05:30
|
|
|
tcsetpgrp(0, getpgrp());
|
|
|
|
set_term(0);
|
1999-10-26 05:02:44 +05:30
|
|
|
|
1999-11-02 05:29:44 +05:30
|
|
|
if (get_enter==TRUE) {
|
1999-10-26 05:02:44 +05:30
|
|
|
/*
|
|
|
|
* Save memory by not exec-ing anything large (like a shell)
|
|
|
|
* before the user wants it. This is critical if swap is not
|
|
|
|
* enabled and the system has low memory. Generally this will
|
|
|
|
* be run on the second virtual console, and the first will
|
|
|
|
* be allowed to start a shell or whatever an init script
|
|
|
|
* specifies.
|
|
|
|
*/
|
1999-10-26 05:48:56 +05:30
|
|
|
char c;
|
1999-11-04 06:43:21 +05:30
|
|
|
message(LOG, "Waiting for enter to start '%s' (pid %d, console %s)\r\n",
|
|
|
|
*cmd, getpid(), terminal );
|
1999-10-30 04:39:13 +05:30
|
|
|
write(1, press_enter, sizeof(press_enter) - 1);
|
1999-10-26 05:02:44 +05:30
|
|
|
read(0, &c, 1);
|
1999-10-19 05:57:50 +05:30
|
|
|
}
|
1999-10-26 05:02:44 +05:30
|
|
|
|
|
|
|
/* Log the process name and args */
|
1999-11-04 06:43:21 +05:30
|
|
|
message(LOG, "Starting pid %d, console %s: '", getpid(), terminal);
|
|
|
|
while ( *cmd) message(LOG, "%s ", *cmd++);
|
|
|
|
message(LOG, "'\r\n");
|
1999-11-02 05:29:44 +05:30
|
|
|
|
1999-10-28 05:54:35 +05:30
|
|
|
/* Now run it. The new program will take over this PID,
|
1999-10-27 08:01:32 +05:30
|
|
|
* so nothing further in init.c should be run. */
|
1999-10-28 05:54:35 +05:30
|
|
|
execvp(*command, (char**)command+1);
|
1999-10-26 05:02:44 +05:30
|
|
|
|
1999-11-04 06:43:21 +05:30
|
|
|
message(LOG, "Bummer, could not run '%s'\n", command);
|
1999-10-26 05:02:44 +05:30
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
/* Make sure there is enough memory to do something useful. *
|
|
|
|
* Calls swapon if needed so be sure /proc is mounted. */
|
|
|
|
static void check_memory()
|
|
|
|
{
|
|
|
|
struct stat statbuf;
|
|
|
|
const char* const swap_on_cmd[] =
|
|
|
|
{ "/bin/swapon", "swapon", "-a", 0};
|
|
|
|
|
|
|
|
if (mem_total() > 3500)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (stat("/etc/fstab", &statbuf) == 0) {
|
|
|
|
/* Try to turn on swap */
|
|
|
|
waitfor(run(swap_on_cmd, log, FALSE));
|
|
|
|
if (mem_total() < 3500)
|
|
|
|
goto goodnight;
|
|
|
|
} else
|
|
|
|
goto goodnight;
|
|
|
|
return;
|
|
|
|
|
|
|
|
goodnight:
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE, "Sorry, your computer does not have enough memory.\r\n");
|
1999-11-03 01:13:01 +05:30
|
|
|
while (1) sleep(1);
|
|
|
|
}
|
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
static void shutdown_system(void)
|
1999-10-26 05:02:44 +05:30
|
|
|
{
|
1999-11-02 05:29:44 +05:30
|
|
|
const char* const swap_off_cmd[] = { "swapoff", "swapoff", "-a", 0};
|
|
|
|
const char* const umount_cmd[] = { "umount", "umount", "-a", "-n", 0};
|
1999-10-26 05:02:44 +05:30
|
|
|
|
1999-11-02 05:29:44 +05:30
|
|
|
#ifndef DEBUG_INIT
|
1999-10-26 05:02:44 +05:30
|
|
|
/* Allow Ctrl-Alt-Del to reboot system. */
|
|
|
|
reboot(RB_ENABLE_CAD);
|
1999-11-02 05:29:44 +05:30
|
|
|
#endif
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE, "The system is going down NOW !!\r\n");
|
|
|
|
sync();
|
1999-10-26 05:02:44 +05:30
|
|
|
/* Send signals to every process _except_ pid 1 */
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE, "Sending SIGHUP to all processes.\r\n");
|
1999-11-02 05:29:44 +05:30
|
|
|
#ifndef DEBUG_INIT
|
1999-10-26 05:02:44 +05:30
|
|
|
kill(-1, SIGHUP);
|
1999-11-02 05:29:44 +05:30
|
|
|
#endif
|
1999-10-26 05:02:44 +05:30
|
|
|
sleep(2);
|
|
|
|
sync();
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE, "Sending SIGKILL to all processes.\r\n");
|
1999-11-02 05:29:44 +05:30
|
|
|
#ifndef DEBUG_INIT
|
1999-10-26 05:02:44 +05:30
|
|
|
kill(-1, SIGKILL);
|
1999-11-02 05:29:44 +05:30
|
|
|
#endif
|
1999-10-26 05:02:44 +05:30
|
|
|
sleep(1);
|
1999-11-04 06:43:21 +05:30
|
|
|
waitfor(run( swap_off_cmd, console, FALSE));
|
|
|
|
waitfor(run( umount_cmd, console, FALSE));
|
1999-10-26 05:02:44 +05:30
|
|
|
sync();
|
1999-11-05 09:53:05 +05:30
|
|
|
if (kernel_version > 0 && kernel_version <= 2 * 65536 + 2 * 256 + 11) {
|
1999-11-05 06:01:46 +05:30
|
|
|
/* bdflush, kupdate not needed for kernels >2.2.11 */
|
1999-11-05 09:53:05 +05:30
|
|
|
message(CONSOLE, "Flushing buffers.\r\n");
|
1999-11-05 06:01:46 +05:30
|
|
|
bdflush(1, 0);
|
|
|
|
sync();
|
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
static void halt_signal(int sig)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
1999-10-19 05:57:50 +05:30
|
|
|
shutdown_system();
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE,
|
1999-10-26 05:48:56 +05:30
|
|
|
"The system is halted. Press CTRL-ALT-DEL or turn off power\r\n");
|
1999-11-04 06:43:21 +05:30
|
|
|
sync();
|
1999-11-02 05:29:44 +05:30
|
|
|
#ifndef DEBUG_INIT
|
1999-11-04 06:43:21 +05:30
|
|
|
reboot(RB_HALT_SYSTEM);
|
|
|
|
//reboot(RB_POWER_OFF);
|
1999-11-02 05:29:44 +05:30
|
|
|
#endif
|
1999-10-19 05:57:50 +05:30
|
|
|
exit(0);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
static void reboot_signal(int sig)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
1999-10-19 05:57:50 +05:30
|
|
|
shutdown_system();
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE, "Please stand by while rebooting the system.\r\n");
|
|
|
|
sync();
|
1999-11-02 05:29:44 +05:30
|
|
|
#ifndef DEBUG_INIT
|
1999-10-26 05:48:56 +05:30
|
|
|
reboot(RB_AUTOBOOT);
|
1999-11-02 05:29:44 +05:30
|
|
|
#endif
|
1999-10-19 05:57:50 +05:30
|
|
|
exit(0);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
extern int init_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
1999-10-26 05:48:56 +05:30
|
|
|
int run_rc = TRUE;
|
1999-11-03 01:13:01 +05:30
|
|
|
int wait_for_enter = TRUE;
|
1999-10-28 05:54:35 +05:30
|
|
|
pid_t pid1 = 0;
|
|
|
|
pid_t pid2 = 0;
|
1999-10-26 05:48:56 +05:30
|
|
|
struct stat statbuf;
|
1999-11-02 05:29:44 +05:30
|
|
|
const char* const init_commands[] = { INITSCRIPT, INITSCRIPT, 0};
|
|
|
|
const char* const shell_commands[] = { SHELL, "-" SHELL, 0};
|
1999-11-03 01:13:01 +05:30
|
|
|
const char* const* tty0_commands = shell_commands;
|
1999-10-28 05:54:35 +05:30
|
|
|
const char* const* tty1_commands = shell_commands;
|
1999-11-02 05:29:44 +05:30
|
|
|
#ifdef DEBUG_INIT
|
1999-10-30 04:39:13 +05:30
|
|
|
char *hello_msg_format =
|
1999-11-02 05:29:44 +05:30
|
|
|
"init(%d) started: BusyBox v%s (%s) multi-call binary\r\n";
|
1999-10-30 04:39:13 +05:30
|
|
|
#else
|
1999-10-26 05:48:56 +05:30
|
|
|
char *hello_msg_format =
|
1999-11-02 05:29:44 +05:30
|
|
|
"init started: BusyBox v%s (%s) multi-call binary\r\n";
|
1999-10-30 04:39:13 +05:30
|
|
|
#endif
|
1999-10-26 05:02:44 +05:30
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
|
1999-11-11 04:43:02 +05:30
|
|
|
#ifndef DEBUG_INIT
|
|
|
|
if (getpid() != 1) {
|
|
|
|
usage( "init\n\nInit is the parent of all processes.\n\n"
|
|
|
|
"This version of init is designed to be run only by the kernel\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
/* Check if we are supposed to be in single user mode */
|
|
|
|
if ( argc > 1 && (!strcmp(argv[1], "single") ||
|
|
|
|
!strcmp(argv[1], "-s") || !strcmp(argv[1], "1"))) {
|
|
|
|
run_rc = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-02 05:29:44 +05:30
|
|
|
/* Set up sig handlers -- be sure to
|
|
|
|
* clear all of these in run() */
|
1999-10-26 05:48:56 +05:30
|
|
|
signal(SIGUSR1, halt_signal);
|
|
|
|
signal(SIGUSR2, reboot_signal);
|
|
|
|
signal(SIGINT, reboot_signal);
|
|
|
|
signal(SIGTERM, reboot_signal);
|
1999-10-05 21:54:54 +05:30
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
/* Turn off rebooting via CTL-ALT-DEL -- we get a
|
|
|
|
* SIGINT on CAD so we can shut things down gracefully... */
|
1999-11-02 05:29:44 +05:30
|
|
|
#ifndef DEBUG_INIT
|
1999-10-26 05:48:56 +05:30
|
|
|
reboot(RB_DISABLE_CAD);
|
1999-10-30 04:39:13 +05:30
|
|
|
#endif
|
1999-11-03 01:13:01 +05:30
|
|
|
|
1999-10-28 05:54:35 +05:30
|
|
|
/* Figure out where the default console should be */
|
|
|
|
console_init();
|
1999-10-05 21:54:54 +05:30
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
/* Close whatever files are open, and reset the console. */
|
|
|
|
close(0);
|
|
|
|
close(1);
|
|
|
|
close(2);
|
1999-10-30 04:39:13 +05:30
|
|
|
set_term(0);
|
1999-10-26 05:48:56 +05:30
|
|
|
setsid();
|
|
|
|
|
|
|
|
/* Make sure PATH is set to something sane */
|
1999-11-03 01:13:01 +05:30
|
|
|
putenv(PATH_DEFAULT);
|
1999-10-26 05:48:56 +05:30
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
/* Hello world */
|
1999-10-30 04:39:13 +05:30
|
|
|
#ifndef DEBUG_INIT
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE|LOG, hello_msg_format, BB_VER, BB_BT);
|
1999-10-30 04:39:13 +05:30
|
|
|
#else
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE|LOG, hello_msg_format, getpid(), BB_VER, BB_BT);
|
1999-10-30 04:39:13 +05:30
|
|
|
#endif
|
1999-10-26 05:48:56 +05:30
|
|
|
|
1999-10-28 05:54:35 +05:30
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
/* Mount /proc */
|
1999-11-05 09:53:05 +05:30
|
|
|
if (mount ("proc", "/proc", "proc", 0, 0) == 0) {
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE|LOG, "Mounting /proc: done.\n");
|
1999-11-05 09:53:05 +05:30
|
|
|
kernel_version = get_kernel_revision();
|
|
|
|
} else
|
1999-11-04 06:43:21 +05:30
|
|
|
message(CONSOLE|LOG, "Mounting /proc: failed!\n");
|
1999-10-19 05:57:50 +05:30
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
/* Make sure there is enough memory to do something useful. */
|
|
|
|
check_memory();
|
1999-10-05 21:54:54 +05:30
|
|
|
|
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
/* Make sure an init script exists before trying to run it */
|
1999-11-03 01:13:01 +05:30
|
|
|
if (run_rc == TRUE && stat(INITSCRIPT, &statbuf)==0) {
|
|
|
|
wait_for_enter = FALSE;
|
|
|
|
tty0_commands = init_commands;
|
1999-10-26 05:48:56 +05:30
|
|
|
}
|
|
|
|
|
1999-11-03 01:13:01 +05:30
|
|
|
|
1999-10-26 05:48:56 +05:30
|
|
|
/* Ok, now launch the rc script and/or prepare to
|
|
|
|
* start up some VTs if somebody hits enter...
|
|
|
|
*/
|
|
|
|
for (;;) {
|
1999-10-28 05:54:35 +05:30
|
|
|
pid_t wpid;
|
1999-10-26 05:48:56 +05:30
|
|
|
int status;
|
|
|
|
|
|
|
|
if (pid1 == 0 && tty0_commands) {
|
1999-11-02 05:29:44 +05:30
|
|
|
pid1 = run(tty0_commands, console, wait_for_enter);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
1999-11-07 13:08:08 +05:30
|
|
|
if (pid2 == 0 && tty1_commands && second_console) {
|
1999-11-03 22:22:50 +05:30
|
|
|
pid2 = run(tty1_commands, second_console, TRUE);
|
1999-10-26 05:48:56 +05:30
|
|
|
}
|
|
|
|
wpid = wait(&status);
|
1999-10-27 08:01:32 +05:30
|
|
|
if (wpid > 0 ) {
|
1999-11-04 06:43:21 +05:30
|
|
|
message(LOG, "pid %d exited, status=%x.\n", wpid, status);
|
1999-10-26 05:48:56 +05:30
|
|
|
}
|
1999-11-05 06:01:46 +05:30
|
|
|
/* Don't respawn init script if it exits */
|
1999-11-03 01:13:01 +05:30
|
|
|
if (wpid == pid1) {
|
1999-11-05 06:01:46 +05:30
|
|
|
if (run_rc == FALSE) {
|
|
|
|
pid1 = 0;
|
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
/* Turn this on to start a shell on the console if the init script exits.... */
|
|
|
|
else {
|
1999-11-03 01:13:01 +05:30
|
|
|
run_rc=FALSE;
|
|
|
|
wait_for_enter=TRUE;
|
|
|
|
tty0_commands=shell_commands;
|
|
|
|
}
|
1999-11-05 06:01:46 +05:30
|
|
|
#endif
|
1999-10-26 05:48:56 +05:30
|
|
|
}
|
|
|
|
if (wpid == pid2) {
|
|
|
|
pid2 = 0;
|
|
|
|
}
|
|
|
|
sleep(1);
|
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|