2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-21 03:38:37 +05:30
|
|
|
/*
|
2006-01-30 14:01:37 +05:30
|
|
|
* Poweroff reboot and halt, oh my.
|
1999-10-21 03:38:37 +05:30
|
|
|
*
|
2006-01-30 14:01:37 +05:30
|
|
|
* Copyright 2006 by Rob Landley <rob@landley.net>
|
1999-10-21 03:38:37 +05:30
|
|
|
*
|
2006-09-22 08:22:41 +05:30
|
|
|
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
|
1999-10-21 03:38:37 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2003-07-22 15:11:39 +05:30
|
|
|
#include <sys/reboot.h>
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2008-01-24 07:58:00 +05:30
|
|
|
#if ENABLE_FEATURE_WTMP
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include <utmp.h>
|
2008-09-11 15:24:23 +05:30
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
#ifndef RB_POWER_OFF
|
|
|
|
#define RB_POWER_OFF RB_POWERDOWN
|
2008-01-24 07:58:00 +05:30
|
|
|
#endif
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int halt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int halt_main(int argc UNUSED_PARAM, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2006-05-27 02:04:02 +05:30
|
|
|
static const int magic[] = {
|
2008-09-01 20:54:52 +05:30
|
|
|
RB_HALT_SYSTEM,
|
|
|
|
RB_POWER_OFF,
|
2008-09-25 16:09:10 +05:30
|
|
|
RB_AUTOBOOT
|
2006-05-27 02:04:02 +05:30
|
|
|
};
|
2008-01-24 07:58:00 +05:30
|
|
|
static const smallint signals[] = { SIGUSR1, SIGUSR2, SIGTERM };
|
2006-02-22 22:31:00 +05:30
|
|
|
|
2008-03-17 14:39:09 +05:30
|
|
|
int delay = 0;
|
2008-08-04 00:13:45 +05:30
|
|
|
int which, flags, rc;
|
2006-01-30 14:01:37 +05:30
|
|
|
|
|
|
|
/* Figure out which applet we're running */
|
2008-09-11 15:24:23 +05:30
|
|
|
for (which = 0; "hpr"[which] != applet_name[0]; which++)
|
2008-01-24 07:58:00 +05:30
|
|
|
continue;
|
2003-07-22 15:11:39 +05:30
|
|
|
|
2006-01-30 14:01:37 +05:30
|
|
|
/* Parse and handle arguments */
|
2008-03-17 14:39:09 +05:30
|
|
|
opt_complementary = "d+"; /* -d N */
|
2008-09-11 15:24:23 +05:30
|
|
|
/* We support -w even if !ENABLE_FEATURE_WTMP, in order
|
|
|
|
* to not break scripts */
|
|
|
|
flags = getopt32(argv, "d:nfw", &delay);
|
2008-03-17 14:39:09 +05:30
|
|
|
|
|
|
|
sleep(delay);
|
2008-01-24 07:58:00 +05:30
|
|
|
|
2008-09-11 15:24:23 +05:30
|
|
|
write_wtmp();
|
2008-01-24 07:58:00 +05:30
|
|
|
|
|
|
|
if (flags & 8) /* -w */
|
2008-07-21 17:00:51 +05:30
|
|
|
return EXIT_SUCCESS;
|
2008-09-01 20:54:52 +05:30
|
|
|
|
2008-01-24 07:58:00 +05:30
|
|
|
if (!(flags & 2)) /* no -n */
|
|
|
|
sync();
|
2006-06-03 02:26:16 +05:30
|
|
|
|
2006-01-30 14:01:37 +05:30
|
|
|
/* Perform action. */
|
2008-08-04 00:13:45 +05:30
|
|
|
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 14:01:37 +05:30
|
|
|
if (ENABLE_FEATURE_INITRD) {
|
2006-11-01 14:46:49 +05:30
|
|
|
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 14:01:37 +05:30
|
|
|
}
|
2006-11-01 14:46:49 +05:30
|
|
|
if (rc)
|
|
|
|
rc = kill(1, signals[which]);
|
|
|
|
} else
|
|
|
|
rc = reboot(magic[which]);
|
2003-07-22 15:11:39 +05:30
|
|
|
|
2006-11-01 14:46:49 +05:30
|
|
|
if (rc)
|
2009-03-07 07:24:24 +05:30
|
|
|
bb_perror_nomsg_and_die();
|
2006-01-30 14:01:37 +05:30
|
|
|
return rc;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|