Remove gratuitous and unnecessary "BusyBox" refernece in login prompt
[oweals/busybox.git] / init / reboot.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini reboot implementation for busybox
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org>
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
24 #include "busybox.h"
25 #include <signal.h>
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
40
41 extern int reboot_main(int argc, char **argv)
42 {
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
93 #ifdef CONFIG_FEATURE_INITRD
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");
99                 if (!pid || *pid<=0)
100                         error_msg_and_die("no process killed");
101                 fflush(stdout);
102                 return(kill(*pid, SIGTERM));
103         }
104 #else
105         return(kill(1, SIGTERM));
106 #endif
107 #endif
108 }
109
110 /*
111 Local Variables:
112 c-file-style: "linux"
113 c-basic-offset: 4
114 tab-width: 4
115 End:
116 */