blob: 339add13f4b4b2eefd3252e12efe17ede2b2fb80 [file] [log] [blame]
Eric Andersen02462222003-07-22 09:41:39 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Stuff shared between init, reboot, halt, and poweroff
4 *
5 * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Eric Andersenb01ed652003-06-27 17:08:15 +000023#include <signal.h>
Eric Andersen02462222003-07-22 09:41:39 +000024#include <stdlib.h>
25#include <unistd.h>
26#include <getopt.h>
27#include <sys/reboot.h>
28#include <sys/reboot.h>
29#include <sys/syslog.h>
Eric Andersenb01ed652003-06-27 17:08:15 +000030#include "busybox.h"
Eric Andersenb01ed652003-06-27 17:08:15 +000031#include "init_shared.h"
32
Eric Andersenb01ed652003-06-27 17:08:15 +000033extern int kill_init(int sig)
34{
35#ifdef CONFIG_FEATURE_INITRD
36 /* don't assume init's pid == 1 */
37 long *pid = find_pid_by_name("init");
38 if (!pid || *pid<=0) {
39 pid = find_pid_by_name("linuxrc");
40 if (!pid || *pid<=0)
41 bb_error_msg_and_die("no process killed");
42 }
43 return(kill(*pid, sig));
44#else
45 return(kill(1, sig));
46#endif
47}
Eric Andersen02462222003-07-22 09:41:39 +000048
49#ifndef CONFIG_INIT
Eric Andersen20c9f1e2003-07-22 17:14:10 +000050const char * const bb_shutdown_format = "\r%s\n";
Eric Andersen02462222003-07-22 09:41:39 +000051extern int bb_shutdown_system(unsigned long magic)
52{
53 int pri = LOG_KERN|LOG_NOTICE|LOG_FACMASK;
Eric Andersen20c9f1e2003-07-22 17:14:10 +000054 const char *message;
Eric Andersen02462222003-07-22 09:41:39 +000055
Eric Andersen20c9f1e2003-07-22 17:14:10 +000056 /* Don't kill ourself */
57 signal(SIGTERM,SIG_IGN);
58 signal(SIGHUP,SIG_IGN);
59 setpgrp();
Eric Andersen02462222003-07-22 09:41:39 +000060
Eric Andersen20c9f1e2003-07-22 17:14:10 +000061 /* Allow Ctrl-Alt-Del to reboot system. */
Eric Andersen02462222003-07-22 09:41:39 +000062#ifndef RB_ENABLE_CAD
63#define RB_ENABLE_CAD 0x89abcdef
64#endif
Eric Andersen20c9f1e2003-07-22 17:14:10 +000065 reboot(RB_ENABLE_CAD);
Eric Andersen02462222003-07-22 09:41:39 +000066
Eric Andersen20c9f1e2003-07-22 17:14:10 +000067 openlog(bb_applet_name, 0, pri);
Eric Andersen02462222003-07-22 09:41:39 +000068
Eric Andersen20c9f1e2003-07-22 17:14:10 +000069 message = "\nThe system is going down NOW !!";
Eric Andersen02462222003-07-22 09:41:39 +000070 syslog(pri, "%s", message);
Eric Andersen20c9f1e2003-07-22 17:14:10 +000071 printf(bb_shutdown_format, message);
Eric Andersen02462222003-07-22 09:41:39 +000072
Eric Andersen20c9f1e2003-07-22 17:14:10 +000073 sync();
Eric Andersen02462222003-07-22 09:41:39 +000074
Eric Andersen20c9f1e2003-07-22 17:14:10 +000075 /* Send signals to every process _except_ pid 1 */
76 message = "Sending SIGTERM to all processes.";
Eric Andersen02462222003-07-22 09:41:39 +000077 syslog(pri, "%s", message);
Eric Andersen20c9f1e2003-07-22 17:14:10 +000078 printf(bb_shutdown_format, message);
Eric Andersen02462222003-07-22 09:41:39 +000079
Eric Andersen20c9f1e2003-07-22 17:14:10 +000080 kill(-1, SIGTERM);
81 sleep(1);
82 sync();
Eric Andersen02462222003-07-22 09:41:39 +000083
Eric Andersen20c9f1e2003-07-22 17:14:10 +000084 message = "Sending SIGKILL to all processes.";
Eric Andersen02462222003-07-22 09:41:39 +000085 syslog(pri, "%s", message);
Eric Andersen20c9f1e2003-07-22 17:14:10 +000086 printf(bb_shutdown_format, message);
Eric Andersen02462222003-07-22 09:41:39 +000087
Eric Andersen20c9f1e2003-07-22 17:14:10 +000088 kill(-1, SIGKILL);
89 sleep(1);
Eric Andersen02462222003-07-22 09:41:39 +000090
Eric Andersen20c9f1e2003-07-22 17:14:10 +000091 sync();
Eric Andersen02462222003-07-22 09:41:39 +000092
Eric Andersen20c9f1e2003-07-22 17:14:10 +000093 reboot(magic);
94 return 0; /* Shrug */
Eric Andersen02462222003-07-22 09:41:39 +000095}
96#endif
97