e01097137b2279f1daddfd0233ad39688dd2ff2a
[sbcl.git] / src / runtime / interrupt.c
1 /*
2  * interrupt-handling magic
3  */
4
5 /*
6  * This software is part of the SBCL system. See the README file for
7  * more information.
8  *
9  * This software is derived from the CMU CL system, which was
10  * written at Carnegie Mellon University and released into the
11  * public domain. The software is in the public domain and is
12  * provided with absolutely no warranty. See the COPYING and CREDITS
13  * files for more information.
14  */
15
16
17 /* As far as I can tell, what's going on here is:
18  *
19  * In the case of most signals, when Lisp asks us to handle the
20  * signal, the outermost handler (the one actually passed to UNIX) is
21  * either interrupt_handle_now(..) or maybe_now_maybe_later(..).
22  * In that case, the Lisp-level handler is stored in interrupt_handlers[..]
23  * and interrupt_low_level_handlers[..] is cleared.
24  *
25  * However, some signals need special handling, e.g.
26  *
27  * o the SIGSEGV (for e.g. Linux) or SIGBUS (for e.g. FreeBSD) used by the
28  *   garbage collector to detect violations of write protection,
29  *   because some cases of such signals (e.g. GC-related violations of
30  *   write protection) are handled at C level and never passed on to
31  *   Lisp. For such signals, we still store any Lisp-level handler
32  *   in interrupt_handlers[..], but for the outermost handle we use
33  *   the value from interrupt_low_level_handlers[..], instead of the
34  *   ordinary interrupt_handle_now(..) or interrupt_handle_later(..).
35  *
36  * o the SIGTRAP (Linux/Alpha) which Lisp code uses to handle breakpoints,
37  *   pseudo-atomic sections, and some classes of error (e.g. "function
38  *   not defined").  This never goes anywhere near the Lisp handlers at all.
39  *   See runtime/alpha-arch.c and code/signal.lisp
40  *
41  * - WHN 20000728, dan 20010128 */
42
43 #include "sbcl.h"
44
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #include <signal.h>
49 #include <sys/types.h>
50 #ifndef LISP_FEATURE_WIN32
51 #include <sys/wait.h>
52 #endif
53 #include <errno.h>
54
55 #include "runtime.h"
56 #include "arch.h"
57 #include "os.h"
58 #include "interrupt.h"
59 #include "globals.h"
60 #include "lispregs.h"
61 #include "validate.h"
62 #include "gc.h"
63 #include "alloc.h"
64 #include "dynbind.h"
65 #include "interr.h"
66 #include "genesis/fdefn.h"
67 #include "genesis/simple-fun.h"
68 #include "genesis/cons.h"
69
70
71
72 static void run_deferred_handler(struct interrupt_data *data, void *v_context);
73 #ifndef LISP_FEATURE_WIN32
74 static void store_signal_data_for_later (struct interrupt_data *data,
75                                          void *handler, int signal,
76                                          siginfo_t *info,
77                                          os_context_t *context);
78 boolean interrupt_maybe_gc_int(int signal, siginfo_t *info, void *v_context);
79
80 void
81 sigaddset_deferrable(sigset_t *s)
82 {
83     sigaddset(s, SIGHUP);
84     sigaddset(s, SIGINT);
85     sigaddset(s, SIGQUIT);
86     sigaddset(s, SIGPIPE);
87     sigaddset(s, SIGALRM);
88     sigaddset(s, SIGURG);
89     sigaddset(s, SIGTSTP);
90     sigaddset(s, SIGCHLD);
91     sigaddset(s, SIGIO);
92     sigaddset(s, SIGXCPU);
93     sigaddset(s, SIGXFSZ);
94     sigaddset(s, SIGVTALRM);
95     sigaddset(s, SIGPROF);
96     sigaddset(s, SIGWINCH);
97
98 #if !((defined(LISP_FEATURE_DARWIN) || defined(LISP_FEATURE_FREEBSD)) && defined(LISP_FEATURE_SB_THREAD))
99     sigaddset(s, SIGUSR1);
100     sigaddset(s, SIGUSR2);
101 #endif
102
103 #ifdef LISP_FEATURE_SB_THREAD
104     sigaddset(s, SIG_INTERRUPT_THREAD);
105 #endif
106 }
107
108 void
109 sigaddset_blockable(sigset_t *s)
110 {
111     sigaddset_deferrable(s);
112 #ifdef LISP_FEATURE_SB_THREAD
113 #ifdef SIG_RESUME_FROM_GC
114     sigaddset(s, SIG_RESUME_FROM_GC);
115 #endif
116     sigaddset(s, SIG_STOP_FOR_GC);
117 #endif
118 }
119
120 /* initialized in interrupt_init */
121 static sigset_t deferrable_sigset;
122 static sigset_t blockable_sigset;
123 #endif
124
125 void
126 check_blockables_blocked_or_lose()
127 {
128 #ifndef LISP_FEATURE_WIN32
129     /* Get the current sigmask, by blocking the empty set. */
130     sigset_t empty,current;
131     int i;
132     sigemptyset(&empty);
133     thread_sigmask(SIG_BLOCK, &empty, &current);
134     for(i = 1; i < NSIG; i++) {
135         if (sigismember(&blockable_sigset, i) && !sigismember(&current, i))
136             lose("blockable signal %d not blocked\n",i);
137     }
138 #endif
139 }
140
141 inline static void
142 check_interrupts_enabled_or_lose(os_context_t *context)
143 {
144     struct thread *thread=arch_os_get_current_thread();
145     if (SymbolValue(INTERRUPTS_ENABLED,thread) == NIL)
146         lose("interrupts not enabled\n");
147     if (
148 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
149         (!foreign_function_call_active) &&
150 #endif
151         arch_pseudo_atomic_atomic(context))
152         lose ("in pseudo atomic section\n");
153 }
154
155 /* When we catch an internal error, should we pass it back to Lisp to
156  * be handled in a high-level way? (Early in cold init, the answer is
157  * 'no', because Lisp is still too brain-dead to handle anything.
158  * After sufficient initialization has been completed, the answer
159  * becomes 'yes'.) */
160 boolean internal_errors_enabled = 0;
161
162 #ifndef LISP_FEATURE_WIN32
163 static void (*interrupt_low_level_handlers[NSIG]) (int, siginfo_t*, void*);
164 #endif
165 union interrupt_handler interrupt_handlers[NSIG];
166
167 /* At the toplevel repl we routinely call this function.  The signal
168  * mask ought to be clear anyway most of the time, but may be non-zero
169  * if we were interrupted e.g. while waiting for a queue.  */
170
171 void
172 reset_signal_mask(void)
173 {
174 #ifndef LISP_FEATURE_WIN32
175     sigset_t new;
176     sigemptyset(&new);
177     thread_sigmask(SIG_SETMASK,&new,0);
178 #endif
179 }
180
181 void
182 block_blockable_signals(void)
183 {
184 #ifndef LISP_FEATURE_WIN32
185     thread_sigmask(SIG_BLOCK, &blockable_sigset, 0);
186 #endif
187 }
188
189 \f
190 /*
191  * utility routines used by various signal handlers
192  */
193
194 static void
195 build_fake_control_stack_frames(struct thread *th,os_context_t *context)
196 {
197 #ifndef LISP_FEATURE_C_STACK_IS_CONTROL_STACK
198
199     lispobj oldcont;
200
201     /* Build a fake stack frame or frames */
202
203     current_control_frame_pointer =
204         (lispobj *)(unsigned long)
205             (*os_context_register_addr(context, reg_CSP));
206     if ((lispobj *)(unsigned long)
207             (*os_context_register_addr(context, reg_CFP))
208         == current_control_frame_pointer) {
209         /* There is a small window during call where the callee's
210          * frame isn't built yet. */
211         if (lowtag_of(*os_context_register_addr(context, reg_CODE))
212             == FUN_POINTER_LOWTAG) {
213             /* We have called, but not built the new frame, so
214              * build it for them. */
215             current_control_frame_pointer[0] =
216                 *os_context_register_addr(context, reg_OCFP);
217             current_control_frame_pointer[1] =
218                 *os_context_register_addr(context, reg_LRA);
219             current_control_frame_pointer += 8;
220             /* Build our frame on top of it. */
221             oldcont = (lispobj)(*os_context_register_addr(context, reg_CFP));
222         }
223         else {
224             /* We haven't yet called, build our frame as if the
225              * partial frame wasn't there. */
226             oldcont = (lispobj)(*os_context_register_addr(context, reg_OCFP));
227         }
228     }
229     /* We can't tell whether we are still in the caller if it had to
230      * allocate a stack frame due to stack arguments. */
231     /* This observation provoked some past CMUCL maintainer to ask
232      * "Can anything strange happen during return?" */
233     else {
234         /* normal case */
235         oldcont = (lispobj)(*os_context_register_addr(context, reg_CFP));
236     }
237
238     current_control_stack_pointer = current_control_frame_pointer + 8;
239
240     current_control_frame_pointer[0] = oldcont;
241     current_control_frame_pointer[1] = NIL;
242     current_control_frame_pointer[2] =
243         (lispobj)(*os_context_register_addr(context, reg_CODE));
244 #endif
245 }
246
247 /* Stores the context for gc to scavange and builds fake stack
248  * frames. */
249 void
250 fake_foreign_function_call(os_context_t *context)
251 {
252     int context_index;
253     struct thread *thread=arch_os_get_current_thread();
254
255     /* context_index incrementing must not be interrupted */
256     check_blockables_blocked_or_lose();
257
258     /* Get current Lisp state from context. */
259 #ifdef reg_ALLOC
260     dynamic_space_free_pointer =
261         (lispobj *)(unsigned long)
262             (*os_context_register_addr(context, reg_ALLOC));
263     /* fprintf(stderr,"dynamic_space_free_pointer: %p\n", dynamic_space_free_pointer); */
264 #if defined(LISP_FEATURE_ALPHA)
265     if ((long)dynamic_space_free_pointer & 1) {
266         lose("dead in fake_foreign_function_call, context = %x\n", context);
267     }
268 #endif
269 #endif
270 #ifdef reg_BSP
271     current_binding_stack_pointer =
272         (lispobj *)(unsigned long)
273             (*os_context_register_addr(context, reg_BSP));
274 #endif
275
276     build_fake_control_stack_frames(thread,context);
277
278     /* Do dynamic binding of the active interrupt context index
279      * and save the context in the context array. */
280     context_index =
281         fixnum_value(SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX,thread));
282
283     if (context_index >= MAX_INTERRUPTS) {
284         lose("maximum interrupt nesting depth (%d) exceeded\n", MAX_INTERRUPTS);
285     }
286
287     bind_variable(FREE_INTERRUPT_CONTEXT_INDEX,
288                   make_fixnum(context_index + 1),thread);
289
290     thread->interrupt_contexts[context_index] = context;
291
292     /* no longer in Lisp now */
293     foreign_function_call_active = 1;
294 }
295
296 /* blocks all blockable signals.  If you are calling from a signal handler,
297  * the usual signal mask will be restored from the context when the handler
298  * finishes.  Otherwise, be careful */
299 void
300 undo_fake_foreign_function_call(os_context_t *context)
301 {
302     struct thread *thread=arch_os_get_current_thread();
303     /* Block all blockable signals. */
304     block_blockable_signals();
305
306     /* going back into Lisp */
307     foreign_function_call_active = 0;
308
309     /* Undo dynamic binding of FREE_INTERRUPT_CONTEXT_INDEX */
310     unbind(thread);
311
312 #ifdef reg_ALLOC
313     /* Put the dynamic space free pointer back into the context. */
314     *os_context_register_addr(context, reg_ALLOC) =
315         (unsigned long) dynamic_space_free_pointer
316         | (*os_context_register_addr(context, reg_ALLOC)
317            & LOWTAG_MASK);
318     /*
319       ((unsigned long)(*os_context_register_addr(context, reg_ALLOC)) & ~LOWTAG_MASK)
320       | ((unsigned long) dynamic_space_free_pointer & LOWTAG_MASK);
321     */
322 #endif
323 }
324
325 /* a handler for the signal caused by execution of a trap opcode
326  * signalling an internal error */
327 void
328 interrupt_internal_error(int signal, siginfo_t *info, os_context_t *context,
329                          boolean continuable)
330 {
331     lispobj context_sap;
332
333     fake_foreign_function_call(context);
334
335     if (!internal_errors_enabled) {
336         describe_internal_error(context);
337         /* There's no good way to recover from an internal error
338          * before the Lisp error handling mechanism is set up. */
339         lose("internal error too early in init, can't recover\n");
340     }
341
342     /* Allocate the SAP object while the interrupts are still
343      * disabled. */
344     context_sap = alloc_sap(context);
345
346 #ifndef LISP_FEATURE_WIN32
347     thread_sigmask(SIG_SETMASK, os_context_sigmask_addr(context), 0);
348 #endif
349
350     SHOW("in interrupt_internal_error");
351 #ifdef QSHOW
352     /* Display some rudimentary debugging information about the
353      * error, so that even if the Lisp error handler gets badly
354      * confused, we have a chance to determine what's going on. */
355     describe_internal_error(context);
356 #endif
357     funcall2(SymbolFunction(INTERNAL_ERROR), context_sap,
358              continuable ? T : NIL);
359
360     undo_fake_foreign_function_call(context); /* blocks signals again */
361     if (continuable)
362         arch_skip_instruction(context);
363 }
364
365 void
366 interrupt_handle_pending(os_context_t *context)
367 {
368     struct thread *thread;
369     struct interrupt_data *data;
370
371     FSHOW_SIGNAL((stderr, "/entering interrupt_handle_pending\n"));
372
373     check_blockables_blocked_or_lose();
374     thread=arch_os_get_current_thread();
375     data=thread->interrupt_data;
376
377     /* If pseudo_atomic_interrupted is set then the interrupt is going
378      * to be handled now, ergo it's safe to clear it. */
379     arch_clear_pseudo_atomic_interrupted(context);
380
381     if (SymbolValue(GC_INHIBIT,thread)==NIL) {
382 #ifdef LISP_FEATURE_SB_THREAD
383         if (SymbolValue(STOP_FOR_GC_PENDING,thread) != NIL) {
384             /* another thread has already initiated a gc, this attempt
385              * might as well be cancelled */
386             SetSymbolValue(GC_PENDING,NIL,thread);
387             SetSymbolValue(STOP_FOR_GC_PENDING,NIL,thread);
388             sig_stop_for_gc_handler(SIG_STOP_FOR_GC,NULL,context);
389         } else
390 #endif
391         if (SymbolValue(GC_PENDING,thread) != NIL) {
392             /* GC_PENDING is cleared in SUB-GC, or if another thread
393              * is doing a gc already we will get a SIG_STOP_FOR_GC and
394              * that will clear it. */
395             interrupt_maybe_gc_int(0,NULL,context);
396         }
397         check_blockables_blocked_or_lose();
398     }
399
400     /* we may be here only to do the gc stuff, if interrupts are
401      * enabled run the pending handler */
402     if (!((SymbolValue(INTERRUPTS_ENABLED,thread) == NIL) ||
403           (
404 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
405            (!foreign_function_call_active) &&
406 #endif
407            arch_pseudo_atomic_atomic(context)))) {
408
409         /* There may be no pending handler, because it was only a gc
410          * that had to be executed or because pseudo atomic triggered
411          * twice for a single interrupt. For the interested reader,
412          * that may happen if an interrupt hits after the interrupted
413          * flag is cleared but before pseduo-atomic is set and a
414          * pseudo atomic is interrupted in that interrupt. */
415         if (data->pending_handler) {
416
417             /* If we're here as the result of a pseudo-atomic as opposed
418              * to WITHOUT-INTERRUPTS, then INTERRUPT_PENDING is already
419              * NIL, because maybe_defer_handler sets
420              * PSEUDO_ATOMIC_INTERRUPTED only if interrupts are enabled.*/
421             SetSymbolValue(INTERRUPT_PENDING, NIL,thread);
422
423 #ifndef LISP_FEATURE_WIN32
424             /* restore the saved signal mask from the original signal (the
425              * one that interrupted us during the critical section) into the
426              * os_context for the signal we're currently in the handler for.
427              * This should ensure that when we return from the handler the
428              * blocked signals are unblocked */
429             sigcopyset(os_context_sigmask_addr(context), &data->pending_mask);
430
431             sigemptyset(&data->pending_mask);
432 #endif
433             /* This will break on sparc linux: the deferred handler really wants
434              * to be called with a void_context */
435             run_deferred_handler(data,(void *)context);
436         }
437     }
438 }
439 \f
440 /*
441  * the two main signal handlers:
442  *   interrupt_handle_now(..)
443  *   maybe_now_maybe_later(..)
444  *
445  * to which we have added interrupt_handle_now_handler(..).  Why?
446  * Well, mostly because the SPARC/Linux platform doesn't quite do
447  * signals the way we want them done.  The third argument in the
448  * handler isn't filled in by the kernel properly, so we fix it up
449  * ourselves in the arch_os_get_context(..) function; however, we only
450  * want to do this when we first hit the handler, and not when
451  * interrupt_handle_now(..) is being called from some other handler
452  * (when the fixup will already have been done). -- CSR, 2002-07-23
453  */
454
455 void
456 interrupt_handle_now(int signal, siginfo_t *info, void *void_context)
457 {
458     os_context_t *context = (os_context_t*)void_context;
459 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
460     boolean were_in_lisp;
461 #endif
462     union interrupt_handler handler;
463
464     check_blockables_blocked_or_lose();
465
466
467 #ifndef LISP_FEATURE_WIN32
468     if (sigismember(&deferrable_sigset,signal))
469         check_interrupts_enabled_or_lose(context);
470 #endif
471
472 #if defined(LISP_FEATURE_LINUX) || defined(RESTORE_FP_CONTROL_FROM_CONTEXT)
473     /* Under Linux on some architectures, we appear to have to restore
474        the FPU control word from the context, as after the signal is
475        delivered we appear to have a null FPU control word. */
476     os_restore_fp_control(context);
477 #endif
478
479
480     handler = interrupt_handlers[signal];
481
482     if (ARE_SAME_HANDLER(handler.c, SIG_IGN)) {
483         return;
484     }
485
486 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
487     were_in_lisp = !foreign_function_call_active;
488     if (were_in_lisp)
489 #endif
490     {
491         fake_foreign_function_call(context);
492     }
493
494     FSHOW_SIGNAL((stderr,
495                   "/entering interrupt_handle_now(%d, info, context)\n",
496                   signal));
497
498     if (ARE_SAME_HANDLER(handler.c, SIG_DFL)) {
499
500         /* This can happen if someone tries to ignore or default one
501          * of the signals we need for runtime support, and the runtime
502          * support decides to pass on it. */
503         lose("no handler for signal %d in interrupt_handle_now(..)\n", signal);
504
505     } else if (lowtag_of(handler.lisp) == FUN_POINTER_LOWTAG) {
506         /* Once we've decided what to do about contexts in a
507          * return-elsewhere world (the original context will no longer
508          * be available; should we copy it or was nobody using it anyway?)
509          * then we should convert this to return-elsewhere */
510
511         /* CMUCL comment said "Allocate the SAPs while the interrupts
512          * are still disabled.".  I (dan, 2003.08.21) assume this is
513          * because we're not in pseudoatomic and allocation shouldn't
514          * be interrupted.  In which case it's no longer an issue as
515          * all our allocation from C now goes through a PA wrapper,
516          * but still, doesn't hurt.
517          *
518          * Yeah, but non-gencgc platforms don't really wrap allocation
519          * in PA. MG - 2005-08-29  */
520
521         lispobj info_sap,context_sap = alloc_sap(context);
522         info_sap = alloc_sap(info);
523         /* Leave deferrable signals blocked, the handler itself will
524          * allow signals again when it sees fit. */
525 #ifdef LISP_FEATURE_SB_THREAD
526         {
527             sigset_t unblock;
528             sigemptyset(&unblock);
529             sigaddset(&unblock, SIG_STOP_FOR_GC);
530 #ifdef SIG_RESUME_FROM_GC
531             sigaddset(&unblock, SIG_RESUME_FROM_GC);
532 #endif
533             thread_sigmask(SIG_UNBLOCK, &unblock, 0);
534         }
535 #endif
536
537         FSHOW_SIGNAL((stderr,"/calling Lisp-level handler\n"));
538
539         funcall3(handler.lisp,
540                  make_fixnum(signal),
541                  info_sap,
542                  context_sap);
543     } else {
544
545         FSHOW_SIGNAL((stderr,"/calling C-level handler\n"));
546
547 #ifndef LISP_FEATURE_WIN32
548         /* Allow signals again. */
549         thread_sigmask(SIG_SETMASK, os_context_sigmask_addr(context), 0);
550 #endif
551
552         (*handler.c)(signal, info, void_context);
553     }
554
555 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
556     if (were_in_lisp)
557 #endif
558     {
559         undo_fake_foreign_function_call(context); /* block signals again */
560     }
561
562     FSHOW_SIGNAL((stderr,
563                   "/returning from interrupt_handle_now(%d, info, context)\n",
564                   signal));
565 }
566
567 /* This is called at the end of a critical section if the indications
568  * are that some signal was deferred during the section.  Note that as
569  * far as C or the kernel is concerned we dealt with the signal
570  * already; we're just doing the Lisp-level processing now that we
571  * put off then */
572 static void
573 run_deferred_handler(struct interrupt_data *data, void *v_context) {
574     /* The pending_handler may enable interrupts and then another
575      * interrupt may hit, overwrite interrupt_data, so reset the
576      * pending handler before calling it. Trust the handler to finish
577      * with the siginfo before enabling interrupts. */
578     void (*pending_handler) (int, siginfo_t*, void*)=data->pending_handler;
579     os_context_t *context = arch_os_get_context(&v_context);
580
581     data->pending_handler=0;
582     (*pending_handler)(data->pending_signal,&(data->pending_info), v_context);
583 }
584
585 #ifndef LISP_FEATURE_WIN32
586 boolean
587 maybe_defer_handler(void *handler, struct interrupt_data *data,
588                     int signal, siginfo_t *info, os_context_t *context)
589 {
590     struct thread *thread=arch_os_get_current_thread();
591
592     check_blockables_blocked_or_lose();
593
594     if (SymbolValue(INTERRUPT_PENDING,thread) != NIL)
595         lose("interrupt already pending\n");
596     /* If interrupts are disabled then INTERRUPT_PENDING is set and
597      * not PSEDUO_ATOMIC_INTERRUPTED. This is important for a pseudo
598      * atomic section inside a WITHOUT-INTERRUPTS.
599      */
600     if (SymbolValue(INTERRUPTS_ENABLED,thread) == NIL) {
601         store_signal_data_for_later(data,handler,signal,info,context);
602         SetSymbolValue(INTERRUPT_PENDING, T,thread);
603         FSHOW_SIGNAL((stderr,
604                       "/maybe_defer_handler(%x,%d),thread=%lu: deferred\n",
605                       (unsigned int)handler,signal,
606                       (unsigned long)thread->os_thread));
607         return 1;
608     }
609     /* a slightly confusing test.  arch_pseudo_atomic_atomic() doesn't
610      * actually use its argument for anything on x86, so this branch
611      * may succeed even when context is null (gencgc alloc()) */
612     if (
613 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
614         /* FIXME: this foreign_function_call_active test is dubious at
615          * best. If a foreign call is made in a pseudo atomic section
616          * (?) or more likely a pseudo atomic section is in a foreign
617          * call then an interrupt is executed immediately. Maybe it
618          * has to do with C code not maintaining pseudo atomic
619          * properly. MG - 2005-08-10 */
620         (!foreign_function_call_active) &&
621 #endif
622         arch_pseudo_atomic_atomic(context)) {
623         store_signal_data_for_later(data,handler,signal,info,context);
624         arch_set_pseudo_atomic_interrupted(context);
625         FSHOW_SIGNAL((stderr,
626                       "/maybe_defer_handler(%x,%d),thread=%lu: deferred(PA)\n",
627                       (unsigned int)handler,signal,
628                       (unsigned long)thread->os_thread));
629         return 1;
630     }
631     FSHOW_SIGNAL((stderr,
632                   "/maybe_defer_handler(%x,%d),thread=%lu: not deferred\n",
633                   (unsigned int)handler,signal,
634                   (unsigned long)thread->os_thread));
635     return 0;
636 }
637
638 static void
639 store_signal_data_for_later (struct interrupt_data *data, void *handler,
640                              int signal,
641                              siginfo_t *info, os_context_t *context)
642 {
643     if (data->pending_handler)
644         lose("tried to overwrite pending interrupt handler %x with %x\n",
645              data->pending_handler, handler);
646     if (!handler)
647         lose("tried to defer null interrupt handler\n");
648     data->pending_handler = handler;
649     data->pending_signal = signal;
650     if(info)
651         memcpy(&(data->pending_info), info, sizeof(siginfo_t));
652
653     FSHOW_SIGNAL((stderr, "/store_signal_data_for_later: signal: %d\n", signal));
654
655     if(context) {
656         /* the signal mask in the context (from before we were
657          * interrupted) is copied to be restored when
658          * run_deferred_handler happens.  Then the usually-blocked
659          * signals are added to the mask in the context so that we are
660          * running with blocked signals when the handler returns */
661         sigcopyset(&(data->pending_mask),os_context_sigmask_addr(context));
662         sigaddset_deferrable(os_context_sigmask_addr(context));
663     }
664 }
665
666 static void
667 maybe_now_maybe_later(int signal, siginfo_t *info, void *void_context)
668 {
669     os_context_t *context = arch_os_get_context(&void_context);
670
671     struct thread *thread;
672     struct interrupt_data *data;
673
674     thread=arch_os_get_current_thread();
675     data=thread->interrupt_data;
676
677 #if defined(LISP_FEATURE_LINUX) || defined(RESTORE_FP_CONTROL_FROM_CONTEXT)
678     os_restore_fp_control(context);
679 #endif
680
681     if(maybe_defer_handler(interrupt_handle_now,data,signal,info,context))
682         return;
683     interrupt_handle_now(signal, info, context);
684 #ifdef LISP_FEATURE_DARWIN
685     /* Work around G5 bug */
686     DARWIN_FIX_CONTEXT(context);
687 #endif
688 }
689
690 static void
691 low_level_interrupt_handle_now(int signal, siginfo_t *info, void *void_context)
692 {
693     os_context_t *context = (os_context_t*)void_context;
694
695 #if defined(LISP_FEATURE_LINUX) || defined(RESTORE_FP_CONTROL_FROM_CONTEXT)
696     os_restore_fp_control(context);
697 #endif
698
699     check_blockables_blocked_or_lose();
700     check_interrupts_enabled_or_lose(context);
701     interrupt_low_level_handlers[signal](signal, info, void_context);
702 #ifdef LISP_FEATURE_DARWIN
703     /* Work around G5 bug */
704     DARWIN_FIX_CONTEXT(context);
705 #endif
706 }
707
708 static void
709 low_level_maybe_now_maybe_later(int signal, siginfo_t *info, void *void_context)
710 {
711     os_context_t *context = arch_os_get_context(&void_context);
712     struct thread *thread;
713     struct interrupt_data *data;
714
715     thread=arch_os_get_current_thread();
716     data=thread->interrupt_data;
717
718 #if defined(LISP_FEATURE_LINUX) || defined(RESTORE_FP_CONTROL_FROM_CONTEXT)
719     os_restore_fp_control(context);
720 #endif
721
722     if(maybe_defer_handler(low_level_interrupt_handle_now,data,
723                            signal,info,context))
724         return;
725     low_level_interrupt_handle_now(signal, info, context);
726 #ifdef LISP_FEATURE_DARWIN
727     /* Work around G5 bug */
728     DARWIN_FIX_CONTEXT(context);
729 #endif
730 }
731 #endif
732
733 #ifdef LISP_FEATURE_SB_THREAD
734
735 void
736 sig_stop_for_gc_handler(int signal, siginfo_t *info, void *void_context)
737 {
738     os_context_t *context = arch_os_get_context(&void_context);
739
740     struct thread *thread=arch_os_get_current_thread();
741     sigset_t ss;
742
743    if ((arch_pseudo_atomic_atomic(context) ||
744          SymbolValue(GC_INHIBIT,thread) != NIL)) {
745         SetSymbolValue(STOP_FOR_GC_PENDING,T,thread);
746         if (SymbolValue(GC_INHIBIT,thread) == NIL)
747             arch_set_pseudo_atomic_interrupted(context);
748         FSHOW_SIGNAL((stderr,"thread=%lu sig_stop_for_gc deferred\n",
749                       thread->os_thread));
750     } else {
751         /* need the context stored so it can have registers scavenged */
752         fake_foreign_function_call(context);
753
754         sigfillset(&ss); /* Block everything. */
755         thread_sigmask(SIG_BLOCK,&ss,0);
756
757         if(thread->state!=STATE_RUNNING) {
758             lose("sig_stop_for_gc_handler: wrong thread state: %ld\n",
759                  fixnum_value(thread->state));
760         }
761         thread->state=STATE_SUSPENDED;
762         FSHOW_SIGNAL((stderr,"thread=%lu suspended\n",thread->os_thread));
763
764 #if defined(SIG_RESUME_FROM_GC)
765         sigemptyset(&ss); sigaddset(&ss,SIG_RESUME_FROM_GC);
766 #else
767         sigemptyset(&ss); sigaddset(&ss,SIG_STOP_FOR_GC);
768 #endif
769
770         /* It is possible to get SIGCONT (and probably other
771          * non-blockable signals) here. */
772 #ifdef SIG_RESUME_FROM_GC
773         {
774             int sigret;
775             do { sigwait(&ss, &sigret); }
776             while (sigret != SIG_RESUME_FROM_GC);
777         }
778 #else
779         while (sigwaitinfo(&ss,0) != SIG_STOP_FOR_GC);
780 #endif
781
782         FSHOW_SIGNAL((stderr,"thread=%lu resumed\n",thread->os_thread));
783         if(thread->state!=STATE_RUNNING) {
784             lose("sig_stop_for_gc_handler: wrong thread state on wakeup: %ld\n",
785                  fixnum_value(thread->state));
786         }
787
788         undo_fake_foreign_function_call(context);
789     }
790 }
791 #endif
792
793 void
794 interrupt_handle_now_handler(int signal, siginfo_t *info, void *void_context)
795 {
796     os_context_t *context = arch_os_get_context(&void_context);
797     interrupt_handle_now(signal, info, context);
798 #ifdef LISP_FEATURE_DARWIN
799     DARWIN_FIX_CONTEXT(context);
800 #endif
801 }
802
803 /*
804  * stuff to detect and handle hitting the GC trigger
805  */
806
807 #ifndef LISP_FEATURE_GENCGC
808 /* since GENCGC has its own way to record trigger */
809 static boolean
810 gc_trigger_hit(int signal, siginfo_t *info, os_context_t *context)
811 {
812     if (current_auto_gc_trigger == NULL)
813         return 0;
814     else{
815         void *badaddr=arch_get_bad_addr(signal,info,context);
816         return (badaddr >= (void *)current_auto_gc_trigger &&
817                 badaddr <((void *)current_dynamic_space + DYNAMIC_SPACE_SIZE));
818     }
819 }
820 #endif
821
822 /* manipulate the signal context and stack such that when the handler
823  * returns, it will call function instead of whatever it was doing
824  * previously
825  */
826
827 #if (defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64))
828 extern int *context_eflags_addr(os_context_t *context);
829 #endif
830
831 extern lispobj call_into_lisp(lispobj fun, lispobj *args, int nargs);
832 extern void post_signal_tramp(void);
833 extern void call_into_lisp_tramp(void);
834 void
835 arrange_return_to_lisp_function(os_context_t *context, lispobj function)
836 {
837 #if !(defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64))
838     void * fun=native_pointer(function);
839     void *code = &(((struct simple_fun *) fun)->code);
840 #endif
841
842     /* Build a stack frame showing `interrupted' so that the
843      * user's backtrace makes (as much) sense (as usual) */
844
845     /* FIXME: what about restoring fp state? */
846     /* FIXME: what about restoring errno? */
847 #ifdef LISP_FEATURE_X86
848     /* Suppose the existence of some function that saved all
849      * registers, called call_into_lisp, then restored GP registers and
850      * returned.  It would look something like this:
851
852      push   ebp
853      mov    ebp esp
854      pushfl
855      pushal
856      push   $0
857      push   $0
858      pushl  {address of function to call}
859      call   0x8058db0 <call_into_lisp>
860      addl   $12,%esp
861      popal
862      popfl
863      leave
864      ret
865
866      * What we do here is set up the stack that call_into_lisp would
867      * expect to see if it had been called by this code, and frob the
868      * signal context so that signal return goes directly to call_into_lisp,
869      * and when that function (and the lisp function it invoked) returns,
870      * it returns to the second half of this imaginary function which
871      * restores all registers and returns to C
872
873      * For this to work, the latter part of the imaginary function
874      * must obviously exist in reality.  That would be post_signal_tramp
875      */
876
877     u32 *sp=(u32 *)*os_context_register_addr(context,reg_ESP);
878
879 #if defined(LISP_FEATURE_DARWIN)
880     u32 *register_save_area = (u32 *)os_validate(0, 0x40);
881
882     FSHOW_SIGNAL((stderr, "/arrange_return_to_lisp_function: preparing to go to function %x, sp: %x\n", function, sp));
883     FSHOW_SIGNAL((stderr, "/arrange_return_to_lisp_function: context: %x, &context %x\n", context, &context));
884
885     /* 1. os_validate (malloc/mmap) register_save_block
886      * 2. copy register state into register_save_block
887      * 3. put a pointer to register_save_block in a register in the context
888      * 4. set the context's EIP to point to a trampoline which:
889      *    a. builds the fake stack frame from the block
890      *    b. frees the block
891      *    c. calls the function
892      */
893
894     *register_save_area = *os_context_pc_addr(context);
895     *(register_save_area + 1) = function;
896     *(register_save_area + 2) = *os_context_register_addr(context,reg_EDI);
897     *(register_save_area + 3) = *os_context_register_addr(context,reg_ESI);
898     *(register_save_area + 4) = *os_context_register_addr(context,reg_EDX);
899     *(register_save_area + 5) = *os_context_register_addr(context,reg_ECX);
900     *(register_save_area + 6) = *os_context_register_addr(context,reg_EBX);
901     *(register_save_area + 7) = *os_context_register_addr(context,reg_EAX);
902     *(register_save_area + 8) = *context_eflags_addr(context);
903
904     *os_context_pc_addr(context) = call_into_lisp_tramp;
905     *os_context_register_addr(context,reg_ECX) = register_save_area;
906 #else
907
908     /* return address for call_into_lisp: */
909     *(sp-15) = (u32)post_signal_tramp;
910     *(sp-14) = function;        /* args for call_into_lisp : function*/
911     *(sp-13) = 0;               /*                           arg array */
912     *(sp-12) = 0;               /*                           no. args */
913     /* this order matches that used in POPAD */
914     *(sp-11)=*os_context_register_addr(context,reg_EDI);
915     *(sp-10)=*os_context_register_addr(context,reg_ESI);
916
917     *(sp-9)=*os_context_register_addr(context,reg_ESP)-8;
918     /* POPAD ignores the value of ESP:  */
919     *(sp-8)=0;
920     *(sp-7)=*os_context_register_addr(context,reg_EBX);
921
922     *(sp-6)=*os_context_register_addr(context,reg_EDX);
923     *(sp-5)=*os_context_register_addr(context,reg_ECX);
924     *(sp-4)=*os_context_register_addr(context,reg_EAX);
925     *(sp-3)=*context_eflags_addr(context);
926     *(sp-2)=*os_context_register_addr(context,reg_EBP);
927     *(sp-1)=*os_context_pc_addr(context);
928
929 #endif
930
931 #elif defined(LISP_FEATURE_X86_64)
932     u64 *sp=(u64 *)*os_context_register_addr(context,reg_RSP);
933     /* return address for call_into_lisp: */
934     *(sp-18) = (u64)post_signal_tramp;
935
936     *(sp-17)=*os_context_register_addr(context,reg_R15);
937     *(sp-16)=*os_context_register_addr(context,reg_R14);
938     *(sp-15)=*os_context_register_addr(context,reg_R13);
939     *(sp-14)=*os_context_register_addr(context,reg_R12);
940     *(sp-13)=*os_context_register_addr(context,reg_R11);
941     *(sp-12)=*os_context_register_addr(context,reg_R10);
942     *(sp-11)=*os_context_register_addr(context,reg_R9);
943     *(sp-10)=*os_context_register_addr(context,reg_R8);
944     *(sp-9)=*os_context_register_addr(context,reg_RDI);
945     *(sp-8)=*os_context_register_addr(context,reg_RSI);
946     /* skip RBP and RSP */
947     *(sp-7)=*os_context_register_addr(context,reg_RBX);
948     *(sp-6)=*os_context_register_addr(context,reg_RDX);
949     *(sp-5)=*os_context_register_addr(context,reg_RCX);
950     *(sp-4)=*os_context_register_addr(context,reg_RAX);
951     *(sp-3)=*context_eflags_addr(context);
952     *(sp-2)=*os_context_register_addr(context,reg_RBP);
953     *(sp-1)=*os_context_pc_addr(context);
954
955     *os_context_register_addr(context,reg_RDI) =
956         (os_context_register_t)function; /* function */
957     *os_context_register_addr(context,reg_RSI) = 0;        /* arg. array */
958     *os_context_register_addr(context,reg_RDX) = 0;        /* no. args */
959 #else
960     struct thread *th=arch_os_get_current_thread();
961     build_fake_control_stack_frames(th,context);
962 #endif
963
964 #ifdef LISP_FEATURE_X86
965
966 #if !defined(LISP_FEATURE_DARWIN)
967     *os_context_pc_addr(context) = (os_context_register_t)call_into_lisp;
968     *os_context_register_addr(context,reg_ECX) = 0;
969     *os_context_register_addr(context,reg_EBP) = (os_context_register_t)(sp-2);
970 #ifdef __NetBSD__
971     *os_context_register_addr(context,reg_UESP) =
972         (os_context_register_t)(sp-15);
973 #else
974     *os_context_register_addr(context,reg_ESP) = (os_context_register_t)(sp-15);
975 #endif /* __NETBSD__ */
976 #endif /* LISP_FEATURE_DARWIN */
977
978 #elif defined(LISP_FEATURE_X86_64)
979     *os_context_pc_addr(context) = (os_context_register_t)call_into_lisp;
980     *os_context_register_addr(context,reg_RCX) = 0;
981     *os_context_register_addr(context,reg_RBP) = (os_context_register_t)(sp-2);
982     *os_context_register_addr(context,reg_RSP) = (os_context_register_t)(sp-18);
983 #else
984     /* this much of the calling convention is common to all
985        non-x86 ports */
986     *os_context_pc_addr(context) = (os_context_register_t)(unsigned long)code;
987     *os_context_register_addr(context,reg_NARGS) = 0;
988     *os_context_register_addr(context,reg_LIP) =
989         (os_context_register_t)(unsigned long)code;
990     *os_context_register_addr(context,reg_CFP) =
991         (os_context_register_t)(unsigned long)current_control_frame_pointer;
992 #endif
993 #ifdef ARCH_HAS_NPC_REGISTER
994     *os_context_npc_addr(context) =
995         4 + *os_context_pc_addr(context);
996 #endif
997 #ifdef LISP_FEATURE_SPARC
998     *os_context_register_addr(context,reg_CODE) =
999         (os_context_register_t)(fun + FUN_POINTER_LOWTAG);
1000 #endif
1001 }
1002
1003 #ifdef LISP_FEATURE_SB_THREAD
1004
1005 /* FIXME: this function can go away when all lisp handlers are invoked
1006  * via arrange_return_to_lisp_function. */
1007 void
1008 interrupt_thread_handler(int num, siginfo_t *info, void *v_context)
1009 {
1010     os_context_t *context = (os_context_t*)arch_os_get_context(&v_context);
1011
1012     /* let the handler enable interrupts again when it sees fit */
1013     sigaddset_deferrable(os_context_sigmask_addr(context));
1014     arrange_return_to_lisp_function(context, SymbolFunction(RUN_INTERRUPTION));
1015 }
1016
1017 #endif
1018
1019 /* KLUDGE: Theoretically the approach we use for undefined alien
1020  * variables should work for functions as well, but on PPC/Darwin
1021  * we get bus error at bogus addresses instead, hence this workaround,
1022  * that has the added benefit of automatically discriminating between
1023  * functions and variables.
1024  */
1025 void
1026 undefined_alien_function() {
1027     funcall0(SymbolFunction(UNDEFINED_ALIEN_FUNCTION_ERROR));
1028 }
1029
1030 boolean
1031 handle_guard_page_triggered(os_context_t *context,os_vm_address_t addr)
1032 {
1033     struct thread *th=arch_os_get_current_thread();
1034
1035     /* note the os_context hackery here.  When the signal handler returns,
1036      * it won't go back to what it was doing ... */
1037     if(addr >= CONTROL_STACK_GUARD_PAGE(th) &&
1038        addr < CONTROL_STACK_GUARD_PAGE(th) + os_vm_page_size) {
1039         /* We hit the end of the control stack: disable guard page
1040          * protection so the error handler has some headroom, protect the
1041          * previous page so that we can catch returns from the guard page
1042          * and restore it. */
1043         protect_control_stack_guard_page(0);
1044         protect_control_stack_return_guard_page(1);
1045
1046         arrange_return_to_lisp_function
1047             (context, SymbolFunction(CONTROL_STACK_EXHAUSTED_ERROR));
1048         return 1;
1049     }
1050     else if(addr >= CONTROL_STACK_RETURN_GUARD_PAGE(th) &&
1051             addr < CONTROL_STACK_RETURN_GUARD_PAGE(th) + os_vm_page_size) {
1052         /* We're returning from the guard page: reprotect it, and
1053          * unprotect this one. This works even if we somehow missed
1054          * the return-guard-page, and hit it on our way to new
1055          * exhaustion instead. */
1056         protect_control_stack_guard_page(1);
1057         protect_control_stack_return_guard_page(0);
1058         return 1;
1059     }
1060     else if (addr >= undefined_alien_address &&
1061              addr < undefined_alien_address + os_vm_page_size) {
1062         arrange_return_to_lisp_function
1063           (context, SymbolFunction(UNDEFINED_ALIEN_VARIABLE_ERROR));
1064         return 1;
1065     }
1066     else return 0;
1067 }
1068
1069 #ifndef LISP_FEATURE_GENCGC
1070 /* This function gets called from the SIGSEGV (for e.g. Linux, NetBSD, &
1071  * OpenBSD) or SIGBUS (for e.g. FreeBSD) handler. Here we check
1072  * whether the signal was due to treading on the mprotect()ed zone -
1073  * and if so, arrange for a GC to happen. */
1074 extern unsigned long bytes_consed_between_gcs; /* gc-common.c */
1075
1076 boolean
1077 interrupt_maybe_gc(int signal, siginfo_t *info, void *void_context)
1078 {
1079     os_context_t *context=(os_context_t *) void_context;
1080
1081     if(!foreign_function_call_active && gc_trigger_hit(signal, info, context)){
1082         struct thread *thread=arch_os_get_current_thread();
1083         clear_auto_gc_trigger();
1084         /* Don't flood the system with interrupts if the need to gc is
1085          * already noted. This can happen for example when SUB-GC
1086          * allocates or after a gc triggered in a WITHOUT-GCING. */
1087         if (SymbolValue(GC_PENDING,thread) == NIL) {
1088             if (SymbolValue(GC_INHIBIT,thread) == NIL) {
1089                 if (arch_pseudo_atomic_atomic(context)) {
1090                     /* set things up so that GC happens when we finish
1091                      * the PA section */
1092                     SetSymbolValue(GC_PENDING,T,thread);
1093                     arch_set_pseudo_atomic_interrupted(context);
1094                 } else {
1095                     interrupt_maybe_gc_int(signal,info,void_context);
1096                 }
1097             } else {
1098                 SetSymbolValue(GC_PENDING,T,thread);
1099             }
1100         }
1101         return 1;
1102     }
1103     return 0;
1104 }
1105
1106 #endif
1107
1108 /* this is also used by gencgc, in alloc() */
1109 boolean
1110 interrupt_maybe_gc_int(int signal, siginfo_t *info, void *void_context)
1111 {
1112     os_context_t *context=(os_context_t *) void_context;
1113 #ifndef LISP_FEATURE_WIN32
1114     struct thread *thread=arch_os_get_current_thread();
1115 #endif
1116
1117     fake_foreign_function_call(context);
1118
1119     /* SUB-GC may return without GCing if *GC-INHIBIT* is set, in
1120      * which case we will be running with no gc trigger barrier
1121      * thing for a while.  But it shouldn't be long until the end
1122      * of WITHOUT-GCING.
1123      *
1124      * FIXME: It would be good to protect the end of dynamic space
1125      * and signal a storage condition from there.
1126      */
1127
1128     /* Restore the signal mask from the interrupted context before
1129      * calling into Lisp if interrupts are enabled. Why not always?
1130      *
1131      * Suppose there is a WITHOUT-INTERRUPTS block far, far out. If an
1132      * interrupt hits while in SUB-GC, it is deferred and the
1133      * os_context_sigmask of that interrupt is set to block further
1134      * deferrable interrupts (until the first one is
1135      * handled). Unfortunately, that context refers to this place and
1136      * when we return from here the signals will not be blocked.
1137      *
1138      * A kludgy alternative is to propagate the sigmask change to the
1139      * outer context.
1140      */
1141 #ifndef LISP_FEATURE_WIN32
1142     if(SymbolValue(INTERRUPTS_ENABLED,thread)!=NIL)
1143         thread_sigmask(SIG_SETMASK, os_context_sigmask_addr(context), 0);
1144 #ifdef LISP_FEATURE_SB_THREAD
1145     else {
1146         sigset_t new;
1147         sigemptyset(&new);
1148 #if defined(SIG_RESUME_FROM_GC)
1149         sigaddset(&new,SIG_RESUME_FROM_GC);
1150 #endif
1151         sigaddset(&new,SIG_STOP_FOR_GC);
1152         thread_sigmask(SIG_UNBLOCK,&new,0);
1153     }
1154 #endif
1155 #endif
1156     funcall0(SymbolFunction(SUB_GC));
1157
1158     undo_fake_foreign_function_call(context);
1159     return 1;
1160 }
1161
1162 \f
1163 /*
1164  * noise to install handlers
1165  */
1166
1167 #ifndef LISP_FEATURE_WIN32
1168 /* In Linux 2.4 synchronous signals (sigtrap & co) can be delivered if
1169  * they are blocked, in Linux 2.6 the default handler is invoked
1170  * instead that usually coredumps. One might hastily think that adding
1171  * SA_NODEFER helps, but until ~2.6.13 if SA_NODEFER is specified then
1172  * the whole sa_mask is ignored and instead of not adding the signal
1173  * in question to the mask. That means if it's not blockable the
1174  * signal must be unblocked at the beginning of signal handlers.
1175  *
1176  * It turns out that NetBSD's SA_NODEFER doesn't DTRT in a different
1177  * way: if SA_NODEFER is set and the signal is in sa_mask, the signal
1178  * will be unblocked in the sigmask during the signal handler.  -- RMK
1179  * X-mas day, 2005
1180  */
1181 static volatile int sigaction_nodefer_works = -1;
1182
1183 #define SA_NODEFER_TEST_BLOCK_SIGNAL SIGABRT
1184 #define SA_NODEFER_TEST_KILL_SIGNAL SIGUSR1
1185
1186 static void
1187 sigaction_nodefer_test_handler(int signal, siginfo_t *info, void *void_context)
1188 {
1189     sigset_t empty, current;
1190     int i;
1191     sigemptyset(&empty);
1192     thread_sigmask(SIG_BLOCK, &empty, &current);
1193     /* There should be exactly two blocked signals: the two we added
1194      * to sa_mask when setting up the handler.  NetBSD doesn't block
1195      * the signal we're handling when SA_NODEFER is set; Linux before
1196      * 2.6.13 or so also doesn't block the other signal when
1197      * SA_NODEFER is set. */
1198     for(i = 1; i < NSIG; i++)
1199         if (sigismember(&current, i) !=
1200             (((i == SA_NODEFER_TEST_BLOCK_SIGNAL) || (i == signal)) ? 1 : 0)) {
1201             FSHOW_SIGNAL((stderr, "SA_NODEFER doesn't work, signal %d\n", i));
1202             sigaction_nodefer_works = 0;
1203         }
1204     if (sigaction_nodefer_works == -1)
1205         sigaction_nodefer_works = 1;
1206 }
1207
1208 static void
1209 see_if_sigaction_nodefer_works()
1210 {
1211     struct sigaction sa, old_sa;
1212
1213     sa.sa_flags = SA_SIGINFO | SA_NODEFER;
1214     sa.sa_sigaction = sigaction_nodefer_test_handler;
1215     sigemptyset(&sa.sa_mask);
1216     sigaddset(&sa.sa_mask, SA_NODEFER_TEST_BLOCK_SIGNAL);
1217     sigaddset(&sa.sa_mask, SA_NODEFER_TEST_KILL_SIGNAL);
1218     sigaction(SA_NODEFER_TEST_KILL_SIGNAL, &sa, &old_sa);
1219     /* Make sure no signals are blocked. */
1220     {
1221         sigset_t empty;
1222         sigemptyset(&empty);
1223         thread_sigmask(SIG_SETMASK, &empty, 0);
1224     }
1225     kill(getpid(), SA_NODEFER_TEST_KILL_SIGNAL);
1226     while (sigaction_nodefer_works == -1);
1227     sigaction(SA_NODEFER_TEST_KILL_SIGNAL, &old_sa, NULL);
1228 }
1229
1230 #undef SA_NODEFER_TEST_BLOCK_SIGNAL
1231 #undef SA_NODEFER_TEST_KILL_SIGNAL
1232
1233 static void
1234 unblock_me_trampoline(int signal, siginfo_t *info, void *void_context)
1235 {
1236     sigset_t unblock;
1237
1238     sigemptyset(&unblock);
1239     sigaddset(&unblock, signal);
1240     thread_sigmask(SIG_UNBLOCK, &unblock, 0);
1241     interrupt_handle_now_handler(signal, info, void_context);
1242 }
1243
1244 static void
1245 low_level_unblock_me_trampoline(int signal, siginfo_t *info, void *void_context)
1246 {
1247     sigset_t unblock;
1248
1249     sigemptyset(&unblock);
1250     sigaddset(&unblock, signal);
1251     thread_sigmask(SIG_UNBLOCK, &unblock, 0);
1252     (*interrupt_low_level_handlers[signal])(signal, info, void_context);
1253 }
1254
1255 void
1256 undoably_install_low_level_interrupt_handler (int signal,
1257                                               void handler(int,
1258                                                            siginfo_t*,
1259                                                            void*))
1260 {
1261     struct sigaction sa;
1262
1263     if (0 > signal || signal >= NSIG) {
1264         lose("bad signal number %d\n", signal);
1265     }
1266
1267     if (ARE_SAME_HANDLER(handler, SIG_DFL))
1268         sa.sa_sigaction = handler;
1269     else if (sigismember(&deferrable_sigset,signal))
1270         sa.sa_sigaction = low_level_maybe_now_maybe_later;
1271     /* The use of a trampoline appears to break the
1272        arch_os_get_context() workaround for SPARC/Linux.  For now,
1273        don't use the trampoline (and so be vulnerable to the problems
1274        that SA_NODEFER is meant to solve. */
1275 #if !(defined(LISP_FEATURE_SPARC) && defined(LISP_FEATURE_LINUX))
1276     else if (!sigaction_nodefer_works &&
1277              !sigismember(&blockable_sigset, signal))
1278         sa.sa_sigaction = low_level_unblock_me_trampoline;
1279 #endif
1280     else
1281         sa.sa_sigaction = handler;
1282
1283     sigcopyset(&sa.sa_mask, &blockable_sigset);
1284     sa.sa_flags = SA_SIGINFO | SA_RESTART
1285         | (sigaction_nodefer_works ? SA_NODEFER : 0);
1286 #ifdef LISP_FEATURE_C_STACK_IS_CONTROL_STACK
1287     if((signal==SIG_MEMORY_FAULT)
1288 #ifdef SIG_MEMORY_FAULT2
1289        || (signal==SIG_MEMORY_FAULT2)
1290 #endif
1291 #ifdef SIG_INTERRUPT_THREAD
1292        || (signal==SIG_INTERRUPT_THREAD)
1293 #endif
1294        )
1295         sa.sa_flags |= SA_ONSTACK;
1296 #endif
1297
1298     sigaction(signal, &sa, NULL);
1299     interrupt_low_level_handlers[signal] =
1300         (ARE_SAME_HANDLER(handler, SIG_DFL) ? 0 : handler);
1301 }
1302 #endif
1303
1304 /* This is called from Lisp. */
1305 unsigned long
1306 install_handler(int signal, void handler(int, siginfo_t*, void*))
1307 {
1308 #ifndef LISP_FEATURE_WIN32
1309     struct sigaction sa;
1310     sigset_t old, new;
1311     union interrupt_handler oldhandler;
1312
1313     FSHOW((stderr, "/entering POSIX install_handler(%d, ..)\n", signal));
1314
1315     sigemptyset(&new);
1316     sigaddset(&new, signal);
1317     thread_sigmask(SIG_BLOCK, &new, &old);
1318
1319     FSHOW((stderr, "/interrupt_low_level_handlers[signal]=%x\n",
1320            (unsigned int)interrupt_low_level_handlers[signal]));
1321     if (interrupt_low_level_handlers[signal]==0) {
1322         if (ARE_SAME_HANDLER(handler, SIG_DFL) ||
1323             ARE_SAME_HANDLER(handler, SIG_IGN))
1324             sa.sa_sigaction = handler;
1325         else if (sigismember(&deferrable_sigset, signal))
1326             sa.sa_sigaction = maybe_now_maybe_later;
1327         else if (!sigaction_nodefer_works &&
1328                  !sigismember(&blockable_sigset, signal))
1329             sa.sa_sigaction = unblock_me_trampoline;
1330         else
1331             sa.sa_sigaction = interrupt_handle_now_handler;
1332
1333         sigcopyset(&sa.sa_mask, &blockable_sigset);
1334         sa.sa_flags = SA_SIGINFO | SA_RESTART |
1335             (sigaction_nodefer_works ? SA_NODEFER : 0);
1336         sigaction(signal, &sa, NULL);
1337     }
1338
1339     oldhandler = interrupt_handlers[signal];
1340     interrupt_handlers[signal].c = handler;
1341
1342     thread_sigmask(SIG_SETMASK, &old, 0);
1343
1344     FSHOW((stderr, "/leaving POSIX install_handler(%d, ..)\n", signal));
1345
1346     return (unsigned long)oldhandler.lisp;
1347 #else
1348     /* Probably-wrong Win32 hack */
1349     return 0;
1350 #endif
1351 }
1352
1353 void
1354 interrupt_init()
1355 {
1356 #ifndef LISP_FEATURE_WIN32
1357     int i;
1358     SHOW("entering interrupt_init()");
1359     see_if_sigaction_nodefer_works();
1360     sigemptyset(&deferrable_sigset);
1361     sigemptyset(&blockable_sigset);
1362     sigaddset_deferrable(&deferrable_sigset);
1363     sigaddset_blockable(&blockable_sigset);
1364
1365     /* Set up high level handler information. */
1366     for (i = 0; i < NSIG; i++) {
1367         interrupt_handlers[i].c =
1368             /* (The cast here blasts away the distinction between
1369              * SA_SIGACTION-style three-argument handlers and
1370              * signal(..)-style one-argument handlers, which is OK
1371              * because it works to call the 1-argument form where the
1372              * 3-argument form is expected.) */
1373             (void (*)(int, siginfo_t*, void*))SIG_DFL;
1374     }
1375
1376     SHOW("returning from interrupt_init()");
1377 #endif
1378 }