#include <sys/types.h>
#include <sys/reboot.h>
#include <sys/sysctl.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <machine/cpu.h>
#include <signal.h>
#include <pwd.h>
#include <errno.h>
#include <err.h>
#include <fcntl.h>
#include <termios.h>
#include <syslog.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <paths.h>
#include <util.h>
void usage(void);
extern char *__progname;
int dohalt;
#define _PATH_RC "/etc/rc"
static void
sleep_while_procs(int seconds)
{
while (seconds > 0) {
if (kill(-1, 0) == -1 && errno == ESRCH)
return;
sleep(1);
seconds--;
}
}
int
main(int argc, char *argv[])
{
unsigned int i;
struct passwd *pw;
int ch, howto, lflag, nflag, pflag, qflag;
char *p, *user;
sigset_t mask;
p = __progname;
if (*p == '-')
p++;
howto = dohalt = lflag = nflag = pflag = qflag = 0;
if (!strcmp(p, "halt")) {
dohalt = 1;
howto = RB_HALT;
}
while ((ch = getopt(argc, argv, "dlnpq")) != -1)
switch (ch) {
case 'd':
howto |= RB_DUMP;
break;
case 'l':
lflag = 1;
break;
case 'n':
nflag = 1;
howto |= RB_NOSYNC;
break;
case 'p':
if (dohalt) {
pflag = 1;
howto |= RB_POWERDOWN;
}
break;
case 'q':
qflag = 1;
break;
default:
usage();
}
argc -= optind;
argv += optind;
if (argc)
usage();
if (geteuid())
errx(1, "%s", strerror(EPERM));
#ifdef CPU_LIDACTION
if (howto & RB_POWERDOWN) {
int mib[] = {CTL_MACHDEP, CPU_LIDACTION};
int lidaction = 0;
if (sysctl(mib, 2, NULL, NULL, &lidaction,
sizeof(lidaction)) == -1 && errno != EOPNOTSUPP)
warn("sysctl");
}
#endif
if (qflag) {
reboot(howto);
err(1, "reboot");
}
if (!lflag) {
if ((user = getlogin()) == NULL)
user = (pw = getpwuid(getuid())) ?
pw->pw_name : "???";
if (dohalt) {
openlog("halt", 0, LOG_AUTH | LOG_CONS);
if (pflag) {
syslog(LOG_CRIT,
"halted (with powerdown) by %s", user);
} else {
syslog(LOG_CRIT, "halted by %s", user);
}
} else {
openlog("reboot", 0, LOG_AUTH | LOG_CONS);
syslog(LOG_CRIT, "rebooted by %s", user);
}
}
logwtmp("~", "shutdown", "");
if (!nflag)
sync();
if (kill(1, SIGTSTP) == -1)
err(1, "SIGTSTP init");
(void)signal(SIGHUP, SIG_IGN);
(void)signal(SIGPIPE, SIG_IGN);
if (access(_PATH_RC, R_OK) != -1) {
pid_t pid;
struct termios t;
int fd, status;
switch ((pid = fork())) {
case -1:
break;
case 0:
if (revoke(_PATH_CONSOLE) == -1)
warn("revoke");
if (setsid() == -1)
warn("setsid");
fd = open(_PATH_CONSOLE, O_RDWR);
if (fd == -1)
warn("open");
dup2(fd, 0);
dup2(fd, 1);
dup2(fd, 2);
if (fd > 2)
close(fd);
tcgetattr(0, &t);
t.c_oflag |= (ONLCR | OPOST);
tcsetattr(0, TCSANOW, &t);
execl(_PATH_BSHELL, "sh", _PATH_RC, "shutdown", (char *)NULL);
_exit(1);
default:
waitpid(pid, &status, 0);
if (dohalt && WIFEXITED(status) && WEXITSTATUS(status) == 2)
howto |= RB_POWERDOWN;
}
}
sigfillset(&mask);
sigprocmask(SIG_BLOCK, &mask, NULL);
if (kill(-1, SIGTERM) == -1) {
if (errno != ESRCH) {
warn("SIGTERM processes");
goto restart;
}
}
sleep_while_procs(2);
if (!nflag)
sync();
sleep_while_procs(3);
for (i = 1;; ++i) {
if (kill(-1, SIGKILL) == -1) {
if (errno == ESRCH)
break;
goto restart;
}
if (i > 5) {
warnx("WARNING: some process(es) wouldn't die");
break;
}
sleep_while_procs(2 * i);
}
reboot(howto);
restart:
errx(1, kill(1, SIGHUP) == -1 ? "(can't restart init): " : "");
}
void
usage(void)
{
fprintf(stderr, "usage: %s [-dn%sq]\n", __progname,
dohalt ? "p" : "");
exit(1);
}