blob: 3a23ecabb5e37523fe97c4354a9f26c79a5bfd9f [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc4996011999-10-20 22:08:37 +00002/*
Rob Landley64612912006-01-30 08:31:37 +00003 * Poweroff reboot and halt, oh my.
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
Rob Landley64612912006-01-30 08:31:37 +00005 * Copyright 2006 by Rob Landley <rob@landley.net>
Eric Andersenc4996011999-10-20 22:08:37 +00006 *
Rob Landleye9a7a622006-09-22 02:52:41 +00007 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
Eric Andersenc4996011999-10-20 22:08:37 +00008 */
9
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000010#include "libbb.h"
Eric Andersen02462222003-07-22 09:41:39 +000011#include <sys/reboot.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000012
Denis Vlasenko680b86a2008-01-24 02:28:00 +000013#if ENABLE_FEATURE_WTMP
14#include <sys/utsname.h>
15#include <utmp.h>
Denis Vlasenko680b86a2008-01-24 02:28:00 +000016
Denis Vlasenko9725daa2008-09-11 09:54:23 +000017static void write_wtmp(void)
Eric Andersencc8ed391999-10-05 16:24:54 +000018{
Denis Vlasenko680b86a2008-01-24 02:28:00 +000019 struct utmp utmp;
Denis Vlasenko680b86a2008-01-24 02:28:00 +000020 struct utsname uts;
Denis Vlasenko680b86a2008-01-24 02:28:00 +000021 if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) {
22 close(creat(bb_path_wtmp_file, 0664));
23 }
24 memset(&utmp, 0, sizeof(utmp));
Bernhard Reutner-Fischer62d85032008-06-01 10:10:22 +000025 utmp.ut_tv.tv_sec = time(NULL);
Denis Vlasenko680b86a2008-01-24 02:28:00 +000026 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);
30 if (uname(&uts) == 0)
31 safe_strncpy(utmp.ut_host, uts.release, sizeof(utmp.ut_host));
32 updwtmp(bb_path_wtmp_file, &utmp);
Denis Vlasenko680b86a2008-01-24 02:28:00 +000033
Denis Vlasenko9725daa2008-09-11 09:54:23 +000034}
35#else
36#define write_wtmp() ((void)0)
37#endif
38
39#ifndef RB_HALT_SYSTEM
40#define RB_HALT_SYSTEM RB_HALT
41#endif
42
43#ifndef RB_POWER_OFF
44#define RB_POWER_OFF RB_POWERDOWN
45#endif
46
47int halt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
48int halt_main(int argc UNUSED_PARAM, char **argv)
49{
50 static const int magic[] = {
51 RB_HALT_SYSTEM,
52 RB_POWER_OFF,
Denis Vlasenkoea7c9b32008-09-25 10:39:10 +000053 RB_AUTOBOOT
Denis Vlasenko9725daa2008-09-11 09:54:23 +000054 };
55 static const smallint signals[] = { SIGUSR1, SIGUSR2, SIGTERM };
56
57 int delay = 0;
58 int which, flags, rc;
59
60 /* Figure out which applet we're running */
61 for (which = 0; "hpr"[which] != applet_name[0]; which++)
62 continue;
63
64 /* Parse and handle arguments */
65 opt_complementary = "d+"; /* -d N */
Denis Vlasenkoe12c9022009-04-12 15:59:35 +000066 /* We support -w even if !ENABLE_FEATURE_WTMP,
67 * in order to not break scripts.
68 * -i (shut down network interfaces) is ignored.
69 */
70 flags = getopt32(argv, "d:nfwi", &delay);
Denis Vlasenko9725daa2008-09-11 09:54:23 +000071
72 sleep(delay);
73
74 write_wtmp();
75
Denis Vlasenko680b86a2008-01-24 02:28:00 +000076 if (flags & 8) /* -w */
Bernhard Reutner-Fischeref9876a2008-07-21 11:30:51 +000077 return EXIT_SUCCESS;
Bernhard Reutner-Fischerd93179f2008-09-01 15:24:52 +000078
Denis Vlasenko680b86a2008-01-24 02:28:00 +000079 if (!(flags & 2)) /* no -n */
80 sync();
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000081
Rob Landley64612912006-01-30 08:31:37 +000082 /* Perform action. */
Denis Vlasenko1e28f612008-08-03 18:43:45 +000083 rc = 1;
84 if (!(flags & 4)) { /* no -f */
85//TODO: I tend to think that signalling linuxrc is wrong
86// pity original author didn't comment on it...
Rob Landley64612912006-01-30 08:31:37 +000087 if (ENABLE_FEATURE_INITRD) {
Denis Vlasenko35fb5122006-11-01 09:16:49 +000088 pid_t *pidlist = find_pid_by_name("linuxrc");
89 if (pidlist[0] > 0)
90 rc = kill(pidlist[0], signals[which]);
91 if (ENABLE_FEATURE_CLEAN_UP)
92 free(pidlist);
Rob Landley64612912006-01-30 08:31:37 +000093 }
Denis Vlasenkoe12c9022009-04-12 15:59:35 +000094 if (rc) {
Denis Vlasenko35fb5122006-11-01 09:16:49 +000095 rc = kill(1, signals[which]);
Denis Vlasenkoe12c9022009-04-12 15:59:35 +000096 }
97 } else {
Denis Vlasenko35fb5122006-11-01 09:16:49 +000098 rc = reboot(magic[which]);
Denis Vlasenkoe12c9022009-04-12 15:59:35 +000099 }
Rob Landley64612912006-01-30 08:31:37 +0000100
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000101 if (rc)
Denis Vlasenkofb1a23d2009-03-07 01:54:24 +0000102 bb_perror_nomsg_and_die();
Rob Landley64612912006-01-30 08:31:37 +0000103 return rc;
Eric Andersencc8ed391999-10-05 16:24:54 +0000104}