summaryrefslogtreecommitdiff
path: root/src/run.c
diff options
context:
space:
mode:
authorAlex Harpin <development@landsofshadow.co.uk>2015-11-24 22:11:13 +0000
committerAlex Harpin <development@landsofshadow.co.uk>2015-11-24 22:11:13 +0000
commit78048270d567884b425289de5248d83ca710e70a (patch)
tree83428c88c88b8d03d9c478a873f84dedf636eb2d /src/run.c
parenta78d81af9c6c14e8f9e0235ea5ffc26f37528349 (diff)
parenta96fdeaac8274c0544b0ffa808782932e637a6f5 (diff)
downloadconntrack-tools-78048270d567884b425289de5248d83ca710e70a.tar.gz
conntrack-tools-78048270d567884b425289de5248d83ca710e70a.zip
Merge tag 'conntrack-tools-1.4.1' into lithium
conntrack-tools 1.4.1 release
Diffstat (limited to 'src/run.c')
-rw-r--r--src/run.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/run.c b/src/run.c
index 3337694..44a179f 100644
--- a/src/run.c
+++ b/src/run.c
@@ -40,10 +40,15 @@
#include <time.h>
#include <fcntl.h>
-void killer(int foo)
+void killer(int signal)
{
- /* no signals while handling signals */
- sigprocmask(SIG_BLOCK, &STATE(block), NULL);
+ /* Signals are re-entrant, disable signal handling to avoid problems
+ * in case we receive SIGINT and SIGTERM in a row. This function is
+ * also called via -k from the unix socket context, we already disabled
+ * signals in that path, so don't do it.
+ */
+ if (signal)
+ sigprocmask(SIG_BLOCK, &STATE(block), NULL);
local_server_destroy(&STATE(local));
@@ -58,8 +63,6 @@ void killer(int foo)
dlog(LOG_NOTICE, "---- shutdown received ----");
close_log();
- sigprocmask(SIG_UNBLOCK, &STATE(block), NULL);
-
exit(0);
}