signal32.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  1. /*
  2. * Based on arch/arm/kernel/signal.c
  3. *
  4. * Copyright (C) 1995-2009 Russell King
  5. * Copyright (C) 2012 ARM Ltd.
  6. * Modified by Will Deacon <will.deacon@arm.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include <linux/compat.h>
  21. #include <linux/signal.h>
  22. #include <linux/syscalls.h>
  23. #include <linux/ratelimit.h>
  24. #include <asm/fpsimd.h>
  25. #include <asm/signal32.h>
  26. #include <asm/uaccess.h>
  27. #include <asm/unistd32.h>
  28. struct compat_sigcontext {
  29. /* We always set these two fields to 0 */
  30. compat_ulong_t trap_no;
  31. compat_ulong_t error_code;
  32. compat_ulong_t oldmask;
  33. compat_ulong_t arm_r0;
  34. compat_ulong_t arm_r1;
  35. compat_ulong_t arm_r2;
  36. compat_ulong_t arm_r3;
  37. compat_ulong_t arm_r4;
  38. compat_ulong_t arm_r5;
  39. compat_ulong_t arm_r6;
  40. compat_ulong_t arm_r7;
  41. compat_ulong_t arm_r8;
  42. compat_ulong_t arm_r9;
  43. compat_ulong_t arm_r10;
  44. compat_ulong_t arm_fp;
  45. compat_ulong_t arm_ip;
  46. compat_ulong_t arm_sp;
  47. compat_ulong_t arm_lr;
  48. compat_ulong_t arm_pc;
  49. compat_ulong_t arm_cpsr;
  50. compat_ulong_t fault_address;
  51. };
  52. struct compat_ucontext {
  53. compat_ulong_t uc_flags;
  54. compat_uptr_t uc_link;
  55. compat_stack_t uc_stack;
  56. struct compat_sigcontext uc_mcontext;
  57. compat_sigset_t uc_sigmask;
  58. int __unused[32 - (sizeof (compat_sigset_t) / sizeof (int))];
  59. compat_ulong_t uc_regspace[128] __attribute__((__aligned__(8)));
  60. };
  61. struct compat_vfp_sigframe {
  62. compat_ulong_t magic;
  63. compat_ulong_t size;
  64. struct compat_user_vfp {
  65. compat_u64 fpregs[32];
  66. compat_ulong_t fpscr;
  67. } ufp;
  68. struct compat_user_vfp_exc {
  69. compat_ulong_t fpexc;
  70. compat_ulong_t fpinst;
  71. compat_ulong_t fpinst2;
  72. } ufp_exc;
  73. } __attribute__((__aligned__(8)));
  74. #define VFP_MAGIC 0x56465001
  75. #define VFP_STORAGE_SIZE sizeof(struct compat_vfp_sigframe)
  76. struct compat_aux_sigframe {
  77. struct compat_vfp_sigframe vfp;
  78. /* Something that isn't a valid magic number for any coprocessor. */
  79. unsigned long end_magic;
  80. } __attribute__((__aligned__(8)));
  81. struct compat_sigframe {
  82. struct compat_ucontext uc;
  83. compat_ulong_t retcode[2];
  84. };
  85. struct compat_rt_sigframe {
  86. struct compat_siginfo info;
  87. struct compat_sigframe sig;
  88. };
  89. #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
  90. /*
  91. * For ARM syscalls, the syscall number has to be loaded into r7.
  92. * We do not support an OABI userspace.
  93. */
  94. #define MOV_R7_NR_SIGRETURN (0xe3a07000 | __NR_compat_sigreturn)
  95. #define SVC_SYS_SIGRETURN (0xef000000 | __NR_compat_sigreturn)
  96. #define MOV_R7_NR_RT_SIGRETURN (0xe3a07000 | __NR_compat_rt_sigreturn)
  97. #define SVC_SYS_RT_SIGRETURN (0xef000000 | __NR_compat_rt_sigreturn)
  98. /*
  99. * For Thumb syscalls, we also pass the syscall number via r7. We therefore
  100. * need two 16-bit instructions.
  101. */
  102. #define SVC_THUMB_SIGRETURN (((0xdf00 | __NR_compat_sigreturn) << 16) | \
  103. 0x2700 | __NR_compat_sigreturn)
  104. #define SVC_THUMB_RT_SIGRETURN (((0xdf00 | __NR_compat_rt_sigreturn) << 16) | \
  105. 0x2700 | __NR_compat_rt_sigreturn)
  106. const compat_ulong_t aarch32_sigret_code[6] = {
  107. /*
  108. * AArch32 sigreturn code.
  109. * We don't construct an OABI SWI - instead we just set the imm24 field
  110. * to the EABI syscall number so that we create a sane disassembly.
  111. */
  112. MOV_R7_NR_SIGRETURN, SVC_SYS_SIGRETURN, SVC_THUMB_SIGRETURN,
  113. MOV_R7_NR_RT_SIGRETURN, SVC_SYS_RT_SIGRETURN, SVC_THUMB_RT_SIGRETURN,
  114. };
  115. static inline int put_sigset_t(compat_sigset_t __user *uset, sigset_t *set)
  116. {
  117. compat_sigset_t cset;
  118. cset.sig[0] = set->sig[0] & 0xffffffffull;
  119. cset.sig[1] = set->sig[0] >> 32;
  120. return copy_to_user(uset, &cset, sizeof(*uset));
  121. }
  122. static inline int get_sigset_t(sigset_t *set,
  123. const compat_sigset_t __user *uset)
  124. {
  125. compat_sigset_t s32;
  126. if (copy_from_user(&s32, uset, sizeof(*uset)))
  127. return -EFAULT;
  128. set->sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
  129. return 0;
  130. }
  131. int copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from)
  132. {
  133. int err;
  134. if (!access_ok(VERIFY_WRITE, to, sizeof(*to)))
  135. return -EFAULT;
  136. /* If you change siginfo_t structure, please be sure
  137. * this code is fixed accordingly.
  138. * It should never copy any pad contained in the structure
  139. * to avoid security leaks, but must copy the generic
  140. * 3 ints plus the relevant union member.
  141. * This routine must convert siginfo from 64bit to 32bit as well
  142. * at the same time.
  143. */
  144. err = __put_user(from->si_signo, &to->si_signo);
  145. err |= __put_user(from->si_errno, &to->si_errno);
  146. err |= __put_user((short)from->si_code, &to->si_code);
  147. if (from->si_code < 0)
  148. err |= __copy_to_user(&to->_sifields._pad, &from->_sifields._pad,
  149. SI_PAD_SIZE);
  150. else switch (from->si_code & __SI_MASK) {
  151. case __SI_KILL:
  152. err |= __put_user(from->si_pid, &to->si_pid);
  153. err |= __put_user(from->si_uid, &to->si_uid);
  154. break;
  155. case __SI_TIMER:
  156. err |= __put_user(from->si_tid, &to->si_tid);
  157. err |= __put_user(from->si_overrun, &to->si_overrun);
  158. err |= __put_user((compat_uptr_t)(unsigned long)from->si_ptr,
  159. &to->si_ptr);
  160. break;
  161. case __SI_POLL:
  162. err |= __put_user(from->si_band, &to->si_band);
  163. err |= __put_user(from->si_fd, &to->si_fd);
  164. break;
  165. case __SI_FAULT:
  166. err |= __put_user((compat_uptr_t)(unsigned long)from->si_addr,
  167. &to->si_addr);
  168. #ifdef BUS_MCEERR_AO
  169. /*
  170. * Other callers might not initialize the si_lsb field,
  171. * so check explicitely for the right codes here.
  172. */
  173. if (from->si_code == BUS_MCEERR_AR || from->si_code == BUS_MCEERR_AO)
  174. err |= __put_user(from->si_addr_lsb, &to->si_addr_lsb);
  175. #endif
  176. break;
  177. case __SI_CHLD:
  178. err |= __put_user(from->si_pid, &to->si_pid);
  179. err |= __put_user(from->si_uid, &to->si_uid);
  180. err |= __put_user(from->si_status, &to->si_status);
  181. err |= __put_user(from->si_utime, &to->si_utime);
  182. err |= __put_user(from->si_stime, &to->si_stime);
  183. break;
  184. case __SI_RT: /* This is not generated by the kernel as of now. */
  185. case __SI_MESGQ: /* But this is */
  186. err |= __put_user(from->si_pid, &to->si_pid);
  187. err |= __put_user(from->si_uid, &to->si_uid);
  188. err |= __put_user((compat_uptr_t)(unsigned long)from->si_ptr, &to->si_ptr);
  189. break;
  190. default: /* this is just in case for now ... */
  191. err |= __put_user(from->si_pid, &to->si_pid);
  192. err |= __put_user(from->si_uid, &to->si_uid);
  193. break;
  194. }
  195. return err;
  196. }
  197. int copy_siginfo_from_user32(siginfo_t *to, compat_siginfo_t __user *from)
  198. {
  199. memset(to, 0, sizeof *to);
  200. if (copy_from_user(to, from, __ARCH_SI_PREAMBLE_SIZE) ||
  201. copy_from_user(to->_sifields._pad,
  202. from->_sifields._pad, SI_PAD_SIZE))
  203. return -EFAULT;
  204. return 0;
  205. }
  206. /*
  207. * VFP save/restore code.
  208. */
  209. static int compat_preserve_vfp_context(struct compat_vfp_sigframe __user *frame)
  210. {
  211. struct fpsimd_state *fpsimd = &current->thread.fpsimd_state;
  212. compat_ulong_t magic = VFP_MAGIC;
  213. compat_ulong_t size = VFP_STORAGE_SIZE;
  214. compat_ulong_t fpscr, fpexc;
  215. int err = 0;
  216. /*
  217. * Save the hardware registers to the fpsimd_state structure.
  218. * Note that this also saves V16-31, which aren't visible
  219. * in AArch32.
  220. */
  221. fpsimd_save_state(fpsimd);
  222. /* Place structure header on the stack */
  223. __put_user_error(magic, &frame->magic, err);
  224. __put_user_error(size, &frame->size, err);
  225. /*
  226. * Now copy the FP registers. Since the registers are packed,
  227. * we can copy the prefix we want (V0-V15) as it is.
  228. * FIXME: Won't work if big endian.
  229. */
  230. err |= __copy_to_user(&frame->ufp.fpregs, fpsimd->vregs,
  231. sizeof(frame->ufp.fpregs));
  232. /* Create an AArch32 fpscr from the fpsr and the fpcr. */
  233. fpscr = (fpsimd->fpsr & VFP_FPSCR_STAT_MASK) |
  234. (fpsimd->fpcr & VFP_FPSCR_CTRL_MASK);
  235. __put_user_error(fpscr, &frame->ufp.fpscr, err);
  236. /*
  237. * The exception register aren't available so we fake up a
  238. * basic FPEXC and zero everything else.
  239. */
  240. fpexc = (1 << 30);
  241. __put_user_error(fpexc, &frame->ufp_exc.fpexc, err);
  242. __put_user_error(0, &frame->ufp_exc.fpinst, err);
  243. __put_user_error(0, &frame->ufp_exc.fpinst2, err);
  244. return err ? -EFAULT : 0;
  245. }
  246. static int compat_restore_vfp_context(struct compat_vfp_sigframe __user *frame)
  247. {
  248. struct fpsimd_state fpsimd;
  249. compat_ulong_t magic = VFP_MAGIC;
  250. compat_ulong_t size = VFP_STORAGE_SIZE;
  251. compat_ulong_t fpscr;
  252. int err = 0;
  253. __get_user_error(magic, &frame->magic, err);
  254. __get_user_error(size, &frame->size, err);
  255. if (err)
  256. return -EFAULT;
  257. if (magic != VFP_MAGIC || size != VFP_STORAGE_SIZE)
  258. return -EINVAL;
  259. /*
  260. * Copy the FP registers into the start of the fpsimd_state.
  261. * FIXME: Won't work if big endian.
  262. */
  263. err |= __copy_from_user(fpsimd.vregs, frame->ufp.fpregs,
  264. sizeof(frame->ufp.fpregs));
  265. /* Extract the fpsr and the fpcr from the fpscr */
  266. __get_user_error(fpscr, &frame->ufp.fpscr, err);
  267. fpsimd.fpsr = fpscr & VFP_FPSCR_STAT_MASK;
  268. fpsimd.fpcr = fpscr & VFP_FPSCR_CTRL_MASK;
  269. /*
  270. * We don't need to touch the exception register, so
  271. * reload the hardware state.
  272. */
  273. if (!err) {
  274. preempt_disable();
  275. fpsimd_load_state(&fpsimd);
  276. preempt_enable();
  277. }
  278. return err ? -EFAULT : 0;
  279. }
  280. static int compat_restore_sigframe(struct pt_regs *regs,
  281. struct compat_sigframe __user *sf)
  282. {
  283. int err;
  284. sigset_t set;
  285. struct compat_aux_sigframe __user *aux;
  286. err = get_sigset_t(&set, &sf->uc.uc_sigmask);
  287. if (err == 0) {
  288. sigdelsetmask(&set, ~_BLOCKABLE);
  289. set_current_blocked(&set);
  290. }
  291. __get_user_error(regs->regs[0], &sf->uc.uc_mcontext.arm_r0, err);
  292. __get_user_error(regs->regs[1], &sf->uc.uc_mcontext.arm_r1, err);
  293. __get_user_error(regs->regs[2], &sf->uc.uc_mcontext.arm_r2, err);
  294. __get_user_error(regs->regs[3], &sf->uc.uc_mcontext.arm_r3, err);
  295. __get_user_error(regs->regs[4], &sf->uc.uc_mcontext.arm_r4, err);
  296. __get_user_error(regs->regs[5], &sf->uc.uc_mcontext.arm_r5, err);
  297. __get_user_error(regs->regs[6], &sf->uc.uc_mcontext.arm_r6, err);
  298. __get_user_error(regs->regs[7], &sf->uc.uc_mcontext.arm_r7, err);
  299. __get_user_error(regs->regs[8], &sf->uc.uc_mcontext.arm_r8, err);
  300. __get_user_error(regs->regs[9], &sf->uc.uc_mcontext.arm_r9, err);
  301. __get_user_error(regs->regs[10], &sf->uc.uc_mcontext.arm_r10, err);
  302. __get_user_error(regs->regs[11], &sf->uc.uc_mcontext.arm_fp, err);
  303. __get_user_error(regs->regs[12], &sf->uc.uc_mcontext.arm_ip, err);
  304. __get_user_error(regs->compat_sp, &sf->uc.uc_mcontext.arm_sp, err);
  305. __get_user_error(regs->compat_lr, &sf->uc.uc_mcontext.arm_lr, err);
  306. __get_user_error(regs->pc, &sf->uc.uc_mcontext.arm_pc, err);
  307. __get_user_error(regs->pstate, &sf->uc.uc_mcontext.arm_cpsr, err);
  308. /*
  309. * Avoid compat_sys_sigreturn() restarting.
  310. */
  311. regs->syscallno = ~0UL;
  312. err |= !valid_user_regs(&regs->user_regs);
  313. aux = (struct compat_aux_sigframe __user *) sf->uc.uc_regspace;
  314. if (err == 0)
  315. err |= compat_restore_vfp_context(&aux->vfp);
  316. return err;
  317. }
  318. asmlinkage int compat_sys_sigreturn(struct pt_regs *regs)
  319. {
  320. struct compat_sigframe __user *frame;
  321. /* Always make any pending restarted system calls return -EINTR */
  322. current_thread_info()->restart_block.fn = do_no_restart_syscall;
  323. /*
  324. * Since we stacked the signal on a 64-bit boundary,
  325. * then 'sp' should be word aligned here. If it's
  326. * not, then the user is trying to mess with us.
  327. */
  328. if (regs->compat_sp & 7)
  329. goto badframe;
  330. frame = (struct compat_sigframe __user *)regs->compat_sp;
  331. if (!access_ok(VERIFY_READ, frame, sizeof (*frame)))
  332. goto badframe;
  333. if (compat_restore_sigframe(regs, frame))
  334. goto badframe;
  335. return regs->regs[0];
  336. badframe:
  337. if (show_unhandled_signals)
  338. pr_info_ratelimited("%s[%d]: bad frame in %s: pc=%08llx sp=%08llx\n",
  339. current->comm, task_pid_nr(current), __func__,
  340. regs->pc, regs->sp);
  341. force_sig(SIGSEGV, current);
  342. return 0;
  343. }
  344. asmlinkage int compat_sys_rt_sigreturn(struct pt_regs *regs)
  345. {
  346. struct compat_rt_sigframe __user *frame;
  347. /* Always make any pending restarted system calls return -EINTR */
  348. current_thread_info()->restart_block.fn = do_no_restart_syscall;
  349. /*
  350. * Since we stacked the signal on a 64-bit boundary,
  351. * then 'sp' should be word aligned here. If it's
  352. * not, then the user is trying to mess with us.
  353. */
  354. if (regs->compat_sp & 7)
  355. goto badframe;
  356. frame = (struct compat_rt_sigframe __user *)regs->compat_sp;
  357. if (!access_ok(VERIFY_READ, frame, sizeof (*frame)))
  358. goto badframe;
  359. if (compat_restore_sigframe(regs, &frame->sig))
  360. goto badframe;
  361. if (compat_restore_altstack(&frame->sig.uc.uc_stack))
  362. goto badframe;
  363. return regs->regs[0];
  364. badframe:
  365. if (show_unhandled_signals)
  366. pr_info_ratelimited("%s[%d]: bad frame in %s: pc=%08llx sp=%08llx\n",
  367. current->comm, task_pid_nr(current), __func__,
  368. regs->pc, regs->sp);
  369. force_sig(SIGSEGV, current);
  370. return 0;
  371. }
  372. static void __user *compat_get_sigframe(struct k_sigaction *ka,
  373. struct pt_regs *regs,
  374. int framesize)
  375. {
  376. compat_ulong_t sp = regs->compat_sp;
  377. void __user *frame;
  378. /*
  379. * This is the X/Open sanctioned signal stack switching.
  380. */
  381. if ((ka->sa.sa_flags & SA_ONSTACK) && !sas_ss_flags(sp))
  382. sp = current->sas_ss_sp + current->sas_ss_size;
  383. /*
  384. * ATPCS B01 mandates 8-byte alignment
  385. */
  386. frame = compat_ptr((compat_uptr_t)((sp - framesize) & ~7));
  387. /*
  388. * Check that we can actually write to the signal frame.
  389. */
  390. if (!access_ok(VERIFY_WRITE, frame, framesize))
  391. frame = NULL;
  392. return frame;
  393. }
  394. static void compat_setup_return(struct pt_regs *regs, struct k_sigaction *ka,
  395. compat_ulong_t __user *rc, void __user *frame,
  396. int usig)
  397. {
  398. compat_ulong_t handler = ptr_to_compat(ka->sa.sa_handler);
  399. compat_ulong_t retcode;
  400. compat_ulong_t spsr = regs->pstate & ~PSR_f;
  401. int thumb;
  402. /* Check if the handler is written for ARM or Thumb */
  403. thumb = handler & 1;
  404. if (thumb) {
  405. spsr |= COMPAT_PSR_T_BIT;
  406. spsr &= ~COMPAT_PSR_IT_MASK;
  407. } else {
  408. spsr &= ~COMPAT_PSR_T_BIT;
  409. }
  410. if (ka->sa.sa_flags & SA_RESTORER) {
  411. retcode = ptr_to_compat(ka->sa.sa_restorer);
  412. } else {
  413. /* Set up sigreturn pointer */
  414. unsigned int idx = thumb << 1;
  415. if (ka->sa.sa_flags & SA_SIGINFO)
  416. idx += 3;
  417. retcode = AARCH32_VECTORS_BASE +
  418. AARCH32_KERN_SIGRET_CODE_OFFSET +
  419. (idx << 2) + thumb;
  420. }
  421. regs->regs[0] = usig;
  422. regs->compat_sp = ptr_to_compat(frame);
  423. regs->compat_lr = retcode;
  424. regs->pc = handler;
  425. regs->pstate = spsr;
  426. }
  427. static int compat_setup_sigframe(struct compat_sigframe __user *sf,
  428. struct pt_regs *regs, sigset_t *set)
  429. {
  430. struct compat_aux_sigframe __user *aux;
  431. int err = 0;
  432. __put_user_error(regs->regs[0], &sf->uc.uc_mcontext.arm_r0, err);
  433. __put_user_error(regs->regs[1], &sf->uc.uc_mcontext.arm_r1, err);
  434. __put_user_error(regs->regs[2], &sf->uc.uc_mcontext.arm_r2, err);
  435. __put_user_error(regs->regs[3], &sf->uc.uc_mcontext.arm_r3, err);
  436. __put_user_error(regs->regs[4], &sf->uc.uc_mcontext.arm_r4, err);
  437. __put_user_error(regs->regs[5], &sf->uc.uc_mcontext.arm_r5, err);
  438. __put_user_error(regs->regs[6], &sf->uc.uc_mcontext.arm_r6, err);
  439. __put_user_error(regs->regs[7], &sf->uc.uc_mcontext.arm_r7, err);
  440. __put_user_error(regs->regs[8], &sf->uc.uc_mcontext.arm_r8, err);
  441. __put_user_error(regs->regs[9], &sf->uc.uc_mcontext.arm_r9, err);
  442. __put_user_error(regs->regs[10], &sf->uc.uc_mcontext.arm_r10, err);
  443. __put_user_error(regs->regs[11], &sf->uc.uc_mcontext.arm_fp, err);
  444. __put_user_error(regs->regs[12], &sf->uc.uc_mcontext.arm_ip, err);
  445. __put_user_error(regs->compat_sp, &sf->uc.uc_mcontext.arm_sp, err);
  446. __put_user_error(regs->compat_lr, &sf->uc.uc_mcontext.arm_lr, err);
  447. __put_user_error(regs->pc, &sf->uc.uc_mcontext.arm_pc, err);
  448. __put_user_error(regs->pstate, &sf->uc.uc_mcontext.arm_cpsr, err);
  449. __put_user_error((compat_ulong_t)0, &sf->uc.uc_mcontext.trap_no, err);
  450. __put_user_error((compat_ulong_t)0, &sf->uc.uc_mcontext.error_code, err);
  451. __put_user_error(current->thread.fault_address, &sf->uc.uc_mcontext.fault_address, err);
  452. __put_user_error(set->sig[0], &sf->uc.uc_mcontext.oldmask, err);
  453. err |= put_sigset_t(&sf->uc.uc_sigmask, set);
  454. aux = (struct compat_aux_sigframe __user *) sf->uc.uc_regspace;
  455. if (err == 0)
  456. err |= compat_preserve_vfp_context(&aux->vfp);
  457. __put_user_error(0, &aux->end_magic, err);
  458. return err;
  459. }
  460. /*
  461. * 32-bit signal handling routines called from signal.c
  462. */
  463. int compat_setup_rt_frame(int usig, struct k_sigaction *ka, siginfo_t *info,
  464. sigset_t *set, struct pt_regs *regs)
  465. {
  466. struct compat_rt_sigframe __user *frame;
  467. int err = 0;
  468. frame = compat_get_sigframe(ka, regs, sizeof(*frame));
  469. if (!frame)
  470. return 1;
  471. err |= copy_siginfo_to_user32(&frame->info, info);
  472. __put_user_error(0, &frame->sig.uc.uc_flags, err);
  473. __put_user_error(0, &frame->sig.uc.uc_link, err);
  474. err |= __compat_save_altstack(&frame->sig.uc.uc_stack, regs->compat_sp);
  475. err |= compat_setup_sigframe(&frame->sig, regs, set);
  476. if (err == 0) {
  477. compat_setup_return(regs, ka, frame->sig.retcode, frame, usig);
  478. regs->regs[1] = (compat_ulong_t)(unsigned long)&frame->info;
  479. regs->regs[2] = (compat_ulong_t)(unsigned long)&frame->sig.uc;
  480. }
  481. return err;
  482. }
  483. int compat_setup_frame(int usig, struct k_sigaction *ka, sigset_t *set,
  484. struct pt_regs *regs)
  485. {
  486. struct compat_sigframe __user *frame;
  487. int err = 0;
  488. frame = compat_get_sigframe(ka, regs, sizeof(*frame));
  489. if (!frame)
  490. return 1;
  491. __put_user_error(0x5ac3c35a, &frame->uc.uc_flags, err);
  492. err |= compat_setup_sigframe(frame, regs, set);
  493. if (err == 0)
  494. compat_setup_return(regs, ka, frame->retcode, frame, usig);
  495. return err;
  496. }
  497. void compat_setup_restart_syscall(struct pt_regs *regs)
  498. {
  499. regs->regs[7] = __NR_compat_restart_syscall;
  500. }