summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-06-15 07:50:32 +0000
committerRoland McGrath <roland@gnu.org>1999-06-15 07:50:32 +0000
commit06433310cffd4b24703438b7147b3782b1143ef5 (patch)
treebc2e1f5a40c939a92f446aab41500c2c40eb2c2a /init
parentb405639b4fe018402f3de16e9e5648e13568c86f (diff)
1999-06-15 Roland McGrath <roland@baalperazim.frob.com>
* init.c (booted): New variable. (open_console): Use that instead of system_state. (S_startup_essential_task): Likewise. (do_mach_notify_dead_name): Likewise. (launch_system): New function. (S_startup_essential_task): Call it. * init.c (global_argv): Make static. * init.c (startup_envz, startup_envz_len): New variables. (run, run_for_real): Use those for child environment. (main): Set them up from our ENVP argument. 1999-06-14 Roland McGrath <roland@baalperazim.frob.com> * init.c (main): Barf if run in a normal Hurd environment (not boot). * init.c (record_essential_task): Add missing return.
Diffstat (limited to 'init')
-rw-r--r--init/init.c77
1 files changed, 48 insertions, 29 deletions
diff --git a/init/init.c b/init/init.c
index 8324020d..a5ac3c7b 100644
--- a/init/init.c
+++ b/init/init.c
@@ -87,14 +87,7 @@ options[] =
char doc[] = "Start and maintain hurd core servers and system run state";
-/* Current state of the system. */
-enum
-{
- INITIAL,
- SINGLE,
- RUNCOM,
- MULTI,
-} system_state;
+int booted; /* Set when the core servers are up. */
/* This structure keeps track of each notified task. */
struct ntfy_task
@@ -154,12 +147,12 @@ mach_port_t default_ports[INIT_PORT_MAX];
mach_port_t default_dtable[3];
int default_ints[INIT_INT_MAX];
-char **global_argv;
-
-pid_t shell_pid; /* PID of single-user shell. */
-pid_t rc_pid; /* PID of rc script */
-
+static char **global_argv;
+static char *startup_envz;
+static size_t startup_envz_len;
+void launch_system (void);
+void process_signal (int signo);
/** Utility functions **/
@@ -353,6 +346,8 @@ record_essential_task (const char *name, task_t task)
if the task tries to get wedged on a fault. */
task_set_special_port (task, TASK_EXCEPTION_PORT, startup);
#endif
+
+ return 0;
}
@@ -390,7 +385,7 @@ run (const char *server, mach_port_t *ports, task_t *task)
}
errno = file_exec (file, *task, 0,
(char *)prog, strlen (prog) + 1, /* Args. */
- "", 1, /* No env. */
+ startup_envz, startup_envz_len,
default_dtable, MACH_MSG_TYPE_COPY_SEND, 3,
ports, MACH_MSG_TYPE_COPY_SEND, INIT_PORT_MAX,
default_ints, INIT_INT_MAX,
@@ -479,7 +474,7 @@ run_for_real (char *filename, char *args, int arglen, mach_port_t ctty,
progname = filename;
err = file_exec (file, task, 0,
args, arglen,
- NULL, 0, /* No env. */
+ startup_envz, startup_envz_len,
default_dtable, MACH_MSG_TYPE_COPY_SEND, 3,
default_ports, MACH_MSG_TYPE_COPY_SEND,
INIT_PORT_MAX,
@@ -550,9 +545,10 @@ main (int argc, char **argv, char **envp)
/* Parse the arguments */
argp_parse (&argp, argc, argv, 0, 0, 0);
- global_argv = argv;
+ if (getpid () > 0)
+ error (2, 0, "can only be run by bootstrap filesystem");
- system_state = INITIAL;
+ global_argv = argv;
/* Fetch a port to the bootstrap filesystem, the host priv and
master device ports, and the console. */
@@ -572,6 +568,9 @@ main (int argc, char **argv, char **envp)
crash_mach ();
setbuf (stdout, NULL);
+ err = argz_create (envp, &startup_envz, &startup_envz_len);
+ assert_perror (err);
+
/* At this point we can use assert to check for errors. */
err = mach_port_allocate (mach_task_self (),
MACH_PORT_RIGHT_RECEIVE, &startup);
@@ -771,7 +770,7 @@ open_console ()
struct stat st;
error_t err = 0;
- if (system_state != INITIAL)
+ if (booted)
{
term = file_name_lookup (termname, O_RDWR, 0);
return term;
@@ -1050,6 +1049,19 @@ frob_kernel_process (void)
/** Single and multi user transitions **/
+/* Current state of the system. */
+enum
+{
+ INITIAL,
+ SINGLE,
+ RUNCOM,
+ MULTI,
+} system_state;
+
+pid_t shell_pid; /* PID of single-user shell. */
+pid_t rc_pid; /* PID of rc script */
+
+
#include "ttys.h"
@@ -1136,6 +1148,18 @@ launch_multi_user ()
}
}
+void
+launch_system ()
+{
+ if (bootstrap_args & RB_SINGLE)
+ launch_single_user ();
+ else
+ {
+ if (process_rc_script ())
+ launch_single_user ();
+ }
+}
+
/* Kill all the outstanding processes with SIGNO. Return 1 if
there were no tasks left to kill. */
@@ -1329,7 +1353,6 @@ killing it and going to single user mode",
}
}
-
/** RPC servers **/
@@ -1409,7 +1432,7 @@ S_startup_essential_task (mach_port_t server,
mach_port_deallocate (mach_task_self (), credential);
- if (system_state == INITIAL)
+ if (!booted)
{
if (!strcmp (name, "auth"))
authinit = 1;
@@ -1427,14 +1450,10 @@ S_startup_essential_task (mach_port_t server,
init_stdarrays ();
frob_kernel_process ();
- if (bootstrap_args & RB_SINGLE)
- launch_single_user ();
- else
- {
- fail = process_rc_script ();
- if (fail)
- launch_single_user ();
- }
+ launch_system ();
+
+ booted = 1;
+
return MIG_NO_REPLY;
}
}
@@ -1497,7 +1516,7 @@ do_mach_notify_dead_name (mach_port_t notify,
return 0;
}
- if (system_state == INITIAL)
+ if (! booted)
{
/* The system has not come up yet, so essential tasks are not yet
registered. But the essential servers involved in the bootstrap