-
Notifications
You must be signed in to change notification settings - Fork 24
/
signal.c
105 lines (90 loc) · 2.08 KB
/
signal.c
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
/* signal.c: a Hugh-approved signal handler. */
#include "rc.h"
#include <signal.h>
#include <setjmp.h>
#include "sigmsgs.h"
#include "jbwrap.h"
#if HAVE_SIGACTION
void (*sys_signal(int signum, void (*handler)(int)))(int) {
struct sigaction new, old;
new.sa_handler = handler;
new.sa_flags = 0; /* clear SA_RESTART */
sigfillset(&new.sa_mask);
if (sigaction(signum, &new, &old) == 0)
return old.sa_handler;
return SIG_DFL;
}
#else
void (*sys_signal(int signum, void (*handler)(int)))(int) {
return signal(signum, handler);
}
#endif
void (*sighandlers[NUMOFSIGNALS])(int);
static volatile sig_atomic_t sigcount, caught[NUMOFSIGNALS];
extern void catcher(int s) {
if (caught[s] == 0) {
sigcount++;
caught[s] = 1;
}
sys_signal(s, catcher);
#if HAVE_RESTARTABLE_SYSCALLS
if (slow) {
siglongjmp(slowbuf.j, s);
}
#endif
}
extern void sigchk() {
void (*h)(int);
int s, i;
if (sigcount == 0)
return; /* ho hum; life as usual */
if (forked)
exit(1); /* exit unconditionally on a signal in a child process */
for (i = 0, s = -1; i < NUMOFSIGNALS; i++)
if (caught[i] != 0) {
s = i;
--sigcount;
caught[s] = 0;
break;
}
if (s == -1)
panic("all-zero sig vector with nonzero sigcount");
if ((h = sighandlers[s]) == SIG_DFL)
panic("caught signal set to SIG_DFL");
if (h == SIG_IGN)
panic("caught signal set to SIG_IGN");
(*h)(s);
}
extern void (*rc_signal(int s, void (*h)(int)))(int) {
void (*old)(int);
sigchk();
old = sighandlers[s];
sighandlers[s] = h;
if (h == SIG_DFL || h == SIG_IGN)
sys_signal(s, h);
else
sys_signal(s, catcher);
return old;
}
extern void initsignal() {
void (*h)(int);
int i;
/* Ensure that SIGCHLD is not SIG_IGN. Solaris's rshd does this. :-( */
h = sys_signal(SIGCHLD, SIG_IGN);
if (h != SIG_IGN && h != SIG_ERR)
sys_signal(SIGCHLD, h);
else
sys_signal(SIGCHLD, SIG_DFL);
for (i = 1; i < NUMOFSIGNALS; i++) {
#ifdef SIGKILL
if (i == SIGKILL) continue;
#endif
#ifdef SIGSTOP
if (i == SIGSTOP) continue;
#endif
h = sys_signal(i, SIG_IGN);
if (h != SIG_IGN && h != SIG_ERR)
sys_signal(i, h);
sighandlers[i] = h;
}
}