signal.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:17k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/parisc/kernel/signal.c: Architecture-specific signal
  3.  *  handling support.
  4.  *
  5.  *  Copyright (C) 2000 David Huggins-Daines <dhd@debian.org>
  6.  *  Copyright (C) 2000 Linuxcare, Inc.
  7.  *
  8.  *  Based on the ia64, i386, and alpha versions.
  9.  *
  10.  *  Like the IA-64, we are a recent enough port (we are *starting*
  11.  *  with glibc2.2) that we do not need to support the old non-realtime
  12.  *  Linux signals.  Therefore we don't.  HP/UX signals will go in
  13.  *  arch/parisc/hpux/signal.c when we figure out how to do them.
  14.  */
  15. #include <linux/version.h>
  16. #include <linux/sched.h>
  17. #include <linux/mm.h>
  18. #include <linux/smp.h>
  19. #include <linux/smp_lock.h>
  20. #include <linux/kernel.h>
  21. #include <linux/signal.h>
  22. #include <linux/errno.h>
  23. #include <linux/wait.h>
  24. #include <linux/ptrace.h>
  25. #include <linux/unistd.h>
  26. #include <linux/stddef.h>
  27. #include <asm/ucontext.h>
  28. #include <asm/rt_sigframe.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/pgalloc.h>
  31. #define DEBUG_SIG 0
  32. #if DEBUG_SIG
  33. #define DBG(x) printk x
  34. #else
  35. #define DBG(x)
  36. #endif
  37. #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
  38. int do_signal(sigset_t *oldset, struct pt_regs *regs, int in_syscall);
  39. int copy_siginfo_to_user(siginfo_t *to, siginfo_t *from)
  40. {
  41. if (from->si_code < 0)
  42. return __copy_to_user(to, from, sizeof(siginfo_t));
  43. else {
  44. int err;
  45. /*
  46.  * If you change siginfo_t structure, please be sure
  47.  * this code is fixed accordingly.  It should never
  48.  * copy any pad contained in the structure to avoid
  49.  * security leaks, but must copy the generic 3 ints
  50.  * plus the relevant union member.
  51.  */
  52. err = __put_user(from->si_signo, &to->si_signo);
  53. err |= __put_user(from->si_errno, &to->si_errno);
  54. err |= __put_user((short)from->si_code, &to->si_code);
  55. switch (from->si_code >> 16) {
  56.       case __SI_FAULT >> 16:
  57. /* FIXME: should we put the interruption code here? */
  58.       case __SI_POLL >> 16:
  59. err |= __put_user(from->si_addr, &to->si_addr);
  60. break;
  61.       case __SI_CHLD >> 16:
  62. err |= __put_user(from->si_utime, &to->si_utime);
  63. err |= __put_user(from->si_stime, &to->si_stime);
  64. err |= __put_user(from->si_status, &to->si_status);
  65.       default:
  66. err |= __put_user(from->si_uid, &to->si_uid);
  67. err |= __put_user(from->si_pid, &to->si_pid);
  68. break;
  69.       /* case __SI_RT: This is not generated by the kernel as of now.  */
  70. }
  71. return err;
  72. }
  73. }
  74. /*
  75.  * Atomically swap in the new signal mask, and wait for a signal.
  76.  */
  77. #ifdef __LP64__
  78. #include "sys32.h"
  79. #endif
  80. asmlinkage int
  81. sys_rt_sigsuspend(sigset_t *unewset, size_t sigsetsize, struct pt_regs *regs)
  82. {
  83. sigset_t saveset, newset;
  84. #ifdef __LP64__
  85. /* XXX FIXME -- assumes 32-bit user app! */
  86. sigset_t32 newset32;
  87. /* XXX: Don't preclude handling different sized sigset_t's.  */
  88. if (sigsetsize != sizeof(sigset_t32))
  89. return -EINVAL;
  90. if (copy_from_user(&newset32, (sigset_t32 *)unewset, sizeof(newset32)))
  91. return -EFAULT;
  92. newset.sig[0] = newset32.sig[0] | ((unsigned long)newset32.sig[1] << 32);
  93. #else
  94. /* XXX: Don't preclude handling different sized sigset_t's.  */
  95. if (sigsetsize != sizeof(sigset_t))
  96. return -EINVAL;
  97. if (copy_from_user(&newset, unewset, sizeof(newset)))
  98. return -EFAULT;
  99. #endif
  100. sigdelsetmask(&newset, ~_BLOCKABLE);
  101. spin_lock_irq(&current->sigmask_lock);
  102. saveset = current->blocked;
  103. current->blocked = newset;
  104. recalc_sigpending(current);
  105. spin_unlock_irq(&current->sigmask_lock);
  106. regs->gr[28] = -EINTR;
  107. while (1) {
  108. current->state = TASK_INTERRUPTIBLE;
  109. schedule();
  110. if (do_signal(&saveset, regs, 1))
  111. return -EINTR;
  112. }
  113. }
  114. /*
  115.  * Do a signal return - restore sigcontext.
  116.  */
  117. /* Trampoline for calling rt_sigreturn() */
  118. #define INSN_LDI_R25_0  0x34190000 /* ldi  0,%r25 (in_syscall=0) */
  119. #define INSN_LDI_R25_1  0x34190002 /* ldi  1,%r25 (in_syscall=1) */
  120. #define INSN_LDI_R20  0x3414015a /* ldi  __NR_rt_sigreturn,%r20 */
  121. #define INSN_BLE_SR2_R0  0xe4008200 /* be,l 0x100(%sr2,%r0),%sr0,%r31 */
  122. #define INSN_NOP  0x08000240 /* nop */
  123. /* For debugging */
  124. #define INSN_DIE_HORRIBLY 0x68000ccc /* stw %r0,0x666(%sr0,%r0) */
  125. static long
  126. restore_sigcontext(struct sigcontext *sc, struct pt_regs *regs)
  127. {
  128. long err = 0;
  129. err |= __copy_from_user(regs->gr, sc->sc_gr, sizeof(regs->gr));
  130. err |= __copy_from_user(regs->fr, sc->sc_fr, sizeof(regs->fr));
  131. err |= __copy_from_user(regs->iaoq, sc->sc_iaoq, sizeof(regs->iaoq));
  132. err |= __copy_from_user(regs->iasq, sc->sc_iasq, sizeof(regs->iasq));
  133. err |= __get_user(regs->sar, &sc->sc_sar);
  134. DBG(("restore_sigcontext: r28 is %ldn", regs->gr[28]));
  135. return err;
  136. }
  137. void
  138. sys_rt_sigreturn(struct pt_regs *regs, int in_syscall)
  139. {
  140. struct rt_sigframe *frame;
  141. struct siginfo si;
  142. sigset_t set;
  143. unsigned long usp = regs->gr[30];
  144. /* Unwind the user stack to get the rt_sigframe structure. */
  145. frame = (struct rt_sigframe *)
  146. (usp - PARISC_RT_SIGFRAME_SIZE);
  147. DBG(("in sys_rt_sigreturn, frame is %pn", frame));
  148. if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
  149. goto give_sigsegv;
  150. sigdelsetmask(&set, ~_BLOCKABLE);
  151. spin_lock_irq(&current->sigmask_lock);
  152. current->blocked = set;
  153. recalc_sigpending(current);
  154. spin_unlock_irq(&current->sigmask_lock);
  155. /* Good thing we saved the old gr[30], eh? */
  156. if (restore_sigcontext(&frame->uc.uc_mcontext, regs))
  157. goto give_sigsegv;
  158. DBG(("usp: %#08lx stack %p", usp, &frame->uc.uc_stack));
  159. /* I don't know why everyone else assumes they can call this
  160.            with a pointer to a stack_t on the kernel stack.  That
  161.            makes no sense.  Anyway we'll do it like m68k, since we
  162.            also are using segmentation in the same way as them. */
  163. if (do_sigaltstack(&frame->uc.uc_stack, NULL, usp) == -EFAULT)
  164. goto give_sigsegv;
  165. /* If we are on the syscall path IAOQ will not be restored, and
  166.  * if we are on the interrupt path we must not corrupt gr31.
  167.  */
  168. if (in_syscall)
  169. regs->gr[31] = regs->iaoq[0];
  170. #if DEBUG_SIG
  171. DBG(("returning to %#lxn", regs->iaoq[0]));
  172. DBG(("in sys_rt_sigreturn:n"));
  173. show_regs(regs);
  174. #endif
  175. return;
  176. give_sigsegv:
  177. DBG(("sys_rt_sigreturn sending SIGSEGVn"));
  178. si.si_signo = SIGSEGV;
  179. si.si_errno = 0;
  180. si.si_code = SI_KERNEL;
  181. si.si_pid = current->pid;
  182. si.si_uid = current->uid;
  183. si.si_addr = &frame->uc;
  184. force_sig_info(SIGSEGV, &si, current);
  185. return;
  186. }
  187. /*
  188.  * Set up a signal frame.
  189.  */
  190. static inline void *
  191. get_sigframe(struct k_sigaction *ka, unsigned long sp, size_t frame_size)
  192. {
  193. if ((ka->sa.sa_flags & SA_ONSTACK) != 0 && ! on_sig_stack(sp))
  194. sp = current->sas_ss_sp; /* Stacks grow up! */
  195. return (void *) sp; /* Stacks grow up.  Fun. */
  196. }
  197. static long
  198. setup_sigcontext(struct sigcontext *sc, struct pt_regs *regs, int in_syscall)
  199.  
  200. {
  201. unsigned long flags = 0;
  202. long err = 0;
  203. if (on_sig_stack((unsigned long) sc))
  204. flags |= PARISC_SC_FLAG_ONSTACK;
  205. if (in_syscall) {
  206. flags |= PARISC_SC_FLAG_IN_SYSCALL;
  207. /* regs->iaoq is undefined in the syscall return path */
  208. err |= __put_user(regs->gr[31], &sc->sc_iaoq[0]);
  209. err |= __put_user(regs->gr[31]+4, &sc->sc_iaoq[1]);
  210. err |= __put_user(regs->sr[3], &sc->sc_iasq[0]);
  211. err |= __put_user(regs->sr[3], &sc->sc_iasq[1]);
  212. DBG(("setup_sigcontext: iaoq %#lx/%#lxn",
  213. regs->gr[31], regs->gr[31]));
  214. } else {
  215. err |= __copy_to_user(sc->sc_iaoq, regs->iaoq, sizeof(regs->iaoq));
  216. err |= __copy_to_user(sc->sc_iasq, regs->iasq, sizeof(regs->iasq));
  217. DBG(("setup_sigcontext: iaoq %#lx/%#lxn", 
  218. regs->iaoq[0], regs->iaoq[1]));
  219. }
  220. err |= __put_user(flags, &sc->sc_flags);
  221. err |= __copy_to_user(sc->sc_gr, regs->gr, sizeof(regs->gr));
  222. err |= __copy_to_user(sc->sc_fr, regs->fr, sizeof(regs->fr));
  223. err |= __put_user(regs->sar, &sc->sc_sar);
  224. DBG(("setup_sigcontext: r28 is %ldn", regs->gr[28]));
  225. return err;
  226. }
  227. static long
  228. setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
  229.        sigset_t *set, struct pt_regs *regs, int in_syscall)
  230. {
  231. struct rt_sigframe *frame;
  232. unsigned long rp, usp, haddr;
  233. struct siginfo si;
  234. int err = 0;
  235. usp = regs->gr[30];
  236. frame = get_sigframe(ka, usp, sizeof(*frame));
  237. DBG(("setup_rt_frame 1: frame %p info %pn", frame, info));
  238. err |= __copy_to_user(&frame->info, info, sizeof(siginfo_t));
  239. err |= __put_user(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
  240. err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
  241. err |= __put_user(sas_ss_flags(regs->gr[30]),
  242.   &frame->uc.uc_stack.ss_flags);
  243. err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, in_syscall);
  244. err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
  245. if (err)
  246. goto give_sigsegv;
  247. /* Set up to return from userspace.  If provided, use a stub
  248.    already in userspace.  */
  249. err |= __put_user(in_syscall ? INSN_LDI_R25_1 : INSN_LDI_R25_0,
  250. &frame->tramp[0]);
  251. err |= __put_user(INSN_LDI_R20, &frame->tramp[1]);
  252. err |= __put_user(INSN_BLE_SR2_R0, &frame->tramp[2]);
  253. err |= __put_user(INSN_NOP, &frame->tramp[3]);
  254. #if DEBUG_SIG
  255. /* Assert that we're flushing in the correct space... */
  256. {
  257. int sid;
  258. asm ("mfsp %%sr3,%0" : "=r" (sid));
  259. DBG(("flushing 64 bytes at space %#x offset %pn",
  260.        sid, frame->tramp));
  261. }
  262. #endif
  263. #if CACHE_FLUSHING_IS_NOT_BROKEN
  264. flush_icache_range((unsigned long) &frame->tramp[0],
  265.    (unsigned long) &frame->tramp[4]);
  266. #else
  267. /* It should *always* be cache line-aligned, but the compiler
  268.            sometimes screws up. */
  269. asm volatile("fdc 0(%%sr3,%0)nt"
  270.      "fdc %1(%%sr3,%0)nt"
  271.      "syncnt"
  272.      "fic 0(%%sr3,%0)nt"
  273.      "fic %1(%%sr3,%0)nt"
  274.      "syncnt"
  275.      : : "r" (frame->tramp), "r" (L1_CACHE_BYTES));
  276. #endif
  277. rp = (unsigned long) frame->tramp;
  278. if (err)
  279. goto give_sigsegv;
  280. #ifdef __LP64__
  281. /* Much more has to happen with signals than this -- but it'll at least */
  282. /* provide a pointer to some places which definitely need a look. */
  283. #define HACK unsigned int
  284. #else
  285. #define HACK unsigned long
  286. #endif
  287. haddr = (HACK) ka->sa.sa_handler;
  288. /* ARGH!  Fucking brain damage.  You don't want to know. */
  289. if (haddr & 2) {
  290. HACK *plabel;
  291. HACK ltp;
  292. plabel = (HACK *) (haddr & ~3);
  293. err |= __get_user(haddr, plabel);
  294. err |= __get_user(ltp, plabel + 1);
  295. if (err)
  296. goto give_sigsegv;
  297. regs->gr[19] = ltp;
  298. }
  299. /* The syscall return path will create IAOQ values from r31.
  300.  */
  301. if (in_syscall)
  302. regs->gr[31] = (HACK) haddr;
  303. else {
  304. regs->gr[0] = USER_PSW;
  305. regs->iaoq[0] = (HACK) haddr | 3;
  306. regs->iaoq[1] = regs->iaoq[0] + 4;
  307. }
  308. regs->gr[2]  = rp;                /* userland return pointer */
  309. regs->gr[26] = sig;               /* signal number */
  310. regs->gr[25] = (HACK) &frame->info; /* siginfo pointer */
  311. regs->gr[24] = (HACK) &frame->uc;   /* ucontext pointer */
  312. DBG(("making sigreturn frame: %#lx + %#x = %#lxn",
  313.        regs->gr[30], PARISC_RT_SIGFRAME_SIZE,
  314.        regs->gr[30] + PARISC_RT_SIGFRAME_SIZE));
  315. /* Raise the user stack pointer to make a proper call frame. */
  316. regs->gr[30] = ((HACK) frame + PARISC_RT_SIGFRAME_SIZE);
  317. DBG(("SIG deliver (%s:%d): frame=0x%p sp=%#lx iaoq=%#lx/%#lx rp=%#lxn",
  318.        current->comm, current->pid, frame, regs->gr[30],
  319.        regs->iaoq[0], regs->iaoq[1], rp));
  320. return 1;
  321. give_sigsegv:
  322. DBG(("setup_rt_frame sending SIGSEGVn"));
  323. if (sig == SIGSEGV)
  324. ka->sa.sa_handler = SIG_DFL;
  325. si.si_signo = SIGSEGV;
  326. si.si_errno = 0;
  327. si.si_code = SI_KERNEL;
  328. si.si_pid = current->pid;
  329. si.si_uid = current->uid;
  330. si.si_addr = frame;
  331. force_sig_info(SIGSEGV, &si, current);
  332. return 0;
  333. }
  334. /*
  335.  * OK, we're invoking a handler.
  336.  */
  337. static long
  338. handle_signal(unsigned long sig, struct k_sigaction *ka,
  339.       siginfo_t *info, sigset_t *oldset,
  340.       struct pt_regs *regs, int in_syscall)
  341. {
  342. DBG(("handle_signal(sig=%ld, ka=%p, info=%p, oldset=%p, regs=%p)n",
  343.        sig, ka, info, oldset, regs));
  344. /* Set up the stack frame */
  345. if (!setup_rt_frame(sig, ka, info, oldset, regs, in_syscall))
  346. return 0;
  347. if (ka->sa.sa_flags & SA_ONESHOT)
  348. ka->sa.sa_handler = SIG_DFL;
  349. if (!(ka->sa.sa_flags & SA_NODEFER)) {
  350. spin_lock_irq(&current->sigmask_lock);
  351. sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);
  352. sigaddset(&current->blocked,sig);
  353. recalc_sigpending(current);
  354. spin_unlock_irq(&current->sigmask_lock);
  355. }
  356. return 1;
  357. }
  358. /*
  359.  * Note that 'init' is a special process: it doesn't get signals it doesn't
  360.  * want to handle. Thus you cannot kill init even with a SIGKILL even by
  361.  * mistake.
  362.  *
  363.  * We need to be able to restore the syscall arguments (r21-r26) to
  364.  * restart syscalls.  Thus, the syscall path should save them in the
  365.  * pt_regs structure (it's okay to do so since they are caller-save
  366.  * registers).  As noted below, the syscall number gets restored for
  367.  * us due to the magic of delayed branching.
  368.  */
  369. asmlinkage int
  370. do_signal(sigset_t *oldset, struct pt_regs *regs, int in_syscall)
  371. {
  372. siginfo_t info;
  373. struct k_sigaction *ka;
  374. DBG(("do_signal(oldset=0x%p, regs=0x%p, sr7 %#lx, pending %d, in_syscall=%dn",
  375.        oldset, regs, regs->sr[7], current->sigpending, in_syscall));
  376. /* Everyone else checks to see if they are in kernel mode at
  377.    this point and exits if that's the case.  I'm not sure why
  378.    we would be called in that case, but for some reason we
  379.    are. */
  380. if (!oldset)
  381. oldset = &current->blocked;
  382. DBG(("do_signal: oldset %08lx:%08lxn", 
  383. oldset->sig[0], oldset->sig[1]));
  384. for (;;) {
  385. unsigned long signr;
  386. spin_lock_irq(&current->sigmask_lock);
  387. signr = dequeue_signal(&current->blocked, &info);
  388. spin_unlock_irq(&current->sigmask_lock);
  389. DBG(("do_signal: signr=%ld, pid=%dn", signr, current->pid));
  390. if (!signr)
  391. break;
  392. if ((current->ptrace & PT_PTRACED) && signr != SIGKILL) {
  393. /* Let the debugger run.  */
  394. current->exit_code = signr;
  395. set_current_state(TASK_STOPPED);
  396. notify_parent(current, SIGCHLD);
  397. schedule();
  398. /* We're back.  Did the debugger cancel the sig?  */
  399. if (!(signr = current->exit_code))
  400. continue;
  401. current->exit_code = 0;
  402. /* The debugger continued.  Ignore SIGSTOP.  */
  403. if (signr == SIGSTOP)
  404. continue;
  405. /* Update the siginfo structure.  Is this good?  */
  406. if (signr != info.si_signo) {
  407. info.si_signo = signr;
  408. info.si_errno = 0;
  409. info.si_code = SI_USER;
  410. info.si_pid = current->p_pptr->pid;
  411. info.si_uid = current->p_pptr->uid;
  412. }
  413. /* If the (new) signal is now blocked, requeue it.  */
  414. if (sigismember(&current->blocked, signr)) {
  415. send_sig_info(signr, &info, current);
  416. continue;
  417. }
  418. }
  419. ka = &current->sig->action[signr-1];
  420. DBG(("sa_handler is %xn", 
  421. (unsigned int) ka->sa.sa_handler));
  422. if (ka->sa.sa_handler == SIG_IGN) {
  423. if (signr != SIGCHLD)
  424. continue;
  425. while (sys_wait4(-1, NULL, WNOHANG, NULL) > 0)
  426. /* nothing */;
  427. continue;
  428. }
  429. if (ka->sa.sa_handler == SIG_DFL) {
  430. int exit_code = signr;
  431. /* Init gets no signals it doesn't want.  */
  432. if (current->pid == 1)
  433. continue;
  434. switch (signr) {
  435. case SIGCONT: case SIGCHLD: case SIGWINCH:
  436. continue;
  437. case SIGTSTP: case SIGTTIN: case SIGTTOU:
  438. if (is_orphaned_pgrp(current->pgrp))
  439. continue;
  440. /* FALLTHRU */
  441. case SIGSTOP:
  442. set_current_state(TASK_STOPPED);
  443. current->exit_code = signr;
  444. if (!(current->p_pptr->sig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
  445. notify_parent(current, SIGCHLD);
  446. schedule();
  447. continue;
  448. case SIGQUIT: case SIGILL: case SIGTRAP:
  449. case SIGABRT: case SIGFPE: case SIGSEGV:
  450. case SIGBUS: case SIGSYS: case SIGXCPU: case SIGXFSZ:
  451. if (signr == SIGQUIT) /* Userspace debugging */
  452. show_regs(regs);
  453. if (do_coredump(signr, regs))
  454. exit_code |= 0x80;
  455. /* FALLTHRU */
  456. default:
  457. sig_exit(signr, exit_code, &info);
  458. /* NOTREACHED */
  459. }
  460. }
  461. /* Restart a system call if necessary. */
  462. if (in_syscall) {
  463. /* Check the return code */
  464. switch (regs->gr[28]) {
  465. case -ERESTARTNOHAND:
  466. DBG(("ERESTARTNOHAND: returning -EINTRn"));
  467. regs->gr[28] = -EINTR;
  468. break;
  469. case -ERESTARTSYS:
  470. if (!(ka->sa.sa_flags & SA_RESTART)) {
  471. DBG(("ERESTARTSYS: putting -EINTRn"));
  472. regs->gr[28] = -EINTR;
  473. break;
  474. }
  475. /* fallthrough */
  476. case -ERESTARTNOINTR:
  477. /* A syscall is just a branch, so all
  478.                                    we have to do is fiddle the return
  479.                                    pointer. */
  480. regs->gr[31] -= 8; /* delayed branching */
  481. /* Preserve original r28. */
  482. regs->gr[28] = regs->orig_r28;
  483. break;
  484. }
  485. }
  486. /* Whee!  Actually deliver the signal.  If the
  487.    delivery failed, we need to continue to iterate in
  488.    this loop so we can deliver the SIGSEGV... */
  489. if (handle_signal(signr, ka, &info, oldset, regs, in_syscall)) {
  490. DBG((KERN_DEBUG
  491. "Exiting do_signal (success), regs->gr[28] = %ldn",
  492. regs->gr[28]));
  493. return 1;
  494. }
  495. }
  496. /* Did we come from a system call? */
  497. if (in_syscall) {
  498. /* Restart the system call - no handlers present */
  499. if (regs->gr[28] == -ERESTARTNOHAND ||
  500.     regs->gr[28] == -ERESTARTSYS ||
  501.     regs->gr[28] == -ERESTARTNOINTR) {
  502. /* Hooray for delayed branching.  We don't
  503.                            have to restore %r20 (the system call
  504.                            number) because it gets loaded in the delay
  505.                            slot of the branch external instruction. */
  506. regs->gr[31] -= 8;
  507. /* Preserve original r28. */
  508. regs->gr[28] = regs->orig_r28;
  509. }
  510. }
  511. DBG(("Exiting do_signal (not delivered), regs->gr[28] = %ldn", 
  512. regs->gr[28]));
  513. return 0;
  514. }