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