6faa8240b7c9fd35a4b256f9c0cec2339f8b4f3f
[cascardo/linux.git] / arch / powerpc / kernel / signal_64.c
1 /*
2  *  PowerPC version 
3  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4  *
5  *  Derived from "arch/i386/kernel/signal.c"
6  *    Copyright (C) 1991, 1992 Linus Torvalds
7  *    1997-11-28  Modified for POSIX.1b signals by Richard Henderson
8  *
9  *  This program is free software; you can redistribute it and/or
10  *  modify it under the terms of the GNU General Public License
11  *  as published by the Free Software Foundation; either version
12  *  2 of the License, or (at your option) any later version.
13  */
14
15 #include <linux/sched.h>
16 #include <linux/mm.h>
17 #include <linux/smp.h>
18 #include <linux/kernel.h>
19 #include <linux/signal.h>
20 #include <linux/errno.h>
21 #include <linux/wait.h>
22 #include <linux/unistd.h>
23 #include <linux/stddef.h>
24 #include <linux/elf.h>
25 #include <linux/ptrace.h>
26 #include <linux/ratelimit.h>
27
28 #include <asm/sigcontext.h>
29 #include <asm/ucontext.h>
30 #include <asm/uaccess.h>
31 #include <asm/pgtable.h>
32 #include <asm/unistd.h>
33 #include <asm/cacheflush.h>
34 #include <asm/syscalls.h>
35 #include <asm/vdso.h>
36 #include <asm/switch_to.h>
37 #include <asm/tm.h>
38 #include <asm/asm-prototypes.h>
39
40 #include "signal.h"
41
42
43 #define GP_REGS_SIZE    min(sizeof(elf_gregset_t), sizeof(struct pt_regs))
44 #define FP_REGS_SIZE    sizeof(elf_fpregset_t)
45
46 #define TRAMP_TRACEBACK 3
47 #define TRAMP_SIZE      6
48
49 /*
50  * When we have signals to deliver, we set up on the user stack,
51  * going down from the original stack pointer:
52  *      1) a rt_sigframe struct which contains the ucontext     
53  *      2) a gap of __SIGNAL_FRAMESIZE bytes which acts as a dummy caller
54  *         frame for the signal handler.
55  */
56
57 struct rt_sigframe {
58         /* sys_rt_sigreturn requires the ucontext be the first field */
59         struct ucontext uc;
60 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
61         struct ucontext uc_transact;
62 #endif
63         unsigned long _unused[2];
64         unsigned int tramp[TRAMP_SIZE];
65         struct siginfo __user *pinfo;
66         void __user *puc;
67         struct siginfo info;
68         /* New 64 bit little-endian ABI allows redzone of 512 bytes below sp */
69         char abigap[USER_REDZONE_SIZE];
70 } __attribute__ ((aligned (16)));
71
72 static const char fmt32[] = KERN_INFO \
73         "%s[%d]: bad frame in %s: %08lx nip %08lx lr %08lx\n";
74 static const char fmt64[] = KERN_INFO \
75         "%s[%d]: bad frame in %s: %016lx nip %016lx lr %016lx\n";
76
77 /*
78  * This computes a quad word aligned pointer inside the vmx_reserve array
79  * element. For historical reasons sigcontext might not be quad word aligned,
80  * but the location we write the VMX regs to must be. See the comment in
81  * sigcontext for more detail.
82  */
83 #ifdef CONFIG_ALTIVEC
84 static elf_vrreg_t __user *sigcontext_vmx_regs(struct sigcontext __user *sc)
85 {
86         return (elf_vrreg_t __user *) (((unsigned long)sc->vmx_reserve + 15) & ~0xful);
87 }
88 #endif
89
90 /*
91  * Set up the sigcontext for the signal frame.
92  */
93
94 static long setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
95                  int signr, sigset_t *set, unsigned long handler,
96                  int ctx_has_vsx_region)
97 {
98         /* When CONFIG_ALTIVEC is set, we _always_ setup v_regs even if the
99          * process never used altivec yet (MSR_VEC is zero in pt_regs of
100          * the context). This is very important because we must ensure we
101          * don't lose the VRSAVE content that may have been set prior to
102          * the process doing its first vector operation
103          * Userland shall check AT_HWCAP to know whether it can rely on the
104          * v_regs pointer or not
105          */
106 #ifdef CONFIG_ALTIVEC
107         elf_vrreg_t __user *v_regs = sigcontext_vmx_regs(sc);
108         unsigned long vrsave;
109 #endif
110         unsigned long msr = regs->msr;
111         long err = 0;
112
113 #ifdef CONFIG_ALTIVEC
114         err |= __put_user(v_regs, &sc->v_regs);
115
116         /* save altivec registers */
117         if (current->thread.used_vr) {
118                 flush_altivec_to_thread(current);
119                 /* Copy 33 vec registers (vr0..31 and vscr) to the stack */
120                 err |= __copy_to_user(v_regs, &current->thread.vr_state,
121                                       33 * sizeof(vector128));
122                 /* set MSR_VEC in the MSR value in the frame to indicate that sc->v_reg)
123                  * contains valid data.
124                  */
125                 msr |= MSR_VEC;
126         }
127         /* We always copy to/from vrsave, it's 0 if we don't have or don't
128          * use altivec.
129          */
130         vrsave = 0;
131         if (cpu_has_feature(CPU_FTR_ALTIVEC)) {
132                 vrsave = mfspr(SPRN_VRSAVE);
133                 current->thread.vrsave = vrsave;
134         }
135
136         err |= __put_user(vrsave, (u32 __user *)&v_regs[33]);
137 #else /* CONFIG_ALTIVEC */
138         err |= __put_user(0, &sc->v_regs);
139 #endif /* CONFIG_ALTIVEC */
140         flush_fp_to_thread(current);
141         /* copy fpr regs and fpscr */
142         err |= copy_fpr_to_user(&sc->fp_regs, current);
143
144         /*
145          * Clear the MSR VSX bit to indicate there is no valid state attached
146          * to this context, except in the specific case below where we set it.
147          */
148         msr &= ~MSR_VSX;
149 #ifdef CONFIG_VSX
150         /*
151          * Copy VSX low doubleword to local buffer for formatting,
152          * then out to userspace.  Update v_regs to point after the
153          * VMX data.
154          */
155         if (current->thread.used_vsr && ctx_has_vsx_region) {
156                 flush_vsx_to_thread(current);
157                 v_regs += ELF_NVRREG;
158                 err |= copy_vsx_to_user(v_regs, current);
159                 /* set MSR_VSX in the MSR value in the frame to
160                  * indicate that sc->vs_reg) contains valid data.
161                  */
162                 msr |= MSR_VSX;
163         }
164 #endif /* CONFIG_VSX */
165         err |= __put_user(&sc->gp_regs, &sc->regs);
166         WARN_ON(!FULL_REGS(regs));
167         err |= __copy_to_user(&sc->gp_regs, regs, GP_REGS_SIZE);
168         err |= __put_user(msr, &sc->gp_regs[PT_MSR]);
169         err |= __put_user(signr, &sc->signal);
170         err |= __put_user(handler, &sc->handler);
171         if (set != NULL)
172                 err |=  __put_user(set->sig[0], &sc->oldmask);
173
174         return err;
175 }
176
177 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
178 /*
179  * As above, but Transactional Memory is in use, so deliver sigcontexts
180  * containing checkpointed and transactional register states.
181  *
182  * To do this, we treclaim (done before entering here) to gather both sets of
183  * registers and set up the 'normal' sigcontext registers with rolled-back
184  * register values such that a simple signal handler sees a correct
185  * checkpointed register state.  If interested, a TM-aware sighandler can
186  * examine the transactional registers in the 2nd sigcontext to determine the
187  * real origin of the signal.
188  */
189 static long setup_tm_sigcontexts(struct sigcontext __user *sc,
190                                  struct sigcontext __user *tm_sc,
191                                  struct pt_regs *regs,
192                                  int signr, sigset_t *set, unsigned long handler)
193 {
194         /* When CONFIG_ALTIVEC is set, we _always_ setup v_regs even if the
195          * process never used altivec yet (MSR_VEC is zero in pt_regs of
196          * the context). This is very important because we must ensure we
197          * don't lose the VRSAVE content that may have been set prior to
198          * the process doing its first vector operation
199          * Userland shall check AT_HWCAP to know wether it can rely on the
200          * v_regs pointer or not.
201          */
202 #ifdef CONFIG_ALTIVEC
203         elf_vrreg_t __user *v_regs = sigcontext_vmx_regs(sc);
204         elf_vrreg_t __user *tm_v_regs = sigcontext_vmx_regs(tm_sc);
205 #endif
206         unsigned long msr = regs->msr;
207         long err = 0;
208
209         BUG_ON(!MSR_TM_ACTIVE(regs->msr));
210
211         /* Remove TM bits from thread's MSR.  The MSR in the sigcontext
212          * just indicates to userland that we were doing a transaction, but we
213          * don't want to return in transactional state.  This also ensures
214          * that flush_fp_to_thread won't set TIF_RESTORE_TM again.
215          */
216         regs->msr &= ~MSR_TS_MASK;
217
218         flush_fp_to_thread(current);
219
220 #ifdef CONFIG_ALTIVEC
221         err |= __put_user(v_regs, &sc->v_regs);
222         err |= __put_user(tm_v_regs, &tm_sc->v_regs);
223
224         /* save altivec registers */
225         if (current->thread.used_vr) {
226                 flush_altivec_to_thread(current);
227                 /* Copy 33 vec registers (vr0..31 and vscr) to the stack */
228                 err |= __copy_to_user(v_regs, &current->thread.vr_state,
229                                       33 * sizeof(vector128));
230                 /* If VEC was enabled there are transactional VRs valid too,
231                  * else they're a copy of the checkpointed VRs.
232                  */
233                 if (msr & MSR_VEC)
234                         err |= __copy_to_user(tm_v_regs,
235                                               &current->thread.transact_vr,
236                                               33 * sizeof(vector128));
237                 else
238                         err |= __copy_to_user(tm_v_regs,
239                                               &current->thread.vr_state,
240                                               33 * sizeof(vector128));
241
242                 /* set MSR_VEC in the MSR value in the frame to indicate
243                  * that sc->v_reg contains valid data.
244                  */
245                 msr |= MSR_VEC;
246         }
247         /* We always copy to/from vrsave, it's 0 if we don't have or don't
248          * use altivec.
249          */
250         if (cpu_has_feature(CPU_FTR_ALTIVEC))
251                 current->thread.vrsave = mfspr(SPRN_VRSAVE);
252         err |= __put_user(current->thread.vrsave, (u32 __user *)&v_regs[33]);
253         if (msr & MSR_VEC)
254                 err |= __put_user(current->thread.transact_vrsave,
255                                   (u32 __user *)&tm_v_regs[33]);
256         else
257                 err |= __put_user(current->thread.vrsave,
258                                   (u32 __user *)&tm_v_regs[33]);
259
260 #else /* CONFIG_ALTIVEC */
261         err |= __put_user(0, &sc->v_regs);
262         err |= __put_user(0, &tm_sc->v_regs);
263 #endif /* CONFIG_ALTIVEC */
264
265         /* copy fpr regs and fpscr */
266         err |= copy_fpr_to_user(&sc->fp_regs, current);
267         if (msr & MSR_FP)
268                 err |= copy_transact_fpr_to_user(&tm_sc->fp_regs, current);
269         else
270                 err |= copy_fpr_to_user(&tm_sc->fp_regs, current);
271
272 #ifdef CONFIG_VSX
273         /*
274          * Copy VSX low doubleword to local buffer for formatting,
275          * then out to userspace.  Update v_regs to point after the
276          * VMX data.
277          */
278         if (current->thread.used_vsr) {
279                 flush_vsx_to_thread(current);
280                 v_regs += ELF_NVRREG;
281                 tm_v_regs += ELF_NVRREG;
282
283                 err |= copy_vsx_to_user(v_regs, current);
284
285                 if (msr & MSR_VSX)
286                         err |= copy_transact_vsx_to_user(tm_v_regs, current);
287                 else
288                         err |= copy_vsx_to_user(tm_v_regs, current);
289
290                 /* set MSR_VSX in the MSR value in the frame to
291                  * indicate that sc->vs_reg) contains valid data.
292                  */
293                 msr |= MSR_VSX;
294         }
295 #endif /* CONFIG_VSX */
296
297         err |= __put_user(&sc->gp_regs, &sc->regs);
298         err |= __put_user(&tm_sc->gp_regs, &tm_sc->regs);
299         WARN_ON(!FULL_REGS(regs));
300         err |= __copy_to_user(&tm_sc->gp_regs, regs, GP_REGS_SIZE);
301         err |= __copy_to_user(&sc->gp_regs,
302                               &current->thread.ckpt_regs, GP_REGS_SIZE);
303         err |= __put_user(msr, &tm_sc->gp_regs[PT_MSR]);
304         err |= __put_user(msr, &sc->gp_regs[PT_MSR]);
305         err |= __put_user(signr, &sc->signal);
306         err |= __put_user(handler, &sc->handler);
307         if (set != NULL)
308                 err |=  __put_user(set->sig[0], &sc->oldmask);
309
310         return err;
311 }
312 #endif
313
314 /*
315  * Restore the sigcontext from the signal frame.
316  */
317
318 static long restore_sigcontext(struct pt_regs *regs, sigset_t *set, int sig,
319                               struct sigcontext __user *sc)
320 {
321 #ifdef CONFIG_ALTIVEC
322         elf_vrreg_t __user *v_regs;
323 #endif
324         unsigned long err = 0;
325         unsigned long save_r13 = 0;
326         unsigned long msr;
327 #ifdef CONFIG_VSX
328         int i;
329 #endif
330
331         /* If this is not a signal return, we preserve the TLS in r13 */
332         if (!sig)
333                 save_r13 = regs->gpr[13];
334
335         /* copy the GPRs */
336         err |= __copy_from_user(regs->gpr, sc->gp_regs, sizeof(regs->gpr));
337         err |= __get_user(regs->nip, &sc->gp_regs[PT_NIP]);
338         /* get MSR separately, transfer the LE bit if doing signal return */
339         err |= __get_user(msr, &sc->gp_regs[PT_MSR]);
340         if (sig)
341                 regs->msr = (regs->msr & ~MSR_LE) | (msr & MSR_LE);
342         err |= __get_user(regs->orig_gpr3, &sc->gp_regs[PT_ORIG_R3]);
343         err |= __get_user(regs->ctr, &sc->gp_regs[PT_CTR]);
344         err |= __get_user(regs->link, &sc->gp_regs[PT_LNK]);
345         err |= __get_user(regs->xer, &sc->gp_regs[PT_XER]);
346         err |= __get_user(regs->ccr, &sc->gp_regs[PT_CCR]);
347         /* skip SOFTE */
348         regs->trap = 0;
349         err |= __get_user(regs->dar, &sc->gp_regs[PT_DAR]);
350         err |= __get_user(regs->dsisr, &sc->gp_regs[PT_DSISR]);
351         err |= __get_user(regs->result, &sc->gp_regs[PT_RESULT]);
352
353         if (!sig)
354                 regs->gpr[13] = save_r13;
355         if (set != NULL)
356                 err |=  __get_user(set->sig[0], &sc->oldmask);
357
358         /*
359          * Force reload of FP/VEC.
360          * This has to be done before copying stuff into current->thread.fpr/vr
361          * for the reasons explained in the previous comment.
362          */
363         regs->msr &= ~(MSR_FP | MSR_FE0 | MSR_FE1 | MSR_VEC | MSR_VSX);
364
365 #ifdef CONFIG_ALTIVEC
366         err |= __get_user(v_regs, &sc->v_regs);
367         if (err)
368                 return err;
369         if (v_regs && !access_ok(VERIFY_READ, v_regs, 34 * sizeof(vector128)))
370                 return -EFAULT;
371         /* Copy 33 vec registers (vr0..31 and vscr) from the stack */
372         if (v_regs != NULL && (msr & MSR_VEC) != 0) {
373                 err |= __copy_from_user(&current->thread.vr_state, v_regs,
374                                         33 * sizeof(vector128));
375                 current->thread.used_vr = true;
376         }
377         else if (current->thread.used_vr)
378                 memset(&current->thread.vr_state, 0, 33 * sizeof(vector128));
379         /* Always get VRSAVE back */
380         if (v_regs != NULL)
381                 err |= __get_user(current->thread.vrsave, (u32 __user *)&v_regs[33]);
382         else
383                 current->thread.vrsave = 0;
384         if (cpu_has_feature(CPU_FTR_ALTIVEC))
385                 mtspr(SPRN_VRSAVE, current->thread.vrsave);
386 #endif /* CONFIG_ALTIVEC */
387         /* restore floating point */
388         err |= copy_fpr_from_user(current, &sc->fp_regs);
389 #ifdef CONFIG_VSX
390         /*
391          * Get additional VSX data. Update v_regs to point after the
392          * VMX data.  Copy VSX low doubleword from userspace to local
393          * buffer for formatting, then into the taskstruct.
394          */
395         v_regs += ELF_NVRREG;
396         if ((msr & MSR_VSX) != 0) {
397                 err |= copy_vsx_from_user(current, v_regs);
398                 current->thread.used_vsr = true;
399         } else
400                 for (i = 0; i < 32 ; i++)
401                         current->thread.fp_state.fpr[i][TS_VSRLOWOFFSET] = 0;
402 #endif
403         return err;
404 }
405
406 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
407 /*
408  * Restore the two sigcontexts from the frame of a transactional processes.
409  */
410
411 static long restore_tm_sigcontexts(struct pt_regs *regs,
412                                    struct sigcontext __user *sc,
413                                    struct sigcontext __user *tm_sc)
414 {
415 #ifdef CONFIG_ALTIVEC
416         elf_vrreg_t __user *v_regs, *tm_v_regs;
417 #endif
418         unsigned long err = 0;
419         unsigned long msr;
420 #ifdef CONFIG_VSX
421         int i;
422 #endif
423         /* copy the GPRs */
424         err |= __copy_from_user(regs->gpr, tm_sc->gp_regs, sizeof(regs->gpr));
425         err |= __copy_from_user(&current->thread.ckpt_regs, sc->gp_regs,
426                                 sizeof(regs->gpr));
427
428         /*
429          * TFHAR is restored from the checkpointed 'wound-back' ucontext's NIP.
430          * TEXASR was set by the signal delivery reclaim, as was TFIAR.
431          * Users doing anything abhorrent like thread-switching w/ signals for
432          * TM-Suspended code will have to back TEXASR/TFIAR up themselves.
433          * For the case of getting a signal and simply returning from it,
434          * we don't need to re-copy them here.
435          */
436         err |= __get_user(regs->nip, &tm_sc->gp_regs[PT_NIP]);
437         err |= __get_user(current->thread.tm_tfhar, &sc->gp_regs[PT_NIP]);
438
439         /* get MSR separately, transfer the LE bit if doing signal return */
440         err |= __get_user(msr, &sc->gp_regs[PT_MSR]);
441         /* Don't allow reserved mode. */
442         if (MSR_TM_RESV(msr))
443                 return -EINVAL;
444
445         /* pull in MSR TM from user context */
446         regs->msr = (regs->msr & ~MSR_TS_MASK) | (msr & MSR_TS_MASK);
447
448         /* pull in MSR LE from user context */
449         regs->msr = (regs->msr & ~MSR_LE) | (msr & MSR_LE);
450
451         /* The following non-GPR non-FPR non-VR state is also checkpointed: */
452         err |= __get_user(regs->ctr, &tm_sc->gp_regs[PT_CTR]);
453         err |= __get_user(regs->link, &tm_sc->gp_regs[PT_LNK]);
454         err |= __get_user(regs->xer, &tm_sc->gp_regs[PT_XER]);
455         err |= __get_user(regs->ccr, &tm_sc->gp_regs[PT_CCR]);
456         err |= __get_user(current->thread.ckpt_regs.ctr,
457                           &sc->gp_regs[PT_CTR]);
458         err |= __get_user(current->thread.ckpt_regs.link,
459                           &sc->gp_regs[PT_LNK]);
460         err |= __get_user(current->thread.ckpt_regs.xer,
461                           &sc->gp_regs[PT_XER]);
462         err |= __get_user(current->thread.ckpt_regs.ccr,
463                           &sc->gp_regs[PT_CCR]);
464
465         /* These regs are not checkpointed; they can go in 'regs'. */
466         err |= __get_user(regs->trap, &sc->gp_regs[PT_TRAP]);
467         err |= __get_user(regs->dar, &sc->gp_regs[PT_DAR]);
468         err |= __get_user(regs->dsisr, &sc->gp_regs[PT_DSISR]);
469         err |= __get_user(regs->result, &sc->gp_regs[PT_RESULT]);
470
471         /*
472          * Force reload of FP/VEC.
473          * This has to be done before copying stuff into current->thread.fpr/vr
474          * for the reasons explained in the previous comment.
475          */
476         regs->msr &= ~(MSR_FP | MSR_FE0 | MSR_FE1 | MSR_VEC | MSR_VSX);
477
478 #ifdef CONFIG_ALTIVEC
479         err |= __get_user(v_regs, &sc->v_regs);
480         err |= __get_user(tm_v_regs, &tm_sc->v_regs);
481         if (err)
482                 return err;
483         if (v_regs && !access_ok(VERIFY_READ, v_regs, 34 * sizeof(vector128)))
484                 return -EFAULT;
485         if (tm_v_regs && !access_ok(VERIFY_READ,
486                                     tm_v_regs, 34 * sizeof(vector128)))
487                 return -EFAULT;
488         /* Copy 33 vec registers (vr0..31 and vscr) from the stack */
489         if (v_regs != NULL && tm_v_regs != NULL && (msr & MSR_VEC) != 0) {
490                 err |= __copy_from_user(&current->thread.vr_state, v_regs,
491                                         33 * sizeof(vector128));
492                 err |= __copy_from_user(&current->thread.transact_vr, tm_v_regs,
493                                         33 * sizeof(vector128));
494                 current->thread.used_vr = true;
495         }
496         else if (current->thread.used_vr) {
497                 memset(&current->thread.vr_state, 0, 33 * sizeof(vector128));
498                 memset(&current->thread.transact_vr, 0, 33 * sizeof(vector128));
499         }
500         /* Always get VRSAVE back */
501         if (v_regs != NULL && tm_v_regs != NULL) {
502                 err |= __get_user(current->thread.vrsave,
503                                   (u32 __user *)&v_regs[33]);
504                 err |= __get_user(current->thread.transact_vrsave,
505                                   (u32 __user *)&tm_v_regs[33]);
506         }
507         else {
508                 current->thread.vrsave = 0;
509                 current->thread.transact_vrsave = 0;
510         }
511         if (cpu_has_feature(CPU_FTR_ALTIVEC))
512                 mtspr(SPRN_VRSAVE, current->thread.vrsave);
513 #endif /* CONFIG_ALTIVEC */
514         /* restore floating point */
515         err |= copy_fpr_from_user(current, &sc->fp_regs);
516         err |= copy_transact_fpr_from_user(current, &tm_sc->fp_regs);
517 #ifdef CONFIG_VSX
518         /*
519          * Get additional VSX data. Update v_regs to point after the
520          * VMX data.  Copy VSX low doubleword from userspace to local
521          * buffer for formatting, then into the taskstruct.
522          */
523         if (v_regs && ((msr & MSR_VSX) != 0)) {
524                 v_regs += ELF_NVRREG;
525                 tm_v_regs += ELF_NVRREG;
526                 err |= copy_vsx_from_user(current, v_regs);
527                 err |= copy_transact_vsx_from_user(current, tm_v_regs);
528                 current->thread.used_vsr = true;
529         } else {
530                 for (i = 0; i < 32 ; i++) {
531                         current->thread.fp_state.fpr[i][TS_VSRLOWOFFSET] = 0;
532                         current->thread.transact_fp.fpr[i][TS_VSRLOWOFFSET] = 0;
533                 }
534         }
535 #endif
536         tm_enable();
537         /* Make sure the transaction is marked as failed */
538         current->thread.tm_texasr |= TEXASR_FS;
539         /* This loads the checkpointed FP/VEC state, if used */
540         tm_recheckpoint(&current->thread, msr);
541
542         /* This loads the speculative FP/VEC state, if used */
543         if (msr & MSR_FP) {
544                 do_load_up_transact_fpu(&current->thread);
545                 regs->msr |= (MSR_FP | current->thread.fpexc_mode);
546         }
547 #ifdef CONFIG_ALTIVEC
548         if (msr & MSR_VEC) {
549                 do_load_up_transact_altivec(&current->thread);
550                 regs->msr |= MSR_VEC;
551         }
552 #endif
553
554         return err;
555 }
556 #endif
557
558 /*
559  * Setup the trampoline code on the stack
560  */
561 static long setup_trampoline(unsigned int syscall, unsigned int __user *tramp)
562 {
563         int i;
564         long err = 0;
565
566         /* addi r1, r1, __SIGNAL_FRAMESIZE  # Pop the dummy stackframe */
567         err |= __put_user(0x38210000UL | (__SIGNAL_FRAMESIZE & 0xffff), &tramp[0]);
568         /* li r0, __NR_[rt_]sigreturn| */
569         err |= __put_user(0x38000000UL | (syscall & 0xffff), &tramp[1]);
570         /* sc */
571         err |= __put_user(0x44000002UL, &tramp[2]);
572
573         /* Minimal traceback info */
574         for (i=TRAMP_TRACEBACK; i < TRAMP_SIZE ;i++)
575                 err |= __put_user(0, &tramp[i]);
576
577         if (!err)
578                 flush_icache_range((unsigned long) &tramp[0],
579                            (unsigned long) &tramp[TRAMP_SIZE]);
580
581         return err;
582 }
583
584 /*
585  * Userspace code may pass a ucontext which doesn't include VSX added
586  * at the end.  We need to check for this case.
587  */
588 #define UCONTEXTSIZEWITHOUTVSX \
589                 (sizeof(struct ucontext) - 32*sizeof(long))
590
591 /*
592  * Handle {get,set,swap}_context operations
593  */
594 int sys_swapcontext(struct ucontext __user *old_ctx,
595                     struct ucontext __user *new_ctx,
596                     long ctx_size, long r6, long r7, long r8, struct pt_regs *regs)
597 {
598         unsigned char tmp;
599         sigset_t set;
600         unsigned long new_msr = 0;
601         int ctx_has_vsx_region = 0;
602
603         if (new_ctx &&
604             get_user(new_msr, &new_ctx->uc_mcontext.gp_regs[PT_MSR]))
605                 return -EFAULT;
606         /*
607          * Check that the context is not smaller than the original
608          * size (with VMX but without VSX)
609          */
610         if (ctx_size < UCONTEXTSIZEWITHOUTVSX)
611                 return -EINVAL;
612         /*
613          * If the new context state sets the MSR VSX bits but
614          * it doesn't provide VSX state.
615          */
616         if ((ctx_size < sizeof(struct ucontext)) &&
617             (new_msr & MSR_VSX))
618                 return -EINVAL;
619         /* Does the context have enough room to store VSX data? */
620         if (ctx_size >= sizeof(struct ucontext))
621                 ctx_has_vsx_region = 1;
622
623         if (old_ctx != NULL) {
624                 if (!access_ok(VERIFY_WRITE, old_ctx, ctx_size)
625                     || setup_sigcontext(&old_ctx->uc_mcontext, regs, 0, NULL, 0,
626                                         ctx_has_vsx_region)
627                     || __copy_to_user(&old_ctx->uc_sigmask,
628                                       &current->blocked, sizeof(sigset_t)))
629                         return -EFAULT;
630         }
631         if (new_ctx == NULL)
632                 return 0;
633         if (!access_ok(VERIFY_READ, new_ctx, ctx_size)
634             || __get_user(tmp, (u8 __user *) new_ctx)
635             || __get_user(tmp, (u8 __user *) new_ctx + ctx_size - 1))
636                 return -EFAULT;
637
638         /*
639          * If we get a fault copying the context into the kernel's
640          * image of the user's registers, we can't just return -EFAULT
641          * because the user's registers will be corrupted.  For instance
642          * the NIP value may have been updated but not some of the
643          * other registers.  Given that we have done the access_ok
644          * and successfully read the first and last bytes of the region
645          * above, this should only happen in an out-of-memory situation
646          * or if another thread unmaps the region containing the context.
647          * We kill the task with a SIGSEGV in this situation.
648          */
649
650         if (__copy_from_user(&set, &new_ctx->uc_sigmask, sizeof(set)))
651                 do_exit(SIGSEGV);
652         set_current_blocked(&set);
653         if (restore_sigcontext(regs, NULL, 0, &new_ctx->uc_mcontext))
654                 do_exit(SIGSEGV);
655
656         /* This returns like rt_sigreturn */
657         set_thread_flag(TIF_RESTOREALL);
658         return 0;
659 }
660
661
662 /*
663  * Do a signal return; undo the signal stack.
664  */
665
666 int sys_rt_sigreturn(unsigned long r3, unsigned long r4, unsigned long r5,
667                      unsigned long r6, unsigned long r7, unsigned long r8,
668                      struct pt_regs *regs)
669 {
670         struct ucontext __user *uc = (struct ucontext __user *)regs->gpr[1];
671         sigset_t set;
672 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
673         unsigned long msr;
674 #endif
675
676         /* Always make any pending restarted system calls return -EINTR */
677         current->restart_block.fn = do_no_restart_syscall;
678
679         if (!access_ok(VERIFY_READ, uc, sizeof(*uc)))
680                 goto badframe;
681
682         if (__copy_from_user(&set, &uc->uc_sigmask, sizeof(set)))
683                 goto badframe;
684         set_current_blocked(&set);
685
686 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
687         /*
688          * If there is a transactional state then throw it away.
689          * The purpose of a sigreturn is to destroy all traces of the
690          * signal frame, this includes any transactional state created
691          * within in. We only check for suspended as we can never be
692          * active in the kernel, we are active, there is nothing better to
693          * do than go ahead and Bad Thing later.
694          * The cause is not important as there will never be a
695          * recheckpoint so it's not user visible.
696          */
697         if (MSR_TM_SUSPENDED(mfmsr()))
698                 tm_reclaim_current(0);
699
700         if (__get_user(msr, &uc->uc_mcontext.gp_regs[PT_MSR]))
701                 goto badframe;
702         if (MSR_TM_ACTIVE(msr)) {
703                 /* We recheckpoint on return. */
704                 struct ucontext __user *uc_transact;
705                 if (__get_user(uc_transact, &uc->uc_link))
706                         goto badframe;
707                 if (restore_tm_sigcontexts(regs, &uc->uc_mcontext,
708                                            &uc_transact->uc_mcontext))
709                         goto badframe;
710         }
711         else
712         /* Fall through, for non-TM restore */
713 #endif
714         if (restore_sigcontext(regs, NULL, 1, &uc->uc_mcontext))
715                 goto badframe;
716
717         if (restore_altstack(&uc->uc_stack))
718                 goto badframe;
719
720         set_thread_flag(TIF_RESTOREALL);
721         return 0;
722
723 badframe:
724         if (show_unhandled_signals)
725                 printk_ratelimited(regs->msr & MSR_64BIT ? fmt64 : fmt32,
726                                    current->comm, current->pid, "rt_sigreturn",
727                                    (long)uc, regs->nip, regs->link);
728
729         force_sig(SIGSEGV, current);
730         return 0;
731 }
732
733 int handle_rt_signal64(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
734 {
735         struct rt_sigframe __user *frame;
736         unsigned long newsp = 0;
737         long err = 0;
738
739         frame = get_sigframe(ksig, get_tm_stackpointer(regs), sizeof(*frame), 0);
740         if (unlikely(frame == NULL))
741                 goto badframe;
742
743         err |= __put_user(&frame->info, &frame->pinfo);
744         err |= __put_user(&frame->uc, &frame->puc);
745         err |= copy_siginfo_to_user(&frame->info, &ksig->info);
746         if (err)
747                 goto badframe;
748
749         /* Create the ucontext.  */
750         err |= __put_user(0, &frame->uc.uc_flags);
751         err |= __save_altstack(&frame->uc.uc_stack, regs->gpr[1]);
752 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
753         if (MSR_TM_ACTIVE(regs->msr)) {
754                 /* The ucontext_t passed to userland points to the second
755                  * ucontext_t (for transactional state) with its uc_link ptr.
756                  */
757                 err |= __put_user(&frame->uc_transact, &frame->uc.uc_link);
758                 err |= setup_tm_sigcontexts(&frame->uc.uc_mcontext,
759                                             &frame->uc_transact.uc_mcontext,
760                                             regs, ksig->sig,
761                                             NULL,
762                                             (unsigned long)ksig->ka.sa.sa_handler);
763         } else
764 #endif
765         {
766                 err |= __put_user(0, &frame->uc.uc_link);
767                 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, ksig->sig,
768                                         NULL, (unsigned long)ksig->ka.sa.sa_handler,
769                                         1);
770         }
771         err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
772         if (err)
773                 goto badframe;
774
775         /* Make sure signal handler doesn't get spurious FP exceptions */
776         current->thread.fp_state.fpscr = 0;
777
778         /* Set up to return from userspace. */
779         if (vdso64_rt_sigtramp && current->mm->context.vdso_base) {
780                 regs->link = current->mm->context.vdso_base + vdso64_rt_sigtramp;
781         } else {
782                 err |= setup_trampoline(__NR_rt_sigreturn, &frame->tramp[0]);
783                 if (err)
784                         goto badframe;
785                 regs->link = (unsigned long) &frame->tramp[0];
786         }
787
788         /* Allocate a dummy caller frame for the signal handler. */
789         newsp = ((unsigned long)frame) - __SIGNAL_FRAMESIZE;
790         err |= put_user(regs->gpr[1], (unsigned long __user *)newsp);
791
792         /* Set up "regs" so we "return" to the signal handler. */
793         if (is_elf2_task()) {
794                 regs->nip = (unsigned long) ksig->ka.sa.sa_handler;
795                 regs->gpr[12] = regs->nip;
796         } else {
797                 /* Handler is *really* a pointer to the function descriptor for
798                  * the signal routine.  The first entry in the function
799                  * descriptor is the entry address of signal and the second
800                  * entry is the TOC value we need to use.
801                  */
802                 func_descr_t __user *funct_desc_ptr =
803                         (func_descr_t __user *) ksig->ka.sa.sa_handler;
804
805                 err |= get_user(regs->nip, &funct_desc_ptr->entry);
806                 err |= get_user(regs->gpr[2], &funct_desc_ptr->toc);
807         }
808
809         /* enter the signal handler in native-endian mode */
810         regs->msr &= ~MSR_LE;
811         regs->msr |= (MSR_KERNEL & MSR_LE);
812         regs->gpr[1] = newsp;
813         regs->gpr[3] = ksig->sig;
814         regs->result = 0;
815         if (ksig->ka.sa.sa_flags & SA_SIGINFO) {
816                 err |= get_user(regs->gpr[4], (unsigned long __user *)&frame->pinfo);
817                 err |= get_user(regs->gpr[5], (unsigned long __user *)&frame->puc);
818                 regs->gpr[6] = (unsigned long) frame;
819         } else {
820                 regs->gpr[4] = (unsigned long)&frame->uc.uc_mcontext;
821         }
822         if (err)
823                 goto badframe;
824
825         return 0;
826
827 badframe:
828         if (show_unhandled_signals)
829                 printk_ratelimited(regs->msr & MSR_64BIT ? fmt64 : fmt32,
830                                    current->comm, current->pid, "setup_rt_frame",
831                                    (long)frame, regs->nip, regs->link);
832
833         return 1;
834 }