aboutsummaryrefslogtreecommitdiff
path: root/src/lib/util/signal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/signal.c')
-rw-r--r--src/lib/util/signal.c110
1 files changed, 110 insertions, 0 deletions
diff --git a/src/lib/util/signal.c b/src/lib/util/signal.c
new file mode 100644
index 000000000..67849a7d6
--- /dev/null
+++ b/src/lib/util/signal.c
@@ -0,0 +1,110 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2001, 2002, 2006 GNUnet e.V.
4
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.
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 Affero General Public License for more details.
14
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/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
21/**
22 * @file util/signal.c
23 * @brief code for installing and uninstalling signal handlers
24 * @author Christian Grothoff
25 */
26
27
28#include "platform.h"
29#include "gnunet_util_lib.h"
30
31#define LOG(kind, ...) GNUNET_log_from (kind, "util-signal", __VA_ARGS__)
32
33
34struct GNUNET_SIGNAL_Context
35{
36 struct GNUNET_SIGNAL_Context *next;
37
38 struct GNUNET_SIGNAL_Context *prev;
39
40 int sig;
41
42 GNUNET_SIGNAL_Handler method;
43
44 struct sigaction oldsig;
45};
46
47static struct GNUNET_SIGNAL_Context *sc_head;
48
49static struct GNUNET_SIGNAL_Context *sc_tail;
50
51struct GNUNET_SIGNAL_Context *
52GNUNET_SIGNAL_handler_install (int signum, GNUNET_SIGNAL_Handler handler)
53{
54 struct GNUNET_SIGNAL_Context *ret;
55
56 struct sigaction sig;
57
58 ret = GNUNET_new (struct GNUNET_SIGNAL_Context);
59 ret->sig = signum;
60 ret->method = handler;
61
62 memset (&sig, 0, sizeof(sig));
63 sig.sa_handler = (void *) handler;
64 sigemptyset (&sig.sa_mask);
65#ifdef SA_INTERRUPT
66 sig.sa_flags = SA_INTERRUPT; /* SunOS */
67#else
68 sig.sa_flags = SA_RESTART;
69#endif
70 sigaction (signum, &sig, &ret->oldsig);
71
72 GNUNET_CONTAINER_DLL_insert_tail (sc_head, sc_tail, ret);
73 return ret;
74}
75
76
77void
78GNUNET_SIGNAL_handler_uninstall (struct GNUNET_SIGNAL_Context *ctx)
79{
80 struct sigaction sig;
81
82 sigemptyset (&sig.sa_mask);
83 sigaction (ctx->sig, &ctx->oldsig, &sig);
84
85 GNUNET_CONTAINER_DLL_remove (sc_head, sc_tail, ctx);
86 GNUNET_free (ctx);
87}
88
89
90/**
91 * Raise the given signal by calling the installed signal handlers. This will
92 * not use the @em raise() system call but only calls the handlers registered
93 * through GNUNET_SIGNAL_handler_install().
94 *
95 * @param sig the signal to raise
96 */
97void
98GNUNET_SIGNAL_raise (const int sig)
99{
100 struct GNUNET_SIGNAL_Context *ctx;
101
102 for (ctx = sc_head; NULL != ctx; ctx = ctx->next)
103 {
104 if (sig != ctx->sig)
105 continue;
106 if (NULL == ctx->method)
107 continue;
108 ctx->method ();
109 }
110}