blob: 689e1ba628097e12ab95496d60df2225817483d3 [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));
Al Virofae2ae22012-11-18 22:27:03 -0500298 if (err || do_sigaltstack(&sf->stack, NULL, (unsigned long)sf) == -EFAULT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 goto segv;
Oleg Nesterov62715ec2007-07-17 14:37:54 -0700300
David S. Miller55984732011-08-20 17:14:54 -0700301 err |= __get_user(rwin_save, &sf->rwin_save);
302 if (!err && rwin_save) {
303 if (restore_rwin_state(rwin_save))
304 goto segv;
305 }
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 regs->tpc = tpc;
308 regs->tnpc = tnpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
David S. Miller2678fef2008-05-01 03:30:22 -0700310 /* Prevent syscall restart. */
David S. Miller28e61032008-05-11 02:07:19 -0700311 pt_regs_clear_syscall(regs);
David S. Miller2678fef2008-05-01 03:30:22 -0700312
Matt Flemingfaddf592011-08-11 14:57:02 +0100313 set_current_blocked(&set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return;
315segv:
316 force_sig(SIGSEGV, current);
317}
318
319/* Checks if the fp is valid */
David S. Miller55984732011-08-20 17:14:54 -0700320static int invalid_frame_pointer(void __user *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
David S. Millerf036d9f2010-02-09 16:18:40 -0800322 if (((unsigned long) fp) & 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return 1;
324 return 0;
325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static inline void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, unsigned long framesize)
328{
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700329 unsigned long sp = regs->u_regs[UREG_FP] + STACK_BIAS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700331 /*
332 * If we are on the alternate signal stack and would overflow it, don't.
333 * Return an always-bogus address instead so we will die with SIGSEGV.
334 */
335 if (on_sig_stack(sp) && !likely(on_sig_stack(sp - framesize)))
336 return (void __user *) -1L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /* This is the X/Open sanctioned signal stack switching. */
339 if (ka->sa.sa_flags & SA_ONSTACK) {
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700340 if (sas_ss_flags(sp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 sp = current->sas_ss_sp + current->sas_ss_size;
342 }
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700343
David S. Millerf036d9f2010-02-09 16:18:40 -0800344 sp -= framesize;
345
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700346 /* Always align the stack frame. This handles two cases. First,
347 * sigaltstack need not be mindful of platform specific stack
348 * alignment. Second, if we took this signal because the stack
349 * is not aligned properly, we'd like to take the signal cleanly
350 * and report that.
351 */
David S. Millerf036d9f2010-02-09 16:18:40 -0800352 sp &= ~15UL;
David S. Millerdc5dc7e2008-05-07 18:54:05 -0700353
David S. Millerf036d9f2010-02-09 16:18:40 -0800354 return (void __user *) sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
David S. Miller392c2182010-09-21 21:41:12 -0700357static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358setup_rt_frame(struct k_sigaction *ka, struct pt_regs *regs,
359 int signo, sigset_t *oldset, siginfo_t *info)
360{
361 struct rt_signal_frame __user *sf;
David S. Miller55984732011-08-20 17:14:54 -0700362 int wsaved, err, sf_size;
363 void __user *tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* 1. Make sure everything is clean */
366 synchronize_user_stack();
367 save_and_clear_fpu();
368
David S. Miller55984732011-08-20 17:14:54 -0700369 wsaved = get_thread_wsaved();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
David S. Miller55984732011-08-20 17:14:54 -0700371 sf_size = sizeof(struct rt_signal_frame);
372 if (current_thread_info()->fpsaved[0] & FPRS_FEF)
373 sf_size += sizeof(__siginfo_fpu_t);
374 if (wsaved)
375 sf_size += sizeof(__siginfo_rwin_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 sf = (struct rt_signal_frame __user *)
David S. Miller55984732011-08-20 17:14:54 -0700377 get_sigframe(ka, regs, sf_size);
378
379 if (invalid_frame_pointer (sf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 goto sigill;
381
David S. Miller55984732011-08-20 17:14:54 -0700382 tail = (sf + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* 2. Save the current process state */
385 err = copy_to_user(&sf->regs, regs, sizeof (*regs));
386
387 if (current_thread_info()->fpsaved[0] & FPRS_FEF) {
David S. Miller55984732011-08-20 17:14:54 -0700388 __siginfo_fpu_t __user *fpu_save = tail;
389 tail += sizeof(__siginfo_fpu_t);
390 err |= save_fpu_state(regs, fpu_save);
391 err |= __put_user((u64)fpu_save, &sf->fpu_save);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 } else {
393 err |= __put_user(0, &sf->fpu_save);
394 }
David S. Miller55984732011-08-20 17:14:54 -0700395 if (wsaved) {
396 __siginfo_rwin_t __user *rwin_save = tail;
397 tail += sizeof(__siginfo_rwin_t);
398 err |= save_rwin_state(wsaved, rwin_save);
399 err |= __put_user((u64)rwin_save, &sf->rwin_save);
400 set_thread_wsaved(0);
401 } else {
402 err |= __put_user(0, &sf->rwin_save);
403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /* Setup sigaltstack */
406 err |= __put_user(current->sas_ss_sp, &sf->stack.ss_sp);
407 err |= __put_user(sas_ss_flags(regs->u_regs[UREG_FP]), &sf->stack.ss_flags);
408 err |= __put_user(current->sas_ss_size, &sf->stack.ss_size);
409
410 err |= copy_to_user(&sf->mask, oldset, sizeof(sigset_t));
411
David S. Miller55984732011-08-20 17:14:54 -0700412 if (!wsaved) {
413 err |= copy_in_user((u64 __user *)sf,
414 (u64 __user *)(regs->u_regs[UREG_FP] +
415 STACK_BIAS),
416 sizeof(struct reg_window));
417 } else {
418 struct reg_window *rp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
David S. Miller55984732011-08-20 17:14:54 -0700420 rp = &current_thread_info()->reg_window[wsaved - 1];
421 err |= copy_to_user(sf, rp, sizeof(struct reg_window));
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (info)
424 err |= copy_siginfo_to_user(&sf->info, info);
425 else {
426 err |= __put_user(signo, &sf->info.si_signo);
427 err |= __put_user(SI_NOINFO, &sf->info.si_code);
428 }
429 if (err)
430 goto sigsegv;
431
432 /* 3. signal handler back-trampoline and parameters */
433 regs->u_regs[UREG_FP] = ((unsigned long) sf) - STACK_BIAS;
434 regs->u_regs[UREG_I0] = signo;
435 regs->u_regs[UREG_I1] = (unsigned long) &sf->info;
436
437 /* The sigcontext is passed in this way because of how it
438 * is defined in GLIBC's /usr/include/bits/sigcontext.h
439 * for sparc64. It includes the 128 bytes of siginfo_t.
440 */
441 regs->u_regs[UREG_I2] = (unsigned long) &sf->info;
442
443 /* 5. signal handler */
444 regs->tpc = (unsigned long) ka->sa.sa_handler;
445 regs->tnpc = (regs->tpc + 4);
446 if (test_thread_flag(TIF_32BIT)) {
447 regs->tpc &= 0xffffffff;
448 regs->tnpc &= 0xffffffff;
449 }
450 /* 4. return to kernel instructions */
451 regs->u_regs[UREG_I7] = (unsigned long)ka->ka_restorer;
David S. Miller392c2182010-09-21 21:41:12 -0700452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454sigill:
455 do_exit(SIGILL);
David S. Miller392c2182010-09-21 21:41:12 -0700456 return -EINVAL;
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458sigsegv:
459 force_sigsegv(signo, current);
David S. Miller392c2182010-09-21 21:41:12 -0700460 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
Al Viroa610d6e2012-05-21 23:42:15 -0400463static inline void handle_signal(unsigned long signr, struct k_sigaction *ka,
David S. Miller392c2182010-09-21 21:41:12 -0700464 siginfo_t *info,
465 sigset_t *oldset, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
David S. Miller392c2182010-09-21 21:41:12 -0700467 int err;
468
469 err = setup_rt_frame(ka, regs, signr, oldset,
470 (ka->sa.sa_flags & SA_SIGINFO) ? info : NULL);
471 if (err)
Al Viroa610d6e2012-05-21 23:42:15 -0400472 return;
David S. Miller392c2182010-09-21 21:41:12 -0700473
Al Viroefee9842012-04-28 02:04:15 -0400474 signal_delivered(signr, info, ka, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
477static inline void syscall_restart(unsigned long orig_i0, struct pt_regs *regs,
David S. Miller28e61032008-05-11 02:07:19 -0700478 struct sigaction *sa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 switch (regs->u_regs[UREG_I0]) {
481 case ERESTART_RESTARTBLOCK:
482 case ERESTARTNOHAND:
483 no_system_call_restart:
484 regs->u_regs[UREG_I0] = EINTR;
485 regs->tstate |= (TSTATE_ICARRY|TSTATE_XCARRY);
486 break;
487 case ERESTARTSYS:
488 if (!(sa->sa_flags & SA_RESTART))
489 goto no_system_call_restart;
490 /* fallthrough */
491 case ERESTARTNOINTR:
492 regs->u_regs[UREG_I0] = orig_i0;
493 regs->tpc -= 4;
494 regs->tnpc -= 4;
495 }
496}
497
498/* Note that 'init' is a special process: it doesn't get signals it doesn't
499 * want to handle. Thus you cannot kill init even with a SIGKILL even by
500 * mistake.
501 */
David S. Miller238468b2008-04-24 03:01:48 -0700502static void do_signal(struct pt_regs *regs, unsigned long orig_i0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 struct k_sigaction ka;
David S. Miller28e61032008-05-11 02:07:19 -0700505 int restart_syscall;
Al Virob7f9a112012-05-02 09:59:21 -0400506 sigset_t *oldset = sigmask_to_save();
David S. Miller238468b2008-04-24 03:01:48 -0700507 siginfo_t info;
David S. Miller90888812008-04-27 14:52:51 -0700508 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
David S. Miller1d299bc2011-11-14 20:32:16 -0800510 /* It's a lot of work and synchronization to add a new ptrace
511 * register for GDB to save and restore in order to get
512 * orig_i0 correct for syscall restarts when debugging.
513 *
David S. Millere88d2462011-11-15 12:57:00 -0800514 * Although it should be the case that most of the global
515 * registers are volatile across a system call, glibc already
516 * depends upon that fact that we preserve them. So we can't
517 * just use any global register to save away the orig_i0 value.
518 *
519 * In particular %g2, %g3, %g4, and %g5 are all assumed to be
520 * preserved across a system call trap by various pieces of
521 * code in glibc.
522 *
523 * %g7 is used as the "thread register". %g6 is not used in
524 * any fixed manner. %g6 is used as a scratch register and
525 * a compiler temporary, but it's value is never used across
526 * a system call. Therefore %g6 is usable for orig_i0 storage.
David S. Miller1d299bc2011-11-14 20:32:16 -0800527 */
David S. Miller2678fef2008-05-01 03:30:22 -0700528 if (pt_regs_is_syscall(regs) &&
David S. Miller1d299bc2011-11-14 20:32:16 -0800529 (regs->tstate & (TSTATE_XCARRY | TSTATE_ICARRY)))
David S. Millere88d2462011-11-15 12:57:00 -0800530 regs->u_regs[UREG_G6] = orig_i0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
David S. Miller09337f52008-04-26 03:17:12 -0700532#ifdef CONFIG_COMPAT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (test_thread_flag(TIF_32BIT)) {
David S. Miller1d299bc2011-11-14 20:32:16 -0800534 extern void do_signal32(sigset_t *, struct pt_regs *);
535 do_signal32(oldset, regs);
David S. Miller2d7d5f02006-01-19 02:42:49 -0800536 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538#endif
539
David S. Miller28e61032008-05-11 02:07:19 -0700540 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
541
David S. Miller1d299bc2011-11-14 20:32:16 -0800542 restart_syscall = 0;
543 if (pt_regs_is_syscall(regs) &&
544 (regs->tstate & (TSTATE_XCARRY | TSTATE_ICARRY))) {
545 restart_syscall = 1;
David S. Millere88d2462011-11-15 12:57:00 -0800546 orig_i0 = regs->u_regs[UREG_G6];
David S. Miller1d299bc2011-11-14 20:32:16 -0800547 }
David S. Miller28e61032008-05-11 02:07:19 -0700548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (signr > 0) {
David S. Miller28e61032008-05-11 02:07:19 -0700550 if (restart_syscall)
551 syscall_restart(orig_i0, regs, &ka.sa);
Al Viroa610d6e2012-05-21 23:42:15 -0400552 handle_signal(signr, &ka, &info, oldset, regs);
David S. Miller2d7d5f02006-01-19 02:42:49 -0800553 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
David S. Miller28e61032008-05-11 02:07:19 -0700555 if (restart_syscall &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 (regs->u_regs[UREG_I0] == ERESTARTNOHAND ||
557 regs->u_regs[UREG_I0] == ERESTARTSYS ||
558 regs->u_regs[UREG_I0] == ERESTARTNOINTR)) {
559 /* replay the system call when we are done */
David S. Miller28e61032008-05-11 02:07:19 -0700560 regs->u_regs[UREG_I0] = orig_i0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 regs->tpc -= 4;
562 regs->tnpc -= 4;
David S. Millerc2785252010-09-21 22:30:13 -0700563 pt_regs_clear_syscall(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
David S. Miller28e61032008-05-11 02:07:19 -0700565 if (restart_syscall &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 regs->u_regs[UREG_I0] == ERESTART_RESTARTBLOCK) {
567 regs->u_regs[UREG_G1] = __NR_restart_syscall;
568 regs->tpc -= 4;
569 regs->tnpc -= 4;
David S. Millerc2785252010-09-21 22:30:13 -0700570 pt_regs_clear_syscall(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
David S. Miller2d7d5f02006-01-19 02:42:49 -0800572
David S. Miller9a28dbf2008-05-12 22:45:15 -0700573 /* If there's no signal to deliver, we just put the saved sigmask
David S. Miller2d7d5f02006-01-19 02:42:49 -0800574 * back
575 */
Al Viro51a7b442012-05-21 23:33:55 -0400576 restore_saved_sigmask();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
David S. Miller7697daa2008-04-24 03:15:22 -0700579void do_notify_resume(struct pt_regs *regs, unsigned long orig_i0, unsigned long thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
David S. Miller9a28dbf2008-05-12 22:45:15 -0700581 if (thread_info_flags & _TIF_SIGPENDING)
David S. Miller238468b2008-04-24 03:01:48 -0700582 do_signal(regs, orig_i0);
Roland McGrathe35a8922008-04-20 15:06:49 -0700583 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
584 clear_thread_flag(TIF_NOTIFY_RESUME);
585 tracehook_notify_resume(regs);
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
David Howellsee18d642009-09-02 09:14:21 +0100588