]> git.pond.sub.org Git - empserver/blob - src/server/main.c
(main, empth_start): Don't bother to catch SIGUSR1. Use SIGINT or
[empserver] / src / server / main.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  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 <signal.h>
37 #if !defined(_WIN32)
38 #include <sys/ioctl.h>
39 #endif
40 #include <errno.h>
41 #include <fcntl.h>
42 #include <stdio.h>
43 #include <string.h>
44
45 #if defined(_WIN32)
46 #include <winsock2.h>
47 #undef NS_ALL
48 #include <process.h>
49 #include "../lib/gen/getopt.h"
50 #include "service.h"
51 #include "direct.h"
52 #endif
53
54 #include "misc.h"
55 #include "nat.h"
56 #include "file.h"
57 #include "player.h"
58 #include "empthread.h"
59 #include "plane.h"
60 #include "nuke.h"
61 #include "land.h"
62 #include "ship.h"
63 #include "sect.h"
64 #include "product.h"
65 #include "optlist.h"
66 #include "server.h"
67 #include "prototypes.h"
68
69 static void nullify_objects(void);
70 static void init_files(void);
71
72 #if defined(_WIN32)
73 static void loc_NTInit(void);
74 #endif
75
76 static int mainpid = 0;
77
78 /* Debugging?  If yes call abort() on internal error.  */
79 int debug = 0;
80 /* Run as daemon?  If yes, detach from controlling terminal etc. */
81 int daemonize = 1;
82
83 static void
84 print_usage(char *program_name)
85 {
86 #if defined(_WIN32)
87     printf("Usage: %s -i -I service_name -r -R service_name -D datadir -e config_file -d\n", program_name);
88     printf("-i install service with the default name %s\n", DEFAULT_SERVICE_NAME);
89     printf("-r remove service with the default name %s\n", DEFAULT_SERVICE_NAME);
90 #else
91     printf("Usage: %s -D datadir -e config_file -d -p -s\n", program_name);
92     printf("-p print flag\n");
93     printf("-s stack check flag (include print flag)\n");
94 #endif
95     printf("-d debug mode\n");
96 }
97
98 int
99 main(int argc, char **argv)
100 {
101     int flags = 0;
102 #if defined(_WIN32)
103     int install_service_set = 0;
104     char *service_name = NULL;
105     int remove_service_set = 0;
106     int datadir_set = 0;
107 #endif
108     char *config_file = NULL;
109     int op;
110 #if defined(__linux__) && defined(_EMPTH_POSIX)
111     s_char tbuf[256];
112 #endif
113
114     mainpid = getpid();
115
116 #if defined(_WIN32)
117     while ((op = getopt(argc, argv, "D:de:iI:rR:h")) != EOF) {
118 #else
119     while ((op = getopt(argc, argv, "D:de:psh")) != EOF) {
120 #endif
121         switch (op) {
122         case 'D':
123             datadir = optarg;
124 #if defined(_WIN32)
125             datadir_set++;
126 #endif
127             break;
128         case 'd':
129             debug++;
130             daemonize = 0;
131             break;
132         case 'e':
133             config_file = optarg;
134             break;
135 #if defined(_WIN32)
136         case 'I':
137             service_name = optarg;
138             /*
139              * fall out
140              */
141         case 'i':
142             install_service_set++;
143             break;
144             break;
145         case 'R':
146             service_name = optarg;
147             /*
148              * fall out
149              */
150         case 'r':
151             remove_service_set++;
152             break;
153 #else
154         case 'p':
155             flags |= EMPTH_PRINT;
156             daemonize = 0;
157             break;
158         case 's':
159             flags |= EMPTH_PRINT | EMPTH_STACKCHECK;
160             daemonize = 0;
161             break;
162 #endif
163         case 'h':
164         default:
165             print_usage(argv[0]);
166             return EXIT_FAILURE;
167         }
168     }
169
170 #if defined(_WIN32)
171     if ((debug || datadir_set || config_file != NULL) &&
172         remove_service_set) {
173         fprintf(stderr, "Can't use -d, -D or -e with either "
174             "-r or -R options when starting the server\n");
175         exit(EXIT_FAILURE);
176     }
177     if (debug && install_service_set) {
178         fprintf(stderr, "Can't use -d with either "
179             "-i or -I options when starting the server\n");
180         exit(EXIT_FAILURE);
181     }
182     if (install_service_set && remove_service_set) {
183         fprintf(stderr, "Can't use both -r or -R and -i or -I options when starting "
184             "the server\n");
185         exit(EXIT_FAILURE);
186     }
187 #endif  /* _WIN32 */
188
189
190 #if defined(_WIN32)
191     if (remove_service_set)
192         return remove_service(service_name);
193 #endif  /* _WIN32 */
194
195     if (emp_config(config_file) < 0)
196         exit(EXIT_FAILURE);
197     if (chdir(datadir)) {
198         fprintf(stderr, "Can't chdir to %s (%s)\n", datadir, strerror(errno));
199         exit(EXIT_FAILURE);
200     }
201
202 #if defined(_WIN32)
203     if (install_service_set)
204         return install_service(argv[0], service_name, datadir_set, config_file);
205 #endif  /* _WIN32 */
206
207     init_server();
208
209 #if defined(_WIN32)
210     if (daemonize != 0) {
211         SERVICE_TABLE_ENTRY DispatchTable[]={{"Empire Server", service_main},{NULL, NULL}};
212         if (StartServiceCtrlDispatcher(DispatchTable))
213             return 0;
214         else {
215             /*
216              * If it is service startup error then exit otherwise
217              * start server in the foreground
218              */
219             if (GetLastError() != ERROR_FAILED_SERVICE_CONTROLLER_CONNECT) {
220                 logerror("Failed to dispatch service (%d)", GetLastError());
221                 loc_NTTerm();
222                 exit(EXIT_FAILURE);
223             }
224         }
225     }
226     daemonize = 0;
227 #else  /* !_WIN32 */
228     if (daemonize)
229         disassoc();
230 #endif /* !_WIN32 */
231     start_server(flags);
232
233 #if defined(__linux__) && defined(_EMPTH_POSIX)
234     strcpy(tbuf, argv[0]);
235     for (op = 1; op < argc; op++) {
236         strcat(tbuf, " ");
237         strcat(tbuf, argv[op]);
238     }
239     sprintf(argv[0], "%s (main pid: %d)", tbuf, getpid());
240 #endif
241
242     empth_exit();
243
244 /* We should never get here.  But, just in case... */
245     close_files();
246
247 #if defined(_WIN32)
248     loc_NTTerm();
249 #endif
250     return EXIT_SUCCESS;
251 }
252
253
254 /*
255  * Initialize for serving, acquire resources.
256  */
257 void
258 init_server(void)
259 {
260     srandom(time(NULL));
261 #if defined(_WIN32)
262     loc_NTInit();
263 #endif
264     update_policy_check();
265     nullify_objects();
266     global_init();
267     shutdown_init();
268     player_init();
269     ef_init();
270     init_files();
271     io_init();
272     init_nreport();
273
274     if (opt_MOB_ACCESS) {
275         /* This fixes up mobility upon restart */
276         mobility_init();
277     }
278
279     loginit("server");
280     logerror("------------------------------------------------------");
281     logerror("Empire server (pid %d) started", (int)getpid());
282 }
283
284 /*
285  * Start serving.
286  */
287 void
288 start_server(int flags)
289 {
290     struct sigaction act;
291
292 #if !defined(_WIN32)
293     /* signal() should not be used with mit pthreads. Anyway if u
294        have a posix threads u definitly have posix signals -- Sasha */
295     sigemptyset(&act.sa_mask);
296     act.sa_handler = shutdwn;
297     sigaction(SIGTERM, &act, NULL);
298     sigaction(SIGINT, &act, NULL);
299     act.sa_handler = panic;
300     sigaction(SIGBUS, &act, NULL);
301     sigaction(SIGSEGV, &act, NULL);
302     sigaction(SIGILL, &act, NULL);
303     sigaction(SIGFPE, &act, NULL);
304     act.sa_handler = SIG_IGN;
305     sigaction(SIGPIPE, &act, NULL);
306 #endif /* !_WIN32 */
307
308     empth_init((char **)&player, flags);
309
310     empth_create(PP_ACCEPT, player_accept, (50 * 1024), flags,
311                  "AcceptPlayers", "Accept network connections", 0);
312     empth_create(PP_KILLIDLE, player_kill_idle, (50 * 1024), flags,
313                  "KillIdle", "Kills idle player connections", 0);
314     empth_create(PP_SCHED, update_sched, (50 * 1024), flags, "UpdateSched",
315                  "Schedules updates to occur", 0);
316     empth_create(PP_TIMESTAMP, delete_lostitems, (50 * 1024), flags,
317                  "DeleteItems", "Deletes old lost items", 0);
318     if (opt_MOB_ACCESS) {
319         /* Start the mobility access check thread */
320         empth_create(PP_TIMESTAMP, mobility_check, (50 * 1024), flags,
321                      "MobilityCheck", "Writes the timestamp file", 0);
322     }
323
324     if (opt_MARKET) {
325         empth_create(PP_TIMESTAMP, market_update, (50 * 1024), flags,
326                      "MarketUpdate", "Updates the market", 0);
327     }
328 }
329
330 static void
331 init_files(void)
332 {
333     int failed = 0;
334     failed |= !ef_open(EF_NATION, O_RDWR, EFF_MEM);
335     failed |= !ef_open(EF_SECTOR, O_RDWR, EFF_MEM);
336     failed |= !ef_open(EF_SHIP, O_RDWR, EFF_MEM);
337     failed |= !ef_open(EF_PLANE, O_RDWR, EFF_MEM);
338     failed |= !ef_open(EF_LAND, O_RDWR, EFF_MEM);
339     failed |= !ef_open(EF_NEWS, O_RDWR, 0);
340     failed |= !ef_open(EF_LOAN, O_RDWR, 0);
341     failed |= !ef_open(EF_TREATY, O_RDWR, 0);
342     failed |= !ef_open(EF_NUKE, O_RDWR, EFF_MEM);
343     failed |= !ef_open(EF_POWER, O_RDWR, 0);
344     failed |= !ef_open(EF_TRADE, O_RDWR, 0);
345     failed |= !ef_open(EF_MAP, O_RDWR, EFF_MEM);
346     failed |= !ef_open(EF_BMAP, O_RDWR, EFF_MEM);
347     failed |= !ef_open(EF_COMM, O_RDWR, 0);
348     failed |= !ef_open(EF_LOST, O_RDWR, 0);
349     if (failed) {
350         logerror("Missing files, giving up");
351         exit(EXIT_FAILURE);
352     }
353 }
354
355 void
356 close_files(void)
357 {
358     ef_close(EF_NATION);
359     ef_close(EF_SECTOR);
360     ef_close(EF_SHIP);
361     ef_close(EF_PLANE);
362     ef_close(EF_LAND);
363     ef_close(EF_NEWS);
364     ef_close(EF_LOAN);
365     ef_close(EF_TREATY);
366     ef_close(EF_NUKE);
367     ef_close(EF_POWER);
368     ef_close(EF_TRADE);
369     ef_close(EF_MAP);
370     ef_close(EF_COMM);
371     ef_close(EF_BMAP);
372     ef_close(EF_LOST);
373 }
374
375 /* we're going down.  try to close the files at least */
376 #if !defined(_WIN32)
377 void
378 panic(int sig)
379 {
380     struct sigaction act;
381
382     act.sa_flags = 0;
383     sigemptyset(&act.sa_mask);
384     act.sa_handler = SIG_DFL;
385     sigaction(SIGBUS, &act, NULL);
386     sigaction(SIGSEGV, &act, NULL);
387     sigaction(SIGILL, &act, NULL);
388     sigaction(SIGFPE, &act, NULL);
389     logerror("server received fatal signal %d", sig);
390     log_last_commands();
391     close_files();
392     if (CANT_HAPPEN(sig != SIGBUS && sig != SIGSEGV
393                     && sig != SIGILL && sig != SIGFPE))
394         _exit(1);
395     if (raise(sig))
396         _exit(1);
397 }
398 #endif /* _WIN32 */
399
400 void
401 shutdwn(int sig)
402 {
403     struct player *p;
404     time_t now;
405
406 #if defined(__linux__) && defined(_EMPTH_POSIX)
407 /* This is a hack to get around the way pthreads work on Linux.  This
408    may be useful on other platforms too where threads are turned into
409    processes. */
410     if (getpid() != mainpid) {
411         empth_t *me;
412
413         me = empth_self();
414         if (me && me->name) {
415             if (strlen(me->name) > 5) {
416                 /* Player threads are cleaned up below, so just have
417                    them return.  This should work. */
418                 if (!strncmp("Player", me->name, 6)) {
419                     return;
420                 }
421             }
422         }
423         /* Not a player thread - must be server thread, so exit */
424         empth_exit();
425         return;
426     }
427 #endif
428
429     logerror("Shutdown commencing (cleaning up threads.)");
430
431     for (p = player_next(0); p != 0; p = player_next(p)) {
432         if (p->state != PS_PLAYING)
433             continue;
434         pr_flash(p, "Server shutting down...\n");
435         p->state = PS_SHUTDOWN;
436         p->aborted++;
437         if (p->command) {
438             pr_flash(p, "Shutdown aborting command\n");
439         }
440         empth_wakeup(p->proc);
441     }
442
443     if (!sig) {
444         /* Sleep and let some cleanup happen - note this doesn't work
445            when called from a signal handler, since we may or may not
446            be in the right thread.  So we just pass by and kill 'em
447            all. */
448         time(&now);
449         empth_sleep(now + 1);
450     }
451
452     for (p = player_next(0); p != 0; p = player_next(p)) {
453         p->state = PS_KILL;
454         p->aborted++;
455         empth_terminate(p->proc);
456         p = player_delete(p);
457     }
458     if (sig)
459         logerror("Server shutting down on signal %d", sig);
460     else
461         logerror("Server shutting down at Deity's request");
462     close_files();
463
464 #if defined(_WIN32)
465     loc_NTTerm();
466     if (!daemonize)
467         _exit(0);
468 #else
469     _exit(0);
470 #endif
471 }
472
473
474 static void
475 nullify_objects(void)
476 {
477     int i, j;
478
479     if (opt_BIG_CITY)
480         dchr[SCT_CAPIT] = bigcity_dchr;
481     if (opt_NO_LCMS)
482         dchr[SCT_LIGHT].d_cost = -1;
483     if (opt_NO_HCMS)
484         dchr[SCT_HEAVY].d_cost = -1;
485     if (opt_NO_OIL) {
486         dchr[SCT_OIL].d_cost = -1;
487         dchr[SCT_REFINE].d_cost = -1;
488     }
489     for (i = 0; i < pln_maxno; i++) {
490         if (opt_NO_HCMS)
491             plchr[i].pl_hcm = 0;
492         if (opt_NO_LCMS)
493             plchr[i].pl_lcm = 0;
494         if (opt_NO_OIL)
495             plchr[i].pl_fuel = 0;
496     }
497     for (i = 0; i < lnd_maxno; i++) {
498         if (opt_NO_HCMS)
499             lchr[i].l_hcm = 0;
500         if (opt_NO_LCMS)
501             lchr[i].l_lcm = 0;
502         /* Fix up the military values */
503         lchr[i].l_mil = lchr[i].l_item[I_MILIT];
504     }
505     for (i = 0; i < shp_maxno; i++) {
506         if (opt_NO_HCMS)
507             mchr[i].m_hcm = 0;
508         if (opt_NO_LCMS)
509             mchr[i].m_lcm = 0;
510         if (opt_NO_OIL) {
511             if (mchr[i].m_flags & M_OIL)
512                 mchr[i].m_name = 0;
513         }
514     }
515     for (i = 0; i < nuk_maxno; i++) {
516         if (opt_NO_HCMS)
517             nchr[i].n_hcm = 0;
518         if (opt_NO_LCMS)
519             nchr[i].n_lcm = 0;
520     }
521     for (i = 0; i <= SCT_MAXDEF; i++) {
522         if (opt_NO_HCMS)
523             dchr[i].d_hcms = 0;
524         if (opt_NO_LCMS)
525             dchr[i].d_lcms = 0;
526     }
527     for (i = 0; i < prd_maxno; i++) {
528         for (j = 0; j < MAXPRCON; j++) {
529             if (opt_NO_HCMS && pchr[i].p_ctype[j] == I_HCM)
530                 pchr[i].p_camt[j] = 0;
531             if (opt_NO_LCMS && pchr[i].p_ctype[j] == I_LCM)
532                 pchr[i].p_camt[j] = 0;
533             if (opt_NO_OIL && pchr[i].p_ctype[j] == I_OIL)
534                 pchr[i].p_camt[j] = 0;
535         }
536     }
537 }
538
539 #if defined(_WIN32)
540 static void
541 loc_NTInit()
542 {
543     int rc;
544     WORD wVersionRequested;
545     WSADATA wsaData;
546
547     wVersionRequested = MAKEWORD(2, 0);
548     rc = WSAStartup(wVersionRequested, &wsaData);
549     if (rc != 0) {
550         logerror("WSAStartup failed.  %d", rc);
551         _exit(1);
552     }
553 }
554
555 void
556 loc_NTTerm()
557 {
558     WSACleanup();
559 }
560 #endif