]> git.pond.sub.org Git - empserver/blob - src/lib/empthread/posix.c
(empth_init_signals): Don't catch SIGINT and SIGTERM.
[empserver] / src / lib / empthread / posix.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  *  posix.c: Thread-related code common to POSIX systems
29  * 
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2006
32  */
33
34 #include <config.h>
35
36 #include <signal.h>
37 #include "empthread.h"
38 #include "prototypes.h"
39
40 static void panic(int sig);
41
42 void
43 empth_init_signals(void)
44 {
45     struct sigaction act;
46
47     act.sa_flags = 0;
48     sigemptyset(&act.sa_mask);
49     act.sa_handler = panic;
50     sigaction(SIGBUS, &act, NULL);
51     sigaction(SIGSEGV, &act, NULL);
52     sigaction(SIGILL, &act, NULL);
53     sigaction(SIGFPE, &act, NULL);
54     act.sa_handler = SIG_IGN;
55     sigaction(SIGPIPE, &act, NULL);
56 }
57
58 /* we're going down.  try to close the files at least */
59 static void
60 panic(int sig)
61 {
62     struct sigaction act;
63
64     act.sa_flags = 0;
65     sigemptyset(&act.sa_mask);
66     act.sa_handler = SIG_DFL;
67     sigaction(SIGBUS, &act, NULL);
68     sigaction(SIGSEGV, &act, NULL);
69     sigaction(SIGILL, &act, NULL);
70     sigaction(SIGFPE, &act, NULL);
71
72     /*
73      * This code calls functions that are not safe to call from a
74      * signal handler!  That could probably be rectified with some
75      * effort.  However, we're already in a bad state.  Is it wise to
76      * flush that state to disk, possibly overwriting good state?
77      * FIXME make the code safe as far as practical
78      */
79     logerror("server received fatal signal %d", sig);
80     log_last_commands();
81     ef_fin_srv();
82     /* End of unsafe code */
83
84     if (CANT_HAPPEN(sig != SIGBUS && sig != SIGSEGV
85                     && sig != SIGILL && sig != SIGFPE))
86         _exit(1);
87     if (raise(sig))
88         _exit(1);
89 }