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