blob: db152263484f0f6e97092d741ed15c7079afdc3e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/m32r/kernel/signal.c
3 *
4 * Copyright (c) 2003 Hitoshi Yamamoto
5 *
6 * Taken from i386 version.
7 * Copyright (C) 1991, 1992 Linus Torvalds
8 *
9 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
10 * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/sched.h>
14#include <linux/mm.h>
15#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
17#include <linux/signal.h>
18#include <linux/errno.h>
19#include <linux/wait.h>
20#include <linux/unistd.h>
21#include <linux/stddef.h>
22#include <linux/personality.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080023#include <linux/freezer.h>
David Howells733e5e42009-09-09 08:30:21 +010024#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/cacheflush.h>
26#include <asm/ucontext.h>
27#include <asm/uaccess.h>
28
29#define DEBUG_SIG 0
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031asmlinkage int
32sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
33 unsigned long r2, unsigned long r3, unsigned long r4,
Hirokazu Takata6ced13c2006-02-24 13:03:51 -080034 unsigned long r5, unsigned long r6, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Hirokazu Takata6ced13c2006-02-24 13:03:51 -080036 return do_sigaltstack(uss, uoss, regs->spu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
39
40/*
41 * Do a signal return; undo the signal stack.
42 */
43
44struct rt_sigframe
45{
46 int sig;
Al Viro870e75a2006-10-11 17:24:45 +010047 struct siginfo __user *pinfo;
48 void __user *puc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct siginfo info;
50 struct ucontext uc;
51// struct _fpstate fpstate;
52};
53
54static int
55restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
56 int *r0_p)
57{
58 unsigned int err = 0;
59
60 /* Always make any pending restarted system calls return -EINTR */
61 current_thread_info()->restart_block.fn = do_no_restart_syscall;
62
63#define COPY(x) err |= __get_user(regs->x, &sc->sc_##x)
64 COPY(r4);
65 COPY(r5);
66 COPY(r6);
67 COPY(pt_regs);
68 /* COPY(r0); Skip r0 */
69 COPY(r1);
70 COPY(r2);
71 COPY(r3);
72 COPY(r7);
73 COPY(r8);
74 COPY(r9);
75 COPY(r10);
76 COPY(r11);
77 COPY(r12);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 COPY(acc0h);
79 COPY(acc0l);
Hirokazu Takata9674dcf2007-02-10 01:43:35 -080080 COPY(acc1h); /* ISA_DSP_LEVEL2 only */
81 COPY(acc1l); /* ISA_DSP_LEVEL2 only */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 COPY(psw);
83 COPY(bpc);
84 COPY(bbpsw);
85 COPY(bbpc);
86 COPY(spu);
87 COPY(fp);
88 COPY(lr);
89 COPY(spi);
90#undef COPY
91
92 regs->syscall_nr = -1; /* disable syscall checks */
93 err |= __get_user(*r0_p, &sc->sc_r0);
94
95 return err;
96}
97
98asmlinkage int
99sys_rt_sigreturn(unsigned long r0, unsigned long r1,
100 unsigned long r2, unsigned long r3, unsigned long r4,
Hirokazu Takata6ced13c2006-02-24 13:03:51 -0800101 unsigned long r5, unsigned long r6, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Hirokazu Takata6ced13c2006-02-24 13:03:51 -0800103 struct rt_sigframe __user *frame = (struct rt_sigframe __user *)regs->spu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 sigset_t set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int result;
106
107 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
108 goto badframe;
109 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
110 goto badframe;
111
112 sigdelsetmask(&set, ~_BLOCKABLE);
113 spin_lock_irq(&current->sighand->siglock);
114 current->blocked = set;
115 recalc_sigpending();
116 spin_unlock_irq(&current->sighand->siglock);
117
Hirokazu Takata6ced13c2006-02-24 13:03:51 -0800118 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &result))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 goto badframe;
120
Hirokazu Takata6ced13c2006-02-24 13:03:51 -0800121 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->spu) == -EFAULT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 goto badframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 return result;
125
126badframe:
127 force_sig(SIGSEGV, current);
128 return 0;
129}
130
131/*
132 * Set up a signal frame.
133 */
134
135static int
136setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
137 unsigned long mask)
138{
139 int err = 0;
140
141#define COPY(x) err |= __put_user(regs->x, &sc->sc_##x)
142 COPY(r4);
143 COPY(r5);
144 COPY(r6);
145 COPY(pt_regs);
146 COPY(r0);
147 COPY(r1);
148 COPY(r2);
149 COPY(r3);
150 COPY(r7);
151 COPY(r8);
152 COPY(r9);
153 COPY(r10);
154 COPY(r11);
155 COPY(r12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 COPY(acc0h);
157 COPY(acc0l);
Hirokazu Takata9674dcf2007-02-10 01:43:35 -0800158 COPY(acc1h); /* ISA_DSP_LEVEL2 only */
159 COPY(acc1l); /* ISA_DSP_LEVEL2 only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 COPY(psw);
161 COPY(bpc);
162 COPY(bbpsw);
163 COPY(bbpc);
164 COPY(spu);
165 COPY(fp);
166 COPY(lr);
167 COPY(spi);
168#undef COPY
169
170 err |= __put_user(mask, &sc->oldmask);
171
172 return err;
173}
174
175/*
176 * Determine which stack to use..
177 */
178static inline void __user *
179get_sigframe(struct k_sigaction *ka, unsigned long sp, size_t frame_size)
180{
181 /* This is the X/Open sanctioned signal stack switching. */
182 if (ka->sa.sa_flags & SA_ONSTACK) {
183 if (sas_ss_flags(sp) == 0)
184 sp = current->sas_ss_sp + current->sas_ss_size;
185 }
186
187 return (void __user *)((sp - frame_size) & -8ul);
188}
189
190static void setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
191 sigset_t *set, struct pt_regs *regs)
192{
193 struct rt_sigframe __user *frame;
194 int err = 0;
195 int signal;
196
197 frame = get_sigframe(ka, regs->spu, sizeof(*frame));
198
199 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
200 goto give_sigsegv;
201
202 signal = current_thread_info()->exec_domain
203 && current_thread_info()->exec_domain->signal_invmap
204 && sig < 32
205 ? current_thread_info()->exec_domain->signal_invmap[sig]
206 : sig;
207
208 err |= __put_user(signal, &frame->sig);
209 if (err)
210 goto give_sigsegv;
211
212 err |= __put_user(&frame->info, &frame->pinfo);
213 err |= __put_user(&frame->uc, &frame->puc);
214 err |= copy_siginfo_to_user(&frame->info, info);
215 if (err)
216 goto give_sigsegv;
217
218 /* Create the ucontext. */
219 err |= __put_user(0, &frame->uc.uc_flags);
220 err |= __put_user(0, &frame->uc.uc_link);
221 err |= __put_user(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
222 err |= __put_user(sas_ss_flags(regs->spu),
223 &frame->uc.uc_stack.ss_flags);
224 err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
225 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0]);
226 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
227 if (err)
228 goto give_sigsegv;
229
230 /* Set up to return from userspace. */
231 regs->lr = (unsigned long)ka->sa.sa_restorer;
232
233 /* Set up registers for signal handler */
234 regs->spu = (unsigned long)frame;
235 regs->r0 = signal; /* Arg for signal handler */
236 regs->r1 = (unsigned long)&frame->info;
237 regs->r2 = (unsigned long)&frame->uc;
238 regs->bpc = (unsigned long)ka->sa.sa_handler;
239
240 set_fs(USER_DS);
241
242#if DEBUG_SIG
243 printk("SIG deliver (%s:%d): sp=%p pc=%p\n",
244 current->comm, current->pid, frame, regs->pc);
245#endif
246
247 return;
248
249give_sigsegv:
250 force_sigsegv(sig, current);
251}
252
253/*
254 * OK, we're invoking a handler
255 */
256
257static void
258handle_signal(unsigned long sig, struct k_sigaction *ka, siginfo_t *info,
259 sigset_t *oldset, struct pt_regs *regs)
260{
261 unsigned short inst;
262
263 /* Are we from a system call? */
264 if (regs->syscall_nr >= 0) {
265 /* If so, check system call restarting.. */
266 switch (regs->r0) {
267 case -ERESTART_RESTARTBLOCK:
268 case -ERESTARTNOHAND:
269 regs->r0 = -EINTR;
270 break;
271
272 case -ERESTARTSYS:
273 if (!(ka->sa.sa_flags & SA_RESTART)) {
274 regs->r0 = -EINTR;
275 break;
276 }
277 /* fallthrough */
278 case -ERESTARTNOINTR:
279 regs->r0 = regs->orig_r0;
280 inst = *(unsigned short *)(regs->bpc - 2);
281 if ((inst & 0xfff0) == 0x10f0) /* trap ? */
282 regs->bpc -= 2;
283 else
284 regs->bpc -= 4;
Al Viroa7481022010-09-24 06:22:30 +0100285 regs->syscall_nr = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287 }
288
289 /* Set up the stack frame */
290 setup_rt_frame(sig, ka, info, oldset, regs);
291
Steven Rostedt69be8f12005-08-29 11:44:09 -0400292 spin_lock_irq(&current->sighand->siglock);
293 sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);
294 if (!(ka->sa.sa_flags & SA_NODEFER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 sigaddset(&current->blocked,sig);
Steven Rostedt69be8f12005-08-29 11:44:09 -0400296 recalc_sigpending();
297 spin_unlock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300/*
301 * Note that 'init' is a special process: it doesn't get signals it doesn't
302 * want to handle. Thus you cannot kill init even with a SIGKILL even by
303 * mistake.
304 */
Al Viroa7f83882010-09-24 06:20:35 +0100305static int do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 siginfo_t info;
308 int signr;
309 struct k_sigaction ka;
310 unsigned short inst;
Al Viroa7f83882010-09-24 06:20:35 +0100311 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 /*
314 * We want the common case to go fast, which
315 * is why we may in certain cases get here from
316 * kernel mode. Just return without doing anything
317 * if so.
318 */
319 if (!user_mode(regs))
320 return 1;
321
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700322 if (try_to_freeze())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 goto no_signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Al Viroa7f83882010-09-24 06:20:35 +0100325 if (test_thread_flag(TIF_RESTORE_SIGMASK))
326 oldset = &current->saved_sigmask;
327 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 oldset = &current->blocked;
329
330 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
331 if (signr > 0) {
Simon Arlott5aa8b6c2007-10-20 01:14:39 +0200332 /* Re-enable any watchpoints before delivering the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 * signal to user space. The processor register will
334 * have been cleared if the watchpoint triggered
335 * inside the kernel.
336 */
337
338 /* Whee! Actually deliver the signal. */
339 handle_signal(signr, &ka, &info, oldset, regs);
Al Viroa7f83882010-09-24 06:20:35 +0100340 clear_thread_flag(TIF_RESTORE_SIGMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return 1;
342 }
343
344 no_signal:
345 /* Did we come from a system call? */
346 if (regs->syscall_nr >= 0) {
347 /* Restart the system call - no handlers present */
348 if (regs->r0 == -ERESTARTNOHAND ||
349 regs->r0 == -ERESTARTSYS ||
350 regs->r0 == -ERESTARTNOINTR) {
351 regs->r0 = regs->orig_r0;
352 inst = *(unsigned short *)(regs->bpc - 2);
353 if ((inst & 0xfff0) == 0x10f0) /* trap ? */
354 regs->bpc -= 2;
355 else
356 regs->bpc -= 4;
Al Viroa7481022010-09-24 06:22:30 +0100357 regs->syscall_nr = -1;
358 } else if (regs->r0 == -ERESTART_RESTARTBLOCK){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 regs->r0 = regs->orig_r0;
360 regs->r7 = __NR_restart_syscall;
361 inst = *(unsigned short *)(regs->bpc - 2);
362 if ((inst & 0xfff0) == 0x10f0) /* trap ? */
363 regs->bpc -= 2;
364 else
365 regs->bpc -= 4;
Al Viroa7481022010-09-24 06:22:30 +0100366 regs->syscall_nr = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368 }
Al Viroa7f83882010-09-24 06:20:35 +0100369 if (test_thread_flag(TIF_RESTORE_SIGMASK)) {
370 clear_thread_flag(TIF_RESTORE_SIGMASK);
371 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return 0;
374}
375
376/*
377 * notification of userspace execution resumption
378 * - triggered by current->work.notify_resume
379 */
Al Viroa7f83882010-09-24 06:20:35 +0100380void do_notify_resume(struct pt_regs *regs, __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 /* Pending single-step? */
383 if (thread_info_flags & _TIF_SINGLESTEP)
384 clear_thread_flag(TIF_SINGLESTEP);
385
386 /* deal with pending signal delivery */
387 if (thread_info_flags & _TIF_SIGPENDING)
Al Viroa7f83882010-09-24 06:20:35 +0100388 do_signal(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
David Howellsd0420c82009-09-02 09:14:16 +0100390 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
391 clear_thread_flag(TIF_NOTIFY_RESUME);
392 tracehook_notify_resume(regs);
David Howellsee18d642009-09-02 09:14:21 +0100393 if (current->replacement_session_keyring)
394 key_replace_session_keyring();
David Howellsd0420c82009-09-02 09:14:16 +0100395 }
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 clear_thread_flag(TIF_IRET);
398}