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
|
/* $OpenBSD: stackjmp.c,v 1.3 2013/12/21 05:45:04 guenther Exp $ */
/*
* Written by Matthew Dempsky, 2012.
* Public domain.
*/
#include <assert.h>
#include <setjmp.h>
#include <signal.h>
#include <string.h>
#include <unistd.h>
static sigjmp_buf jb;
static char buf[SIGSTKSZ];
static volatile int handled;
static int
isaltstack()
{
stack_t os;
assert(sigaltstack(NULL, &os) == 0);
return (os.ss_flags & SS_ONSTACK) != 0;
}
static void
inthandler(int signo)
{
assert(isaltstack());
handled = 1;
siglongjmp(jb, 1);
}
int
main()
{
struct sigaction sa;
stack_t stack;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = inthandler;
sa.sa_flags = SA_ONSTACK;
assert(sigaction(SIGINT, &sa, NULL) == 0);
memset(&stack, 0, sizeof(stack));
stack.ss_sp = buf;
stack.ss_size = sizeof(buf);
stack.ss_flags = 0;
assert(sigaltstack(&stack, NULL) == 0);
assert(!isaltstack());
sigsetjmp(jb, 1);
assert(!isaltstack());
if (!handled) {
kill(getpid(), SIGINT);
assert(0); /* Shouldn't reach here. */
}
return (0);
}
|