blob: 867de2f8189c32acf359fe5575cd139ede6b7048 [file] [log] [blame]
Adrian Bunkb00dc832008-05-19 16:52:27 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * arch/sparc64/kernel/signal.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
David S. Miller0a4949c42008-07-31 20:40:46 -07005 * Copyright (C) 1995, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx)
7 * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
8 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
9 */
10
David S. Miller09337f52008-04-26 03:17:12 -070011#ifdef CONFIG_COMPAT
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/compat.h> /* for compat_old_sigset_t */
13#endif
14#include <linux/sched.h>
15#include <linux/kernel.h>
16#include <linux/signal.h>
17#include <linux/errno.h>
18#include <linux/wait.h>
19#include <linux/ptrace.h>
Roland McGrathe35a8922008-04-20 15:06:49 -070020#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/unistd.h>
22#include <linux/mm.h>
23#include <linux/tty.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/binfmts.h>
25#include <linux/bitops.h>
26
27#include <asm/uaccess.h>
28#include <asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/pgtable.h>
30#include <asm/fpumacro.h>
31#include <asm/uctx.h>
32#include <asm/siginfo.h>
33#include <asm/visasm.h>
David Howellsd550bbd2012-03-28 18:30:03 +010034#include <asm/switch_to.h>
35#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
David S. Miller062ea6d2008-03-26 01:52:18 -070037#include "entry.h"
38#include "systbls.h"
David S. Miller55984732011-08-20 17:14:54 -070039#include "sigutil.h"
David S. Miller062ea6d2008-03-26 01:52:18 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/* {set, get}context() needed for 64-bit SparcLinux userland. */
42asmlinkage void sparc64_set_context(struct pt_regs *regs)
43{
44 struct ucontext __user *ucp = (struct ucontext __user *)
45 regs->u_regs[UREG_I0];
46 mc_gregset_t __user *grp;
47 unsigned long pc, npc, tstate;
48 unsigned long fp, i7;
49 unsigned char fenab;
50 int err;
51
52 flush_user_windows();
53 if (get_thread_wsaved() ||
54 (((unsigned long)ucp) & (sizeof(unsigned long)-1)) ||
55 (!__access_ok(ucp, sizeof(*ucp))))
56 goto do_sigsegv;
57 grp = &ucp->uc_mcontext.mc_gregs;
58 err = __get_user(pc, &((*grp)[MC_PC]));
59 err |= __get_user(npc, &((*grp)[MC_NPC]));
60 if (err || ((pc | npc) & 3))
61 goto do_sigsegv;
62 if (regs->u_regs[UREG_I1]) {
63 sigset_t set;
64
65 if (_NSIG_WORDS == 1) {
66 if (__get_user(set.sig[0], &ucp->uc_sigmask.sig[0]))
67 goto do_sigsegv;
68 } else {
69 if (__copy_from_user(&set, &ucp->uc_sigmask, sizeof(sigset_t)))
70 goto do_sigsegv;
71 }
Matt Flemingfaddf592011-08-11 14:57:02 +010072 set_current_blocked(&set);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 }
74 if (test_thread_flag(TIF_32BIT)) {
75 pc &= 0xffffffff;
76 npc &= 0xffffffff;
77 }
78 regs->tpc = pc;
79 regs->tnpc = npc;
80 err |= __get_user(regs->y, &((*grp)[MC_Y]));
81 err |= __get_user(tstate, &((*grp)[MC_TSTATE]));
82 regs->tstate &= ~(TSTATE_ASI | TSTATE_ICC | TSTATE_XCC);
83 regs->tstate |= (tstate & (TSTATE_ASI | TSTATE_ICC | TSTATE_XCC));
84 err |= __get_user(regs->u_regs[UREG_G1], (&(*grp)[MC_G1]));
85 err |= __get_user(regs->u_regs[UREG_G2], (&(*grp)[MC_G2]));
86 err |= __get_user(regs->u_regs[UREG_G3], (&(*grp)[MC_G3]));
87 err |= __get_user(regs->u_regs[UREG_G4], (&(*grp)[MC_G4]));
88 err |= __get_user(regs->u_regs[UREG_G5], (&(*grp)[MC_G5]));
89 err |= __get_user(regs->u_regs[UREG_G6], (&(*grp)[MC_G6]));
David S. Miller0a4949c42008-07-31 20:40:46 -070090
91 /* Skip %g7 as that's the thread register in userspace. */
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 err |= __get_user(regs->u_regs[UREG_I0], (&(*grp)[MC_O0]));
94 err |= __get_user(regs->u_regs[UREG_I1], (&(*grp)[MC_O1]));
95 err |= __get_user(regs->u_regs[UREG_I2], (&(*grp)[MC_O2]));
96 err |= __get_user(regs->u_regs[UREG_I3], (&(*grp)[MC_O3]));
97 err |= __get_user(regs->u_regs[UREG_I4], (&(*grp)[MC_O4]));
98 err |= __get_user(regs->u_regs[UREG_I5], (&(*grp)[MC_O5]));
99 err |= __get_user(regs->u_regs[UREG_I6], (&(*grp)[MC_O6]));
100 err |= __get_user(regs->u_regs[UREG_I7], (&(*grp)[MC_O7]));
101
102 err |= __get_user(fp, &(ucp->uc_mcontext.mc_fp));
103 err |= __get_user(i7, &(ucp->uc_mcontext.mc_i7));
104 err |= __put_user(fp,
105 (&(((struct reg_window __user *)(STACK_BIAS+regs->u_regs[UREG_I6]))->ins[6])));
106 err |= __put_user(i7,
107 (&(((struct reg_window __user *)(STACK_BIAS+regs->u_regs[UREG_I6]))->ins[7])));
108
109 err |= __get_user(fenab, &(ucp->uc_mcontext.mc_fpregs.mcfpu_enab));
110 if (fenab) {
111 unsigned long *fpregs = current_thread_info()->fpregs;
112 unsigned long fprs;
113
114 fprs_write(0);
115 err |= __get_user(fprs, &(ucp->uc_mcontext.mc_fpregs.mcfpu_fprs));
116 if (fprs & FPRS_DL)
117 err |= copy_from_user(fpregs,
118 &(ucp->uc_mcontext.mc_fpregs.mcfpu_fregs),
119 (sizeof(unsigned int) * 32));
120 if (fprs & FPRS_DU)
121 err |= copy_from_user(fpregs+16,
122 ((unsigned long __user *)&(ucp->uc_mcontext.mc_fpregs.mcfpu_fregs))+16,
123 (sizeof(unsigned int) * 32));
124 err |= __get_user(current_thread_info()->xfsr[0],
125 &(ucp->uc_mcontext.mc_fpregs.mcfpu_fsr));
126 err |= __get_user(current_thread_info()->gsr[0],
127 &(ucp->uc_mcontext.mc_fpregs.mcfpu_gsr));
128 regs->tstate &= ~TSTATE_PEF;
129 }
130 if (err)
131 goto do_sigsegv;
132
133 return;
134do_sigsegv:
135 force_sig(SIGSEGV, current);
136}
137
138asmlinkage void sparc64_get_context(struct pt_regs *regs)
139{
140 struct ucontext __user *ucp = (struct ucontext __user *)
141 regs->u_regs[UREG_I0];
142 mc_gregset_t __user *grp;
143 mcontext_t __user *mcp;
144 unsigned long fp, i7;
145 unsigned char fenab;
146 int err;
147
148 synchronize_user_stack();
149 if (get_thread_wsaved() || clear_user(ucp, sizeof(*ucp)))
150 goto do_sigsegv;
151
152#if 1
153 fenab = 0; /* IMO get_context is like any other system call, thus modifies FPU state -jj */
154#else
155 fenab = (current_thread_info()->fpsaved[0] & FPRS_FEF);
156#endif
157
158 mcp = &ucp->uc_mcontext;
159 grp = &mcp->mc_gregs;
160
161 /* Skip over the trap instruction, first. */
162 if (test_thread_flag(TIF_32BIT)) {
163 regs->tpc = (regs->tnpc & 0xffffffff);
164 regs->tnpc = (regs->tnpc + 4) & 0xffffffff;
165 } else {
166 regs->tpc = regs->tnpc;
167 regs->tnpc += 4;
168 }
169 err = 0;
170 if (_NSIG_WORDS == 1)
171 err |= __put_user(current->blocked.sig[0],
172 (unsigned long __user *)&ucp->uc_sigmask);
173 else
174 err |= __copy_to_user(&ucp->uc_sigmask, &current->blocked,
175 sizeof(sigset_t));
176
177 err |= __put_user(regs->tstate, &((*grp)[MC_TSTATE]));
178 err |= __put_user(regs->tpc, &((*grp)[MC_PC]));
179 err |= __put_user(regs->tnpc, &((*grp)[MC_NPC]));
180 err |= __put_user(regs->y, &((*grp)[MC_Y]));
181 err |= __put_user(regs->u_regs[UREG_G1], &((*grp)[MC_G1]));
182 err |= __put_user(regs->u_regs[UREG_G2], &((*grp)[MC_G2]));
183 err |= __put_user(regs->u_regs[UREG_G3], &((*grp)[MC_G3]));
184 err |= __put_user(regs->u_regs[UREG_G4], &((*grp)[MC_G4]));
185 err |= __put_user(regs->u_regs[UREG_G5], &((*grp)[MC_G5]));
186 err |= __put_user(regs->u_regs[UREG_G6], &((*grp)[MC_G6]));
187 err |= __put_user(regs->u_regs[UREG_G7], &((*grp)[MC_G7]));
188 err |= __put_user(regs->u_regs[UREG_I0], &((*grp)[MC_O0]));
189 err |= __put_user(regs->u_regs[UREG_I1], &((*grp)[MC_O1]));
190 err |= __put_user(regs->u_regs[UREG_I2], &((*grp)[MC_O2]));
191 err |= __put_user(regs->u_regs[UREG_I3], &((*grp)[MC_O3]));
192 err |= __put_user(regs->u_regs[UREG_I4], &((*grp)[MC_O4]));
193 err |= __put_user(regs->u_regs[UREG_I5], &((*grp)[MC_O5]));
194 err |= __put_user(regs->u_regs[UREG_I6], &((*grp)[MC_O6]));
195 err |= __put_user(regs->u_regs[UREG_I7], &((*grp)[MC_O7]));
196
197 err |= __get_user(fp,
198 (&(((struct reg_window __user *)(STACK_BIAS+regs->u_regs[UREG_I6]))->ins[6])));
199 err |= __get_user(i7,
200 (&(((struct reg_window __user *)(STACK_BIAS+regs->u_regs[UREG_I6]))->ins[7])));
201 err |= __put_user(fp, &(mcp->mc_fp));
202 err |= __put_user(i7, &(mcp->mc_i7));
203
204 err |= __put_user(fenab, &(mcp->mc_fpregs.mcfpu_enab));
205 if (fenab) {
206 unsigned long *fpregs = current_thread_info()->fpregs;
207 unsigned long fprs;
208
209 fprs = current_thread_info()->fpsaved[0];
210 if (fprs & FPRS_DL)
211 err |= copy_to_user(&(mcp->mc_fpregs.mcfpu_fregs), fpregs,
212 (sizeof(unsigned int) * 32));
213 if (fprs & FPRS_DU)
214 err |= copy_to_user(
215 ((unsigned long __user *)&(mcp->mc_fpregs.mcfpu_fregs))+16, fpregs+16,
216 (sizeof(unsigned int) * 32));
217 err |= __put_user(current_thread_info()->xfsr[0], &(mcp->mc_fpregs.mcfpu_fsr));
218 err |= __put_user(current_thread_info()->gsr[0], &(mcp->mc_fpregs.mcfpu_gsr));
219 err |= __put_user(fprs, &(mcp->mc_fpregs.mcfpu_fprs));
220 }
221 if (err)
222 goto do_sigsegv;
223
224 return;
225do_sigsegv:
226 force_sig(SIGSEGV, current);
227}
228
229struct rt_signal_frame {
230 struct sparc_stackf ss;
231 siginfo_t info;
232 struct pt_regs regs;
233 __siginfo_fpu_t __user *fpu_save;
234 stack_t stack;
235 sigset_t mask;
David S. Miller55984732011-08-20 17:14:54 -0700236 __siginfo_rwin_t *rwin_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237};
238
David S. Miller2d7d5f02006-01-19 02:42:49 -0800239static long _sigpause_common(old_sigset_t set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Matt Flemingfaddf592011-08-11 14:57:02 +0100241 sigset_t blocked;
Matt Flemingfaddf592011-08-11 14:57:02 +0100242 siginitset(&blocked, set);
Al Viro68f3f162012-05-21 21:42:32 -0400243 return sigsuspend(&blocked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
David S. Miller2d7d5f02006-01-19 02:42:49 -0800246asmlinkage long sys_sigpause(unsigned int set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
David S. Miller2d7d5f02006-01-19 02:42:49 -0800248 return _sigpause_common(set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
David S. Miller2d7d5f02006-01-19 02:42:49 -0800251asmlinkage long sys_sigsuspend(old_sigset_t set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
David S. Miller2d7d5f02006-01-19 02:42:49 -0800253 return _sigpause_common(set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256void do_rt_sigreturn(struct pt_regs *regs)
257{
258 struct rt_signal_frame __user *sf;
259 unsigned long tpc, tnpc, tstate;
260 __siginfo_fpu_t __user *fpu_save;
David S. Miller55984732011-08-20 17:14:54 -0700261 __siginfo_rwin_t __user *rwin_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 sigset_t set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 int err;
264
265 /* Always make any pending restarted system calls return -EINTR */
266 current_thread_info()->restart_block.fn = do_no_restart_syscall;
267
268 synchronize_user_stack ();
269 sf = (struct rt_signal_frame __user *)
270 (regs->u_regs [UREG_FP] + STACK_BIAS);
271
272 /* 1. Make sure we are not getting garbage from the user */
273 if (((unsigned long) sf) & 3)
274 goto segv;
275
276 err = get_user(tpc, &sf->regs.tpc);
277 err |= __get_user(tnpc, &sf->regs.tnpc);
278 if (test_thread_flag(TIF_32BIT)) {
279 tpc &= 0xffffffff;
280 tnpc &= 0xffffffff;
281 }
282 err |= ((tpc | tnpc) & 3);
283
284 /* 2. Restore the state */
285 err |= __get_user(regs->y, &sf->regs.y);
286 err |= __get_user(tstate, &sf->regs.tstate);
287 err |= copy_from_user(regs->u_regs, sf->regs.u_regs, sizeof(regs->u_regs));
288
289 /* User can only change condition codes and %asi in %tstate. */
290 regs->tstate &= ~(TSTATE_ASI | TSTATE_ICC | TSTATE_XCC);
291 regs->tstate |= (tstate & (TSTATE_ASI | TSTATE_ICC | TSTATE_XCC));
292
293 err |= __get_user(fpu_save, &sf->fpu_save);
David S. Miller55984732011-08-20 17:14:54 -0700294 if (!err && fpu_save)
295 err |= restore_fpu_state(regs, fpu_save);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 err |= __copy_from_user(&set, &sf->mask, sizeof(sigset_t));
Oleg Nesterov62715ec2007-07-17 14:37:54 -0700298 err |= do_sigaltstack(&sf->stack, NULL, (unsigned long)sf);
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (err)
301 goto segv;
Oleg Nesterov62715ec2007-07-17 14:37:54 -0700302
David S. Miller55984732011-08-20 17:14:54 -0700303 err |= __get_user(rwin_save, &sf->rwin_save);
304 if (!err && rwin_save) {
305 if (restore_rwin_state(rwin_save))
306 goto segv;
307 }
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 regs->tpc = tpc;
310 regs->tnpc = tnpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
David S. Miller2678fef2008-05-01 03:30:22 -0700312 /* Prevent syscall restart. */
David S. Miller28e61032008-05-11 02:07:19 -0700313 pt_regs_clear_syscall(regs);
David S. Miller2678fef2008-05-01 03:30:22 -0700314
Matt Flemingfaddf592011-08-11 14:57:02 +0100315 set_current_blocked(&set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return;
317segv:
318 force_sig(SIGSEGV, current);
319}
320
321/* Checks if the fp is valid */
David S. Miller55984732011-08-20 17:14:54 -0700322static int invalid_frame_pointer(void __user *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
David S. Millerf036d9f2010-02-09 16:18:40 -0800324 if (((unsigned long) fp) & 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return 1;
326 return 0;
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329static inline void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, unsigned long framesize)
330{
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700331 unsigned long sp = regs->u_regs[UREG_FP] + STACK_BIAS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700333 /*
334 * If we are on the alternate signal stack and would overflow it, don't.
335 * Return an always-bogus address instead so we will die with SIGSEGV.
336 */
337 if (on_sig_stack(sp) && !likely(on_sig_stack(sp - framesize)))
338 return (void __user *) -1L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 /* This is the X/Open sanctioned signal stack switching. */
341 if (ka->sa.sa_flags & SA_ONSTACK) {
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700342 if (sas_ss_flags(sp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 sp = current->sas_ss_sp + current->sas_ss_size;
344 }
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700345
David S. Millerf036d9f2010-02-09 16:18:40 -0800346 sp -= framesize;
347
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700348 /* Always align the stack frame. This handles two cases. First,
349 * sigaltstack need not be mindful of platform specific stack
350 * alignment. Second, if we took this signal because the stack
351 * is not aligned properly, we'd like to take the signal cleanly
352 * and report that.
353 */
David S. Millerf036d9f2010-02-09 16:18:40 -0800354 sp &= ~15UL;
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700355
David S. Millerf036d9f2010-02-09 16:18:40 -0800356 return (void __user *) sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
David S. Miller392c2182010-09-21 21:41:12 -0700359static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360setup_rt_frame(struct k_sigaction *ka, struct pt_regs *regs,
361 int signo, sigset_t *oldset, siginfo_t *info)
362{
363 struct rt_signal_frame __user *sf;
David S. Miller55984732011-08-20 17:14:54 -0700364 int wsaved, err, sf_size;
365 void __user *tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 /* 1. Make sure everything is clean */
368 synchronize_user_stack();
369 save_and_clear_fpu();
370
David S. Miller55984732011-08-20 17:14:54 -0700371 wsaved = get_thread_wsaved();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
David S. Miller55984732011-08-20 17:14:54 -0700373 sf_size = sizeof(struct rt_signal_frame);
374 if (current_thread_info()->fpsaved[0] & FPRS_FEF)
375 sf_size += sizeof(__siginfo_fpu_t);
376 if (wsaved)
377 sf_size += sizeof(__siginfo_rwin_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 sf = (struct rt_signal_frame __user *)
David S. Miller55984732011-08-20 17:14:54 -0700379 get_sigframe(ka, regs, sf_size);
380
381 if (invalid_frame_pointer (sf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 goto sigill;
383
David S. Miller55984732011-08-20 17:14:54 -0700384 tail = (sf + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 /* 2. Save the current process state */
387 err = copy_to_user(&sf->regs, regs, sizeof (*regs));
388
389 if (current_thread_info()->fpsaved[0] & FPRS_FEF) {
David S. Miller55984732011-08-20 17:14:54 -0700390 __siginfo_fpu_t __user *fpu_save = tail;
391 tail += sizeof(__siginfo_fpu_t);
392 err |= save_fpu_state(regs, fpu_save);
393 err |= __put_user((u64)fpu_save, &sf->fpu_save);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 } else {
395 err |= __put_user(0, &sf->fpu_save);
396 }
David S. Miller55984732011-08-20 17:14:54 -0700397 if (wsaved) {
398 __siginfo_rwin_t __user *rwin_save = tail;
399 tail += sizeof(__siginfo_rwin_t);
400 err |= save_rwin_state(wsaved, rwin_save);
401 err |= __put_user((u64)rwin_save, &sf->rwin_save);
402 set_thread_wsaved(0);
403 } else {
404 err |= __put_user(0, &sf->rwin_save);
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* Setup sigaltstack */
408 err |= __put_user(current->sas_ss_sp, &sf->stack.ss_sp);
409 err |= __put_user(sas_ss_flags(regs->u_regs[UREG_FP]), &sf->stack.ss_flags);
410 err |= __put_user(current->sas_ss_size, &sf->stack.ss_size);
411
412 err |= copy_to_user(&sf->mask, oldset, sizeof(sigset_t));
413
David S. Miller55984732011-08-20 17:14:54 -0700414 if (!wsaved) {
415 err |= copy_in_user((u64 __user *)sf,
416 (u64 __user *)(regs->u_regs[UREG_FP] +
417 STACK_BIAS),
418 sizeof(struct reg_window));
419 } else {
420 struct reg_window *rp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
David S. Miller55984732011-08-20 17:14:54 -0700422 rp = &current_thread_info()->reg_window[wsaved - 1];
423 err |= copy_to_user(sf, rp, sizeof(struct reg_window));
424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (info)
426 err |= copy_siginfo_to_user(&sf->info, info);
427 else {
428 err |= __put_user(signo, &sf->info.si_signo);
429 err |= __put_user(SI_NOINFO, &sf->info.si_code);
430 }
431 if (err)
432 goto sigsegv;
433
434 /* 3. signal handler back-trampoline and parameters */
435 regs->u_regs[UREG_FP] = ((unsigned long) sf) - STACK_BIAS;
436 regs->u_regs[UREG_I0] = signo;
437 regs->u_regs[UREG_I1] = (unsigned long) &sf->info;
438
439 /* The sigcontext is passed in this way because of how it
440 * is defined in GLIBC's /usr/include/bits/sigcontext.h
441 * for sparc64. It includes the 128 bytes of siginfo_t.
442 */
443 regs->u_regs[UREG_I2] = (unsigned long) &sf->info;
444
445 /* 5. signal handler */
446 regs->tpc = (unsigned long) ka->sa.sa_handler;
447 regs->tnpc = (regs->tpc + 4);
448 if (test_thread_flag(TIF_32BIT)) {
449 regs->tpc &= 0xffffffff;
450 regs->tnpc &= 0xffffffff;
451 }
452 /* 4. return to kernel instructions */
453 regs->u_regs[UREG_I7] = (unsigned long)ka->ka_restorer;
David S. Miller392c2182010-09-21 21:41:12 -0700454 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456sigill:
457 do_exit(SIGILL);
David S. Miller392c2182010-09-21 21:41:12 -0700458 return -EINVAL;
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460sigsegv:
461 force_sigsegv(signo, current);
David S. Miller392c2182010-09-21 21:41:12 -0700462 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Al Viroa610d6e2012-05-21 23:42:15 -0400465static inline void handle_signal(unsigned long signr, struct k_sigaction *ka,
David S. Miller392c2182010-09-21 21:41:12 -0700466 siginfo_t *info,
467 sigset_t *oldset, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
David S. Miller392c2182010-09-21 21:41:12 -0700469 int err;
470
471 err = setup_rt_frame(ka, regs, signr, oldset,
472 (ka->sa.sa_flags & SA_SIGINFO) ? info : NULL);
473 if (err)
Al Viroa610d6e2012-05-21 23:42:15 -0400474 return;
David S. Miller392c2182010-09-21 21:41:12 -0700475
Al Viroefee9842012-04-28 02:04:15 -0400476 signal_delivered(signr, info, ka, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
479static inline void syscall_restart(unsigned long orig_i0, struct pt_regs *regs,
David S. Miller28e61032008-05-11 02:07:19 -0700480 struct sigaction *sa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 switch (regs->u_regs[UREG_I0]) {
483 case ERESTART_RESTARTBLOCK:
484 case ERESTARTNOHAND:
485 no_system_call_restart:
486 regs->u_regs[UREG_I0] = EINTR;
487 regs->tstate |= (TSTATE_ICARRY|TSTATE_XCARRY);
488 break;
489 case ERESTARTSYS:
490 if (!(sa->sa_flags & SA_RESTART))
491 goto no_system_call_restart;
492 /* fallthrough */
493 case ERESTARTNOINTR:
494 regs->u_regs[UREG_I0] = orig_i0;
495 regs->tpc -= 4;
496 regs->tnpc -= 4;
497 }
498}
499
500/* Note that 'init' is a special process: it doesn't get signals it doesn't
501 * want to handle. Thus you cannot kill init even with a SIGKILL even by
502 * mistake.
503 */
David S. Miller238468b2008-04-24 03:01:48 -0700504static void do_signal(struct pt_regs *regs, unsigned long orig_i0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct k_sigaction ka;
David S. Miller28e61032008-05-11 02:07:19 -0700507 int restart_syscall;
Al Virob7f9a112012-05-02 09:59:21 -0400508 sigset_t *oldset = sigmask_to_save();
David S. Miller238468b2008-04-24 03:01:48 -0700509 siginfo_t info;
David S. Miller90888812008-04-27 14:52:51 -0700510 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
David S. Miller1d299bc2011-11-14 20:32:16 -0800512 /* It's a lot of work and synchronization to add a new ptrace
513 * register for GDB to save and restore in order to get
514 * orig_i0 correct for syscall restarts when debugging.
515 *
David S. Millere88d2462011-11-15 12:57:00 -0800516 * Although it should be the case that most of the global
517 * registers are volatile across a system call, glibc already
518 * depends upon that fact that we preserve them. So we can't
519 * just use any global register to save away the orig_i0 value.
520 *
521 * In particular %g2, %g3, %g4, and %g5 are all assumed to be
522 * preserved across a system call trap by various pieces of
523 * code in glibc.
524 *
525 * %g7 is used as the "thread register". %g6 is not used in
526 * any fixed manner. %g6 is used as a scratch register and
527 * a compiler temporary, but it's value is never used across
528 * a system call. Therefore %g6 is usable for orig_i0 storage.
David S. Miller1d299bc2011-11-14 20:32:16 -0800529 */
David S. Miller2678fef2008-05-01 03:30:22 -0700530 if (pt_regs_is_syscall(regs) &&
David S. Miller1d299bc2011-11-14 20:32:16 -0800531 (regs->tstate & (TSTATE_XCARRY | TSTATE_ICARRY)))
David S. Millere88d2462011-11-15 12:57:00 -0800532 regs->u_regs[UREG_G6] = orig_i0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
David S. Miller09337f52008-04-26 03:17:12 -0700534#ifdef CONFIG_COMPAT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (test_thread_flag(TIF_32BIT)) {
David S. Miller1d299bc2011-11-14 20:32:16 -0800536 extern void do_signal32(sigset_t *, struct pt_regs *);
537 do_signal32(oldset, regs);
David S. Miller2d7d5f02006-01-19 02:42:49 -0800538 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540#endif
541
David S. Miller28e61032008-05-11 02:07:19 -0700542 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
543
David S. Miller1d299bc2011-11-14 20:32:16 -0800544 restart_syscall = 0;
545 if (pt_regs_is_syscall(regs) &&
546 (regs->tstate & (TSTATE_XCARRY | TSTATE_ICARRY))) {
547 restart_syscall = 1;
David S. Millere88d2462011-11-15 12:57:00 -0800548 orig_i0 = regs->u_regs[UREG_G6];
David S. Miller1d299bc2011-11-14 20:32:16 -0800549 }
David S. Miller28e61032008-05-11 02:07:19 -0700550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (signr > 0) {
David S. Miller28e61032008-05-11 02:07:19 -0700552 if (restart_syscall)
553 syscall_restart(orig_i0, regs, &ka.sa);
Al Viroa610d6e2012-05-21 23:42:15 -0400554 handle_signal(signr, &ka, &info, oldset, regs);
David S. Miller2d7d5f02006-01-19 02:42:49 -0800555 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
David S. Miller28e61032008-05-11 02:07:19 -0700557 if (restart_syscall &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 (regs->u_regs[UREG_I0] == ERESTARTNOHAND ||
559 regs->u_regs[UREG_I0] == ERESTARTSYS ||
560 regs->u_regs[UREG_I0] == ERESTARTNOINTR)) {
561 /* replay the system call when we are done */
David S. Miller28e61032008-05-11 02:07:19 -0700562 regs->u_regs[UREG_I0] = orig_i0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 regs->tpc -= 4;
564 regs->tnpc -= 4;
David S. Millerc2785252010-09-21 22:30:13 -0700565 pt_regs_clear_syscall(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
David S. Miller28e61032008-05-11 02:07:19 -0700567 if (restart_syscall &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 regs->u_regs[UREG_I0] == ERESTART_RESTARTBLOCK) {
569 regs->u_regs[UREG_G1] = __NR_restart_syscall;
570 regs->tpc -= 4;
571 regs->tnpc -= 4;
David S. Millerc2785252010-09-21 22:30:13 -0700572 pt_regs_clear_syscall(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
David S. Miller2d7d5f02006-01-19 02:42:49 -0800574
David S. Miller9a28dbf2008-05-12 22:45:15 -0700575 /* If there's no signal to deliver, we just put the saved sigmask
David S. Miller2d7d5f02006-01-19 02:42:49 -0800576 * back
577 */
Al Viro51a7b442012-05-21 23:33:55 -0400578 restore_saved_sigmask();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
David S. Miller7697daa2008-04-24 03:15:22 -0700581void do_notify_resume(struct pt_regs *regs, unsigned long orig_i0, unsigned long thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
David S. Miller9a28dbf2008-05-12 22:45:15 -0700583 if (thread_info_flags & _TIF_SIGPENDING)
David S. Miller238468b2008-04-24 03:01:48 -0700584 do_signal(regs, orig_i0);
Roland McGrathe35a8922008-04-20 15:06:49 -0700585 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
586 clear_thread_flag(TIF_NOTIFY_RESUME);
587 tracehook_notify_resume(regs);
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
David Howellsee18d642009-09-02 09:14:21 +0100590