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