2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Donn Seeley at Berkeley Software Design, Inc.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * @(#) Copyright (c) 1991, 1993 The Regents of the University of California. All rights reserved.
33 * @(#)init.c 8.1 (Berkeley) 7/15/93
34 * $FreeBSD: src/sbin/init/init.c,v 1.38.2.8 2001/10/22 11:27:32 des Exp $
37 #include <sys/param.h>
38 #include <sys/ioctl.h>
39 #include <sys/mount.h>
40 #include <sys/sysctl.h>
58 #include <sys/reboot.h>
68 #include <login_cap.h>
71 #include "pathnames.h"
74 * Sleep times; used to prevent thrashing.
76 #define GETTY_SPACING 5 /* N secs minimum getty spacing */
77 #define GETTY_SLEEP 30 /* sleep N secs after spacing problem */
78 #define GETTY_NSPACE 3 /* max. spacing count to bring reaction */
79 #define WINDOW_WAIT 3 /* wait N secs after starting window */
80 #define STALL_TIMEOUT 30 /* wait N secs after warning */
81 #define DEATH_WATCH 10 /* wait N secs for procs to die */
82 #define DEATH_SCRIPT 120 /* wait for 2min for /etc/rc.shutdown */
83 #define RESOURCE_RC "daemon"
84 #define RESOURCE_WINDOW "default"
85 #define RESOURCE_GETTY "default"
88 * We really need a recursive typedef...
89 * The following at least guarantees that the return type of (*state_t)()
90 * is sufficiently wide to hold a function pointer.
92 typedef long (*state_func_t
)(void);
93 typedef state_func_t (*state_t
)(void);
95 enum { AUTOBOOT
, FASTBOOT
} runcom_mode
= AUTOBOOT
;
99 static void setctty(const char *);
101 typedef struct init_session
{
102 int se_index
; /* index of entry in ttys file */
103 pid_t se_process
; /* controlling process */
104 struct timeval se_started
; /* used to avoid thrashing */
105 int se_flags
; /* status of session */
106 #define SE_SHUTDOWN 0x1 /* session won't be restarted */
107 #define SE_PRESENT 0x2 /* session is in /etc/ttys */
108 int se_nspace
; /* spacing count */
109 char *se_device
; /* filename of port */
110 char *se_getty
; /* what to run on that port */
111 char *se_getty_argv_space
; /* pre-parsed argument array space */
112 char **se_getty_argv
; /* pre-parsed argument array */
113 char *se_window
; /* window system (started only once) */
114 char *se_window_argv_space
; /* pre-parsed argument array space */
115 char **se_window_argv
; /* pre-parsed argument array */
116 char *se_type
; /* default terminal type */
117 struct init_session
*se_prev
;
118 struct init_session
*se_next
;
121 static void handle(sig_t
, ...);
122 static void delset(sigset_t
*, ...);
124 static void stall(const char *, ...) __printflike(1, 2);
125 static void warning(const char *, ...) __printflike(1, 2);
126 static void emergency(const char *, ...) __printflike(1, 2);
127 static void disaster(int);
128 static void badsys(int);
129 static int runshutdown(void);
130 static char *strk(char *);
133 #define SINGLE_USER 's'
135 #define READ_TTYS 't'
136 #define MULTI_USER 'm'
137 #define CLEAN_TTYS 'T'
138 #define CATATONIA 'c'
140 static state_func_t
single_user(void);
141 static state_func_t
runcom(void);
142 static state_func_t
read_ttys(void);
143 static state_func_t
multi_user(void);
144 static state_func_t
clean_ttys(void);
145 static state_func_t
catatonia(void);
146 static state_func_t
death(void);
148 static void transition(state_t
);
150 static void free_session(session_t
*);
151 static session_t
*new_session(session_t
*, int, struct ttyent
*);
152 static void adjttyent(struct ttyent
*typ
);
154 static char **construct_argv(char *);
155 static void start_window_system(session_t
*);
156 static void collect_child(pid_t
);
157 static pid_t
start_getty(session_t
*);
158 static void transition_handler(int);
159 static void alrm_handler(int);
160 static void setsecuritylevel(int);
161 static int getsecuritylevel(void);
162 static char *get_chroot(void);
163 static int setupargv(session_t
*, struct ttyent
*);
165 static void setprocresources(const char *);
168 static void clear_session_logs(session_t
*);
170 static int start_session_db(void);
171 static void add_session(session_t
*);
172 static void del_session(session_t
*);
173 static session_t
*find_session(pid_t
);
176 static struct timeval boot_time
;
177 state_t current_state
= death
;
178 static void session_utmpx(const session_t
*, int);
179 static void make_utmpx(const char *, const char *, int, pid_t
,
180 const struct timeval
*, int);
181 static char get_runlevel(const state_t
);
182 static void utmpx_set_runlevel(char, char);
185 static int Reboot
= FALSE
;
186 static int howto
= RB_AUTOBOOT
;
188 static DB
*session_db
;
189 static volatile sig_atomic_t clang
;
190 static session_t
*sessions
;
191 state_t requested_transition
= runcom
;
195 * The mother of all processes.
198 main(int argc
, char **argv
)
207 (void)gettimeofday(&boot_time
, NULL
);
208 #endif /* SUPPORT_UTMPX */
210 /* Dispose of random users. */
212 errx(1, "%s", strerror(EPERM
));
214 /* System V users like to reexec init. */
216 #ifdef COMPAT_SYSV_INIT
217 /* So give them what they want */
219 if (strlen(argv
[1]) == 1) {
220 char runlevel
= *argv
[1];
224 case '0': /* halt + poweroff */
227 case '1': /* single-user */
230 case '6': /* reboot */
233 case 'c': /* block further logins */
236 case 'q': /* rescan /etc/ttys */
246 errx(1, "invalid run-level ``%s''", argv
[1]);
249 errx(1, "already running");
252 * Note that this does NOT open a file...
253 * Does 'init' deserve its own facility number?
255 openlog("init", LOG_CONS
|LOG_ODELAY
, LOG_AUTH
);
258 * If chroot has been requested by the boot loader,
259 * do it now. Try to be robust: If the directory
260 * doesn't exist, continue anyway.
262 init_chroot
= get_chroot();
263 if (init_chroot
!= NULL
) {
264 if (chdir(init_chroot
) == -1 || chroot(".") == -1)
265 warning("can't chroot to %s: %m", init_chroot
);
270 * Create an initial session.
273 warning("initial setsid() failed: %m");
276 * Establish an initial user so that programs running
277 * single user do not freak out and die (like passwd).
279 if (setlogin("root") < 0)
280 warning("setlogin() failed: %m");
282 if (stat("/dev/null", &sts
) < 0) {
283 warning("/dev MAY BE CORRUPT! /dev/null is missing!\n");
288 * This code assumes that we always get arguments through flags,
289 * never through bits set in some random machine register.
291 while ((c
= getopt(argc
, argv
, "dsf")) != -1)
294 /* We don't support DEVFS. */
297 requested_transition
= single_user
;
300 runcom_mode
= FASTBOOT
;
303 warning("unrecognized flag '-%c'", c
);
308 warning("ignoring excess arguments");
311 * We catch or block signals rather than ignore them,
312 * so that they get reset on exec.
314 handle(badsys
, SIGSYS
, 0);
315 handle(disaster
, SIGABRT
, SIGFPE
, SIGILL
, SIGSEGV
,
316 SIGBUS
, SIGXCPU
, SIGXFSZ
, 0);
317 handle(transition_handler
, SIGHUP
, SIGINT
, SIGTERM
, SIGTSTP
,
318 SIGUSR1
, SIGUSR2
, 0);
319 handle(alrm_handler
, SIGALRM
, 0);
321 delset(&mask
, SIGABRT
, SIGFPE
, SIGILL
, SIGSEGV
, SIGBUS
, SIGSYS
,
322 SIGXCPU
, SIGXFSZ
, SIGHUP
, SIGINT
, SIGTERM
, SIGTSTP
, SIGALRM
,
323 SIGUSR1
, SIGUSR2
, 0);
324 sigprocmask(SIG_SETMASK
, &mask
, NULL
);
325 sigemptyset(&sa
.sa_mask
);
327 sa
.sa_handler
= SIG_IGN
;
328 sigaction(SIGTTIN
, &sa
, NULL
);
329 sigaction(SIGTTOU
, &sa
, NULL
);
339 * Start the state machine.
341 transition(requested_transition
);
344 * Should never reach here.
350 * Associate a function with a signal handler.
353 handle(sig_t handler
, ...)
357 sigset_t mask_everything
;
360 va_start(ap
, handler
);
362 sa
.sa_handler
= handler
;
363 sigfillset(&mask_everything
);
365 while ((sig
= va_arg(ap
, int)) != 0) {
366 sa
.sa_mask
= mask_everything
;
367 /* XXX SA_RESTART? */
368 sa
.sa_flags
= sig
== SIGCHLD
? SA_NOCLDSTOP
: 0;
369 sigaction(sig
, &sa
, NULL
);
375 * Delete a set of signals from a mask.
378 delset(sigset_t
*maskp
, ...)
385 while ((sig
= va_arg(ap
, int)) != 0)
386 sigdelset(maskp
, sig
);
391 * Log a message and sleep for a while (to give someone an opportunity
392 * to read it and to save log or hardcopy output if the problem is chronic).
393 * NB: should send a message to the session logger to avoid blocking.
396 stall(const char *message
, ...)
400 va_start(ap
, message
);
402 vsyslog(LOG_ALERT
, message
, ap
);
404 sleep(STALL_TIMEOUT
);
408 * Like stall(), but doesn't sleep.
409 * If cpp had variadic macros, the two functions could be #defines for another.
410 * NB: should send a message to the session logger to avoid blocking.
413 warning(const char *message
, ...)
417 va_start(ap
, message
);
419 vsyslog(LOG_ALERT
, message
, ap
);
424 * Log an emergency message.
425 * NB: should send a message to the session logger to avoid blocking.
428 emergency(const char *message
, ...)
432 va_start(ap
, message
);
434 vsyslog(LOG_EMERG
, message
, ap
);
439 * Catch a SIGSYS signal.
441 * These may arise if a system does not support sysctl.
442 * We tolerate up to 25 of these, then throw in the towel.
447 static int badcount
= 0;
455 * Catch an unexpected signal.
460 emergency("fatal signal: %s",
461 (unsigned)sig
< NSIG
? sys_siglist
[sig
] : "unknown signal");
463 sleep(STALL_TIMEOUT
);
464 _exit(sig
); /* reboot */
468 * Get the security level of the kernel.
471 getsecuritylevel(void)
473 #ifdef KERN_SECURELVL
474 int name
[2], curlevel
;
478 name
[1] = KERN_SECURELVL
;
479 len
= sizeof curlevel
;
480 if (sysctl(name
, 2, &curlevel
, &len
, NULL
, 0) == -1) {
481 emergency("cannot get kernel security level: %s",
492 * Get the value of the "init_chroot" variable from the
493 * kernel environment (or NULL if not set).
499 static const char ichname
[] = "init_chroot="; /* includes '=' */
500 const int ichlen
= strlen(ichname
);
501 int real_oid
[CTL_MAXNAME
];
507 oidlen
= __arysize(real_oid
);
508 if (sysctlnametomib("kern.environment", real_oid
, &oidlen
)) {
509 warning("cannot find kern.environment base sysctl OID");
512 if (oidlen
+ 1 >= __arysize(real_oid
)) {
513 warning("kern.environment OID is too large!");
517 real_oid
[oidlen
] = 0;
520 real_oid
[oidlen
+ 1] = i
;
522 if (sysctl(real_oid
, oidlen
+ 2, sbuf
, &slen
, NULL
, 0) < 0) {
524 warning("sysctl kern.environment.%d: %m", i
);
529 * slen includes the terminating \0, but do a few sanity
535 if (strncmp(sbuf
, ichname
, ichlen
) != 0)
538 res
= strdup(sbuf
+ ichlen
);
545 * Set the security level of the kernel.
548 setsecuritylevel(int newlevel
)
550 #ifdef KERN_SECURELVL
551 int name
[2], curlevel
;
553 curlevel
= getsecuritylevel();
554 if (newlevel
== curlevel
)
557 name
[1] = KERN_SECURELVL
;
558 if (sysctl(name
, 2, NULL
, NULL
, &newlevel
, sizeof newlevel
) == -1) {
560 "cannot change kernel security level from %d to %d: %s",
561 curlevel
, newlevel
, strerror(errno
));
565 warning("kernel security level changed from %d to %d",
572 * Change states in the finite state machine.
573 * The initial state is passed as an argument.
576 transition(state_t s
)
580 utmpx_set_runlevel(get_runlevel(current_state
),
584 s
= (state_t
) (*s
)();
589 * Close out the accounting files for a login session.
590 * NB: should send a message to the session logger to avoid blocking.
593 clear_session_logs(session_t
*sp
)
595 char *line
= sp
->se_device
+ sizeof(_PATH_DEV
) - 1;
598 if (logoutx(line
, 0, DEAD_PROCESS
))
599 logwtmpx(line
, "", "", 0, DEAD_PROCESS
);
602 logwtmp(line
, "", "");
606 * Start a session and allocate a controlling terminal.
607 * Only called by children of init after forking.
610 setctty(const char *name
)
615 if ((fd
= open(name
, O_RDWR
)) == -1) {
616 stall("can't open %s: %m", name
);
619 if (login_tty(fd
) == -1) {
620 stall("can't get %s for controlling terminal: %m", name
);
626 * Bring the system up single user.
634 const char *shell
= _PATH_BSHELL
;
639 static const char banner
[] =
640 "Enter root password, or ^D to go multi-user\n";
641 char *clear
, *password
;
648 /* Instead of going single user, let's reboot the machine */
656 if ((pid
= fork()) == 0) {
658 * Start the single user session.
660 setctty(_PATH_CONSOLE
);
664 * Check the root password.
665 * We don't care if the console is 'on' by default;
666 * it's the only tty that can be 'off' and 'secure'.
668 typ
= getttynam("console");
669 pp
= getpwnam("root");
670 if (typ
&& (typ
->ty_status
& TTY_SECURE
) == 0 &&
671 pp
&& *pp
->pw_passwd
) {
672 write(2, banner
, sizeof banner
- 1);
674 clear
= getpass("Password:");
675 if (clear
== NULL
|| *clear
== '\0')
677 password
= crypt(clear
, pp
->pw_passwd
);
678 bzero(clear
, _PASSWORD_LEN
);
679 if (strcmp(password
, pp
->pw_passwd
) == 0)
681 warning("single-user login failed\n");
694 "Enter full pathname of shell or RETURN for " _PATH_BSHELL ": "
695 write(STDERR_FILENO
, SHREQUEST
, sizeof(SHREQUEST
) - 1);
696 while ((num
= read(STDIN_FILENO
, cp
, 1)) != -1 &&
697 num
!= 0 && *cp
!= '\n' && cp
< &altshell
[127])
700 if (altshell
[0] != '\0')
703 #endif /* DEBUGSHELL */
707 * We catch all the interesting ones,
708 * and those are reset to SIG_DFL on exec.
711 sigprocmask(SIG_SETMASK
, &mask
, NULL
);
715 * If the default one doesn't work, try the Bourne shell.
719 execv(shell
, __DECONST(char **, argv
));
720 emergency("can't exec %s for single user: %m", shell
);
721 execv(_PATH_BSHELL
, __DECONST(char **, argv
));
722 emergency("can't exec %s for single user: %m", _PATH_BSHELL
);
723 sleep(STALL_TIMEOUT
);
729 * We are seriously hosed. Do our best.
731 emergency("can't fork single-user shell, trying again");
732 while (waitpid(-1, NULL
, WNOHANG
) > 0)
734 return (state_func_t
) single_user
;
737 requested_transition
= NULL
;
739 if ((wpid
= waitpid(-1, &status
, WUNTRACED
)) != -1)
744 warning("wait for single-user shell failed: %m; restarting");
745 return (state_func_t
) single_user
;
747 if (wpid
== pid
&& WIFSTOPPED(status
)) {
748 warning("init: shell stopped, restarting\n");
752 } while (wpid
!= pid
&& !requested_transition
);
754 if (requested_transition
)
755 return (state_func_t
) requested_transition
;
757 if (!WIFEXITED(status
)) {
758 if (WTERMSIG(status
) == SIGKILL
) {
760 * reboot(8) killed shell?
762 warning("single user shell terminated.");
763 sleep(STALL_TIMEOUT
);
766 warning("single user shell terminated, restarting");
767 return (state_func_t
) single_user
;
771 runcom_mode
= FASTBOOT
;
772 return (state_func_t
) runcom
;
776 * Run the system startup script.
786 if ((pid
= fork()) == 0) {
787 sigemptyset(&sa
.sa_mask
);
789 sa
.sa_handler
= SIG_IGN
;
790 sigaction(SIGTSTP
, &sa
, NULL
);
791 sigaction(SIGHUP
, &sa
, NULL
);
793 setctty(_PATH_CONSOLE
);
796 argv
[1] = _PATH_RUNCOM
;
797 argv
[2] = runcom_mode
== AUTOBOOT
? "autoboot" : 0;
800 sigprocmask(SIG_SETMASK
, &sa
.sa_mask
, NULL
);
803 setprocresources(RESOURCE_RC
);
805 execv(_PATH_BSHELL
, __DECONST(char **, argv
));
806 stall("can't exec %s for %s: %m", _PATH_BSHELL
, _PATH_RUNCOM
);
807 _exit(1); /* force single user mode */
811 emergency("can't fork for %s on %s: %m",
812 _PATH_BSHELL
, _PATH_RUNCOM
);
813 while (waitpid(-1, NULL
, WNOHANG
) > 0)
815 sleep(STALL_TIMEOUT
);
816 return (state_func_t
) single_user
;
820 * Copied from single_user(). This is a bit paranoid.
822 requested_transition
= NULL
;
824 if ((wpid
= waitpid(-1, &status
, WUNTRACED
)) != -1)
827 if (requested_transition
== death
)
828 return (state_func_t
) death
;
831 warning("wait for %s on %s failed: %m; going to single user mode",
832 _PATH_BSHELL
, _PATH_RUNCOM
);
833 return (state_func_t
) single_user
;
835 if (wpid
== pid
&& WIFSTOPPED(status
)) {
836 warning("init: %s on %s stopped, restarting\n",
837 _PATH_BSHELL
, _PATH_RUNCOM
);
841 } while (wpid
!= pid
);
843 if (WIFSIGNALED(status
) && WTERMSIG(status
) == SIGTERM
&&
844 requested_transition
== catatonia
) {
845 /* /etc/rc executed /sbin/reboot; wait for the end quietly */
853 if (!WIFEXITED(status
)) {
854 warning("%s on %s terminated abnormally, going to single user mode",
855 _PATH_BSHELL
, _PATH_RUNCOM
);
856 return (state_func_t
) single_user
;
859 if (WEXITSTATUS(status
))
860 return (state_func_t
) single_user
;
862 runcom_mode
= AUTOBOOT
; /* the default */
863 /* NB: should send a message to the session logger to avoid blocking. */
865 logwtmpx("~", "reboot", "", 0, INIT_PROCESS
);
867 logwtmp("~", "reboot", "");
868 return (state_func_t
) read_ttys
;
872 * Open the session database.
874 * NB: We could pass in the size here; is it necessary?
877 start_session_db(void)
879 if (session_db
&& (*session_db
->close
)(session_db
))
880 emergency("session database close: %s", strerror(errno
));
881 if ((session_db
= dbopen(NULL
, O_RDWR
, 0, DB_HASH
, NULL
)) == NULL
) {
882 emergency("session database open: %s", strerror(errno
));
890 * Add a new login session.
893 add_session(session_t
*sp
)
898 key
.data
= &sp
->se_process
;
899 key
.size
= sizeof sp
->se_process
;
901 data
.size
= sizeof sp
;
903 if ((*session_db
->put
)(session_db
, &key
, &data
, 0))
904 emergency("insert %d: %s", sp
->se_process
, strerror(errno
));
906 session_utmpx(sp
, 1);
911 * Delete an old login session.
914 del_session(session_t
*sp
)
918 key
.data
= &sp
->se_process
;
919 key
.size
= sizeof sp
->se_process
;
921 if ((*session_db
->del
)(session_db
, &key
, 0))
922 emergency("delete %d: %s", sp
->se_process
, strerror(errno
));
924 session_utmpx(sp
, 0);
929 * Look up a login session by pid.
932 find_session(pid_t pid
)
939 key
.size
= sizeof pid
;
940 if ((*session_db
->get
)(session_db
, &key
, &data
, 0) != 0)
942 bcopy(data
.data
, (char *)&ret
, sizeof(ret
));
947 * Construct an argument vector from a command line.
950 construct_argv(char *command
)
953 char **argv
= malloc(((strlen(command
) + 1) / 2 + 1)
956 if ((argv
[argc
++] = strk(command
)) == NULL
) {
960 while ((argv
[argc
++] = strk(NULL
)) != NULL
)
966 * Deallocate a session descriptor.
969 free_session(session_t
*sp
)
974 free(sp
->se_getty_argv_space
);
975 free(sp
->se_getty_argv
);
979 free(sp
->se_window_argv_space
);
980 free(sp
->se_window_argv
);
989 adjttyent(struct ttyent
*typ
)
994 size_t rdev_size
= sizeof(rdev
);
996 if (typ
->ty_name
== NULL
)
1000 * IFCONSOLE option forces tty off if not the console.
1002 if (typ
->ty_status
& TTY_IFCONSOLE
) {
1003 asprintf(&devpath
, "%s%s", _PATH_DEV
, typ
->ty_name
);
1004 if (stat(devpath
, &st
) < 0 ||
1005 sysctlbyname("kern.console_rdev",
1008 /* device does not exist or no sysctl, disable */
1009 typ
->ty_status
&= ~TTY_ON
;
1010 } else if (rdev
!= st
.st_rdev
) {
1011 typ
->ty_status
&= ~TTY_ON
;
1018 * Allocate a new session descriptor.
1019 * Mark it SE_PRESENT.
1022 new_session(session_t
*sprev
, int session_index
, struct ttyent
*typ
)
1027 if (typ
->ty_name
== NULL
|| typ
->ty_getty
== NULL
)
1030 if ((typ
->ty_status
& TTY_ON
) == 0)
1033 sp
= (session_t
*) calloc(1, sizeof (session_t
));
1035 asprintf(&sp
->se_device
, "%s%s", _PATH_DEV
, typ
->ty_name
);
1036 sp
->se_index
= session_index
;
1037 sp
->se_flags
|= SE_PRESENT
;
1040 * Attempt to open the device, if we get "device not configured"
1041 * then don't add the device to the session list.
1043 if ((fd
= open(sp
->se_device
, O_RDONLY
| O_NONBLOCK
, 0)) < 0) {
1044 if (errno
== ENXIO
) {
1051 if (setupargv(sp
, typ
) == 0) {
1057 if (sprev
== NULL
) {
1061 sprev
->se_next
= sp
;
1062 sp
->se_prev
= sprev
;
1069 * Calculate getty and if useful window argv vectors.
1072 setupargv(session_t
*sp
, struct ttyent
*typ
)
1077 free(sp
->se_getty_argv_space
);
1078 free(sp
->se_getty_argv
);
1080 sp
->se_getty
= malloc(strlen(typ
->ty_getty
) + strlen(typ
->ty_name
) + 2);
1081 sprintf(sp
->se_getty
, "%s %s", typ
->ty_getty
, typ
->ty_name
);
1082 sp
->se_getty_argv_space
= strdup(sp
->se_getty
);
1083 sp
->se_getty_argv
= construct_argv(sp
->se_getty_argv_space
);
1084 if (sp
->se_getty_argv
== NULL
) {
1085 warning("can't parse getty for port %s", sp
->se_device
);
1087 free(sp
->se_getty_argv_space
);
1088 sp
->se_getty
= sp
->se_getty_argv_space
= NULL
;
1091 if (sp
->se_window
) {
1092 free(sp
->se_window
);
1093 free(sp
->se_window_argv_space
);
1094 free(sp
->se_window_argv
);
1096 sp
->se_window
= sp
->se_window_argv_space
= NULL
;
1097 sp
->se_window_argv
= NULL
;
1098 if (typ
->ty_window
) {
1099 sp
->se_window
= strdup(typ
->ty_window
);
1100 sp
->se_window_argv_space
= strdup(sp
->se_window
);
1101 sp
->se_window_argv
= construct_argv(sp
->se_window_argv_space
);
1102 if (sp
->se_window_argv
== NULL
) {
1103 warning("can't parse window for port %s",
1105 free(sp
->se_window_argv_space
);
1106 free(sp
->se_window
);
1107 sp
->se_window
= sp
->se_window_argv_space
= NULL
;
1113 sp
->se_type
= typ
->ty_type
? strdup(typ
->ty_type
) : 0;
1118 * Walk the list of ttys and create sessions for each active line.
1123 int session_index
= 0;
1124 session_t
*sp
, *snext
;
1127 #ifdef SUPPORT_UTMPX
1128 if (sessions
== NULL
) {
1131 make_utmpx("", BOOT_MSG
, BOOT_TIME
, 0, &boot_time
, 0);
1134 * If wtmpx is not empty, pick the down time from there
1136 if (stat(_PATH_WTMPX
, &st
) != -1 && st
.st_size
!= 0) {
1137 struct timeval down_time
;
1139 TIMESPEC_TO_TIMEVAL(&down_time
,
1140 st
.st_atime
> st
.st_mtime
?
1141 &st
.st_atimespec
: &st
.st_mtimespec
);
1142 make_utmpx("", DOWN_MSG
, DOWN_TIME
, 0, &down_time
, 0);
1147 * Destroy any previous session state.
1148 * There shouldn't be any, but just in case...
1150 for (sp
= sessions
; sp
; sp
= snext
) {
1152 clear_session_logs(sp
);
1153 snext
= sp
->se_next
;
1157 if (start_session_db())
1158 return (state_func_t
) single_user
;
1161 * Allocate a session entry for each active port.
1162 * Note that sp starts at 0.
1164 while ((typ
= getttyent()) != NULL
) {
1166 if ((snext
= new_session(sp
, ++session_index
, typ
)) != NULL
)
1172 return (state_func_t
) multi_user
;
1176 * Start a window system running.
1179 start_window_system(session_t
*sp
)
1183 char term
[64], *env
[2];
1185 if ((pid
= fork()) == -1) {
1186 emergency("can't fork for window system on port %s: %m",
1188 /* hope that getty fails and we can try again */
1196 sigprocmask(SIG_SETMASK
, &mask
, NULL
);
1199 emergency("setsid failed (window) %m");
1202 setprocresources(RESOURCE_WINDOW
);
1205 /* Don't use malloc after fork */
1206 strcpy(term
, "TERM=");
1207 strncat(term
, sp
->se_type
, sizeof(term
) - 6);
1213 execve(sp
->se_window_argv
[0], sp
->se_window_argv
, env
);
1214 stall("can't exec window system '%s' for port %s: %m",
1215 sp
->se_window_argv
[0], sp
->se_device
);
1220 * Start a login session running.
1223 start_getty(session_t
*sp
)
1227 time_t current_time
= time(NULL
);
1229 char term
[64], *env
[2];
1231 if (current_time
>= sp
->se_started
.tv_sec
&&
1232 current_time
- sp
->se_started
.tv_sec
< GETTY_SPACING
) {
1233 if (++sp
->se_nspace
> GETTY_NSPACE
) {
1241 * fork(), not vfork() -- we can't afford to block.
1243 if ((pid
= fork()) == -1) {
1244 emergency("can't fork for getty on port %s: %m", sp
->se_device
);
1252 warning("getty repeating too quickly on port %s, sleeping %d secs",
1253 sp
->se_device
, GETTY_SLEEP
);
1254 sleep((unsigned) GETTY_SLEEP
);
1257 if (sp
->se_window
) {
1258 start_window_system(sp
);
1263 sigprocmask(SIG_SETMASK
, &mask
, NULL
);
1266 setprocresources(RESOURCE_GETTY
);
1269 /* Don't use malloc after fork */
1270 strcpy(term
, "TERM=");
1271 strncat(term
, sp
->se_type
, sizeof(term
) - 6);
1277 execve(sp
->se_getty_argv
[0], sp
->se_getty_argv
, env
);
1278 stall("can't exec getty '%s' for port %s: %m",
1279 sp
->se_getty_argv
[0], sp
->se_device
);
1284 * Collect exit status for a child.
1285 * If an exiting login, start a new login running.
1288 collect_child(pid_t pid
)
1290 session_t
*sp
, *sprev
, *snext
;
1295 if (! (sp
= find_session(pid
)))
1298 clear_session_logs(sp
);
1302 if (sp
->se_flags
& SE_SHUTDOWN
) {
1303 if ((sprev
= sp
->se_prev
) != NULL
)
1304 sprev
->se_next
= sp
->se_next
;
1306 sessions
= sp
->se_next
;
1307 if ((snext
= sp
->se_next
) != NULL
)
1308 snext
->se_prev
= sp
->se_prev
;
1313 if ((pid
= start_getty(sp
)) == -1) {
1314 /* serious trouble */
1315 requested_transition
= clean_ttys
;
1319 sp
->se_process
= pid
;
1320 gettimeofday(&sp
->se_started
, NULL
);
1325 * Catch a signal and request a state transition.
1328 transition_handler(int sig
)
1333 requested_transition
= clean_ttys
;
1336 howto
= RB_POWEROFF
;
1342 requested_transition
= death
;
1345 requested_transition
= catatonia
;
1348 requested_transition
= NULL
;
1354 * Take the system multiuser.
1362 requested_transition
= NULL
;
1365 * If the administrator has not set the security level to -1
1366 * to indicate that the kernel should not run multiuser in secure
1367 * mode, and the run script has not set a higher level of security
1368 * than level 1, then put the kernel into secure mode.
1370 if (getsecuritylevel() == 0)
1371 setsecuritylevel(1);
1373 for (sp
= sessions
; sp
; sp
= sp
->se_next
) {
1376 if ((pid
= start_getty(sp
)) == -1) {
1377 /* serious trouble */
1378 requested_transition
= clean_ttys
;
1381 sp
->se_process
= pid
;
1382 gettimeofday(&sp
->se_started
, NULL
);
1386 while (!requested_transition
)
1387 if ((pid
= waitpid(-1, NULL
, 0)) != -1)
1390 return (state_func_t
) requested_transition
;
1394 * This is an (n*2)+(n^2) algorithm. We hope it isn't run often...
1399 session_t
*sp
, *sprev
;
1401 int session_index
= 0;
1403 char *old_getty
, *old_window
, *old_type
;
1406 return (state_func_t
) multi_user
;
1409 * mark all sessions for death, (!SE_PRESENT)
1410 * as we find or create new ones they'll be marked as keepers,
1411 * we'll later nuke all the ones not found in /etc/ttys
1413 for (sp
= sessions
; sp
!= NULL
; sp
= sp
->se_next
)
1414 sp
->se_flags
&= ~SE_PRESENT
;
1416 devlen
= sizeof(_PATH_DEV
) - 1;
1417 while ((typ
= getttyent()) != NULL
) {
1421 for (sprev
= NULL
, sp
= sessions
; sp
; sprev
= sp
, sp
= sp
->se_next
)
1422 if (strcmp(typ
->ty_name
, sp
->se_device
+ devlen
) == 0)
1426 /* we want this one to live */
1427 sp
->se_flags
|= SE_PRESENT
;
1428 if (sp
->se_index
!= session_index
) {
1429 warning("port %s changed utmp index from %d to %d",
1430 sp
->se_device
, sp
->se_index
,
1432 sp
->se_index
= session_index
;
1434 if ((typ
->ty_status
& TTY_ON
) == 0 ||
1435 typ
->ty_getty
== 0) {
1436 sp
->se_flags
|= SE_SHUTDOWN
;
1437 kill(sp
->se_process
, SIGHUP
);
1440 sp
->se_flags
&= ~SE_SHUTDOWN
;
1441 old_getty
= sp
->se_getty
? strdup(sp
->se_getty
) : 0;
1442 old_window
= sp
->se_window
? strdup(sp
->se_window
) : 0;
1443 old_type
= sp
->se_type
? strdup(sp
->se_type
) : 0;
1444 if (setupargv(sp
, typ
) == 0) {
1445 warning("can't parse getty for port %s",
1447 sp
->se_flags
|= SE_SHUTDOWN
;
1448 kill(sp
->se_process
, SIGHUP
);
1450 else if ( !old_getty
1451 || (!old_type
&& sp
->se_type
)
1452 || (old_type
&& !sp
->se_type
)
1453 || (!old_window
&& sp
->se_window
)
1454 || (old_window
&& !sp
->se_window
)
1455 || (strcmp(old_getty
, sp
->se_getty
) != 0)
1456 || (old_window
&& strcmp(old_window
, sp
->se_window
) != 0)
1457 || (old_type
&& strcmp(old_type
, sp
->se_type
) != 0)
1459 /* Don't set SE_SHUTDOWN here */
1461 sp
->se_started
.tv_sec
= sp
->se_started
.tv_usec
= 0;
1462 kill(sp
->se_process
, SIGHUP
);
1473 new_session(sprev
, session_index
, typ
);
1479 * sweep through and kill all deleted sessions
1480 * ones who's /etc/ttys line was deleted (SE_PRESENT unset)
1482 for (sp
= sessions
; sp
!= NULL
; sp
= sp
->se_next
) {
1483 if ((sp
->se_flags
& SE_PRESENT
) == 0) {
1484 sp
->se_flags
|= SE_SHUTDOWN
;
1485 kill(sp
->se_process
, SIGHUP
);
1489 return (state_func_t
) multi_user
;
1493 * Block further logins.
1500 for (sp
= sessions
; sp
; sp
= sp
->se_next
)
1501 sp
->se_flags
|= SE_SHUTDOWN
;
1503 return (state_func_t
) multi_user
;
1510 alrm_handler(int sig __unused
)
1516 * Bring the system down to single user.
1524 static const int death_sigs
[2] = { SIGTERM
, SIGKILL
};
1526 /* NB: should send a message to the session logger to avoid blocking. */
1527 #ifdef SUPPORT_UTMPX
1528 logwtmpx("~", "shutdown", "", 0, INIT_PROCESS
);
1530 logwtmp("~", "shutdown", "");
1532 for (sp
= sessions
; sp
; sp
= sp
->se_next
) {
1533 sp
->se_flags
|= SE_SHUTDOWN
;
1534 kill(sp
->se_process
, SIGHUP
);
1537 /* Try to run the rc.shutdown script within a period of time */
1540 for (i
= 0; i
< 2; ++i
) {
1541 if (kill(-1, death_sigs
[i
]) == -1 && errno
== ESRCH
)
1542 return (state_func_t
) single_user
;
1547 if ((pid
= waitpid(-1, NULL
, 0)) != -1)
1549 while (clang
== 0 && errno
!= ECHILD
);
1551 if (errno
== ECHILD
)
1552 return (state_func_t
) single_user
;
1555 warning("some processes would not die; ps axl advised");
1557 return (state_func_t
) single_user
;
1561 * Run the system shutdown script.
1563 * Exit codes: XXX I should document more
1564 * -2 shutdown script terminated abnormally
1565 * -1 fatal error - can't run script
1567 * >0 some error (exit code)
1574 int shutdowntimeout
;
1576 const char *argv
[4];
1577 struct sigaction sa
;
1581 * rc.shutdown is optional, so to prevent any unnecessary
1582 * complaints from the shell we simply don't run it if the
1583 * file does not exist. If the stat() here fails for other
1584 * reasons, we'll let the shell complain.
1586 if (stat(_PATH_RUNDOWN
, &sb
) == -1 && errno
== ENOENT
)
1589 if ((pid
= fork()) == 0) {
1592 /* Assume that init already grab console as ctty before */
1594 sigemptyset(&sa
.sa_mask
);
1596 sa
.sa_handler
= SIG_IGN
;
1597 sigaction(SIGTSTP
, &sa
, NULL
);
1598 sigaction(SIGHUP
, &sa
, NULL
);
1600 if ((fd
= open(_PATH_CONSOLE
, O_RDWR
)) == -1)
1601 warning("can't open %s: %m", _PATH_CONSOLE
);
1611 * Run the shutdown script.
1614 argv
[1] = _PATH_RUNDOWN
;
1621 sigprocmask(SIG_SETMASK
, &sa
.sa_mask
, NULL
);
1624 setprocresources(RESOURCE_RC
);
1626 execv(_PATH_BSHELL
, __DECONST(char **, argv
));
1627 warning("can't exec %s for %s: %m", _PATH_BSHELL
, _PATH_RUNDOWN
);
1628 _exit(1); /* force single user mode */
1632 emergency("can't fork for %s on %s: %m",
1633 _PATH_BSHELL
, _PATH_RUNDOWN
);
1634 while (waitpid(-1, NULL
, WNOHANG
) > 0)
1636 sleep(STALL_TIMEOUT
);
1640 len
= sizeof(shutdowntimeout
);
1641 if (sysctlbyname("kern.init_shutdown_timeout",
1643 &len
, NULL
, 0) == -1 || shutdowntimeout
< 2)
1644 shutdowntimeout
= DEATH_SCRIPT
;
1645 alarm(shutdowntimeout
);
1648 * Copied from single_user(). This is a bit paranoid.
1649 * Use the same ALRM handler.
1652 if ((wpid
= waitpid(-1, &status
, WUNTRACED
)) != -1)
1653 collect_child(wpid
);
1655 /* we were waiting for the sub-shell */
1656 kill(wpid
, SIGTERM
);
1657 warning("timeout expired for %s on %s: %m; going to single user mode",
1658 _PATH_BSHELL
, _PATH_RUNDOWN
);
1664 warning("wait for %s on %s failed: %m; going to single user mode",
1665 _PATH_BSHELL
, _PATH_RUNDOWN
);
1668 if (wpid
== pid
&& WIFSTOPPED(status
)) {
1669 warning("init: %s on %s stopped, restarting\n",
1670 _PATH_BSHELL
, _PATH_RUNDOWN
);
1674 } while (wpid
!= pid
&& !clang
);
1676 /* Turn off the alarm */
1679 if (WIFSIGNALED(status
) && WTERMSIG(status
) == SIGTERM
&&
1680 requested_transition
== catatonia
) {
1682 * /etc/rc.shutdown executed /sbin/reboot;
1683 * wait for the end quietly
1692 if (!WIFEXITED(status
)) {
1693 warning("%s on %s terminated abnormally, going to single user mode",
1694 _PATH_BSHELL
, _PATH_RUNDOWN
);
1698 if ((status
= WEXITSTATUS(status
)) != 0)
1699 warning("%s returned status %d", _PATH_RUNDOWN
, status
);
1717 while (c
== ' ' || c
== '\t' )
1727 while (c
&& c
!= '\'')
1729 if (!c
) /* unterminated string */
1734 while (c
&& c
!= ' ' && c
!= '\t' )
1745 setprocresources(const char *cname
)
1748 if ((lc
= login_getclassbyname(cname
, NULL
)) != NULL
) {
1749 setusercontext(lc
, NULL
, 0, LOGIN_SETPRIORITY
|LOGIN_SETRESOURCES
);
1755 #ifdef SUPPORT_UTMPX
1757 session_utmpx(const session_t
*sp
, int add
)
1759 const char *name
= sp
->se_getty
? sp
->se_getty
:
1760 (sp
->se_window
? sp
->se_window
: "");
1761 const char *line
= sp
->se_device
+ sizeof(_PATH_DEV
) - 1;
1763 make_utmpx(name
, line
, add
? LOGIN_PROCESS
: DEAD_PROCESS
,
1764 sp
->se_process
, &sp
->se_started
, sp
->se_index
);
1768 make_utmpx(const char *name
, const char *line
, int type
, pid_t pid
,
1769 const struct timeval
*tv
, int session
)
1774 (void)memset(&ut
, 0, sizeof(ut
));
1775 (void)strlcpy(ut
.ut_name
, name
, sizeof(ut
.ut_name
));
1777 (void)strlcpy(ut
.ut_line
, line
, sizeof(ut
.ut_line
));
1782 (void)gettimeofday(&ut
.ut_tv
, NULL
);
1783 ut
.ut_session
= session
;
1785 eline
= line
+ strlen(line
);
1786 if ((size_t)(eline
- line
) >= sizeof(ut
.ut_id
))
1787 line
= eline
- sizeof(ut
.ut_id
);
1788 (void)strncpy(ut
.ut_id
, line
, sizeof(ut
.ut_id
));
1790 if (pututxline(&ut
) == NULL
)
1791 warning("can't add utmpx record for `%s': %m", ut
.ut_line
);
1796 get_runlevel(const state_t s
)
1798 if (s
== (state_t
)single_user
)
1800 if (s
== (state_t
)runcom
)
1802 if (s
== (state_t
)read_ttys
)
1804 if (s
== (state_t
)multi_user
)
1806 if (s
== (state_t
)clean_ttys
)
1808 if (s
== (state_t
)catatonia
)
1814 utmpx_set_runlevel(char old
, char new)
1819 * Don't record any transitions until we did the first transition
1820 * to read ttys, which is when we are guaranteed to have a read-write
1821 * /var. Perhaps use a different variable for this?
1823 if (sessions
== NULL
)
1826 (void)memset(&ut
, 0, sizeof(ut
));
1827 (void)snprintf(ut
.ut_line
, sizeof(ut
.ut_line
), RUNLVL_MSG
, new);
1828 ut
.ut_type
= RUN_LVL
;
1829 (void)gettimeofday(&ut
.ut_tv
, NULL
);
1830 ut
.ut_exit
.e_exit
= old
;
1831 ut
.ut_exit
.e_termination
= new;
1832 if (pututxline(&ut
) == NULL
)
1833 warning("can't add utmpx record for `runlevel': %m");