signal.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  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/config.h>
  10. #include <linux/errno.h>
  11. #include <linux/kernel.h>
  12. #include <linux/mm.h>
  13. #include <linux/ptrace.h>
  14. #include <linux/sched.h>
  15. #include <linux/signal.h>
  16. #include <linux/smp.h>
  17. #include <linux/smp_lock.h>
  18. #include <linux/stddef.h>
  19. #include <linux/tty.h>
  20. #include <linux/binfmts.h>
  21. #include <linux/unistd.h>
  22. #include <linux/wait.h>
  23. #include <asm/ia32.h>
  24. #include <asm/intrinsics.h>
  25. #include <asm/uaccess.h>
  26. #include <asm/rse.h>
  27. #include <asm/sigcontext.h>
  28. #include "sigframe.h"
  29. #define DEBUG_SIG 0
  30. #define STACK_ALIGN 16 /* minimal alignment for stack pointer */
  31. #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
  32. #if _NSIG_WORDS > 1
  33. # define PUT_SIGSET(k,u) __copy_to_user((u)->sig, (k)->sig, sizeof(sigset_t))
  34. # define GET_SIGSET(k,u) __copy_from_user((k)->sig, (u)->sig, sizeof(sigset_t))
  35. #else
  36. # define PUT_SIGSET(k,u) __put_user((k)->sig[0], &(u)->sig[0])
  37. # define GET_SIGSET(k,u) __get_user((k)->sig[0], &(u)->sig[0])
  38. #endif
  39. long
  40. ia64_rt_sigsuspend (sigset_t __user *uset, size_t sigsetsize, struct sigscratch *scr)
  41. {
  42. sigset_t oldset, set;
  43. /* XXX: Don't preclude handling different sized sigset_t's. */
  44. if (sigsetsize != sizeof(sigset_t))
  45. return -EINVAL;
  46. if (!access_ok(VERIFY_READ, uset, sigsetsize))
  47. return -EFAULT;
  48. if (GET_SIGSET(&set, uset))
  49. return -EFAULT;
  50. sigdelsetmask(&set, ~_BLOCKABLE);
  51. spin_lock_irq(&current->sighand->siglock);
  52. {
  53. oldset = current->blocked;
  54. current->blocked = set;
  55. recalc_sigpending();
  56. }
  57. spin_unlock_irq(&current->sighand->siglock);
  58. /*
  59. * The return below usually returns to the signal handler. We need to
  60. * pre-set the correct error code here to ensure that the right values
  61. * get saved in sigcontext by ia64_do_signal.
  62. */
  63. scr->pt.r8 = EINTR;
  64. scr->pt.r10 = -1;
  65. while (1) {
  66. current->state = TASK_INTERRUPTIBLE;
  67. schedule();
  68. if (ia64_do_signal(&oldset, scr, 1))
  69. return -EINTR;
  70. }
  71. }
  72. asmlinkage long
  73. sys_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, long arg2,
  74. long arg3, long arg4, long arg5, long arg6, long arg7,
  75. struct pt_regs regs)
  76. {
  77. return do_sigaltstack(uss, uoss, regs.r12);
  78. }
  79. static long
  80. restore_sigcontext (struct sigcontext __user *sc, struct sigscratch *scr)
  81. {
  82. unsigned long ip, flags, nat, um, cfm, rsc;
  83. long err;
  84. /* Always make any pending restarted system calls return -EINTR */
  85. current_thread_info()->restart_block.fn = do_no_restart_syscall;
  86. /* restore scratch that always needs gets updated during signal delivery: */
  87. err = __get_user(flags, &sc->sc_flags);
  88. err |= __get_user(nat, &sc->sc_nat);
  89. err |= __get_user(ip, &sc->sc_ip); /* instruction pointer */
  90. err |= __get_user(cfm, &sc->sc_cfm);
  91. err |= __get_user(um, &sc->sc_um); /* user mask */
  92. err |= __get_user(rsc, &sc->sc_ar_rsc);
  93. err |= __get_user(scr->pt.ar_unat, &sc->sc_ar_unat);
  94. err |= __get_user(scr->pt.ar_fpsr, &sc->sc_ar_fpsr);
  95. err |= __get_user(scr->pt.ar_pfs, &sc->sc_ar_pfs);
  96. err |= __get_user(scr->pt.pr, &sc->sc_pr); /* predicates */
  97. err |= __get_user(scr->pt.b0, &sc->sc_br[0]); /* b0 (rp) */
  98. err |= __get_user(scr->pt.b6, &sc->sc_br[6]); /* b6 */
  99. err |= __copy_from_user(&scr->pt.r1, &sc->sc_gr[1], 8); /* r1 */
  100. err |= __copy_from_user(&scr->pt.r8, &sc->sc_gr[8], 4*8); /* r8-r11 */
  101. err |= __copy_from_user(&scr->pt.r12, &sc->sc_gr[12], 2*8); /* r12-r13 */
  102. err |= __copy_from_user(&scr->pt.r15, &sc->sc_gr[15], 8); /* r15 */
  103. scr->pt.cr_ifs = cfm | (1UL << 63);
  104. scr->pt.ar_rsc = rsc | (3 << 2); /* force PL3 */
  105. /* establish new instruction pointer: */
  106. scr->pt.cr_iip = ip & ~0x3UL;
  107. ia64_psr(&scr->pt)->ri = ip & 0x3;
  108. scr->pt.cr_ipsr = (scr->pt.cr_ipsr & ~IA64_PSR_UM) | (um & IA64_PSR_UM);
  109. scr->scratch_unat = ia64_put_scratch_nat_bits(&scr->pt, nat);
  110. if (!(flags & IA64_SC_FLAG_IN_SYSCALL)) {
  111. /* Restore most scratch-state only when not in syscall. */
  112. err |= __get_user(scr->pt.ar_ccv, &sc->sc_ar_ccv); /* ar.ccv */
  113. err |= __get_user(scr->pt.b7, &sc->sc_br[7]); /* b7 */
  114. err |= __get_user(scr->pt.r14, &sc->sc_gr[14]); /* r14 */
  115. err |= __copy_from_user(&scr->pt.ar_csd, &sc->sc_ar25, 2*8); /* ar.csd & ar.ssd */
  116. err |= __copy_from_user(&scr->pt.r2, &sc->sc_gr[2], 2*8); /* r2-r3 */
  117. err |= __copy_from_user(&scr->pt.r16, &sc->sc_gr[16], 16*8); /* r16-r31 */
  118. }
  119. if ((flags & IA64_SC_FLAG_FPH_VALID) != 0) {
  120. struct ia64_psr *psr = ia64_psr(&scr->pt);
  121. __copy_from_user(current->thread.fph, &sc->sc_fr[32], 96*16);
  122. psr->mfh = 0; /* drop signal handler's fph contents... */
  123. if (psr->dfh)
  124. ia64_drop_fpu(current);
  125. else {
  126. /* We already own the local fph, otherwise psr->dfh wouldn't be 0. */
  127. __ia64_load_fpu(current->thread.fph);
  128. ia64_set_local_fpu_owner(current);
  129. }
  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;
  344. struct sigframe __user *frame;
  345. long err;
  346. frame = (void __user *) scr->pt.r12;
  347. tramp_addr = (unsigned long) __kernel_sigtramp;
  348. if ((ka->sa.sa_flags & SA_ONSTACK) && sas_ss_flags((unsigned long) frame) == 0) {
  349. frame = (void __user *) ((current->sas_ss_sp + current->sas_ss_size)
  350. & ~(STACK_ALIGN - 1));
  351. /*
  352. * We need to check for the register stack being on the signal stack
  353. * separately, because it's switched separately (memory stack is switched
  354. * in the kernel, register stack is switched in the signal trampoline).
  355. */
  356. if (!rbs_on_sig_stack(scr->pt.ar_bspstore))
  357. new_rbs = (current->sas_ss_sp + sizeof(long) - 1) & ~(sizeof(long) - 1);
  358. }
  359. frame = (void __user *) frame - ((sizeof(*frame) + STACK_ALIGN - 1) & ~(STACK_ALIGN - 1));
  360. if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
  361. return force_sigsegv_info(sig, frame);
  362. err = __put_user(sig, &frame->arg0);
  363. err |= __put_user(&frame->info, &frame->arg1);
  364. err |= __put_user(&frame->sc, &frame->arg2);
  365. err |= __put_user(new_rbs, &frame->sc.sc_rbs_base);
  366. err |= __put_user(0, &frame->sc.sc_loadrs); /* initialize to zero */
  367. err |= __put_user(ka->sa.sa_handler, &frame->handler);
  368. err |= copy_siginfo_to_user(&frame->info, info);
  369. err |= __put_user(current->sas_ss_sp, &frame->sc.sc_stack.ss_sp);
  370. err |= __put_user(current->sas_ss_size, &frame->sc.sc_stack.ss_size);
  371. err |= __put_user(sas_ss_flags(scr->pt.r12), &frame->sc.sc_stack.ss_flags);
  372. err |= setup_sigcontext(&frame->sc, set, scr);
  373. if (unlikely(err))
  374. return force_sigsegv_info(sig, frame);
  375. scr->pt.r12 = (unsigned long) frame - 16; /* new stack pointer */
  376. scr->pt.ar_fpsr = FPSR_DEFAULT; /* reset fpsr for signal handler */
  377. scr->pt.cr_iip = tramp_addr;
  378. ia64_psr(&scr->pt)->ri = 0; /* start executing in first slot */
  379. ia64_psr(&scr->pt)->be = 0; /* force little-endian byte-order */
  380. /*
  381. * Force the interruption function mask to zero. This has no effect when a
  382. * system-call got interrupted by a signal (since, in that case, scr->pt_cr_ifs is
  383. * ignored), but it has the desirable effect of making it possible to deliver a
  384. * signal with an incomplete register frame (which happens when a mandatory RSE
  385. * load faults). Furthermore, it has no negative effect on the getting the user's
  386. * dirty partition preserved, because that's governed by scr->pt.loadrs.
  387. */
  388. scr->pt.cr_ifs = (1UL << 63);
  389. /*
  390. * Note: this affects only the NaT bits of the scratch regs (the ones saved in
  391. * pt_regs), which is exactly what we want.
  392. */
  393. scr->scratch_unat = 0; /* ensure NaT bits of r12 is clear */
  394. #if DEBUG_SIG
  395. printk("SIG deliver (%s:%d): sig=%d sp=%lx ip=%lx handler=%p\n",
  396. current->comm, current->pid, sig, scr->pt.r12, frame->sc.sc_ip, frame->handler);
  397. #endif
  398. return 1;
  399. }
  400. static long
  401. handle_signal (unsigned long sig, struct k_sigaction *ka, siginfo_t *info, sigset_t *oldset,
  402. struct sigscratch *scr)
  403. {
  404. if (IS_IA32_PROCESS(&scr->pt)) {
  405. /* send signal to IA-32 process */
  406. if (!ia32_setup_frame1(sig, ka, info, oldset, &scr->pt))
  407. return 0;
  408. } else
  409. /* send signal to IA-64 process */
  410. if (!setup_frame(sig, ka, info, oldset, scr))
  411. return 0;
  412. if (!(ka->sa.sa_flags & SA_NODEFER)) {
  413. spin_lock_irq(&current->sighand->siglock);
  414. {
  415. sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
  416. sigaddset(&current->blocked, sig);
  417. recalc_sigpending();
  418. }
  419. spin_unlock_irq(&current->sighand->siglock);
  420. }
  421. return 1;
  422. }
  423. /*
  424. * Note that `init' is a special process: it doesn't get signals it doesn't want to
  425. * handle. Thus you cannot kill init even with a SIGKILL even by mistake.
  426. */
  427. long
  428. ia64_do_signal (sigset_t *oldset, struct sigscratch *scr, long in_syscall)
  429. {
  430. struct k_sigaction ka;
  431. siginfo_t info;
  432. long restart = in_syscall;
  433. long errno = scr->pt.r8;
  434. # define ERR_CODE(c) (IS_IA32_PROCESS(&scr->pt) ? -(c) : (c))
  435. /*
  436. * In the ia64_leave_kernel code path, we want the common case to go fast, which
  437. * is why we may in certain cases get here from kernel mode. Just return without
  438. * doing anything if so.
  439. */
  440. if (!user_mode(&scr->pt))
  441. return 0;
  442. if (!oldset)
  443. oldset = &current->blocked;
  444. /*
  445. * This only loops in the rare cases of handle_signal() failing, in which case we
  446. * need to push through a forced SIGSEGV.
  447. */
  448. while (1) {
  449. int signr = get_signal_to_deliver(&info, &ka, &scr->pt, NULL);
  450. /*
  451. * get_signal_to_deliver() may have run a debugger (via notify_parent())
  452. * and the debugger may have modified the state (e.g., to arrange for an
  453. * inferior call), thus it's important to check for restarting _after_
  454. * get_signal_to_deliver().
  455. */
  456. if (IS_IA32_PROCESS(&scr->pt)) {
  457. if (in_syscall) {
  458. if (errno >= 0)
  459. restart = 0;
  460. else
  461. errno = -errno;
  462. }
  463. } else if ((long) scr->pt.r10 != -1)
  464. /*
  465. * A system calls has to be restarted only if one of the error codes
  466. * ERESTARTNOHAND, ERESTARTSYS, or ERESTARTNOINTR is returned. If r10
  467. * isn't -1 then r8 doesn't hold an error code and we don't need to
  468. * restart the syscall, so we can clear the "restart" flag here.
  469. */
  470. restart = 0;
  471. if (signr <= 0)
  472. break;
  473. if (unlikely(restart)) {
  474. switch (errno) {
  475. case ERESTART_RESTARTBLOCK:
  476. case ERESTARTNOHAND:
  477. scr->pt.r8 = ERR_CODE(EINTR);
  478. /* note: scr->pt.r10 is already -1 */
  479. break;
  480. case ERESTARTSYS:
  481. if ((ka.sa.sa_flags & SA_RESTART) == 0) {
  482. scr->pt.r8 = ERR_CODE(EINTR);
  483. /* note: scr->pt.r10 is already -1 */
  484. break;
  485. }
  486. case ERESTARTNOINTR:
  487. if (IS_IA32_PROCESS(&scr->pt)) {
  488. scr->pt.r8 = scr->pt.r1;
  489. scr->pt.cr_iip -= 2;
  490. } else
  491. ia64_decrement_ip(&scr->pt);
  492. restart = 0; /* don't restart twice if handle_signal() fails... */
  493. }
  494. }
  495. /*
  496. * Whee! Actually deliver the signal. If the delivery failed, we need to
  497. * continue to iterate in this loop so we can deliver the SIGSEGV...
  498. */
  499. if (handle_signal(signr, &ka, &info, oldset, scr))
  500. return 1;
  501. }
  502. /* Did we come from a system call? */
  503. if (restart) {
  504. /* Restart the system call - no handlers present */
  505. if (errno == ERESTARTNOHAND || errno == ERESTARTSYS || errno == ERESTARTNOINTR
  506. || errno == ERESTART_RESTARTBLOCK)
  507. {
  508. if (IS_IA32_PROCESS(&scr->pt)) {
  509. scr->pt.r8 = scr->pt.r1;
  510. scr->pt.cr_iip -= 2;
  511. if (errno == ERESTART_RESTARTBLOCK)
  512. scr->pt.r8 = 0; /* x86 version of __NR_restart_syscall */
  513. } else {
  514. /*
  515. * Note: the syscall number is in r15 which is saved in
  516. * pt_regs so all we need to do here is adjust ip so that
  517. * the "break" instruction gets re-executed.
  518. */
  519. ia64_decrement_ip(&scr->pt);
  520. if (errno == ERESTART_RESTARTBLOCK)
  521. scr->pt.r15 = __NR_restart_syscall;
  522. }
  523. }
  524. }
  525. return 0;
  526. }
  527. /* Set a delayed signal that was detected in MCA/INIT/NMI/PMI context where it
  528. * could not be delivered. It is important that the target process is not
  529. * allowed to do any more work in user space. Possible cases for the target
  530. * process:
  531. *
  532. * - It is sleeping and will wake up soon. Store the data in the current task,
  533. * the signal will be sent when the current task returns from the next
  534. * interrupt.
  535. *
  536. * - It is running in user context. Store the data in the current task, the
  537. * signal will be sent when the current task returns from the next interrupt.
  538. *
  539. * - It is running in kernel context on this or another cpu and will return to
  540. * user context. Store the data in the target task, the signal will be sent
  541. * to itself when the target task returns to user space.
  542. *
  543. * - It is running in kernel context on this cpu and will sleep before
  544. * returning to user context. Because this is also the current task, the
  545. * signal will not get delivered and the task could sleep indefinitely.
  546. * Store the data in the idle task for this cpu, the signal will be sent
  547. * after the idle task processes its next interrupt.
  548. *
  549. * To cover all cases, store the data in the target task, the current task and
  550. * the idle task on this cpu. Whatever happens, the signal will be delivered
  551. * to the target task before it can do any useful user space work. Multiple
  552. * deliveries have no unwanted side effects.
  553. *
  554. * Note: This code is executed in MCA/INIT/NMI/PMI context, with interrupts
  555. * disabled. It must not take any locks nor use kernel structures or services
  556. * that require locks.
  557. */
  558. /* To ensure that we get the right pid, check its start time. To avoid extra
  559. * include files in thread_info.h, convert the task start_time to unsigned long,
  560. * giving us a cycle time of > 580 years.
  561. */
  562. static inline unsigned long
  563. start_time_ul(const struct task_struct *t)
  564. {
  565. return t->start_time.tv_sec * NSEC_PER_SEC + t->start_time.tv_nsec;
  566. }
  567. void
  568. set_sigdelayed(pid_t pid, int signo, int code, void __user *addr)
  569. {
  570. struct task_struct *t;
  571. unsigned long start_time = 0;
  572. int i;
  573. for (i = 1; i <= 3; ++i) {
  574. switch (i) {
  575. case 1:
  576. t = find_task_by_pid(pid);
  577. if (t)
  578. start_time = start_time_ul(t);
  579. break;
  580. case 2:
  581. t = current;
  582. break;
  583. default:
  584. t = idle_task(smp_processor_id());
  585. break;
  586. }
  587. if (!t)
  588. return;
  589. t->thread_info->sigdelayed.signo = signo;
  590. t->thread_info->sigdelayed.code = code;
  591. t->thread_info->sigdelayed.addr = addr;
  592. t->thread_info->sigdelayed.start_time = start_time;
  593. t->thread_info->sigdelayed.pid = pid;
  594. wmb();
  595. set_tsk_thread_flag(t, TIF_SIGDELAYED);
  596. }
  597. }
  598. /* Called from entry.S when it detects TIF_SIGDELAYED, a delayed signal that
  599. * was detected in MCA/INIT/NMI/PMI context where it could not be delivered.
  600. */
  601. void
  602. do_sigdelayed(void)
  603. {
  604. struct siginfo siginfo;
  605. pid_t pid;
  606. struct task_struct *t;
  607. clear_thread_flag(TIF_SIGDELAYED);
  608. memset(&siginfo, 0, sizeof(siginfo));
  609. siginfo.si_signo = current_thread_info()->sigdelayed.signo;
  610. siginfo.si_code = current_thread_info()->sigdelayed.code;
  611. siginfo.si_addr = current_thread_info()->sigdelayed.addr;
  612. pid = current_thread_info()->sigdelayed.pid;
  613. t = find_task_by_pid(pid);
  614. if (!t)
  615. return;
  616. if (current_thread_info()->sigdelayed.start_time != start_time_ul(t))
  617. return;
  618. force_sig_info(siginfo.si_signo, &siginfo, t);
  619. }