]> git.pond.sub.org Git - empserver/blob - src/server/main.c
(main.c) [_WIN32,WIN32]: Remove the define WIN32.
[empserver] / src / server / main.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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: Empire Server main, startup and shutdown
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1994
32  *     Steve McClure, 1996, 1998
33  *     Doug Hay, 1998
34  *     Ron Koenderink, 2004-2005
35  *     Markus Armbruster, 2005-2006
36  */
37
38 #include <config.h>
39
40 #include <errno.h>
41 #include <signal.h>
42 #include <stdio.h>
43
44 #if defined(_WIN32)
45 #include <winsock2.h>
46 #undef NS_ALL
47 #include <process.h>
48 #include <direct.h>
49 #include "service.h"
50 #include "../lib/gen/getopt.h"
51 #else
52 #include <sys/types.h>
53 #include <unistd.h>
54 #endif
55
56 #include "empio.h"
57 #include "empthread.h"
58 #include "file.h"
59 #include "journal.h"
60 #include "land.h"
61 #include "misc.h"
62 #include "nat.h"
63 #include "nuke.h"
64 #include "optlist.h"
65 #include "plane.h"
66 #include "player.h"
67 #include "product.h"
68 #include "prototypes.h"
69 #include "sect.h"
70 #include "server.h"
71 #include "ship.h"
72 #include "version.h"
73
74 static void create_pidfile(char *, pid_t);
75
76 #if defined(_WIN32)
77 static void loc_NTInit(void);
78 static void loc_NTTerm(void);
79 #endif
80
81 static char pidfname[] = "server.pid";
82
83 /* Run as daemon?  If yes, detach from controlling terminal etc. */
84 static int daemonize = 1;
85
86 static void
87 print_usage(char *program_name)
88 {
89     printf("Usage: %s [OPTION]...\n"
90            "  -d              debug mode\n"
91            "  -e CONFIG-FILE  configuration file\n"
92            "                  (default %s)\n"
93            "  -h              display this help and exit\n"
94 #ifdef _WIN32
95            "  -i              install service `%s'\n"
96            "  -I NAME         install service NAME\n"
97 #endif
98            "  -p              threading debug mode, implies -d\n"
99 #ifdef _WIN32
100            "  -r              remove service `%s'\n"
101            "  -R NAME         remove service NAME\n"
102 #endif
103            "  -s              enable stack checking\n"
104            "  -v              display version information and exit\n",
105            program_name, dflt_econfig
106 #ifdef _WIN32
107            , DEFAULT_SERVICE_NAME, DEFAULT_SERVICE_NAME
108 #endif
109         );
110 }
111
112 int
113 main(int argc, char **argv)
114 {
115     int flags = 0;
116 #if defined(_WIN32)
117     int install_service_set = 0;
118     char *program_name = NULL;
119     char *service_name = NULL;
120     int remove_service_set = 0;
121 #endif
122     char *config_file = NULL;
123     int op, sig;
124
125 #ifdef _WIN32
126 # define XOPTS "iI:rR:"
127 #else
128 # define XOPTS
129 #endif
130     while ((op = getopt(argc, argv, "de:hpsv" XOPTS)) != EOF) {
131         switch (op) {
132         case 'p':
133             flags |= EMPTH_PRINT;
134             /* fall through */
135         case 'd':
136             debug = 1;
137             daemonize = 0;
138             break;
139         case 'e':
140             config_file = optarg;
141             break;
142 #if defined(_WIN32)
143         case 'I':
144             service_name = optarg;
145             /* fall through */
146         case 'i':
147             install_service_set++;
148             break;
149         case 'R':
150             service_name = optarg;
151             /* fall through */
152         case 'r':
153             remove_service_set++;
154             break;
155 #endif  /* _WIN32 */
156         case 's':
157             flags |= EMPTH_STACKCHECK;
158             break;
159         case 'v':
160             printf("%s\n\n%s", version, legal);
161             return EXIT_SUCCESS;
162         case 'h':
163             print_usage(argv[0]);
164             return EXIT_SUCCESS;
165         default:
166             fprintf(stderr, "Try -h for help.\n");
167             return EXIT_FAILURE;
168         }
169     }
170
171 #if defined(_WIN32)
172     if ((debug || flags || config_file != NULL) &&
173         remove_service_set) {
174         fprintf(stderr, "Can't use -p, -s, -d or -e with either "
175             "-r or -R options\n");
176         exit(EXIT_FAILURE);
177     }
178     if ((debug || flags) && install_service_set) {
179         fprintf(stderr, "Can't use -d, -p or -s with either "
180             "-i or -I options\n");
181         exit(EXIT_FAILURE);
182     }
183     if (install_service_set && remove_service_set) {
184         fprintf(stderr, "Can't use both -r or -R and -i or -I "
185             "options\n");
186         exit(EXIT_FAILURE);
187     }
188
189     if (remove_service_set)
190         return remove_service(service_name);
191     if (install_service_set) {
192         program_name = _fullpath(NULL, argv[0], 0);
193         if (config_file != NULL)
194             config_file = _fullpath(NULL, config_file, 0);
195     }
196 #endif  /* _WIN32 */
197
198     if (emp_config(config_file) < 0)
199         exit(EXIT_FAILURE);
200     ef_init();
201     if (chdir(configdir)) {
202         fprintf(stderr, "Can't chdir to %s (%s)\n",
203                 configdir, strerror(errno));
204         exit(EXIT_FAILURE);
205     }
206     if (chdir(builtindir)) {
207         fprintf(stderr, "Can't chdir to %s (%s)\n",
208                 builtindir, strerror(errno));
209         exit(EXIT_FAILURE);
210     }
211     if (read_builtin_tables() < 0)
212         exit(EXIT_FAILURE);
213     if (chdir(configdir)) {
214         fprintf(stderr, "Can't chdir to %s (%s)\n",
215                 configdir, strerror(errno));
216         exit(EXIT_FAILURE);
217     }
218     if (read_custom_tables() < 0)
219         exit(EXIT_FAILURE);
220     if (chdir(gamedir)) {
221         fprintf(stderr, "Can't chdir to %s (%s)\n",
222                 gamedir, strerror(errno));
223         exit(EXIT_FAILURE);
224     }
225
226 #if defined(_WIN32)
227     if (install_service_set)
228         return install_service(program_name, service_name, config_file);
229 #endif  /* _WIN32 */
230
231     init_server();
232
233 #if defined(_WIN32)
234     if (daemonize != 0) {
235         SERVICE_TABLE_ENTRY DispatchTable[]={
236             {"Empire Server", service_main},
237             {NULL, NULL}
238         };
239         if (StartServiceCtrlDispatcher(DispatchTable))
240             return 0;
241         else {
242             /*
243              * If it is service startup error then exit otherwise
244              * start server in the foreground
245              */
246             if (GetLastError() != ERROR_FAILED_SERVICE_CONTROLLER_CONNECT) {
247                 logerror("Failed to dispatch service (%lu)",
248                          GetLastError());
249                 finish_server();
250                 exit(EXIT_FAILURE);
251             }
252         }
253     }
254     daemonize = 0;
255 #else  /* !_WIN32 */
256     if (daemonize) {
257         if (disassoc() < 0) {
258             logerror("Can't become daemon (%s)", strerror(errno));
259             exit(1);
260         }
261     }
262 #endif /* !_WIN32 */
263     start_server(flags);
264
265     for (;;) {
266         sig = empth_wait_for_signal();
267 #ifdef SIGHUP
268         if (sig == SIGHUP) {
269             journal_reopen();
270             continue;
271         }
272 #endif
273         break;
274     }
275
276     shutdwn(sig);
277     CANT_REACH();
278     finish_server();
279     return EXIT_SUCCESS;
280 }
281
282
283 /*
284  * Initialize for serving, acquire resources.
285  */
286 void
287 init_server(void)
288 {
289     srandom(time(NULL));
290 #if defined(_WIN32)
291     loc_NTInit();
292 #endif
293     update_policy_check();
294     player_init();
295     ef_init_srv();
296     io_init();
297     init_nreport();
298
299     loginit("server");
300
301     if (opt_MOB_ACCESS) {
302         /* This fixes up mobility upon restart */
303         mobility_init();
304     }
305 }
306
307 /*
308  * Start serving.
309  */
310 void
311 start_server(int flags)
312 {
313     pid_t pid;
314
315     pid = getpid();
316     create_pidfile(pidfname, pid);
317     logerror("------------------------------------------------------");
318     logerror("Empire server (pid %d) started", (int)pid);
319
320     empth_init((void **)&player, flags);
321
322     if (journal_startup() < 0)
323         exit(1);
324
325     empth_create(PP_ACCEPT, player_accept, (50 * 1024), flags,
326                  "AcceptPlayers", 0);
327     empth_create(PP_KILLIDLE, player_kill_idle, (50 * 1024), flags,
328                  "KillIdle", 0);
329     empth_create(PP_TIMESTAMP, delete_lostitems, (50 * 1024), flags,
330                  "DeleteItems", 0);
331     if (opt_MOB_ACCESS) {
332         empth_create(PP_TIMESTAMP, mobility_check, (50 * 1024), flags,
333                      "MobilityCheck", 0);
334     }
335
336     market_init();
337     update_init();
338 }
339
340 /*
341  * Finish serving, release resources.
342  */
343 void
344 finish_server(void)
345 {
346     ef_fin_srv();
347 #if defined(_WIN32)
348     loc_NTTerm();
349 #endif
350     journal_shutdown();
351     remove(pidfname);
352 }
353
354 static void
355 create_pidfile(char *fname, pid_t pid)
356 {
357     FILE *pidf = fopen(fname, "w");
358     if (!pidf
359         || fprintf(pidf, "%d\n", (int)pid) < 0
360         || fclose(pidf)) {
361         logerror("Can't write PID file (%s)", strerror(errno));
362         exit(1);
363     }
364 }
365
366 void
367 shutdwn(int sig)
368 {
369     struct player *p;
370
371     logerror("Shutdown commencing (cleaning up threads.)");
372
373     for (p = player_next(0); p != 0; p = player_next(p)) {
374         if (p->state != PS_PLAYING)
375             continue;
376         pr_flash(p, "Server shutting down...\n");
377         p->state = PS_SHUTDOWN;
378         p->aborted++;
379         if (p->command) {
380             pr_flash(p, "Shutdown aborting command\n");
381         }
382         empth_wakeup(p->proc);
383     }
384     empth_rwlock_wrlock(update_lock);
385     /* rely on player_kill_idle() for killing hung player threads */
386     if (sig)
387         logerror("Server shutting down on signal %d", sig);
388     else
389         logerror("Server shutting down at deity's request");
390     finish_server();
391
392 #if defined(_WIN32)
393     if (daemonize)
394         stop_service();
395 #endif
396     exit(0);
397 }
398
399 #if defined(_WIN32)
400 static void
401 loc_NTInit(void)
402 {
403     int rc;
404     WORD wVersionRequested;
405     WSADATA wsaData;
406
407     wVersionRequested = MAKEWORD(2, 0);
408     rc = WSAStartup(wVersionRequested, &wsaData);
409     if (rc != 0) {
410         logerror("WSAStartup failed.  %d", rc);
411         exit(1);
412     }
413 }
414
415 static void
416 loc_NTTerm(void)
417 {
418     WSACleanup();
419 }
420 #endif