signal.c 18 KB

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