summaryrefslogtreecommitdiffstats
path: root/loader/shutdown.c
blob: e9d9998dec467e15ab94dc769d1f86bc20bfd496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*
 * shutdown.c
 *
 * Shutdown a running system.  If built with -DAS_SHUTDOWN=1, then
 * it builds a standalone shutdown binary.
 *
 * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003  Red Hat, Inc.
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <fcntl.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/reboot.h>
#include <sys/types.h>
#include <unistd.h>

#include "init.h"

#ifdef AS_SHUTDOWN
int testing = 0;
#else
extern int testing;
#endif

void disableSwap(void);
void unmountFilesystems(void);

static void performTerminations(int doKill) {
	if (testing || !doKill)
		return;

	sync();
	printf("sending termination signals...");
	kill(-1, 15);
	sleep(2);
	printf("done\n");

	printf("sending kill signals...");
	kill(-1, 9);
	sleep(2);
	printf("done\n");
}

static void performUnmounts(int doKill) {
	if (testing || !doKill)
		return;

	printf("disabling swap...\n");
	disableSwap();

	printf("unmounting filesystems...\n"); 
	unmountFilesystems();
}

static void performReboot(reboot_action rebootAction) {
	if (rebootAction == POWEROFF) {
        printf("powering off system\n");
		sleep(2);
        reboot(RB_POWER_OFF);
	} else if (rebootAction == REBOOT) {
		printf("rebooting system\n");
		sleep(2);

#if USE_MINILIBC
		reboot(0xfee1dead, 672274793, 0x1234567);
#else
		reboot(RB_AUTOBOOT);
#endif
	}
}

int shouldReboot = 0;

static void rebootHandler(int signum) {
    shouldReboot = 1;
}

void shutDown(int doKill, reboot_action rebootAction) {
	if (rebootAction == POWEROFF || rebootAction == REBOOT) {
		performUnmounts(doKill);
		performTerminations(doKill);
		if (!doKill)
			performReboot(rebootAction);
	}

	if (!shouldReboot && rebootAction != REBOOT)
		printf("you may safely reboot your system\n");
	
    signal(SIGINT, rebootHandler);
	while (1) {
		if (shouldReboot) {
			performUnmounts(1);
			performTerminations(1);
			performReboot(REBOOT);
		}
		sleep(1);
	}

    exit(0);

    return;
}

#ifdef AS_SHUTDOWN
int main(int argc, char ** argv) {
    int fd;
    int doReboot = 0;
    int i = 1;

    while (i < argc) {
      if (!strncmp("-r", argv[i], 2))
	doReboot = 1;
      i++;
    }

    /* ignore some signals so we don't kill ourself */
    signal(SIGINT, SIG_IGN);
    signal(SIGTSTP, SIG_IGN);

    /* now change to / */
    i = chdir("/");

    /* redirect output to the real console */
    fd = open("/dev/console", O_RDWR);
    dup2(fd, 0);
    dup2(fd, 1);
    dup2(fd, 2);
    close(fd);

    shutDown(0, doReboot ? REBOOT : HALT);
    return 0;
}
#endif

/* vim:set shiftwidth=4 softtabstop=4 ts=4: */