]> git.pond.sub.org Git - empserver/blob - src/server/main.c
(builtindir): New econfig key, variable and make variable.
[empserver] / src / server / main.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  main.c: Thread and signal initialization for Empire Server
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1994
32  *     Steve McClure, 1996, 1998
33  *     Doug Hay, 1998
34  */
35
36 #include <config.h>
37
38 #include <signal.h>
39 #if !defined(_WIN32)
40 #include <sys/ioctl.h>
41 #endif
42 #include <errno.h>
43 #include <stdio.h>
44 #include <string.h>
45
46 #if defined(_WIN32)
47 #define WIN32
48 #include <winsock2.h>
49 #undef NS_ALL
50 #include <process.h>
51 #include "../lib/gen/getopt.h"
52 #include "service.h"
53 #include "direct.h"
54 #endif
55
56 #include "misc.h"
57 #include "nat.h"
58 #include "file.h"
59 #include "player.h"
60 #include "empthread.h"
61 #include "plane.h"
62 #include "nuke.h"
63 #include "land.h"
64 #include "ship.h"
65 #include "sect.h"
66 #include "product.h"
67 #include "optlist.h"
68 #include "server.h"
69 #include "version.h"
70 #include "prototypes.h"
71
72 static void create_pidfile(char *, pid_t);
73
74 #if defined(_WIN32)
75 static void loc_NTInit(void);
76 static void loc_NTTerm(void);
77 #endif
78
79 static char pidfname[] = "server.pid";
80
81 /* Run as daemon?  If yes, detach from controlling terminal etc. */
82 int daemonize = 1;
83
84 static void
85 print_usage(char *program_name)
86 {
87     printf("Usage: %s [OPTION]...\n"
88            "  -d              debug mode\n"
89            "  -e CONFIG-FILE  configuration file\n"
90            "                  (default %s)\n"
91            "  -h              display this help and exit\n"
92 #ifdef _WIN32
93            "  -i              install service `%s'\n"
94            "  -I NAME         install service NAME\n"
95 #endif
96            "  -p              threading debug mode, implies -d\n"
97 #ifdef _WIN32
98            "  -r              remove service `%s'\n"
99            "  -R NAME         remove service NAME\n"
100 #endif
101            "  -s              enable stack checking\n"
102            "  -v              display version information and exit\n",
103            program_name, dflt_econfig
104 #ifdef _WIN32
105            , DEFAULT_SERVICE_NAME, DEFAULT_SERVICE_NAME
106 #endif
107         );
108 }
109
110 int
111 main(int argc, char **argv)
112 {
113     int flags = 0;
114 #if defined(_WIN32)
115     int install_service_set = 0;
116     char *program_name = NULL;
117     char *service_name = NULL;
118     int remove_service_set = 0;
119 #endif
120     char *config_file = NULL;
121     int op;
122
123 #ifdef _WIN32
124 # define XOPTS "iI:rR:"
125 #else
126 # define XOPTS
127 #endif
128     while ((op = getopt(argc, argv, "de:hpsv" XOPTS)) != EOF) {
129         switch (op) {
130         case 'p':
131             flags |= EMPTH_PRINT;
132             /* fall through */
133         case 'd':
134             debug = 1;
135             daemonize = 0;
136             break;
137         case 'e':
138             config_file = optarg;
139             break;
140 #if defined(_WIN32)
141         case 'I':
142             service_name = optarg;
143             /*
144              * fall out
145              */
146         case 'i':
147             install_service_set++;
148             break;
149         case 'R':
150             service_name = optarg;
151             /*
152              * fall out
153              */
154         case 'r':
155             remove_service_set++;
156             break;
157 #endif
158         case 's':
159             flags |= EMPTH_STACKCHECK;
160             break;
161         case 'v':
162             printf("%s\n\n%s", version, legal);
163             return EXIT_SUCCESS;
164         case 'h':
165             print_usage(argv[0]);
166             return EXIT_SUCCESS;
167         default:
168             fprintf(stderr, "Try -h for help.\n");
169             return EXIT_FAILURE;
170         }
171     }
172
173 #if defined(_WIN32)
174     if ((debug || flags || config_file != NULL) &&
175         remove_service_set) {
176         fprintf(stderr, "Can't use -p, -s, -d or -e with either "
177             "-r or -R options\n");
178         exit(EXIT_FAILURE);
179     }
180     if ((debug || flags) && install_service_set) {
181         fprintf(stderr, "Can't use -d, -p or -s with either "
182             "-i or -I options\n");
183         exit(EXIT_FAILURE);
184     }
185     if (install_service_set && remove_service_set) {
186         fprintf(stderr, "Can't use both -r or -R and -i or -I "
187             "options\n");
188         exit(EXIT_FAILURE);
189     }
190 #endif  /* _WIN32 */
191
192
193 #if defined(_WIN32)
194     if (remove_service_set)
195         return remove_service(service_name);
196     if (install_service_set) {
197         program_name = _fullpath(NULL, argv[0], 0);
198         if (config_file != NULL)
199             config_file = _fullpath(NULL, config_file, 0);
200     }
201 #endif  /* _WIN32 */
202
203     if (emp_config(config_file) < 0)
204         exit(EXIT_FAILURE);
205     ef_init();
206     if (chdir(builtindir)) {
207         fprintf(stderr, "Can't chdir to %s (%s)\n", builtindir, strerror(errno));
208         exit(EXIT_FAILURE);
209     }
210     if (read_builtin_tables() < 0)
211         exit(EXIT_FAILURE);
212     if (chdir(configdir)) {
213         fprintf(stderr, "Can't chdir to %s (%s)\n", configdir, strerror(errno));
214         exit(EXIT_FAILURE);
215     }
216     if (read_config_tables() < 0)
217         exit(EXIT_FAILURE);
218     if (chdir(gamedir)) {
219         fprintf(stderr, "Can't chdir to %s (%s)\n", gamedir, strerror(errno));
220         exit(EXIT_FAILURE);
221     }
222
223 #if defined(_WIN32)
224     if (install_service_set)
225         return install_service(program_name, service_name, config_file);
226 #endif  /* _WIN32 */
227
228     init_server();
229
230 #if defined(_WIN32)
231     if (daemonize != 0) {
232         SERVICE_TABLE_ENTRY DispatchTable[]={{"Empire Server", service_main},{NULL, NULL}};
233         if (StartServiceCtrlDispatcher(DispatchTable))
234             return 0;
235         else {
236             /*
237              * If it is service startup error then exit otherwise
238              * start server in the foreground
239              */
240             if (GetLastError() != ERROR_FAILED_SERVICE_CONTROLLER_CONNECT) {
241                 logerror("Failed to dispatch service (%lu)", GetLastError());
242                 finish_server();
243                 exit(EXIT_FAILURE);
244             }
245         }
246     }
247     daemonize = 0;
248 #else  /* !_WIN32 */
249     if (daemonize) {
250         if (disassoc() < 0) {
251             logerror("Can't become daemon (%s)", strerror(errno));
252             _exit(1);
253         }
254     }
255 #endif /* !_WIN32 */
256     start_server(flags);
257
258     empth_exit();
259
260     CANT_HAPPEN("main thread terminated");
261     finish_server();
262     return EXIT_SUCCESS;
263 }
264
265
266 /*
267  * Initialize for serving, acquire resources.
268  */
269 void
270 init_server(void)
271 {
272     srandom(time(NULL));
273 #if defined(_WIN32)
274     loc_NTInit();
275 #endif
276     update_policy_check();
277     shutdown_init();
278     player_init();
279     ef_init_srv();
280     io_init();
281     init_nreport();
282
283     if (opt_MOB_ACCESS) {
284         /* This fixes up mobility upon restart */
285         mobility_init();
286     }
287
288     loginit("server");
289 }
290
291 /*
292  * Start serving.
293  */
294 void
295 start_server(int flags)
296 {
297     pid_t pid;
298 #if !defined(_WIN32)
299     struct sigaction act;
300 #endif
301
302     pid = getpid();
303     create_pidfile(pidfname, pid);
304     logerror("------------------------------------------------------");
305     logerror("Empire server (pid %d) started", (int)pid);
306
307 #if !defined(_WIN32)
308     /* signal() should not be used with mit pthreads. Anyway if u
309        have a posix threads u definitly have posix signals -- Sasha */
310     act.sa_flags = 0;
311     sigemptyset(&act.sa_mask);
312     act.sa_handler = shutdwn;
313     sigaction(SIGTERM, &act, NULL);
314     sigaction(SIGINT, &act, NULL);
315     act.sa_handler = panic;
316     sigaction(SIGBUS, &act, NULL);
317     sigaction(SIGSEGV, &act, NULL);
318     sigaction(SIGILL, &act, NULL);
319     sigaction(SIGFPE, &act, NULL);
320     act.sa_handler = SIG_IGN;
321     sigaction(SIGPIPE, &act, NULL);
322 #endif /* !_WIN32 */
323
324     empth_init((void **)&player, flags);
325
326     empth_create(PP_ACCEPT, player_accept, (50 * 1024), flags,
327                  "AcceptPlayers", "Accept network connections", 0);
328     empth_create(PP_KILLIDLE, player_kill_idle, (50 * 1024), flags,
329                  "KillIdle", "Kills idle player connections", 0);
330     empth_create(PP_SCHED, update_sched, (50 * 1024), flags, "UpdateSched",
331                  "Schedules updates to occur", 0);
332     empth_create(PP_TIMESTAMP, delete_lostitems, (50 * 1024), flags,
333                  "DeleteItems", "Deletes old lost items", 0);
334     if (opt_MOB_ACCESS) {
335         /* Start the mobility access check thread */
336         empth_create(PP_TIMESTAMP, mobility_check, (50 * 1024), flags,
337                      "MobilityCheck", "Writes the timestamp file", 0);
338     }
339
340     if (opt_MARKET) {
341         empth_create(PP_TIMESTAMP, market_update, (50 * 1024), flags,
342                      "MarketUpdate", "Updates the market", 0);
343     }
344 }
345
346 /*
347  * Finish serving, release resources.
348  */
349 void
350 finish_server(void)
351 {
352     ef_fin_srv();
353 #if defined(_WIN32)
354     loc_NTTerm();
355 #endif
356     remove(pidfname);
357 }
358
359 static void
360 create_pidfile(char *fname, pid_t pid)
361 {
362     FILE *pidf = fopen(fname, "w");
363     if (!pidf
364         || fprintf(pidf, "%d\n", (int)pid) < 0
365         || fclose(pidf)) {
366         logerror("Can't write PID file (%s)", strerror(errno));
367         exit(1);
368     }
369 }
370
371 /* we're going down.  try to close the files at least */
372 #if !defined(_WIN32)
373 void
374 panic(int sig)
375 {
376     struct sigaction act;
377
378     act.sa_flags = 0;
379     sigemptyset(&act.sa_mask);
380     act.sa_handler = SIG_DFL;
381     sigaction(SIGBUS, &act, NULL);
382     sigaction(SIGSEGV, &act, NULL);
383     sigaction(SIGILL, &act, NULL);
384     sigaction(SIGFPE, &act, NULL);
385     logerror("server received fatal signal %d", sig);
386     log_last_commands();
387     ef_fin_srv();
388     if (CANT_HAPPEN(sig != SIGBUS && sig != SIGSEGV
389                     && sig != SIGILL && sig != SIGFPE))
390         _exit(1);
391     if (raise(sig))
392         _exit(1);
393 }
394 #endif /* _WIN32 */
395
396 void
397 shutdwn(int sig)
398 {
399     struct player *p;
400     time_t now;
401
402     logerror("Shutdown commencing (cleaning up threads.)");
403
404     for (p = player_next(0); p != 0; p = player_next(p)) {
405         if (p->state != PS_PLAYING)
406             continue;
407         pr_flash(p, "Server shutting down...\n");
408         p->state = PS_SHUTDOWN;
409         p->aborted++;
410         if (p->command) {
411             pr_flash(p, "Shutdown aborting command\n");
412         }
413         empth_wakeup(p->proc);
414     }
415
416     if (!sig) {
417         /* Sleep and let some cleanup happen - note this doesn't work
418            when called from a signal handler, since we may or may not
419            be in the right thread.  So we just pass by and kill 'em
420            all. */
421         time(&now);
422         empth_sleep(now + 1);
423     }
424
425     for (p = player_next(0); p != 0; p = player_next(p)) {
426         p->state = PS_KILL;
427         p->aborted++;
428         empth_terminate(p->proc);
429         p = player_delete(p);
430     }
431     if (sig)
432         logerror("Server shutting down on signal %d", sig);
433     else
434         logerror("Server shutting down at deity's request");
435     finish_server();
436
437 #if defined(_WIN32)
438     if (daemonize) {
439         stop_service();
440         return;
441     }
442 #endif
443     _exit(0);
444 }
445
446 #if defined(_WIN32)
447 static void
448 loc_NTInit(void)
449 {
450     int rc;
451     WORD wVersionRequested;
452     WSADATA wsaData;
453
454     wVersionRequested = MAKEWORD(2, 0);
455     rc = WSAStartup(wVersionRequested, &wsaData);
456     if (rc != 0) {
457         logerror("WSAStartup failed.  %d", rc);
458         _exit(1);
459     }
460 }
461
462 static void
463 loc_NTTerm(void)
464 {
465     WSACleanup();
466 }
467 #endif