]> git.pond.sub.org Git - empserver/blob - src/server/main.c
(ef_open, EFF_RDONLY, EFF_CREATE, EFF_OPEN): Replace mode parameter
[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         disassoc();
240 #endif /* !_WIN32 */
241     start_server(flags);
242
243     empth_exit();
244
245     CANT_HAPPEN("main thread terminated");
246     finish_server();
247     return EXIT_SUCCESS;
248 }
249
250
251 /*
252  * Initialize for serving, acquire resources.
253  */
254 void
255 init_server(void)
256 {
257     srandom(time(NULL));
258 #if defined(_WIN32)
259     loc_NTInit();
260 #endif
261     update_policy_check();
262     nullify_objects();
263     global_init();
264     shutdown_init();
265     player_init();
266     ef_init();
267     init_files();
268     io_init();
269     init_nreport();
270
271     if (opt_MOB_ACCESS) {
272         /* This fixes up mobility upon restart */
273         mobility_init();
274     }
275
276     loginit("server");
277 }
278
279 /*
280  * Start serving.
281  */
282 void
283 start_server(int flags)
284 {
285     pid_t pid;
286 #if !defined(_WIN32)
287     struct sigaction act;
288 #endif
289
290     pid = getpid();
291     create_pidfile(pidfname, pid);
292     logerror("------------------------------------------------------");
293     logerror("Empire server (pid %d) started", (int)pid);
294
295 #if !defined(_WIN32)
296     /* signal() should not be used with mit pthreads. Anyway if u
297        have a posix threads u definitly have posix signals -- Sasha */
298     sigemptyset(&act.sa_mask);
299     act.sa_handler = shutdwn;
300     sigaction(SIGTERM, &act, NULL);
301     sigaction(SIGINT, &act, NULL);
302     act.sa_handler = panic;
303     sigaction(SIGBUS, &act, NULL);
304     sigaction(SIGSEGV, &act, NULL);
305     sigaction(SIGILL, &act, NULL);
306     sigaction(SIGFPE, &act, NULL);
307     act.sa_handler = SIG_IGN;
308     sigaction(SIGPIPE, &act, NULL);
309 #endif /* !_WIN32 */
310
311     empth_init((void **)&player, flags);
312
313     empth_create(PP_ACCEPT, player_accept, (50 * 1024), flags,
314                  "AcceptPlayers", "Accept network connections", 0);
315     empth_create(PP_KILLIDLE, player_kill_idle, (50 * 1024), flags,
316                  "KillIdle", "Kills idle player connections", 0);
317     empth_create(PP_SCHED, update_sched, (50 * 1024), flags, "UpdateSched",
318                  "Schedules updates to occur", 0);
319     empth_create(PP_TIMESTAMP, delete_lostitems, (50 * 1024), flags,
320                  "DeleteItems", "Deletes old lost items", 0);
321     if (opt_MOB_ACCESS) {
322         /* Start the mobility access check thread */
323         empth_create(PP_TIMESTAMP, mobility_check, (50 * 1024), flags,
324                      "MobilityCheck", "Writes the timestamp file", 0);
325     }
326
327     if (opt_MARKET) {
328         empth_create(PP_TIMESTAMP, market_update, (50 * 1024), flags,
329                      "MarketUpdate", "Updates the market", 0);
330     }
331 }
332
333 /*
334  * Finish serving, release resources.
335  */
336 void
337 finish_server(void)
338 {
339     close_files();
340 #if defined(_WIN32)
341     loc_NTTerm();
342 #endif
343     remove(pidfname);
344 }
345
346 static void
347 create_pidfile(char *fname, pid_t pid)
348 {
349     FILE *pidf = fopen(fname, "w");
350     if (!pidf
351         || fprintf(pidf, "%d\n", (int)pid) < 0
352         || fclose(pidf)) {
353         logerror("Can't write PID file (%s)", strerror(errno));
354         exit(1);
355     }
356 }
357
358 static void
359 init_files(void)
360 {
361     int failed = 0;
362     failed |= !ef_open(EF_NATION, EFF_MEM);
363     failed |= !ef_open(EF_SECTOR, EFF_MEM);
364     failed |= !ef_open(EF_SHIP, EFF_MEM);
365     failed |= !ef_open(EF_PLANE, EFF_MEM);
366     failed |= !ef_open(EF_LAND, EFF_MEM);
367     failed |= !ef_open(EF_NEWS, 0);
368     failed |= !ef_open(EF_LOAN, 0);
369     failed |= !ef_open(EF_TREATY, 0);
370     failed |= !ef_open(EF_NUKE, EFF_MEM);
371     failed |= !ef_open(EF_POWER, 0);
372     failed |= !ef_open(EF_TRADE, 0);
373     failed |= !ef_open(EF_MAP, EFF_MEM);
374     failed |= !ef_open(EF_BMAP, EFF_MEM);
375     failed |= !ef_open(EF_COMM, 0);
376     failed |= !ef_open(EF_LOST, 0);
377     if (failed) {
378         logerror("Missing files, giving up");
379         exit(EXIT_FAILURE);
380     }
381 }
382
383 static void
384 close_files(void)
385 {
386     ef_close(EF_NATION);
387     ef_close(EF_SECTOR);
388     ef_close(EF_SHIP);
389     ef_close(EF_PLANE);
390     ef_close(EF_LAND);
391     ef_close(EF_NEWS);
392     ef_close(EF_LOAN);
393     ef_close(EF_TREATY);
394     ef_close(EF_NUKE);
395     ef_close(EF_POWER);
396     ef_close(EF_TRADE);
397     ef_close(EF_MAP);
398     ef_close(EF_COMM);
399     ef_close(EF_BMAP);
400     ef_close(EF_LOST);
401 }
402
403 /* we're going down.  try to close the files at least */
404 #if !defined(_WIN32)
405 void
406 panic(int sig)
407 {
408     struct sigaction act;
409
410     act.sa_flags = 0;
411     sigemptyset(&act.sa_mask);
412     act.sa_handler = SIG_DFL;
413     sigaction(SIGBUS, &act, NULL);
414     sigaction(SIGSEGV, &act, NULL);
415     sigaction(SIGILL, &act, NULL);
416     sigaction(SIGFPE, &act, NULL);
417     logerror("server received fatal signal %d", sig);
418     log_last_commands();
419     close_files();
420     if (CANT_HAPPEN(sig != SIGBUS && sig != SIGSEGV
421                     && sig != SIGILL && sig != SIGFPE))
422         _exit(1);
423     if (raise(sig))
424         _exit(1);
425 }
426 #endif /* _WIN32 */
427
428 void
429 shutdwn(int sig)
430 {
431     struct player *p;
432     time_t now;
433
434     logerror("Shutdown commencing (cleaning up threads.)");
435
436     for (p = player_next(0); p != 0; p = player_next(p)) {
437         if (p->state != PS_PLAYING)
438             continue;
439         pr_flash(p, "Server shutting down...\n");
440         p->state = PS_SHUTDOWN;
441         p->aborted++;
442         if (p->command) {
443             pr_flash(p, "Shutdown aborting command\n");
444         }
445         empth_wakeup(p->proc);
446     }
447
448     if (!sig) {
449         /* Sleep and let some cleanup happen - note this doesn't work
450            when called from a signal handler, since we may or may not
451            be in the right thread.  So we just pass by and kill 'em
452            all. */
453         time(&now);
454         empth_sleep(now + 1);
455     }
456
457     for (p = player_next(0); p != 0; p = player_next(p)) {
458         p->state = PS_KILL;
459         p->aborted++;
460         empth_terminate(p->proc);
461         p = player_delete(p);
462     }
463     if (sig)
464         logerror("Server shutting down on signal %d", sig);
465     else
466         logerror("Server shutting down at deity's request");
467     finish_server();
468
469 #if defined(_WIN32)
470     if (daemonize) {
471         stop_service();
472         return;
473     }
474 #endif
475     _exit(0);
476 }
477
478
479 static void
480 nullify_objects(void)
481 {
482     int i, j;
483
484     if (opt_BIG_CITY)
485         dchr[SCT_CAPIT] = bigcity_dchr;
486     if (opt_NO_LCMS)
487         dchr[SCT_LIGHT].d_cost = -1;
488     if (opt_NO_HCMS)
489         dchr[SCT_HEAVY].d_cost = -1;
490     if (opt_NO_OIL) {
491         dchr[SCT_OIL].d_cost = -1;
492         dchr[SCT_REFINE].d_cost = -1;
493     }
494     for (i = 0; i < pln_maxno; i++) {
495         if (opt_NO_HCMS)
496             plchr[i].pl_hcm = 0;
497         if (opt_NO_LCMS)
498             plchr[i].pl_lcm = 0;
499         if (opt_NO_OIL)
500             plchr[i].pl_fuel = 0;
501     }
502     for (i = 0; i < lnd_maxno; i++) {
503         if (opt_NO_HCMS)
504             lchr[i].l_hcm = 0;
505         if (opt_NO_LCMS)
506             lchr[i].l_lcm = 0;
507         /* Fix up the military values */
508         lchr[i].l_mil = lchr[i].l_item[I_MILIT];
509     }
510     for (i = 0; i < shp_maxno; i++) {
511         if (opt_NO_HCMS)
512             mchr[i].m_hcm = 0;
513         if (opt_NO_LCMS)
514             mchr[i].m_lcm = 0;
515         if (opt_NO_OIL) {
516             if (mchr[i].m_flags & M_OIL)
517                 mchr[i].m_name = 0;
518         }
519     }
520     for (i = 0; i < nuk_maxno; i++) {
521         if (opt_NO_HCMS)
522             nchr[i].n_hcm = 0;
523         if (opt_NO_LCMS)
524             nchr[i].n_lcm = 0;
525     }
526     for (i = 0; i <= SCT_MAXDEF; i++) {
527         if (opt_NO_HCMS)
528             dchr[i].d_hcms = 0;
529         if (opt_NO_LCMS)
530             dchr[i].d_lcms = 0;
531     }
532     for (i = 0; i < prd_maxno; i++) {
533         for (j = 0; j < MAXPRCON; j++) {
534             if (opt_NO_HCMS && pchr[i].p_ctype[j] == I_HCM)
535                 pchr[i].p_camt[j] = 0;
536             if (opt_NO_LCMS && pchr[i].p_ctype[j] == I_LCM)
537                 pchr[i].p_camt[j] = 0;
538             if (opt_NO_OIL && pchr[i].p_ctype[j] == I_OIL)
539                 pchr[i].p_camt[j] = 0;
540         }
541     }
542 }
543
544 #if defined(_WIN32)
545 static void
546 loc_NTInit(void)
547 {
548     int rc;
549     WORD wVersionRequested;
550     WSADATA wsaData;
551
552     wVersionRequested = MAKEWORD(2, 0);
553     rc = WSAStartup(wVersionRequested, &wsaData);
554     if (rc != 0) {
555         logerror("WSAStartup failed.  %d", rc);
556         _exit(1);
557     }
558 }
559
560 static void
561 loc_NTTerm(void)
562 {
563     WSACleanup();
564 }
565 #endif