signal.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:15k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/s390/kernel/signal.c
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
  7.  *
  8.  *    Based on Intel version
  9.  * 
  10.  *  Copyright (C) 1991, 1992  Linus Torvalds
  11.  *
  12.  *  1997-11-28  Modified for POSIX.1b signals by Richard Henderson
  13.  */
  14. #include <linux/config.h>
  15. #include <linux/sched.h>
  16. #include <linux/mm.h>
  17. #include <linux/smp.h>
  18. #include <linux/smp_lock.h>
  19. #include <linux/kernel.h>
  20. #include <linux/signal.h>
  21. #include <linux/errno.h>
  22. #include <linux/wait.h>
  23. #include <linux/ptrace.h>
  24. #include <linux/unistd.h>
  25. #include <linux/stddef.h>
  26. #include <linux/personality.h>
  27. #include <asm/ucontext.h>
  28. #include <asm/uaccess.h>
  29. #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
  30. typedef struct 
  31. {
  32. __u8 callee_used_stack[__SIGNAL_FRAMESIZE];
  33. struct sigcontext sc;
  34. _sigregs sregs;
  35. __u8 retcode[S390_SYSCALL_SIZE];
  36. } sigframe;
  37. typedef struct 
  38. {
  39. __u8 callee_used_stack[__SIGNAL_FRAMESIZE];
  40. __u8 retcode[S390_SYSCALL_SIZE];
  41. struct siginfo info;
  42. struct ucontext uc;
  43. } rt_sigframe;
  44. asmlinkage int FASTCALL(do_signal(struct pt_regs *regs, sigset_t *oldset));
  45. int copy_siginfo_to_user(siginfo_t *to, siginfo_t *from)
  46. {
  47. if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
  48. return -EFAULT;
  49. if (from->si_code < 0)
  50. return __copy_to_user(to, from, sizeof(siginfo_t));
  51. else {
  52. int err;
  53. /* If you change siginfo_t structure, please be sure
  54.    this code is fixed accordingly.
  55.    It should never copy any pad contained in the structure
  56.    to avoid security leaks, but must copy the generic
  57.    3 ints plus the relevant union member.  */
  58. err = __put_user(from->si_signo, &to->si_signo);
  59. err |= __put_user(from->si_errno, &to->si_errno);
  60. err |= __put_user((short)from->si_code, &to->si_code);
  61. /* First 32bits of unions are always present.  */
  62. err |= __put_user(from->si_pid, &to->si_pid);
  63. switch (from->si_code >> 16) {
  64. case __SI_FAULT >> 16:
  65. break;
  66. case __SI_CHLD >> 16:
  67. err |= __put_user(from->si_utime, &to->si_utime);
  68. err |= __put_user(from->si_stime, &to->si_stime);
  69. err |= __put_user(from->si_status, &to->si_status);
  70. default:
  71. err |= __put_user(from->si_uid, &to->si_uid);
  72. break;
  73. /* case __SI_RT: This is not generated by the kernel as of now.  */
  74. }
  75. return err;
  76. }
  77. }
  78. /*
  79.  * Atomically swap in the new signal mask, and wait for a signal.
  80.  */
  81. asmlinkage int
  82. sys_sigsuspend(struct pt_regs * regs,int history0, int history1, old_sigset_t mask)
  83. {
  84. sigset_t saveset;
  85. mask &= _BLOCKABLE;
  86. spin_lock_irq(&current->sigmask_lock);
  87. saveset = current->blocked;
  88. siginitset(&current->blocked, mask);
  89. recalc_sigpending(current);
  90. spin_unlock_irq(&current->sigmask_lock);
  91. regs->gprs[2] = -EINTR;
  92. while (1) {
  93. set_current_state(TASK_INTERRUPTIBLE);
  94. schedule();
  95. if (do_signal(regs, &saveset))
  96. return -EINTR;
  97. }
  98. }
  99. asmlinkage int
  100. sys_rt_sigsuspend(struct pt_regs * regs,sigset_t *unewset, size_t sigsetsize)
  101. {
  102. sigset_t saveset, newset;
  103. /* XXX: Don't preclude handling different sized sigset_t's.  */
  104. if (sigsetsize != sizeof(sigset_t))
  105. return -EINVAL;
  106. if (copy_from_user(&newset, unewset, sizeof(newset)))
  107. return -EFAULT;
  108. sigdelsetmask(&newset, ~_BLOCKABLE);
  109. spin_lock_irq(&current->sigmask_lock);
  110. saveset = current->blocked;
  111. current->blocked = newset;
  112. recalc_sigpending(current);
  113. spin_unlock_irq(&current->sigmask_lock);
  114. regs->gprs[2] = -EINTR;
  115. while (1) {
  116. set_current_state(TASK_INTERRUPTIBLE);
  117. schedule();
  118. if (do_signal(regs, &saveset))
  119. return -EINTR;
  120. }
  121. }
  122. asmlinkage int 
  123. sys_sigaction(int sig, const struct old_sigaction *act,
  124.       struct old_sigaction *oact)
  125. {
  126. struct k_sigaction new_ka, old_ka;
  127. int ret;
  128. if (act) {
  129. old_sigset_t mask;
  130. if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
  131.     __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
  132.     __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
  133. return -EFAULT;
  134. __get_user(new_ka.sa.sa_flags, &act->sa_flags);
  135. __get_user(mask, &act->sa_mask);
  136. siginitset(&new_ka.sa.sa_mask, mask);
  137. }
  138. ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
  139. if (!ret && oact) {
  140. if (verify_area(VERIFY_WRITE, oact, sizeof(*oact)) ||
  141.     __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
  142.     __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
  143. return -EFAULT;
  144. __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
  145. __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
  146. }
  147. return ret;
  148. }
  149. asmlinkage int
  150. sys_sigaltstack(const stack_t *uss, stack_t *uoss, struct pt_regs *regs)
  151. {
  152. return do_sigaltstack(uss, uoss, regs->gprs[15]);
  153. }
  154. static int save_sigregs(struct pt_regs *regs,_sigregs *sregs)
  155. {
  156. int err;
  157. s390_fp_regs fpregs;
  158.   
  159. err = __copy_to_user(&sregs->regs,regs,sizeof(_s390_regs_common));
  160. if(!err)
  161. {
  162. save_fp_regs(&fpregs);
  163. err=__copy_to_user(&sregs->fpregs,&fpregs,sizeof(fpregs));
  164. }
  165. return(err);
  166. }
  167. static int restore_sigregs(struct pt_regs *regs,_sigregs *sregs)
  168. {
  169. int err;
  170. s390_fp_regs fpregs;
  171. psw_t saved_psw=regs->psw;
  172. err=__copy_from_user(regs,&sregs->regs,sizeof(_s390_regs_common));
  173. if(!err)
  174. {
  175. regs->trap = -1; /* disable syscall checks */
  176. regs->psw.mask=(saved_psw.mask&~PSW_MASK_DEBUGCHANGE)|
  177. (regs->psw.mask&PSW_MASK_DEBUGCHANGE);
  178. regs->psw.addr=(saved_psw.addr&~PSW_ADDR_DEBUGCHANGE)|
  179. (regs->psw.addr&PSW_ADDR_DEBUGCHANGE);
  180. err=__copy_from_user(&fpregs,&sregs->fpregs,sizeof(fpregs));
  181. if(!err)
  182. restore_fp_regs(&fpregs);
  183. }
  184. return(err);
  185. }
  186. asmlinkage long sys_sigreturn(struct pt_regs *regs)
  187. {
  188. sigframe *frame = (sigframe *)regs->gprs[15];
  189. sigset_t set;
  190. if (verify_area(VERIFY_READ, frame, sizeof(*frame)))
  191. goto badframe;
  192. if (__copy_from_user(&set.sig, &frame->sc.oldmask, _SIGMASK_COPY_SIZE))
  193. goto badframe;
  194. sigdelsetmask(&set, ~_BLOCKABLE);
  195. spin_lock_irq(&current->sigmask_lock);
  196. current->blocked = set;
  197. recalc_sigpending(current);
  198. spin_unlock_irq(&current->sigmask_lock);
  199. if (restore_sigregs(regs, &frame->sregs))
  200. goto badframe;
  201. return regs->gprs[2];
  202. badframe:
  203. force_sig(SIGSEGV, current);
  204. return 0;
  205. }
  206. asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
  207. {
  208. rt_sigframe *frame = (rt_sigframe *)regs->gprs[15];
  209. sigset_t set;
  210. if (verify_area(VERIFY_READ, frame, sizeof(*frame)))
  211. goto badframe;
  212. if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
  213. goto badframe;
  214. sigdelsetmask(&set, ~_BLOCKABLE);
  215. spin_lock_irq(&current->sigmask_lock);
  216. current->blocked = set;
  217. recalc_sigpending(current);
  218. spin_unlock_irq(&current->sigmask_lock);
  219. if (restore_sigregs(regs, &frame->uc.uc_mcontext))
  220. goto badframe;
  221. /* It is more difficult to avoid calling this function than to
  222.    call it and ignore errors.  */
  223. do_sigaltstack(&frame->uc.uc_stack, NULL, regs->gprs[15]);
  224. return regs->gprs[2];
  225. badframe:
  226. force_sig(SIGSEGV, current);
  227. return 0;
  228. }
  229. /*
  230.  * Set up a signal frame.
  231.  */
  232. /*
  233.  * Determine which stack to use..
  234.  */
  235. static inline void *
  236. get_sigframe(struct k_sigaction *ka, struct pt_regs * regs, size_t frame_size)
  237. {
  238. unsigned long sp;
  239. /* Default to using normal stack */
  240. sp = regs->gprs[15];
  241. /* This is the X/Open sanctioned signal stack switching.  */
  242. if (ka->sa.sa_flags & SA_ONSTACK) {
  243. if (! on_sig_stack(sp))
  244. sp = current->sas_ss_sp + current->sas_ss_size;
  245. }
  246. /* This is the legacy signal stack switching. */
  247. else if (!user_mode(regs) &&
  248.  !(ka->sa.sa_flags & SA_RESTORER) &&
  249.  ka->sa.sa_restorer) {
  250. sp = (unsigned long) ka->sa.sa_restorer;
  251. }
  252. return (void *)((sp - frame_size) & -8ul);
  253. }
  254. static inline int map_signal(int sig)
  255. {
  256. if (current->exec_domain
  257.     && current->exec_domain->signal_invmap
  258.     && sig < 32)
  259. return current->exec_domain->signal_invmap[sig];
  260. else
  261. return sig;
  262. }
  263. static void setup_frame(int sig, struct k_sigaction *ka,
  264. sigset_t *set, struct pt_regs * regs)
  265. {
  266. sigframe *frame = get_sigframe(ka, regs, sizeof(sigframe));
  267. if (!access_ok(VERIFY_WRITE, frame, sizeof(sigframe)))
  268. goto give_sigsegv;
  269. if (__copy_to_user(&frame->sc.oldmask, &set->sig, _SIGMASK_COPY_SIZE))
  270. goto give_sigsegv;
  271. if (save_sigregs(regs, &frame->sregs))
  272. goto give_sigsegv;
  273. if (__put_user(&frame->sregs, &frame->sc.sregs))
  274. goto give_sigsegv;
  275. /* Set up to return from userspace.  If provided, use a stub
  276.    already in userspace.  */
  277. if (ka->sa.sa_flags & SA_RESTORER) {
  278.                 regs->gprs[14] = FIX_PSW(ka->sa.sa_restorer);
  279. } else {
  280.                 regs->gprs[14] = FIX_PSW(frame->retcode);
  281. if (__put_user(S390_SYSCALL_OPCODE | __NR_sigreturn, 
  282.                        (u16 *)(frame->retcode)))
  283. goto give_sigsegv;
  284. }
  285. /* Set up registers for signal handler */
  286. regs->gprs[15] = (addr_t)frame;
  287. regs->psw.addr = FIX_PSW(ka->sa.sa_handler);
  288. regs->psw.mask = _USER_PSW_MASK;
  289. regs->gprs[2] = map_signal(sig);
  290. regs->gprs[3] = (addr_t)&frame->sc;
  291. /* We forgot to include these in the sigcontext.
  292.    To avoid breaking binary compatibility, they are passed as args. */
  293. regs->gprs[4] = current->thread.trap_no;
  294. regs->gprs[5] = current->thread.prot_addr;
  295. return;
  296. give_sigsegv:
  297. if (sig == SIGSEGV)
  298. ka->sa.sa_handler = SIG_DFL;
  299. force_sig(SIGSEGV, current);
  300. }
  301. static void setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
  302.    sigset_t *set, struct pt_regs * regs)
  303. {
  304. int err = 0;
  305. rt_sigframe *frame = get_sigframe(ka, regs, sizeof(rt_sigframe));
  306. if (!access_ok(VERIFY_WRITE, frame, sizeof(rt_sigframe)))
  307. goto give_sigsegv;
  308. if (copy_siginfo_to_user(&frame->info, info))
  309. goto give_sigsegv;
  310. /* Create the ucontext.  */
  311. err |= __put_user(0, &frame->uc.uc_flags);
  312. err |= __put_user(0, &frame->uc.uc_link);
  313. err |= __put_user(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
  314. err |= __put_user(sas_ss_flags(regs->gprs[15]),
  315.   &frame->uc.uc_stack.ss_flags);
  316. err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
  317. err |= save_sigregs(regs, &frame->uc.uc_mcontext);
  318. err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
  319. if (err)
  320. goto give_sigsegv;
  321. /* Set up to return from userspace.  If provided, use a stub
  322.    already in userspace.  */
  323. if (ka->sa.sa_flags & SA_RESTORER) {
  324.                 regs->gprs[14] = FIX_PSW(ka->sa.sa_restorer);
  325. } else {
  326.                 regs->gprs[14] = FIX_PSW(frame->retcode);
  327. err |= __put_user(S390_SYSCALL_OPCODE | __NR_rt_sigreturn, 
  328.                           (u16 *)(frame->retcode));
  329. }
  330. /* Set up registers for signal handler */
  331. regs->gprs[15] = (addr_t)frame;
  332. regs->psw.addr = FIX_PSW(ka->sa.sa_handler);
  333. regs->psw.mask = _USER_PSW_MASK;
  334. regs->gprs[2] = map_signal(sig);
  335. regs->gprs[3] = (addr_t)&frame->info;
  336. regs->gprs[4] = (addr_t)&frame->uc;
  337. return;
  338. give_sigsegv:
  339. if (sig == SIGSEGV)
  340. ka->sa.sa_handler = SIG_DFL;
  341. force_sig(SIGSEGV, current);
  342. }
  343. /*
  344.  * OK, we're invoking a handler
  345.  */
  346. static void
  347. handle_signal(unsigned long sig, struct k_sigaction *ka,
  348.       siginfo_t *info, sigset_t *oldset, struct pt_regs * regs)
  349. {
  350. /* Are we from a system call? */
  351. if (regs->trap == __LC_SVC_OLD_PSW) {
  352. /* If so, check system call restarting.. */
  353. switch (regs->gprs[2]) {
  354. case -ERESTARTNOHAND:
  355. regs->gprs[2] = -EINTR;
  356. break;
  357. case -ERESTARTSYS:
  358. if (!(ka->sa.sa_flags & SA_RESTART)) {
  359. regs->gprs[2] = -EINTR;
  360. break;
  361. }
  362. /* fallthrough */
  363. case -ERESTARTNOINTR:
  364. regs->gprs[2] = regs->orig_gpr2;
  365. regs->psw.addr -= 2;
  366. }
  367. }
  368. /* Set up the stack frame */
  369. if (ka->sa.sa_flags & SA_SIGINFO)
  370. setup_rt_frame(sig, ka, info, oldset, regs);
  371. else
  372. setup_frame(sig, ka, oldset, regs);
  373. if (ka->sa.sa_flags & SA_ONESHOT)
  374. ka->sa.sa_handler = SIG_DFL;
  375. if (!(ka->sa.sa_flags & SA_NODEFER)) {
  376. spin_lock_irq(&current->sigmask_lock);
  377. sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);
  378. sigaddset(&current->blocked,sig);
  379. recalc_sigpending(current);
  380. spin_unlock_irq(&current->sigmask_lock);
  381. }
  382. }
  383. /*
  384.  * Note that 'init' is a special process: it doesn't get signals it doesn't
  385.  * want to handle. Thus you cannot kill init even with a SIGKILL even by
  386.  * mistake.
  387.  *
  388.  * Note that we go through the signals twice: once to check the signals that
  389.  * the kernel can handle, and then we build all the user-level signal handling
  390.  * stack-frames in one go after that.
  391.  */
  392. int do_signal(struct pt_regs *regs, sigset_t *oldset)
  393. {
  394. siginfo_t info;
  395. struct k_sigaction *ka;
  396. /*
  397.  * We want the common case to go fast, which
  398.  * is why we may in certain cases get here from
  399.  * kernel mode. Just return without doing anything
  400.  * if so.
  401.  */
  402. if (!user_mode(regs))
  403. return 1;
  404. if (!oldset)
  405. oldset = &current->blocked;
  406. #ifdef CONFIG_S390_SUPPORT 
  407. if (current->thread.flags & S390_FLAG_31BIT) {
  408. extern asmlinkage int do_signal32(struct pt_regs *regs, sigset_t *oldset); 
  409. return do_signal32(regs, oldset);
  410.         }
  411. #endif 
  412. for (;;) {
  413. unsigned long signr;
  414. spin_lock_irq(&current->sigmask_lock);
  415. signr = dequeue_signal(&current->blocked, &info);
  416. spin_unlock_irq(&current->sigmask_lock);
  417. if (!signr)
  418. break;
  419. if ((current->ptrace & PT_PTRACED) && signr != SIGKILL) {
  420. /* Let the debugger run.  */
  421. current->exit_code = signr;
  422. set_current_state(TASK_STOPPED);
  423. notify_parent(current, SIGCHLD);
  424. schedule();
  425. /* We're back.  Did the debugger cancel the sig?  */
  426. if (!(signr = current->exit_code))
  427. continue;
  428. current->exit_code = 0;
  429. /* The debugger continued.  Ignore SIGSTOP.  */
  430. if (signr == SIGSTOP)
  431. continue;
  432. /* Update the siginfo structure.  Is this good?  */
  433. if (signr != info.si_signo) {
  434. info.si_signo = signr;
  435. info.si_errno = 0;
  436. info.si_code = SI_USER;
  437. info.si_pid = current->p_pptr->pid;
  438. info.si_uid = current->p_pptr->uid;
  439. }
  440. /* If the (new) signal is now blocked, requeue it.  */
  441. if (sigismember(&current->blocked, signr)) {
  442. send_sig_info(signr, &info, current);
  443. continue;
  444. }
  445. }
  446. ka = &current->sig->action[signr-1];
  447. if (ka->sa.sa_handler == SIG_IGN) {
  448. if (signr != SIGCHLD)
  449. continue;
  450. /* Check for SIGCHLD: it's special.  */
  451. while (sys_wait4(-1, NULL, WNOHANG, NULL) > 0)
  452. /* nothing */;
  453. continue;
  454. }
  455. if (ka->sa.sa_handler == SIG_DFL) {
  456. int exit_code = signr;
  457. /* Init gets no signals it doesn't want.  */
  458. if (current->pid == 1)
  459. continue;
  460. switch (signr) {
  461. case SIGCONT: case SIGCHLD: case SIGWINCH:
  462. continue;
  463. case SIGTSTP: case SIGTTIN: case SIGTTOU:
  464. if (is_orphaned_pgrp(current->pgrp))
  465. continue;
  466. /* FALLTHRU */
  467. case SIGSTOP: {
  468. struct signal_struct *sig;
  469. set_current_state(TASK_STOPPED);
  470. current->exit_code = signr;
  471. sig = current->p_pptr->sig;
  472. if (sig && !(sig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
  473. notify_parent(current, SIGCHLD);
  474. schedule();
  475. continue;
  476. }
  477. case SIGQUIT: case SIGILL: case SIGTRAP:
  478. case SIGABRT: case SIGFPE: case SIGSEGV:
  479. case SIGBUS: case SIGSYS: case SIGXCPU: case SIGXFSZ:
  480.                                 if (do_coredump(signr, regs))
  481.                                         exit_code |= 0x80;
  482.                                 /* FALLTHRU */
  483. default:
  484. sigaddset(&current->pending.signal, signr);
  485. recalc_sigpending(current);
  486. current->flags |= PF_SIGNALED;
  487. do_exit(exit_code);
  488. /* NOTREACHED */
  489. }
  490. }
  491. /* Whee!  Actually deliver the signal.  */
  492. handle_signal(signr, ka, &info, oldset, regs);
  493. return 1;
  494. }
  495. /* Did we come from a system call? */
  496. if ( regs->trap == __LC_SVC_OLD_PSW /* System Call! */ ) {
  497. /* Restart the system call - no handlers present */
  498. if (regs->gprs[2] == -ERESTARTNOHAND ||
  499.     regs->gprs[2] == -ERESTARTSYS ||
  500.     regs->gprs[2] == -ERESTARTNOINTR) {
  501. regs->gprs[2] = regs->orig_gpr2;
  502. regs->psw.addr -= 2;
  503. }
  504. }
  505. return 0;
  506. }