signal.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  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. set_current_blocked(&set);
  182. if (restore_sigcontext(sc, scr))
  183. goto give_sigsegv;
  184. #if DEBUG_SIG
  185. printk("SIG return (%s:%d): sp=%lx ip=%lx\n",
  186. current->comm, current->pid, scr->pt.r12, scr->pt.cr_iip);
  187. #endif
  188. /*
  189. * It is more difficult to avoid calling this function than to
  190. * call it and ignore errors.
  191. */
  192. do_sigaltstack(&sc->sc_stack, NULL, scr->pt.r12);
  193. return retval;
  194. give_sigsegv:
  195. si.si_signo = SIGSEGV;
  196. si.si_errno = 0;
  197. si.si_code = SI_KERNEL;
  198. si.si_pid = task_pid_vnr(current);
  199. si.si_uid = current_uid();
  200. si.si_addr = sc;
  201. force_sig_info(SIGSEGV, &si, current);
  202. return retval;
  203. }
  204. /*
  205. * This does just the minimum required setup of sigcontext.
  206. * Specifically, it only installs data that is either not knowable at
  207. * the user-level or that gets modified before execution in the
  208. * trampoline starts. Everything else is done at the user-level.
  209. */
  210. static long
  211. setup_sigcontext (struct sigcontext __user *sc, sigset_t *mask, struct sigscratch *scr)
  212. {
  213. unsigned long flags = 0, ifs, cfm, nat;
  214. long err = 0;
  215. ifs = scr->pt.cr_ifs;
  216. if (on_sig_stack((unsigned long) sc))
  217. flags |= IA64_SC_FLAG_ONSTACK;
  218. if ((ifs & (1UL << 63)) == 0)
  219. /* if cr_ifs doesn't have the valid bit set, we got here through a syscall */
  220. flags |= IA64_SC_FLAG_IN_SYSCALL;
  221. cfm = ifs & ((1UL << 38) - 1);
  222. ia64_flush_fph(current);
  223. if ((current->thread.flags & IA64_THREAD_FPH_VALID)) {
  224. flags |= IA64_SC_FLAG_FPH_VALID;
  225. err = __copy_to_user(&sc->sc_fr[32], current->thread.fph, 96*16);
  226. }
  227. nat = ia64_get_scratch_nat_bits(&scr->pt, scr->scratch_unat);
  228. err |= __put_user(flags, &sc->sc_flags);
  229. err |= __put_user(nat, &sc->sc_nat);
  230. err |= PUT_SIGSET(mask, &sc->sc_mask);
  231. err |= __put_user(cfm, &sc->sc_cfm);
  232. err |= __put_user(scr->pt.cr_ipsr & IA64_PSR_UM, &sc->sc_um);
  233. err |= __put_user(scr->pt.ar_rsc, &sc->sc_ar_rsc);
  234. err |= __put_user(scr->pt.ar_unat, &sc->sc_ar_unat); /* ar.unat */
  235. err |= __put_user(scr->pt.ar_fpsr, &sc->sc_ar_fpsr); /* ar.fpsr */
  236. err |= __put_user(scr->pt.ar_pfs, &sc->sc_ar_pfs);
  237. err |= __put_user(scr->pt.pr, &sc->sc_pr); /* predicates */
  238. err |= __put_user(scr->pt.b0, &sc->sc_br[0]); /* b0 (rp) */
  239. err |= __put_user(scr->pt.b6, &sc->sc_br[6]); /* b6 */
  240. err |= __copy_to_user(&sc->sc_gr[1], &scr->pt.r1, 8); /* r1 */
  241. err |= __copy_to_user(&sc->sc_gr[8], &scr->pt.r8, 4*8); /* r8-r11 */
  242. err |= __copy_to_user(&sc->sc_gr[12], &scr->pt.r12, 2*8); /* r12-r13 */
  243. err |= __copy_to_user(&sc->sc_gr[15], &scr->pt.r15, 8); /* r15 */
  244. err |= __put_user(scr->pt.cr_iip + ia64_psr(&scr->pt)->ri, &sc->sc_ip);
  245. if (!(flags & IA64_SC_FLAG_IN_SYSCALL)) {
  246. /* Copy scratch regs to sigcontext if the signal didn't interrupt a syscall. */
  247. err |= __put_user(scr->pt.ar_ccv, &sc->sc_ar_ccv); /* ar.ccv */
  248. err |= __put_user(scr->pt.b7, &sc->sc_br[7]); /* b7 */
  249. err |= __put_user(scr->pt.r14, &sc->sc_gr[14]); /* r14 */
  250. err |= __copy_to_user(&sc->sc_ar25, &scr->pt.ar_csd, 2*8); /* ar.csd & ar.ssd */
  251. err |= __copy_to_user(&sc->sc_gr[2], &scr->pt.r2, 2*8); /* r2-r3 */
  252. err |= __copy_to_user(&sc->sc_gr[16], &scr->pt.r16, 16*8); /* r16-r31 */
  253. }
  254. return err;
  255. }
  256. /*
  257. * Check whether the register-backing store is already on the signal stack.
  258. */
  259. static inline int
  260. rbs_on_sig_stack (unsigned long bsp)
  261. {
  262. return (bsp - current->sas_ss_sp < current->sas_ss_size);
  263. }
  264. static long
  265. force_sigsegv_info (int sig, void __user *addr)
  266. {
  267. unsigned long flags;
  268. struct siginfo si;
  269. if (sig == SIGSEGV) {
  270. /*
  271. * Acquiring siglock around the sa_handler-update is almost
  272. * certainly overkill, but this isn't a
  273. * performance-critical path and I'd rather play it safe
  274. * here than having to debug a nasty race if and when
  275. * something changes in kernel/signal.c that would make it
  276. * no longer safe to modify sa_handler without holding the
  277. * lock.
  278. */
  279. spin_lock_irqsave(&current->sighand->siglock, flags);
  280. current->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
  281. spin_unlock_irqrestore(&current->sighand->siglock, flags);
  282. }
  283. si.si_signo = SIGSEGV;
  284. si.si_errno = 0;
  285. si.si_code = SI_KERNEL;
  286. si.si_pid = task_pid_vnr(current);
  287. si.si_uid = current_uid();
  288. si.si_addr = addr;
  289. force_sig_info(SIGSEGV, &si, current);
  290. return 0;
  291. }
  292. static long
  293. setup_frame (int sig, struct k_sigaction *ka, siginfo_t *info, sigset_t *set,
  294. struct sigscratch *scr)
  295. {
  296. extern char __kernel_sigtramp[];
  297. unsigned long tramp_addr, new_rbs = 0, new_sp;
  298. struct sigframe __user *frame;
  299. long err;
  300. new_sp = scr->pt.r12;
  301. tramp_addr = (unsigned long) __kernel_sigtramp;
  302. if (ka->sa.sa_flags & SA_ONSTACK) {
  303. int onstack = sas_ss_flags(new_sp);
  304. if (onstack == 0) {
  305. new_sp = current->sas_ss_sp + current->sas_ss_size;
  306. /*
  307. * We need to check for the register stack being on the
  308. * signal stack separately, because it's switched
  309. * separately (memory stack is switched in the kernel,
  310. * register stack is switched in the signal trampoline).
  311. */
  312. if (!rbs_on_sig_stack(scr->pt.ar_bspstore))
  313. new_rbs = ALIGN(current->sas_ss_sp,
  314. sizeof(long));
  315. } else if (onstack == SS_ONSTACK) {
  316. unsigned long check_sp;
  317. /*
  318. * If we are on the alternate signal stack and would
  319. * overflow it, don't. Return an always-bogus address
  320. * instead so we will die with SIGSEGV.
  321. */
  322. check_sp = (new_sp - sizeof(*frame)) & -STACK_ALIGN;
  323. if (!likely(on_sig_stack(check_sp)))
  324. return force_sigsegv_info(sig, (void __user *)
  325. check_sp);
  326. }
  327. }
  328. frame = (void __user *) ((new_sp - sizeof(*frame)) & -STACK_ALIGN);
  329. if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
  330. return force_sigsegv_info(sig, frame);
  331. err = __put_user(sig, &frame->arg0);
  332. err |= __put_user(&frame->info, &frame->arg1);
  333. err |= __put_user(&frame->sc, &frame->arg2);
  334. err |= __put_user(new_rbs, &frame->sc.sc_rbs_base);
  335. err |= __put_user(0, &frame->sc.sc_loadrs); /* initialize to zero */
  336. err |= __put_user(ka->sa.sa_handler, &frame->handler);
  337. err |= copy_siginfo_to_user(&frame->info, info);
  338. err |= __put_user(current->sas_ss_sp, &frame->sc.sc_stack.ss_sp);
  339. err |= __put_user(current->sas_ss_size, &frame->sc.sc_stack.ss_size);
  340. err |= __put_user(sas_ss_flags(scr->pt.r12), &frame->sc.sc_stack.ss_flags);
  341. err |= setup_sigcontext(&frame->sc, set, scr);
  342. if (unlikely(err))
  343. return force_sigsegv_info(sig, frame);
  344. scr->pt.r12 = (unsigned long) frame - 16; /* new stack pointer */
  345. scr->pt.ar_fpsr = FPSR_DEFAULT; /* reset fpsr for signal handler */
  346. scr->pt.cr_iip = tramp_addr;
  347. ia64_psr(&scr->pt)->ri = 0; /* start executing in first slot */
  348. ia64_psr(&scr->pt)->be = 0; /* force little-endian byte-order */
  349. /*
  350. * Force the interruption function mask to zero. This has no effect when a
  351. * system-call got interrupted by a signal (since, in that case, scr->pt_cr_ifs is
  352. * ignored), but it has the desirable effect of making it possible to deliver a
  353. * signal with an incomplete register frame (which happens when a mandatory RSE
  354. * load faults). Furthermore, it has no negative effect on the getting the user's
  355. * dirty partition preserved, because that's governed by scr->pt.loadrs.
  356. */
  357. scr->pt.cr_ifs = (1UL << 63);
  358. /*
  359. * Note: this affects only the NaT bits of the scratch regs (the ones saved in
  360. * pt_regs), which is exactly what we want.
  361. */
  362. scr->scratch_unat = 0; /* ensure NaT bits of r12 is clear */
  363. #if DEBUG_SIG
  364. printk("SIG deliver (%s:%d): sig=%d sp=%lx ip=%lx handler=%p\n",
  365. current->comm, current->pid, sig, scr->pt.r12, frame->sc.sc_ip, frame->handler);
  366. #endif
  367. return 1;
  368. }
  369. static long
  370. handle_signal (unsigned long sig, struct k_sigaction *ka, siginfo_t *info, sigset_t *oldset,
  371. struct sigscratch *scr)
  372. {
  373. if (!setup_frame(sig, ka, info, oldset, scr))
  374. return 0;
  375. block_sigmask(ka, sig);
  376. /*
  377. * Let tracing know that we've done the handler setup.
  378. */
  379. tracehook_signal_handler(sig, info, ka, &scr->pt,
  380. test_thread_flag(TIF_SINGLESTEP));
  381. return 1;
  382. }
  383. /*
  384. * Note that `init' is a special process: it doesn't get signals it doesn't want to
  385. * handle. Thus you cannot kill init even with a SIGKILL even by mistake.
  386. */
  387. void
  388. ia64_do_signal (struct sigscratch *scr, long in_syscall)
  389. {
  390. struct k_sigaction ka;
  391. sigset_t *oldset;
  392. siginfo_t info;
  393. long restart = in_syscall;
  394. long errno = scr->pt.r8;
  395. /*
  396. * In the ia64_leave_kernel code path, we want the common case to go fast, which
  397. * is why we may in certain cases get here from kernel mode. Just return without
  398. * doing anything if so.
  399. */
  400. if (!user_mode(&scr->pt))
  401. return;
  402. if (current_thread_info()->status & TS_RESTORE_SIGMASK)
  403. oldset = &current->saved_sigmask;
  404. else
  405. oldset = &current->blocked;
  406. /*
  407. * This only loops in the rare cases of handle_signal() failing, in which case we
  408. * need to push through a forced SIGSEGV.
  409. */
  410. while (1) {
  411. int signr = get_signal_to_deliver(&info, &ka, &scr->pt, NULL);
  412. /*
  413. * get_signal_to_deliver() may have run a debugger (via notify_parent())
  414. * and the debugger may have modified the state (e.g., to arrange for an
  415. * inferior call), thus it's important to check for restarting _after_
  416. * get_signal_to_deliver().
  417. */
  418. if ((long) scr->pt.r10 != -1)
  419. /*
  420. * A system calls has to be restarted only if one of the error codes
  421. * ERESTARTNOHAND, ERESTARTSYS, or ERESTARTNOINTR is returned. If r10
  422. * isn't -1 then r8 doesn't hold an error code and we don't need to
  423. * restart the syscall, so we can clear the "restart" flag here.
  424. */
  425. restart = 0;
  426. if (signr <= 0)
  427. break;
  428. if (unlikely(restart)) {
  429. switch (errno) {
  430. case ERESTART_RESTARTBLOCK:
  431. case ERESTARTNOHAND:
  432. scr->pt.r8 = EINTR;
  433. /* note: scr->pt.r10 is already -1 */
  434. break;
  435. case ERESTARTSYS:
  436. if ((ka.sa.sa_flags & SA_RESTART) == 0) {
  437. scr->pt.r8 = EINTR;
  438. /* note: scr->pt.r10 is already -1 */
  439. break;
  440. }
  441. case ERESTARTNOINTR:
  442. ia64_decrement_ip(&scr->pt);
  443. restart = 0; /* don't restart twice if handle_signal() fails... */
  444. }
  445. }
  446. /*
  447. * Whee! Actually deliver the signal. If the delivery failed, we need to
  448. * continue to iterate in this loop so we can deliver the SIGSEGV...
  449. */
  450. if (handle_signal(signr, &ka, &info, oldset, scr)) {
  451. /*
  452. * A signal was successfully delivered; the saved
  453. * sigmask will have been stored in the signal frame,
  454. * and will be restored by sigreturn, so we can simply
  455. * clear the TS_RESTORE_SIGMASK flag.
  456. */
  457. current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
  458. return;
  459. }
  460. }
  461. /* Did we come from a system call? */
  462. if (restart) {
  463. /* Restart the system call - no handlers present */
  464. if (errno == ERESTARTNOHAND || errno == ERESTARTSYS || errno == ERESTARTNOINTR
  465. || errno == ERESTART_RESTARTBLOCK)
  466. {
  467. /*
  468. * Note: the syscall number is in r15 which is saved in
  469. * pt_regs so all we need to do here is adjust ip so that
  470. * the "break" instruction gets re-executed.
  471. */
  472. ia64_decrement_ip(&scr->pt);
  473. if (errno == ERESTART_RESTARTBLOCK)
  474. scr->pt.r15 = __NR_restart_syscall;
  475. }
  476. }
  477. /* if there's no signal to deliver, we just put the saved sigmask
  478. * back */
  479. restore_saved_sigmask();
  480. }