finishing gnunet-nat-server
[oweals/gnunet.git] / src / util / signal.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2006 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file util/signal.c
23  * @brief code for installing and uninstalling signal handlers
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_signal_lib.h"
30
31 struct GNUNET_SIGNAL_Context
32 {
33   int sig;
34
35   GNUNET_SIGNAL_Handler method;
36
37 #ifndef MINGW
38   struct sigaction oldsig;
39 #endif
40 };
41
42 #ifdef WINDOWS
43 GNUNET_SIGNAL_Handler w32_sigchld_handler = NULL;
44 #endif
45
46 struct GNUNET_SIGNAL_Context *
47 GNUNET_SIGNAL_handler_install (int signum, GNUNET_SIGNAL_Handler handler)
48 {
49   struct GNUNET_SIGNAL_Context *ret;
50 #ifndef MINGW
51   struct sigaction sig;
52 #endif
53
54   ret = GNUNET_malloc (sizeof (struct GNUNET_SIGNAL_Context));
55   ret->sig = signum;
56   ret->method = handler;
57 #ifndef MINGW
58   sig.sa_handler = (void *) handler;
59   sigemptyset (&sig.sa_mask);
60 #ifdef SA_INTERRUPT
61   sig.sa_flags = SA_INTERRUPT;  /* SunOS */
62 #else
63   sig.sa_flags = SA_RESTART;
64 #endif
65   sigaction (signum, &sig, &ret->oldsig);
66 #else
67   if (signum == GNUNET_SIGCHLD)
68     w32_sigchld_handler = handler;
69   else
70     {
71       __p_sig_fn_t sigret = signal (signum, (__p_sig_fn_t) handler);
72       if (sigret == SIG_ERR)
73         {
74           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
75               _
76               ("signal (%d, %p) returned %d.\n"),
77               signum, handler, sigret);
78         }
79     }
80 #endif
81   return ret;
82 }
83
84 void
85 GNUNET_SIGNAL_handler_uninstall (struct GNUNET_SIGNAL_Context *ctx)
86 {
87 #ifndef MINGW
88   struct sigaction sig;
89
90   sigemptyset (&sig.sa_mask);
91   sigaction (ctx->sig, &ctx->oldsig, &sig);
92 #endif
93   GNUNET_free (ctx);
94 }