Blob


1 /*
2 * Signal handling for Plan 9 programs.
3 * We stubbornly use the strings from Plan 9 instead
4 * of the enumerated Unix constants.
5 * There are some weird translations. In particular,
6 * a "kill" note is the same as SIGTERM in Unix.
7 * There is no equivalent note to Unix's SIGKILL, since
8 * it's not a deliverable signal anyway.
9 *
10 * We do not handle SIGABRT or SIGSEGV, mainly because
11 * the thread library queues its notes for later, and we want
12 * to dump core with the state at time of delivery.
13 *
14 * We have to add some extra entry points to provide the
15 * ability to tweak which signals are deliverable and which
16 * are acted upon. Notifydisable and notifyenable play with
17 * the process signal mask. Notifyignore enables the signal
18 * but will not call notifyf when it comes in. This is occasionally
19 * useful.
20 */
22 #include <u.h>
23 #include <signal.h>
24 #define NOPLAN9DEFINES
25 #include <libc.h>
27 extern char *_p9sigstr(int, char*);
28 extern int _p9strsig(char*);
30 typedef struct Sig Sig;
31 struct Sig
32 {
33 int sig; /* signal number */
34 int flags;
35 };
37 enum
38 {
39 Restart = 1<<0,
40 Ignore = 1<<1,
41 };
43 static Sig sigs[] = {
44 SIGHUP, 0,
45 SIGINT, 0,
46 SIGQUIT, 0,
47 SIGILL, 0,
48 SIGTRAP, 0,
49 /* SIGABRT, 0, */
50 #ifdef SIGEMT
51 SIGEMT, 0,
52 #endif
53 SIGFPE, 0,
54 SIGBUS, 0,
55 /* SIGSEGV, 0, */
56 SIGCHLD, Restart|Ignore,
57 SIGSYS, 0,
58 SIGPIPE, Ignore,
59 SIGALRM, 0,
60 SIGTERM, 0,
61 SIGTSTP, Restart|Ignore,
62 SIGTTIN, Restart|Ignore,
63 SIGTTOU, Restart|Ignore,
64 SIGXCPU, 0,
65 SIGXFSZ, 0,
66 SIGVTALRM, 0,
67 SIGUSR1, 0,
68 SIGUSR2, 0,
69 SIGWINCH, Restart|Ignore,
70 #ifdef SIGINFO
71 SIGINFO, Restart|Ignore,
72 #endif
73 };
75 static Sig*
76 findsig(int s)
77 {
78 int i;
80 for(i=0; i<nelem(sigs); i++)
81 if(sigs[i].sig == s)
82 return &sigs[i];
83 return nil;
84 }
86 /*
87 * The thread library initializes _notejmpbuf to its own
88 * routine which provides a per-pthread jump buffer.
89 * If we're not using the thread library, we assume we are
90 * single-threaded.
91 */
92 typedef struct Jmp Jmp;
93 struct Jmp
94 {
95 p9jmp_buf b;
96 };
98 static Jmp onejmp;
100 static Jmp*
101 getonejmp(void)
103 return &onejmp;
106 Jmp *(*_notejmpbuf)(void) = getonejmp;
107 static void noteinit(void);
109 /*
110 * Actual signal handler.
111 */
113 static void (*notifyf)(void*, char*); /* Plan 9 handler */
115 static void
116 signotify(int sig)
118 char tmp[64];
119 Jmp *j;
120 Sig *s;
122 j = (*_notejmpbuf)();
123 switch(p9setjmp(j->b)){
124 case 0:
125 if(notifyf)
126 (*notifyf)(nil, _p9sigstr(sig, tmp));
127 /* fall through */
128 case 1: /* noted(NDFLT) */
129 if(0)print("DEFAULT %d\n", sig);
130 s = findsig(sig);
131 if(s && (s->flags&Ignore))
132 return;
133 signal(sig, SIG_DFL);
134 raise(sig);
135 _exit(1);
136 case 2: /* noted(NCONT) */
137 if(0)print("HANDLED %d\n", sig);
138 return;
142 static void
143 signonotify(int sig)
145 USED(sig);
148 int
149 noted(int v)
151 p9longjmp((*_notejmpbuf)()->b, v==NCONT ? 2 : 1);
152 abort();
153 return 0;
156 int
157 notify(void (*f)(void*, char*))
159 static int init;
161 notifyf = f;
162 if(!init){
163 init = 1;
164 noteinit();
166 return 0;
169 /*
170 * Nonsense about enabling and disabling signals.
171 */
172 typedef void Sighandler(int);
173 static Sighandler*
174 handler(int s)
176 struct sigaction sa;
178 sigaction(s, nil, &sa);
179 return sa.sa_handler;
182 static int
183 notesetenable(int sig, int enabled)
185 sigset_t mask, omask;
187 if(sig == 0)
188 return -1;
190 sigemptyset(&mask);
191 sigaddset(&mask, sig);
192 sigprocmask(enabled ? SIG_UNBLOCK : SIG_BLOCK, &mask, &omask);
193 return !sigismember(&omask, sig);
196 int
197 noteenable(char *msg)
199 return notesetenable(_p9strsig(msg), 1);
202 int
203 notedisable(char *msg)
205 return notesetenable(_p9strsig(msg), 0);
208 static int
209 notifyseton(int s, int on)
211 Sig *sig;
212 struct sigaction sa, osa;
214 sig = findsig(s);
215 if(sig == nil)
216 return -1;
217 memset(&sa, 0, sizeof sa);
218 sa.sa_handler = on ? signotify : signonotify;
219 if(sig->flags&Restart)
220 sa.sa_flags |= SA_RESTART;
222 /*
223 * We can't allow signals within signals because there's
224 * only one jump buffer.
225 */
226 sigfillset(&sa.sa_mask);
228 /*
229 * Install handler.
230 */
231 sigaction(sig->sig, &sa, &osa);
232 return osa.sa_handler == signotify;
235 int
236 notifyon(char *msg)
238 return notifyseton(_p9strsig(msg), 1);
241 int
242 notifyoff(char *msg)
244 return notifyseton(_p9strsig(msg), 0);
247 /*
248 * Initialization follows sigs table.
249 */
250 static void
251 noteinit(void)
253 int i;
254 Sig *sig;
256 for(i=0; i<nelem(sigs); i++){
257 sig = &sigs[i];
258 /*
259 * If someone has already installed a handler,
260 * It's probably some ld preload nonsense,
261 * like pct (a SIGVTALRM-based profiler).
262 * Or maybe someone has already called notifyon/notifyoff.
263 * Leave it alone.
264 */
265 if(handler(sig->sig) != SIG_DFL)
266 continue;
267 notifyseton(sig->sig, 1);