1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/*
* Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
* This file is part of the "cimple" project.
* For details, see https://github.com/egor-tensin/cimple.
* Distributed under the MIT License.
*/
#include "signal.h"
#include "compiler.h"
#include "log.h"
#include <signal.h>
#include <string.h>
volatile sig_atomic_t global_stop_flag = 0;
static void set_global_stop_flag(UNUSED int signum)
{
global_stop_flag = 1;
}
static int my_sigaction(int signo, const struct sigaction *act)
{
int ret = 0;
ret = sigaction(signo, act, NULL);
if (ret < 0) {
log_errno("sigaction");
return ret;
}
return ret;
}
int signal_install_global_handler(void)
{
int ret = 0;
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = set_global_stop_flag;
/* Don't care about proper cleanup here; we exit the program if this
* fails anyway. */
ret = my_sigaction(SIGINT, &sa);
if (ret < 0)
return ret;
ret = my_sigaction(SIGQUIT, &sa);
if (ret < 0)
return ret;
ret = my_sigaction(SIGTERM, &sa);
if (ret < 0)
return ret;
return ret;
}
int signal_set(const sigset_t *new, sigset_t *old)
{
int ret = 0;
ret = sigprocmask(SIG_SETMASK, new, old);
if (ret < 0) {
log_errno("sigprocmask");
return ret;
}
return ret;
}
int signal_block_parent(sigset_t *old)
{
sigset_t new;
sigfillset(&new);
return signal_set(&new, old);
}
int signal_block_child(void)
{
sigset_t set;
sigemptyset(&set);
sigaddset(&set, SIGINT);
sigaddset(&set, SIGQUIT);
sigaddset(&set, SIGTERM);
return signal_set(&set, NULL);
}
|