aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/shutdown.c
blob: 861c9fe1039ace8d8d8e018d04ed0cda6f9e5c80 (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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
/*
 * Revised by maxxe <maxxe@rpblc.net>,
 * 18 Dec 2023.
 */

#include "stdinclude.h"
#include "common.h"

#include "command.h"
#include "ficsmain.h"
#include "network.h"
#include "playerdb.h"
#include "shutdown.h"
#include "utils.h"

PRIVATE char	 downer[1024];
PRIVATE char	 reason[1024];

PRIVATE int	 lastTimeLeft;
PRIVATE int	 shutdownStartTime;
PRIVATE int	 shutdownTime = 0;

PUBLIC void
output_shut_mess(void)
{
	time_t shuttime = time(NULL);

	fprintf(stderr, "FICS: Shutting down at %s\n", strltime(&shuttime));
}

PUBLIC __dead void
ShutDown(void)
{
	time_t shuttime = time(NULL);

	for (int p1 = 0; p1 < p_num; p1++) {
		if (parray[p1].status != PLAYER_PROMPT)
			continue;

		pprintf(p1, "\n\n    **** Server shutdown ordered by %s. "
		    "****\n", downer);

		if (reason[0] != '\0') {
			pprintf(p1, "\n    **** We are going down because: "
			    "%s. ****\n", reason);
		}
	}

	TerminateCleanup();
	fprintf(stderr, "FICS: Shut down ordered at %s by %s.\n",
	    strltime(&shuttime), downer);
	output_shut_mess();
	net_close();
	exit(0);
}

PUBLIC void
ShutHeartBeat(void)
{
	int	crossing = 0;
	int	p1;
	int	timeLeft;
	time_t	t = time(NULL);

	if (!shutdownTime)
		return;
	if (!lastTimeLeft)
		lastTimeLeft = shutdownTime;

	timeLeft = shutdownTime - (t - shutdownStartTime);

	if (lastTimeLeft > 3600 && timeLeft <= 3600)
		crossing = 1;
	if (lastTimeLeft > 2400 && timeLeft <= 2400)
		crossing = 1;
	if (lastTimeLeft > 1200 && timeLeft <= 1200)
		crossing = 1;
	if (lastTimeLeft > 600 && timeLeft <= 600)
		crossing = 1;
	if (lastTimeLeft > 300 && timeLeft <= 300)
		crossing = 1;
	if (lastTimeLeft > 120 && timeLeft <= 120)
		crossing = 1;
	if (lastTimeLeft > 60 && timeLeft <= 60)
		crossing = 1;
	if (lastTimeLeft > 10 && timeLeft <= 10)
		crossing = 1;

	if (crossing) {
		fprintf(stderr, "FICS:   **** Server going down in %d minutes "
		    "and %d seconds. ****\n\n",
		    (timeLeft / 60),
		    timeLeft - ((timeLeft / 60) * 60));

		if (reason[0] != '\0') {
			fprintf(stderr,"FICS: We are going down because: %s.\n",
			    reason);
		}

		for (p1 = 0; p1 < p_num; p1++) {
			if (parray[p1].status != PLAYER_PROMPT)
				continue;

			pprintf(p1, "\n\n    **** Server going down in %d "
			    "minutes and %d seconds. ****\n",
			    (timeLeft / 60),
			    timeLeft - ((timeLeft / 60) * 60));

			if (reason[0] != '\0') {
				pprintf_prompt(p1, "\n    **** We are going "
				    "down because: %s. ****\n", reason);
			} else
				pprintf_prompt(p1, "\n");
		}
	}

	lastTimeLeft = timeLeft;

	if (timeLeft <= 0)
		ShutDown();
}

/*
 * Tells a user about a shutdown. Returns 1 if there is to be one, and
 * 0 otherwise. (For 'whenshut' command.)
 */
PUBLIC int
check_and_print_shutdown(int p)
{
	int	timeLeft;
	time_t	t = time(NULL);

	if (!shutdownTime)
		return 0;     // no shutdown

	timeLeft = shutdownTime - (t - shutdownStartTime);

	pprintf(p, "\n    **** Server going down in %d minutes and %d seconds. "
	    "****\n",
	    (timeLeft / 60),
	    timeLeft - ((timeLeft / 60) * 60));

	if (reason[0] != '\0') {
		pprintf(p, "\n    **** We are going down because: %s. ****\n",
		    reason);
	}
	return 1;
}


/*
 * Usage: shutdown [now,cancel,time]
 *
 * This command shuts down the server. If the parameter is omitted or
 * is 'now' then the server is immediately halted cleanly. If a time
 * is given then a countdown commences and the server is halted when
 * time is up. If 'cancel' is given then the countdown is stopped.
 */
PUBLIC int
com_shutdown(int p, param_list param)
{
	char	*ptr;
	int	 p1, secs;

	ASSERT(parray[p].adminLevel >= ADMIN_ADMIN);
	strcpy(downer, parray[p].name);
	shutdownStartTime = time(0);

	if (shutdownTime) {   // Cancel any pending shutdowns
		for (p1 = 0; p1 < p_num; p1++) {
			if (parray[p1].status != PLAYER_PROMPT)
				continue;
			pprintf(p1, "\n\n    **** Server shutdown canceled by "
			    "%s. ****\n", downer);
		}

		shutdownTime = 0;

		if (param[0].type == TYPE_NULL)
			return COM_OK;
	}

	/*
	 * Work out how soon to shut down
	 */
	if (param[0].type == TYPE_NULL) {
		shutdownTime = 300;
	} else {
		if (!strcmp(param[0].val.word, "now")) {
			shutdownTime = 0;
		} else if (!strcmp(param[0].val.word, "die")) {
			fprintf(stderr,"%s salutes FICS and presses the "
			    "self-destruct button.\n", parray[p].name);
			output_shut_mess();
			abort();
		} else if (!strcmp(param[0].val.word, "cancel")) {
			return COM_OK;
		} else {
			ptr = param[0].val.word;
			shutdownTime = secs = 0;
			p1 = 2;

			while (*ptr) {
				switch (*ptr) {
				case '0':
				case '1':
				case '2':
				case '3':
				case '4':
				case '5':
				case '6':
				case '7':
				case '8':
				case '9':
					secs = (secs * 10 + *ptr - '0');
					break;
				case ':':
					if (p1--) {
						shutdownTime = (shutdownTime *
						    60 + secs);
						secs = 0;
						break;
					}
				default:
					shutdownTime = 0;
					pprintf(p, "I don't know what you mean "
					    "by %s\n", param[0].val.word);
					return COM_OK;
				}

				ptr++;
			}

			shutdownTime = (shutdownTime * 60 + secs);
		}
	}

	if (shutdownTime <= 0)
		ShutDown();
	if (param[1].type == TYPE_STRING)
		strcpy(reason, param[1].val.string);
	else
		reason[0] = '\0';	// No reason - perhaps admin is in a
					// bad mood? :)

	for (p1 = 0; p1 < p_num; p1++) {
		if (parray[p1].status != PLAYER_PROMPT)
			continue;

		pprintf(p1, "\n\n    **** Server shutdown ordered by %s. "
		    "****\n", downer);

		if (reason[0] != '\0') {
			pprintf(p1, "    **** We are going down because: "
			    "%s. ****\n", reason);
		}

		pprintf(p1, "    **** Server going down in %d minutes and %d "
		    "seconds. ****\n",
		    (shutdownTime / 60),
		    (shutdownTime % 60));
		if (p != p1)  // fix double prompt - DAV
			pprintf_prompt(p1, "\n");
		else
			pprintf(p1, "\n");
	}

	lastTimeLeft = 0;
	return COM_OK;
}

PUBLIC int
server_shutdown(int secs, char *why)
{
	if (shutdownTime && shutdownTime <= secs) {
		/*
		 * Server is already shutting down
		 */
		return 0;
	}

	strcpy(downer, "Automatic");
	shutdownTime = secs;
	shutdownStartTime = time(NULL);

	for (int p1 = 0; p1 < p_num; p1++) {
		if (parray[p1].status != PLAYER_PROMPT)
			continue;
		pprintf(p1, "\n\n    **** Automatic Server shutdown. ****\n");
		pprintf(p1, "%s\n", why);
		pprintf_prompt(p1, "    **** Server going down in %d minutes "
		    "and %d seconds. ****\n\n",
		    (shutdownTime / 60),
		    shutdownTime - ((shutdownTime / 60) * 60));
	}

	fprintf(stderr, "FICS:    **** Automatic Server shutdown. ****\n");
	fprintf(stderr, "FICS: %s\n", why);
	return 0;
}

PUBLIC int
com_whenshut(int p, param_list param)
{
	if (check_and_print_shutdown(p) == 0)
		pprintf(p, "No shutdown currently in progress\n");
	return COM_OK;
}