blob: 7bbe38645ed5559395f85c5b5fce93eb3f4992e3 [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
Al Viroa05c4e12010-09-24 06:23:57 +0100190static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 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
Al Viroa05c4e12010-09-24 06:23:57 +0100247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249give_sigsegv:
250 force_sigsegv(sig, current);
Al Viroa05c4e12010-09-24 06:23:57 +0100251 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
Al Virobb9c8612010-09-24 06:24:53 +0100254static int prev_insn(struct pt_regs *regs)
255{
256 u16 inst;
257 if (get_user(&inst, (u16 __user *)(regs->bpc - 2)))
258 return -EFAULT;
259 if ((inst & 0xfff0) == 0x10f0) /* trap ? */
260 regs->bpc -= 2;
261 else
262 regs->bpc -= 4;
263 regs->syscall_nr = -1;
264 return 0;
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/*
268 * OK, we're invoking a handler
269 */
270
Al Viroa05c4e12010-09-24 06:23:57 +0100271static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272handle_signal(unsigned long sig, struct k_sigaction *ka, siginfo_t *info,
273 sigset_t *oldset, struct pt_regs *regs)
274{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* Are we from a system call? */
276 if (regs->syscall_nr >= 0) {
277 /* If so, check system call restarting.. */
278 switch (regs->r0) {
279 case -ERESTART_RESTARTBLOCK:
280 case -ERESTARTNOHAND:
281 regs->r0 = -EINTR;
282 break;
283
284 case -ERESTARTSYS:
285 if (!(ka->sa.sa_flags & SA_RESTART)) {
286 regs->r0 = -EINTR;
287 break;
288 }
289 /* fallthrough */
290 case -ERESTARTNOINTR:
291 regs->r0 = regs->orig_r0;
Al Virobb9c8612010-09-24 06:24:53 +0100292 if (prev_insn(regs) < 0)
293 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295 }
296
297 /* Set up the stack frame */
Al Viroa05c4e12010-09-24 06:23:57 +0100298 if (setup_rt_frame(sig, ka, info, oldset, regs))
299 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Steven Rostedt69be8f12005-08-29 11:44:09 -0400301 spin_lock_irq(&current->sighand->siglock);
302 sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);
303 if (!(ka->sa.sa_flags & SA_NODEFER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 sigaddset(&current->blocked,sig);
Steven Rostedt69be8f12005-08-29 11:44:09 -0400305 recalc_sigpending();
306 spin_unlock_irq(&current->sighand->siglock);
Al Viroa05c4e12010-09-24 06:23:57 +0100307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
310/*
311 * Note that 'init' is a special process: it doesn't get signals it doesn't
312 * want to handle. Thus you cannot kill init even with a SIGKILL even by
313 * mistake.
314 */
Al Viroa05c4e12010-09-24 06:23:57 +0100315static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 siginfo_t info;
318 int signr;
319 struct k_sigaction ka;
Al Viroa7f83882010-09-24 06:20:35 +0100320 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /*
323 * We want the common case to go fast, which
324 * is why we may in certain cases get here from
325 * kernel mode. Just return without doing anything
326 * if so.
327 */
328 if (!user_mode(regs))
Al Viroa05c4e12010-09-24 06:23:57 +0100329 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700331 if (try_to_freeze())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 goto no_signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Al Viroa7f83882010-09-24 06:20:35 +0100334 if (test_thread_flag(TIF_RESTORE_SIGMASK))
335 oldset = &current->saved_sigmask;
336 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 oldset = &current->blocked;
338
339 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
340 if (signr > 0) {
Simon Arlott5aa8b6c2007-10-20 01:14:39 +0200341 /* Re-enable any watchpoints before delivering the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * signal to user space. The processor register will
343 * have been cleared if the watchpoint triggered
344 * inside the kernel.
345 */
346
347 /* Whee! Actually deliver the signal. */
Al Viroa05c4e12010-09-24 06:23:57 +0100348 if (handle_signal(signr, &ka, &info, oldset, regs) == 0)
349 clear_thread_flag(TIF_RESTORE_SIGMASK);
350
351 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353
354 no_signal:
355 /* Did we come from a system call? */
356 if (regs->syscall_nr >= 0) {
357 /* Restart the system call - no handlers present */
358 if (regs->r0 == -ERESTARTNOHAND ||
359 regs->r0 == -ERESTARTSYS ||
360 regs->r0 == -ERESTARTNOINTR) {
361 regs->r0 = regs->orig_r0;
Al Virobb9c8612010-09-24 06:24:53 +0100362 prev_insn(regs);
Al Viroa7481022010-09-24 06:22:30 +0100363 } else if (regs->r0 == -ERESTART_RESTARTBLOCK){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 regs->r0 = regs->orig_r0;
365 regs->r7 = __NR_restart_syscall;
Al Virobb9c8612010-09-24 06:24:53 +0100366 prev_insn(regs);
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}
374
375/*
376 * notification of userspace execution resumption
377 * - triggered by current->work.notify_resume
378 */
Al Viroa7f83882010-09-24 06:20:35 +0100379void do_notify_resume(struct pt_regs *regs, __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 /* Pending single-step? */
382 if (thread_info_flags & _TIF_SINGLESTEP)
383 clear_thread_flag(TIF_SINGLESTEP);
384
385 /* deal with pending signal delivery */
386 if (thread_info_flags & _TIF_SIGPENDING)
Al Viroa7f83882010-09-24 06:20:35 +0100387 do_signal(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
David Howellsd0420c82009-09-02 09:14:16 +0100389 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
390 clear_thread_flag(TIF_NOTIFY_RESUME);
391 tracehook_notify_resume(regs);
David Howellsee18d642009-09-02 09:14:21 +0100392 if (current->replacement_session_keyring)
393 key_replace_session_keyring();
David Howellsd0420c82009-09-02 09:14:16 +0100394 }
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 clear_thread_flag(TIF_IRET);
397}