blob: 903953e8089d051f02b3df409f84f15172a5d3f1 [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
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000010#include "libbb.h"
Jeremie Koenig714674e2010-05-27 15:38:44 +020011#include "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;
Denys Vlasenko3a416112010-04-05 22:10:38 +020021 /* "man utmp" says wtmp file should *not* be created automagically */
22 /*if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) {
Denis Vlasenko680b86a2008-01-24 02:28:00 +000023 close(creat(bb_path_wtmp_file, 0664));
Denys Vlasenko3a416112010-04-05 22:10:38 +020024 }*/
Denis Vlasenko680b86a2008-01-24 02:28:00 +000025 memset(&utmp, 0, sizeof(utmp));
Bernhard Reutner-Fischer62d85032008-06-01 10:10:22 +000026 utmp.ut_tv.tv_sec = time(NULL);
Denys Vlasenko3a416112010-04-05 22:10:38 +020027 strcpy(utmp.ut_user, "shutdown"); /* it is wide enough */
Denis Vlasenko680b86a2008-01-24 02:28:00 +000028 utmp.ut_type = RUN_LVL;
Denys Vlasenko3a416112010-04-05 22:10:38 +020029 utmp.ut_id[0] = '~'; utmp.ut_id[1] = '~'; /* = strcpy(utmp.ut_id, "~~"); */
30 utmp.ut_line[0] = '~'; utmp.ut_line[1] = '~'; /* = strcpy(utmp.ut_line, "~~"); */
31 uname(&uts);
32 safe_strncpy(utmp.ut_host, uts.release, sizeof(utmp.ut_host));
Denis Vlasenko680b86a2008-01-24 02:28:00 +000033 updwtmp(bb_path_wtmp_file, &utmp);
Denis Vlasenko9725daa2008-09-11 09:54:23 +000034}
35#else
36#define write_wtmp() ((void)0)
37#endif
38
Denis Vlasenko9725daa2008-09-11 09:54:23 +000039
40int halt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
41int halt_main(int argc UNUSED_PARAM, char **argv)
42{
43 static const int magic[] = {
44 RB_HALT_SYSTEM,
45 RB_POWER_OFF,
Denis Vlasenkoea7c9b32008-09-25 10:39:10 +000046 RB_AUTOBOOT
Denis Vlasenko9725daa2008-09-11 09:54:23 +000047 };
48 static const smallint signals[] = { SIGUSR1, SIGUSR2, SIGTERM };
49
50 int delay = 0;
51 int which, flags, rc;
52
53 /* Figure out which applet we're running */
54 for (which = 0; "hpr"[which] != applet_name[0]; which++)
55 continue;
56
57 /* Parse and handle arguments */
58 opt_complementary = "d+"; /* -d N */
Denis Vlasenkoe12c9022009-04-12 15:59:35 +000059 /* We support -w even if !ENABLE_FEATURE_WTMP,
60 * in order to not break scripts.
61 * -i (shut down network interfaces) is ignored.
62 */
63 flags = getopt32(argv, "d:nfwi", &delay);
Denis Vlasenko9725daa2008-09-11 09:54:23 +000064
65 sleep(delay);
66
67 write_wtmp();
68
Denis Vlasenko680b86a2008-01-24 02:28:00 +000069 if (flags & 8) /* -w */
Bernhard Reutner-Fischeref9876a2008-07-21 11:30:51 +000070 return EXIT_SUCCESS;
Bernhard Reutner-Fischerd93179f2008-09-01 15:24:52 +000071
Denis Vlasenko680b86a2008-01-24 02:28:00 +000072 if (!(flags & 2)) /* no -n */
73 sync();
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000074
Rob Landley64612912006-01-30 08:31:37 +000075 /* Perform action. */
Denis Vlasenko1e28f612008-08-03 18:43:45 +000076 rc = 1;
77 if (!(flags & 4)) { /* no -f */
78//TODO: I tend to think that signalling linuxrc is wrong
79// pity original author didn't comment on it...
Rob Landley64612912006-01-30 08:31:37 +000080 if (ENABLE_FEATURE_INITRD) {
Alexander Shishkin97af2ff2009-07-27 02:49:35 +020081 /* talk to linuxrc */
82 /* bbox init/linuxrc assumed */
Denis Vlasenko35fb5122006-11-01 09:16:49 +000083 pid_t *pidlist = find_pid_by_name("linuxrc");
84 if (pidlist[0] > 0)
85 rc = kill(pidlist[0], signals[which]);
86 if (ENABLE_FEATURE_CLEAN_UP)
87 free(pidlist);
Rob Landley64612912006-01-30 08:31:37 +000088 }
Denis Vlasenkoe12c9022009-04-12 15:59:35 +000089 if (rc) {
Alexander Shishkin97af2ff2009-07-27 02:49:35 +020090 /* talk to init */
91 if (!ENABLE_FEATURE_CALL_TELINIT) {
92 /* bbox init assumed */
93 rc = kill(1, signals[which]);
94 } else {
95 /* SysV style init assumed */
96 /* runlevels:
97 * 0 == shutdown
98 * 6 == reboot */
99 rc = execlp(CONFIG_TELINIT_PATH,
100 CONFIG_TELINIT_PATH,
101 which == 2 ? "6" : "0",
102 (char *)NULL
103 );
104 }
Denis Vlasenkoe12c9022009-04-12 15:59:35 +0000105 }
106 } else {
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000107 rc = reboot(magic[which]);
Denis Vlasenkoe12c9022009-04-12 15:59:35 +0000108 }
Rob Landley64612912006-01-30 08:31:37 +0000109
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000110 if (rc)
Denis Vlasenkofb1a23d2009-03-07 01:54:24 +0000111 bb_perror_nomsg_and_die();
Rob Landley64612912006-01-30 08:31:37 +0000112 return rc;
Eric Andersencc8ed391999-10-05 16:24:54 +0000113}