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