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