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