signal_64.c 27 KB

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