blob: 7f1bebb9930a263cf7b3118790c43491f061c314 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersenc4996011999-10-20 22:08:37 +00008 */
9
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010010//applet:IF_HALT(APPLET(halt, BB_DIR_SBIN, BB_SUID_DROP))
11//applet:IF_HALT(APPLET_ODDNAME(poweroff, halt, BB_DIR_SBIN, BB_SUID_DROP, poweroff))
12//applet:IF_HALT(APPLET_ODDNAME(reboot, halt, BB_DIR_SBIN, BB_SUID_DROP, reboot))
Denys Vlasenkob1db09b2010-10-12 13:47:15 +020013
14//kbuild:lib-$(CONFIG_HALT) += halt.o
15
16//config:config HALT
17//config: bool "poweroff, halt, and reboot"
18//config: default y
19//config: help
20//config: Stop all processes and either halt, reboot, or power off the system.
21//config:
22//config:config FEATURE_CALL_TELINIT
23//config: bool "Call telinit on shutdown and reboot"
24//config: default y
25//config: depends on HALT && !INIT
26//config: help
27//config: Call an external program (normally telinit) to facilitate
28//config: a switch to a proper runlevel.
29//config:
30//config: This option is only available if you selected halt and friends,
31//config: but did not select init.
32//config:
33//config:config TELINIT_PATH
34//config: string "Path to telinit executable"
35//config: default "/sbin/telinit"
36//config: depends on FEATURE_CALL_TELINIT
37//config: help
38//config: When busybox halt and friends have to call external telinit
39//config: to facilitate proper shutdown, this path is to be used when
40//config: locating telinit executable.
41
42//usage:#define halt_trivial_usage
43//usage: "[-d DELAY] [-n] [-f]" IF_FEATURE_WTMP(" [-w]")
44//usage:#define halt_full_usage "\n\n"
45//usage: "Halt the system\n"
Denys Vlasenkob1db09b2010-10-12 13:47:15 +020046//usage: "\n -d SEC Delay interval"
47//usage: "\n -n Do not sync"
48//usage: "\n -f Force (don't go through init)"
49//usage: IF_FEATURE_WTMP(
50//usage: "\n -w Only write a wtmp record"
51//usage: )
52//usage:
53//usage:#define poweroff_trivial_usage
54//usage: "[-d DELAY] [-n] [-f]"
55//usage:#define poweroff_full_usage "\n\n"
56//usage: "Halt and shut off power\n"
Denys Vlasenkob1db09b2010-10-12 13:47:15 +020057//usage: "\n -d SEC Delay interval"
58//usage: "\n -n Do not sync"
59//usage: "\n -f Force (don't go through init)"
60//usage:
61//usage:#define reboot_trivial_usage
62//usage: "[-d DELAY] [-n] [-f]"
63//usage:#define reboot_full_usage "\n\n"
64//usage: "Reboot the system\n"
Denys Vlasenkob1db09b2010-10-12 13:47:15 +020065//usage: "\n -d SEC Delay interval"
66//usage: "\n -n Do not sync"
67//usage: "\n -f Force (don't go through init)"
68
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000069#include "libbb.h"
Jeremie Koenig714674e2010-05-27 15:38:44 +020070#include "reboot.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000071
Tanguy Pruvot8aeb3712011-06-30 08:59:26 +020072#ifdef __BIONIC__
73# include "android/reboot.c"
74#endif
75
Denis Vlasenko680b86a2008-01-24 02:28:00 +000076#if ENABLE_FEATURE_WTMP
77#include <sys/utsname.h>
Denis Vlasenko680b86a2008-01-24 02:28:00 +000078
Denis Vlasenko9725daa2008-09-11 09:54:23 +000079static void write_wtmp(void)
Eric Andersencc8ed391999-10-05 16:24:54 +000080{
Denis Vlasenko680b86a2008-01-24 02:28:00 +000081 struct utmp utmp;
Denis Vlasenko680b86a2008-01-24 02:28:00 +000082 struct utsname uts;
Denys Vlasenko3a416112010-04-05 22:10:38 +020083 /* "man utmp" says wtmp file should *not* be created automagically */
84 /*if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) {
Denis Vlasenko680b86a2008-01-24 02:28:00 +000085 close(creat(bb_path_wtmp_file, 0664));
Denys Vlasenko3a416112010-04-05 22:10:38 +020086 }*/
Denis Vlasenko680b86a2008-01-24 02:28:00 +000087 memset(&utmp, 0, sizeof(utmp));
Bernhard Reutner-Fischer62d85032008-06-01 10:10:22 +000088 utmp.ut_tv.tv_sec = time(NULL);
Denys Vlasenko3a416112010-04-05 22:10:38 +020089 strcpy(utmp.ut_user, "shutdown"); /* it is wide enough */
Denis Vlasenko680b86a2008-01-24 02:28:00 +000090 utmp.ut_type = RUN_LVL;
Denys Vlasenko3a416112010-04-05 22:10:38 +020091 utmp.ut_id[0] = '~'; utmp.ut_id[1] = '~'; /* = strcpy(utmp.ut_id, "~~"); */
92 utmp.ut_line[0] = '~'; utmp.ut_line[1] = '~'; /* = strcpy(utmp.ut_line, "~~"); */
93 uname(&uts);
94 safe_strncpy(utmp.ut_host, uts.release, sizeof(utmp.ut_host));
Denis Vlasenko680b86a2008-01-24 02:28:00 +000095 updwtmp(bb_path_wtmp_file, &utmp);
Denis Vlasenko9725daa2008-09-11 09:54:23 +000096}
97#else
98#define write_wtmp() ((void)0)
99#endif
100
Denis Vlasenko9725daa2008-09-11 09:54:23 +0000101
102int halt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
103int halt_main(int argc UNUSED_PARAM, char **argv)
104{
105 static const int magic[] = {
106 RB_HALT_SYSTEM,
107 RB_POWER_OFF,
Denis Vlasenkoea7c9b32008-09-25 10:39:10 +0000108 RB_AUTOBOOT
Denis Vlasenko9725daa2008-09-11 09:54:23 +0000109 };
110 static const smallint signals[] = { SIGUSR1, SIGUSR2, SIGTERM };
111
112 int delay = 0;
113 int which, flags, rc;
114
115 /* Figure out which applet we're running */
116 for (which = 0; "hpr"[which] != applet_name[0]; which++)
117 continue;
118
119 /* Parse and handle arguments */
120 opt_complementary = "d+"; /* -d N */
Denis Vlasenkoe12c9022009-04-12 15:59:35 +0000121 /* We support -w even if !ENABLE_FEATURE_WTMP,
122 * in order to not break scripts.
123 * -i (shut down network interfaces) is ignored.
124 */
125 flags = getopt32(argv, "d:nfwi", &delay);
Denis Vlasenko9725daa2008-09-11 09:54:23 +0000126
127 sleep(delay);
128
129 write_wtmp();
130
Denis Vlasenko680b86a2008-01-24 02:28:00 +0000131 if (flags & 8) /* -w */
Bernhard Reutner-Fischeref9876a2008-07-21 11:30:51 +0000132 return EXIT_SUCCESS;
Bernhard Reutner-Fischerd93179f2008-09-01 15:24:52 +0000133
Denis Vlasenko680b86a2008-01-24 02:28:00 +0000134 if (!(flags & 2)) /* no -n */
135 sync();
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +0000136
Tanguy Pruvot8aeb3712011-06-30 08:59:26 +0200137#ifdef __BIONIC__
Tanguy Pruvotd0b80252011-08-28 22:42:01 +0200138 char *mode[4];
139 int c = 1;
140 mode[0] = strdup("reboot");
141 mode[1] = mode[2] = mode[3] = NULL;
142 switch (which) {
143 case 0:
144 case 1:
Tanguy Pruvot8aeb3712011-06-30 08:59:26 +0200145 //-p for halt
Tanguy Pruvotd0b80252011-08-28 22:42:01 +0200146 mode[1] = strdup("-p");
147 c=2;
148 break;
149 case 2:
150 //reboot
151 #ifdef CYANOGEN_LIBREBOOT
152 if (argc > 1) {
153 mode[1] = strdup(argv[1]);
154 c = 2;
155 }
156 #endif
157 break;
Tanguy Pruvot8aeb3712011-06-30 08:59:26 +0200158 }
Tanguy Pruvotd0b80252011-08-28 22:42:01 +0200159 return reboot_main(c, mode);
Tanguy Pruvot8aeb3712011-06-30 08:59:26 +0200160#endif
161
Rob Landley64612912006-01-30 08:31:37 +0000162 /* Perform action. */
Denis Vlasenko1e28f612008-08-03 18:43:45 +0000163 rc = 1;
164 if (!(flags & 4)) { /* no -f */
165//TODO: I tend to think that signalling linuxrc is wrong
166// pity original author didn't comment on it...
Rob Landley64612912006-01-30 08:31:37 +0000167 if (ENABLE_FEATURE_INITRD) {
Alexander Shishkin97af2ff2009-07-27 02:49:35 +0200168 /* talk to linuxrc */
169 /* bbox init/linuxrc assumed */
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000170 pid_t *pidlist = find_pid_by_name("linuxrc");
171 if (pidlist[0] > 0)
172 rc = kill(pidlist[0], signals[which]);
173 if (ENABLE_FEATURE_CLEAN_UP)
174 free(pidlist);
Rob Landley64612912006-01-30 08:31:37 +0000175 }
Denis Vlasenkoe12c9022009-04-12 15:59:35 +0000176 if (rc) {
Alexander Shishkin97af2ff2009-07-27 02:49:35 +0200177 /* talk to init */
178 if (!ENABLE_FEATURE_CALL_TELINIT) {
179 /* bbox init assumed */
180 rc = kill(1, signals[which]);
181 } else {
182 /* SysV style init assumed */
183 /* runlevels:
184 * 0 == shutdown
185 * 6 == reboot */
Denys Vlasenko104e0142011-07-03 01:46:02 +0200186 execlp(CONFIG_TELINIT_PATH,
Alexander Shishkin97af2ff2009-07-27 02:49:35 +0200187 CONFIG_TELINIT_PATH,
188 which == 2 ? "6" : "0",
189 (char *)NULL
190 );
Denys Vlasenkodb43d3d2011-07-08 06:23:08 +0200191 bb_perror_msg_and_die("can't execute '%s'",
Denys Vlasenko104e0142011-07-03 01:46:02 +0200192 CONFIG_TELINIT_PATH);
Alexander Shishkin97af2ff2009-07-27 02:49:35 +0200193 }
Denis Vlasenkoe12c9022009-04-12 15:59:35 +0000194 }
195 } else {
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000196 rc = reboot(magic[which]);
Denis Vlasenkoe12c9022009-04-12 15:59:35 +0000197 }
Rob Landley64612912006-01-30 08:31:37 +0000198
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000199 if (rc)
Denis Vlasenkofb1a23d2009-03-07 01:54:24 +0000200 bb_perror_nomsg_and_die();
Rob Landley64612912006-01-30 08:31:37 +0000201 return rc;
Eric Andersencc8ed391999-10-05 16:24:54 +0000202}