Home | History | Annotate | Line # | Download | only in init
init.c revision 1.59
      1  1.59    itojun /*	$NetBSD: init.c,v 1.59 2003/07/12 14:46:41 itojun Exp $	*/
      2  1.19       cgd 
      3   1.8       cgd /*-
      4  1.15        pk  * Copyright (c) 1991, 1993
      5  1.15        pk  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.8       cgd  * This code is derived from software contributed to Berkeley by
      8   1.8       cgd  * Donn Seeley at Berkeley Software Design, Inc.
      9   1.8       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     19   1.1       cgd  *    must display the following acknowledgement:
     20   1.8       cgd  *	This product includes software developed by the University of
     21   1.8       cgd  *	California, Berkeley and its contributors.
     22   1.8       cgd  * 4. Neither the name of the University nor the names of its contributors
     23   1.8       cgd  *    may be used to endorse or promote products derived from this software
     24   1.1       cgd  *    without specific prior written permission.
     25   1.1       cgd  *
     26   1.8       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29   1.8       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36   1.1       cgd  * SUCH DAMAGE.
     37   1.1       cgd  */
     38   1.3       cgd 
     39  1.26     perry #include <sys/cdefs.h>
     40   1.8       cgd #ifndef lint
     41  1.26     perry __COPYRIGHT("@(#) Copyright (c) 1991, 1993\n"
     42  1.26     perry "	The Regents of the University of California.  All rights reserved.\n");
     43   1.8       cgd #endif /* not lint */
     44   1.8       cgd 
     45   1.8       cgd #ifndef lint
     46  1.19       cgd #if 0
     47  1.25     perry static char sccsid[] = "@(#)init.c	8.2 (Berkeley) 4/28/95";
     48  1.19       cgd #else
     49  1.59    itojun __RCSID("$NetBSD: init.c,v 1.59 2003/07/12 14:46:41 itojun Exp $");
     50  1.19       cgd #endif
     51   1.8       cgd #endif /* not lint */
     52   1.8       cgd 
     53   1.8       cgd #include <sys/param.h>
     54   1.8       cgd #include <sys/sysctl.h>
     55   1.1       cgd #include <sys/wait.h>
     56  1.28  christos #include <sys/mman.h>
     57  1.28  christos #include <sys/stat.h>
     58  1.28  christos #include <sys/mount.h>
     59  1.28  christos #include <sys/sysctl.h>
     60  1.28  christos #include <machine/cpu.h>
     61   1.8       cgd 
     62   1.8       cgd #include <db.h>
     63   1.8       cgd #include <errno.h>
     64   1.8       cgd #include <fcntl.h>
     65   1.8       cgd #include <signal.h>
     66   1.8       cgd #include <stdio.h>
     67   1.8       cgd #include <stdlib.h>
     68   1.8       cgd #include <string.h>
     69   1.8       cgd #include <syslog.h>
     70   1.8       cgd #include <time.h>
     71   1.1       cgd #include <ttyent.h>
     72   1.1       cgd #include <unistd.h>
     73  1.22       jtc #include <util.h>
     74  1.28  christos #include <paths.h>
     75  1.28  christos #include <err.h>
     76   1.1       cgd 
     77   1.8       cgd #include <stdarg.h>
     78   1.8       cgd 
     79   1.8       cgd #ifdef SECURE
     80   1.5       cgd #include <pwd.h>
     81   1.5       cgd #endif
     82   1.5       cgd 
     83   1.8       cgd #include "pathnames.h"
     84   1.8       cgd 
     85   1.8       cgd /*
     86   1.8       cgd  * Sleep times; used to prevent thrashing.
     87   1.8       cgd  */
     88   1.8       cgd #define	GETTY_SPACING		 5	/* N secs minimum getty spacing */
     89   1.8       cgd #define	GETTY_SLEEP		30	/* sleep N secs after spacing problem */
     90   1.8       cgd #define	WINDOW_WAIT		 3	/* wait N secs after starting window */
     91   1.8       cgd #define	STALL_TIMEOUT		30	/* wait N secs after warning */
     92   1.8       cgd #define	DEATH_WATCH		10	/* wait N secs for procs to die */
     93   1.8       cgd 
     94  1.56     lukem 
     95  1.56     lukem #if defined(RESCUEDIR)
     96  1.56     lukem #define	INIT_BSHELL	RESCUEDIR "/sh"
     97  1.56     lukem #define	INIT_MOUNT_MFS	RESCUEDIR "/mount_mfs"
     98  1.56     lukem #define	INIT_PATH	RESCUEDIR ":" _PATH_STDPATH
     99  1.56     lukem #else
    100  1.56     lukem #define	INIT_BSHELL	_PATH_BSHELL
    101  1.56     lukem #define	INIT_MOUNT_MFS	"/sbin/mount_mfs"
    102  1.56     lukem #define	INIT_PATH	_PATH_STDPATH
    103  1.52     lukem #endif
    104  1.52     lukem 
    105  1.39       wiz int main(int, char *[]);
    106  1.27     perry 
    107  1.39       wiz void handle(sig_t, ...);
    108  1.39       wiz void delset(sigset_t *, ...);
    109   1.8       cgd 
    110  1.39       wiz void stall(const char *, ...)
    111  1.28  christos     __attribute__((__format__(__printf__,1,2)));
    112  1.39       wiz void warning(const char *, ...)
    113  1.28  christos     __attribute__((__format__(__printf__,1,2)));
    114  1.39       wiz void emergency(const char *, ...)
    115  1.28  christos     __attribute__((__format__(__printf__,1,2)));
    116  1.39       wiz void disaster(int);
    117  1.39       wiz void badsys(int);
    118   1.8       cgd 
    119   1.8       cgd /*
    120   1.8       cgd  * We really need a recursive typedef...
    121   1.8       cgd  * The following at least guarantees that the return type of (*state_t)()
    122   1.8       cgd  * is sufficiently wide to hold a function pointer.
    123   1.8       cgd  */
    124  1.39       wiz typedef long (*state_func_t)(void);
    125  1.39       wiz typedef state_func_t (*state_t)(void);
    126   1.8       cgd 
    127  1.39       wiz state_func_t single_user(void);
    128  1.39       wiz state_func_t runcom(void);
    129  1.39       wiz state_func_t read_ttys(void);
    130  1.39       wiz state_func_t multi_user(void);
    131  1.39       wiz state_func_t clean_ttys(void);
    132  1.39       wiz state_func_t catatonia(void);
    133  1.39       wiz state_func_t death(void);
    134   1.8       cgd 
    135   1.8       cgd enum { AUTOBOOT, FASTBOOT } runcom_mode = AUTOBOOT;
    136   1.8       cgd 
    137  1.39       wiz void transition(state_t);
    138  1.13       cgd #ifndef LETS_GET_SMALL
    139   1.8       cgd state_t requested_transition = runcom;
    140  1.13       cgd #else /* LETS_GET_SMALL */
    141  1.13       cgd state_t requested_transition = single_user;
    142  1.13       cgd #endif /* LETS_GET_SMALL */
    143   1.8       cgd 
    144  1.40       wiz void setctty(const char *);
    145   1.8       cgd 
    146   1.8       cgd typedef struct init_session {
    147   1.8       cgd 	int	se_index;		/* index of entry in ttys file */
    148   1.8       cgd 	pid_t	se_process;		/* controlling process */
    149   1.8       cgd 	time_t	se_started;		/* used to avoid thrashing */
    150   1.8       cgd 	int	se_flags;		/* status of session */
    151   1.8       cgd #define	SE_SHUTDOWN	0x1		/* session won't be restarted */
    152  1.21   mycroft #define	SE_PRESENT	0x2		/* session is in /etc/ttys */
    153   1.8       cgd 	char	*se_device;		/* filename of port */
    154   1.8       cgd 	char	*se_getty;		/* what to run on that port */
    155   1.8       cgd 	char	**se_getty_argv;	/* pre-parsed argument array */
    156   1.8       cgd 	char	*se_window;		/* window system (started only once) */
    157   1.8       cgd 	char	**se_window_argv;	/* pre-parsed argument array */
    158   1.8       cgd 	struct	init_session *se_prev;
    159   1.8       cgd 	struct	init_session *se_next;
    160   1.8       cgd } session_t;
    161   1.8       cgd 
    162  1.39       wiz void free_session(session_t *);
    163  1.39       wiz session_t *new_session(session_t *, int, struct ttyent *);
    164   1.8       cgd session_t *sessions;
    165   1.8       cgd 
    166  1.39       wiz char **construct_argv(char *);
    167  1.39       wiz void start_window_system(session_t *);
    168  1.50  christos void collect_child(pid_t, int);
    169  1.39       wiz pid_t start_getty(session_t *);
    170  1.39       wiz void transition_handler(int);
    171  1.39       wiz void alrm_handler(int);
    172  1.39       wiz void setsecuritylevel(int);
    173  1.39       wiz int getsecuritylevel(void);
    174  1.39       wiz int setupargv(session_t *, struct ttyent *);
    175   1.8       cgd int clang;
    176   1.8       cgd 
    177  1.50  christos void clear_session_logs(session_t *, int);
    178   1.8       cgd 
    179  1.39       wiz int start_session_db(void);
    180  1.39       wiz void add_session(session_t *);
    181  1.39       wiz void del_session(session_t *);
    182  1.39       wiz session_t *find_session(pid_t);
    183   1.8       cgd DB *session_db;
    184   1.8       cgd 
    185  1.45       abs #ifdef MFS_DEV_IF_NO_CONSOLE
    186  1.58  christos 
    187  1.58  christos struct mappedfile {
    188  1.58  christos 	const char *path;
    189  1.58  christos 	void	*buf;
    190  1.58  christos 	size_t	len;
    191  1.58  christos } mfile[] = {
    192  1.58  christos 	{ "/dev/MAKEDEV",	NULL,	0 },
    193  1.58  christos 	{ "/dev/MAKEDEV.local",	NULL,	0 }
    194  1.58  christos };
    195  1.58  christos 
    196  1.45       abs static int mfs_dev(void);
    197  1.58  christos static void mapfile(struct mappedfile *);
    198  1.58  christos static void writefile(struct mappedfile *);
    199  1.58  christos 
    200  1.28  christos #endif
    201  1.28  christos 
    202   1.8       cgd /*
    203   1.8       cgd  * The mother of all processes.
    204   1.8       cgd  */
    205   1.8       cgd int
    206  1.43     lukem main(int argc, char **argv)
    207   1.8       cgd {
    208   1.8       cgd 	struct sigaction sa;
    209   1.8       cgd 	sigset_t mask;
    210  1.37     soren #ifndef LETS_GET_SMALL
    211  1.37     soren 	int c;
    212   1.8       cgd 
    213   1.8       cgd 	/* Dispose of random users. */
    214   1.8       cgd 	if (getuid() != 0) {
    215  1.28  christos 		errno = EPERM;
    216  1.35  drochner 		err(1, NULL);
    217   1.8       cgd 	}
    218   1.8       cgd 
    219   1.8       cgd 	/* System V users like to reexec init. */
    220  1.28  christos 	if (getpid() != 1)
    221  1.28  christos 		errx(1, "already running");
    222  1.28  christos #endif
    223   1.8       cgd 
    224   1.8       cgd 	/*
    225   1.8       cgd 	 * Create an initial session.
    226   1.8       cgd 	 */
    227   1.8       cgd 	if (setsid() < 0)
    228  1.28  christos 		warn("initial setsid() failed");
    229  1.12       cgd 
    230  1.12       cgd 	/*
    231  1.12       cgd 	 * Establish an initial user so that programs running
    232  1.12       cgd 	 * single user do not freak out and die (like passwd).
    233  1.12       cgd 	 */
    234  1.12       cgd 	if (setlogin("root") < 0)
    235  1.28  christos 		warn("setlogin() failed");
    236  1.28  christos 
    237  1.28  christos 
    238  1.45       abs #ifdef MFS_DEV_IF_NO_CONSOLE
    239  1.45       abs 	if (mfs_dev() == -1)
    240  1.45       abs 		requested_transition = single_user;
    241  1.28  christos #endif
    242  1.28  christos 
    243  1.28  christos #ifndef LETS_GET_SMALL
    244  1.28  christos 	/*
    245  1.28  christos 	 * Note that this does NOT open a file...
    246  1.28  christos 	 * Does 'init' deserve its own facility number?
    247  1.28  christos 	 */
    248  1.42     lukem 	openlog("init", LOG_CONS, LOG_AUTH);
    249  1.28  christos #endif /* LETS_GET_SMALL */
    250  1.28  christos 
    251   1.8       cgd 
    252  1.13       cgd #ifndef LETS_GET_SMALL
    253   1.8       cgd 	/*
    254   1.8       cgd 	 * This code assumes that we always get arguments through flags,
    255   1.8       cgd 	 * never through bits set in some random machine register.
    256   1.8       cgd 	 */
    257   1.8       cgd 	while ((c = getopt(argc, argv, "sf")) != -1)
    258   1.8       cgd 		switch (c) {
    259   1.8       cgd 		case 's':
    260   1.8       cgd 			requested_transition = single_user;
    261   1.8       cgd 			break;
    262   1.8       cgd 		case 'f':
    263   1.8       cgd 			runcom_mode = FASTBOOT;
    264   1.8       cgd 			break;
    265   1.8       cgd 		default:
    266   1.8       cgd 			warning("unrecognized flag '-%c'", c);
    267   1.8       cgd 			break;
    268   1.8       cgd 		}
    269   1.8       cgd 
    270   1.8       cgd 	if (optind != argc)
    271   1.8       cgd 		warning("ignoring excess arguments");
    272  1.13       cgd #else /* LETS_GET_SMALL */
    273  1.13       cgd 	requested_transition = single_user;
    274  1.13       cgd #endif /* LETS_GET_SMALL */
    275   1.8       cgd 
    276   1.8       cgd 	/*
    277   1.8       cgd 	 * We catch or block signals rather than ignore them,
    278   1.8       cgd 	 * so that they get reset on exec.
    279   1.8       cgd 	 */
    280   1.8       cgd 	handle(badsys, SIGSYS, 0);
    281   1.8       cgd 	handle(disaster, SIGABRT, SIGFPE, SIGILL, SIGSEGV,
    282   1.8       cgd 	       SIGBUS, SIGXCPU, SIGXFSZ, 0);
    283   1.8       cgd 	handle(transition_handler, SIGHUP, SIGTERM, SIGTSTP, 0);
    284   1.8       cgd 	handle(alrm_handler, SIGALRM, 0);
    285  1.47  christos 	(void)sigfillset(&mask);
    286   1.8       cgd 	delset(&mask, SIGABRT, SIGFPE, SIGILL, SIGSEGV, SIGBUS, SIGSYS,
    287  1.47  christos 	    SIGXCPU, SIGXFSZ, SIGHUP, SIGTERM, SIGTSTP, SIGALRM, 0);
    288  1.47  christos 	(void)sigprocmask(SIG_SETMASK, &mask, NULL);
    289  1.47  christos 	(void)sigemptyset(&sa.sa_mask);
    290   1.8       cgd 	sa.sa_flags = 0;
    291   1.8       cgd 	sa.sa_handler = SIG_IGN;
    292  1.47  christos 	(void)sigaction(SIGTTIN, &sa, NULL);
    293  1.47  christos 	(void)sigaction(SIGTTOU, &sa, NULL);
    294   1.8       cgd 
    295   1.8       cgd 	/*
    296   1.8       cgd 	 * Paranoia.
    297   1.8       cgd 	 */
    298  1.47  christos 	(void)close(0);
    299  1.47  christos 	(void)close(1);
    300  1.47  christos 	(void)close(2);
    301   1.8       cgd 
    302   1.8       cgd 	/*
    303   1.8       cgd 	 * Start the state machine.
    304   1.8       cgd 	 */
    305   1.8       cgd 	transition(requested_transition);
    306   1.8       cgd 
    307   1.8       cgd 	/*
    308   1.8       cgd 	 * Should never reach here.
    309   1.8       cgd 	 */
    310   1.8       cgd 	return 1;
    311   1.8       cgd }
    312   1.8       cgd 
    313   1.8       cgd /*
    314   1.8       cgd  * Associate a function with a signal handler.
    315   1.8       cgd  */
    316   1.8       cgd void
    317   1.8       cgd handle(sig_t handler, ...)
    318   1.8       cgd {
    319   1.8       cgd 	int sig;
    320   1.8       cgd 	struct sigaction sa;
    321  1.33   thorpej 	sigset_t mask_everything;
    322   1.8       cgd 	va_list ap;
    323   1.8       cgd 
    324   1.8       cgd 	va_start(ap, handler);
    325   1.7       cgd 
    326   1.8       cgd 	sa.sa_handler = handler;
    327  1.47  christos 	(void)sigfillset(&mask_everything);
    328   1.1       cgd 
    329  1.27     perry 	while ((sig = va_arg(ap, int)) != 0) {
    330   1.8       cgd 		sa.sa_mask = mask_everything;
    331   1.8       cgd 		/* XXX SA_RESTART? */
    332   1.8       cgd 		sa.sa_flags = sig == SIGCHLD ? SA_NOCLDSTOP : 0;
    333  1.47  christos 		(void)sigaction(sig, &sa, NULL);
    334   1.8       cgd 	}
    335   1.8       cgd 	va_end(ap);
    336   1.8       cgd }
    337   1.1       cgd 
    338   1.8       cgd /*
    339   1.8       cgd  * Delete a set of signals from a mask.
    340   1.8       cgd  */
    341   1.8       cgd void
    342   1.8       cgd delset(sigset_t *maskp, ...)
    343   1.8       cgd {
    344   1.8       cgd 	int sig;
    345   1.8       cgd 	va_list ap;
    346   1.8       cgd 
    347   1.8       cgd 	va_start(ap, maskp);
    348   1.1       cgd 
    349  1.27     perry 	while ((sig = va_arg(ap, int)) != 0)
    350  1.47  christos 		(void)sigdelset(maskp, sig);
    351   1.8       cgd 	va_end(ap);
    352   1.8       cgd }
    353   1.8       cgd 
    354   1.8       cgd /*
    355   1.8       cgd  * Log a message and sleep for a while (to give someone an opportunity
    356   1.8       cgd  * to read it and to save log or hardcopy output if the problem is chronic).
    357   1.8       cgd  * NB: should send a message to the session logger to avoid blocking.
    358   1.8       cgd  */
    359   1.8       cgd void
    360  1.28  christos stall(const char *message, ...)
    361   1.8       cgd {
    362   1.8       cgd 	va_list ap;
    363   1.8       cgd 
    364   1.8       cgd 	va_start(ap, message);
    365   1.8       cgd 	vsyslog(LOG_ALERT, message, ap);
    366   1.8       cgd 	va_end(ap);
    367  1.24   mycroft 	closelog();
    368  1.47  christos 	(void)sleep(STALL_TIMEOUT);
    369   1.8       cgd }
    370   1.8       cgd 
    371   1.8       cgd /*
    372   1.8       cgd  * Like stall(), but doesn't sleep.
    373   1.8       cgd  * If cpp had variadic macros, the two functions could be #defines for another.
    374   1.8       cgd  * NB: should send a message to the session logger to avoid blocking.
    375   1.8       cgd  */
    376   1.8       cgd void
    377  1.28  christos warning(const char *message, ...)
    378   1.8       cgd {
    379   1.8       cgd 	va_list ap;
    380   1.8       cgd 
    381   1.8       cgd 	va_start(ap, message);
    382   1.8       cgd 	vsyslog(LOG_ALERT, message, ap);
    383   1.8       cgd 	va_end(ap);
    384  1.24   mycroft 	closelog();
    385   1.8       cgd }
    386   1.1       cgd 
    387   1.8       cgd /*
    388   1.8       cgd  * Log an emergency message.
    389   1.8       cgd  * NB: should send a message to the session logger to avoid blocking.
    390   1.8       cgd  */
    391   1.8       cgd void
    392  1.28  christos emergency(const char *message, ...)
    393   1.8       cgd {
    394   1.8       cgd 	va_list ap;
    395   1.8       cgd 
    396   1.8       cgd 	va_start(ap, message);
    397   1.8       cgd 	vsyslog(LOG_EMERG, message, ap);
    398   1.8       cgd 	va_end(ap);
    399  1.24   mycroft 	closelog();
    400   1.8       cgd }
    401   1.1       cgd 
    402   1.8       cgd /*
    403   1.8       cgd  * Catch a SIGSYS signal.
    404   1.8       cgd  *
    405   1.8       cgd  * These may arise if a system does not support sysctl.
    406   1.8       cgd  * We tolerate up to 25 of these, then throw in the towel.
    407   1.8       cgd  */
    408   1.1       cgd void
    409  1.39       wiz badsys(int sig)
    410   1.1       cgd {
    411   1.8       cgd 	static int badcount = 0;
    412   1.8       cgd 
    413   1.8       cgd 	if (badcount++ < 25)
    414   1.8       cgd 		return;
    415   1.8       cgd 	disaster(sig);
    416   1.1       cgd }
    417   1.1       cgd 
    418   1.8       cgd /*
    419   1.8       cgd  * Catch an unexpected signal.
    420   1.8       cgd  */
    421   1.1       cgd void
    422  1.39       wiz disaster(int sig)
    423   1.8       cgd {
    424  1.43     lukem 
    425  1.20       jtc 	emergency("fatal signal: %s", strsignal(sig));
    426  1.47  christos 	(void)sleep(STALL_TIMEOUT);
    427   1.8       cgd 	_exit(sig);		/* reboot */
    428   1.8       cgd }
    429   1.8       cgd 
    430   1.8       cgd /*
    431   1.8       cgd  * Get the security level of the kernel.
    432   1.8       cgd  */
    433   1.8       cgd int
    434  1.39       wiz getsecuritylevel(void)
    435   1.1       cgd {
    436   1.8       cgd #ifdef KERN_SECURELVL
    437   1.8       cgd 	int name[2], curlevel;
    438   1.8       cgd 	size_t len;
    439   1.8       cgd 
    440   1.8       cgd 	name[0] = CTL_KERN;
    441   1.8       cgd 	name[1] = KERN_SECURELVL;
    442   1.8       cgd 	len = sizeof curlevel;
    443   1.8       cgd 	if (sysctl(name, 2, &curlevel, &len, NULL, 0) == -1) {
    444  1.47  christos 		emergency("cannot get kernel security level: %m");
    445   1.8       cgd 		return (-1);
    446   1.8       cgd 	}
    447   1.8       cgd 	return (curlevel);
    448   1.8       cgd #else
    449   1.8       cgd 	return (-1);
    450   1.8       cgd #endif
    451   1.1       cgd }
    452   1.1       cgd 
    453   1.8       cgd /*
    454   1.8       cgd  * Set the security level of the kernel.
    455   1.8       cgd  */
    456   1.1       cgd void
    457  1.39       wiz setsecuritylevel(int newlevel)
    458   1.1       cgd {
    459   1.8       cgd #ifdef KERN_SECURELVL
    460   1.8       cgd 	int name[2], curlevel;
    461   1.1       cgd 
    462   1.8       cgd 	curlevel = getsecuritylevel();
    463   1.8       cgd 	if (newlevel == curlevel)
    464   1.8       cgd 		return;
    465   1.8       cgd 	name[0] = CTL_KERN;
    466   1.8       cgd 	name[1] = KERN_SECURELVL;
    467   1.8       cgd 	if (sysctl(name, 2, NULL, NULL, &newlevel, sizeof newlevel) == -1) {
    468  1.47  christos 		emergency( "cannot change kernel security level from"
    469  1.47  christos 		    " %d to %d: %m", curlevel, newlevel);
    470   1.8       cgd 		return;
    471   1.1       cgd 	}
    472   1.8       cgd #ifdef SECURE
    473   1.8       cgd 	warning("kernel security level changed from %d to %d",
    474   1.8       cgd 	    curlevel, newlevel);
    475   1.8       cgd #endif
    476   1.8       cgd #endif
    477   1.1       cgd }
    478   1.1       cgd 
    479   1.8       cgd /*
    480   1.8       cgd  * Change states in the finite state machine.
    481   1.8       cgd  * The initial state is passed as an argument.
    482   1.8       cgd  */
    483   1.1       cgd void
    484  1.39       wiz transition(state_t s)
    485   1.1       cgd {
    486  1.43     lukem 
    487  1.55  christos 	if (s == NULL)
    488  1.55  christos 		return;
    489   1.8       cgd 	for (;;)
    490  1.47  christos 		s = (state_t)(*s)();
    491   1.1       cgd }
    492   1.1       cgd 
    493   1.8       cgd /*
    494   1.8       cgd  * Close out the accounting files for a login session.
    495   1.8       cgd  * NB: should send a message to the session logger to avoid blocking.
    496   1.8       cgd  */
    497   1.8       cgd void
    498  1.50  christos clear_session_logs(session_t *sp, int status)
    499   1.8       cgd {
    500   1.8       cgd 	char *line = sp->se_device + sizeof(_PATH_DEV) - 1;
    501  1.55  christos 
    502  1.50  christos #ifdef SUPPORT_UTMPX
    503  1.51  christos 	if (logoutx(line, status, DEAD_PROCESS))
    504  1.50  christos 		logwtmpx(line, "", "", status, DEAD_PROCESS);
    505  1.50  christos #endif
    506  1.50  christos #ifdef SUPPORT_UTMP
    507   1.8       cgd 	if (logout(line))
    508   1.8       cgd 		logwtmp(line, "", "");
    509  1.50  christos #endif
    510   1.8       cgd }
    511   1.1       cgd 
    512   1.8       cgd /*
    513   1.8       cgd  * Start a session and allocate a controlling terminal.
    514   1.8       cgd  * Only called by children of init after forking.
    515   1.8       cgd  */
    516   1.8       cgd void
    517  1.40       wiz setctty(const char *name)
    518   1.1       cgd {
    519   1.8       cgd 	int fd;
    520   1.1       cgd 
    521   1.8       cgd 	(void) revoke(name);
    522  1.53    simonb 	sleep(2);			/* leave DTR low */
    523   1.8       cgd 	if ((fd = open(name, O_RDWR)) == -1) {
    524   1.8       cgd 		stall("can't open %s: %m", name);
    525   1.8       cgd 		_exit(1);
    526   1.7       cgd 	}
    527   1.8       cgd 	if (login_tty(fd) == -1) {
    528   1.8       cgd 		stall("can't get %s for controlling terminal: %m", name);
    529   1.8       cgd 		_exit(1);
    530   1.8       cgd 	}
    531   1.8       cgd }
    532   1.8       cgd 
    533   1.8       cgd /*
    534   1.8       cgd  * Bring the system up single user.
    535   1.8       cgd  */
    536   1.8       cgd state_func_t
    537  1.39       wiz single_user(void)
    538   1.8       cgd {
    539   1.8       cgd 	pid_t pid, wpid;
    540   1.8       cgd 	int status;
    541  1.34       tls 	int from_securitylevel;
    542   1.8       cgd 	sigset_t mask;
    543  1.55  christos 	struct sigaction sa, satstp, sahup;
    544  1.31     perry #ifdef ALTSHELL
    545  1.56     lukem 	const char *shell = INIT_BSHELL;
    546  1.31     perry #endif
    547   1.8       cgd 	char *argv[2];
    548   1.8       cgd #ifdef SECURE
    549   1.8       cgd 	struct ttyent *typ;
    550  1.10       cgd 	struct passwd *pp;
    551   1.8       cgd 	char *clear, *password;
    552   1.7       cgd #endif
    553  1.26     perry #ifdef ALTSHELL
    554  1.26     perry 	char altshell[128];
    555  1.26     perry #endif /* ALTSHELL */
    556   1.7       cgd 
    557   1.8       cgd 	/*
    558   1.8       cgd 	 * If the kernel is in secure mode, downgrade it to insecure mode.
    559   1.8       cgd 	 */
    560  1.34       tls 	from_securitylevel = getsecuritylevel();
    561  1.34       tls 	if (from_securitylevel > 0)
    562   1.8       cgd 		setsecuritylevel(0);
    563   1.8       cgd 
    564  1.55  christos 	(void)sigemptyset(&sa.sa_mask);
    565  1.55  christos 	sa.sa_flags = 0;
    566  1.55  christos 	sa.sa_handler = SIG_IGN;
    567  1.55  christos 	(void)sigaction(SIGTSTP, &sa, &satstp);
    568  1.55  christos 	(void)sigaction(SIGHUP, &sa, &sahup);
    569   1.8       cgd 	if ((pid = fork()) == 0) {
    570   1.8       cgd 		/*
    571   1.8       cgd 		 * Start the single user session.
    572   1.8       cgd 		 */
    573   1.8       cgd 		setctty(_PATH_CONSOLE);
    574   1.8       cgd 
    575   1.8       cgd #ifdef SECURE
    576   1.8       cgd 		/*
    577   1.8       cgd 		 * Check the root password.
    578   1.8       cgd 		 * We don't care if the console is 'on' by default;
    579   1.8       cgd 		 * it's the only tty that can be 'off' and 'secure'.
    580   1.8       cgd 		 */
    581  1.10       cgd 		typ = getttynam("console");
    582  1.10       cgd 		pp = getpwnam("root");
    583  1.34       tls 		if (typ && (from_securitylevel >=2 || (typ->ty_status
    584  1.34       tls 		    & TTY_SECURE) == 0) && pp && *pp->pw_passwd != '\0') {
    585  1.47  christos 			(void)fprintf(stderr,
    586  1.26     perry 			    "Enter root password, or ^D to go multi-user\n");
    587   1.8       cgd 			for (;;) {
    588   1.8       cgd 				clear = getpass("Password:");
    589   1.8       cgd 				if (clear == 0 || *clear == '\0')
    590   1.8       cgd 					_exit(0);
    591   1.8       cgd 				password = crypt(clear, pp->pw_passwd);
    592  1.47  christos 				(void)memset(clear, 0, _PASSWORD_LEN);
    593   1.8       cgd 				if (strcmp(password, pp->pw_passwd) == 0)
    594   1.8       cgd 					break;
    595   1.8       cgd 				warning("single-user login failed\n");
    596   1.1       cgd 			}
    597   1.8       cgd 		}
    598   1.8       cgd 		endttyent();
    599  1.10       cgd 		endpwent();
    600   1.9       cgd #endif /* SECURE */
    601   1.1       cgd 
    602  1.26     perry #ifdef ALTSHELL
    603  1.47  christos 		(void)fprintf(stderr,
    604  1.52     lukem 		    "Enter pathname of shell or RETURN for %s: ", shell);
    605  1.38       wiz 		if (fgets(altshell, sizeof(altshell), stdin) == NULL) {
    606  1.38       wiz 			altshell[0] = '\0';
    607  1.38       wiz 		} else {
    608  1.38       wiz 			/* nuke \n */
    609  1.38       wiz 			char *p;
    610  1.38       wiz 
    611  1.41       wiz 			if ((p = strchr(altshell, '\n')) != NULL)
    612  1.38       wiz 				*p = '\0';
    613  1.38       wiz 		}
    614  1.26     perry 
    615  1.26     perry 		if (altshell[0])
    616  1.26     perry 			shell = altshell;
    617  1.26     perry #endif /* ALTSHELL */
    618   1.8       cgd 
    619   1.8       cgd 		/*
    620   1.8       cgd 		 * Unblock signals.
    621   1.8       cgd 		 * We catch all the interesting ones,
    622   1.8       cgd 		 * and those are reset to SIG_DFL on exec.
    623   1.8       cgd 		 */
    624  1.47  christos 		(void)sigemptyset(&mask);
    625  1.47  christos 		(void)sigprocmask(SIG_SETMASK, &mask, NULL);
    626   1.8       cgd 
    627   1.8       cgd 		/*
    628   1.8       cgd 		 * Fire off a shell.
    629   1.8       cgd 		 * If the default one doesn't work, try the Bourne shell.
    630   1.8       cgd 		 */
    631   1.8       cgd 		argv[0] = "-sh";
    632   1.8       cgd 		argv[1] = 0;
    633  1.56     lukem 		setenv("PATH", INIT_PATH, 1);
    634  1.26     perry #ifdef ALTSHELL
    635  1.26     perry 		if (altshell[0])
    636  1.26     perry 			argv[0] = altshell;
    637  1.47  christos 		(void)execv(shell, argv);
    638   1.8       cgd 		emergency("can't exec %s for single user: %m", shell);
    639  1.26     perry 		argv[0] = "-sh";
    640  1.26     perry #endif /* ALTSHELL */
    641  1.56     lukem 		(void)execv(INIT_BSHELL, argv);
    642  1.56     lukem 		emergency("can't exec %s for single user: %m", INIT_BSHELL);
    643  1.47  christos 		(void)sleep(STALL_TIMEOUT);
    644   1.8       cgd 		_exit(1);
    645   1.8       cgd 	}
    646   1.8       cgd 
    647   1.8       cgd 	if (pid == -1) {
    648   1.8       cgd 		/*
    649   1.8       cgd 		 * We are seriously hosed.  Do our best.
    650   1.8       cgd 		 */
    651   1.8       cgd 		emergency("can't fork single-user shell, trying again");
    652  1.47  christos 		while (waitpid(-1, NULL, WNOHANG) > 0)
    653   1.8       cgd 			continue;
    654  1.55  christos 		(void)sigaction(SIGTSTP, &satstp, NULL);
    655  1.55  christos 		(void)sigaction(SIGHUP, &sahup, NULL);
    656   1.8       cgd 		return (state_func_t) single_user;
    657   1.1       cgd 	}
    658   1.8       cgd 
    659   1.8       cgd 	requested_transition = 0;
    660   1.8       cgd 	do {
    661   1.8       cgd 		if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
    662  1.50  christos 			collect_child(wpid, status);
    663   1.8       cgd 		if (wpid == -1) {
    664   1.8       cgd 			if (errno == EINTR)
    665   1.8       cgd 				continue;
    666  1.47  christos 			warning("wait for single-user shell failed: %m; "
    667  1.47  christos 			    "restarting");
    668  1.47  christos 			return (state_func_t)single_user;
    669   1.8       cgd 		}
    670   1.8       cgd 		if (wpid == pid && WIFSTOPPED(status)) {
    671   1.8       cgd 			warning("init: shell stopped, restarting\n");
    672   1.8       cgd 			kill(pid, SIGCONT);
    673   1.8       cgd 			wpid = -1;
    674   1.8       cgd 		}
    675   1.8       cgd 	} while (wpid != pid && !requested_transition);
    676   1.1       cgd 
    677  1.55  christos 	if (requested_transition) {
    678  1.55  christos 		(void)sigaction(SIGTSTP, &satstp, NULL);
    679  1.55  christos 		(void)sigaction(SIGHUP, &sahup, NULL);
    680  1.47  christos 		return (state_func_t)requested_transition;
    681  1.55  christos 	}
    682   1.1       cgd 
    683  1.49   mycroft 	if (WIFSIGNALED(status)) {
    684  1.49   mycroft 		if (WTERMSIG(status) == SIGKILL) {
    685  1.49   mycroft 			/* executed /sbin/reboot; wait for the end quietly */
    686  1.49   mycroft 			sigset_t s;
    687  1.49   mycroft 
    688  1.49   mycroft 			(void)sigfillset(&s);
    689  1.49   mycroft 			for (;;)
    690  1.49   mycroft 				(void)sigsuspend(&s);
    691   1.8       cgd 		} else {
    692   1.8       cgd 			warning("single user shell terminated, restarting");
    693  1.55  christos 			(void)sigaction(SIGTSTP, &satstp, NULL);
    694  1.55  christos 			(void)sigaction(SIGHUP, &sahup, NULL);
    695   1.8       cgd 			return (state_func_t) single_user;
    696   1.1       cgd 		}
    697   1.8       cgd 	}
    698   1.8       cgd 
    699   1.8       cgd 	runcom_mode = FASTBOOT;
    700  1.55  christos 	(void)sigaction(SIGTSTP, &satstp, NULL);
    701  1.55  christos 	(void)sigaction(SIGHUP, &sahup, NULL);
    702  1.13       cgd #ifndef LETS_GET_SMALL
    703   1.8       cgd 	return (state_func_t) runcom;
    704  1.13       cgd #else /* LETS_GET_SMALL */
    705  1.13       cgd 	return (state_func_t) single_user;
    706  1.13       cgd #endif /* LETS_GET_SMALL */
    707   1.8       cgd }
    708   1.8       cgd 
    709  1.13       cgd #ifndef LETS_GET_SMALL
    710   1.8       cgd /*
    711   1.8       cgd  * Run the system startup script.
    712   1.8       cgd  */
    713   1.8       cgd state_func_t
    714  1.39       wiz runcom(void)
    715   1.8       cgd {
    716   1.8       cgd 	pid_t pid, wpid;
    717   1.8       cgd 	int status;
    718   1.8       cgd 	char *argv[4];
    719   1.8       cgd 	struct sigaction sa;
    720   1.8       cgd 
    721  1.47  christos 	switch ((pid = fork())) {
    722  1.47  christos 	case 0:
    723  1.47  christos 		(void)sigemptyset(&sa.sa_mask);
    724   1.8       cgd 		sa.sa_flags = 0;
    725   1.8       cgd 		sa.sa_handler = SIG_IGN;
    726  1.47  christos 		(void)sigaction(SIGTSTP, &sa, NULL);
    727  1.47  christos 		(void)sigaction(SIGHUP, &sa, NULL);
    728   1.8       cgd 
    729   1.8       cgd 		setctty(_PATH_CONSOLE);
    730   1.8       cgd 
    731   1.8       cgd 		argv[0] = "sh";
    732   1.8       cgd 		argv[1] = _PATH_RUNCOM;
    733   1.8       cgd 		argv[2] = runcom_mode == AUTOBOOT ? "autoboot" : 0;
    734   1.8       cgd 		argv[3] = 0;
    735   1.8       cgd 
    736  1.47  christos 		(void)sigprocmask(SIG_SETMASK, &sa.sa_mask, NULL);
    737   1.8       cgd 
    738  1.56     lukem 		(void)execv(INIT_BSHELL, argv);
    739  1.56     lukem 		stall("can't exec %s for %s: %m", INIT_BSHELL, _PATH_RUNCOM);
    740   1.8       cgd 		_exit(1);	/* force single user mode */
    741  1.47  christos 		/*NOTREACHED*/
    742  1.47  christos 	case -1:
    743  1.56     lukem 		emergency("can't fork for %s on %s: %m", INIT_BSHELL,
    744  1.47  christos 		    _PATH_RUNCOM);
    745  1.47  christos 		while (waitpid(-1, NULL, WNOHANG) > 0)
    746   1.1       cgd 			continue;
    747  1.47  christos 		(void)sleep(STALL_TIMEOUT);
    748  1.47  christos 		return (state_func_t)single_user;
    749  1.47  christos 	default:
    750  1.47  christos 		break;
    751   1.8       cgd 	}
    752   1.8       cgd 
    753   1.8       cgd 	/*
    754   1.8       cgd 	 * Copied from single_user().  This is a bit paranoid.
    755   1.8       cgd 	 */
    756   1.8       cgd 	do {
    757   1.8       cgd 		if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
    758  1.50  christos 			collect_child(wpid, status);
    759   1.8       cgd 		if (wpid == -1) {
    760   1.8       cgd 			if (errno == EINTR)
    761   1.8       cgd 				continue;
    762  1.47  christos 			warning("wait for %s on %s failed: %m; going to "
    763  1.56     lukem 			    "single user mode", INIT_BSHELL, _PATH_RUNCOM);
    764  1.47  christos 			return (state_func_t)single_user;
    765   1.8       cgd 		}
    766   1.8       cgd 		if (wpid == pid && WIFSTOPPED(status)) {
    767   1.8       cgd 			warning("init: %s on %s stopped, restarting\n",
    768  1.56     lukem 			    INIT_BSHELL, _PATH_RUNCOM);
    769  1.47  christos 			(void)kill(pid, SIGCONT);
    770   1.8       cgd 			wpid = -1;
    771   1.8       cgd 		}
    772   1.8       cgd 	} while (wpid != pid);
    773   1.8       cgd 
    774   1.8       cgd 	if (WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM &&
    775   1.8       cgd 	    requested_transition == catatonia) {
    776   1.8       cgd 		/* /etc/rc executed /sbin/reboot; wait for the end quietly */
    777   1.8       cgd 		sigset_t s;
    778   1.8       cgd 
    779  1.47  christos 		(void)sigfillset(&s);
    780   1.8       cgd 		for (;;)
    781  1.47  christos 			(void)sigsuspend(&s);
    782   1.8       cgd 	}
    783   1.8       cgd 
    784   1.8       cgd 	if (!WIFEXITED(status)) {
    785  1.47  christos 		warning("%s on %s terminated abnormally, going to "
    786  1.56     lukem 		    "single user mode", INIT_BSHELL, _PATH_RUNCOM);
    787  1.47  christos 		return (state_func_t)single_user;
    788   1.8       cgd 	}
    789   1.8       cgd 
    790   1.8       cgd 	if (WEXITSTATUS(status))
    791  1.47  christos 		return (state_func_t)single_user;
    792   1.8       cgd 
    793   1.8       cgd 	runcom_mode = AUTOBOOT;		/* the default */
    794   1.8       cgd 	/* NB: should send a message to the session logger to avoid blocking. */
    795  1.51  christos #ifdef SUPPORT_UTMPX
    796  1.50  christos 	logwtmpx("~", "reboot", "", 0, INIT_PROCESS);
    797  1.50  christos #endif
    798  1.51  christos #ifdef SUPPORT_UTMP
    799   1.8       cgd 	logwtmp("~", "reboot", "");
    800  1.50  christos #endif
    801   1.8       cgd 	return (state_func_t) read_ttys;
    802   1.8       cgd }
    803   1.8       cgd 
    804   1.8       cgd /*
    805   1.8       cgd  * Open the session database.
    806   1.8       cgd  *
    807   1.8       cgd  * NB: We could pass in the size here; is it necessary?
    808   1.8       cgd  */
    809   1.8       cgd int
    810  1.39       wiz start_session_db(void)
    811   1.8       cgd {
    812  1.43     lukem 
    813   1.8       cgd 	if (session_db && (*session_db->close)(session_db))
    814  1.47  christos 		emergency("session database close: %m");
    815   1.8       cgd 	if ((session_db = dbopen(NULL, O_RDWR, 0, DB_HASH, NULL)) == 0) {
    816  1.47  christos 		emergency("session database open: %m");
    817   1.8       cgd 		return (1);
    818   1.8       cgd 	}
    819   1.8       cgd 	return (0);
    820   1.8       cgd 
    821   1.8       cgd }
    822   1.8       cgd 
    823   1.8       cgd /*
    824   1.8       cgd  * Add a new login session.
    825   1.8       cgd  */
    826   1.8       cgd void
    827  1.39       wiz add_session(session_t *sp)
    828   1.8       cgd {
    829   1.8       cgd 	DBT key;
    830   1.8       cgd 	DBT data;
    831   1.8       cgd 
    832  1.55  christos 	if (session_db == NULL)
    833  1.55  christos 		return;
    834  1.55  christos 
    835   1.8       cgd 	key.data = &sp->se_process;
    836   1.8       cgd 	key.size = sizeof sp->se_process;
    837   1.8       cgd 	data.data = &sp;
    838   1.8       cgd 	data.size = sizeof sp;
    839   1.8       cgd 
    840   1.8       cgd 	if ((*session_db->put)(session_db, &key, &data, 0))
    841  1.47  christos 		emergency("insert %d: %m", sp->se_process);
    842   1.8       cgd }
    843   1.8       cgd 
    844   1.8       cgd /*
    845   1.8       cgd  * Delete an old login session.
    846   1.8       cgd  */
    847   1.8       cgd void
    848  1.39       wiz del_session(session_t *sp)
    849   1.8       cgd {
    850   1.8       cgd 	DBT key;
    851   1.8       cgd 
    852   1.8       cgd 	key.data = &sp->se_process;
    853   1.8       cgd 	key.size = sizeof sp->se_process;
    854   1.8       cgd 
    855   1.8       cgd 	if ((*session_db->del)(session_db, &key, 0))
    856  1.47  christos 		emergency("delete %d: %m", sp->se_process);
    857   1.8       cgd }
    858   1.8       cgd 
    859   1.8       cgd /*
    860   1.8       cgd  * Look up a login session by pid.
    861   1.8       cgd  */
    862   1.8       cgd session_t *
    863   1.8       cgd find_session(pid_t pid)
    864   1.8       cgd {
    865   1.8       cgd 	DBT key;
    866   1.8       cgd 	DBT data;
    867   1.8       cgd 	session_t *ret;
    868   1.8       cgd 
    869  1.55  christos 	if (session_db == NULL)
    870  1.55  christos 		return NULL;
    871  1.55  christos 
    872   1.8       cgd 	key.data = &pid;
    873   1.8       cgd 	key.size = sizeof pid;
    874   1.8       cgd 	if ((*session_db->get)(session_db, &key, &data, 0) != 0)
    875   1.8       cgd 		return 0;
    876  1.47  christos 	(void)memmove(&ret, data.data, sizeof(ret));
    877   1.8       cgd 	return ret;
    878   1.8       cgd }
    879   1.8       cgd 
    880   1.8       cgd /*
    881   1.8       cgd  * Construct an argument vector from a command line.
    882   1.8       cgd  */
    883   1.8       cgd char **
    884  1.39       wiz construct_argv(char *command)
    885   1.8       cgd {
    886  1.27     perry 	int argc = 0;
    887  1.47  christos 	char **argv = malloc(((strlen(command) + 1) / 2 + 1) * sizeof (char *));
    888   1.8       cgd 	static const char separators[] = " \t";
    889   1.8       cgd 
    890   1.8       cgd 	if ((argv[argc++] = strtok(command, separators)) == 0)
    891  1.27     perry 		return (NULL);
    892  1.47  christos 	while ((argv[argc++] = strtok(NULL, separators)) != NULL)
    893   1.8       cgd 		continue;
    894  1.27     perry 	return (argv);
    895   1.8       cgd }
    896   1.8       cgd 
    897   1.8       cgd /*
    898   1.8       cgd  * Deallocate a session descriptor.
    899   1.8       cgd  */
    900   1.8       cgd void
    901  1.39       wiz free_session(session_t *sp)
    902   1.8       cgd {
    903  1.43     lukem 
    904   1.8       cgd 	free(sp->se_device);
    905   1.8       cgd 	if (sp->se_getty) {
    906   1.8       cgd 		free(sp->se_getty);
    907   1.8       cgd 		free(sp->se_getty_argv);
    908   1.8       cgd 	}
    909   1.8       cgd 	if (sp->se_window) {
    910   1.8       cgd 		free(sp->se_window);
    911   1.8       cgd 		free(sp->se_window_argv);
    912   1.8       cgd 	}
    913   1.8       cgd 	free(sp);
    914   1.8       cgd }
    915   1.8       cgd 
    916   1.8       cgd /*
    917   1.8       cgd  * Allocate a new session descriptor.
    918   1.8       cgd  */
    919   1.8       cgd session_t *
    920  1.39       wiz new_session(session_t *sprev, int session_index, struct ttyent *typ)
    921   1.8       cgd {
    922  1.27     perry 	session_t *sp;
    923   1.8       cgd 
    924  1.47  christos 	if ((typ->ty_status & TTY_ON) == 0 || typ->ty_name == NULL ||
    925  1.27     perry 	    typ->ty_getty == NULL)
    926  1.27     perry 		return (NULL);
    927   1.8       cgd 
    928  1.47  christos 	sp = malloc(sizeof (session_t));
    929  1.55  christos 	if (sp == NULL)
    930  1.55  christos 		return NULL;
    931  1.18   mycroft 	memset(sp, 0, sizeof *sp);
    932   1.8       cgd 
    933  1.21   mycroft 	sp->se_flags = SE_PRESENT;
    934   1.8       cgd 	sp->se_index = session_index;
    935   1.8       cgd 
    936  1.59    itojun 	(void)asprintf(&sp->se_device, "%s%s", _PATH_DEV, typ->ty_name);
    937  1.59    itojun 	if (!sp->se_device)
    938  1.59    itojun 		return NULL;
    939   1.8       cgd 
    940   1.8       cgd 	if (setupargv(sp, typ) == 0) {
    941   1.8       cgd 		free_session(sp);
    942  1.27     perry 		return (NULL);
    943   1.8       cgd 	}
    944   1.8       cgd 
    945  1.27     perry 	sp->se_next = NULL;
    946  1.27     perry 	if (sprev == NULL) {
    947   1.8       cgd 		sessions = sp;
    948  1.27     perry 		sp->se_prev = NULL;
    949   1.8       cgd 	} else {
    950   1.8       cgd 		sprev->se_next = sp;
    951   1.8       cgd 		sp->se_prev = sprev;
    952   1.8       cgd 	}
    953   1.8       cgd 
    954  1.27     perry 	return (sp);
    955   1.8       cgd }
    956   1.8       cgd 
    957   1.8       cgd /*
    958   1.8       cgd  * Calculate getty and if useful window argv vectors.
    959   1.8       cgd  */
    960   1.8       cgd int
    961  1.39       wiz setupargv(session_t *sp, struct ttyent *typ)
    962   1.8       cgd {
    963   1.8       cgd 
    964   1.8       cgd 	if (sp->se_getty) {
    965   1.8       cgd 		free(sp->se_getty);
    966   1.8       cgd 		free(sp->se_getty_argv);
    967   1.8       cgd 	}
    968  1.59    itojun 	(void)asprintf(&sp->se_getty, "%s %s", typ->ty_getty, typ->ty_name);
    969  1.59    itojun 	if (!sp->se_getty)
    970  1.59    itojun 		return (0);
    971   1.8       cgd 	sp->se_getty_argv = construct_argv(sp->se_getty);
    972  1.27     perry 	if (sp->se_getty_argv == NULL) {
    973   1.8       cgd 		warning("can't parse getty for port %s", sp->se_device);
    974   1.8       cgd 		free(sp->se_getty);
    975  1.27     perry 		sp->se_getty = NULL;
    976   1.8       cgd 		return (0);
    977   1.8       cgd 	}
    978   1.8       cgd 	if (typ->ty_window) {
    979   1.8       cgd 		if (sp->se_window)
    980   1.8       cgd 			free(sp->se_window);
    981   1.8       cgd 		sp->se_window = strdup(typ->ty_window);
    982   1.8       cgd 		sp->se_window_argv = construct_argv(sp->se_window);
    983  1.27     perry 		if (sp->se_window_argv == NULL) {
    984   1.8       cgd 			warning("can't parse window for port %s",
    985  1.47  christos 			    sp->se_device);
    986   1.8       cgd 			free(sp->se_window);
    987  1.27     perry 			sp->se_window = NULL;
    988   1.8       cgd 			return (0);
    989   1.1       cgd 		}
    990   1.8       cgd 	}
    991   1.8       cgd 	return (1);
    992   1.8       cgd }
    993   1.8       cgd 
    994   1.8       cgd /*
    995   1.8       cgd  * Walk the list of ttys and create sessions for each active line.
    996   1.8       cgd  */
    997   1.8       cgd state_func_t
    998  1.39       wiz read_ttys(void)
    999   1.8       cgd {
   1000   1.8       cgd 	int session_index = 0;
   1001  1.27     perry 	session_t *sp, *snext;
   1002  1.27     perry 	struct ttyent *typ;
   1003   1.8       cgd 
   1004   1.8       cgd 	/*
   1005   1.8       cgd 	 * Destroy any previous session state.
   1006   1.8       cgd 	 * There shouldn't be any, but just in case...
   1007   1.8       cgd 	 */
   1008   1.8       cgd 	for (sp = sessions; sp; sp = snext) {
   1009   1.8       cgd 		if (sp->se_process)
   1010  1.50  christos 			clear_session_logs(sp, 0);
   1011   1.8       cgd 		snext = sp->se_next;
   1012   1.8       cgd 		free_session(sp);
   1013   1.8       cgd 	}
   1014  1.27     perry 	sessions = NULL;
   1015   1.8       cgd 	if (start_session_db())
   1016  1.47  christos 		return (state_func_t)single_user;
   1017   1.8       cgd 
   1018   1.8       cgd 	/*
   1019   1.8       cgd 	 * Allocate a session entry for each active port.
   1020   1.8       cgd 	 * Note that sp starts at 0.
   1021   1.8       cgd 	 */
   1022  1.27     perry 	while ((typ = getttyent()) != NULL)
   1023  1.27     perry 		if ((snext = new_session(sp, ++session_index, typ)) != NULL)
   1024   1.8       cgd 			sp = snext;
   1025   1.8       cgd 
   1026   1.8       cgd 	endttyent();
   1027   1.8       cgd 
   1028  1.47  christos 	return (state_func_t)multi_user;
   1029   1.8       cgd }
   1030   1.8       cgd 
   1031   1.8       cgd /*
   1032   1.8       cgd  * Start a window system running.
   1033   1.8       cgd  */
   1034   1.8       cgd void
   1035  1.39       wiz start_window_system(session_t *sp)
   1036   1.8       cgd {
   1037   1.8       cgd 	pid_t pid;
   1038   1.8       cgd 	sigset_t mask;
   1039   1.8       cgd 
   1040   1.8       cgd 	if ((pid = fork()) == -1) {
   1041   1.8       cgd 		emergency("can't fork for window system on port %s: %m",
   1042  1.47  christos 		    sp->se_device);
   1043   1.8       cgd 		/* hope that getty fails and we can try again */
   1044   1.8       cgd 		return;
   1045   1.8       cgd 	}
   1046   1.8       cgd 
   1047   1.8       cgd 	if (pid)
   1048   1.8       cgd 		return;
   1049   1.8       cgd 
   1050   1.8       cgd 	sigemptyset(&mask);
   1051  1.47  christos 	sigprocmask(SIG_SETMASK, &mask, NULL);
   1052   1.8       cgd 
   1053   1.8       cgd 	if (setsid() < 0)
   1054   1.8       cgd 		emergency("setsid failed (window) %m");
   1055   1.8       cgd 
   1056  1.47  christos 	(void)execv(sp->se_window_argv[0], sp->se_window_argv);
   1057   1.8       cgd 	stall("can't exec window system '%s' for port %s: %m",
   1058  1.47  christos 	    sp->se_window_argv[0], sp->se_device);
   1059   1.8       cgd 	_exit(1);
   1060   1.8       cgd }
   1061   1.8       cgd 
   1062   1.8       cgd /*
   1063   1.8       cgd  * Start a login session running.
   1064   1.8       cgd  */
   1065   1.8       cgd pid_t
   1066  1.39       wiz start_getty(session_t *sp)
   1067   1.8       cgd {
   1068   1.8       cgd 	pid_t pid;
   1069   1.8       cgd 	sigset_t mask;
   1070  1.47  christos 	time_t current_time = time(NULL);
   1071   1.8       cgd 
   1072   1.8       cgd 	/*
   1073   1.8       cgd 	 * fork(), not vfork() -- we can't afford to block.
   1074   1.8       cgd 	 */
   1075   1.8       cgd 	if ((pid = fork()) == -1) {
   1076   1.8       cgd 		emergency("can't fork for getty on port %s: %m", sp->se_device);
   1077   1.8       cgd 		return -1;
   1078   1.8       cgd 	}
   1079   1.8       cgd 
   1080   1.8       cgd 	if (pid)
   1081   1.8       cgd 		return pid;
   1082   1.8       cgd 
   1083   1.8       cgd 	if (current_time > sp->se_started &&
   1084   1.8       cgd 	    current_time - sp->se_started < GETTY_SPACING) {
   1085   1.8       cgd 		warning("getty repeating too quickly on port %s, sleeping",
   1086  1.47  christos 		    sp->se_device);
   1087  1.47  christos 		(void)sleep(GETTY_SLEEP);
   1088   1.8       cgd 	}
   1089   1.8       cgd 
   1090   1.8       cgd 	if (sp->se_window) {
   1091   1.8       cgd 		start_window_system(sp);
   1092  1.47  christos 		(void)sleep(WINDOW_WAIT);
   1093   1.1       cgd 	}
   1094   1.8       cgd 
   1095  1.47  christos 	(void)sigemptyset(&mask);
   1096  1.47  christos 	(void)sigprocmask(SIG_SETMASK, &mask, (sigset_t *) 0);
   1097   1.8       cgd 
   1098  1.47  christos 	(void)execv(sp->se_getty_argv[0], sp->se_getty_argv);
   1099   1.8       cgd 	stall("can't exec getty '%s' for port %s: %m",
   1100  1.47  christos 	    sp->se_getty_argv[0], sp->se_device);
   1101   1.8       cgd 	_exit(1);
   1102  1.47  christos 	/*NOTREACHED*/
   1103   1.1       cgd }
   1104  1.13       cgd #endif /* LETS_GET_SMALL */
   1105   1.1       cgd 
   1106   1.8       cgd /*
   1107   1.8       cgd  * Collect exit status for a child.
   1108   1.8       cgd  * If an exiting login, start a new login running.
   1109   1.8       cgd  */
   1110   1.8       cgd void
   1111  1.50  christos collect_child(pid_t pid, int status)
   1112   1.1       cgd {
   1113  1.13       cgd #ifndef LETS_GET_SMALL
   1114  1.27     perry 	session_t *sp, *sprev, *snext;
   1115   1.8       cgd 
   1116   1.8       cgd 	if (! sessions)
   1117   1.8       cgd 		return;
   1118   1.8       cgd 
   1119  1.47  christos 	if ((sp = find_session(pid)) == NULL)
   1120   1.8       cgd 		return;
   1121   1.1       cgd 
   1122  1.50  christos 	clear_session_logs(sp, status);
   1123   1.8       cgd 	del_session(sp);
   1124   1.8       cgd 	sp->se_process = 0;
   1125   1.8       cgd 
   1126   1.8       cgd 	if (sp->se_flags & SE_SHUTDOWN) {
   1127  1.27     perry 		if ((sprev = sp->se_prev) != NULL)
   1128   1.8       cgd 			sprev->se_next = sp->se_next;
   1129   1.8       cgd 		else
   1130   1.8       cgd 			sessions = sp->se_next;
   1131  1.27     perry 		if ((snext = sp->se_next) != NULL)
   1132   1.8       cgd 			snext->se_prev = sp->se_prev;
   1133   1.8       cgd 		free_session(sp);
   1134   1.1       cgd 		return;
   1135   1.1       cgd 	}
   1136   1.8       cgd 
   1137   1.8       cgd 	if ((pid = start_getty(sp)) == -1) {
   1138   1.8       cgd 		/* serious trouble */
   1139   1.8       cgd 		requested_transition = clean_ttys;
   1140   1.1       cgd 		return;
   1141   1.1       cgd 	}
   1142   1.8       cgd 
   1143   1.8       cgd 	sp->se_process = pid;
   1144  1.47  christos 	sp->se_started = time(NULL);
   1145   1.8       cgd 	add_session(sp);
   1146  1.13       cgd #endif /* LETS_GET_SMALL */
   1147   1.8       cgd }
   1148   1.8       cgd 
   1149   1.8       cgd /*
   1150   1.8       cgd  * Catch a signal and request a state transition.
   1151   1.8       cgd  */
   1152   1.8       cgd void
   1153  1.39       wiz transition_handler(int sig)
   1154   1.8       cgd {
   1155   1.8       cgd 
   1156   1.8       cgd 	switch (sig) {
   1157  1.13       cgd #ifndef LETS_GET_SMALL
   1158   1.8       cgd 	case SIGHUP:
   1159   1.8       cgd 		requested_transition = clean_ttys;
   1160   1.8       cgd 		break;
   1161   1.8       cgd 	case SIGTERM:
   1162   1.8       cgd 		requested_transition = death;
   1163   1.8       cgd 		break;
   1164   1.8       cgd 	case SIGTSTP:
   1165   1.8       cgd 		requested_transition = catatonia;
   1166   1.8       cgd 		break;
   1167  1.13       cgd #endif /* LETS_GET_SMALL */
   1168   1.8       cgd 	default:
   1169   1.8       cgd 		requested_transition = 0;
   1170   1.8       cgd 		break;
   1171   1.8       cgd 	}
   1172   1.8       cgd }
   1173   1.8       cgd 
   1174  1.13       cgd #ifndef LETS_GET_SMALL
   1175   1.8       cgd /*
   1176   1.8       cgd  * Take the system multiuser.
   1177   1.8       cgd  */
   1178   1.8       cgd state_func_t
   1179  1.39       wiz multi_user(void)
   1180   1.8       cgd {
   1181   1.8       cgd 	pid_t pid;
   1182  1.50  christos 	int status;
   1183  1.27     perry 	session_t *sp;
   1184   1.8       cgd 
   1185   1.8       cgd 	requested_transition = 0;
   1186   1.8       cgd 
   1187   1.8       cgd 	/*
   1188   1.8       cgd 	 * If the administrator has not set the security level to -1
   1189   1.8       cgd 	 * to indicate that the kernel should not run multiuser in secure
   1190   1.8       cgd 	 * mode, and the run script has not set a higher level of security
   1191   1.8       cgd 	 * than level 1, then put the kernel into secure mode.
   1192   1.8       cgd 	 */
   1193   1.8       cgd 	if (getsecuritylevel() == 0)
   1194   1.8       cgd 		setsecuritylevel(1);
   1195   1.8       cgd 
   1196   1.8       cgd 	for (sp = sessions; sp; sp = sp->se_next) {
   1197   1.8       cgd 		if (sp->se_process)
   1198   1.8       cgd 			continue;
   1199   1.8       cgd 		if ((pid = start_getty(sp)) == -1) {
   1200   1.8       cgd 			/* serious trouble */
   1201   1.8       cgd 			requested_transition = clean_ttys;
   1202   1.1       cgd 			break;
   1203   1.8       cgd 		}
   1204   1.8       cgd 		sp->se_process = pid;
   1205  1.47  christos 		sp->se_started = time(NULL);
   1206   1.8       cgd 		add_session(sp);
   1207   1.1       cgd 	}
   1208   1.8       cgd 
   1209   1.8       cgd 	while (!requested_transition)
   1210  1.50  christos 		if ((pid = waitpid(-1, &status, 0)) != -1)
   1211  1.50  christos 			collect_child(pid, status);
   1212   1.8       cgd 
   1213  1.47  christos 	return (state_func_t)requested_transition;
   1214   1.1       cgd }
   1215   1.1       cgd 
   1216   1.8       cgd /*
   1217   1.8       cgd  * This is an n-squared algorithm.  We hope it isn't run often...
   1218   1.8       cgd  */
   1219   1.8       cgd state_func_t
   1220  1.39       wiz clean_ttys(void)
   1221   1.1       cgd {
   1222  1.27     perry 	session_t *sp, *sprev;
   1223  1.27     perry 	struct ttyent *typ;
   1224  1.27     perry 	int session_index = 0;
   1225  1.27     perry 	int devlen;
   1226   1.8       cgd 
   1227  1.21   mycroft 	for (sp = sessions; sp; sp = sp->se_next)
   1228  1.21   mycroft 		sp->se_flags &= ~SE_PRESENT;
   1229  1.21   mycroft 
   1230   1.8       cgd 	devlen = sizeof(_PATH_DEV) - 1;
   1231  1.27     perry 	while ((typ = getttyent()) != NULL) {
   1232   1.8       cgd 		++session_index;
   1233   1.8       cgd 
   1234   1.8       cgd 		for (sprev = 0, sp = sessions; sp; sprev = sp, sp = sp->se_next)
   1235   1.8       cgd 			if (strcmp(typ->ty_name, sp->se_device + devlen) == 0)
   1236   1.8       cgd 				break;
   1237   1.8       cgd 
   1238   1.8       cgd 		if (sp) {
   1239  1.21   mycroft 			sp->se_flags |= SE_PRESENT;
   1240   1.8       cgd 			if (sp->se_index != session_index) {
   1241  1.47  christos 				warning("port %s changed utmp index from "
   1242  1.47  christos 				    "%d to %d", sp->se_device, sp->se_index,
   1243  1.47  christos 				    session_index);
   1244   1.8       cgd 				sp->se_index = session_index;
   1245   1.8       cgd 			}
   1246   1.8       cgd 			if ((typ->ty_status & TTY_ON) == 0 ||
   1247   1.8       cgd 			    typ->ty_getty == 0) {
   1248   1.8       cgd 				sp->se_flags |= SE_SHUTDOWN;
   1249  1.55  christos 				if (sp->se_process != 0)
   1250  1.55  christos 					(void)kill(sp->se_process, SIGHUP);
   1251   1.8       cgd 				continue;
   1252   1.8       cgd 			}
   1253   1.8       cgd 			sp->se_flags &= ~SE_SHUTDOWN;
   1254   1.8       cgd 			if (setupargv(sp, typ) == 0) {
   1255   1.8       cgd 				warning("can't parse getty for port %s",
   1256  1.47  christos 				    sp->se_device);
   1257   1.8       cgd 				sp->se_flags |= SE_SHUTDOWN;
   1258  1.55  christos 				if (sp->se_process != 0)
   1259  1.55  christos 					(void)kill(sp->se_process, SIGHUP);
   1260   1.8       cgd 			}
   1261   1.8       cgd 			continue;
   1262   1.8       cgd 		}
   1263   1.8       cgd 
   1264   1.8       cgd 		new_session(sprev, session_index, typ);
   1265   1.8       cgd 	}
   1266   1.8       cgd 
   1267   1.8       cgd 	endttyent();
   1268  1.21   mycroft 
   1269  1.21   mycroft 	for (sp = sessions; sp; sp = sp->se_next)
   1270  1.21   mycroft 		if ((sp->se_flags & SE_PRESENT) == 0) {
   1271  1.21   mycroft 			sp->se_flags |= SE_SHUTDOWN;
   1272  1.55  christos 			if (sp->se_process != 0)
   1273  1.55  christos 				(void)kill(sp->se_process, SIGHUP);
   1274  1.21   mycroft 		}
   1275   1.1       cgd 
   1276  1.47  christos 	return (state_func_t)multi_user;
   1277   1.1       cgd }
   1278   1.1       cgd 
   1279   1.8       cgd /*
   1280   1.8       cgd  * Block further logins.
   1281   1.8       cgd  */
   1282   1.8       cgd state_func_t
   1283  1.39       wiz catatonia(void)
   1284   1.1       cgd {
   1285  1.27     perry 	session_t *sp;
   1286   1.8       cgd 
   1287   1.8       cgd 	for (sp = sessions; sp; sp = sp->se_next)
   1288   1.8       cgd 		sp->se_flags |= SE_SHUTDOWN;
   1289   1.1       cgd 
   1290  1.47  christos 	return (state_func_t)multi_user;
   1291   1.1       cgd }
   1292  1.13       cgd #endif /* LETS_GET_SMALL */
   1293   1.1       cgd 
   1294   1.8       cgd /*
   1295   1.8       cgd  * Note SIGALRM.
   1296   1.8       cgd  */
   1297   1.8       cgd void
   1298  1.47  christos /*ARGSUSED*/
   1299  1.39       wiz alrm_handler(int sig)
   1300   1.1       cgd {
   1301  1.43     lukem 
   1302   1.8       cgd 	clang = 1;
   1303   1.1       cgd }
   1304   1.1       cgd 
   1305  1.13       cgd #ifndef LETS_GET_SMALL
   1306   1.8       cgd /*
   1307   1.8       cgd  * Bring the system down to single user.
   1308   1.8       cgd  */
   1309   1.8       cgd state_func_t
   1310  1.39       wiz death(void)
   1311   1.1       cgd {
   1312  1.27     perry 	session_t *sp;
   1313  1.50  christos 	int i, status;
   1314   1.8       cgd 	pid_t pid;
   1315   1.8       cgd 	static const int death_sigs[3] = { SIGHUP, SIGTERM, SIGKILL };
   1316   1.8       cgd 
   1317   1.8       cgd 	for (sp = sessions; sp; sp = sp->se_next)
   1318   1.8       cgd 		sp->se_flags |= SE_SHUTDOWN;
   1319   1.8       cgd 
   1320   1.8       cgd 	/* NB: should send a message to the session logger to avoid blocking. */
   1321  1.50  christos #ifdef SUPPORT_UTMPX
   1322  1.50  christos 	logwtmpx("~", "shutdown", "", 0, INIT_PROCESS);
   1323  1.50  christos #endif
   1324  1.50  christos #ifdef SUPPORT_UTMP
   1325   1.8       cgd 	logwtmp("~", "shutdown", "");
   1326  1.50  christos #endif
   1327   1.8       cgd 
   1328   1.8       cgd 	for (i = 0; i < 3; ++i) {
   1329   1.8       cgd 		if (kill(-1, death_sigs[i]) == -1 && errno == ESRCH)
   1330  1.47  christos 			return (state_func_t)single_user;
   1331   1.8       cgd 
   1332   1.8       cgd 		clang = 0;
   1333   1.8       cgd 		alarm(DEATH_WATCH);
   1334   1.8       cgd 		do
   1335  1.50  christos 			if ((pid = waitpid(-1, &status, 0)) != -1)
   1336  1.50  christos 				collect_child(pid, status);
   1337   1.8       cgd 		while (clang == 0 && errno != ECHILD);
   1338   1.8       cgd 
   1339   1.8       cgd 		if (errno == ECHILD)
   1340  1.47  christos 			return (state_func_t)single_user;
   1341   1.8       cgd 	}
   1342   1.8       cgd 
   1343   1.8       cgd 	warning("some processes would not die; ps axl advised");
   1344   1.8       cgd 
   1345  1.47  christos 	return (state_func_t)single_user;
   1346   1.1       cgd }
   1347  1.13       cgd #endif /* LETS_GET_SMALL */
   1348  1.28  christos 
   1349  1.45       abs #ifdef MFS_DEV_IF_NO_CONSOLE
   1350  1.28  christos 
   1351  1.58  christos static void
   1352  1.58  christos mapfile(struct mappedfile *mf)
   1353  1.58  christos {
   1354  1.58  christos 	int fd;
   1355  1.58  christos 	struct stat st;
   1356  1.58  christos 
   1357  1.58  christos 	if ((fd = open(mf->path, O_RDONLY)) != -1) {
   1358  1.58  christos 		if (fstat(fd, &st) != -1 && (mf->buf = mmap(0,
   1359  1.58  christos 		    (size_t)st.st_size, PROT_READ, MAP_FILE|MAP_SHARED, fd,
   1360  1.58  christos 		    (off_t)0)) != MAP_FAILED)
   1361  1.58  christos 			mf->len = (size_t)st.st_size;
   1362  1.58  christos 		else
   1363  1.58  christos 			mf->len = 0;
   1364  1.58  christos 		(void)close(fd);
   1365  1.58  christos 	}
   1366  1.58  christos }
   1367  1.58  christos 
   1368  1.58  christos static void
   1369  1.58  christos writefile(struct mappedfile *mf)
   1370  1.58  christos {
   1371  1.58  christos 	int fd;
   1372  1.58  christos 
   1373  1.58  christos 	if (mf->len && (fd = open(mf->path, O_WRONLY|O_CREAT|O_TRUNC,
   1374  1.58  christos 	    0755)) != -1) {
   1375  1.58  christos 		(void)write(fd, mf->buf, mf->len);
   1376  1.58  christos 		(void)munmap(mf->buf, mf->len);
   1377  1.58  christos 		(void)close(fd);
   1378  1.58  christos 	}
   1379  1.58  christos }
   1380  1.58  christos 
   1381  1.45       abs static int
   1382  1.45       abs mfs_dev(void)
   1383  1.28  christos {
   1384  1.28  christos 	/*
   1385  1.28  christos 	 * We cannot print errors so we bail out silently...
   1386  1.28  christos 	 */
   1387  1.28  christos 	pid_t pid;
   1388  1.30  drochner 	int status;
   1389  1.45       abs 	dev_t dev;
   1390  1.46     lukem #ifdef CPU_CONSDEV
   1391  1.46     lukem 	static int name[2] = { CTL_MACHDEP, CPU_CONSDEV };
   1392  1.46     lukem 	size_t olen;
   1393  1.46     lukem #endif
   1394  1.46     lukem 
   1395  1.45       abs 	/* If we have /dev/console, assume all is OK  */
   1396  1.28  christos 	if (access(_PATH_CONSOLE, F_OK) != -1)
   1397  1.45       abs 		return(0);
   1398  1.28  christos 
   1399  1.28  christos 	/* Grab the contents of MAKEDEV */
   1400  1.58  christos 	mapfile(&mfile[0]);
   1401  1.28  christos 
   1402  1.45       abs 	/* Grab the contents of MAKEDEV.local */
   1403  1.58  christos 	mapfile(&mfile[1]);
   1404  1.28  christos 
   1405  1.28  christos 	/* Mount an mfs over /dev so we can create devices */
   1406  1.28  christos 	switch ((pid = fork())) {
   1407  1.28  christos 	case 0:
   1408  1.56     lukem 		(void)execl(INIT_MOUNT_MFS, "mount_mfs", "-i", "192",
   1409  1.48     lukem 		    "-s", "768", "-b", "4096", "-f", "512", "swap", "/dev",
   1410  1.28  christos 		    NULL);
   1411  1.47  christos 		_exit(1);
   1412  1.47  christos 		/*NOTREACHED*/
   1413  1.28  christos 
   1414  1.28  christos 	case -1:
   1415  1.45       abs 		return(-1);
   1416  1.28  christos 
   1417  1.28  christos 	default:
   1418  1.28  christos 		if (waitpid(pid, &status, 0) == -1)
   1419  1.45       abs 			return(-1);
   1420  1.28  christos 		if (status != 0)
   1421  1.45       abs 			return(-1);
   1422  1.28  christos 		break;
   1423  1.28  christos 	}
   1424  1.28  christos 
   1425  1.28  christos #ifdef CPU_CONSDEV
   1426  1.46     lukem 	olen = sizeof(dev);
   1427  1.46     lukem 	if (sysctl(name, sizeof(name) / sizeof(name[0]), &dev, &olen,
   1428  1.45       abs 	    NULL, 0) == -1)
   1429  1.46     lukem #endif
   1430  1.45       abs 		dev = makedev(0, 0);
   1431  1.28  christos 
   1432  1.45       abs 	/* Make a console for us, so we can see things happening */
   1433  1.45       abs 	if (mknod(_PATH_CONSOLE, 0666 | S_IFCHR, dev) == -1)
   1434  1.47  christos 		return(-1);
   1435  1.45       abs 
   1436  1.47  christos 	(void)freopen(_PATH_CONSOLE, "a", stderr);
   1437  1.45       abs 
   1438  1.47  christos 	warnx("Creating mfs /dev");
   1439  1.45       abs 
   1440  1.45       abs 	/* Create a MAKEDEV script in the mfs /dev */
   1441  1.58  christos 	writefile(&mfile[0]);
   1442  1.45       abs 
   1443  1.45       abs 	/* Create a MAKEDEV.local script in the mfs /dev */
   1444  1.58  christos 	writefile(&mfile[1]);
   1445  1.28  christos 
   1446  1.28  christos 	/* Run the makedev script to create devices */
   1447  1.28  christos 	switch ((pid = fork())) {
   1448  1.28  christos 	case 0:
   1449  1.28  christos 		if (chdir("/dev") == -1)
   1450  1.45       abs 			goto fail;
   1451  1.56     lukem 		(void)execl(INIT_BSHELL, "sh", "./MAKEDEV", "init", NULL);
   1452  1.45       abs 		goto fail;
   1453  1.28  christos 
   1454  1.28  christos 	case -1:
   1455  1.45       abs 		goto fail;
   1456  1.28  christos 
   1457  1.28  christos 	default:
   1458  1.28  christos 		if (waitpid(pid, &status, 0) == -1)
   1459  1.45       abs 			goto fail;
   1460  1.47  christos 		if (status != 0) {
   1461  1.47  christos 			errno = EINVAL;
   1462  1.47  christos 			goto fail;
   1463  1.47  christos 		}
   1464  1.28  christos 		break;
   1465  1.28  christos 	}
   1466  1.45       abs 	return(0);
   1467  1.45       abs fail:
   1468  1.47  christos 	warn("Unable to run MAKEDEV");
   1469  1.45       abs 	return(-1);
   1470  1.28  christos }
   1471  1.28  christos #endif
   1472