uml: remove code made redundant by CHOOSE_MODE removal
[linux-2.6] / arch / um / os-Linux / signal.c
1 /*
2  * Copyright (C) 2004 PathScale, Inc
3  * Licensed under the GPL
4  */
5
6 #include <signal.h>
7 #include <stdio.h>
8 #include <unistd.h>
9 #include <stdlib.h>
10 #include <errno.h>
11 #include <stdarg.h>
12 #include <string.h>
13 #include <sys/mman.h>
14 #include "user.h"
15 #include "signal_kern.h"
16 #include "sysdep/sigcontext.h"
17 #include "sysdep/barrier.h"
18 #include "sigcontext.h"
19 #include "os.h"
20
21 /* These are the asynchronous signals.  SIGVTALRM and SIGARLM are handled
22  * together under SIGVTALRM_BIT.  SIGPROF is excluded because we want to
23  * be able to profile all of UML, not just the non-critical sections.  If
24  * profiling is not thread-safe, then that is not my problem.  We can disable
25  * profiling when SMP is enabled in that case.
26  */
27 #define SIGIO_BIT 0
28 #define SIGIO_MASK (1 << SIGIO_BIT)
29
30 #define SIGVTALRM_BIT 1
31 #define SIGVTALRM_MASK (1 << SIGVTALRM_BIT)
32
33 #define SIGALRM_BIT 2
34 #define SIGALRM_MASK (1 << SIGALRM_BIT)
35
36 /* These are used by both the signal handlers and
37  * block/unblock_signals.  I don't want modifications cached in a
38  * register - they must go straight to memory.
39  */
40 static volatile int signals_enabled = 1;
41 static volatile int pending = 0;
42
43 void sig_handler(int sig, struct sigcontext *sc)
44 {
45         int enabled;
46
47         enabled = signals_enabled;
48         if(!enabled && (sig == SIGIO)){
49                 pending |= SIGIO_MASK;
50                 return;
51         }
52
53         block_signals();
54
55         sig_handler_common_skas(sig, sc);
56
57         set_signals(enabled);
58 }
59
60 static void real_alarm_handler(int sig, struct sigcontext *sc)
61 {
62         struct uml_pt_regs regs;
63
64         if(sig == SIGALRM)
65                 switch_timers(0);
66
67         if(sc != NULL)
68                 copy_sc(&regs, sc);
69         regs.is_user = 0;
70         unblock_signals();
71         timer_handler(sig, &regs);
72
73         if(sig == SIGALRM)
74                 switch_timers(1);
75 }
76
77 void alarm_handler(int sig, struct sigcontext *sc)
78 {
79         int enabled;
80
81         enabled = signals_enabled;
82         if(!signals_enabled){
83                 if(sig == SIGVTALRM)
84                         pending |= SIGVTALRM_MASK;
85                 else pending |= SIGALRM_MASK;
86
87                 return;
88         }
89
90         block_signals();
91
92         real_alarm_handler(sig, sc);
93         set_signals(enabled);
94 }
95
96 void set_sigstack(void *sig_stack, int size)
97 {
98         stack_t stack = ((stack_t) { .ss_flags  = 0,
99                                      .ss_sp     = (__ptr_t) sig_stack,
100                                      .ss_size   = size - sizeof(void *) });
101
102         if(sigaltstack(&stack, NULL) != 0)
103                 panic("enabling signal stack failed, errno = %d\n", errno);
104 }
105
106 void remove_sigstack(void)
107 {
108         stack_t stack = ((stack_t) { .ss_flags  = SS_DISABLE,
109                                      .ss_sp     = NULL,
110                                      .ss_size   = 0 });
111
112         if(sigaltstack(&stack, NULL) != 0)
113                 panic("disabling signal stack failed, errno = %d\n", errno);
114 }
115
116 void (*handlers[_NSIG])(int sig, struct sigcontext *sc);
117
118 void handle_signal(int sig, struct sigcontext *sc)
119 {
120         unsigned long pending = 1UL << sig;
121
122         do {
123                 int nested, bail;
124
125                 /*
126                  * pending comes back with one bit set for each
127                  * interrupt that arrived while setting up the stack,
128                  * plus a bit for this interrupt, plus the zero bit is
129                  * set if this is a nested interrupt.
130                  * If bail is true, then we interrupted another
131                  * handler setting up the stack.  In this case, we
132                  * have to return, and the upper handler will deal
133                  * with this interrupt.
134                  */
135                 bail = to_irq_stack(&pending);
136                 if(bail)
137                         return;
138
139                 nested = pending & 1;
140                 pending &= ~1;
141
142                 while((sig = ffs(pending)) != 0){
143                         sig--;
144                         pending &= ~(1 << sig);
145                         (*handlers[sig])(sig, sc);
146                 }
147
148                 /* Again, pending comes back with a mask of signals
149                  * that arrived while tearing down the stack.  If this
150                  * is non-zero, we just go back, set up the stack
151                  * again, and handle the new interrupts.
152                  */
153                 if(!nested)
154                         pending = from_irq_stack(nested);
155         } while(pending);
156 }
157
158 extern void hard_handler(int sig);
159
160 void set_handler(int sig, void (*handler)(int), int flags, ...)
161 {
162         struct sigaction action;
163         va_list ap;
164         sigset_t sig_mask;
165         int mask;
166
167         handlers[sig] = (void (*)(int, struct sigcontext *)) handler;
168         action.sa_handler = hard_handler;
169
170         sigemptyset(&action.sa_mask);
171
172         va_start(ap, flags);
173         while((mask = va_arg(ap, int)) != -1)
174                 sigaddset(&action.sa_mask, mask);
175         va_end(ap);
176
177         action.sa_flags = flags;
178         action.sa_restorer = NULL;
179         if(sigaction(sig, &action, NULL) < 0)
180                 panic("sigaction failed - errno = %d\n", errno);
181
182         sigemptyset(&sig_mask);
183         sigaddset(&sig_mask, sig);
184         if(sigprocmask(SIG_UNBLOCK, &sig_mask, NULL) < 0)
185                 panic("sigprocmask failed - errno = %d\n", errno);
186 }
187
188 int change_sig(int signal, int on)
189 {
190         sigset_t sigset, old;
191
192         sigemptyset(&sigset);
193         sigaddset(&sigset, signal);
194         sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, &old);
195         return(!sigismember(&old, signal));
196 }
197
198 void block_signals(void)
199 {
200         signals_enabled = 0;
201         /* This must return with signals disabled, so this barrier
202          * ensures that writes are flushed out before the return.
203          * This might matter if gcc figures out how to inline this and
204          * decides to shuffle this code into the caller.
205          */
206         mb();
207 }
208
209 void unblock_signals(void)
210 {
211         int save_pending;
212
213         if(signals_enabled == 1)
214                 return;
215
216         /* We loop because the IRQ handler returns with interrupts off.  So,
217          * interrupts may have arrived and we need to re-enable them and
218          * recheck pending.
219          */
220         while(1){
221                 /* Save and reset save_pending after enabling signals.  This
222                  * way, pending won't be changed while we're reading it.
223                  */
224                 signals_enabled = 1;
225
226                 /* Setting signals_enabled and reading pending must
227                  * happen in this order.
228                  */
229                 mb();
230
231                 save_pending = pending;
232                 if(save_pending == 0){
233                         /* This must return with signals enabled, so
234                          * this barrier ensures that writes are
235                          * flushed out before the return.  This might
236                          * matter if gcc figures out how to inline
237                          * this (unlikely, given its size) and decides
238                          * to shuffle this code into the caller.
239                          */
240                         mb();
241                         return;
242                 }
243
244                 pending = 0;
245
246                 /* We have pending interrupts, so disable signals, as the
247                  * handlers expect them off when they are called.  They will
248                  * be enabled again above.
249                  */
250
251                 signals_enabled = 0;
252
253                 /* Deal with SIGIO first because the alarm handler might
254                  * schedule, leaving the pending SIGIO stranded until we come
255                  * back here.
256                  */
257                 if(save_pending & SIGIO_MASK)
258                         sig_handler_common_skas(SIGIO, NULL);
259
260                 if(save_pending & SIGALRM_MASK)
261                         real_alarm_handler(SIGALRM, NULL);
262
263                 if(save_pending & SIGVTALRM_MASK)
264                         real_alarm_handler(SIGVTALRM, NULL);
265         }
266 }
267
268 int get_signals(void)
269 {
270         return signals_enabled;
271 }
272
273 int set_signals(int enable)
274 {
275         int ret;
276         if(signals_enabled == enable)
277                 return enable;
278
279         ret = signals_enabled;
280         if(enable)
281                 unblock_signals();
282         else block_signals();
283
284         return ret;
285 }