signal32.c 16 KB

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