signal_64.c 26 KB

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