blob: f8524003676ac99f06d0ebb297206dfab415edce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1991, 1992 Linus Torvalds
7 * Copyright (C) 1994 - 2000 Ralf Baechle
8 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
9 */
Ralf Baechle02416dc2005-06-15 13:00:12 +000010#include <linux/cache.h>
Ralf Baechle1f717922011-07-27 11:44:47 +010011#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/sched.h>
13#include <linux/mm.h>
14#include <linux/personality.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/ptrace.h>
21#include <linux/unistd.h>
22#include <linux/compiler.h>
Ralf Baechledbda6ac2009-02-08 16:00:26 +000023#include <linux/syscalls.h>
Atsushi Nemotofaea6232007-04-16 23:19:44 +090024#include <linux/uaccess.h>
David Howells733e5e42009-09-09 08:30:21 +010025#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Ralf Baechlee50c0a82005-05-31 11:49:19 +000027#include <asm/abi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/asm.h>
29#include <linux/bitops.h>
30#include <asm/cacheflush.h>
31#include <asm/fpu.h>
32#include <asm/sim.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/ucontext.h>
34#include <asm/cpu-features.h>
Ralf Baechle02416dc2005-06-15 13:00:12 +000035#include <asm/war.h>
David Daneyd814c282010-02-18 16:13:05 -080036#include <asm/vdso.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "signal-common.h"
39
Ralf Baechle137f6f32009-11-24 19:35:41 +000040static int (*save_fp_context)(struct sigcontext __user *sc);
41static int (*restore_fp_context)(struct sigcontext __user *sc);
42
43extern asmlinkage int _save_fp_context(struct sigcontext __user *sc);
44extern asmlinkage int _restore_fp_context(struct sigcontext __user *sc);
45
46extern asmlinkage int fpu_emulator_save_context(struct sigcontext __user *sc);
47extern asmlinkage int fpu_emulator_restore_context(struct sigcontext __user *sc);
48
Ralf Baechle66680582007-02-13 01:31:48 +000049struct sigframe {
50 u32 sf_ass[4]; /* argument save space for o32 */
David Daneyd814c282010-02-18 16:13:05 -080051 u32 sf_pad[2]; /* Was: signal trampoline */
Ralf Baechle66680582007-02-13 01:31:48 +000052 struct sigcontext sf_sc;
53 sigset_t sf_mask;
54};
55
Franck Bui-Huuc0b9bae2007-02-05 15:24:21 +010056struct rt_sigframe {
57 u32 rs_ass[4]; /* argument save space for o32 */
David Daneyd814c282010-02-18 16:13:05 -080058 u32 rs_pad[2]; /* Was: signal trampoline */
Franck Bui-Huuc0b9bae2007-02-05 15:24:21 +010059 struct siginfo rs_info;
60 struct ucontext rs_uc;
61};
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +010064 * Helper routines
65 */
Atsushi Nemotofaea6232007-04-16 23:19:44 +090066static int protected_save_fp_context(struct sigcontext __user *sc)
67{
68 int err;
69 while (1) {
70 lock_fpu_owner();
71 own_fpu_inatomic(1);
72 err = save_fp_context(sc); /* this might fail */
73 unlock_fpu_owner();
74 if (likely(!err))
75 break;
76 /* touch the sigcontext and try again */
77 err = __put_user(0, &sc->sc_fpregs[0]) |
78 __put_user(0, &sc->sc_fpregs[31]) |
79 __put_user(0, &sc->sc_fpc_csr);
80 if (err)
81 break; /* really bad sigcontext */
82 }
83 return err;
84}
85
86static int protected_restore_fp_context(struct sigcontext __user *sc)
87{
David Daneyc726b822011-01-24 14:51:34 -080088 int err, tmp __maybe_unused;
Atsushi Nemotofaea6232007-04-16 23:19:44 +090089 while (1) {
90 lock_fpu_owner();
91 own_fpu_inatomic(0);
92 err = restore_fp_context(sc); /* this might fail */
93 unlock_fpu_owner();
94 if (likely(!err))
95 break;
96 /* touch the sigcontext and try again */
97 err = __get_user(tmp, &sc->sc_fpregs[0]) |
98 __get_user(tmp, &sc->sc_fpregs[31]) |
99 __get_user(tmp, &sc->sc_fpc_csr);
100 if (err)
101 break; /* really bad sigcontext */
102 }
103 return err;
104}
105
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100106int setup_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
107{
108 int err = 0;
109 int i;
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900110 unsigned int used_math;
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100111
112 err |= __put_user(regs->cp0_epc, &sc->sc_pc);
113
114 err |= __put_user(0, &sc->sc_regs[0]);
115 for (i = 1; i < 32; i++)
116 err |= __put_user(regs->regs[i], &sc->sc_regs[i]);
117
Franck Bui-Huu9693a852007-02-02 17:41:47 +0100118#ifdef CONFIG_CPU_HAS_SMARTMIPS
119 err |= __put_user(regs->acx, &sc->sc_acx);
120#endif
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100121 err |= __put_user(regs->hi, &sc->sc_mdhi);
122 err |= __put_user(regs->lo, &sc->sc_mdlo);
123 if (cpu_has_dsp) {
124 err |= __put_user(mfhi1(), &sc->sc_hi1);
125 err |= __put_user(mflo1(), &sc->sc_lo1);
126 err |= __put_user(mfhi2(), &sc->sc_hi2);
127 err |= __put_user(mflo2(), &sc->sc_lo2);
128 err |= __put_user(mfhi3(), &sc->sc_hi3);
129 err |= __put_user(mflo3(), &sc->sc_lo3);
130 err |= __put_user(rddsp(DSP_MASK), &sc->sc_dsp);
131 }
132
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900133 used_math = !!used_math();
134 err |= __put_user(used_math, &sc->sc_used_math);
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100135
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900136 if (used_math) {
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100137 /*
138 * Save FPU state to signal context. Signal handler
139 * will "inherit" current FPU state.
140 */
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900141 err |= protected_save_fp_context(sc);
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100142 }
143 return err;
144}
145
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900146int fpcsr_pending(unsigned int __user *fpcsr)
147{
148 int err, sig = 0;
149 unsigned int csr, enabled;
150
151 err = __get_user(csr, fpcsr);
152 enabled = FPU_CSR_UNI_X | ((csr & FPU_CSR_ALL_E) << 5);
153 /*
154 * If the signal handler set some FPU exceptions, clear it and
155 * send SIGFPE.
156 */
157 if (csr & enabled) {
158 csr &= ~enabled;
159 err |= __put_user(csr, fpcsr);
160 sig = SIGFPE;
161 }
162 return err ?: sig;
163}
164
165static int
166check_and_restore_fp_context(struct sigcontext __user *sc)
167{
168 int err, sig;
169
170 err = sig = fpcsr_pending(&sc->sc_fpc_csr);
171 if (err > 0)
172 err = 0;
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900173 err |= protected_restore_fp_context(sc);
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900174 return err ?: sig;
175}
176
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100177int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
178{
179 unsigned int used_math;
180 unsigned long treg;
181 int err = 0;
182 int i;
183
184 /* Always make any pending restarted system calls return -EINTR */
185 current_thread_info()->restart_block.fn = do_no_restart_syscall;
186
187 err |= __get_user(regs->cp0_epc, &sc->sc_pc);
Franck Bui-Huu9693a852007-02-02 17:41:47 +0100188
189#ifdef CONFIG_CPU_HAS_SMARTMIPS
190 err |= __get_user(regs->acx, &sc->sc_acx);
191#endif
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100192 err |= __get_user(regs->hi, &sc->sc_mdhi);
193 err |= __get_user(regs->lo, &sc->sc_mdlo);
194 if (cpu_has_dsp) {
195 err |= __get_user(treg, &sc->sc_hi1); mthi1(treg);
196 err |= __get_user(treg, &sc->sc_lo1); mtlo1(treg);
197 err |= __get_user(treg, &sc->sc_hi2); mthi2(treg);
198 err |= __get_user(treg, &sc->sc_lo2); mtlo2(treg);
199 err |= __get_user(treg, &sc->sc_hi3); mthi3(treg);
200 err |= __get_user(treg, &sc->sc_lo3); mtlo3(treg);
201 err |= __get_user(treg, &sc->sc_dsp); wrdsp(treg, DSP_MASK);
202 }
203
204 for (i = 1; i < 32; i++)
205 err |= __get_user(regs->regs[i], &sc->sc_regs[i]);
206
207 err |= __get_user(used_math, &sc->sc_used_math);
208 conditional_used_math(used_math);
209
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900210 if (used_math) {
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100211 /* restore fpu context if we have used it before */
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900212 if (!err)
213 err = check_and_restore_fp_context(sc);
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100214 } else {
215 /* signal handler may have used FPU. Give it up. */
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900216 lose_fpu(0);
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100217 }
218
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100219 return err;
220}
221
222void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
223 size_t frame_size)
224{
225 unsigned long sp;
226
227 /* Default to using normal stack */
228 sp = regs->regs[29];
229
230 /*
231 * FPU emulator may have it's own trampoline active just
232 * above the user stack, 16-bytes before the next lowest
233 * 16 byte boundary. Try to avoid trashing it.
234 */
235 sp -= 32;
236
237 /* This is the X/Open sanctioned signal stack switching. */
238 if ((ka->sa.sa_flags & SA_ONSTACK) && (sas_ss_flags (sp) == 0))
239 sp = current->sas_ss_sp + current->sas_ss_size;
240
241 return (void __user *)((sp - frame_size) & (ICACHE_REFILLS_WORKAROUND_WAR ? ~(cpu_icache_line_size()-1) : ALMASK));
242}
243
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100244/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 * Atomically swap in the new signal mask, and wait for a signal.
246 */
247
248#ifdef CONFIG_TRAD_SIGNALS
Franck Bui-Huuf90080a2007-02-05 15:24:27 +0100249asmlinkage int sys_sigsuspend(nabi_no_regargs struct pt_regs regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000251 sigset_t newset;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000252 sigset_t __user *uset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Ralf Baechlefe00f942005-03-01 19:22:29 +0000254 uset = (sigset_t __user *) regs.regs[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (copy_from_user(&newset, uset, sizeof(sigset_t)))
256 return -EFAULT;
257 sigdelsetmask(&newset, ~_BLOCKABLE);
258
259 spin_lock_irq(&current->sighand->siglock);
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000260 current->saved_sigmask = current->blocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 current->blocked = newset;
262 recalc_sigpending();
263 spin_unlock_irq(&current->sighand->siglock);
264
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000265 current->state = TASK_INTERRUPTIBLE;
266 schedule();
267 set_thread_flag(TIF_RESTORE_SIGMASK);
268 return -ERESTARTNOHAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270#endif
271
Franck Bui-Huuf90080a2007-02-05 15:24:27 +0100272asmlinkage int sys_rt_sigsuspend(nabi_no_regargs struct pt_regs regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000274 sigset_t newset;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000275 sigset_t __user *unewset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 size_t sigsetsize;
277
278 /* XXX Don't preclude handling different sized sigset_t's. */
279 sigsetsize = regs.regs[5];
280 if (sigsetsize != sizeof(sigset_t))
281 return -EINVAL;
282
Ralf Baechlefe00f942005-03-01 19:22:29 +0000283 unewset = (sigset_t __user *) regs.regs[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (copy_from_user(&newset, unewset, sizeof(newset)))
285 return -EFAULT;
286 sigdelsetmask(&newset, ~_BLOCKABLE);
287
288 spin_lock_irq(&current->sighand->siglock);
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000289 current->saved_sigmask = current->blocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 current->blocked = newset;
Ralf Baechlee0daad42007-02-05 00:10:11 +0000291 recalc_sigpending();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 spin_unlock_irq(&current->sighand->siglock);
293
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000294 current->state = TASK_INTERRUPTIBLE;
295 schedule();
296 set_thread_flag(TIF_RESTORE_SIGMASK);
297 return -ERESTARTNOHAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300#ifdef CONFIG_TRAD_SIGNALS
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000301SYSCALL_DEFINE3(sigaction, int, sig, const struct sigaction __user *, act,
302 struct sigaction __user *, oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 struct k_sigaction new_ka, old_ka;
305 int ret;
306 int err = 0;
307
308 if (act) {
309 old_sigset_t mask;
310
311 if (!access_ok(VERIFY_READ, act, sizeof(*act)))
312 return -EFAULT;
313 err |= __get_user(new_ka.sa.sa_handler, &act->sa_handler);
314 err |= __get_user(new_ka.sa.sa_flags, &act->sa_flags);
315 err |= __get_user(mask, &act->sa_mask.sig[0]);
316 if (err)
317 return -EFAULT;
318
319 siginitset(&new_ka.sa.sa_mask, mask);
320 }
321
322 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
323
324 if (!ret && oact) {
325 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)))
Ralf Baechlee0daad42007-02-05 00:10:11 +0000326 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 err |= __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
328 err |= __put_user(old_ka.sa.sa_handler, &oact->sa_handler);
329 err |= __put_user(old_ka.sa.sa_mask.sig[0], oact->sa_mask.sig);
330 err |= __put_user(0, &oact->sa_mask.sig[1]);
331 err |= __put_user(0, &oact->sa_mask.sig[2]);
332 err |= __put_user(0, &oact->sa_mask.sig[3]);
333 if (err)
334 return -EFAULT;
335 }
336
337 return ret;
338}
339#endif
340
341asmlinkage int sys_sigaltstack(nabi_no_regargs struct pt_regs regs)
342{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000343 const stack_t __user *uss = (const stack_t __user *) regs.regs[4];
344 stack_t __user *uoss = (stack_t __user *) regs.regs[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 unsigned long usp = regs.regs[29];
346
347 return do_sigaltstack(uss, uoss, usp);
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#ifdef CONFIG_TRAD_SIGNALS
Franck Bui-Huuf90080a2007-02-05 15:24:27 +0100351asmlinkage void sys_sigreturn(nabi_no_regargs struct pt_regs regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900353 struct sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 sigset_t blocked;
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900355 int sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900357 frame = (struct sigframe __user *) regs.regs[29];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
359 goto badframe;
360 if (__copy_from_user(&blocked, &frame->sf_mask, sizeof(blocked)))
361 goto badframe;
362
363 sigdelsetmask(&blocked, ~_BLOCKABLE);
364 spin_lock_irq(&current->sighand->siglock);
365 current->blocked = blocked;
366 recalc_sigpending();
367 spin_unlock_irq(&current->sighand->siglock);
368
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900369 sig = restore_sigcontext(&regs, &frame->sf_sc);
370 if (sig < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 goto badframe;
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900372 else if (sig)
373 force_sig(sig, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /*
376 * Don't let your children do this ...
377 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 __asm__ __volatile__(
379 "move\t$29, %0\n\t"
380 "j\tsyscall_exit"
381 :/* no outputs */
382 :"r" (&regs));
383 /* Unreached */
384
385badframe:
386 force_sig(SIGSEGV, current);
387}
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000388#endif /* CONFIG_TRAD_SIGNALS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Franck Bui-Huuf90080a2007-02-05 15:24:27 +0100390asmlinkage void sys_rt_sigreturn(nabi_no_regargs struct pt_regs regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900392 struct rt_sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 sigset_t set;
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900394 int sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900396 frame = (struct rt_sigframe __user *) regs.regs[29];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
398 goto badframe;
399 if (__copy_from_user(&set, &frame->rs_uc.uc_sigmask, sizeof(set)))
400 goto badframe;
401
402 sigdelsetmask(&set, ~_BLOCKABLE);
403 spin_lock_irq(&current->sighand->siglock);
404 current->blocked = set;
405 recalc_sigpending();
406 spin_unlock_irq(&current->sighand->siglock);
407
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900408 sig = restore_sigcontext(&regs, &frame->rs_uc.uc_mcontext);
409 if (sig < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 goto badframe;
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900411 else if (sig)
412 force_sig(sig, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /* It is more difficult to avoid calling this function than to
415 call it and ignore errors. */
Al Viro4bfb8c52010-09-28 18:50:57 +0100416 do_sigaltstack(&frame->rs_uc.uc_stack, NULL, regs.regs[29]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /*
419 * Don't let your children do this ...
420 */
421 __asm__ __volatile__(
422 "move\t$29, %0\n\t"
423 "j\tsyscall_exit"
424 :/* no outputs */
425 :"r" (&regs));
426 /* Unreached */
427
428badframe:
429 force_sig(SIGSEGV, current);
430}
431
432#ifdef CONFIG_TRAD_SIGNALS
David Daneyd814c282010-02-18 16:13:05 -0800433static int setup_frame(void *sig_return, struct k_sigaction *ka,
434 struct pt_regs *regs, int signr, sigset_t *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900436 struct sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 int err = 0;
438
439 frame = get_sigframe(ka, regs, sizeof(*frame));
440 if (!access_ok(VERIFY_WRITE, frame, sizeof (*frame)))
441 goto give_sigsegv;
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 err |= setup_sigcontext(regs, &frame->sf_sc);
444 err |= __copy_to_user(&frame->sf_mask, set, sizeof(*set));
445 if (err)
446 goto give_sigsegv;
447
448 /*
449 * Arguments to signal handler:
450 *
451 * a0 = signal number
452 * a1 = 0 (should be cause)
453 * a2 = pointer to struct sigcontext
454 *
455 * $25 and c0_epc point to the signal handler, $29 points to the
456 * struct sigframe.
457 */
458 regs->regs[ 4] = signr;
459 regs->regs[ 5] = 0;
460 regs->regs[ 6] = (unsigned long) &frame->sf_sc;
461 regs->regs[29] = (unsigned long) frame;
David Daneyd814c282010-02-18 16:13:05 -0800462 regs->regs[31] = (unsigned long) sig_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 regs->cp0_epc = regs->regs[25] = (unsigned long) ka->sa.sa_handler;
464
Franck Bui-Huu722bb632007-02-05 15:24:24 +0100465 DEBUGP("SIG deliver (%s:%d): sp=0x%p pc=0x%lx ra=0x%lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 current->comm, current->pid,
Franck Bui-Huu722bb632007-02-05 15:24:24 +0100467 frame, regs->cp0_epc, regs->regs[31]);
Ralf Baechlee0daad42007-02-05 00:10:11 +0000468 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470give_sigsegv:
471 force_sigsegv(signr, current);
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000472 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474#endif
475
David Daneyd814c282010-02-18 16:13:05 -0800476static int setup_rt_frame(void *sig_return, struct k_sigaction *ka,
477 struct pt_regs *regs, int signr, sigset_t *set,
478 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900480 struct rt_sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 int err = 0;
482
483 frame = get_sigframe(ka, regs, sizeof(*frame));
484 if (!access_ok(VERIFY_WRITE, frame, sizeof (*frame)))
485 goto give_sigsegv;
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 /* Create siginfo. */
488 err |= copy_siginfo_to_user(&frame->rs_info, info);
489
490 /* Create the ucontext. */
491 err |= __put_user(0, &frame->rs_uc.uc_flags);
Atsushi Nemoto5665a0a2006-02-02 01:26:34 +0900492 err |= __put_user(NULL, &frame->rs_uc.uc_link);
Atsushi Nemoto9c6031c2006-02-19 23:46:44 +0900493 err |= __put_user((void __user *)current->sas_ss_sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 &frame->rs_uc.uc_stack.ss_sp);
495 err |= __put_user(sas_ss_flags(regs->regs[29]),
496 &frame->rs_uc.uc_stack.ss_flags);
497 err |= __put_user(current->sas_ss_size,
498 &frame->rs_uc.uc_stack.ss_size);
499 err |= setup_sigcontext(regs, &frame->rs_uc.uc_mcontext);
500 err |= __copy_to_user(&frame->rs_uc.uc_sigmask, set, sizeof(*set));
501
502 if (err)
503 goto give_sigsegv;
504
505 /*
506 * Arguments to signal handler:
507 *
508 * a0 = signal number
509 * a1 = 0 (should be cause)
510 * a2 = pointer to ucontext
511 *
512 * $25 and c0_epc point to the signal handler, $29 points to
513 * the struct rt_sigframe.
514 */
515 regs->regs[ 4] = signr;
516 regs->regs[ 5] = (unsigned long) &frame->rs_info;
517 regs->regs[ 6] = (unsigned long) &frame->rs_uc;
518 regs->regs[29] = (unsigned long) frame;
David Daneyd814c282010-02-18 16:13:05 -0800519 regs->regs[31] = (unsigned long) sig_return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 regs->cp0_epc = regs->regs[25] = (unsigned long) ka->sa.sa_handler;
521
Franck Bui-Huu722bb632007-02-05 15:24:24 +0100522 DEBUGP("SIG deliver (%s:%d): sp=0x%p pc=0x%lx ra=0x%lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 current->comm, current->pid,
524 frame, regs->cp0_epc, regs->regs[31]);
Franck Bui-Huu722bb632007-02-05 15:24:24 +0100525
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000526 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528give_sigsegv:
529 force_sigsegv(signr, current);
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000530 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000533struct mips_abi mips_abi = {
534#ifdef CONFIG_TRAD_SIGNALS
535 .setup_frame = setup_frame,
David Daneyd814c282010-02-18 16:13:05 -0800536 .signal_return_offset = offsetof(struct mips_vdso, signal_trampoline),
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000537#endif
538 .setup_rt_frame = setup_rt_frame,
David Daneyd814c282010-02-18 16:13:05 -0800539 .rt_signal_return_offset =
540 offsetof(struct mips_vdso, rt_signal_trampoline),
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000541 .restart = __NR_restart_syscall
542};
543
Franck Bui-Huue692eb32007-02-05 15:24:28 +0100544static int handle_signal(unsigned long sig, siginfo_t *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct k_sigaction *ka, sigset_t *oldset, struct pt_regs *regs)
546{
Ralf Baechle129bc8f2005-07-11 20:45:51 +0000547 int ret;
David Daneyd814c282010-02-18 16:13:05 -0800548 struct mips_abi *abi = current->thread.abi;
549 void *vdso = current->mm->context.vdso;
Ralf Baechle129bc8f2005-07-11 20:45:51 +0000550
Al Viro8f5a00eb2010-09-28 18:50:37 +0100551 if (regs->regs[0]) {
552 switch(regs->regs[2]) {
553 case ERESTART_RESTARTBLOCK:
554 case ERESTARTNOHAND:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 regs->regs[2] = EINTR;
556 break;
Al Viro8f5a00eb2010-09-28 18:50:37 +0100557 case ERESTARTSYS:
558 if (!(ka->sa.sa_flags & SA_RESTART)) {
559 regs->regs[2] = EINTR;
560 break;
561 }
562 /* fallthrough */
563 case ERESTARTNOINTR:
564 regs->regs[7] = regs->regs[26];
565 regs->regs[2] = regs->regs[0];
566 regs->cp0_epc -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Al Viro8f5a00eb2010-09-28 18:50:37 +0100569 regs->regs[0] = 0; /* Don't deal with this again. */
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000572 if (sig_uses_siginfo(ka))
David Daneyd814c282010-02-18 16:13:05 -0800573 ret = abi->setup_rt_frame(vdso + abi->rt_signal_return_offset,
574 ka, regs, sig, oldset, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 else
David Daneyd814c282010-02-18 16:13:05 -0800576 ret = abi->setup_frame(vdso + abi->signal_return_offset,
577 ka, regs, sig, oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Al Viro062ab572010-09-28 18:50:17 +0100579 if (ret)
580 return ret;
581
Steven Rostedt69be8f12005-08-29 11:44:09 -0400582 spin_lock_irq(&current->sighand->siglock);
Ralf Baechle21a151d2007-10-11 23:46:15 +0100583 sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
Steven Rostedt69be8f12005-08-29 11:44:09 -0400584 if (!(ka->sa.sa_flags & SA_NODEFER))
Ralf Baechle21a151d2007-10-11 23:46:15 +0100585 sigaddset(&current->blocked, sig);
Steven Rostedt69be8f12005-08-29 11:44:09 -0400586 recalc_sigpending();
587 spin_unlock_irq(&current->sighand->siglock);
Ralf Baechle129bc8f2005-07-11 20:45:51 +0000588
589 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000592static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 struct k_sigaction ka;
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000595 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 siginfo_t info;
597 int signr;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /*
600 * We want the common case to go fast, which is why we may in certain
601 * cases get here from kernel mode. Just return without doing anything
602 * if so.
603 */
604 if (!user_mode(regs))
Ralf Baechle40ac5d42006-02-08 13:38:18 +0000605 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000607 if (test_thread_flag(TIF_RESTORE_SIGMASK))
608 oldset = &current->saved_sigmask;
609 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 oldset = &current->blocked;
611
612 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000613 if (signr > 0) {
614 /* Whee! Actually deliver the signal. */
615 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
616 /*
617 * A signal was successfully delivered; the saved
618 * sigmask will have been stored in the signal frame,
619 * and will be restored by sigreturn, so we can simply
620 * clear the TIF_RESTORE_SIGMASK flag.
621 */
622 if (test_thread_flag(TIF_RESTORE_SIGMASK))
623 clear_thread_flag(TIF_RESTORE_SIGMASK);
624 }
Ralf Baechle45887e12006-08-03 21:54:13 +0100625
626 return;
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (regs->regs[0]) {
630 if (regs->regs[2] == ERESTARTNOHAND ||
631 regs->regs[2] == ERESTARTSYS ||
632 regs->regs[2] == ERESTARTNOINTR) {
Al Viro8f5a00eb2010-09-28 18:50:37 +0100633 regs->regs[2] = regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 regs->regs[7] = regs->regs[26];
Al Viro8f5a00eb2010-09-28 18:50:37 +0100635 regs->cp0_epc -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637 if (regs->regs[2] == ERESTART_RESTARTBLOCK) {
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000638 regs->regs[2] = current->thread.abi->restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 regs->regs[7] = regs->regs[26];
640 regs->cp0_epc -= 4;
641 }
Ralf Baechle13fdd312006-08-08 03:47:01 +0100642 regs->regs[0] = 0; /* Don't deal with this again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000644
645 /*
646 * If there's no signal to deliver, we just put the saved sigmask
647 * back
648 */
649 if (test_thread_flag(TIF_RESTORE_SIGMASK)) {
650 clear_thread_flag(TIF_RESTORE_SIGMASK);
651 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
655/*
656 * notification of userspace execution resumption
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000657 * - triggered by the TIF_WORK_MASK flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 */
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000659asmlinkage void do_notify_resume(struct pt_regs *regs, void *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 __u32 thread_info_flags)
661{
Ralf Baechle1f717922011-07-27 11:44:47 +0100662 local_irq_enable();
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /* deal with pending signal delivery */
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000665 if (thread_info_flags & (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK))
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000666 do_signal(regs);
David Howellsd0420c82009-09-02 09:14:16 +0100667
668 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
669 clear_thread_flag(TIF_NOTIFY_RESUME);
670 tracehook_notify_resume(regs);
David Howellsee18d642009-09-02 09:14:21 +0100671 if (current->replacement_session_keyring)
672 key_replace_session_keyring();
David Howellsd0420c82009-09-02 09:14:16 +0100673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
Ralf Baechle137f6f32009-11-24 19:35:41 +0000675
676#ifdef CONFIG_SMP
677static int smp_save_fp_context(struct sigcontext __user *sc)
678{
679 return raw_cpu_has_fpu
680 ? _save_fp_context(sc)
681 : fpu_emulator_save_context(sc);
682}
683
684static int smp_restore_fp_context(struct sigcontext __user *sc)
685{
686 return raw_cpu_has_fpu
687 ? _restore_fp_context(sc)
688 : fpu_emulator_restore_context(sc);
689}
690#endif
691
692static int signal_setup(void)
693{
694#ifdef CONFIG_SMP
695 /* For now just do the cpu_has_fpu check when the functions are invoked */
696 save_fp_context = smp_save_fp_context;
697 restore_fp_context = smp_restore_fp_context;
698#else
699 if (cpu_has_fpu) {
700 save_fp_context = _save_fp_context;
701 restore_fp_context = _restore_fp_context;
702 } else {
703 save_fp_context = fpu_emulator_save_context;
704 restore_fp_context = fpu_emulator_restore_context;
705 }
706#endif
707
708 return 0;
709}
710
711arch_initcall(signal_setup);