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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/ppc64/kernel/signal.c
  3.  *
  4.  *  PowerPC version 
  5.  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
  6.  *
  7.  *  Derived from "arch/i386/kernel/signal.c"
  8.  *    Copyright (C) 1991, 1992 Linus Torvalds
  9.  *    1997-11-28  Modified for POSIX.1b signals by Richard Henderson
  10.  *
  11.  *  This program is free software; you can redistribute it and/or
  12.  *  modify it under the terms of the GNU General Public License
  13.  *  as published by the Free Software Foundation; either version
  14.  *  2 of the License, or (at your option) any later version.
  15.  */
  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 <linux/elf.h>
  28. #include <asm/ppc32.h>
  29. #include <asm/sigcontext.h>
  30. #include <asm/ucontext.h>
  31. #include <asm/uaccess.h>
  32. #include <asm/pgtable.h>
  33. #include <asm/ppcdebug.h>
  34. #include <asm/unistd.h>
  35. #define DEBUG_SIG 0
  36. #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
  37. #ifndef MIN
  38. #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  39. #endif
  40. #define GP_REGS_SIZE MIN(sizeof(elf_gregset_t), sizeof(struct pt_regs))
  41. /* 
  42.  * These are the flags in the MSR that the user is allowed to change
  43.  * by modifying the saved value of the MSR on the stack.  SE and BE
  44.  * should not be in this list since gdb may want to change these.  I.e,
  45.  * you should be able to step out of a signal handler to see what
  46.  * instruction executes next after the signal handler completes.
  47.  * Alternately, if you stepped into a signal handler, you should be
  48.  * able to continue 'til the next breakpoint from within the signal
  49.  * handler, even if the handler returns.
  50.  */
  51. #define MSR_USERCHANGE (MSR_FE0 | MSR_FE1)
  52. int do_signal(sigset_t *oldset, struct pt_regs *regs);
  53. extern long sys_wait4(pid_t pid, unsigned int *stat_addr,
  54.      int options, /*unsigned long*/ struct rusage *ru);
  55. int copy_siginfo_to_user(siginfo_t *to, siginfo_t *from)
  56. {
  57. if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
  58. return -EFAULT;
  59. if (from->si_code < 0)
  60. return __copy_to_user(to, from, sizeof(siginfo_t));
  61. else {
  62. int err;
  63. /* If you change siginfo_t structure, please be sure
  64.    this code is fixed accordingly.
  65.    It should never copy any pad contained in the structure
  66.    to avoid security leaks, but must copy the generic
  67.    3 ints plus the relevant union member.  */
  68. err = __put_user(from->si_signo, &to->si_signo);
  69. err |= __put_user(from->si_errno, &to->si_errno);
  70. err |= __put_user((short)from->si_code, &to->si_code);
  71. /* First 32bits of unions are always present.  */
  72. err |= __put_user(from->si_pid, &to->si_pid);
  73. switch (from->si_code >> 16) {
  74. case __SI_FAULT >> 16:
  75. break;
  76. case __SI_CHLD >> 16:
  77. err |= __put_user(from->si_utime, &to->si_utime);
  78. err |= __put_user(from->si_stime, &to->si_stime);
  79. err |= __put_user(from->si_status, &to->si_status);
  80. default:
  81. err |= __put_user(from->si_uid, &to->si_uid);
  82. break;
  83. /* case __SI_RT: This is not generated by the kernel as of now.  */
  84. }
  85. return err;
  86. }
  87. }
  88. /*
  89.  * Atomically swap in the new signal mask, and wait for a signal.
  90.  */
  91. long sys_sigsuspend(old_sigset_t mask, int p2, int p3, int p4, int p6, int p7,
  92.        struct pt_regs *regs)
  93. {
  94. sigset_t saveset;
  95.   
  96.         PPCDBG(PPCDBG_SYS64X, "sys_sigsuspend - running - pid=%ld current=%lx comm=%s n",
  97.                 current->pid, current, current->comm);
  98. mask &= _BLOCKABLE;
  99. spin_lock_irq(&current->sigmask_lock);
  100. saveset = current->blocked;
  101. siginitset(&current->blocked, mask);
  102. recalc_sigpending(current);
  103. spin_unlock_irq(&current->sigmask_lock);
  104. regs->gpr[3] = -EINTR;
  105. while (1) {
  106. current->state = TASK_INTERRUPTIBLE;
  107. schedule();
  108. if (do_signal(&saveset, regs))
  109. /*
  110.  * If a signal handler needs to be called,
  111.  * do_signal() has set R3 to the signal number (the
  112.  * first argument of the signal handler), so don't
  113.  * overwrite that with EINTR !
  114.  * In the other cases, do_signal() doesn't touch 
  115.  * R3, so it's still set to -EINTR (see above).
  116.  */
  117. return regs->gpr[3];
  118. }
  119. }
  120. long sys_rt_sigsuspend(sigset_t *unewset, size_t sigsetsize, int p3, int p4, int p6,
  121.   int p7, struct pt_regs *regs)
  122. {
  123. sigset_t saveset, newset;
  124.   
  125.         PPCDBG(PPCDBG_SYS64X, "sys_rt_sigsuspend - running - pid=%ld current=%lx comm=%s n",
  126.                 current->pid, current, current->comm);
  127.   /* XXX: Don't preclude handling different sized sigset_t's.  */
  128. if (sigsetsize != sizeof(sigset_t))
  129. return -EINVAL;
  130. if (copy_from_user(&newset, unewset, sizeof(newset)))
  131. return -EFAULT;
  132. sigdelsetmask(&newset, ~_BLOCKABLE);
  133. spin_lock_irq(&current->sigmask_lock);
  134. saveset = current->blocked;
  135. current->blocked = newset;
  136. recalc_sigpending(current);
  137. spin_unlock_irq(&current->sigmask_lock);
  138. regs->gpr[3] = -EINTR;
  139. while (1) {
  140. current->state = TASK_INTERRUPTIBLE;
  141. schedule();
  142. if (do_signal(&saveset, regs))
  143. return regs->gpr[3];
  144. }
  145. }
  146. asmlinkage long sys_sigaltstack(const stack_t *uss, stack_t *uoss)
  147. {
  148.   struct pt_regs *regs = (struct pt_regs *) &uss;
  149.   
  150.   PPCDBG(PPCDBG_SYS64X, "sys_sigaltstack - running - pid=%ld current=%lx comm=%s n",
  151.           current->pid, current, current->comm);
  152.   return do_sigaltstack(uss, uoss, regs->gpr[1]);
  153. }
  154. long sys_sigaction(int sig, const struct old_sigaction *act,
  155.       struct old_sigaction *oact)
  156. {
  157. struct k_sigaction new_ka, old_ka;
  158. int ret;
  159.         PPCDBG(PPCDBG_SYS64X, "sys_sigaction - running - pid=%ld current=%lx comm=%s n",
  160.                 current->pid, current, current->comm);
  161.  
  162. if (act) {
  163. old_sigset_t mask;
  164. if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
  165.     __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
  166.     __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
  167. return -EFAULT;
  168. __get_user(new_ka.sa.sa_flags, &act->sa_flags);
  169. __get_user(mask, &act->sa_mask);
  170. siginitset(&new_ka.sa.sa_mask, mask);
  171. }
  172. ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
  173. if (!ret && oact) {
  174. if (verify_area(VERIFY_WRITE, oact, sizeof(*oact)) ||
  175.     __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
  176.     __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
  177. return -EFAULT;
  178. __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
  179. __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
  180. }
  181.  
  182. return ret;
  183. }
  184. /*
  185.  * When we have signals to deliver, we set up on the
  186.  * user stack, going down from the original stack pointer:
  187.  * a sigregs struct
  188.  * one or more sigcontext structs
  189.  * a gap of __SIGNAL_FRAMESIZE bytes
  190.  *
  191.  * Each of these things must be a multiple of 16 bytes in size.
  192.  *
  193.  * XXX ultimately we will have to stack up a siginfo and ucontext
  194.  * for each rt signal.
  195.  */
  196. struct sigregs {
  197. elf_gregset_t gp_regs;
  198. double fp_regs[ELF_NFPREG];
  199. unsigned int tramp[2];
  200. /* 64 bit API allows for 288 bytes below sp before 
  201.    decrementing it. */
  202. int abigap[72];
  203. };
  204. struct rt_sigframe
  205. {
  206. unsigned long _unused[2];
  207. struct siginfo *pinfo;
  208. void *puc;
  209. struct siginfo info;
  210. struct ucontext uc;
  211. };
  212. /*
  213.  *  When we have rt signals to deliver, we set up on the
  214.  *  user stack, going down from the original stack pointer:
  215.  *    a sigregs struct
  216.  *    one rt_sigframe struct (siginfo + ucontext)
  217.  *    a gap of __SIGNAL_FRAMESIZE bytes
  218.  *
  219.  *  Each of these things must be a multiple of 16 bytes in size.
  220.  *
  221.  */
  222. int sys_rt_sigreturn(unsigned long r3, unsigned long r4, unsigned long r5,
  223.      unsigned long r6, unsigned long r7, unsigned long r8,
  224.      struct pt_regs *regs)
  225. {
  226. struct rt_sigframe *rt_sf;
  227. struct sigcontext_struct sigctx;
  228. struct sigregs *sr;
  229. int ret;
  230. elf_gregset_t saved_regs;  /* an array of ELF_NGREG unsigned longs */
  231. sigset_t set;
  232. stack_t st;
  233. unsigned long prevsp;
  234. rt_sf = (struct rt_sigframe *)(regs->gpr[1] + __SIGNAL_FRAMESIZE);
  235. if (copy_from_user(&sigctx, &rt_sf->uc.uc_mcontext, sizeof(sigctx))
  236.     || copy_from_user(&set, &rt_sf->uc.uc_sigmask, sizeof(set))
  237.     || copy_from_user(&st, &rt_sf->uc.uc_stack, sizeof(st)))
  238. goto badframe;
  239. sigdelsetmask(&set, ~_BLOCKABLE);
  240. spin_lock_irq(&current->sigmask_lock);
  241. current->blocked = set;
  242. recalc_sigpending(current);
  243. spin_unlock_irq(&current->sigmask_lock);
  244. rt_sf++; /* Look at next rt_sigframe */
  245. if (rt_sf == (struct rt_sigframe *)(sigctx.regs)) {
  246. /* Last stacked signal - restore registers -
  247.  * sigctx is initialized to point to the 
  248.  * preamble frame (where registers are stored) 
  249.  * see handle_signal()
  250.  */
  251. sr = (struct sigregs *) sigctx.regs;
  252. if (regs->msr & MSR_FP )
  253. giveup_fpu(current);
  254. if (copy_from_user(saved_regs, &sr->gp_regs,
  255.    sizeof(sr->gp_regs)))
  256. goto badframe;
  257. saved_regs[PT_MSR] = (regs->msr & ~MSR_USERCHANGE)
  258. | (saved_regs[PT_MSR] & MSR_USERCHANGE);
  259. saved_regs[PT_SOFTE] = regs->softe;
  260. memcpy(regs, saved_regs, GP_REGS_SIZE);
  261. if (copy_from_user(current->thread.fpr, &sr->fp_regs,
  262.    sizeof(sr->fp_regs)))
  263. goto badframe;
  264. /* This function sets back the stack flags into
  265.    the current task structure.  */
  266. sys_sigaltstack(&st, NULL);
  267. ret = regs->result;
  268. } else {
  269. /* More signals to go */
  270. /* Set up registers for next signal handler */
  271. regs->gpr[1] = (unsigned long)rt_sf - __SIGNAL_FRAMESIZE;
  272. if (copy_from_user(&sigctx, &rt_sf->uc.uc_mcontext, sizeof(sigctx)))
  273. goto badframe;
  274. sr = (struct sigregs *) sigctx.regs;
  275. regs->gpr[3] = ret = sigctx.signal;
  276. /* Get the siginfo   */
  277. get_user(regs->gpr[4], (unsigned long *)&rt_sf->pinfo);
  278. /* Get the ucontext */
  279. get_user(regs->gpr[5], (unsigned long *)&rt_sf->puc);
  280. regs->gpr[6] = (unsigned long) rt_sf;
  281. regs->link = (unsigned long) &sr->tramp;
  282. regs->nip = sigctx.handler;
  283. if (get_user(prevsp, &sr->gp_regs[PT_R1])
  284.     || put_user(prevsp, (unsigned long *) regs->gpr[1]))
  285. goto badframe;
  286. }
  287. return ret;
  288. badframe:
  289. do_exit(SIGSEGV);
  290. }
  291. static void
  292. setup_rt_frame(struct pt_regs *regs, struct sigregs *frame,
  293.        signed long newsp)
  294. {
  295. struct rt_sigframe *rt_sf = (struct rt_sigframe *) newsp;
  296. /* Handler is *really* a pointer to the function descriptor for
  297.  * the signal routine.  The first entry in the function
  298.  * descriptor is the entry address of signal and the second
  299.  * entry is the TOC value we need to use.
  300.  */
  301.         struct funct_descr_entry {
  302.                      unsigned long entry;
  303.                      unsigned long toc;
  304. };
  305.   
  306. struct funct_descr_entry * funct_desc_ptr;
  307. unsigned long temp_ptr;
  308. /* Set up preamble frame */
  309. if (verify_area(VERIFY_WRITE, frame, sizeof(*frame)))
  310. goto badframe;
  311. if (regs->msr & MSR_FP)
  312. giveup_fpu(current);
  313. if (__copy_to_user(&frame->gp_regs, regs, GP_REGS_SIZE)
  314.     || __copy_to_user(&frame->fp_regs, current->thread.fpr,
  315.       ELF_NFPREG * sizeof(double))
  316.     || __put_user(0x38000000UL + __NR_rt_sigreturn, &frame->tramp[0]) /* li r0, __NR_rt_sigreturn */
  317.     || __put_user(0x44000002UL, &frame->tramp[1])) /* sc */
  318. goto badframe;
  319. flush_icache_range((unsigned long) &frame->tramp[0],
  320.    (unsigned long) &frame->tramp[2]);
  321. /* Retrieve rt_sigframe from stack and
  322.    set up registers for signal handler
  323. */
  324. newsp -= __SIGNAL_FRAMESIZE;
  325.         if ( get_user(temp_ptr, &rt_sf->uc.uc_mcontext.handler)) {
  326. goto badframe;
  327. }
  328.         funct_desc_ptr = ( struct funct_descr_entry *) temp_ptr;
  329.         
  330. if (put_user(regs->gpr[1], (unsigned long *)newsp)
  331.     || get_user(regs->nip, &funct_desc_ptr->entry)
  332.             || get_user(regs->gpr[2], &funct_desc_ptr->toc)
  333.     || get_user(regs->gpr[3], &rt_sf->uc.uc_mcontext.signal)
  334.     || get_user(regs->gpr[4], (unsigned long *)&rt_sf->pinfo)
  335.     || get_user(regs->gpr[5], (unsigned long *)&rt_sf->puc))
  336. goto badframe;
  337. regs->gpr[1] = newsp;
  338. regs->gpr[6] = (unsigned long) rt_sf;
  339. regs->link = (unsigned long) frame->tramp;
  340. return;
  341. badframe:
  342. #if DEBUG_SIG
  343. printk("badframe in setup_rt_frame, regs=%p frame=%p newsp=%lxn",
  344.        regs, frame, newsp);
  345. #endif
  346. do_exit(SIGSEGV);
  347. }
  348. /*
  349.  * Do a signal return; undo the signal stack.
  350.  */
  351. long sys_sigreturn(unsigned long r3, unsigned long r4, unsigned long r5,
  352.    unsigned long r6, unsigned long r7, unsigned long r8,
  353.    struct pt_regs *regs)
  354. {
  355. struct sigcontext_struct *sc, sigctx;
  356. struct sigregs *sr;
  357. long ret;
  358. elf_gregset_t saved_regs;  /* an array of ELF_NGREG unsigned longs */
  359. sigset_t set;
  360. unsigned long prevsp;
  361.         sc = (struct sigcontext_struct *)(regs->gpr[1] + __SIGNAL_FRAMESIZE);
  362. if (copy_from_user(&sigctx, sc, sizeof(sigctx)))
  363. goto badframe;
  364. set.sig[0] = sigctx.oldmask;
  365. #if _NSIG_WORDS > 1
  366. set.sig[1] = sigctx._unused[3];
  367. #endif
  368. sigdelsetmask(&set, ~_BLOCKABLE);
  369. spin_lock_irq(&current->sigmask_lock);
  370. current->blocked = set;
  371. recalc_sigpending(current);
  372. spin_unlock_irq(&current->sigmask_lock);
  373. sc++; /* Look at next sigcontext */
  374. if (sc == (struct sigcontext_struct *)(sigctx.regs)) {
  375. /* Last stacked signal - restore registers */
  376. sr = (struct sigregs *) sigctx.regs;
  377. if (regs->msr & MSR_FP )
  378. giveup_fpu(current);
  379. if (copy_from_user(saved_regs, &sr->gp_regs,
  380.    sizeof(sr->gp_regs)))
  381. goto badframe;
  382. saved_regs[PT_MSR] = (regs->msr & ~MSR_USERCHANGE)
  383. | (saved_regs[PT_MSR] & MSR_USERCHANGE);
  384. saved_regs[PT_SOFTE] = regs->softe;
  385. memcpy(regs, saved_regs, GP_REGS_SIZE);
  386. if (copy_from_user(current->thread.fpr, &sr->fp_regs,
  387.    sizeof(sr->fp_regs)))
  388. goto badframe;
  389. ret = regs->result;
  390. } else {
  391. /* More signals to go */
  392. regs->gpr[1] = (unsigned long)sc - __SIGNAL_FRAMESIZE;
  393. if (copy_from_user(&sigctx, sc, sizeof(sigctx)))
  394. goto badframe;
  395. sr = (struct sigregs *) sigctx.regs;
  396. regs->gpr[3] = ret = sigctx.signal;
  397. regs->gpr[4] = (unsigned long) sc;
  398. regs->link = (unsigned long) &sr->tramp;
  399. regs->nip = sigctx.handler;
  400. if (get_user(prevsp, &sr->gp_regs[PT_R1])
  401.     || put_user(prevsp, (unsigned long *) regs->gpr[1]))
  402. goto badframe;
  403. }
  404. return ret;
  405. badframe:
  406. do_exit(SIGSEGV);
  407. }
  408. /*
  409.  * Set up a signal frame.
  410.  */
  411. static void
  412. setup_frame(struct pt_regs *regs, struct sigregs *frame,
  413.             unsigned long newsp)
  414. {
  415. /* Handler is *really* a pointer to the function descriptor for
  416.  * the signal routine.  The first entry in the function
  417.  * descriptor is the entry address of signal and the second
  418.  * entry is the TOC value we need to use.
  419.  */
  420. struct funct_descr_entry {
  421. unsigned long entry;
  422. unsigned long toc;
  423. };
  424.   
  425. struct funct_descr_entry * funct_desc_ptr;
  426. unsigned long temp_ptr;
  427. struct sigcontext_struct *sc = (struct sigcontext_struct *) newsp;
  428.   
  429. if (verify_area(VERIFY_WRITE, frame, sizeof(*frame)))
  430. goto badframe;
  431. if (regs->msr & MSR_FP)
  432. giveup_fpu(current);
  433. if (__copy_to_user(&frame->gp_regs, regs, GP_REGS_SIZE)
  434.     || __copy_to_user(&frame->fp_regs, current->thread.fpr,
  435.       ELF_NFPREG * sizeof(double))
  436.     || __put_user(0x38000000UL + __NR_sigreturn, &frame->tramp[0])    /* li r0, __NR_sigreturn */
  437.     || __put_user(0x44000002UL, &frame->tramp[1]))   /* sc */
  438. goto badframe;
  439. flush_icache_range((unsigned long) &frame->tramp[0],
  440.    (unsigned long) &frame->tramp[2]);
  441. newsp -= __SIGNAL_FRAMESIZE;
  442. if ( get_user(temp_ptr, &sc->handler))
  443. goto badframe;
  444.   
  445. funct_desc_ptr = ( struct funct_descr_entry *) temp_ptr;
  446. if (put_user(regs->gpr[1], (unsigned long *)newsp)
  447.     || get_user(regs->nip, & funct_desc_ptr ->entry)
  448.     || get_user(regs->gpr[2],& funct_desc_ptr->toc)
  449.     || get_user(regs->gpr[3], &sc->signal))
  450. goto badframe;
  451. regs->gpr[1] = newsp;
  452. regs->gpr[4] = (unsigned long) sc;
  453. regs->link = (unsigned long) frame->tramp;
  454. PPCDBG(PPCDBG_SIGNAL, "setup_frame - returning - regs->gpr[1]=%lx, regs->gpr[4]=%lx, regs->link=%lx n",
  455.        regs->gpr[1], regs->gpr[4], regs->link);
  456. return;
  457.  badframe:
  458. PPCDBG(PPCDBG_SIGNAL, "setup_frame - badframe in setup_frame, regs=%p frame=%p newsp=%lxn", regs, frame, newsp);  PPCDBG_ENTER_DEBUGGER();
  459. #if DEBUG_SIG
  460. printk("badframe in setup_frame, regs=%p frame=%p newsp=%lxn",
  461.        regs, frame, newsp);
  462. #endif
  463. do_exit(SIGSEGV);
  464. }
  465. /*
  466.  * OK, we're invoking a handler
  467.  */
  468. static void
  469. handle_signal(unsigned long sig, struct k_sigaction *ka,
  470.       siginfo_t *info, sigset_t *oldset, struct pt_regs * regs,
  471.       unsigned long *newspp, unsigned long frame)
  472. {
  473. struct sigcontext_struct *sc;
  474.         struct rt_sigframe *rt_sf;
  475. if (regs->trap == 0x0C00 /* System Call! */
  476.     && ((int)regs->result == -ERESTARTNOHAND ||
  477. ((int)regs->result == -ERESTARTSYS &&
  478.  !(ka->sa.sa_flags & SA_RESTART))))
  479. regs->result = -EINTR;
  480.         /* Set up Signal Frame */
  481.      
  482. if (ka->sa.sa_flags & SA_SIGINFO) {
  483. /* Put a Real Time Context onto stack */
  484. *newspp -= sizeof(*rt_sf);
  485. rt_sf = (struct rt_sigframe *) *newspp;
  486. if (verify_area(VERIFY_WRITE, rt_sf, sizeof(*rt_sf)))
  487. goto badframe;
  488.                 
  489. if (__put_user((unsigned long) ka->sa.sa_handler, &rt_sf->uc.uc_mcontext.handler)
  490.     || __put_user(&rt_sf->info, &rt_sf->pinfo)
  491.     || __put_user(&rt_sf->uc, &rt_sf->puc)
  492.     /* Put the siginfo */
  493.     || __copy_to_user(&rt_sf->info, info, sizeof(*info))
  494.     /* Create the ucontext */
  495.     || __put_user(0, &rt_sf->uc.uc_flags)
  496.     || __put_user(0, &rt_sf->uc.uc_link)
  497.     || __put_user(current->sas_ss_sp, &rt_sf->uc.uc_stack.ss_sp)
  498.     || __put_user(sas_ss_flags(regs->gpr[1]), 
  499.   &rt_sf->uc.uc_stack.ss_flags)
  500.     || __put_user(current->sas_ss_size, &rt_sf->uc.uc_stack.ss_size)
  501.     || __copy_to_user(&rt_sf->uc.uc_sigmask, oldset, sizeof(*oldset))
  502.     /* mcontext.regs points to preamble register frame */
  503.     || __put_user((struct pt_regs *)frame, &rt_sf->uc.uc_mcontext.regs)
  504.     || __put_user(sig, &rt_sf->uc.uc_mcontext.signal))
  505. goto badframe;
  506.                
  507. } else {
  508.         /* Put another sigcontext on the stack */
  509.                 *newspp -= sizeof(*sc);
  510.          sc = (struct sigcontext_struct *) *newspp;
  511.          if (verify_area(VERIFY_WRITE, sc, sizeof(*sc)))
  512.          goto badframe;
  513.          if (__put_user((unsigned long) ka->sa.sa_handler, &sc->handler)
  514.            || __put_user(oldset->sig[0], &sc->oldmask)
  515. #if _NSIG_WORDS > 1
  516.            || __put_user(oldset->sig[1], &sc->_unused[3])
  517. #endif
  518.            || __put_user((struct pt_regs *)frame, &sc->regs)
  519.            || __put_user(sig, &sc->signal))
  520.          goto badframe;
  521. }
  522. if (ka->sa.sa_flags & SA_ONESHOT)
  523. ka->sa.sa_handler = SIG_DFL;
  524. if (!(ka->sa.sa_flags & SA_NODEFER)) {
  525. spin_lock_irq(&current->sigmask_lock);
  526. sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);
  527. sigaddset(&current->blocked,sig);
  528. recalc_sigpending(current);
  529. spin_unlock_irq(&current->sigmask_lock);
  530. }
  531. return;
  532. badframe:
  533. #if DEBUG_SIG
  534. printk("badframe in handle_signal, regs=%p frame=%lx newsp=%lxn",
  535.        regs, frame, *newspp);
  536. printk("sc=%p sig=%d ka=%p info=%p oldset=%pn", sc, sig, ka, info, oldset);
  537. #endif
  538. do_exit(SIGSEGV);
  539. }
  540. /*
  541.  * Note that 'init' is a special process: it doesn't get signals it doesn't
  542.  * want to handle. Thus you cannot kill init even with a SIGKILL even by
  543.  * mistake.
  544.  */
  545. extern int do_signal32(sigset_t *oldset, struct pt_regs *regs);
  546. int do_signal(sigset_t *oldset, struct pt_regs *regs)
  547. {
  548. siginfo_t info;
  549. struct k_sigaction *ka;
  550. unsigned long frame, newsp;
  551. /*
  552.  * If the current thread is 32 bit - invoke the
  553.  * 32 bit signal handling code
  554.  */
  555. if (current->thread.flags & PPC_FLAG_32BIT)
  556. return do_signal32(oldset, regs);
  557.         if (!oldset)
  558. oldset = &current->blocked;
  559. newsp = frame = 0;
  560. for (;;) {
  561. unsigned long signr;
  562.                 PPCDBG(PPCDBG_SIGNAL, "do_signal - (pre) dequeueing signal - pid=%ld current=%lx comm=%s n", current->pid, current, current->comm);
  563. spin_lock_irq(&current->sigmask_lock);
  564. signr = dequeue_signal(&current->blocked, &info);
  565. spin_unlock_irq(&current->sigmask_lock);
  566.                 PPCDBG(PPCDBG_SIGNAL, "do_signal - (aft) dequeueing signal - signal=%lx - pid=%ld current=%lx comm=%s n", signr, current->pid, current, current->comm);
  567. if (!signr)
  568. break;
  569. if ((current->ptrace & PT_PTRACED) && signr != SIGKILL) {
  570. /* Let the debugger run.  */
  571. current->exit_code = signr;
  572. current->state = TASK_STOPPED;
  573. notify_parent(current, SIGCHLD);
  574. schedule();
  575. /* We're back.  Did the debugger cancel the sig?  */
  576. if (!(signr = current->exit_code))
  577. continue;
  578. current->exit_code = 0;
  579. /* The debugger continued.  Ignore SIGSTOP.  */
  580. if (signr == SIGSTOP)
  581. continue;
  582. /* Update the siginfo structure.  Is this good?  */
  583. if (signr != info.si_signo) {
  584. info.si_signo = signr;
  585. info.si_errno = 0;
  586. info.si_code = SI_USER;
  587. info.si_pid = current->p_pptr->pid;
  588. info.si_uid = current->p_pptr->uid;
  589. }
  590. /* If the (new) signal is now blocked, requeue it.  */
  591. if (sigismember(&current->blocked, signr)) {
  592. send_sig_info(signr, &info, current);
  593. continue;
  594. }
  595. }
  596. ka = &current->sig->action[signr-1];
  597.   
  598.                 PPCDBG(PPCDBG_SIGNAL, "do_signal - ka=%p, action handler=%lx n", ka, ka->sa.sa_handler);
  599. if (ka->sa.sa_handler == SIG_IGN) {
  600.                         PPCDBG(PPCDBG_SIGNAL, "do_signal - into SIG_IGN logic n");
  601. if (signr != SIGCHLD)
  602. continue;
  603. /* Check for SIGCHLD: it's special.  */
  604. while (sys_wait4(-1, NULL, WNOHANG, NULL) > 0)
  605. /* nothing */;
  606. continue;
  607. }
  608. if (ka->sa.sa_handler == SIG_DFL) {
  609. int exit_code = signr;
  610.                         PPCDBG(PPCDBG_SIGNAL, "do_signal - into SIG_DFL logic n");
  611. /* Init gets no signals it doesn't want.  */
  612. if (current->pid == 1)
  613. continue;
  614. switch (signr) {
  615. case SIGCONT: case SIGCHLD: case SIGWINCH: case SIGURG:
  616. continue;
  617. case SIGTSTP: case SIGTTIN: case SIGTTOU:
  618. if (is_orphaned_pgrp(current->pgrp))
  619. continue;
  620. /* FALLTHRU */
  621. case SIGSTOP: {
  622. struct signal_struct *sig;
  623. current->state = TASK_STOPPED;
  624. current->exit_code = signr;
  625. sig = current->p_pptr->sig;
  626. if (sig && !(sig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
  627. notify_parent(current, SIGCHLD);
  628. schedule();
  629. continue;
  630. }
  631. case SIGQUIT: case SIGILL: case SIGTRAP:
  632. case SIGABRT: case SIGFPE: case SIGSEGV:
  633. case SIGBUS: case SIGSYS: case SIGXCPU: case SIGXFSZ:
  634. if (do_coredump(signr, regs))
  635. exit_code |= 0x80;
  636. /* FALLTHRU */
  637. default:
  638. sig_exit(signr, exit_code, &info);
  639. /* NOTREACHED */
  640. }
  641. }
  642. if ( (ka->sa.sa_flags & SA_ONSTACK)
  643.      && (! on_sig_stack(regs->gpr[1])))
  644. newsp = (current->sas_ss_sp + current->sas_ss_size);
  645. else
  646. newsp = regs->gpr[1];
  647. newsp = frame = newsp - sizeof(struct sigregs);
  648. /* Whee!  Actually deliver the signal.  */
  649.   
  650.                 PPCDBG(PPCDBG_SIGNAL, "do_signal - GOING TO RUN SIGNAL HANDLER - pid=%ld current=%lx comm=%s n", current->pid, current, current->comm);
  651. handle_signal(signr, ka, &info, oldset, regs, &newsp, frame);
  652.                 PPCDBG(PPCDBG_SIGNAL, "do_signal - after running signal handler - pid=%ld current=%lx comm=%s n", current->pid, current, current->comm);
  653.                 break;
  654. }
  655. if (regs->trap == 0x0C00 /* System Call! */ &&
  656.     ((int)regs->result == -ERESTARTNOHAND ||
  657.      (int)regs->result == -ERESTARTSYS ||
  658.      (int)regs->result == -ERESTARTNOINTR)) {
  659.                 PPCDBG(PPCDBG_SIGNAL, "do_signal - going to back up & retry system call n");
  660. regs->gpr[3] = regs->orig_gpr3;
  661. regs->nip -= 4; /* Back up & retry system call */
  662. regs->result = 0;
  663. }
  664. if (newsp == frame)
  665.           {
  666.              PPCDBG(PPCDBG_SIGNAL, "do_signal - returning w/ no signal delivered n");
  667.              return 0; /* no signals delivered */
  668.            }
  669.   
  670.      
  671.         if (ka->sa.sa_flags & SA_SIGINFO)
  672.              setup_rt_frame(regs, (struct sigregs *) frame, newsp);
  673.         else        
  674.     setup_frame(regs, (struct sigregs *) frame, newsp);
  675.         PPCDBG(PPCDBG_SIGNAL, "do_signal - returning a signal was delivered n");
  676. return 1;
  677. }