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 | /* |
| 3 | * Mini reboot implementation for busybox |
| 4 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
Eric Andersen | 1d1d2f9 | 2002-04-13 08:31:59 +0000 | [diff] [blame] | 6 | * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org> |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| 22 | */ |
| 23 | |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 24 | #include "busybox.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 25 | #include <signal.h> |
Eric Andersen | 34fd00a | 2002-09-17 08:40:12 +0000 | [diff] [blame] | 26 | #include <stdlib.h> |
| 27 | #include <unistd.h> |
| 28 | #include <getopt.h> |
| 29 | |
| 30 | #if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__) |
| 31 | #include <sys/reboot.h> |
| 32 | #define init_reboot(magic) reboot(magic) |
| 33 | #else |
| 34 | #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic) |
| 35 | #endif |
| 36 | #ifndef RB_ENABLE_CAD |
| 37 | static const int RB_ENABLE_CAD = 0x89abcdef; |
| 38 | static const int RB_AUTOBOOT = 0x01234567; |
| 39 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 40 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 41 | extern int reboot_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 42 | { |
Eric Andersen | 34fd00a | 2002-09-17 08:40:12 +0000 | [diff] [blame] | 43 | int delay = 0; /* delay in seconds before rebooting */ |
| 44 | int rc; |
| 45 | |
| 46 | while ((rc = getopt(argc, argv, "d:")) > 0) { |
| 47 | switch (rc) { |
| 48 | case 'd': |
| 49 | delay = atoi(optarg); |
| 50 | break; |
| 51 | |
| 52 | default: |
| 53 | show_usage(); |
| 54 | break; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | if(delay > 0) |
| 59 | sleep(delay); |
| 60 | |
| 61 | #ifdef CONFIG_USER_INIT |
| 62 | /* Don't kill ourself */ |
| 63 | signal(SIGTERM,SIG_IGN); |
| 64 | signal(SIGHUP,SIG_IGN); |
| 65 | setpgrp(); |
| 66 | |
| 67 | /* Allow Ctrl-Alt-Del to reboot system. */ |
| 68 | init_reboot(RB_ENABLE_CAD); |
| 69 | |
| 70 | message(CONSOLE|LOG, "\n\rThe system is going down NOW !!\n"); |
| 71 | sync(); |
| 72 | |
| 73 | /* Send signals to every process _except_ pid 1 */ |
| 74 | message(CONSOLE|LOG, "\rSending SIGTERM to all processes.\n"); |
| 75 | kill(-1, SIGTERM); |
| 76 | sleep(1); |
| 77 | sync(); |
| 78 | |
| 79 | message(CONSOLE|LOG, "\rSending SIGKILL to all processes.\n"); |
| 80 | kill(-1, SIGKILL); |
| 81 | sleep(1); |
| 82 | |
| 83 | sync(); |
| 84 | if (kernelVersion > 0 && kernelVersion <= KERNEL_VERSION(2,2,11)) { |
| 85 | /* bdflush, kupdate not needed for kernels >2.2.11 */ |
| 86 | bdflush(1, 0); |
| 87 | sync(); |
| 88 | } |
| 89 | |
| 90 | init_reboot(RB_AUTOBOOT); |
| 91 | exit(0); /* Shrug */ |
| 92 | #else |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 93 | #ifdef CONFIG_FEATURE_INITRD |
Eric Andersen | 34fd00a | 2002-09-17 08:40:12 +0000 | [diff] [blame] | 94 | { |
| 95 | /* don't assume init's pid == 1 */ |
| 96 | long *pid = find_pid_by_name("init"); |
| 97 | if (!pid || *pid<=0) |
| 98 | pid = find_pid_by_name("linuxrc"); |
Eric Andersen | 371ca19 | 2001-10-03 21:26:12 +0000 | [diff] [blame] | 99 | if (!pid || *pid<=0) |
| 100 | error_msg_and_die("no process killed"); |
Eric Andersen | 34fd00a | 2002-09-17 08:40:12 +0000 | [diff] [blame] | 101 | fflush(stdout); |
| 102 | return(kill(*pid, SIGTERM)); |
Eric Andersen | 371ca19 | 2001-10-03 21:26:12 +0000 | [diff] [blame] | 103 | } |
Erik Andersen | 2ac2fae | 2000-03-07 23:32:17 +0000 | [diff] [blame] | 104 | #else |
Eric Andersen | c97ec34 | 2001-04-03 18:01:51 +0000 | [diff] [blame] | 105 | return(kill(1, SIGTERM)); |
Erik Andersen | 2ac2fae | 2000-03-07 23:32:17 +0000 | [diff] [blame] | 106 | #endif |
Eric Andersen | 34fd00a | 2002-09-17 08:40:12 +0000 | [diff] [blame] | 107 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 108 | } |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 109 | |
| 110 | /* |
| 111 | Local Variables: |
| 112 | c-file-style: "linux" |
| 113 | c-basic-offset: 4 |
| 114 | tab-width: 4 |
| 115 | End: |
| 116 | */ |