signal.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  1. /*
  2. * Architecture-specific signal handling support.
  3. *
  4. * Copyright (C) 1999-2004 Hewlett-Packard Co
  5. * David Mosberger-Tang <davidm@hpl.hp.com>
  6. *
  7. * Derived from i386 and Alpha versions.
  8. */
  9. #include <linux/errno.h>
  10. #include <linux/kernel.h>
  11. #include <linux/mm.h>
  12. #include <linux/ptrace.h>
  13. #include <linux/sched.h>
  14. #include <linux/signal.h>
  15. #include <linux/smp.h>
  16. #include <linux/stddef.h>
  17. #include <linux/tty.h>
  18. #include <linux/binfmts.h>
  19. #include <linux/unistd.h>
  20. #include <linux/wait.h>
  21. #include <asm/ia32.h>
  22. #include <asm/intrinsics.h>
  23. #include <asm/uaccess.h>
  24. #include <asm/rse.h>
  25. #include <asm/sigcontext.h>
  26. #include "sigframe.h"
  27. #define DEBUG_SIG 0
  28. #define STACK_ALIGN 16 /* minimal alignment for stack pointer */
  29. #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
  30. #if _NSIG_WORDS > 1
  31. # define PUT_SIGSET(k,u) __copy_to_user((u)->sig, (k)->sig, sizeof(sigset_t))
  32. # define GET_SIGSET(k,u) __copy_from_user((k)->sig, (u)->sig, sizeof(sigset_t))
  33. #else
  34. # define PUT_SIGSET(k,u) __put_user((k)->sig[0], &(u)->sig[0])
  35. # define GET_SIGSET(k,u) __get_user((k)->sig[0], &(u)->sig[0])
  36. #endif
  37. long
  38. ia64_rt_sigsuspend (sigset_t __user *uset, size_t sigsetsize, struct sigscratch *scr)
  39. {
  40. sigset_t oldset, set;
  41. /* XXX: Don't preclude handling different sized sigset_t's. */
  42. if (sigsetsize != sizeof(sigset_t))
  43. return -EINVAL;
  44. if (!access_ok(VERIFY_READ, uset, sigsetsize))
  45. return -EFAULT;
  46. if (GET_SIGSET(&set, uset))
  47. return -EFAULT;
  48. sigdelsetmask(&set, ~_BLOCKABLE);
  49. spin_lock_irq(&current->sighand->siglock);
  50. {
  51. oldset = current->blocked;
  52. current->blocked = set;
  53. recalc_sigpending();
  54. }
  55. spin_unlock_irq(&current->sighand->siglock);
  56. /*
  57. * The return below usually returns to the signal handler. We need to
  58. * pre-set the correct error code here to ensure that the right values
  59. * get saved in sigcontext by ia64_do_signal.
  60. */
  61. scr->pt.r8 = EINTR;
  62. scr->pt.r10 = -1;
  63. while (1) {
  64. current->state = TASK_INTERRUPTIBLE;
  65. schedule();
  66. if (ia64_do_signal(&oldset, scr, 1))
  67. return -EINTR;
  68. }
  69. }
  70. asmlinkage long
  71. sys_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, long arg2,
  72. long arg3, long arg4, long arg5, long arg6, long arg7,
  73. struct pt_regs regs)
  74. {
  75. return do_sigaltstack(uss, uoss, regs.r12);
  76. }
  77. static long
  78. restore_sigcontext (struct sigcontext __user *sc, struct sigscratch *scr)
  79. {
  80. unsigned long ip, flags, nat, um, cfm, rsc;
  81. long err;
  82. /* Always make any pending restarted system calls return -EINTR */
  83. current_thread_info()->restart_block.fn = do_no_restart_syscall;
  84. /* restore scratch that always needs gets updated during signal delivery: */
  85. err = __get_user(flags, &sc->sc_flags);
  86. err |= __get_user(nat, &sc->sc_nat);
  87. err |= __get_user(ip, &sc->sc_ip); /* instruction pointer */
  88. err |= __get_user(cfm, &sc->sc_cfm);
  89. err |= __get_user(um, &sc->sc_um); /* user mask */
  90. err |= __get_user(rsc, &sc->sc_ar_rsc);
  91. err |= __get_user(scr->pt.ar_unat, &sc->sc_ar_unat);
  92. err |= __get_user(scr->pt.ar_fpsr, &sc->sc_ar_fpsr);
  93. err |= __get_user(scr->pt.ar_pfs, &sc->sc_ar_pfs);
  94. err |= __get_user(scr->pt.pr, &sc->sc_pr); /* predicates */
  95. err |= __get_user(scr->pt.b0, &sc->sc_br[0]); /* b0 (rp) */
  96. err |= __get_user(scr->pt.b6, &sc->sc_br[6]); /* b6 */
  97. err |= __copy_from_user(&scr->pt.r1, &sc->sc_gr[1], 8); /* r1 */
  98. err |= __copy_from_user(&scr->pt.r8, &sc->sc_gr[8], 4*8); /* r8-r11 */
  99. err |= __copy_from_user(&scr->pt.r12, &sc->sc_gr[12], 2*8); /* r12-r13 */
  100. err |= __copy_from_user(&scr->pt.r15, &sc->sc_gr[15], 8); /* r15 */
  101. scr->pt.cr_ifs = cfm | (1UL << 63);
  102. scr->pt.ar_rsc = rsc | (3 << 2); /* force PL3 */
  103. /* establish new instruction pointer: */
  104. scr->pt.cr_iip = ip & ~0x3UL;
  105. ia64_psr(&scr->pt)->ri = ip & 0x3;
  106. scr->pt.cr_ipsr = (scr->pt.cr_ipsr & ~IA64_PSR_UM) | (um & IA64_PSR_UM);
  107. scr->scratch_unat = ia64_put_scratch_nat_bits(&scr->pt, nat);
  108. if (!(flags & IA64_SC_FLAG_IN_SYSCALL)) {
  109. /* Restore most scratch-state only when not in syscall. */
  110. err |= __get_user(scr->pt.ar_ccv, &sc->sc_ar_ccv); /* ar.ccv */
  111. err |= __get_user(scr->pt.b7, &sc->sc_br[7]); /* b7 */
  112. err |= __get_user(scr->pt.r14, &sc->sc_gr[14]); /* r14 */
  113. err |= __copy_from_user(&scr->pt.ar_csd, &sc->sc_ar25, 2*8); /* ar.csd & ar.ssd */
  114. err |= __copy_from_user(&scr->pt.r2, &sc->sc_gr[2], 2*8); /* r2-r3 */
  115. err |= __copy_from_user(&scr->pt.r16, &sc->sc_gr[16], 16*8); /* r16-r31 */
  116. }
  117. if ((flags & IA64_SC_FLAG_FPH_VALID) != 0) {
  118. struct ia64_psr *psr = ia64_psr(&scr->pt);
  119. __copy_from_user(current->thread.fph, &sc->sc_fr[32], 96*16);
  120. psr->mfh = 0; /* drop signal handler's fph contents... */
  121. preempt_disable();
  122. if (psr->dfh)
  123. ia64_drop_fpu(current);
  124. else {
  125. /* We already own the local fph, otherwise psr->dfh wouldn't be 0. */
  126. __ia64_load_fpu(current->thread.fph);
  127. ia64_set_local_fpu_owner(current);
  128. }
  129. preempt_enable();
  130. }
  131. return err;
  132. }
  133. int
  134. copy_siginfo_to_user (siginfo_t __user *to, siginfo_t *from)
  135. {
  136. if (!access_ok(VERIFY_WRITE, to, sizeof(siginfo_t)))
  137. return -EFAULT;
  138. if (from->si_code < 0) {
  139. if (__copy_to_user(to, from, sizeof(siginfo_t)))
  140. return -EFAULT;
  141. return 0;
  142. } else {
  143. int err;
  144. /*
  145. * If you change siginfo_t structure, please be sure this code is fixed
  146. * accordingly. It should never copy any pad contained in the structure
  147. * to avoid security leaks, but must copy the generic 3 ints plus the
  148. * relevant union member.
  149. */
  150. err = __put_user(from->si_signo, &to->si_signo);
  151. err |= __put_user(from->si_errno, &to->si_errno);
  152. err |= __put_user((short)from->si_code, &to->si_code);
  153. switch (from->si_code >> 16) {
  154. case __SI_FAULT >> 16:
  155. err |= __put_user(from->si_flags, &to->si_flags);
  156. err |= __put_user(from->si_isr, &to->si_isr);
  157. case __SI_POLL >> 16:
  158. err |= __put_user(from->si_addr, &to->si_addr);
  159. err |= __put_user(from->si_imm, &to->si_imm);
  160. break;
  161. case __SI_TIMER >> 16:
  162. err |= __put_user(from->si_tid, &to->si_tid);
  163. err |= __put_user(from->si_overrun, &to->si_overrun);
  164. err |= __put_user(from->si_ptr, &to->si_ptr);
  165. break;
  166. case __SI_RT >> 16: /* Not generated by the kernel as of now. */
  167. case __SI_MESGQ >> 16:
  168. err |= __put_user(from->si_uid, &to->si_uid);
  169. err |= __put_user(from->si_pid, &to->si_pid);
  170. err |= __put_user(from->si_ptr, &to->si_ptr);
  171. break;
  172. case __SI_CHLD >> 16:
  173. err |= __put_user(from->si_utime, &to->si_utime);
  174. err |= __put_user(from->si_stime, &to->si_stime);
  175. err |= __put_user(from->si_status, &to->si_status);
  176. default:
  177. err |= __put_user(from->si_uid, &to->si_uid);
  178. err |= __put_user(from->si_pid, &to->si_pid);
  179. break;
  180. }
  181. return err;
  182. }
  183. }
  184. long
  185. ia64_rt_sigreturn (struct sigscratch *scr)
  186. {
  187. extern char ia64_strace_leave_kernel, ia64_leave_kernel;
  188. struct sigcontext __user *sc;
  189. struct siginfo si;
  190. sigset_t set;
  191. long retval;
  192. sc = &((struct sigframe __user *) (scr->pt.r12 + 16))->sc;
  193. /*
  194. * When we return to the previously executing context, r8 and r10 have already
  195. * been setup the way we want them. Indeed, if the signal wasn't delivered while
  196. * in a system call, we must not touch r8 or r10 as otherwise user-level state
  197. * could be corrupted.
  198. */
  199. retval = (long) &ia64_leave_kernel;
  200. if (test_thread_flag(TIF_SYSCALL_TRACE)
  201. || test_thread_flag(TIF_SYSCALL_AUDIT))
  202. /*
  203. * strace expects to be notified after sigreturn returns even though the
  204. * context to which we return may not be in the middle of a syscall.
  205. * Thus, the return-value that strace displays for sigreturn is
  206. * meaningless.
  207. */
  208. retval = (long) &ia64_strace_leave_kernel;
  209. if (!access_ok(VERIFY_READ, sc, sizeof(*sc)))
  210. goto give_sigsegv;
  211. if (GET_SIGSET(&set, &sc->sc_mask))
  212. goto give_sigsegv;
  213. sigdelsetmask(&set, ~_BLOCKABLE);
  214. spin_lock_irq(&current->sighand->siglock);
  215. {
  216. current->blocked = set;
  217. recalc_sigpending();
  218. }
  219. spin_unlock_irq(&current->sighand->siglock);
  220. if (restore_sigcontext(sc, scr))
  221. goto give_sigsegv;
  222. #if DEBUG_SIG
  223. printk("SIG return (%s:%d): sp=%lx ip=%lx\n",
  224. current->comm, current->pid, scr->pt.r12, scr->pt.cr_iip);
  225. #endif
  226. /*
  227. * It is more difficult to avoid calling this function than to
  228. * call it and ignore errors.
  229. */
  230. do_sigaltstack(&sc->sc_stack, NULL, scr->pt.r12);
  231. return retval;
  232. give_sigsegv:
  233. si.si_signo = SIGSEGV;
  234. si.si_errno = 0;
  235. si.si_code = SI_KERNEL;
  236. si.si_pid = current->pid;
  237. si.si_uid = current->uid;
  238. si.si_addr = sc;
  239. force_sig_info(SIGSEGV, &si, current);
  240. return retval;
  241. }
  242. /*
  243. * This does just the minimum required setup of sigcontext.
  244. * Specifically, it only installs data that is either not knowable at
  245. * the user-level or that gets modified before execution in the
  246. * trampoline starts. Everything else is done at the user-level.
  247. */
  248. static long
  249. setup_sigcontext (struct sigcontext __user *sc, sigset_t *mask, struct sigscratch *scr)
  250. {
  251. unsigned long flags = 0, ifs, cfm, nat;
  252. long err;
  253. ifs = scr->pt.cr_ifs;
  254. if (on_sig_stack((unsigned long) sc))
  255. flags |= IA64_SC_FLAG_ONSTACK;
  256. if ((ifs & (1UL << 63)) == 0)
  257. /* if cr_ifs doesn't have the valid bit set, we got here through a syscall */
  258. flags |= IA64_SC_FLAG_IN_SYSCALL;
  259. cfm = ifs & ((1UL << 38) - 1);
  260. ia64_flush_fph(current);
  261. if ((current->thread.flags & IA64_THREAD_FPH_VALID)) {
  262. flags |= IA64_SC_FLAG_FPH_VALID;
  263. __copy_to_user(&sc->sc_fr[32], current->thread.fph, 96*16);
  264. }
  265. nat = ia64_get_scratch_nat_bits(&scr->pt, scr->scratch_unat);
  266. err = __put_user(flags, &sc->sc_flags);
  267. err |= __put_user(nat, &sc->sc_nat);
  268. err |= PUT_SIGSET(mask, &sc->sc_mask);
  269. err |= __put_user(cfm, &sc->sc_cfm);
  270. err |= __put_user(scr->pt.cr_ipsr & IA64_PSR_UM, &sc->sc_um);
  271. err |= __put_user(scr->pt.ar_rsc, &sc->sc_ar_rsc);
  272. err |= __put_user(scr->pt.ar_unat, &sc->sc_ar_unat); /* ar.unat */
  273. err |= __put_user(scr->pt.ar_fpsr, &sc->sc_ar_fpsr); /* ar.fpsr */
  274. err |= __put_user(scr->pt.ar_pfs, &sc->sc_ar_pfs);
  275. err |= __put_user(scr->pt.pr, &sc->sc_pr); /* predicates */
  276. err |= __put_user(scr->pt.b0, &sc->sc_br[0]); /* b0 (rp) */
  277. err |= __put_user(scr->pt.b6, &sc->sc_br[6]); /* b6 */
  278. err |= __copy_to_user(&sc->sc_gr[1], &scr->pt.r1, 8); /* r1 */
  279. err |= __copy_to_user(&sc->sc_gr[8], &scr->pt.r8, 4*8); /* r8-r11 */
  280. err |= __copy_to_user(&sc->sc_gr[12], &scr->pt.r12, 2*8); /* r12-r13 */
  281. err |= __copy_to_user(&sc->sc_gr[15], &scr->pt.r15, 8); /* r15 */
  282. err |= __put_user(scr->pt.cr_iip + ia64_psr(&scr->pt)->ri, &sc->sc_ip);
  283. if (flags & IA64_SC_FLAG_IN_SYSCALL) {
  284. /* Clear scratch registers if the signal interrupted a system call. */
  285. err |= __put_user(0, &sc->sc_ar_ccv); /* ar.ccv */
  286. err |= __put_user(0, &sc->sc_br[7]); /* b7 */
  287. err |= __put_user(0, &sc->sc_gr[14]); /* r14 */
  288. err |= __clear_user(&sc->sc_ar25, 2*8); /* ar.csd & ar.ssd */
  289. err |= __clear_user(&sc->sc_gr[2], 2*8); /* r2-r3 */
  290. err |= __clear_user(&sc->sc_gr[16], 16*8); /* r16-r31 */
  291. } else {
  292. /* Copy scratch regs to sigcontext if the signal didn't interrupt a syscall. */
  293. err |= __put_user(scr->pt.ar_ccv, &sc->sc_ar_ccv); /* ar.ccv */
  294. err |= __put_user(scr->pt.b7, &sc->sc_br[7]); /* b7 */
  295. err |= __put_user(scr->pt.r14, &sc->sc_gr[14]); /* r14 */
  296. err |= __copy_to_user(&sc->sc_ar25, &scr->pt.ar_csd, 2*8); /* ar.csd & ar.ssd */
  297. err |= __copy_to_user(&sc->sc_gr[2], &scr->pt.r2, 2*8); /* r2-r3 */
  298. err |= __copy_to_user(&sc->sc_gr[16], &scr->pt.r16, 16*8); /* r16-r31 */
  299. }
  300. return err;
  301. }
  302. /*
  303. * Check whether the register-backing store is already on the signal stack.
  304. */
  305. static inline int
  306. rbs_on_sig_stack (unsigned long bsp)
  307. {
  308. return (bsp - current->sas_ss_sp < current->sas_ss_size);
  309. }
  310. static long
  311. force_sigsegv_info (int sig, void __user *addr)
  312. {
  313. unsigned long flags;
  314. struct siginfo si;
  315. if (sig == SIGSEGV) {
  316. /*
  317. * Acquiring siglock around the sa_handler-update is almost
  318. * certainly overkill, but this isn't a
  319. * performance-critical path and I'd rather play it safe
  320. * here than having to debug a nasty race if and when
  321. * something changes in kernel/signal.c that would make it
  322. * no longer safe to modify sa_handler without holding the
  323. * lock.
  324. */
  325. spin_lock_irqsave(&current->sighand->siglock, flags);
  326. current->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
  327. spin_unlock_irqrestore(&current->sighand->siglock, flags);
  328. }
  329. si.si_signo = SIGSEGV;
  330. si.si_errno = 0;
  331. si.si_code = SI_KERNEL;
  332. si.si_pid = current->pid;
  333. si.si_uid = current->uid;
  334. si.si_addr = addr;
  335. force_sig_info(SIGSEGV, &si, current);
  336. return 0;
  337. }
  338. static long
  339. setup_frame (int sig, struct k_sigaction *ka, siginfo_t *info, sigset_t *set,
  340. struct sigscratch *scr)
  341. {
  342. extern char __kernel_sigtramp[];
  343. unsigned long tramp_addr, new_rbs = 0, new_sp;
  344. struct sigframe __user *frame;
  345. long err;
  346. new_sp = scr->pt.r12;
  347. tramp_addr = (unsigned long) __kernel_sigtramp;
  348. if ((ka->sa.sa_flags & SA_ONSTACK) && sas_ss_flags(new_sp) == 0) {
  349. new_sp = current->sas_ss_sp + current->sas_ss_size;
  350. /*
  351. * We need to check for the register stack being on the signal stack
  352. * separately, because it's switched separately (memory stack is switched
  353. * in the kernel, register stack is switched in the signal trampoline).
  354. */
  355. if (!rbs_on_sig_stack(scr->pt.ar_bspstore))
  356. new_rbs = (current->sas_ss_sp + sizeof(long) - 1) & ~(sizeof(long) - 1);
  357. }
  358. frame = (void __user *) ((new_sp - sizeof(*frame)) & -STACK_ALIGN);
  359. if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
  360. return force_sigsegv_info(sig, frame);
  361. err = __put_user(sig, &frame->arg0);
  362. err |= __put_user(&frame->info, &frame->arg1);
  363. err |= __put_user(&frame->sc, &frame->arg2);
  364. err |= __put_user(new_rbs, &frame->sc.sc_rbs_base);
  365. err |= __put_user(0, &frame->sc.sc_loadrs); /* initialize to zero */
  366. err |= __put_user(ka->sa.sa_handler, &frame->handler);
  367. err |= copy_siginfo_to_user(&frame->info, info);
  368. err |= __put_user(current->sas_ss_sp, &frame->sc.sc_stack.ss_sp);
  369. err |= __put_user(current->sas_ss_size, &frame->sc.sc_stack.ss_size);
  370. err |= __put_user(sas_ss_flags(scr->pt.r12), &frame->sc.sc_stack.ss_flags);
  371. err |= setup_sigcontext(&frame->sc, set, scr);
  372. if (unlikely(err))
  373. return force_sigsegv_info(sig, frame);
  374. scr->pt.r12 = (unsigned long) frame - 16; /* new stack pointer */
  375. scr->pt.ar_fpsr = FPSR_DEFAULT; /* reset fpsr for signal handler */
  376. scr->pt.cr_iip = tramp_addr;
  377. ia64_psr(&scr->pt)->ri = 0; /* start executing in first slot */
  378. ia64_psr(&scr->pt)->be = 0; /* force little-endian byte-order */
  379. /*
  380. * Force the interruption function mask to zero. This has no effect when a
  381. * system-call got interrupted by a signal (since, in that case, scr->pt_cr_ifs is
  382. * ignored), but it has the desirable effect of making it possible to deliver a
  383. * signal with an incomplete register frame (which happens when a mandatory RSE
  384. * load faults). Furthermore, it has no negative effect on the getting the user's
  385. * dirty partition preserved, because that's governed by scr->pt.loadrs.
  386. */
  387. scr->pt.cr_ifs = (1UL << 63);
  388. /*
  389. * Note: this affects only the NaT bits of the scratch regs (the ones saved in
  390. * pt_regs), which is exactly what we want.
  391. */
  392. scr->scratch_unat = 0; /* ensure NaT bits of r12 is clear */
  393. #if DEBUG_SIG
  394. printk("SIG deliver (%s:%d): sig=%d sp=%lx ip=%lx handler=%p\n",
  395. current->comm, current->pid, sig, scr->pt.r12, frame->sc.sc_ip, frame->handler);
  396. #endif
  397. return 1;
  398. }
  399. static long
  400. handle_signal (unsigned long sig, struct k_sigaction *ka, siginfo_t *info, sigset_t *oldset,
  401. struct sigscratch *scr)
  402. {
  403. if (IS_IA32_PROCESS(&scr->pt)) {
  404. /* send signal to IA-32 process */
  405. if (!ia32_setup_frame1(sig, ka, info, oldset, &scr->pt))
  406. return 0;
  407. } else
  408. /* send signal to IA-64 process */
  409. if (!setup_frame(sig, ka, info, oldset, scr))
  410. return 0;
  411. spin_lock_irq(&current->sighand->siglock);
  412. sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
  413. if (!(ka->sa.sa_flags & SA_NODEFER))
  414. sigaddset(&current->blocked, sig);
  415. recalc_sigpending();
  416. spin_unlock_irq(&current->sighand->siglock);
  417. return 1;
  418. }
  419. /*
  420. * Note that `init' is a special process: it doesn't get signals it doesn't want to
  421. * handle. Thus you cannot kill init even with a SIGKILL even by mistake.
  422. */
  423. long
  424. ia64_do_signal (sigset_t *oldset, struct sigscratch *scr, long in_syscall)
  425. {
  426. struct k_sigaction ka;
  427. siginfo_t info;
  428. long restart = in_syscall;
  429. long errno = scr->pt.r8;
  430. # define ERR_CODE(c) (IS_IA32_PROCESS(&scr->pt) ? -(c) : (c))
  431. /*
  432. * In the ia64_leave_kernel code path, we want the common case to go fast, which
  433. * is why we may in certain cases get here from kernel mode. Just return without
  434. * doing anything if so.
  435. */
  436. if (!user_mode(&scr->pt))
  437. return 0;
  438. if (!oldset)
  439. oldset = &current->blocked;
  440. /*
  441. * This only loops in the rare cases of handle_signal() failing, in which case we
  442. * need to push through a forced SIGSEGV.
  443. */
  444. while (1) {
  445. int signr = get_signal_to_deliver(&info, &ka, &scr->pt, NULL);
  446. /*
  447. * get_signal_to_deliver() may have run a debugger (via notify_parent())
  448. * and the debugger may have modified the state (e.g., to arrange for an
  449. * inferior call), thus it's important to check for restarting _after_
  450. * get_signal_to_deliver().
  451. */
  452. if (IS_IA32_PROCESS(&scr->pt)) {
  453. if (in_syscall) {
  454. if (errno >= 0)
  455. restart = 0;
  456. else
  457. errno = -errno;
  458. }
  459. } else if ((long) scr->pt.r10 != -1)
  460. /*
  461. * A system calls has to be restarted only if one of the error codes
  462. * ERESTARTNOHAND, ERESTARTSYS, or ERESTARTNOINTR is returned. If r10
  463. * isn't -1 then r8 doesn't hold an error code and we don't need to
  464. * restart the syscall, so we can clear the "restart" flag here.
  465. */
  466. restart = 0;
  467. if (signr <= 0)
  468. break;
  469. if (unlikely(restart)) {
  470. switch (errno) {
  471. case ERESTART_RESTARTBLOCK:
  472. case ERESTARTNOHAND:
  473. scr->pt.r8 = ERR_CODE(EINTR);
  474. /* note: scr->pt.r10 is already -1 */
  475. break;
  476. case ERESTARTSYS:
  477. if ((ka.sa.sa_flags & SA_RESTART) == 0) {
  478. scr->pt.r8 = ERR_CODE(EINTR);
  479. /* note: scr->pt.r10 is already -1 */
  480. break;
  481. }
  482. case ERESTARTNOINTR:
  483. if (IS_IA32_PROCESS(&scr->pt)) {
  484. scr->pt.r8 = scr->pt.r1;
  485. scr->pt.cr_iip -= 2;
  486. } else
  487. ia64_decrement_ip(&scr->pt);
  488. restart = 0; /* don't restart twice if handle_signal() fails... */
  489. }
  490. }
  491. /*
  492. * Whee! Actually deliver the signal. If the delivery failed, we need to
  493. * continue to iterate in this loop so we can deliver the SIGSEGV...
  494. */
  495. if (handle_signal(signr, &ka, &info, oldset, scr))
  496. return 1;
  497. }
  498. /* Did we come from a system call? */
  499. if (restart) {
  500. /* Restart the system call - no handlers present */
  501. if (errno == ERESTARTNOHAND || errno == ERESTARTSYS || errno == ERESTARTNOINTR
  502. || errno == ERESTART_RESTARTBLOCK)
  503. {
  504. if (IS_IA32_PROCESS(&scr->pt)) {
  505. scr->pt.r8 = scr->pt.r1;
  506. scr->pt.cr_iip -= 2;
  507. if (errno == ERESTART_RESTARTBLOCK)
  508. scr->pt.r8 = 0; /* x86 version of __NR_restart_syscall */
  509. } else {
  510. /*
  511. * Note: the syscall number is in r15 which is saved in
  512. * pt_regs so all we need to do here is adjust ip so that
  513. * the "break" instruction gets re-executed.
  514. */
  515. ia64_decrement_ip(&scr->pt);
  516. if (errno == ERESTART_RESTARTBLOCK)
  517. scr->pt.r15 = __NR_restart_syscall;
  518. }
  519. }
  520. }
  521. return 0;
  522. }