signal32.c 16 KB

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