1 /* vi: set sw=4 ts=4: */
3 * Poweroff reboot and halt, oh my.
5 * Copyright 2006 by Rob Landley <rob@landley.net>
7 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
11 #include <sys/reboot.h>
13 #if ENABLE_FEATURE_WTMP
14 #include <sys/utsname.h>
17 static void write_wtmp(void)
21 if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) {
22 close(creat(bb_path_wtmp_file, 0664));
24 memset(&utmp, 0, sizeof(utmp));
25 utmp.ut_tv.tv_sec = time(NULL);
26 safe_strncpy(utmp.ut_user, "shutdown", UT_NAMESIZE);
27 utmp.ut_type = RUN_LVL;
28 safe_strncpy(utmp.ut_id, "~~", sizeof(utmp.ut_id));
29 safe_strncpy(utmp.ut_line, "~~", UT_LINESIZE);
31 safe_strncpy(utmp.ut_host, uts.release, sizeof(utmp.ut_host));
32 updwtmp(bb_path_wtmp_file, &utmp);
36 #define write_wtmp() ((void)0)
39 #ifndef RB_HALT_SYSTEM
40 #define RB_HALT_SYSTEM RB_HALT
44 #define RB_POWER_OFF RB_POWERDOWN
47 int halt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
48 int halt_main(int argc UNUSED_PARAM, char **argv)
50 static const int magic[] = {
55 static const smallint signals[] = { SIGUSR1, SIGUSR2, SIGTERM };
60 /* Figure out which applet we're running */
61 for (which = 0; "hpr"[which] != applet_name[0]; which++)
64 /* Parse and handle arguments */
65 opt_complementary = "d+"; /* -d N */
66 /* We support -w even if !ENABLE_FEATURE_WTMP, in order
67 * to not break scripts */
68 flags = getopt32(argv, "d:nfw", &delay);
74 if (flags & 8) /* -w */
77 if (!(flags & 2)) /* no -n */
82 if (!(flags & 4)) { /* no -f */
83 //TODO: I tend to think that signalling linuxrc is wrong
84 // pity original author didn't comment on it...
85 if (ENABLE_FEATURE_INITRD) {
86 pid_t *pidlist = find_pid_by_name("linuxrc");
88 rc = kill(pidlist[0], signals[which]);
89 if (ENABLE_FEATURE_CLEAN_UP)
93 rc = kill(1, signals[which]);
95 rc = reboot(magic[which]);
98 bb_perror_nomsg_and_die();