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 */
85 * User-based resource limits.
87 #define RESOURCE_RC "daemon"
88 #define RESOURCE_WINDOW "default"
89 #define RESOURCE_GETTY "default"
92 #define DEFAULT_STATE runcom
105 typedef state_t (*state_func_t
)(void);
107 static state_t
f_single_user(void);
108 static state_t
f_runcom(void);
109 static state_t
f_read_ttys(void);
110 static state_t
f_multi_user(void);
111 static state_t
f_clean_ttys(void);
112 static state_t
f_catatonia(void);
113 static state_t
f_death(void);
115 state_func_t state_funcs
[] = {
126 enum { AUTOBOOT
, FASTBOOT
} runcom_mode
= AUTOBOOT
;
130 static void transition(state_t
);
131 static volatile sig_atomic_t requested_transition
= DEFAULT_STATE
;
133 static void setctty(const char *);
135 typedef struct init_session
{
136 int se_index
; /* index of entry in ttys file */
137 pid_t se_process
; /* controlling process */
138 struct timeval se_started
; /* used to avoid thrashing */
139 int se_flags
; /* status of session */
140 #define SE_SHUTDOWN 0x1 /* session won't be restarted */
141 #define SE_PRESENT 0x2 /* session is in /etc/ttys */
142 int se_nspace
; /* spacing count */
143 char *se_device
; /* filename of port */
144 char *se_getty
; /* what to run on that port */
145 char *se_getty_argv_space
; /* pre-parsed argument array space */
146 char **se_getty_argv
; /* pre-parsed argument array */
147 char *se_window
; /* window system (started only once) */
148 char *se_window_argv_space
; /* pre-parsed argument array space */
149 char **se_window_argv
; /* pre-parsed argument array */
150 char *se_type
; /* default terminal type */
151 struct init_session
*se_prev
;
152 struct init_session
*se_next
;
155 static void handle(sig_t
, ...);
156 static void delset(sigset_t
*, ...);
158 static void stall(const char *, ...) __printflike(1, 2);
159 static void warning(const char *, ...) __printflike(1, 2);
160 static void emergency(const char *, ...) __printflike(1, 2);
161 static void disaster(int);
162 static void badsys(int);
163 static int runshutdown(void);
164 static char *strk(char *);
167 #define SINGLE_USER 's'
169 #define READ_TTYS 't'
170 #define MULTI_USER 'm'
171 #define CLEAN_TTYS 'T'
172 #define CATATONIA 'c'
174 static void free_session(session_t
*);
175 static session_t
*new_session(session_t
*, int, struct ttyent
*);
176 static void adjttyent(struct ttyent
*typ
);
178 static char **construct_argv(char *);
179 static void start_window_system(session_t
*);
180 static void collect_child(pid_t
);
181 static pid_t
start_getty(session_t
*);
182 static void transition_handler(int);
183 static void alrm_handler(int);
184 static void setsecuritylevel(int);
185 static int getsecuritylevel(void);
186 static char *get_chroot(void);
187 static int setupargv(session_t
*, struct ttyent
*);
189 static void setprocresources(const char *);
192 static void clear_session_logs(session_t
*);
194 static int start_session_db(void);
195 static void add_session(session_t
*);
196 static void del_session(session_t
*);
197 static session_t
*find_session(pid_t
);
200 static struct timeval boot_time
;
201 state_t current_state
= death
;
202 static void session_utmpx(const session_t
*, int);
203 static void make_utmpx(const char *, const char *, int, pid_t
,
204 const struct timeval
*, int);
205 static char get_runlevel(const state_t
);
206 static void utmpx_set_runlevel(char, char);
209 static int Reboot
= FALSE
;
210 static int howto
= RB_AUTOBOOT
;
212 static DB
*session_db
;
213 static volatile sig_atomic_t clang
;
214 static session_t
*sessions
;
217 * The mother of all processes.
220 main(int argc
, char *argv
[])
229 (void)gettimeofday(&boot_time
, NULL
);
230 #endif /* SUPPORT_UTMPX */
232 /* Dispose of random users. */
234 errx(1, "%s", strerror(EPERM
));
236 /* System V users like to reexec init. */
238 #ifdef COMPAT_SYSV_INIT
239 /* So give them what they want */
241 if (strlen(argv
[1]) == 1) {
242 char runlevel
= *argv
[1];
246 case '0': /* halt + poweroff */
249 case '1': /* single-user */
252 case '6': /* reboot */
255 case 'c': /* block further logins */
258 case 'q': /* rescan /etc/ttys */
268 errx(1, "invalid run-level ``%s''", argv
[1]);
271 errx(1, "already running");
274 * Note that this does NOT open a file...
275 * Does 'init' deserve its own facility number?
277 openlog("init", LOG_CONS
, LOG_AUTH
);
280 * If chroot has been requested by the boot loader,
281 * do it now. Try to be robust: If the directory
282 * doesn't exist, continue anyway.
284 init_chroot
= get_chroot();
285 if (init_chroot
!= NULL
) {
286 if (chdir(init_chroot
) == -1 || chroot(".") == -1)
287 warning("can't chroot to %s: %m", init_chroot
);
292 * Create an initial session.
295 warning("initial setsid() failed: %m");
298 * Establish an initial user so that programs running
299 * single user do not freak out and die (like passwd).
301 if (setlogin("root") < 0)
302 warning("setlogin() failed: %m");
304 if (stat("/dev/null", &sts
) < 0) {
305 warning("/dev MAY BE CORRUPT! /dev/null is missing!\n");
310 * This code assumes that we always get arguments through flags,
311 * never through bits set in some random machine register.
313 while ((c
= getopt(argc
, argv
, "dsf")) != -1)
316 /* We don't support DEVFS. */
319 requested_transition
= single_user
;
322 runcom_mode
= FASTBOOT
;
325 warning("unrecognized flag '-%c'", c
);
330 warning("ignoring excess arguments");
333 * We catch or block signals rather than ignore them,
334 * so that they get reset on exec.
336 handle(badsys
, SIGSYS
, 0);
337 handle(disaster
, SIGABRT
, SIGFPE
, SIGILL
, SIGSEGV
,
338 SIGBUS
, SIGXCPU
, SIGXFSZ
, 0);
339 handle(transition_handler
, SIGHUP
, SIGINT
, SIGTERM
, SIGTSTP
,
340 SIGUSR1
, SIGUSR2
, 0);
341 handle(alrm_handler
, SIGALRM
, 0);
343 delset(&mask
, SIGABRT
, SIGFPE
, SIGILL
, SIGSEGV
, SIGBUS
, SIGSYS
,
344 SIGXCPU
, SIGXFSZ
, SIGHUP
, SIGINT
, SIGTERM
, SIGTSTP
, SIGALRM
,
345 SIGUSR1
, SIGUSR2
, 0);
346 sigprocmask(SIG_SETMASK
, &mask
, NULL
);
347 sigemptyset(&sa
.sa_mask
);
349 sa
.sa_handler
= SIG_IGN
;
350 sigaction(SIGTTIN
, &sa
, NULL
);
351 sigaction(SIGTTOU
, &sa
, NULL
);
361 * Start the state machine.
363 transition(requested_transition
);
366 * Should never reach here.
372 * Associate a function with a signal handler.
375 handle(sig_t handler
, ...)
379 sigset_t mask_everything
;
382 va_start(ap
, handler
);
384 sa
.sa_handler
= handler
;
385 sigfillset(&mask_everything
);
387 while ((sig
= va_arg(ap
, int)) != 0) {
388 sa
.sa_mask
= mask_everything
;
389 /* XXX SA_RESTART? */
390 sa
.sa_flags
= sig
== SIGCHLD
? SA_NOCLDSTOP
: 0;
391 sigaction(sig
, &sa
, NULL
);
397 * Delete a set of signals from a mask.
400 delset(sigset_t
*maskp
, ...)
407 while ((sig
= va_arg(ap
, int)) != 0)
408 sigdelset(maskp
, sig
);
413 * Log a message and sleep for a while (to give someone an opportunity
414 * to read it and to save log or hardcopy output if the problem is chronic).
417 stall(const char *message
, ...)
421 va_start(ap
, message
);
423 vsyslog(LOG_ALERT
, message
, ap
);
425 sleep(STALL_TIMEOUT
);
429 * Like stall(), but doesn't sleep.
430 * If cpp had variadic macros, the two functions could be #defines for another.
433 warning(const char *message
, ...)
437 va_start(ap
, message
);
439 vsyslog(LOG_ALERT
, message
, ap
);
444 * Log an emergency message.
447 emergency(const char *message
, ...)
451 va_start(ap
, message
);
453 vsyslog(LOG_EMERG
, message
, ap
);
458 * Catch a SIGSYS signal.
460 * These may arise if a system does not support sysctl.
461 * We tolerate up to 25 of these, then throw in the towel.
466 static int badcount
= 0;
474 * Catch an unexpected signal.
479 emergency("fatal signal: %s",
480 (unsigned)sig
< NSIG
? sys_siglist
[sig
] : "unknown signal");
482 sleep(STALL_TIMEOUT
);
483 _exit(sig
); /* reboot */
487 * Get the security level of the kernel.
490 getsecuritylevel(void)
492 #ifdef KERN_SECURELVL
493 int name
[2], curlevel
;
497 name
[1] = KERN_SECURELVL
;
498 len
= sizeof curlevel
;
499 if (sysctl(name
, 2, &curlevel
, &len
, NULL
, 0) == -1) {
500 emergency("cannot get kernel security level: %s",
511 * Get the value of the "init_chroot" variable from the
512 * kernel environment (or NULL if not set).
518 static const char ichname
[] = "init_chroot="; /* includes '=' */
519 const int ichlen
= strlen(ichname
);
520 int real_oid
[CTL_MAXNAME
];
526 oidlen
= NELEM(real_oid
);
527 if (sysctlnametomib("kern.environment", real_oid
, &oidlen
)) {
528 warning("cannot find kern.environment base sysctl OID");
531 if (oidlen
+ 1 >= NELEM(real_oid
)) {
532 warning("kern.environment OID is too large!");
536 real_oid
[oidlen
] = 0;
539 real_oid
[oidlen
+ 1] = i
;
541 if (sysctl(real_oid
, oidlen
+ 2, sbuf
, &slen
, NULL
, 0) < 0) {
543 warning("sysctl kern.environment.%d: %m", i
);
548 * slen includes the terminating \0, but do a few sanity
554 if (strncmp(sbuf
, ichname
, ichlen
) != 0)
557 res
= strdup(sbuf
+ ichlen
);
564 * Set the security level of the kernel.
567 setsecuritylevel(int newlevel
)
569 #ifdef KERN_SECURELVL
570 int name
[2], curlevel
;
572 curlevel
= getsecuritylevel();
573 if (newlevel
== curlevel
)
576 name
[1] = KERN_SECURELVL
;
577 if (sysctl(name
, 2, NULL
, NULL
, &newlevel
, sizeof newlevel
) == -1) {
579 "cannot change kernel security level from %d to %d: %s",
580 curlevel
, newlevel
, strerror(errno
));
584 warning("kernel security level changed from %d to %d",
591 * Change states in the finite state machine.
592 * The initial state is passed as an argument.
595 transition(state_t s
)
599 utmpx_set_runlevel(get_runlevel(current_state
),
603 s
= (*state_funcs
[s
])();
608 * Close out the accounting files for a login session.
611 clear_session_logs(session_t
*sp
)
613 char *line
= sp
->se_device
+ sizeof(_PATH_DEV
) - 1;
616 if (logoutx(line
, 0, DEAD_PROCESS
))
617 logwtmpx(line
, "", "", 0, DEAD_PROCESS
);
620 logwtmp(line
, "", "");
624 * Start a session and allocate a controlling terminal.
625 * Only called by children of init after forking.
628 setctty(const char *name
)
633 if ((fd
= open(name
, O_RDWR
)) == -1) {
634 stall("can't open %s: %m", name
);
637 if (login_tty(fd
) == -1) {
638 stall("can't get %s for controlling terminal: %m", name
);
644 * Bring the system up single user.
652 const char *shell
= _PATH_BSHELL
;
657 static const char banner
[] =
658 "Enter root password, or ^D to go multi-user\n";
659 char *clear
, *password
;
666 /* Instead of going single user, let's reboot the machine */
674 if ((pid
= fork()) == 0) {
676 * Start the single user session.
678 setctty(_PATH_CONSOLE
);
682 * Check the root password.
683 * We don't care if the console is 'on' by default;
684 * it's the only tty that can be 'off' and 'secure'.
686 typ
= getttynam("console");
687 pp
= getpwnam("root");
688 if (typ
&& (typ
->ty_status
& TTY_SECURE
) == 0 &&
689 pp
&& *pp
->pw_passwd
) {
690 write(2, banner
, sizeof banner
- 1);
692 clear
= getpass("Password:");
693 if (clear
== NULL
|| *clear
== '\0')
695 password
= crypt(clear
, pp
->pw_passwd
);
696 bzero(clear
, _PASSWORD_LEN
);
697 if (password
!= NULL
&& strcmp(password
, pp
->pw_passwd
) == 0)
699 warning("single-user login failed\n");
712 "Enter full pathname of shell or RETURN for " _PATH_BSHELL ": "
713 write(STDERR_FILENO
, SHREQUEST
, sizeof(SHREQUEST
) - 1);
714 while ((num
= read(STDIN_FILENO
, cp
, 1)) != -1 &&
715 num
!= 0 && *cp
!= '\n' && cp
< &altshell
[127])
718 if (altshell
[0] != '\0')
721 #endif /* DEBUGSHELL */
725 * We catch all the interesting ones,
726 * and those are reset to SIG_DFL on exec.
729 sigprocmask(SIG_SETMASK
, &mask
, NULL
);
733 * If the default one doesn't work, try the Bourne shell.
737 execv(shell
, __DECONST(char **, argv
));
738 emergency("can't exec %s for single user: %m", shell
);
739 execv(_PATH_BSHELL
, __DECONST(char **, argv
));
740 emergency("can't exec %s for single user: %m", _PATH_BSHELL
);
741 sleep(STALL_TIMEOUT
);
747 * We are seriously hosed. Do our best.
749 emergency("can't fork single-user shell, trying again");
750 while (waitpid(-1, NULL
, WNOHANG
) > 0)
755 requested_transition
= 0;
757 if ((wpid
= waitpid(-1, &status
, WUNTRACED
)) != -1)
762 warning("wait for single-user shell failed: %m; restarting");
765 if (wpid
== pid
&& WIFSTOPPED(status
)) {
766 warning("init: shell stopped, restarting\n");
770 } while (wpid
!= pid
&& !requested_transition
);
772 if (requested_transition
)
773 return requested_transition
;
775 if (!WIFEXITED(status
)) {
776 if (WTERMSIG(status
) == SIGKILL
) {
778 * reboot(8) killed shell?
780 warning("single user shell terminated.");
781 sleep(STALL_TIMEOUT
);
784 warning("single user shell terminated, restarting");
789 runcom_mode
= FASTBOOT
;
794 * Run the system startup script.
804 if ((pid
= fork()) == 0) {
805 sigemptyset(&sa
.sa_mask
);
807 sa
.sa_handler
= SIG_IGN
;
808 sigaction(SIGTSTP
, &sa
, NULL
);
809 sigaction(SIGHUP
, &sa
, NULL
);
811 setctty(_PATH_CONSOLE
);
814 argv
[1] = _PATH_RUNCOM
;
815 argv
[2] = runcom_mode
== AUTOBOOT
? "autoboot" : 0;
818 sigprocmask(SIG_SETMASK
, &sa
.sa_mask
, NULL
);
821 setprocresources(RESOURCE_RC
);
823 execv(_PATH_BSHELL
, __DECONST(char **, argv
));
824 stall("can't exec %s for %s: %m", _PATH_BSHELL
, _PATH_RUNCOM
);
825 _exit(1); /* force single user mode */
829 emergency("can't fork for %s on %s: %m",
830 _PATH_BSHELL
, _PATH_RUNCOM
);
831 while (waitpid(-1, NULL
, WNOHANG
) > 0)
833 sleep(STALL_TIMEOUT
);
838 * Copied from single_user(). This is a bit paranoid.
840 requested_transition
= 0;
842 if ((wpid
= waitpid(-1, &status
, WUNTRACED
)) != -1)
845 if (requested_transition
== death
)
849 warning("wait for %s on %s failed: %m; going to single user mode",
850 _PATH_BSHELL
, _PATH_RUNCOM
);
853 if (wpid
== pid
&& WIFSTOPPED(status
)) {
854 warning("init: %s on %s stopped, restarting\n",
855 _PATH_BSHELL
, _PATH_RUNCOM
);
859 } while (wpid
!= pid
);
861 if (WIFSIGNALED(status
) && WTERMSIG(status
) == SIGTERM
&&
862 requested_transition
== catatonia
) {
863 /* /etc/rc executed /sbin/reboot; wait for the end quietly */
871 if (!WIFEXITED(status
)) {
872 warning("%s on %s terminated abnormally, going to single user mode",
873 _PATH_BSHELL
, _PATH_RUNCOM
);
877 if (WEXITSTATUS(status
))
880 runcom_mode
= AUTOBOOT
; /* the default */
882 logwtmpx("~", "reboot", "", 0, INIT_PROCESS
);
884 logwtmp("~", "reboot", "");
889 * Open the session database.
891 * NB: We could pass in the size here; is it necessary?
894 start_session_db(void)
896 if (session_db
&& (*session_db
->close
)(session_db
))
897 emergency("session database close: %s", strerror(errno
));
898 if ((session_db
= dbopen(NULL
, O_RDWR
, 0, DB_HASH
, NULL
)) == NULL
) {
899 emergency("session database open: %s", strerror(errno
));
907 * Add a new login session.
910 add_session(session_t
*sp
)
915 key
.data
= &sp
->se_process
;
916 key
.size
= sizeof sp
->se_process
;
918 data
.size
= sizeof sp
;
920 if ((*session_db
->put
)(session_db
, &key
, &data
, 0))
921 emergency("insert %d: %s", sp
->se_process
, strerror(errno
));
923 session_utmpx(sp
, 1);
928 * Delete an old login session.
931 del_session(session_t
*sp
)
935 key
.data
= &sp
->se_process
;
936 key
.size
= sizeof sp
->se_process
;
938 if ((*session_db
->del
)(session_db
, &key
, 0))
939 emergency("delete %d: %s", sp
->se_process
, strerror(errno
));
941 session_utmpx(sp
, 0);
946 * Look up a login session by pid.
949 find_session(pid_t pid
)
956 key
.size
= sizeof pid
;
957 if ((*session_db
->get
)(session_db
, &key
, &data
, 0) != 0)
959 bcopy(data
.data
, (char *)&ret
, sizeof(ret
));
964 * Construct an argument vector from a command line.
967 construct_argv(char *command
)
970 char **argv
= malloc(((strlen(command
) + 1) / 2 + 1)
973 if ((argv
[argc
++] = strk(command
)) == NULL
) {
977 while ((argv
[argc
++] = strk(NULL
)) != NULL
)
983 * Deallocate a session descriptor.
986 free_session(session_t
*sp
)
991 free(sp
->se_getty_argv_space
);
992 free(sp
->se_getty_argv
);
996 free(sp
->se_window_argv_space
);
997 free(sp
->se_window_argv
);
1006 adjttyent(struct ttyent
*typ
)
1011 size_t rdev_size
= sizeof(rdev
);
1013 if (typ
->ty_name
== NULL
)
1017 * IFCONSOLE option forces tty off if not the console.
1019 if (typ
->ty_status
& TTY_IFCONSOLE
) {
1020 asprintf(&devpath
, "%s%s", _PATH_DEV
, typ
->ty_name
);
1021 if (stat(devpath
, &st
) < 0 ||
1022 sysctlbyname("kern.console_rdev",
1025 /* device does not exist or no sysctl, disable */
1026 typ
->ty_status
&= ~TTY_ON
;
1027 } else if (rdev
!= st
.st_rdev
) {
1028 typ
->ty_status
&= ~TTY_ON
;
1035 * Allocate a new session descriptor.
1036 * Mark it SE_PRESENT.
1039 new_session(session_t
*sprev
, int session_index
, struct ttyent
*typ
)
1044 if (typ
->ty_name
== NULL
|| typ
->ty_getty
== NULL
)
1047 if ((typ
->ty_status
& TTY_ON
) == 0)
1050 sp
= (session_t
*) calloc(1, sizeof (session_t
));
1052 asprintf(&sp
->se_device
, "%s%s", _PATH_DEV
, typ
->ty_name
);
1053 sp
->se_index
= session_index
;
1054 sp
->se_flags
|= SE_PRESENT
;
1057 * Attempt to open the device, if we get "device not configured"
1058 * then don't add the device to the session list.
1060 if ((fd
= open(sp
->se_device
, O_RDONLY
| O_NONBLOCK
, 0)) < 0) {
1061 if (errno
== ENXIO
) {
1068 if (setupargv(sp
, typ
) == 0) {
1074 if (sprev
== NULL
) {
1078 sprev
->se_next
= sp
;
1079 sp
->se_prev
= sprev
;
1086 * Calculate getty and if useful window argv vectors.
1089 setupargv(session_t
*sp
, struct ttyent
*typ
)
1094 free(sp
->se_getty_argv_space
);
1095 free(sp
->se_getty_argv
);
1097 sp
->se_getty
= malloc(strlen(typ
->ty_getty
) + strlen(typ
->ty_name
) + 2);
1098 sprintf(sp
->se_getty
, "%s %s", typ
->ty_getty
, typ
->ty_name
);
1099 sp
->se_getty_argv_space
= strdup(sp
->se_getty
);
1100 sp
->se_getty_argv
= construct_argv(sp
->se_getty_argv_space
);
1101 if (sp
->se_getty_argv
== NULL
) {
1102 warning("can't parse getty for port %s", sp
->se_device
);
1104 free(sp
->se_getty_argv_space
);
1105 sp
->se_getty
= sp
->se_getty_argv_space
= NULL
;
1108 if (sp
->se_window
) {
1109 free(sp
->se_window
);
1110 free(sp
->se_window_argv_space
);
1111 free(sp
->se_window_argv
);
1113 sp
->se_window
= sp
->se_window_argv_space
= NULL
;
1114 sp
->se_window_argv
= NULL
;
1115 if (typ
->ty_window
) {
1116 sp
->se_window
= strdup(typ
->ty_window
);
1117 sp
->se_window_argv_space
= strdup(sp
->se_window
);
1118 sp
->se_window_argv
= construct_argv(sp
->se_window_argv_space
);
1119 if (sp
->se_window_argv
== NULL
) {
1120 warning("can't parse window for port %s",
1122 free(sp
->se_window_argv_space
);
1123 free(sp
->se_window
);
1124 sp
->se_window
= sp
->se_window_argv_space
= NULL
;
1130 sp
->se_type
= typ
->ty_type
? strdup(typ
->ty_type
) : 0;
1135 * Walk the list of ttys and create sessions for each active line.
1140 int session_index
= 0;
1141 session_t
*sp
, *snext
;
1144 #ifdef SUPPORT_UTMPX
1145 if (sessions
== NULL
) {
1148 make_utmpx("", BOOT_MSG
, BOOT_TIME
, 0, &boot_time
, 0);
1151 * If wtmpx is not empty, pick the down time from there
1153 if (stat(_PATH_WTMPX
, &st
) != -1 && st
.st_size
!= 0) {
1154 struct timeval down_time
;
1156 TIMESPEC_TO_TIMEVAL(&down_time
,
1157 st
.st_atime
> st
.st_mtime
?
1158 &st
.st_atimespec
: &st
.st_mtimespec
);
1159 make_utmpx("", DOWN_MSG
, DOWN_TIME
, 0, &down_time
, 0);
1164 * Destroy any previous session state.
1165 * There shouldn't be any, but just in case...
1167 for (sp
= sessions
; sp
; sp
= snext
) {
1169 clear_session_logs(sp
);
1170 snext
= sp
->se_next
;
1174 if (start_session_db())
1178 * Allocate a session entry for each active port.
1179 * Note that sp starts at 0.
1181 while ((typ
= getttyent()) != NULL
) {
1183 if ((snext
= new_session(sp
, ++session_index
, typ
)) != NULL
)
1193 * Start a window system running.
1196 start_window_system(session_t
*sp
)
1200 char term
[64], *env
[2];
1202 if ((pid
= fork()) == -1) {
1203 emergency("can't fork for window system on port %s: %m",
1205 /* hope that getty fails and we can try again */
1213 sigprocmask(SIG_SETMASK
, &mask
, NULL
);
1216 emergency("setsid failed (window) %m");
1219 setprocresources(RESOURCE_WINDOW
);
1222 /* Don't use malloc after fork */
1223 strcpy(term
, "TERM=");
1224 strncat(term
, sp
->se_type
, sizeof(term
) - 6);
1230 execve(sp
->se_window_argv
[0], sp
->se_window_argv
, env
);
1231 stall("can't exec window system '%s' for port %s: %m",
1232 sp
->se_window_argv
[0], sp
->se_device
);
1237 * Start a login session running.
1240 start_getty(session_t
*sp
)
1244 time_t current_time
= time(NULL
);
1246 char term
[64], *env
[2];
1248 if (current_time
>= sp
->se_started
.tv_sec
&&
1249 current_time
- sp
->se_started
.tv_sec
< GETTY_SPACING
) {
1250 if (++sp
->se_nspace
> GETTY_NSPACE
) {
1258 * fork(), not vfork() -- we can't afford to block.
1260 if ((pid
= fork()) == -1) {
1261 emergency("can't fork for getty on port %s: %m", sp
->se_device
);
1269 warning("getty repeating too quickly on port %s, sleeping %d secs",
1270 sp
->se_device
, GETTY_SLEEP
);
1271 sleep((unsigned) GETTY_SLEEP
);
1274 if (sp
->se_window
) {
1275 start_window_system(sp
);
1280 sigprocmask(SIG_SETMASK
, &mask
, NULL
);
1283 setprocresources(RESOURCE_GETTY
);
1286 /* Don't use malloc after fork */
1287 strcpy(term
, "TERM=");
1288 strncat(term
, sp
->se_type
, sizeof(term
) - 6);
1294 execve(sp
->se_getty_argv
[0], sp
->se_getty_argv
, env
);
1295 stall("can't exec getty '%s' for port %s: %m",
1296 sp
->se_getty_argv
[0], sp
->se_device
);
1301 * Collect exit status for a child.
1302 * If an exiting login, start a new login running.
1305 collect_child(pid_t pid
)
1307 session_t
*sp
, *sprev
, *snext
;
1312 if (! (sp
= find_session(pid
)))
1315 clear_session_logs(sp
);
1319 if (sp
->se_flags
& SE_SHUTDOWN
) {
1320 if ((sprev
= sp
->se_prev
) != NULL
)
1321 sprev
->se_next
= sp
->se_next
;
1323 sessions
= sp
->se_next
;
1324 if ((snext
= sp
->se_next
) != NULL
)
1325 snext
->se_prev
= sp
->se_prev
;
1330 if ((pid
= start_getty(sp
)) == -1) {
1331 /* serious trouble */
1332 requested_transition
= clean_ttys
;
1336 sp
->se_process
= pid
;
1337 gettimeofday(&sp
->se_started
, NULL
);
1342 * Catch a signal and request a state transition.
1345 transition_handler(int sig
)
1350 requested_transition
= clean_ttys
;
1353 howto
= RB_POWEROFF
;
1362 requested_transition
= death
;
1365 requested_transition
= catatonia
;
1368 requested_transition
= 0;
1374 * Take the system multiuser.
1382 requested_transition
= 0;
1385 * If the administrator has not set the security level to -1
1386 * to indicate that the kernel should not run multiuser in secure
1387 * mode, and the run script has not set a higher level of security
1388 * than level 1, then put the kernel into secure mode.
1390 if (getsecuritylevel() == 0)
1391 setsecuritylevel(1);
1393 for (sp
= sessions
; sp
; sp
= sp
->se_next
) {
1396 if ((pid
= start_getty(sp
)) == -1) {
1397 /* serious trouble */
1398 requested_transition
= clean_ttys
;
1401 sp
->se_process
= pid
;
1402 gettimeofday(&sp
->se_started
, NULL
);
1406 while (!requested_transition
)
1407 if ((pid
= waitpid(-1, NULL
, 0)) != -1)
1410 return requested_transition
;
1414 * This is an (n*2)+(n^2) algorithm. We hope it isn't run often...
1419 session_t
*sp
, *sprev
;
1421 int session_index
= 0;
1423 char *old_getty
, *old_window
, *old_type
;
1429 * mark all sessions for death, (!SE_PRESENT)
1430 * as we find or create new ones they'll be marked as keepers,
1431 * we'll later nuke all the ones not found in /etc/ttys
1433 for (sp
= sessions
; sp
!= NULL
; sp
= sp
->se_next
)
1434 sp
->se_flags
&= ~SE_PRESENT
;
1436 devlen
= sizeof(_PATH_DEV
) - 1;
1437 while ((typ
= getttyent()) != NULL
) {
1441 for (sprev
= NULL
, sp
= sessions
; sp
; sprev
= sp
, sp
= sp
->se_next
)
1442 if (strcmp(typ
->ty_name
, sp
->se_device
+ devlen
) == 0)
1446 /* we want this one to live */
1447 sp
->se_flags
|= SE_PRESENT
;
1448 if (sp
->se_index
!= session_index
) {
1449 warning("port %s changed utmp index from %d to %d",
1450 sp
->se_device
, sp
->se_index
,
1452 sp
->se_index
= session_index
;
1454 if ((typ
->ty_status
& TTY_ON
) == 0 ||
1455 typ
->ty_getty
== 0) {
1456 sp
->se_flags
|= SE_SHUTDOWN
;
1457 kill(sp
->se_process
, SIGHUP
);
1460 sp
->se_flags
&= ~SE_SHUTDOWN
;
1461 old_getty
= sp
->se_getty
? strdup(sp
->se_getty
) : 0;
1462 old_window
= sp
->se_window
? strdup(sp
->se_window
) : 0;
1463 old_type
= sp
->se_type
? strdup(sp
->se_type
) : 0;
1464 if (setupargv(sp
, typ
) == 0) {
1465 warning("can't parse getty for port %s",
1467 sp
->se_flags
|= SE_SHUTDOWN
;
1468 kill(sp
->se_process
, SIGHUP
);
1470 else if ( !old_getty
1471 || (!old_type
&& sp
->se_type
)
1472 || (old_type
&& !sp
->se_type
)
1473 || (!old_window
&& sp
->se_window
)
1474 || (old_window
&& !sp
->se_window
)
1475 || (strcmp(old_getty
, sp
->se_getty
) != 0)
1476 || (old_window
&& strcmp(old_window
, sp
->se_window
) != 0)
1477 || (old_type
&& strcmp(old_type
, sp
->se_type
) != 0)
1479 /* Don't set SE_SHUTDOWN here */
1481 sp
->se_started
.tv_sec
= sp
->se_started
.tv_usec
= 0;
1482 kill(sp
->se_process
, SIGHUP
);
1493 new_session(sprev
, session_index
, typ
);
1499 * sweep through and kill all deleted sessions
1500 * ones who's /etc/ttys line was deleted (SE_PRESENT unset)
1502 for (sp
= sessions
; sp
!= NULL
; sp
= sp
->se_next
) {
1503 if ((sp
->se_flags
& SE_PRESENT
) == 0) {
1504 sp
->se_flags
|= SE_SHUTDOWN
;
1505 kill(sp
->se_process
, SIGHUP
);
1513 * Block further logins.
1520 for (sp
= sessions
; sp
; sp
= sp
->se_next
)
1521 sp
->se_flags
|= SE_SHUTDOWN
;
1530 alrm_handler(int sig __unused
)
1536 * Bring the system down to single user.
1544 static const int death_sigs
[2] = { SIGTERM
, SIGKILL
};
1546 #ifdef SUPPORT_UTMPX
1547 logwtmpx("~", "shutdown", "", 0, INIT_PROCESS
);
1549 logwtmp("~", "shutdown", "");
1551 for (sp
= sessions
; sp
; sp
= sp
->se_next
) {
1552 sp
->se_flags
|= SE_SHUTDOWN
;
1553 kill(sp
->se_process
, SIGHUP
);
1556 /* Try to run the rc.shutdown script within a period of time */
1559 for (i
= 0; i
< 2; ++i
) {
1560 if (kill(-1, death_sigs
[i
]) == -1 && errno
== ESRCH
)
1566 if ((pid
= waitpid(-1, NULL
, 0)) != -1)
1568 while (clang
== 0 && errno
!= ECHILD
);
1570 if (errno
== ECHILD
)
1574 warning("some processes would not die; ps axl advised");
1580 * Run the system shutdown script.
1582 * Exit codes: XXX I should document more
1583 * -2 shutdown script terminated abnormally
1584 * -1 fatal error - can't run script
1586 * >0 some error (exit code)
1593 int shutdowntimeout
;
1595 const char *argv
[4];
1596 struct sigaction sa
;
1600 * rc.shutdown is optional, so to prevent any unnecessary
1601 * complaints from the shell we simply don't run it if the
1602 * file does not exist. If the stat() here fails for other
1603 * reasons, we'll let the shell complain.
1605 if (stat(_PATH_RUNDOWN
, &sb
) == -1 && errno
== ENOENT
)
1608 if ((pid
= fork()) == 0) {
1611 /* Assume that init already grab console as ctty before */
1613 sigemptyset(&sa
.sa_mask
);
1615 sa
.sa_handler
= SIG_IGN
;
1616 sigaction(SIGTSTP
, &sa
, NULL
);
1617 sigaction(SIGHUP
, &sa
, NULL
);
1619 if ((fd
= open(_PATH_CONSOLE
, O_RDWR
)) == -1)
1620 warning("can't open %s: %m", _PATH_CONSOLE
);
1630 * Run the shutdown script.
1633 argv
[1] = _PATH_RUNDOWN
;
1640 sigprocmask(SIG_SETMASK
, &sa
.sa_mask
, NULL
);
1643 setprocresources(RESOURCE_RC
);
1645 execv(_PATH_BSHELL
, __DECONST(char **, argv
));
1646 warning("can't exec %s for %s: %m", _PATH_BSHELL
, _PATH_RUNDOWN
);
1647 _exit(1); /* force single user mode */
1651 emergency("can't fork for %s on %s: %m",
1652 _PATH_BSHELL
, _PATH_RUNDOWN
);
1653 while (waitpid(-1, NULL
, WNOHANG
) > 0)
1655 sleep(STALL_TIMEOUT
);
1659 len
= sizeof(shutdowntimeout
);
1660 if (sysctlbyname("kern.init_shutdown_timeout",
1662 &len
, NULL
, 0) == -1 || shutdowntimeout
< 2)
1663 shutdowntimeout
= DEATH_SCRIPT
;
1664 alarm(shutdowntimeout
);
1667 * Copied from single_user(). This is a bit paranoid.
1668 * Use the same ALRM handler.
1671 if ((wpid
= waitpid(-1, &status
, WUNTRACED
)) != -1)
1672 collect_child(wpid
);
1674 /* we were waiting for the sub-shell */
1675 kill(wpid
, SIGTERM
);
1676 warning("timeout expired for %s on %s: %m; going to single user mode",
1677 _PATH_BSHELL
, _PATH_RUNDOWN
);
1683 warning("wait for %s on %s failed: %m; going to single user mode",
1684 _PATH_BSHELL
, _PATH_RUNDOWN
);
1687 if (wpid
== pid
&& WIFSTOPPED(status
)) {
1688 warning("init: %s on %s stopped, restarting\n",
1689 _PATH_BSHELL
, _PATH_RUNDOWN
);
1693 } while (wpid
!= pid
&& !clang
);
1695 /* Turn off the alarm */
1698 if (WIFSIGNALED(status
) && WTERMSIG(status
) == SIGTERM
&&
1699 requested_transition
== catatonia
) {
1701 * /etc/rc.shutdown executed /sbin/reboot;
1702 * wait for the end quietly
1711 if (!WIFEXITED(status
)) {
1712 warning("%s on %s terminated abnormally, going to single user mode",
1713 _PATH_BSHELL
, _PATH_RUNDOWN
);
1717 if ((status
= WEXITSTATUS(status
)) != 0)
1718 warning("%s returned status %d", _PATH_RUNDOWN
, status
);
1736 while (c
== ' ' || c
== '\t' )
1746 while (c
&& c
!= '\'')
1748 if (!c
) /* unterminated string */
1753 while (c
&& c
!= ' ' && c
!= '\t' )
1764 setprocresources(const char *cname
)
1767 if ((lc
= login_getclassbyname(cname
, NULL
)) != NULL
) {
1768 setusercontext(lc
, NULL
, 0, LOGIN_SETPRIORITY
|LOGIN_SETRESOURCES
);
1774 #ifdef SUPPORT_UTMPX
1776 session_utmpx(const session_t
*sp
, int add
)
1778 const char *name
= sp
->se_getty
? sp
->se_getty
:
1779 (sp
->se_window
? sp
->se_window
: "");
1780 const char *line
= sp
->se_device
+ sizeof(_PATH_DEV
) - 1;
1782 make_utmpx(name
, line
, add
? LOGIN_PROCESS
: DEAD_PROCESS
,
1783 sp
->se_process
, &sp
->se_started
, sp
->se_index
);
1787 make_utmpx(const char *name
, const char *line
, int type
, pid_t pid
,
1788 const struct timeval
*tv
, int session
)
1793 (void)memset(&ut
, 0, sizeof(ut
));
1794 (void)strlcpy(ut
.ut_name
, name
, sizeof(ut
.ut_name
));
1796 (void)strlcpy(ut
.ut_line
, line
, sizeof(ut
.ut_line
));
1801 (void)gettimeofday(&ut
.ut_tv
, NULL
);
1802 ut
.ut_session
= session
;
1804 eline
= line
+ strlen(line
);
1805 if ((size_t)(eline
- line
) >= sizeof(ut
.ut_id
))
1806 line
= eline
- sizeof(ut
.ut_id
);
1807 (void)strncpy(ut
.ut_id
, line
, sizeof(ut
.ut_id
));
1809 if (pututxline(&ut
) == NULL
)
1810 warning("can't add utmpx record for `%s': %m", ut
.ut_line
);
1815 get_runlevel(const state_t s
)
1817 if (s
== single_user
)
1823 if (s
== multi_user
)
1825 if (s
== clean_ttys
)
1833 utmpx_set_runlevel(char old
, char new)
1838 * Don't record any transitions until we did the first transition
1839 * to read ttys, which is when we are guaranteed to have a read-write
1840 * /var. Perhaps use a different variable for this?
1842 if (sessions
== NULL
)
1845 (void)memset(&ut
, 0, sizeof(ut
));
1846 (void)snprintf(ut
.ut_line
, sizeof(ut
.ut_line
), RUNLVL_MSG
, new);
1847 ut
.ut_type
= RUN_LVL
;
1848 (void)gettimeofday(&ut
.ut_tv
, NULL
);
1849 ut
.ut_exit
.e_exit
= old
;
1850 ut
.ut_exit
.e_termination
= new;
1851 if (pututxline(&ut
) == NULL
)
1852 warning("can't add utmpx record for `runlevel': %m");