Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 2 | /* |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 3 | * Poweroff reboot and halt, oh my. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 4 | * |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 5 | * Copyright 2006 by Rob Landley <rob@landley.net> |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Denys Vlasenko | b1db09b | 2010-10-12 13:47:15 +0200 | [diff] [blame] | 10 | //config:config HALT |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame^] | 11 | //config: bool "halt (3.7 kb)" |
Denys Vlasenko | b1db09b | 2010-10-12 13:47:15 +0200 | [diff] [blame] | 12 | //config: default y |
| 13 | //config: help |
Denys Vlasenko | 97e9a72 | 2016-11-14 04:55:04 +0100 | [diff] [blame] | 14 | //config: Stop all processes and halt the system. |
| 15 | //config: |
| 16 | //config:config POWEROFF |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame^] | 17 | //config: bool "poweroff (3.7 kb)" |
Denys Vlasenko | 97e9a72 | 2016-11-14 04:55:04 +0100 | [diff] [blame] | 18 | //config: default y |
| 19 | //config: help |
| 20 | //config: Stop all processes and power off the system. |
| 21 | //config: |
| 22 | //config:config REBOOT |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame^] | 23 | //config: bool "reboot (3.7 kb)" |
Denys Vlasenko | 97e9a72 | 2016-11-14 04:55:04 +0100 | [diff] [blame] | 24 | //config: default y |
| 25 | //config: help |
| 26 | //config: Stop all processes and reboot the system. |
Denys Vlasenko | b1db09b | 2010-10-12 13:47:15 +0200 | [diff] [blame] | 27 | //config: |
| 28 | //config:config FEATURE_CALL_TELINIT |
| 29 | //config: bool "Call telinit on shutdown and reboot" |
| 30 | //config: default y |
Denys Vlasenko | 97e9a72 | 2016-11-14 04:55:04 +0100 | [diff] [blame] | 31 | //config: depends on (HALT || POWEROFF || REBOOT) && !INIT |
Denys Vlasenko | b1db09b | 2010-10-12 13:47:15 +0200 | [diff] [blame] | 32 | //config: help |
| 33 | //config: Call an external program (normally telinit) to facilitate |
| 34 | //config: a switch to a proper runlevel. |
| 35 | //config: |
| 36 | //config: This option is only available if you selected halt and friends, |
| 37 | //config: but did not select init. |
| 38 | //config: |
| 39 | //config:config TELINIT_PATH |
| 40 | //config: string "Path to telinit executable" |
| 41 | //config: default "/sbin/telinit" |
| 42 | //config: depends on FEATURE_CALL_TELINIT |
| 43 | //config: help |
| 44 | //config: When busybox halt and friends have to call external telinit |
| 45 | //config: to facilitate proper shutdown, this path is to be used when |
| 46 | //config: locating telinit executable. |
| 47 | |
Denys Vlasenko | 97e9a72 | 2016-11-14 04:55:04 +0100 | [diff] [blame] | 48 | //applet:IF_HALT(APPLET(halt, BB_DIR_SBIN, BB_SUID_DROP)) |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 49 | // APPLET_ODDNAME:name main location suid_type help |
Denys Vlasenko | 97e9a72 | 2016-11-14 04:55:04 +0100 | [diff] [blame] | 50 | //applet:IF_POWEROFF(APPLET_ODDNAME(poweroff, halt, BB_DIR_SBIN, BB_SUID_DROP, poweroff)) |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 51 | //applet:IF_REBOOT( APPLET_ODDNAME(reboot, halt, BB_DIR_SBIN, BB_SUID_DROP, reboot)) |
Denys Vlasenko | 97e9a72 | 2016-11-14 04:55:04 +0100 | [diff] [blame] | 52 | |
| 53 | //kbuild:lib-$(CONFIG_HALT) += halt.o |
| 54 | //kbuild:lib-$(CONFIG_POWEROFF) += halt.o |
| 55 | //kbuild:lib-$(CONFIG_REBOOT) += halt.o |
| 56 | |
Denys Vlasenko | b1db09b | 2010-10-12 13:47:15 +0200 | [diff] [blame] | 57 | //usage:#define halt_trivial_usage |
| 58 | //usage: "[-d DELAY] [-n] [-f]" IF_FEATURE_WTMP(" [-w]") |
| 59 | //usage:#define halt_full_usage "\n\n" |
| 60 | //usage: "Halt the system\n" |
Denys Vlasenko | b1db09b | 2010-10-12 13:47:15 +0200 | [diff] [blame] | 61 | //usage: "\n -d SEC Delay interval" |
| 62 | //usage: "\n -n Do not sync" |
| 63 | //usage: "\n -f Force (don't go through init)" |
| 64 | //usage: IF_FEATURE_WTMP( |
| 65 | //usage: "\n -w Only write a wtmp record" |
| 66 | //usage: ) |
| 67 | //usage: |
| 68 | //usage:#define poweroff_trivial_usage |
| 69 | //usage: "[-d DELAY] [-n] [-f]" |
| 70 | //usage:#define poweroff_full_usage "\n\n" |
| 71 | //usage: "Halt and shut off power\n" |
Denys Vlasenko | b1db09b | 2010-10-12 13:47:15 +0200 | [diff] [blame] | 72 | //usage: "\n -d SEC Delay interval" |
| 73 | //usage: "\n -n Do not sync" |
| 74 | //usage: "\n -f Force (don't go through init)" |
| 75 | //usage: |
| 76 | //usage:#define reboot_trivial_usage |
| 77 | //usage: "[-d DELAY] [-n] [-f]" |
| 78 | //usage:#define reboot_full_usage "\n\n" |
| 79 | //usage: "Reboot the system\n" |
Denys Vlasenko | b1db09b | 2010-10-12 13:47:15 +0200 | [diff] [blame] | 80 | //usage: "\n -d SEC Delay interval" |
| 81 | //usage: "\n -n Do not sync" |
| 82 | //usage: "\n -f Force (don't go through init)" |
| 83 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 84 | #include "libbb.h" |
Jeremie Koenig | 714674e | 2010-05-27 15:38:44 +0200 | [diff] [blame] | 85 | #include "reboot.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 86 | |
Denis Vlasenko | 680b86a | 2008-01-24 02:28:00 +0000 | [diff] [blame] | 87 | #if ENABLE_FEATURE_WTMP |
| 88 | #include <sys/utsname.h> |
Denis Vlasenko | 680b86a | 2008-01-24 02:28:00 +0000 | [diff] [blame] | 89 | |
Denis Vlasenko | 9725daa | 2008-09-11 09:54:23 +0000 | [diff] [blame] | 90 | static void write_wtmp(void) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 91 | { |
Bernhard Reutner-Fischer | 86a7f18 | 2015-04-02 23:03:46 +0200 | [diff] [blame] | 92 | struct utmpx utmp; |
Denis Vlasenko | 680b86a | 2008-01-24 02:28:00 +0000 | [diff] [blame] | 93 | struct utsname uts; |
Denys Vlasenko | 3a41611 | 2010-04-05 22:10:38 +0200 | [diff] [blame] | 94 | /* "man utmp" says wtmp file should *not* be created automagically */ |
| 95 | /*if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) { |
Denis Vlasenko | 680b86a | 2008-01-24 02:28:00 +0000 | [diff] [blame] | 96 | close(creat(bb_path_wtmp_file, 0664)); |
Denys Vlasenko | 3a41611 | 2010-04-05 22:10:38 +0200 | [diff] [blame] | 97 | }*/ |
Denis Vlasenko | 680b86a | 2008-01-24 02:28:00 +0000 | [diff] [blame] | 98 | memset(&utmp, 0, sizeof(utmp)); |
Bernhard Reutner-Fischer | 62d8503 | 2008-06-01 10:10:22 +0000 | [diff] [blame] | 99 | utmp.ut_tv.tv_sec = time(NULL); |
Denys Vlasenko | 3a41611 | 2010-04-05 22:10:38 +0200 | [diff] [blame] | 100 | strcpy(utmp.ut_user, "shutdown"); /* it is wide enough */ |
Denis Vlasenko | 680b86a | 2008-01-24 02:28:00 +0000 | [diff] [blame] | 101 | utmp.ut_type = RUN_LVL; |
Denys Vlasenko | 3a41611 | 2010-04-05 22:10:38 +0200 | [diff] [blame] | 102 | utmp.ut_id[0] = '~'; utmp.ut_id[1] = '~'; /* = strcpy(utmp.ut_id, "~~"); */ |
| 103 | utmp.ut_line[0] = '~'; utmp.ut_line[1] = '~'; /* = strcpy(utmp.ut_line, "~~"); */ |
| 104 | uname(&uts); |
| 105 | safe_strncpy(utmp.ut_host, uts.release, sizeof(utmp.ut_host)); |
Bernhard Reutner-Fischer | 86a7f18 | 2015-04-02 23:03:46 +0200 | [diff] [blame] | 106 | updwtmpx(bb_path_wtmp_file, &utmp); |
Denis Vlasenko | 9725daa | 2008-09-11 09:54:23 +0000 | [diff] [blame] | 107 | } |
| 108 | #else |
| 109 | #define write_wtmp() ((void)0) |
| 110 | #endif |
| 111 | |
Denis Vlasenko | 9725daa | 2008-09-11 09:54:23 +0000 | [diff] [blame] | 112 | |
| 113 | int halt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 114 | int halt_main(int argc UNUSED_PARAM, char **argv) |
| 115 | { |
| 116 | static const int magic[] = { |
| 117 | RB_HALT_SYSTEM, |
| 118 | RB_POWER_OFF, |
Denis Vlasenko | ea7c9b3 | 2008-09-25 10:39:10 +0000 | [diff] [blame] | 119 | RB_AUTOBOOT |
Denis Vlasenko | 9725daa | 2008-09-11 09:54:23 +0000 | [diff] [blame] | 120 | }; |
| 121 | static const smallint signals[] = { SIGUSR1, SIGUSR2, SIGTERM }; |
| 122 | |
| 123 | int delay = 0; |
| 124 | int which, flags, rc; |
| 125 | |
| 126 | /* Figure out which applet we're running */ |
Denys Vlasenko | 97e9a72 | 2016-11-14 04:55:04 +0100 | [diff] [blame] | 127 | if (ENABLE_HALT && !ENABLE_POWEROFF && !ENABLE_REBOOT) |
| 128 | which = 0; |
| 129 | else |
| 130 | if (!ENABLE_HALT && ENABLE_POWEROFF && !ENABLE_REBOOT) |
| 131 | which = 1; |
| 132 | else |
| 133 | if (!ENABLE_HALT && !ENABLE_POWEROFF && ENABLE_REBOOT) |
| 134 | which = 2; |
| 135 | else |
Denis Vlasenko | 9725daa | 2008-09-11 09:54:23 +0000 | [diff] [blame] | 136 | for (which = 0; "hpr"[which] != applet_name[0]; which++) |
| 137 | continue; |
| 138 | |
| 139 | /* Parse and handle arguments */ |
Denis Vlasenko | e12c902 | 2009-04-12 15:59:35 +0000 | [diff] [blame] | 140 | /* We support -w even if !ENABLE_FEATURE_WTMP, |
| 141 | * in order to not break scripts. |
| 142 | * -i (shut down network interfaces) is ignored. |
| 143 | */ |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 144 | flags = getopt32(argv, "d:+nfwi", &delay); |
Denis Vlasenko | 9725daa | 2008-09-11 09:54:23 +0000 | [diff] [blame] | 145 | |
| 146 | sleep(delay); |
| 147 | |
| 148 | write_wtmp(); |
| 149 | |
Denis Vlasenko | 680b86a | 2008-01-24 02:28:00 +0000 | [diff] [blame] | 150 | if (flags & 8) /* -w */ |
Bernhard Reutner-Fischer | ef9876a | 2008-07-21 11:30:51 +0000 | [diff] [blame] | 151 | return EXIT_SUCCESS; |
Bernhard Reutner-Fischer | d93179f | 2008-09-01 15:24:52 +0000 | [diff] [blame] | 152 | |
Denis Vlasenko | 680b86a | 2008-01-24 02:28:00 +0000 | [diff] [blame] | 153 | if (!(flags & 2)) /* no -n */ |
| 154 | sync(); |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 155 | |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 156 | /* Perform action. */ |
Denis Vlasenko | 1e28f61 | 2008-08-03 18:43:45 +0000 | [diff] [blame] | 157 | rc = 1; |
| 158 | if (!(flags & 4)) { /* no -f */ |
| 159 | //TODO: I tend to think that signalling linuxrc is wrong |
| 160 | // pity original author didn't comment on it... |
Denys Vlasenko | 52977a7 | 2016-03-31 00:42:57 +0200 | [diff] [blame] | 161 | if (ENABLE_LINUXRC) { |
Alexander Shishkin | 97af2ff | 2009-07-27 02:49:35 +0200 | [diff] [blame] | 162 | /* talk to linuxrc */ |
| 163 | /* bbox init/linuxrc assumed */ |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 164 | pid_t *pidlist = find_pid_by_name("linuxrc"); |
| 165 | if (pidlist[0] > 0) |
| 166 | rc = kill(pidlist[0], signals[which]); |
| 167 | if (ENABLE_FEATURE_CLEAN_UP) |
| 168 | free(pidlist); |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 169 | } |
Denis Vlasenko | e12c902 | 2009-04-12 15:59:35 +0000 | [diff] [blame] | 170 | if (rc) { |
Alexander Shishkin | 97af2ff | 2009-07-27 02:49:35 +0200 | [diff] [blame] | 171 | /* talk to init */ |
| 172 | if (!ENABLE_FEATURE_CALL_TELINIT) { |
| 173 | /* bbox init assumed */ |
| 174 | rc = kill(1, signals[which]); |
| 175 | } else { |
| 176 | /* SysV style init assumed */ |
| 177 | /* runlevels: |
| 178 | * 0 == shutdown |
| 179 | * 6 == reboot */ |
Denys Vlasenko | 104e014 | 2011-07-03 01:46:02 +0200 | [diff] [blame] | 180 | execlp(CONFIG_TELINIT_PATH, |
Alexander Shishkin | 97af2ff | 2009-07-27 02:49:35 +0200 | [diff] [blame] | 181 | CONFIG_TELINIT_PATH, |
| 182 | which == 2 ? "6" : "0", |
| 183 | (char *)NULL |
| 184 | ); |
Denys Vlasenko | db43d3d | 2011-07-08 06:23:08 +0200 | [diff] [blame] | 185 | bb_perror_msg_and_die("can't execute '%s'", |
Denys Vlasenko | 104e014 | 2011-07-03 01:46:02 +0200 | [diff] [blame] | 186 | CONFIG_TELINIT_PATH); |
Alexander Shishkin | 97af2ff | 2009-07-27 02:49:35 +0200 | [diff] [blame] | 187 | } |
Denis Vlasenko | e12c902 | 2009-04-12 15:59:35 +0000 | [diff] [blame] | 188 | } |
| 189 | } else { |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 190 | rc = reboot(magic[which]); |
Denis Vlasenko | e12c902 | 2009-04-12 15:59:35 +0000 | [diff] [blame] | 191 | } |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 192 | |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 193 | if (rc) |
Denis Vlasenko | fb1a23d | 2009-03-07 01:54:24 +0000 | [diff] [blame] | 194 | bb_perror_nomsg_and_die(); |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 195 | return rc; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 196 | } |