0.9.12.10:
[sbcl.git] / doc / internals / signals.texinfo
1 @node Signal handling
2 @comment  node-name,  next,  previous,  up
3 @chapter Signal handling
4
5 @menu
6 * Groups of signals::           
7 * The deferral mechanism::      
8 * Implementation warts::        
9 * Programming with signal handling in mind::  
10 @end menu
11
12 @node Groups of signals
13 @section Groups of signals
14
15 There are two distinct groups of signals.
16
17 @subsection Semi-synchronous signals
18
19 The first group, tentatively named ``semi-synchronous'', consists of
20 signals that are raised on illegal instruction, hitting a protected
21 page, or on a trap. Examples from this group are:
22 @code{SIGBUS}/@code{SIGSEGV}, @code{SIGTRAP}, @code{SIGILL} and
23 @code{SIGEMT}. The exact meaning and function of these signals varies
24 by platform and OS. Understandably, because these signals are raised
25 in a controllable manner they are never blocked or deferred.
26
27 @subsection Blockable signals
28
29 The other group is of blockable signals. Typically, signal handlers
30 block them to protect against being interrupted at all. For example
31 @code{SIGHUP}, @code{SIGINT}, @code{SIGQUIT} belong to this group.
32
33 With the exception of @code{SIG_STOP_FOR_GC} all blockable signals are
34 deferrable.
35
36 @node The deferral mechanism
37 @section The deferral mechanism
38
39 @subsection Pseudo atomic sections
40
41 Some operations, such as allocation, consist of several steps and
42 temporarily break for instance gc invariants. Interrupting said
43 operations is therefore dangerous to one's health. Blocking the
44 signals for each allocation is out of question as the overhead of the
45 two @code{sigsetmask} system calls would be enormous. Instead, pseudo
46 atomic sections are implemented with a simple flag.
47
48 When a deferrable signal is delivered to a thread within a pseudo
49 atomic section the pseudo-atomic-interrupted flag is set, the signal
50 and its context are stored, and all deferrable signals blocked. This
51 is to guarantee that there is at most one pending handler in
52 SBCL. While the signals are blocked, the responsibilty of keeping
53 track of other pending signals lies with the OS.
54
55 On leaving the pseudo atomic section, the pending handler is run and
56 the signals are unblocked.
57
58 @subsection @code{WITHOUT-INTERRUPTS}
59
60 Similar to pseudo atomic, @code{WITHOUT-INTERRUPTS} defers deferrable
61 signals in its thread until the end of its body, provided it is not
62 nested in another @code{WITHOUT-INTERRUPTS}.
63
64 Not so frequently used as pseudo atomic, @code{WITHOUT-INTERRUPTS}
65 benefits less from the deferral mechanism.
66
67 @subsection Stop the world
68
69 Something of a special case, a signal that is blockable but not
70 deferrable by @code{WITHOUT-INTERRUPTS} is @code{SIG_STOP_FOR_GC}. It
71 is deferred by pseudo atomic and @code{WITHOUT-GCING}.
72
73 @node Implementation warts
74 @section Implementation warts
75
76 @subsection RT signals
77
78 Sending and receiving the same number of signals is crucial for
79 @code{INTERRUPT-THREAD} and @code{sig_stop_for_gc}, hence they are
80 real-time signals for which the kernel maintains a queue as opposed to
81 just setting a flag for ``sigint pending''.
82
83 Note, however, that the rt signal queue is finite and on current linux
84 kernels a system wide resource. If the queue is full, SBCL tries to
85 signal until it succeeds. This behaviour can lead to deadlocks, if a
86 thread in a @code{WITHOUT-INTERRUPTS} is interrupted many times,
87 filling up the queue and then a gc hits and tries to send
88 @code{SIG_STOP_FOR_GC}.
89
90 @subsection Miscellaneous issues
91
92 Signal handlers should automatically restore errno and fp
93 state. Currently, this is not the case.
94
95 Furthormore, while @code{arrange_return_to_lisp_function} exits, most
96 signal handlers invoke unsafe functions without hesitation: gc and all
97 lisp level handlers think nothing of it.
98
99 @node Programming with signal handling in mind
100 @section Programming with signal handling in mind
101
102 @subsection On reentrancy
103
104 Since they might be invoked in the middle of just about anything,
105 signal handlers must invoke only reentrant functions or async signal
106 safe functions to be more precise. Functions passed to
107 @code{INTERRUPT-THREAD} have the same restrictions and considerations
108 as signal handlers.
109
110 Destructive modification, and holding mutexes to protect desctructive
111 modifications from interfering with each other are often the cause of
112 non-reentrancy. Recursive locks are not likely to help, and while
113 @code{WITHOUT-INTERRUPTS} is, it is considered untrendy to litter the
114 code with it.
115
116 Some basic functionality, such as streams and the debugger are
117 intended to be reentrant, but not much effort has been spent on
118 verifying it.
119
120 @subsection More deadlocks
121
122 If functions A and B directly or indirectly lock mutexes M and N, they
123 should do so in the same order to avoid deadlocks.
124
125 A less trivial scenario is where there is only one lock involved but
126 it is acquired in a @code{WITHOUT-GCING} in thread A, and outside of
127 @code{WITHOUT-GCING} in thread B. If thread A has entered
128 @code{WITHOUT-GCING} but thread B has the lock when the gc hits, then
129 A cannot leave @code{WITHOUT-GCING} because it is waiting for the lock
130 the already suspended thread B has. From this scenario one can easily
131 derive the rule: in a @code{WITHOUT-GCING} form (or pseudo atomic for
132 that matter) never wait for another thread that's not in
133 @code{WITHOUT-GCING}.
134
135 @subsection Calling user code
136
137 For the reasons above, calling user code, i.e. functions passed in, or
138 in other words code that one cannot reason about, from non-reentrant
139 code (holding locks), @code{WITHOUT-INTERRUPTS}, @code{WITHOUT-GCING}
140 is dangerous and best avoided.