2 This file is part of GNUnet.
3 Copyright (C) 2001, 2002, 2006 GNUnet e.V.
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
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 Affero General Public License for more details.
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 SPDX-License-Identifier: AGPL3.0-or-later
23 * @brief code for installing and uninstalling signal handlers
24 * @author Christian Grothoff
28 #include "gnunet_util_lib.h"
30 #define LOG(kind,...) GNUNET_log_from (kind, "util-signal", __VA_ARGS__)
33 struct GNUNET_SIGNAL_Context
36 struct GNUNET_SIGNAL_Context *next;
38 struct GNUNET_SIGNAL_Context *prev;
42 GNUNET_SIGNAL_Handler method;
45 struct sigaction oldsig;
49 static struct GNUNET_SIGNAL_Context *sc_head;
51 static struct GNUNET_SIGNAL_Context *sc_tail;
55 GNUNET_SIGNAL_Handler w32_sigchld_handler = NULL;
58 struct GNUNET_SIGNAL_Context *
59 GNUNET_SIGNAL_handler_install (int signum, GNUNET_SIGNAL_Handler handler)
61 struct GNUNET_SIGNAL_Context *ret;
67 ret = GNUNET_new (struct GNUNET_SIGNAL_Context);
69 ret->method = handler;
71 memset (&sig, 0, sizeof (sig));
72 sig.sa_handler = (void *) handler;
73 sigemptyset (&sig.sa_mask);
75 sig.sa_flags = SA_INTERRUPT; /* SunOS */
77 sig.sa_flags = SA_RESTART;
79 sigaction (signum, &sig, &ret->oldsig);
81 if (signum == GNUNET_SIGCHLD)
82 w32_sigchld_handler = handler;
85 __p_sig_fn_t sigret = signal (signum, (__p_sig_fn_t) handler);
87 if (sigret == SIG_ERR)
89 LOG (GNUNET_ERROR_TYPE_WARNING, _("signal (%d, %p) returned %d.\n"),
90 signum, handler, sigret);
94 GNUNET_CONTAINER_DLL_insert_tail (sc_head, sc_tail, ret);
99 GNUNET_SIGNAL_handler_uninstall (struct GNUNET_SIGNAL_Context *ctx)
102 struct sigaction sig;
104 sigemptyset (&sig.sa_mask);
105 sigaction (ctx->sig, &ctx->oldsig, &sig);
107 GNUNET_CONTAINER_DLL_remove (sc_head, sc_tail, ctx);
113 * Raise the given signal by calling the installed signal handlers. This will
114 * not use the @em raise() system call but only calls the handlers registered
115 * through GNUNET_SIGNAL_handler_install().
117 * @param sig the signal to raise
120 GNUNET_SIGNAL_raise (const int sig)
122 struct GNUNET_SIGNAL_Context *ctx;
124 for (ctx = sc_head; NULL != ctx; ctx = ctx->next)
128 if (NULL == ctx->method)