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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
// Copyright © Tavian Barnes <tavianator@tavianator.com>
// SPDX-License-Identifier: 0BSD
#include "tests.h"
#include "atomic.h"
#include "sighook.h"
#include "thread.h"
#include "xtime.h"
#include <stddef.h>
#include <errno.h>
#include <pthread.h>
#include <signal.h>
/** Counts SIGALRM deliveries. */
static atomic size_t count = 0;
/** Keeps the background thread alive. */
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
static bool done = false;
/** SIGALRM handler. */
static void alrm_hook(int sig, siginfo_t *info, void *arg) {
fetch_add(&count, 1, relaxed);
}
/** SH_ONESHOT counter. */
static atomic size_t shots = 0;
/** SH_ONESHOT hook. */
static void alrm_oneshot(int sig, siginfo_t *info, void *arg) {
fetch_add(&shots, 1, relaxed);
}
/** Background thread that receives signals. */
static void *hook_thread(void *ptr) {
mutex_lock(&mutex);
while (!done) {
cond_wait(&cond, &mutex);
}
mutex_unlock(&mutex);
return NULL;
}
/** Block a signal in this thread. */
static int block_signal(int sig, sigset_t *old) {
sigset_t set;
if (sigemptyset(&set) != 0) {
return -1;
}
if (sigaddset(&set, sig) != 0) {
return -1;
}
errno = pthread_sigmask(SIG_BLOCK, &set, old);
if (errno != 0) {
return -1;
}
return 0;
}
void check_sighook(void) {
struct sighook *hook = sighook(SIGALRM, alrm_hook, NULL, SH_CONTINUE);
if (!bfs_echeck(hook, "sighook(SIGALRM)")) {
return;
}
// Check that we can unregister and re-register a hook
sigunhook(hook);
hook = sighook(SIGALRM, alrm_hook, NULL, SH_CONTINUE);
if (!bfs_echeck(hook, "sighook(SIGALRM)")) {
return;
}
// Test SH_ONESHOT
struct sighook *oneshot_hook = sighook(SIGALRM, alrm_oneshot, NULL, SH_ONESHOT);
if (!bfs_echeck(oneshot_hook, "sighook(SH_ONESHOT)")) {
goto unhook;
}
// Create a timer that sends SIGALRM every 100 microseconds
struct timespec ival = { .tv_nsec = 100 * 1000 };
struct timer *timer = xtimer_start(&ival);
if (!bfs_echeck(timer)) {
goto unhook;
}
// Create a background thread to receive signals
pthread_t thread;
if (!bfs_echeck(thread_create(&thread, NULL, hook_thread, NULL) == 0)) {
goto untime;
}
// Block SIGALRM in this thread so the handler runs concurrently with
// sighook()/sigunhook()
sigset_t mask;
if (!bfs_echeck(block_signal(SIGALRM, &mask) == 0)) {
goto untime;
}
// Rapidly register/unregister SIGALRM hooks
size_t alarms;
while (alarms = load(&count, relaxed), alarms < 1000) {
size_t nshots = load(&shots, relaxed);
bfs_echeck(nshots <= 1);
if (alarms > 1) {
bfs_echeck(nshots == 1);
}
if (alarms >= 500) {
sigunhook(oneshot_hook);
oneshot_hook = NULL;
}
struct sighook *next = sighook(SIGALRM, alrm_hook, NULL, SH_CONTINUE);
if (!bfs_echeck(next, "sighook(SIGALRM)")) {
break;
}
sigunhook(hook);
hook = next;
}
// Quit the background thread
mutex_lock(&mutex);
done = true;
mutex_unlock(&mutex);
cond_signal(&cond);
thread_join(thread, NULL);
// Restore the old signal mask
errno = pthread_sigmask(SIG_SETMASK, &mask, NULL);
bfs_echeck(errno == 0, "pthread_sigmask()");
untime:
// Stop the timer
xtimer_stop(timer);
unhook:
// Unregister the SIGALRM hooks
sigunhook(oneshot_hook);
sigunhook(hook);
}
|