1994-05-26 06:35:07 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-26 06:35:07 +00:00
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Donn Seeley at Berkeley Software Design, Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-26 06:35:07 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-07-06 06:56:08 +00:00
|
|
|
static const char copyright[] =
|
1994-05-26 06:35:07 +00:00
|
|
|
"@(#) Copyright (c) 1991, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-07-06 06:56:08 +00:00
|
|
|
#if 0
|
1994-05-26 06:35:07 +00:00
|
|
|
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 7/15/93";
|
1998-07-06 06:56:08 +00:00
|
|
|
#endif
|
|
|
|
static const char rcsid[] =
|
1999-08-28 00:22:10 +00:00
|
|
|
"$FreeBSD$";
|
1994-05-26 06:35:07 +00:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
1997-08-02 00:22:52 +00:00
|
|
|
#include <sys/ioctl.h>
|
2015-11-08 17:33:48 +00:00
|
|
|
#include <sys/mman.h>
|
1996-10-28 11:03:19 +00:00
|
|
|
#include <sys/mount.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/wait.h>
|
1997-08-18 01:40:12 +00:00
|
|
|
#include <sys/stat.h>
|
2002-08-03 16:21:33 +00:00
|
|
|
#include <sys/uio.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
#include <db.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2007-02-04 06:33:13 +00:00
|
|
|
#include <kenv.h>
|
1997-07-03 11:37:43 +00:00
|
|
|
#include <libutil.h>
|
2000-12-09 09:35:55 +00:00
|
|
|
#include <paths.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <ttyent.h>
|
|
|
|
#include <unistd.h>
|
1994-08-27 21:32:01 +00:00
|
|
|
#include <sys/reboot.h>
|
1997-06-13 06:24:42 +00:00
|
|
|
#include <err.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#ifdef SECURE
|
|
|
|
#include <pwd.h>
|
|
|
|
#endif
|
|
|
|
|
1997-01-19 16:49:13 +00:00
|
|
|
#ifdef LOGIN_CAP
|
|
|
|
#include <login_cap.h>
|
|
|
|
#endif
|
|
|
|
|
2015-11-08 17:33:48 +00:00
|
|
|
#include "mntopts.h"
|
1994-05-26 06:35:07 +00:00
|
|
|
#include "pathnames.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sleep times; used to prevent thrashing.
|
|
|
|
*/
|
|
|
|
#define GETTY_SPACING 5 /* N secs minimum getty spacing */
|
|
|
|
#define GETTY_SLEEP 30 /* sleep N secs after spacing problem */
|
2012-03-11 22:30:06 +00:00
|
|
|
#define GETTY_NSPACE 3 /* max. spacing count to bring reaction */
|
1994-05-26 06:35:07 +00:00
|
|
|
#define WINDOW_WAIT 3 /* wait N secs after starting window */
|
|
|
|
#define STALL_TIMEOUT 30 /* wait N secs after warning */
|
|
|
|
#define DEATH_WATCH 10 /* wait N secs for procs to die */
|
2007-11-20 19:50:45 +00:00
|
|
|
#define DEATH_SCRIPT 120 /* wait for 2min for /etc/rc.shutdown */
|
|
|
|
#define RESOURCE_RC "daemon"
|
2012-03-11 22:30:06 +00:00
|
|
|
#define RESOURCE_WINDOW "default"
|
2007-11-20 19:50:45 +00:00
|
|
|
#define RESOURCE_GETTY "default"
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2008-09-27 00:09:10 +00:00
|
|
|
static void handle(sig_t, ...);
|
|
|
|
static void delset(sigset_t *, ...);
|
|
|
|
|
|
|
|
static void stall(const char *, ...) __printflike(1, 2);
|
|
|
|
static void warning(const char *, ...) __printflike(1, 2);
|
|
|
|
static void emergency(const char *, ...) __printflike(1, 2);
|
|
|
|
static void disaster(int);
|
|
|
|
static void badsys(int);
|
2015-11-08 17:33:48 +00:00
|
|
|
static void revoke_ttys(void);
|
2008-09-27 00:09:10 +00:00
|
|
|
static int runshutdown(void);
|
2005-01-11 14:34:29 +00:00
|
|
|
static char *strk(char *);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We really need a recursive typedef...
|
|
|
|
* The following at least guarantees that the return type of (*state_t)()
|
|
|
|
* is sufficiently wide to hold a function pointer.
|
|
|
|
*/
|
2002-03-20 22:53:13 +00:00
|
|
|
typedef long (*state_func_t)(void);
|
|
|
|
typedef state_func_t (*state_t)(void);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t single_user(void);
|
|
|
|
static state_func_t runcom(void);
|
|
|
|
static state_func_t read_ttys(void);
|
|
|
|
static state_func_t multi_user(void);
|
|
|
|
static state_func_t clean_ttys(void);
|
|
|
|
static state_func_t catatonia(void);
|
|
|
|
static state_func_t death(void);
|
2011-01-23 14:22:26 +00:00
|
|
|
static state_func_t death_single(void);
|
2015-11-08 17:33:48 +00:00
|
|
|
static state_func_t reroot(void);
|
|
|
|
static state_func_t reroot_phase_two(void);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t run_script(const char *);
|
2007-02-04 06:33:13 +00:00
|
|
|
|
2011-11-04 13:36:02 +00:00
|
|
|
static enum { AUTOBOOT, FASTBOOT } runcom_mode = AUTOBOOT;
|
1995-10-29 09:44:09 +00:00
|
|
|
#define FALSE 0
|
|
|
|
#define TRUE 1
|
|
|
|
|
2011-11-04 13:36:02 +00:00
|
|
|
static int Reboot = FALSE;
|
|
|
|
static int howto = RB_AUTOBOOT;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2011-11-04 13:36:02 +00:00
|
|
|
static int devfs;
|
2016-05-11 10:03:13 +00:00
|
|
|
static char *init_path_argv0;
|
1996-10-28 11:03:19 +00:00
|
|
|
|
2008-09-27 00:09:10 +00:00
|
|
|
static void transition(state_t);
|
|
|
|
static state_t requested_transition;
|
2011-01-23 14:22:26 +00:00
|
|
|
static state_t current_state = death_single;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2018-08-09 12:13:08 +00:00
|
|
|
static void execute_script(char *argv[]);
|
2012-03-14 16:22:09 +00:00
|
|
|
static void open_console(void);
|
2008-09-27 00:09:10 +00:00
|
|
|
static const char *get_shell(void);
|
2018-08-14 11:01:52 +00:00
|
|
|
static void replace_init(char *path);
|
2008-09-27 00:09:10 +00:00
|
|
|
static void write_stderr(const char *message);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
typedef struct init_session {
|
|
|
|
pid_t se_process; /* controlling process */
|
|
|
|
time_t se_started; /* used to avoid thrashing */
|
|
|
|
int se_flags; /* status of session */
|
|
|
|
#define SE_SHUTDOWN 0x1 /* session won't be restarted */
|
2000-02-19 20:28:45 +00:00
|
|
|
#define SE_PRESENT 0x2 /* session is in /etc/ttys */
|
2018-02-27 10:54:15 +00:00
|
|
|
#define SE_IFEXISTS 0x4 /* session defined as "onifexists" */
|
|
|
|
#define SE_IFCONSOLE 0x8 /* session defined as "onifconsole" */
|
2012-03-11 22:30:06 +00:00
|
|
|
int se_nspace; /* spacing count */
|
1994-05-26 06:35:07 +00:00
|
|
|
char *se_device; /* filename of port */
|
|
|
|
char *se_getty; /* what to run on that port */
|
2012-03-11 22:30:06 +00:00
|
|
|
char *se_getty_argv_space; /* pre-parsed argument array space */
|
1994-05-26 06:35:07 +00:00
|
|
|
char **se_getty_argv; /* pre-parsed argument array */
|
|
|
|
char *se_window; /* window system (started only once) */
|
2012-03-11 22:30:06 +00:00
|
|
|
char *se_window_argv_space; /* pre-parsed argument array space */
|
1994-05-26 06:35:07 +00:00
|
|
|
char **se_window_argv; /* pre-parsed argument array */
|
2012-03-11 22:30:06 +00:00
|
|
|
char *se_type; /* default terminal type */
|
1994-05-26 06:35:07 +00:00
|
|
|
struct init_session *se_prev;
|
|
|
|
struct init_session *se_next;
|
|
|
|
} session_t;
|
|
|
|
|
2008-09-27 00:09:10 +00:00
|
|
|
static void free_session(session_t *);
|
2014-02-08 13:51:15 +00:00
|
|
|
static session_t *new_session(session_t *, struct ttyent *);
|
2008-09-27 00:09:10 +00:00
|
|
|
static session_t *sessions;
|
|
|
|
|
|
|
|
static char **construct_argv(char *);
|
|
|
|
static void start_window_system(session_t *);
|
|
|
|
static void collect_child(pid_t);
|
|
|
|
static pid_t start_getty(session_t *);
|
|
|
|
static void transition_handler(int);
|
|
|
|
static void alrm_handler(int);
|
|
|
|
static void setsecuritylevel(int);
|
|
|
|
static int getsecuritylevel(void);
|
|
|
|
static int setupargv(session_t *, struct ttyent *);
|
1997-01-22 02:07:55 +00:00
|
|
|
#ifdef LOGIN_CAP
|
2008-09-27 00:09:10 +00:00
|
|
|
static void setprocresources(const char *);
|
1997-01-22 02:07:55 +00:00
|
|
|
#endif
|
2008-09-27 00:09:10 +00:00
|
|
|
static int clang;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2008-09-27 00:09:10 +00:00
|
|
|
static int start_session_db(void);
|
|
|
|
static void add_session(session_t *);
|
|
|
|
static void del_session(session_t *);
|
|
|
|
static session_t *find_session(pid_t);
|
|
|
|
static DB *session_db;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The mother of all processes.
|
|
|
|
*/
|
|
|
|
int
|
2002-03-20 22:53:13 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2007-02-04 06:33:13 +00:00
|
|
|
state_t initial_transition = runcom;
|
|
|
|
char kenv_value[PATH_MAX];
|
2015-11-08 17:33:48 +00:00
|
|
|
int c, error;
|
1994-05-26 06:35:07 +00:00
|
|
|
struct sigaction sa;
|
|
|
|
sigset_t mask;
|
|
|
|
|
|
|
|
/* Dispose of random users. */
|
1997-06-13 06:24:42 +00:00
|
|
|
if (getuid() != 0)
|
|
|
|
errx(1, "%s", strerror(EPERM));
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/* System V users like to reexec init. */
|
1999-06-18 09:08:09 +00:00
|
|
|
if (getpid() != 1) {
|
|
|
|
#ifdef COMPAT_SYSV_INIT
|
|
|
|
/* So give them what they want */
|
|
|
|
if (argc > 1) {
|
|
|
|
if (strlen(argv[1]) == 1) {
|
2002-03-20 17:55:10 +00:00
|
|
|
char runlevel = *argv[1];
|
|
|
|
int sig;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1999-06-18 09:08:09 +00:00
|
|
|
switch (runlevel) {
|
2007-11-20 19:50:45 +00:00
|
|
|
case '0': /* halt + poweroff */
|
|
|
|
sig = SIGUSR2;
|
|
|
|
break;
|
|
|
|
case '1': /* single-user */
|
|
|
|
sig = SIGTERM;
|
|
|
|
break;
|
|
|
|
case '6': /* reboot */
|
|
|
|
sig = SIGINT;
|
|
|
|
break;
|
|
|
|
case 'c': /* block further logins */
|
|
|
|
sig = SIGTSTP;
|
|
|
|
break;
|
|
|
|
case 'q': /* rescan /etc/ttys */
|
|
|
|
sig = SIGHUP;
|
|
|
|
break;
|
2015-11-08 17:33:48 +00:00
|
|
|
case 'r': /* remount root */
|
|
|
|
sig = SIGEMT;
|
|
|
|
break;
|
2007-11-20 19:50:45 +00:00
|
|
|
default:
|
|
|
|
goto invalid;
|
1999-06-18 09:08:09 +00:00
|
|
|
}
|
|
|
|
kill(1, sig);
|
|
|
|
_exit(0);
|
|
|
|
} else
|
|
|
|
invalid:
|
|
|
|
errx(1, "invalid run-level ``%s''", argv[1]);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
errx(1, "already running");
|
|
|
|
}
|
2016-05-11 10:03:13 +00:00
|
|
|
|
|
|
|
init_path_argv0 = strdup(argv[0]);
|
|
|
|
if (init_path_argv0 == NULL)
|
|
|
|
err(1, "strdup");
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* Note that this does NOT open a file...
|
|
|
|
* Does 'init' deserve its own facility number?
|
|
|
|
*/
|
2014-08-17 19:06:26 +00:00
|
|
|
openlog("init", LOG_CONS, LOG_AUTH);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create an initial session.
|
|
|
|
*/
|
2015-11-08 17:33:48 +00:00
|
|
|
if (setsid() < 0 && (errno != EPERM || getsid(0) != 1))
|
1994-05-26 06:35:07 +00:00
|
|
|
warning("initial setsid() failed: %m");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Establish an initial user so that programs running
|
|
|
|
* single user do not freak out and die (like passwd).
|
|
|
|
*/
|
|
|
|
if (setlogin("root") < 0)
|
|
|
|
warning("setlogin() failed: %m");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This code assumes that we always get arguments through flags,
|
|
|
|
* never through bits set in some random machine register.
|
|
|
|
*/
|
2015-11-08 17:33:48 +00:00
|
|
|
while ((c = getopt(argc, argv, "dsfr")) != -1)
|
1994-05-26 06:35:07 +00:00
|
|
|
switch (c) {
|
1996-10-28 11:03:19 +00:00
|
|
|
case 'd':
|
|
|
|
devfs = 1;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 's':
|
2007-02-04 06:33:13 +00:00
|
|
|
initial_transition = single_user;
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
runcom_mode = FASTBOOT;
|
|
|
|
break;
|
2015-11-08 17:33:48 +00:00
|
|
|
case 'r':
|
|
|
|
initial_transition = reroot_phase_two;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
default:
|
|
|
|
warning("unrecognized flag '-%c'", c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optind != argc)
|
|
|
|
warning("ignoring excess arguments");
|
|
|
|
|
2007-02-04 06:33:13 +00:00
|
|
|
/*
|
|
|
|
* We catch or block signals rather than ignore them,
|
|
|
|
* so that they get reset on exec.
|
|
|
|
*/
|
|
|
|
handle(badsys, SIGSYS, 0);
|
2007-11-20 19:50:45 +00:00
|
|
|
handle(disaster, SIGABRT, SIGFPE, SIGILL, SIGSEGV, SIGBUS, SIGXCPU,
|
|
|
|
SIGXFSZ, 0);
|
2015-11-08 17:33:48 +00:00
|
|
|
handle(transition_handler, SIGHUP, SIGINT, SIGEMT, SIGTERM, SIGTSTP,
|
2017-10-25 15:30:40 +00:00
|
|
|
SIGUSR1, SIGUSR2, SIGWINCH, 0);
|
2007-02-04 06:33:13 +00:00
|
|
|
handle(alrm_handler, SIGALRM, 0);
|
|
|
|
sigfillset(&mask);
|
|
|
|
delset(&mask, SIGABRT, SIGFPE, SIGILL, SIGSEGV, SIGBUS, SIGSYS,
|
2015-11-08 17:33:48 +00:00
|
|
|
SIGXCPU, SIGXFSZ, SIGHUP, SIGINT, SIGEMT, SIGTERM, SIGTSTP,
|
2017-10-25 15:30:40 +00:00
|
|
|
SIGALRM, SIGUSR1, SIGUSR2, SIGWINCH, 0);
|
2018-08-09 12:17:03 +00:00
|
|
|
sigprocmask(SIG_SETMASK, &mask, NULL);
|
2007-02-04 06:33:13 +00:00
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
sa.sa_flags = 0;
|
|
|
|
sa.sa_handler = SIG_IGN;
|
2018-08-09 12:17:03 +00:00
|
|
|
sigaction(SIGTTIN, &sa, NULL);
|
|
|
|
sigaction(SIGTTOU, &sa, NULL);
|
2007-02-04 06:33:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Paranoia.
|
|
|
|
*/
|
|
|
|
close(0);
|
|
|
|
close(1);
|
|
|
|
close(2);
|
|
|
|
|
2018-08-14 11:01:52 +00:00
|
|
|
if (kenv(KENV_GET, "init_exec", kenv_value, sizeof(kenv_value)) > 0) {
|
|
|
|
replace_init(kenv_value);
|
|
|
|
_exit(0); /* reboot */
|
|
|
|
}
|
|
|
|
|
2007-02-04 06:33:13 +00:00
|
|
|
if (kenv(KENV_GET, "init_script", kenv_value, sizeof(kenv_value)) > 0) {
|
|
|
|
state_func_t next_transition;
|
|
|
|
|
2016-05-16 00:34:48 +00:00
|
|
|
if ((next_transition = run_script(kenv_value)) != NULL)
|
2007-02-04 06:33:13 +00:00
|
|
|
initial_transition = (state_t) next_transition;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (kenv(KENV_GET, "init_chroot", kenv_value, sizeof(kenv_value)) > 0) {
|
|
|
|
if (chdir(kenv_value) != 0 || chroot(".") != 0)
|
|
|
|
warning("Can't chroot to %s: %m", kenv_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Additional check if devfs needs to be mounted:
|
|
|
|
* If "/" and "/dev" have the same device number,
|
|
|
|
* then it hasn't been mounted yet.
|
|
|
|
*/
|
|
|
|
if (!devfs) {
|
|
|
|
struct stat stst;
|
|
|
|
dev_t root_devno;
|
|
|
|
|
|
|
|
stat("/", &stst);
|
|
|
|
root_devno = stst.st_dev;
|
|
|
|
if (stat("/dev", &stst) != 0)
|
|
|
|
warning("Can't stat /dev: %m");
|
|
|
|
else if (stst.st_dev == root_devno)
|
|
|
|
devfs++;
|
|
|
|
}
|
|
|
|
|
1996-10-28 11:03:19 +00:00
|
|
|
if (devfs) {
|
2002-08-03 16:21:33 +00:00
|
|
|
struct iovec iov[4];
|
2001-02-08 22:07:08 +00:00
|
|
|
char *s;
|
|
|
|
int i;
|
|
|
|
|
2005-01-11 14:34:29 +00:00
|
|
|
char _fstype[] = "fstype";
|
|
|
|
char _devfs[] = "devfs";
|
|
|
|
char _fspath[] = "fspath";
|
|
|
|
char _path_dev[]= _PATH_DEV;
|
|
|
|
|
|
|
|
iov[0].iov_base = _fstype;
|
|
|
|
iov[0].iov_len = sizeof(_fstype);
|
|
|
|
iov[1].iov_base = _devfs;
|
|
|
|
iov[1].iov_len = sizeof(_devfs);
|
|
|
|
iov[2].iov_base = _fspath;
|
|
|
|
iov[2].iov_len = sizeof(_fspath);
|
2007-11-20 21:25:58 +00:00
|
|
|
/*
|
2001-02-08 22:07:08 +00:00
|
|
|
* Try to avoid the trailing slash in _PATH_DEV.
|
|
|
|
* Be *very* defensive.
|
|
|
|
*/
|
|
|
|
s = strdup(_PATH_DEV);
|
|
|
|
if (s != NULL) {
|
|
|
|
i = strlen(s);
|
|
|
|
if (i > 0 && s[i - 1] == '/')
|
|
|
|
s[i - 1] = '\0';
|
2002-08-03 16:21:33 +00:00
|
|
|
iov[3].iov_base = s;
|
|
|
|
iov[3].iov_len = strlen(s) + 1;
|
2001-02-08 22:07:08 +00:00
|
|
|
} else {
|
2005-01-11 14:34:29 +00:00
|
|
|
iov[3].iov_base = _path_dev;
|
|
|
|
iov[3].iov_len = sizeof(_path_dev);
|
2001-02-08 22:07:08 +00:00
|
|
|
}
|
2002-08-03 16:21:33 +00:00
|
|
|
nmount(iov, 4, 0);
|
|
|
|
if (s != NULL)
|
|
|
|
free(s);
|
1996-10-28 11:03:19 +00:00
|
|
|
}
|
|
|
|
|
2015-11-08 17:33:48 +00:00
|
|
|
if (initial_transition != reroot_phase_two) {
|
|
|
|
/*
|
|
|
|
* Unmount reroot leftovers. This runs after init(8)
|
|
|
|
* gets reexecuted after reroot_phase_two() is done.
|
|
|
|
*/
|
|
|
|
error = unmount(_PATH_REROOT, MNT_FORCE);
|
|
|
|
if (error != 0 && errno != EINVAL)
|
|
|
|
warning("Cannot unmount %s: %m", _PATH_REROOT);
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* Start the state machine.
|
|
|
|
*/
|
2007-02-04 06:33:13 +00:00
|
|
|
transition(initial_transition);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Should never reach here.
|
|
|
|
*/
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Associate a function with a signal handler.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
1994-05-26 06:35:07 +00:00
|
|
|
handle(sig_t handler, ...)
|
|
|
|
{
|
|
|
|
int sig;
|
|
|
|
struct sigaction sa;
|
1998-03-02 23:19:29 +00:00
|
|
|
sigset_t mask_everything;
|
1994-05-26 06:35:07 +00:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, handler);
|
|
|
|
|
|
|
|
sa.sa_handler = handler;
|
|
|
|
sigfillset(&mask_everything);
|
|
|
|
|
2004-03-11 10:01:12 +00:00
|
|
|
while ((sig = va_arg(ap, int)) != 0) {
|
1994-05-26 06:35:07 +00:00
|
|
|
sa.sa_mask = mask_everything;
|
|
|
|
/* XXX SA_RESTART? */
|
|
|
|
sa.sa_flags = sig == SIGCHLD ? SA_NOCLDSTOP : 0;
|
2018-08-09 12:17:03 +00:00
|
|
|
sigaction(sig, &sa, NULL);
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Delete a set of signals from a mask.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
1994-05-26 06:35:07 +00:00
|
|
|
delset(sigset_t *maskp, ...)
|
|
|
|
{
|
|
|
|
int sig;
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, maskp);
|
|
|
|
|
2004-03-11 10:01:12 +00:00
|
|
|
while ((sig = va_arg(ap, int)) != 0)
|
1994-05-26 06:35:07 +00:00
|
|
|
sigdelset(maskp, sig);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Log a message and sleep for a while (to give someone an opportunity
|
|
|
|
* to read it and to save log or hardcopy output if the problem is chronic).
|
|
|
|
* NB: should send a message to the session logger to avoid blocking.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2001-08-19 08:19:37 +00:00
|
|
|
stall(const char *message, ...)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, message);
|
|
|
|
|
|
|
|
vsyslog(LOG_ALERT, message, ap);
|
|
|
|
va_end(ap);
|
|
|
|
sleep(STALL_TIMEOUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like stall(), but doesn't sleep.
|
|
|
|
* If cpp had variadic macros, the two functions could be #defines for another.
|
|
|
|
* NB: should send a message to the session logger to avoid blocking.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2001-08-19 08:19:37 +00:00
|
|
|
warning(const char *message, ...)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, message);
|
|
|
|
|
|
|
|
vsyslog(LOG_ALERT, message, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Log an emergency message.
|
|
|
|
* NB: should send a message to the session logger to avoid blocking.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2001-08-19 08:19:37 +00:00
|
|
|
emergency(const char *message, ...)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, message);
|
|
|
|
|
|
|
|
vsyslog(LOG_EMERG, message, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Catch a SIGSYS signal.
|
|
|
|
*
|
|
|
|
* These may arise if a system does not support sysctl.
|
|
|
|
* We tolerate up to 25 of these, then throw in the towel.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
badsys(int sig)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
static int badcount = 0;
|
|
|
|
|
|
|
|
if (badcount++ < 25)
|
|
|
|
return;
|
|
|
|
disaster(sig);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Catch an unexpected signal.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
disaster(int sig)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2007-11-20 19:50:45 +00:00
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
emergency("fatal signal: %s",
|
2007-11-20 19:50:45 +00:00
|
|
|
(unsigned)sig < NSIG ? sys_siglist[sig] : "unknown signal");
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
sleep(STALL_TIMEOUT);
|
|
|
|
_exit(sig); /* reboot */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the security level of the kernel.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static int
|
2002-03-20 22:53:13 +00:00
|
|
|
getsecuritylevel(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
#ifdef KERN_SECURELVL
|
|
|
|
int name[2], curlevel;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_SECURELVL;
|
|
|
|
len = sizeof curlevel;
|
|
|
|
if (sysctl(name, 2, &curlevel, &len, NULL, 0) == -1) {
|
|
|
|
emergency("cannot get kernel security level: %s",
|
|
|
|
strerror(errno));
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (curlevel);
|
|
|
|
#else
|
|
|
|
return (-1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the security level of the kernel.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
setsecuritylevel(int newlevel)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
#ifdef KERN_SECURELVL
|
|
|
|
int name[2], curlevel;
|
|
|
|
|
|
|
|
curlevel = getsecuritylevel();
|
|
|
|
if (newlevel == curlevel)
|
|
|
|
return;
|
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_SECURELVL;
|
|
|
|
if (sysctl(name, 2, NULL, NULL, &newlevel, sizeof newlevel) == -1) {
|
|
|
|
emergency(
|
|
|
|
"cannot change kernel security level from %d to %d: %s",
|
|
|
|
curlevel, newlevel, strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#ifdef SECURE
|
|
|
|
warning("kernel security level changed from %d to %d",
|
|
|
|
curlevel, newlevel);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change states in the finite state machine.
|
|
|
|
* The initial state is passed as an argument.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
transition(state_t s)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2007-11-20 19:50:45 +00:00
|
|
|
|
2011-01-23 14:22:26 +00:00
|
|
|
current_state = s;
|
1994-05-26 06:35:07 +00:00
|
|
|
for (;;)
|
2011-01-23 14:22:26 +00:00
|
|
|
current_state = (state_t) (*current_state)();
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Start a session and allocate a controlling terminal.
|
|
|
|
* Only called by children of init after forking.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2012-03-14 16:22:09 +00:00
|
|
|
open_console(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
2012-04-06 13:06:01 +00:00
|
|
|
/*
|
|
|
|
* Try to open /dev/console. Open the device with O_NONBLOCK to
|
|
|
|
* prevent potential blocking on a carrier.
|
|
|
|
*/
|
2012-03-14 16:22:09 +00:00
|
|
|
revoke(_PATH_CONSOLE);
|
|
|
|
if ((fd = open(_PATH_CONSOLE, O_RDWR | O_NONBLOCK)) != -1) {
|
2012-04-06 13:06:01 +00:00
|
|
|
(void)fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) & ~O_NONBLOCK);
|
2012-03-14 16:22:09 +00:00
|
|
|
if (login_tty(fd) == 0)
|
|
|
|
return;
|
|
|
|
close(fd);
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
2012-03-14 16:22:09 +00:00
|
|
|
|
|
|
|
/* No luck. Log output to file if possible. */
|
|
|
|
if ((fd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
|
|
|
|
stall("cannot open null device.");
|
1994-05-26 06:35:07 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
2012-03-14 16:22:09 +00:00
|
|
|
if (fd != STDIN_FILENO) {
|
|
|
|
dup2(fd, STDIN_FILENO);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
fd = open(_PATH_INITLOG, O_WRONLY | O_APPEND | O_CREAT, 0644);
|
|
|
|
if (fd == -1)
|
|
|
|
dup2(STDIN_FILENO, STDOUT_FILENO);
|
|
|
|
else if (fd != STDOUT_FILENO) {
|
|
|
|
dup2(fd, STDOUT_FILENO);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
dup2(STDOUT_FILENO, STDERR_FILENO);
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
2008-09-27 00:09:10 +00:00
|
|
|
static const char *
|
2007-02-04 06:33:13 +00:00
|
|
|
get_shell(void)
|
|
|
|
{
|
|
|
|
static char kenv_value[PATH_MAX];
|
|
|
|
|
|
|
|
if (kenv(KENV_GET, "init_shell", kenv_value, sizeof(kenv_value)) > 0)
|
|
|
|
return kenv_value;
|
|
|
|
else
|
|
|
|
return _PATH_BSHELL;
|
|
|
|
}
|
|
|
|
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2007-02-04 06:33:13 +00:00
|
|
|
write_stderr(const char *message)
|
|
|
|
{
|
2007-11-20 19:50:45 +00:00
|
|
|
|
2007-02-04 06:33:13 +00:00
|
|
|
write(STDERR_FILENO, message, strlen(message));
|
|
|
|
}
|
|
|
|
|
2015-11-08 17:33:48 +00:00
|
|
|
static int
|
|
|
|
read_file(const char *path, void **bufp, size_t *bufsizep)
|
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
size_t bufsize;
|
|
|
|
void *buf;
|
|
|
|
ssize_t nbytes;
|
|
|
|
int error, fd;
|
|
|
|
|
|
|
|
fd = open(path, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
emergency("%s: %s", path, strerror(errno));
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
error = fstat(fd, &sb);
|
|
|
|
if (error != 0) {
|
|
|
|
emergency("fstat: %s", strerror(errno));
|
2015-11-11 23:00:57 +00:00
|
|
|
close(fd);
|
2015-11-08 17:33:48 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
bufsize = sb.st_size;
|
|
|
|
buf = malloc(bufsize);
|
|
|
|
if (buf == NULL) {
|
|
|
|
emergency("malloc: %s", strerror(errno));
|
2015-11-11 23:00:57 +00:00
|
|
|
close(fd);
|
2015-11-08 17:33:48 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
nbytes = read(fd, buf, bufsize);
|
|
|
|
if (nbytes != (ssize_t)bufsize) {
|
|
|
|
emergency("read: %s", strerror(errno));
|
2015-11-11 23:00:57 +00:00
|
|
|
close(fd);
|
2015-11-08 17:33:48 +00:00
|
|
|
free(buf);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
error = close(fd);
|
|
|
|
if (error != 0) {
|
|
|
|
emergency("close: %s", strerror(errno));
|
|
|
|
free(buf);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
*bufp = buf;
|
|
|
|
*bufsizep = bufsize;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-11-11 23:00:57 +00:00
|
|
|
create_file(const char *path, const void *buf, size_t bufsize)
|
2015-11-08 17:33:48 +00:00
|
|
|
{
|
|
|
|
ssize_t nbytes;
|
|
|
|
int error, fd;
|
|
|
|
|
|
|
|
fd = open(path, O_WRONLY | O_CREAT | O_EXCL, 0700);
|
|
|
|
if (fd < 0) {
|
|
|
|
emergency("%s: %s", path, strerror(errno));
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
nbytes = write(fd, buf, bufsize);
|
|
|
|
if (nbytes != (ssize_t)bufsize) {
|
|
|
|
emergency("write: %s", strerror(errno));
|
2015-11-11 23:00:57 +00:00
|
|
|
close(fd);
|
2015-11-08 17:33:48 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
error = close(fd);
|
|
|
|
if (error != 0) {
|
|
|
|
emergency("close: %s", strerror(errno));
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
mount_tmpfs(const char *fspath)
|
|
|
|
{
|
|
|
|
struct iovec *iov;
|
|
|
|
char errmsg[255];
|
|
|
|
int error, iovlen;
|
|
|
|
|
|
|
|
iov = NULL;
|
|
|
|
iovlen = 0;
|
|
|
|
memset(errmsg, 0, sizeof(errmsg));
|
|
|
|
build_iovec(&iov, &iovlen, "fstype",
|
|
|
|
__DECONST(void *, "tmpfs"), (size_t)-1);
|
|
|
|
build_iovec(&iov, &iovlen, "fspath",
|
|
|
|
__DECONST(void *, fspath), (size_t)-1);
|
|
|
|
build_iovec(&iov, &iovlen, "errmsg",
|
|
|
|
errmsg, sizeof(errmsg));
|
|
|
|
|
|
|
|
error = nmount(iov, iovlen, 0);
|
|
|
|
if (error != 0) {
|
|
|
|
if (*errmsg != '\0') {
|
|
|
|
emergency("cannot mount tmpfs on %s: %s: %s",
|
|
|
|
fspath, errmsg, strerror(errno));
|
|
|
|
} else {
|
|
|
|
emergency("cannot mount tmpfs on %s: %s",
|
|
|
|
fspath, strerror(errno));
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static state_func_t
|
|
|
|
reroot(void)
|
|
|
|
{
|
|
|
|
void *buf;
|
2016-05-11 10:03:13 +00:00
|
|
|
size_t bufsize;
|
|
|
|
int error;
|
2015-11-08 17:33:48 +00:00
|
|
|
|
2015-11-11 23:00:57 +00:00
|
|
|
buf = NULL;
|
|
|
|
bufsize = 0;
|
|
|
|
|
2015-11-08 17:33:48 +00:00
|
|
|
revoke_ttys();
|
|
|
|
runshutdown();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure nobody can interfere with our scheme.
|
2016-05-11 09:30:18 +00:00
|
|
|
* Ignore ESRCH, which can apparently happen when
|
|
|
|
* there are no processes to kill.
|
2015-11-08 17:33:48 +00:00
|
|
|
*/
|
|
|
|
error = kill(-1, SIGKILL);
|
2016-05-11 09:30:18 +00:00
|
|
|
if (error != 0 && errno != ESRCH) {
|
2015-11-08 17:33:48 +00:00
|
|
|
emergency("kill(2) failed: %s", strerror(errno));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy the init binary into tmpfs, so that we can unmount
|
|
|
|
* the old rootfs without committing suicide.
|
|
|
|
*/
|
2016-05-11 10:03:13 +00:00
|
|
|
error = read_file(init_path_argv0, &buf, &bufsize);
|
2015-11-08 17:33:48 +00:00
|
|
|
if (error != 0)
|
|
|
|
goto out;
|
|
|
|
error = mount_tmpfs(_PATH_REROOT);
|
|
|
|
if (error != 0)
|
|
|
|
goto out;
|
|
|
|
error = create_file(_PATH_REROOT_INIT, buf, bufsize);
|
|
|
|
if (error != 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Execute the temporary init.
|
|
|
|
*/
|
|
|
|
execl(_PATH_REROOT_INIT, _PATH_REROOT_INIT, "-r", NULL);
|
|
|
|
emergency("cannot exec %s: %s", _PATH_REROOT_INIT, strerror(errno));
|
|
|
|
|
|
|
|
out:
|
|
|
|
emergency("reroot failed; going to single user mode");
|
2015-11-11 23:00:57 +00:00
|
|
|
free(buf);
|
2015-11-08 17:33:48 +00:00
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
static state_func_t
|
|
|
|
reroot_phase_two(void)
|
|
|
|
{
|
|
|
|
char init_path[PATH_MAX], *path, *path_component;
|
|
|
|
size_t init_path_len;
|
|
|
|
int nbytes, error;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ask the kernel to mount the new rootfs.
|
|
|
|
*/
|
|
|
|
error = reboot(RB_REROOT);
|
|
|
|
if (error != 0) {
|
|
|
|
emergency("RB_REBOOT failed: %s", strerror(errno));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Figure out where the destination init(8) binary is. Note that
|
|
|
|
* the path could be different than what we've started with. Use
|
|
|
|
* the value from kenv, if set, or the one from sysctl otherwise.
|
|
|
|
* The latter defaults to a hardcoded value, but can be overridden
|
|
|
|
* by a build time option.
|
|
|
|
*/
|
|
|
|
nbytes = kenv(KENV_GET, "init_path", init_path, sizeof(init_path));
|
|
|
|
if (nbytes <= 0) {
|
|
|
|
init_path_len = sizeof(init_path);
|
|
|
|
error = sysctlbyname("kern.init_path",
|
|
|
|
init_path, &init_path_len, NULL, 0);
|
|
|
|
if (error != 0) {
|
|
|
|
emergency("failed to retrieve kern.init_path: %s",
|
|
|
|
strerror(errno));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Repeat the init search logic from sys/kern/init_path.c
|
|
|
|
*/
|
|
|
|
path_component = init_path;
|
|
|
|
while ((path = strsep(&path_component, ":")) != NULL) {
|
|
|
|
/*
|
|
|
|
* Execute init(8) from the new rootfs.
|
|
|
|
*/
|
|
|
|
execl(path, path, NULL);
|
|
|
|
}
|
|
|
|
emergency("cannot exec init from %s: %s", init_path, strerror(errno));
|
|
|
|
|
|
|
|
out:
|
|
|
|
emergency("reroot failed; going to single user mode");
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* Bring the system up single user.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t
|
2002-03-20 22:53:13 +00:00
|
|
|
single_user(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
pid_t pid, wpid;
|
|
|
|
int status;
|
|
|
|
sigset_t mask;
|
2007-02-04 06:33:13 +00:00
|
|
|
const char *shell;
|
1994-05-26 06:35:07 +00:00
|
|
|
char *argv[2];
|
2016-10-07 13:41:28 +00:00
|
|
|
struct timeval tv, tn;
|
1994-05-26 06:35:07 +00:00
|
|
|
#ifdef SECURE
|
|
|
|
struct ttyent *typ;
|
|
|
|
struct passwd *pp;
|
|
|
|
static const char banner[] =
|
|
|
|
"Enter root password, or ^D to go multi-user\n";
|
|
|
|
char *clear, *password;
|
|
|
|
#endif
|
1998-07-22 05:45:11 +00:00
|
|
|
#ifdef DEBUGSHELL
|
|
|
|
char altshell[128];
|
|
|
|
#endif
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1994-08-28 10:00:49 +00:00
|
|
|
if (Reboot) {
|
1999-06-16 20:01:19 +00:00
|
|
|
/* Instead of going single user, let's reboot the machine */
|
1994-08-27 21:32:01 +00:00
|
|
|
sync();
|
2016-10-07 13:43:38 +00:00
|
|
|
if (reboot(howto) == -1) {
|
|
|
|
emergency("reboot(%#x) failed, %s", howto,
|
|
|
|
strerror(errno));
|
|
|
|
_exit(1); /* panic and reboot */
|
|
|
|
}
|
|
|
|
warning("reboot(%#x) returned", howto);
|
|
|
|
_exit(0); /* panic as well */
|
1994-08-27 21:32:01 +00:00
|
|
|
}
|
|
|
|
|
2007-02-04 06:33:13 +00:00
|
|
|
shell = get_shell();
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
if ((pid = fork()) == 0) {
|
|
|
|
/*
|
|
|
|
* Start the single user session.
|
|
|
|
*/
|
2012-03-14 16:22:09 +00:00
|
|
|
open_console();
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
#ifdef SECURE
|
|
|
|
/*
|
|
|
|
* Check the root password.
|
|
|
|
* We don't care if the console is 'on' by default;
|
|
|
|
* it's the only tty that can be 'off' and 'secure'.
|
|
|
|
*/
|
|
|
|
typ = getttynam("console");
|
|
|
|
pp = getpwnam("root");
|
1999-11-22 04:23:11 +00:00
|
|
|
if (typ && (typ->ty_status & TTY_SECURE) == 0 &&
|
|
|
|
pp && *pp->pw_passwd) {
|
2007-02-04 06:33:13 +00:00
|
|
|
write_stderr(banner);
|
1994-05-26 06:35:07 +00:00
|
|
|
for (;;) {
|
|
|
|
clear = getpass("Password:");
|
2016-05-16 00:34:48 +00:00
|
|
|
if (clear == NULL || *clear == '\0')
|
1994-05-26 06:35:07 +00:00
|
|
|
_exit(0);
|
|
|
|
password = crypt(clear, pp->pw_passwd);
|
|
|
|
bzero(clear, _PASSWORD_LEN);
|
2017-10-03 00:53:11 +00:00
|
|
|
if (password != NULL &&
|
2012-02-22 06:27:20 +00:00
|
|
|
strcmp(password, pp->pw_passwd) == 0)
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
|
|
|
warning("single-user login failed\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
endttyent();
|
|
|
|
endpwent();
|
|
|
|
#endif /* SECURE */
|
|
|
|
|
|
|
|
#ifdef DEBUGSHELL
|
|
|
|
{
|
1998-07-22 05:45:11 +00:00
|
|
|
char *cp = altshell;
|
1994-05-26 06:35:07 +00:00
|
|
|
int num;
|
|
|
|
|
2007-02-04 06:33:13 +00:00
|
|
|
#define SHREQUEST "Enter full pathname of shell or RETURN for "
|
|
|
|
write_stderr(SHREQUEST);
|
|
|
|
write_stderr(shell);
|
|
|
|
write_stderr(": ");
|
1994-05-26 06:35:07 +00:00
|
|
|
while ((num = read(STDIN_FILENO, cp, 1)) != -1 &&
|
|
|
|
num != 0 && *cp != '\n' && cp < &altshell[127])
|
2007-11-20 19:50:45 +00:00
|
|
|
cp++;
|
1994-05-26 06:35:07 +00:00
|
|
|
*cp = '\0';
|
|
|
|
if (altshell[0] != '\0')
|
|
|
|
shell = altshell;
|
|
|
|
}
|
|
|
|
#endif /* DEBUGSHELL */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unblock signals.
|
|
|
|
* We catch all the interesting ones,
|
|
|
|
* and those are reset to SIG_DFL on exec.
|
|
|
|
*/
|
|
|
|
sigemptyset(&mask);
|
2018-08-09 12:17:03 +00:00
|
|
|
sigprocmask(SIG_SETMASK, &mask, NULL);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fire off a shell.
|
|
|
|
* If the default one doesn't work, try the Bourne shell.
|
|
|
|
*/
|
2005-01-11 14:34:29 +00:00
|
|
|
|
|
|
|
char name[] = "-sh";
|
|
|
|
|
|
|
|
argv[0] = name;
|
2018-08-17 14:57:13 +00:00
|
|
|
argv[1] = NULL;
|
1994-05-26 06:35:07 +00:00
|
|
|
execv(shell, argv);
|
|
|
|
emergency("can't exec %s for single user: %m", shell);
|
|
|
|
execv(_PATH_BSHELL, argv);
|
|
|
|
emergency("can't exec %s for single user: %m", _PATH_BSHELL);
|
|
|
|
sleep(STALL_TIMEOUT);
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid == -1) {
|
|
|
|
/*
|
|
|
|
* We are seriously hosed. Do our best.
|
|
|
|
*/
|
|
|
|
emergency("can't fork single-user shell, trying again");
|
|
|
|
while (waitpid(-1, (int *) 0, WNOHANG) > 0)
|
|
|
|
continue;
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
requested_transition = 0;
|
|
|
|
do {
|
|
|
|
if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
|
|
|
|
collect_child(wpid);
|
|
|
|
if (wpid == -1) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
warning("wait for single-user shell failed: %m; restarting");
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
|
|
|
if (wpid == pid && WIFSTOPPED(status)) {
|
|
|
|
warning("init: shell stopped, restarting\n");
|
|
|
|
kill(pid, SIGCONT);
|
|
|
|
wpid = -1;
|
|
|
|
}
|
|
|
|
} while (wpid != pid && !requested_transition);
|
|
|
|
|
|
|
|
if (requested_transition)
|
|
|
|
return (state_func_t) requested_transition;
|
|
|
|
|
|
|
|
if (!WIFEXITED(status)) {
|
1995-05-30 06:12:45 +00:00
|
|
|
if (WTERMSIG(status) == SIGKILL) {
|
|
|
|
/*
|
|
|
|
* reboot(8) killed shell?
|
1994-05-26 06:35:07 +00:00
|
|
|
*/
|
|
|
|
warning("single user shell terminated.");
|
2016-10-07 13:41:28 +00:00
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
tn = tv;
|
|
|
|
tv.tv_sec += STALL_TIMEOUT;
|
|
|
|
while (tv.tv_sec > tn.tv_sec || (tv.tv_sec ==
|
|
|
|
tn.tv_sec && tv.tv_usec > tn.tv_usec)) {
|
|
|
|
sleep(1);
|
|
|
|
gettimeofday(&tn, NULL);
|
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
_exit(0);
|
1995-05-30 06:12:45 +00:00
|
|
|
} else {
|
1994-05-26 06:35:07 +00:00
|
|
|
warning("single user shell terminated, restarting");
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
runcom_mode = FASTBOOT;
|
|
|
|
return (state_func_t) runcom;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Run the system startup script.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t
|
2002-03-20 22:53:13 +00:00
|
|
|
runcom(void)
|
2007-02-04 06:33:13 +00:00
|
|
|
{
|
|
|
|
state_func_t next_transition;
|
|
|
|
|
2016-05-16 00:34:48 +00:00
|
|
|
if ((next_transition = run_script(_PATH_RUNCOM)) != NULL)
|
2007-02-04 06:33:13 +00:00
|
|
|
return next_transition;
|
|
|
|
|
|
|
|
runcom_mode = AUTOBOOT; /* the default */
|
|
|
|
return (state_func_t) read_ttys;
|
|
|
|
}
|
|
|
|
|
2018-08-09 12:13:08 +00:00
|
|
|
static void
|
|
|
|
execute_script(char *argv[])
|
|
|
|
{
|
|
|
|
struct sigaction sa;
|
|
|
|
const char *shell, *script;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
bzero(&sa, sizeof(sa));
|
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
sa.sa_handler = SIG_IGN;
|
|
|
|
sigaction(SIGTSTP, &sa, NULL);
|
|
|
|
sigaction(SIGHUP, &sa, NULL);
|
|
|
|
|
|
|
|
open_console();
|
|
|
|
|
|
|
|
sigprocmask(SIG_SETMASK, &sa.sa_mask, NULL);
|
|
|
|
#ifdef LOGIN_CAP
|
|
|
|
setprocresources(RESOURCE_RC);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to directly execute the script first. If it
|
|
|
|
* fails, try the old method of passing the script path
|
|
|
|
* to sh(1). Don't complain if it fails because of
|
|
|
|
* the missing execute bit.
|
|
|
|
*/
|
|
|
|
script = argv[1];
|
|
|
|
error = access(script, X_OK);
|
|
|
|
if (error == 0) {
|
|
|
|
execv(script, argv + 1);
|
2019-03-26 19:38:25 +00:00
|
|
|
warning("can't directly exec %s: %m", script);
|
2018-08-09 12:13:08 +00:00
|
|
|
} else if (errno != EACCES) {
|
|
|
|
warning("can't access %s: %m", script);
|
|
|
|
}
|
|
|
|
|
|
|
|
shell = get_shell();
|
|
|
|
execv(shell, argv);
|
|
|
|
stall("can't exec %s for %s: %m", shell, script);
|
|
|
|
}
|
|
|
|
|
2018-08-14 11:01:52 +00:00
|
|
|
/*
|
|
|
|
* Execute binary, replacing init(8) as PID 1.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
replace_init(char *path)
|
|
|
|
{
|
|
|
|
char *argv[3];
|
|
|
|
char sh[] = "sh";
|
|
|
|
|
|
|
|
argv[0] = sh;
|
|
|
|
argv[1] = path;
|
|
|
|
argv[2] = NULL;
|
|
|
|
|
|
|
|
execute_script(argv);
|
|
|
|
}
|
|
|
|
|
2007-02-04 06:33:13 +00:00
|
|
|
/*
|
|
|
|
* Run a shell script.
|
|
|
|
* Returns 0 on success, otherwise the next transition to enter:
|
|
|
|
* - single_user if fork/execv/waitpid failed, or if the script
|
|
|
|
* terminated with a signal or exit code != 0.
|
2011-01-23 14:22:26 +00:00
|
|
|
* - death_single if a SIGTERM was delivered to init(8).
|
2007-02-04 06:33:13 +00:00
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t
|
2007-02-04 06:33:13 +00:00
|
|
|
run_script(const char *script)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
pid_t pid, wpid;
|
2018-08-09 12:13:08 +00:00
|
|
|
int status;
|
1994-05-26 06:35:07 +00:00
|
|
|
char *argv[4];
|
2007-02-04 06:33:13 +00:00
|
|
|
const char *shell;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2007-02-04 06:33:13 +00:00
|
|
|
shell = get_shell();
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
if ((pid = fork()) == 0) {
|
|
|
|
|
2012-03-11 22:30:06 +00:00
|
|
|
char _sh[] = "sh";
|
2005-01-11 14:34:29 +00:00
|
|
|
char _autoboot[] = "autoboot";
|
|
|
|
|
|
|
|
argv[0] = _sh;
|
2007-02-04 06:33:13 +00:00
|
|
|
argv[1] = __DECONST(char *, script);
|
2005-01-11 14:34:29 +00:00
|
|
|
argv[2] = runcom_mode == AUTOBOOT ? _autoboot : 0;
|
2018-08-17 14:57:13 +00:00
|
|
|
argv[3] = NULL;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2018-08-09 12:13:08 +00:00
|
|
|
execute_script(argv);
|
|
|
|
sleep(STALL_TIMEOUT);
|
1994-05-26 06:35:07 +00:00
|
|
|
_exit(1); /* force single user mode */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid == -1) {
|
2007-02-04 06:33:13 +00:00
|
|
|
emergency("can't fork for %s on %s: %m", shell, script);
|
1994-05-26 06:35:07 +00:00
|
|
|
while (waitpid(-1, (int *) 0, WNOHANG) > 0)
|
|
|
|
continue;
|
|
|
|
sleep(STALL_TIMEOUT);
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copied from single_user(). This is a bit paranoid.
|
|
|
|
*/
|
2001-10-15 20:34:43 +00:00
|
|
|
requested_transition = 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
do {
|
|
|
|
if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
|
|
|
|
collect_child(wpid);
|
|
|
|
if (wpid == -1) {
|
2015-11-08 17:33:48 +00:00
|
|
|
if (requested_transition == death_single ||
|
|
|
|
requested_transition == reroot)
|
|
|
|
return (state_func_t) requested_transition;
|
1994-05-26 06:35:07 +00:00
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
2007-02-04 06:33:13 +00:00
|
|
|
warning("wait for %s on %s failed: %m; going to "
|
|
|
|
"single user mode", shell, script);
|
1994-05-26 06:35:07 +00:00
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
|
|
|
if (wpid == pid && WIFSTOPPED(status)) {
|
|
|
|
warning("init: %s on %s stopped, restarting\n",
|
2007-11-20 19:50:45 +00:00
|
|
|
shell, script);
|
1994-05-26 06:35:07 +00:00
|
|
|
kill(pid, SIGCONT);
|
|
|
|
wpid = -1;
|
|
|
|
}
|
|
|
|
} while (wpid != pid);
|
|
|
|
|
|
|
|
if (WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM &&
|
|
|
|
requested_transition == catatonia) {
|
|
|
|
/* /etc/rc executed /sbin/reboot; wait for the end quietly */
|
|
|
|
sigset_t s;
|
|
|
|
|
|
|
|
sigfillset(&s);
|
|
|
|
for (;;)
|
|
|
|
sigsuspend(&s);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!WIFEXITED(status)) {
|
2007-02-04 06:33:13 +00:00
|
|
|
warning("%s on %s terminated abnormally, going to single "
|
|
|
|
"user mode", shell, script);
|
1994-05-26 06:35:07 +00:00
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WEXITSTATUS(status))
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
|
2007-02-04 06:33:13 +00:00
|
|
|
return (state_func_t) 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open the session database.
|
|
|
|
*
|
|
|
|
* NB: We could pass in the size here; is it necessary?
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static int
|
2002-03-20 22:53:13 +00:00
|
|
|
start_session_db(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
if (session_db && (*session_db->close)(session_db))
|
|
|
|
emergency("session database close: %s", strerror(errno));
|
2016-04-19 01:25:35 +00:00
|
|
|
if ((session_db = dbopen(NULL, O_RDWR, 0, DB_HASH, NULL)) == NULL) {
|
1994-05-26 06:35:07 +00:00
|
|
|
emergency("session database open: %s", strerror(errno));
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
return (0);
|
1995-05-30 06:12:45 +00:00
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a new login session.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
add_session(session_t *sp)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
DBT key;
|
|
|
|
DBT data;
|
|
|
|
|
|
|
|
key.data = &sp->se_process;
|
|
|
|
key.size = sizeof sp->se_process;
|
|
|
|
data.data = &sp;
|
|
|
|
data.size = sizeof sp;
|
|
|
|
|
|
|
|
if ((*session_db->put)(session_db, &key, &data, 0))
|
|
|
|
emergency("insert %d: %s", sp->se_process, strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Delete an old login session.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
del_session(session_t *sp)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
DBT key;
|
|
|
|
|
|
|
|
key.data = &sp->se_process;
|
|
|
|
key.size = sizeof sp->se_process;
|
|
|
|
|
|
|
|
if ((*session_db->del)(session_db, &key, 0))
|
|
|
|
emergency("delete %d: %s", sp->se_process, strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Look up a login session by pid.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static session_t *
|
1994-05-26 06:35:07 +00:00
|
|
|
find_session(pid_t pid)
|
|
|
|
{
|
|
|
|
DBT key;
|
|
|
|
DBT data;
|
|
|
|
session_t *ret;
|
|
|
|
|
|
|
|
key.data = &pid;
|
|
|
|
key.size = sizeof pid;
|
|
|
|
if ((*session_db->get)(session_db, &key, &data, 0) != 0)
|
|
|
|
return 0;
|
|
|
|
bcopy(data.data, (char *)&ret, sizeof(ret));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Construct an argument vector from a command line.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static char **
|
2002-03-20 22:53:13 +00:00
|
|
|
construct_argv(char *command)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-03-20 17:55:10 +00:00
|
|
|
int argc = 0;
|
|
|
|
char **argv = (char **) malloc(((strlen(command) + 1) / 2 + 1)
|
1994-05-26 06:35:07 +00:00
|
|
|
* sizeof (char *));
|
|
|
|
|
2016-05-16 00:34:48 +00:00
|
|
|
if ((argv[argc++] = strk(command)) == NULL) {
|
1999-07-23 08:28:46 +00:00
|
|
|
free(argv);
|
|
|
|
return (NULL);
|
|
|
|
}
|
1997-08-02 00:22:52 +00:00
|
|
|
while ((argv[argc++] = strk((char *) 0)) != NULL)
|
1994-05-26 06:35:07 +00:00
|
|
|
continue;
|
|
|
|
return argv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Deallocate a session descriptor.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
free_session(session_t *sp)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
free(sp->se_device);
|
|
|
|
if (sp->se_getty) {
|
|
|
|
free(sp->se_getty);
|
1994-10-14 17:15:40 +00:00
|
|
|
free(sp->se_getty_argv_space);
|
1994-05-26 06:35:07 +00:00
|
|
|
free(sp->se_getty_argv);
|
|
|
|
}
|
|
|
|
if (sp->se_window) {
|
|
|
|
free(sp->se_window);
|
1994-10-14 17:15:40 +00:00
|
|
|
free(sp->se_window_argv_space);
|
1994-05-26 06:35:07 +00:00
|
|
|
free(sp->se_window_argv);
|
|
|
|
}
|
1994-10-14 17:15:40 +00:00
|
|
|
if (sp->se_type)
|
|
|
|
free(sp->se_type);
|
1994-05-26 06:35:07 +00:00
|
|
|
free(sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a new session descriptor.
|
2000-02-19 20:28:45 +00:00
|
|
|
* Mark it SE_PRESENT.
|
1994-05-26 06:35:07 +00:00
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static session_t *
|
2014-02-08 13:51:15 +00:00
|
|
|
new_session(session_t *sprev, struct ttyent *typ)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-03-20 17:55:10 +00:00
|
|
|
session_t *sp;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
if ((typ->ty_status & TTY_ON) == 0 ||
|
|
|
|
typ->ty_name == 0 ||
|
|
|
|
typ->ty_getty == 0)
|
|
|
|
return 0;
|
|
|
|
|
1997-07-05 19:36:55 +00:00
|
|
|
sp = (session_t *) calloc(1, sizeof (session_t));
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2000-02-19 20:28:45 +00:00
|
|
|
sp->se_flags |= SE_PRESENT;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2018-02-27 10:54:15 +00:00
|
|
|
if ((typ->ty_status & TTY_IFEXISTS) != 0)
|
|
|
|
sp->se_flags |= SE_IFEXISTS;
|
|
|
|
|
|
|
|
if ((typ->ty_status & TTY_IFCONSOLE) != 0)
|
|
|
|
sp->se_flags |= SE_IFCONSOLE;
|
|
|
|
|
2017-07-07 02:48:55 +00:00
|
|
|
if (asprintf(&sp->se_device, "%s%s", _PATH_DEV, typ->ty_name) < 0)
|
|
|
|
err(1, "asprintf");
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
if (setupargv(sp, typ) == 0) {
|
|
|
|
free_session(sp);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
sp->se_next = 0;
|
2016-04-19 01:25:35 +00:00
|
|
|
if (sprev == NULL) {
|
1994-05-26 06:35:07 +00:00
|
|
|
sessions = sp;
|
|
|
|
sp->se_prev = 0;
|
|
|
|
} else {
|
|
|
|
sprev->se_next = sp;
|
|
|
|
sp->se_prev = sprev;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate getty and if useful window argv vectors.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static int
|
2002-03-20 22:53:13 +00:00
|
|
|
setupargv(session_t *sp, struct ttyent *typ)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
if (sp->se_getty) {
|
|
|
|
free(sp->se_getty);
|
1994-10-14 17:15:40 +00:00
|
|
|
free(sp->se_getty_argv_space);
|
1994-05-26 06:35:07 +00:00
|
|
|
free(sp->se_getty_argv);
|
|
|
|
}
|
2017-07-07 02:48:55 +00:00
|
|
|
if (asprintf(&sp->se_getty, "%s %s", typ->ty_getty, typ->ty_name) < 0)
|
|
|
|
err(1, "asprintf");
|
1994-10-14 17:15:40 +00:00
|
|
|
sp->se_getty_argv_space = strdup(sp->se_getty);
|
|
|
|
sp->se_getty_argv = construct_argv(sp->se_getty_argv_space);
|
2016-04-19 01:25:35 +00:00
|
|
|
if (sp->se_getty_argv == NULL) {
|
1994-05-26 06:35:07 +00:00
|
|
|
warning("can't parse getty for port %s", sp->se_device);
|
|
|
|
free(sp->se_getty);
|
1994-10-14 17:15:40 +00:00
|
|
|
free(sp->se_getty_argv_space);
|
|
|
|
sp->se_getty = sp->se_getty_argv_space = 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
return (0);
|
|
|
|
}
|
1994-10-14 17:15:40 +00:00
|
|
|
if (sp->se_window) {
|
1999-07-23 08:28:46 +00:00
|
|
|
free(sp->se_window);
|
1994-10-14 17:15:40 +00:00
|
|
|
free(sp->se_window_argv_space);
|
|
|
|
free(sp->se_window_argv);
|
|
|
|
}
|
|
|
|
sp->se_window = sp->se_window_argv_space = 0;
|
|
|
|
sp->se_window_argv = 0;
|
|
|
|
if (typ->ty_window) {
|
1994-05-26 06:35:07 +00:00
|
|
|
sp->se_window = strdup(typ->ty_window);
|
1994-10-14 17:15:40 +00:00
|
|
|
sp->se_window_argv_space = strdup(sp->se_window);
|
|
|
|
sp->se_window_argv = construct_argv(sp->se_window_argv_space);
|
2016-04-19 01:25:35 +00:00
|
|
|
if (sp->se_window_argv == NULL) {
|
1994-05-26 06:35:07 +00:00
|
|
|
warning("can't parse window for port %s",
|
2007-11-20 19:50:45 +00:00
|
|
|
sp->se_device);
|
1994-10-14 17:15:40 +00:00
|
|
|
free(sp->se_window_argv_space);
|
1994-05-26 06:35:07 +00:00
|
|
|
free(sp->se_window);
|
1994-10-14 17:15:40 +00:00
|
|
|
sp->se_window = sp->se_window_argv_space = 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
1994-10-14 17:15:40 +00:00
|
|
|
if (sp->se_type)
|
|
|
|
free(sp->se_type);
|
|
|
|
sp->se_type = typ->ty_type ? strdup(typ->ty_type) : 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Walk the list of ttys and create sessions for each active line.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t
|
2002-03-20 22:53:13 +00:00
|
|
|
read_ttys(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-03-20 17:55:10 +00:00
|
|
|
session_t *sp, *snext;
|
|
|
|
struct ttyent *typ;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Destroy any previous session state.
|
|
|
|
* There shouldn't be any, but just in case...
|
|
|
|
*/
|
|
|
|
for (sp = sessions; sp; sp = snext) {
|
|
|
|
snext = sp->se_next;
|
|
|
|
free_session(sp);
|
|
|
|
}
|
|
|
|
sessions = 0;
|
|
|
|
if (start_session_db())
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a session entry for each active port.
|
|
|
|
* Note that sp starts at 0.
|
|
|
|
*/
|
1997-08-02 00:22:52 +00:00
|
|
|
while ((typ = getttyent()) != NULL)
|
2014-02-08 13:51:15 +00:00
|
|
|
if ((snext = new_session(sp, typ)) != NULL)
|
1994-05-26 06:35:07 +00:00
|
|
|
sp = snext;
|
|
|
|
|
|
|
|
endttyent();
|
|
|
|
|
|
|
|
return (state_func_t) multi_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Start a window system running.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
start_window_system(session_t *sp)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
sigset_t mask;
|
1994-10-14 17:15:40 +00:00
|
|
|
char term[64], *env[2];
|
2006-06-08 14:04:36 +00:00
|
|
|
int status;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
if ((pid = fork()) == -1) {
|
|
|
|
emergency("can't fork for window system on port %s: %m",
|
2007-11-20 19:50:45 +00:00
|
|
|
sp->se_device);
|
1994-05-26 06:35:07 +00:00
|
|
|
/* hope that getty fails and we can try again */
|
|
|
|
return;
|
|
|
|
}
|
2007-11-20 19:50:45 +00:00
|
|
|
if (pid) {
|
2006-06-08 14:04:36 +00:00
|
|
|
waitpid(-1, &status, 0);
|
1994-05-26 06:35:07 +00:00
|
|
|
return;
|
2006-06-08 14:04:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* reparent window process to the init to not make a zombie on exit */
|
|
|
|
if ((pid = fork()) == -1) {
|
|
|
|
emergency("can't fork for window system on port %s: %m",
|
2007-11-20 19:50:45 +00:00
|
|
|
sp->se_device);
|
2006-06-08 14:04:36 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
if (pid)
|
|
|
|
_exit(0);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
sigemptyset(&mask);
|
2018-08-09 12:17:03 +00:00
|
|
|
sigprocmask(SIG_SETMASK, &mask, NULL);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
if (setsid() < 0)
|
|
|
|
emergency("setsid failed (window) %m");
|
|
|
|
|
1997-01-19 16:49:13 +00:00
|
|
|
#ifdef LOGIN_CAP
|
|
|
|
setprocresources(RESOURCE_WINDOW);
|
|
|
|
#endif
|
1994-10-14 17:15:40 +00:00
|
|
|
if (sp->se_type) {
|
|
|
|
/* Don't use malloc after fork */
|
|
|
|
strcpy(term, "TERM=");
|
2017-07-07 02:48:55 +00:00
|
|
|
strlcat(term, sp->se_type, sizeof(term));
|
1994-10-14 17:15:40 +00:00
|
|
|
env[0] = term;
|
2018-08-17 14:57:13 +00:00
|
|
|
env[1] = NULL;
|
1994-10-14 17:15:40 +00:00
|
|
|
}
|
|
|
|
else
|
2018-08-17 14:57:13 +00:00
|
|
|
env[0] = NULL;
|
1994-10-14 17:15:40 +00:00
|
|
|
execve(sp->se_window_argv[0], sp->se_window_argv, env);
|
1994-05-26 06:35:07 +00:00
|
|
|
stall("can't exec window system '%s' for port %s: %m",
|
|
|
|
sp->se_window_argv[0], sp->se_device);
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Start a login session running.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static pid_t
|
2002-03-20 22:53:13 +00:00
|
|
|
start_getty(session_t *sp)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
sigset_t mask;
|
|
|
|
time_t current_time = time((time_t *) 0);
|
1995-08-08 02:29:12 +00:00
|
|
|
int too_quick = 0;
|
1994-10-14 17:15:40 +00:00
|
|
|
char term[64], *env[2];
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1995-08-08 06:49:59 +00:00
|
|
|
if (current_time >= sp->se_started &&
|
1995-08-08 02:29:12 +00:00
|
|
|
current_time - sp->se_started < GETTY_SPACING) {
|
|
|
|
if (++sp->se_nspace > GETTY_NSPACE) {
|
|
|
|
sp->se_nspace = 0;
|
|
|
|
too_quick = 1;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
sp->se_nspace = 0;
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* fork(), not vfork() -- we can't afford to block.
|
|
|
|
*/
|
|
|
|
if ((pid = fork()) == -1) {
|
|
|
|
emergency("can't fork for getty on port %s: %m", sp->se_device);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid)
|
|
|
|
return pid;
|
|
|
|
|
1995-08-08 02:29:12 +00:00
|
|
|
if (too_quick) {
|
|
|
|
warning("getty repeating too quickly on port %s, sleeping %d secs",
|
2007-11-20 19:50:45 +00:00
|
|
|
sp->se_device, GETTY_SLEEP);
|
1994-05-26 06:35:07 +00:00
|
|
|
sleep((unsigned) GETTY_SLEEP);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sp->se_window) {
|
|
|
|
start_window_system(sp);
|
|
|
|
sleep(WINDOW_WAIT);
|
|
|
|
}
|
|
|
|
|
|
|
|
sigemptyset(&mask);
|
2018-08-09 12:17:03 +00:00
|
|
|
sigprocmask(SIG_SETMASK, &mask, NULL);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1997-01-19 16:49:13 +00:00
|
|
|
#ifdef LOGIN_CAP
|
|
|
|
setprocresources(RESOURCE_GETTY);
|
|
|
|
#endif
|
1994-10-14 17:15:40 +00:00
|
|
|
if (sp->se_type) {
|
|
|
|
/* Don't use malloc after fork */
|
|
|
|
strcpy(term, "TERM=");
|
2017-07-07 02:48:55 +00:00
|
|
|
strlcat(term, sp->se_type, sizeof(term));
|
1994-10-14 17:15:40 +00:00
|
|
|
env[0] = term;
|
2018-08-17 14:57:13 +00:00
|
|
|
env[1] = NULL;
|
2007-11-20 19:50:45 +00:00
|
|
|
} else
|
2018-08-17 14:57:13 +00:00
|
|
|
env[0] = NULL;
|
1994-10-14 17:15:40 +00:00
|
|
|
execve(sp->se_getty_argv[0], sp->se_getty_argv, env);
|
1994-05-26 06:35:07 +00:00
|
|
|
stall("can't exec getty '%s' for port %s: %m",
|
|
|
|
sp->se_getty_argv[0], sp->se_device);
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
|
2018-02-27 10:54:15 +00:00
|
|
|
/*
|
|
|
|
* Return 1 if the session is defined as "onifexists"
|
|
|
|
* or "onifconsole" and the device node does not exist.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
session_has_no_tty(session_t *sp)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if ((sp->se_flags & SE_IFEXISTS) == 0 &&
|
|
|
|
(sp->se_flags & SE_IFCONSOLE) == 0)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
fd = open(sp->se_device, O_RDONLY | O_NONBLOCK, 0);
|
|
|
|
if (fd < 0) {
|
|
|
|
if (errno == ENOENT)
|
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* Collect exit status for a child.
|
|
|
|
* If an exiting login, start a new login running.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
1994-05-26 06:35:07 +00:00
|
|
|
collect_child(pid_t pid)
|
|
|
|
{
|
2002-03-20 17:55:10 +00:00
|
|
|
session_t *sp, *sprev, *snext;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
if (! sessions)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (! (sp = find_session(pid)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
del_session(sp);
|
|
|
|
sp->se_process = 0;
|
|
|
|
|
2018-02-27 10:54:15 +00:00
|
|
|
if (sp->se_flags & SE_SHUTDOWN ||
|
|
|
|
session_has_no_tty(sp)) {
|
1997-08-02 00:22:52 +00:00
|
|
|
if ((sprev = sp->se_prev) != NULL)
|
1994-05-26 06:35:07 +00:00
|
|
|
sprev->se_next = sp->se_next;
|
|
|
|
else
|
|
|
|
sessions = sp->se_next;
|
1997-08-02 00:22:52 +00:00
|
|
|
if ((snext = sp->se_next) != NULL)
|
1994-05-26 06:35:07 +00:00
|
|
|
snext->se_prev = sp->se_prev;
|
|
|
|
free_session(sp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((pid = start_getty(sp)) == -1) {
|
|
|
|
/* serious trouble */
|
|
|
|
requested_transition = clean_ttys;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp->se_process = pid;
|
|
|
|
sp->se_started = time((time_t *) 0);
|
|
|
|
add_session(sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Catch a signal and request a state transition.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
transition_handler(int sig)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
switch (sig) {
|
|
|
|
case SIGHUP:
|
2011-01-23 14:22:26 +00:00
|
|
|
if (current_state == read_ttys || current_state == multi_user ||
|
|
|
|
current_state == clean_ttys || current_state == catatonia)
|
|
|
|
requested_transition = clean_ttys;
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
2017-10-25 15:30:40 +00:00
|
|
|
case SIGWINCH:
|
1999-06-16 20:01:19 +00:00
|
|
|
case SIGUSR2:
|
2017-10-25 15:30:40 +00:00
|
|
|
howto = sig == SIGUSR2 ? RB_POWEROFF : RB_POWERCYCLE;
|
1999-06-16 20:01:19 +00:00
|
|
|
case SIGUSR1:
|
|
|
|
howto |= RB_HALT;
|
1994-08-27 21:32:01 +00:00
|
|
|
case SIGINT:
|
1994-08-28 10:00:49 +00:00
|
|
|
Reboot = TRUE;
|
1994-05-26 06:35:07 +00:00
|
|
|
case SIGTERM:
|
2011-01-23 14:22:26 +00:00
|
|
|
if (current_state == read_ttys || current_state == multi_user ||
|
|
|
|
current_state == clean_ttys || current_state == catatonia)
|
|
|
|
requested_transition = death;
|
|
|
|
else
|
|
|
|
requested_transition = death_single;
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
|
|
|
case SIGTSTP:
|
2011-01-23 14:22:26 +00:00
|
|
|
if (current_state == runcom || current_state == read_ttys ||
|
|
|
|
current_state == clean_ttys ||
|
|
|
|
current_state == multi_user || current_state == catatonia)
|
|
|
|
requested_transition = catatonia;
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
2015-11-08 17:33:48 +00:00
|
|
|
case SIGEMT:
|
|
|
|
requested_transition = reroot;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
default:
|
|
|
|
requested_transition = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Take the system multiuser.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t
|
2002-03-20 22:53:13 +00:00
|
|
|
multi_user(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
pid_t pid;
|
2002-03-20 17:55:10 +00:00
|
|
|
session_t *sp;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
requested_transition = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the administrator has not set the security level to -1
|
|
|
|
* to indicate that the kernel should not run multiuser in secure
|
1995-05-30 06:12:45 +00:00
|
|
|
* mode, and the run script has not set a higher level of security
|
1994-05-26 06:35:07 +00:00
|
|
|
* than level 1, then put the kernel into secure mode.
|
|
|
|
*/
|
|
|
|
if (getsecuritylevel() == 0)
|
|
|
|
setsecuritylevel(1);
|
|
|
|
|
|
|
|
for (sp = sessions; sp; sp = sp->se_next) {
|
|
|
|
if (sp->se_process)
|
|
|
|
continue;
|
2018-02-27 10:54:15 +00:00
|
|
|
if (session_has_no_tty(sp))
|
|
|
|
continue;
|
1994-05-26 06:35:07 +00:00
|
|
|
if ((pid = start_getty(sp)) == -1) {
|
|
|
|
/* serious trouble */
|
|
|
|
requested_transition = clean_ttys;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
sp->se_process = pid;
|
|
|
|
sp->se_started = time((time_t *) 0);
|
|
|
|
add_session(sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!requested_transition)
|
|
|
|
if ((pid = waitpid(-1, (int *) 0, 0)) != -1)
|
|
|
|
collect_child(pid);
|
|
|
|
|
|
|
|
return (state_func_t) requested_transition;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-02-19 20:28:45 +00:00
|
|
|
* This is an (n*2)+(n^2) algorithm. We hope it isn't run often...
|
1994-05-26 06:35:07 +00:00
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t
|
2002-03-20 22:53:13 +00:00
|
|
|
clean_ttys(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-03-20 17:55:10 +00:00
|
|
|
session_t *sp, *sprev;
|
|
|
|
struct ttyent *typ;
|
|
|
|
int devlen;
|
1994-10-14 17:15:40 +00:00
|
|
|
char *old_getty, *old_window, *old_type;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2007-11-20 21:25:58 +00:00
|
|
|
/*
|
|
|
|
* mark all sessions for death, (!SE_PRESENT)
|
2000-02-19 20:28:45 +00:00
|
|
|
* as we find or create new ones they'll be marked as keepers,
|
|
|
|
* we'll later nuke all the ones not found in /etc/ttys
|
|
|
|
*/
|
|
|
|
for (sp = sessions; sp != NULL; sp = sp->se_next)
|
|
|
|
sp->se_flags &= ~SE_PRESENT;
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
devlen = sizeof(_PATH_DEV) - 1;
|
1997-08-02 00:22:52 +00:00
|
|
|
while ((typ = getttyent()) != NULL) {
|
1994-05-26 06:35:07 +00:00
|
|
|
for (sprev = 0, sp = sessions; sp; sprev = sp, sp = sp->se_next)
|
|
|
|
if (strcmp(typ->ty_name, sp->se_device + devlen) == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (sp) {
|
2000-02-19 20:28:45 +00:00
|
|
|
/* we want this one to live */
|
|
|
|
sp->se_flags |= SE_PRESENT;
|
1994-05-26 06:35:07 +00:00
|
|
|
if ((typ->ty_status & TTY_ON) == 0 ||
|
|
|
|
typ->ty_getty == 0) {
|
|
|
|
sp->se_flags |= SE_SHUTDOWN;
|
|
|
|
kill(sp->se_process, SIGHUP);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
sp->se_flags &= ~SE_SHUTDOWN;
|
1994-10-14 17:15:40 +00:00
|
|
|
old_getty = sp->se_getty ? strdup(sp->se_getty) : 0;
|
|
|
|
old_window = sp->se_window ? strdup(sp->se_window) : 0;
|
|
|
|
old_type = sp->se_type ? strdup(sp->se_type) : 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
if (setupargv(sp, typ) == 0) {
|
|
|
|
warning("can't parse getty for port %s",
|
|
|
|
sp->se_device);
|
|
|
|
sp->se_flags |= SE_SHUTDOWN;
|
|
|
|
kill(sp->se_process, SIGHUP);
|
|
|
|
}
|
1994-10-14 17:15:40 +00:00
|
|
|
else if ( !old_getty
|
1997-08-02 00:22:52 +00:00
|
|
|
|| (!old_type && sp->se_type)
|
|
|
|
|| (old_type && !sp->se_type)
|
|
|
|
|| (!old_window && sp->se_window)
|
|
|
|
|| (old_window && !sp->se_window)
|
|
|
|
|| (strcmp(old_getty, sp->se_getty) != 0)
|
|
|
|
|| (old_window && strcmp(old_window, sp->se_window) != 0)
|
|
|
|
|| (old_type && strcmp(old_type, sp->se_type) != 0)
|
1994-10-14 17:15:40 +00:00
|
|
|
) {
|
|
|
|
/* Don't set SE_SHUTDOWN here */
|
|
|
|
sp->se_nspace = 0;
|
|
|
|
sp->se_started = 0;
|
|
|
|
kill(sp->se_process, SIGHUP);
|
|
|
|
}
|
|
|
|
if (old_getty)
|
|
|
|
free(old_getty);
|
2001-06-20 01:56:09 +00:00
|
|
|
if (old_window)
|
1994-10-14 17:15:40 +00:00
|
|
|
free(old_window);
|
|
|
|
if (old_type)
|
|
|
|
free(old_type);
|
1994-05-26 06:35:07 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-02-08 13:51:15 +00:00
|
|
|
new_session(sprev, typ);
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
endttyent();
|
|
|
|
|
2000-02-19 20:28:45 +00:00
|
|
|
/*
|
|
|
|
* sweep through and kill all deleted sessions
|
|
|
|
* ones who's /etc/ttys line was deleted (SE_PRESENT unset)
|
|
|
|
*/
|
|
|
|
for (sp = sessions; sp != NULL; sp = sp->se_next) {
|
|
|
|
if ((sp->se_flags & SE_PRESENT) == 0) {
|
|
|
|
sp->se_flags |= SE_SHUTDOWN;
|
|
|
|
kill(sp->se_process, SIGHUP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
return (state_func_t) multi_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Block further logins.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t
|
2002-03-20 22:53:13 +00:00
|
|
|
catatonia(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-03-20 17:55:10 +00:00
|
|
|
session_t *sp;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
for (sp = sessions; sp; sp = sp->se_next)
|
|
|
|
sp->se_flags |= SE_SHUTDOWN;
|
|
|
|
|
|
|
|
return (state_func_t) multi_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note SIGALRM.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
alrm_handler(int sig)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2007-11-20 19:50:45 +00:00
|
|
|
|
1997-08-02 00:22:52 +00:00
|
|
|
(void)sig;
|
1994-05-26 06:35:07 +00:00
|
|
|
clang = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bring the system down to single user.
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static state_func_t
|
2002-03-20 22:53:13 +00:00
|
|
|
death(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2015-10-01 10:52:26 +00:00
|
|
|
int block, blocked;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
/* Temporarily block suspend. */
|
|
|
|
len = sizeof(blocked);
|
|
|
|
block = 1;
|
|
|
|
if (sysctlbyname("kern.suspend_blocked", &blocked, &len,
|
|
|
|
&block, sizeof(block)) == -1)
|
|
|
|
blocked = 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2009-06-14 17:00:35 +00:00
|
|
|
/*
|
|
|
|
* Also revoke the TTY here. Because runshutdown() may reopen
|
|
|
|
* the TTY whose getty we're killing here, there is no guarantee
|
|
|
|
* runshutdown() will perform the initial open() call, causing
|
|
|
|
* the terminal attributes to be misconfigured.
|
|
|
|
*/
|
2015-11-08 17:33:48 +00:00
|
|
|
revoke_ttys();
|
1994-05-26 06:35:07 +00:00
|
|
|
|
1997-08-02 00:22:52 +00:00
|
|
|
/* Try to run the rc.shutdown script within a period of time */
|
2007-11-20 19:50:45 +00:00
|
|
|
runshutdown();
|
|
|
|
|
2015-10-01 10:52:26 +00:00
|
|
|
/* Unblock suspend if we blocked it. */
|
|
|
|
if (!blocked)
|
|
|
|
sysctlbyname("kern.suspend_blocked", NULL, NULL,
|
|
|
|
&blocked, sizeof(blocked));
|
|
|
|
|
2011-01-23 14:22:26 +00:00
|
|
|
return (state_func_t) death_single;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do what is necessary to reinitialize single user mode or reboot
|
|
|
|
* from an incomplete state.
|
|
|
|
*/
|
|
|
|
static state_func_t
|
|
|
|
death_single(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
pid_t pid;
|
|
|
|
static const int death_sigs[2] = { SIGTERM, SIGKILL };
|
|
|
|
|
|
|
|
revoke(_PATH_CONSOLE);
|
|
|
|
|
1997-07-04 22:09:07 +00:00
|
|
|
for (i = 0; i < 2; ++i) {
|
1994-05-26 06:35:07 +00:00
|
|
|
if (kill(-1, death_sigs[i]) == -1 && errno == ESRCH)
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
|
|
|
|
clang = 0;
|
|
|
|
alarm(DEATH_WATCH);
|
|
|
|
do
|
|
|
|
if ((pid = waitpid(-1, (int *)0, 0)) != -1)
|
|
|
|
collect_child(pid);
|
|
|
|
while (clang == 0 && errno != ECHILD);
|
|
|
|
|
|
|
|
if (errno == ECHILD)
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
warning("some processes would not die; ps axl advised");
|
|
|
|
|
|
|
|
return (state_func_t) single_user;
|
|
|
|
}
|
1997-08-02 00:22:52 +00:00
|
|
|
|
2015-11-08 17:33:48 +00:00
|
|
|
static void
|
|
|
|
revoke_ttys(void)
|
|
|
|
{
|
|
|
|
session_t *sp;
|
|
|
|
|
|
|
|
for (sp = sessions; sp; sp = sp->se_next) {
|
|
|
|
sp->se_flags |= SE_SHUTDOWN;
|
|
|
|
kill(sp->se_process, SIGHUP);
|
|
|
|
revoke(sp->se_device);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-08-02 00:22:52 +00:00
|
|
|
/*
|
|
|
|
* Run the system shutdown script.
|
|
|
|
*
|
|
|
|
* Exit codes: XXX I should document more
|
|
|
|
* -2 shutdown script terminated abnormally
|
|
|
|
* -1 fatal error - can't run script
|
|
|
|
* 0 good.
|
|
|
|
* >0 some error (exit code)
|
|
|
|
*/
|
2008-09-27 00:09:10 +00:00
|
|
|
static int
|
2002-03-20 22:53:13 +00:00
|
|
|
runshutdown(void)
|
1997-08-02 00:22:52 +00:00
|
|
|
{
|
|
|
|
pid_t pid, wpid;
|
2018-08-09 12:13:08 +00:00
|
|
|
int status;
|
1997-08-02 00:22:52 +00:00
|
|
|
int shutdowntimeout;
|
|
|
|
size_t len;
|
1999-11-22 04:23:11 +00:00
|
|
|
char *argv[4];
|
1997-08-18 01:40:12 +00:00
|
|
|
struct stat sb;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rc.shutdown is optional, so to prevent any unnecessary
|
|
|
|
* complaints from the shell we simply don't run it if the
|
|
|
|
* file does not exist. If the stat() here fails for other
|
|
|
|
* reasons, we'll let the shell complain.
|
|
|
|
*/
|
|
|
|
if (stat(_PATH_RUNDOWN, &sb) == -1 && errno == ENOENT)
|
|
|
|
return 0;
|
1997-08-02 00:22:52 +00:00
|
|
|
|
|
|
|
if ((pid = fork()) == 0) {
|
2005-01-11 14:34:29 +00:00
|
|
|
char _sh[] = "sh";
|
|
|
|
char _reboot[] = "reboot";
|
|
|
|
char _single[] = "single";
|
|
|
|
char _path_rundown[] = _PATH_RUNDOWN;
|
|
|
|
|
|
|
|
argv[0] = _sh;
|
|
|
|
argv[1] = _path_rundown;
|
|
|
|
argv[2] = Reboot ? _reboot : _single;
|
2018-08-17 14:57:13 +00:00
|
|
|
argv[3] = NULL;
|
2018-08-09 12:13:08 +00:00
|
|
|
|
|
|
|
execute_script(argv);
|
1997-08-02 00:22:52 +00:00
|
|
|
_exit(1); /* force single user mode */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid == -1) {
|
2018-08-09 12:13:08 +00:00
|
|
|
emergency("can't fork for %s: %m", _PATH_RUNDOWN);
|
1997-08-02 00:22:52 +00:00
|
|
|
while (waitpid(-1, (int *) 0, WNOHANG) > 0)
|
|
|
|
continue;
|
|
|
|
sleep(STALL_TIMEOUT);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = sizeof(shutdowntimeout);
|
2007-11-20 19:50:45 +00:00
|
|
|
if (sysctlbyname("kern.init_shutdown_timeout", &shutdowntimeout, &len,
|
|
|
|
NULL, 0) == -1 || shutdowntimeout < 2)
|
|
|
|
shutdowntimeout = DEATH_SCRIPT;
|
1997-08-02 00:22:52 +00:00
|
|
|
alarm(shutdowntimeout);
|
|
|
|
clang = 0;
|
|
|
|
/*
|
|
|
|
* Copied from single_user(). This is a bit paranoid.
|
|
|
|
* Use the same ALRM handler.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
|
|
|
|
collect_child(wpid);
|
|
|
|
if (clang == 1) {
|
|
|
|
/* we were waiting for the sub-shell */
|
|
|
|
kill(wpid, SIGTERM);
|
2018-08-09 12:13:08 +00:00
|
|
|
warning("timeout expired for %s: %m; going to "
|
|
|
|
"single user mode", _PATH_RUNDOWN);
|
1997-08-02 00:22:52 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (wpid == -1) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
2018-08-09 12:13:08 +00:00
|
|
|
warning("wait for %s failed: %m; going to "
|
|
|
|
"single user mode", _PATH_RUNDOWN);
|
1997-08-02 00:22:52 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (wpid == pid && WIFSTOPPED(status)) {
|
2018-08-09 12:13:08 +00:00
|
|
|
warning("init: %s stopped, restarting\n",
|
|
|
|
_PATH_RUNDOWN);
|
1997-08-02 00:22:52 +00:00
|
|
|
kill(pid, SIGCONT);
|
|
|
|
wpid = -1;
|
|
|
|
}
|
|
|
|
} while (wpid != pid && !clang);
|
|
|
|
|
|
|
|
/* Turn off the alarm */
|
|
|
|
alarm(0);
|
|
|
|
|
|
|
|
if (WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM &&
|
|
|
|
requested_transition == catatonia) {
|
|
|
|
/*
|
|
|
|
* /etc/rc.shutdown executed /sbin/reboot;
|
|
|
|
* wait for the end quietly
|
|
|
|
*/
|
|
|
|
sigset_t s;
|
|
|
|
|
|
|
|
sigfillset(&s);
|
|
|
|
for (;;)
|
|
|
|
sigsuspend(&s);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!WIFEXITED(status)) {
|
2018-08-09 12:13:08 +00:00
|
|
|
warning("%s terminated abnormally, going to "
|
|
|
|
"single user mode", _PATH_RUNDOWN);
|
1997-08-02 00:22:52 +00:00
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((status = WEXITSTATUS(status)) != 0)
|
|
|
|
warning("%s returned status %d", _PATH_RUNDOWN, status);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2005-01-11 14:34:29 +00:00
|
|
|
static char *
|
|
|
|
strk(char *p)
|
1995-01-10 21:19:57 +00:00
|
|
|
{
|
2007-11-20 19:50:45 +00:00
|
|
|
static char *t;
|
|
|
|
char *q;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
if (p)
|
|
|
|
t = p;
|
|
|
|
if (!t)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
c = *t;
|
|
|
|
while (c == ' ' || c == '\t' )
|
|
|
|
c = *++t;
|
|
|
|
if (!c) {
|
|
|
|
t = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
1995-01-10 21:19:57 +00:00
|
|
|
q = t;
|
2007-11-20 19:50:45 +00:00
|
|
|
if (c == '\'') {
|
|
|
|
c = *++t;
|
|
|
|
q = t;
|
|
|
|
while (c && c != '\'')
|
|
|
|
c = *++t;
|
|
|
|
if (!c) /* unterminated string */
|
|
|
|
q = t = 0;
|
|
|
|
else
|
|
|
|
*t++ = 0;
|
|
|
|
} else {
|
|
|
|
while (c && c != ' ' && c != '\t' )
|
|
|
|
c = *++t;
|
|
|
|
*t++ = 0;
|
|
|
|
if (!c)
|
|
|
|
t = 0;
|
|
|
|
}
|
|
|
|
return q;
|
1995-01-10 21:19:57 +00:00
|
|
|
}
|
1997-01-19 16:49:13 +00:00
|
|
|
|
|
|
|
#ifdef LOGIN_CAP
|
2008-09-27 00:09:10 +00:00
|
|
|
static void
|
2002-03-20 22:53:13 +00:00
|
|
|
setprocresources(const char *cname)
|
1997-01-19 16:49:13 +00:00
|
|
|
{
|
1997-01-22 02:07:55 +00:00
|
|
|
login_cap_t *lc;
|
1997-07-02 13:53:31 +00:00
|
|
|
if ((lc = login_getclassbyname(cname, NULL)) != NULL) {
|
2007-11-20 19:50:45 +00:00
|
|
|
setusercontext(lc, (struct passwd*)NULL, 0,
|
2013-08-13 18:51:26 +00:00
|
|
|
LOGIN_SETPRIORITY | LOGIN_SETRESOURCES |
|
|
|
|
LOGIN_SETLOGINCLASS | LOGIN_SETCPUMASK);
|
1997-01-22 02:07:55 +00:00
|
|
|
login_close(lc);
|
|
|
|
}
|
1997-01-19 16:49:13 +00:00
|
|
|
}
|
|
|
|
#endif
|