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