2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-20 22:08:37 +00:00
|
|
|
/*
|
2006-01-30 08:31:37 +00:00
|
|
|
* Poweroff reboot and halt, oh my.
|
1999-10-20 22:08:37 +00:00
|
|
|
*
|
2006-01-30 08:31:37 +00:00
|
|
|
* Copyright 2006 by Rob Landley <rob@landley.net>
|
1999-10-20 22:08:37 +00:00
|
|
|
*
|
2006-09-22 02:52:41 +00:00
|
|
|
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
|
1999-10-20 22:08:37 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2003-07-22 09:41:39 +00:00
|
|
|
#include <sys/reboot.h>
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2008-01-24 02:28:00 +00:00
|
|
|
#if ENABLE_FEATURE_WTMP
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include <utmp.h>
|
2008-09-11 09:54:23 +00:00
|
|
|
|
|
|
|
static void write_wtmp(void)
|
|
|
|
{
|
|
|
|
struct utmp utmp;
|
|
|
|
struct utsname uts;
|
|
|
|
if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) {
|
|
|
|
close(creat(bb_path_wtmp_file, 0664));
|
|
|
|
}
|
|
|
|
memset(&utmp, 0, sizeof(utmp));
|
|
|
|
utmp.ut_tv.tv_sec = time(NULL);
|
|
|
|
safe_strncpy(utmp.ut_user, "shutdown", UT_NAMESIZE);
|
|
|
|
utmp.ut_type = RUN_LVL;
|
|
|
|
safe_strncpy(utmp.ut_id, "~~", sizeof(utmp.ut_id));
|
|
|
|
safe_strncpy(utmp.ut_line, "~~", UT_LINESIZE);
|
|
|
|
if (uname(&uts) == 0)
|
|
|
|
safe_strncpy(utmp.ut_host, uts.release, sizeof(utmp.ut_host));
|
|
|
|
updwtmp(bb_path_wtmp_file, &utmp);
|
|
|
|
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define write_wtmp() ((void)0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef RB_HALT_SYSTEM
|
|
|
|
#define RB_HALT_SYSTEM RB_HALT
|
|
|
|
#endif
|
|
|
|
|
2009-10-23 12:24:44 +00:00
|
|
|
#ifndef RB_POWERDOWN
|
|
|
|
/* Stop system and switch power off if possible. */
|
|
|
|
# define RB_POWERDOWN 0x4321fedc
|
|
|
|
#endif
|
2008-09-11 09:54:23 +00:00
|
|
|
#ifndef RB_POWER_OFF
|
2009-10-23 12:24:44 +00:00
|
|
|
# define RB_POWER_OFF RB_POWERDOWN
|
2008-01-24 02:28:00 +00:00
|
|
|
#endif
|
|
|
|
|
2009-10-23 12:24:44 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int halt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int halt_main(int argc UNUSED_PARAM, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2006-05-26 20:34:02 +00:00
|
|
|
static const int magic[] = {
|
2008-09-01 15:24:52 +00:00
|
|
|
RB_HALT_SYSTEM,
|
|
|
|
RB_POWER_OFF,
|
2008-09-25 10:39:10 +00:00
|
|
|
RB_AUTOBOOT
|
2006-05-26 20:34:02 +00:00
|
|
|
};
|
2008-01-24 02:28:00 +00:00
|
|
|
static const smallint signals[] = { SIGUSR1, SIGUSR2, SIGTERM };
|
2006-02-22 17:01:00 +00:00
|
|
|
|
2008-03-17 09:09:09 +00:00
|
|
|
int delay = 0;
|
2008-08-03 18:43:45 +00:00
|
|
|
int which, flags, rc;
|
2006-01-30 08:31:37 +00:00
|
|
|
|
|
|
|
/* Figure out which applet we're running */
|
2008-09-11 09:54:23 +00:00
|
|
|
for (which = 0; "hpr"[which] != applet_name[0]; which++)
|
2008-01-24 02:28:00 +00:00
|
|
|
continue;
|
2003-07-22 09:41:39 +00:00
|
|
|
|
2006-01-30 08:31:37 +00:00
|
|
|
/* Parse and handle arguments */
|
2008-03-17 09:09:09 +00:00
|
|
|
opt_complementary = "d+"; /* -d N */
|
2009-04-12 15:59:35 +00:00
|
|
|
/* We support -w even if !ENABLE_FEATURE_WTMP,
|
|
|
|
* in order to not break scripts.
|
|
|
|
* -i (shut down network interfaces) is ignored.
|
|
|
|
*/
|
|
|
|
flags = getopt32(argv, "d:nfwi", &delay);
|
2008-03-17 09:09:09 +00:00
|
|
|
|
|
|
|
sleep(delay);
|
2008-01-24 02:28:00 +00:00
|
|
|
|
2008-09-11 09:54:23 +00:00
|
|
|
write_wtmp();
|
2008-01-24 02:28:00 +00:00
|
|
|
|
|
|
|
if (flags & 8) /* -w */
|
2008-07-21 11:30:51 +00:00
|
|
|
return EXIT_SUCCESS;
|
2008-09-01 15:24:52 +00:00
|
|
|
|
2008-01-24 02:28:00 +00:00
|
|
|
if (!(flags & 2)) /* no -n */
|
|
|
|
sync();
|
2006-06-02 20:56:16 +00:00
|
|
|
|
2006-01-30 08:31:37 +00:00
|
|
|
/* Perform action. */
|
2008-08-03 18:43:45 +00:00
|
|
|
rc = 1;
|
|
|
|
if (!(flags & 4)) { /* no -f */
|
|
|
|
//TODO: I tend to think that signalling linuxrc is wrong
|
|
|
|
// pity original author didn't comment on it...
|
2006-01-30 08:31:37 +00:00
|
|
|
if (ENABLE_FEATURE_INITRD) {
|
2009-07-27 00:49:35 +00:00
|
|
|
/* talk to linuxrc */
|
|
|
|
/* bbox init/linuxrc assumed */
|
2006-11-01 09:16:49 +00:00
|
|
|
pid_t *pidlist = find_pid_by_name("linuxrc");
|
|
|
|
if (pidlist[0] > 0)
|
|
|
|
rc = kill(pidlist[0], signals[which]);
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(pidlist);
|
2006-01-30 08:31:37 +00:00
|
|
|
}
|
2009-04-12 15:59:35 +00:00
|
|
|
if (rc) {
|
2009-07-27 00:49:35 +00:00
|
|
|
/* talk to init */
|
|
|
|
if (!ENABLE_FEATURE_CALL_TELINIT) {
|
|
|
|
/* bbox init assumed */
|
|
|
|
rc = kill(1, signals[which]);
|
|
|
|
} else {
|
|
|
|
/* SysV style init assumed */
|
|
|
|
/* runlevels:
|
|
|
|
* 0 == shutdown
|
|
|
|
* 6 == reboot */
|
|
|
|
rc = execlp(CONFIG_TELINIT_PATH,
|
|
|
|
CONFIG_TELINIT_PATH,
|
|
|
|
which == 2 ? "6" : "0",
|
|
|
|
(char *)NULL
|
|
|
|
);
|
|
|
|
}
|
2009-04-12 15:59:35 +00:00
|
|
|
}
|
|
|
|
} else {
|
2006-11-01 09:16:49 +00:00
|
|
|
rc = reboot(magic[which]);
|
2009-04-12 15:59:35 +00:00
|
|
|
}
|
2003-07-22 09:41:39 +00:00
|
|
|
|
2006-11-01 09:16:49 +00:00
|
|
|
if (rc)
|
2009-03-07 01:54:24 +00:00
|
|
|
bb_perror_nomsg_and_die();
|
2006-01-30 08:31:37 +00:00
|
|
|
return rc;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|