signal.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. /*
  2. * OpenRISC signal.c
  3. *
  4. * Linux architectural port borrowing liberally from similar works of
  5. * others. All original copyrights apply as per the original source
  6. * declaration.
  7. *
  8. * Modifications for the OpenRISC architecture:
  9. * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
  10. * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License
  14. * as published by the Free Software Foundation; either version
  15. * 2 of the License, or (at your option) any later version.
  16. */
  17. #include <linux/sched.h>
  18. #include <linux/mm.h>
  19. #include <linux/smp.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/tracehook.h>
  28. #include <asm/processor.h>
  29. #include <asm/ucontext.h>
  30. #include <asm/uaccess.h>
  31. #define DEBUG_SIG 0
  32. struct rt_sigframe {
  33. struct siginfo *pinfo;
  34. void *puc;
  35. struct siginfo info;
  36. struct ucontext uc;
  37. unsigned char retcode[16]; /* trampoline code */
  38. };
  39. static int restore_sigcontext(struct pt_regs *regs, struct sigcontext *sc)
  40. {
  41. unsigned int err = 0;
  42. /* Alwys make any pending restarted system call return -EINTR */
  43. current_thread_info()->restart_block.fn = do_no_restart_syscall;
  44. /*
  45. * Restore the regs from &sc->regs.
  46. * (sc is already checked for VERIFY_READ since the sigframe was
  47. * checked in sys_sigreturn previously)
  48. */
  49. if (__copy_from_user(regs, sc->regs.gpr, 32 * sizeof(unsigned long)))
  50. goto badframe;
  51. if (__copy_from_user(&regs->pc, &sc->regs.pc, sizeof(unsigned long)))
  52. goto badframe;
  53. if (__copy_from_user(&regs->sr, &sc->regs.sr, sizeof(unsigned long)))
  54. goto badframe;
  55. /* make sure the SM-bit is cleared so user-mode cannot fool us */
  56. regs->sr &= ~SPR_SR_SM;
  57. /* TODO: the other ports use regs->orig_XX to disable syscall checks
  58. * after this completes, but we don't use that mechanism. maybe we can
  59. * use it now ?
  60. */
  61. return err;
  62. badframe:
  63. return 1;
  64. }
  65. asmlinkage long _sys_rt_sigreturn(struct pt_regs *regs)
  66. {
  67. struct rt_sigframe *frame = (struct rt_sigframe __user *)regs->sp;
  68. sigset_t set;
  69. /*
  70. * Since we stacked the signal on a dword boundary,
  71. * then frame should be dword aligned here. If it's
  72. * not, then the user is trying to mess with us.
  73. */
  74. if (((long)frame) & 3)
  75. goto badframe;
  76. if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
  77. goto badframe;
  78. if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
  79. goto badframe;
  80. set_current_blocked(&set);
  81. if (restore_sigcontext(regs, &frame->uc.uc_mcontext))
  82. goto badframe;
  83. if (restore_altstack(&frame->uc.uc_stack))
  84. goto badframe;
  85. return regs->gpr[11];
  86. badframe:
  87. force_sig(SIGSEGV, current);
  88. return 0;
  89. }
  90. /*
  91. * Set up a signal frame.
  92. */
  93. static int setup_sigcontext(struct sigcontext *sc, struct pt_regs *regs,
  94. unsigned long mask)
  95. {
  96. int err = 0;
  97. /* copy the regs */
  98. err |= __copy_to_user(sc->regs.gpr, regs, 32 * sizeof(unsigned long));
  99. err |= __copy_to_user(&sc->regs.pc, &regs->pc, sizeof(unsigned long));
  100. err |= __copy_to_user(&sc->regs.sr, &regs->sr, sizeof(unsigned long));
  101. /* then some other stuff */
  102. err |= __put_user(mask, &sc->oldmask);
  103. return err;
  104. }
  105. static inline unsigned long align_sigframe(unsigned long sp)
  106. {
  107. return sp & ~3UL;
  108. }
  109. /*
  110. * Work out where the signal frame should go. It's either on the user stack
  111. * or the alternate stack.
  112. */
  113. static inline void __user *get_sigframe(struct k_sigaction *ka,
  114. struct pt_regs *regs, size_t frame_size)
  115. {
  116. unsigned long sp = regs->sp;
  117. int onsigstack = on_sig_stack(sp);
  118. /* redzone */
  119. sp -= STACK_FRAME_OVERHEAD;
  120. /* This is the X/Open sanctioned signal stack switching. */
  121. if ((ka->sa.sa_flags & SA_ONSTACK) && !onsigstack) {
  122. if (current->sas_ss_size)
  123. sp = current->sas_ss_sp + current->sas_ss_size;
  124. }
  125. sp = align_sigframe(sp - frame_size);
  126. /*
  127. * If we are on the alternate signal stack and would overflow it, don't.
  128. * Return an always-bogus address instead so we will die with SIGSEGV.
  129. */
  130. if (onsigstack && !likely(on_sig_stack(sp)))
  131. return (void __user *)-1L;
  132. return (void __user *)sp;
  133. }
  134. /* grab and setup a signal frame.
  135. *
  136. * basically we stack a lot of state info, and arrange for the
  137. * user-mode program to return to the kernel using either a
  138. * trampoline which performs the syscall sigreturn, or a provided
  139. * user-mode trampoline.
  140. */
  141. static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
  142. sigset_t *set, struct pt_regs *regs)
  143. {
  144. struct rt_sigframe *frame;
  145. unsigned long return_ip;
  146. int err = 0;
  147. frame = get_sigframe(ka, regs, sizeof(*frame));
  148. if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
  149. goto give_sigsegv;
  150. err |= __put_user(&frame->info, &frame->pinfo);
  151. err |= __put_user(&frame->uc, &frame->puc);
  152. if (ka->sa.sa_flags & SA_SIGINFO)
  153. err |= copy_siginfo_to_user(&frame->info, info);
  154. if (err)
  155. goto give_sigsegv;
  156. /* Clear all the bits of the ucontext we don't use. */
  157. err |= __clear_user(&frame->uc, offsetof(struct ucontext, uc_mcontext));
  158. err |= __put_user(0, &frame->uc.uc_flags);
  159. err |= __put_user(NULL, &frame->uc.uc_link);
  160. err |= __save_altstack(&frame->uc.uc_stack, regs->sp);
  161. err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0]);
  162. err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
  163. if (err)
  164. goto give_sigsegv;
  165. /* trampoline - the desired return ip is the retcode itself */
  166. return_ip = (unsigned long)&frame->retcode;
  167. /* This is l.ori r11,r0,__NR_sigreturn, l.sys 1 */
  168. err |= __put_user(0xa960, (short *)(frame->retcode + 0));
  169. err |= __put_user(__NR_rt_sigreturn, (short *)(frame->retcode + 2));
  170. err |= __put_user(0x20000001, (unsigned long *)(frame->retcode + 4));
  171. err |= __put_user(0x15000000, (unsigned long *)(frame->retcode + 8));
  172. if (err)
  173. goto give_sigsegv;
  174. /* TODO what is the current->exec_domain stuff and invmap ? */
  175. /* Set up registers for signal handler */
  176. regs->pc = (unsigned long)ka->sa.sa_handler; /* what we enter NOW */
  177. regs->gpr[9] = (unsigned long)return_ip; /* what we enter LATER */
  178. regs->gpr[3] = (unsigned long)sig; /* arg 1: signo */
  179. regs->gpr[4] = (unsigned long)&frame->info; /* arg 2: (siginfo_t*) */
  180. regs->gpr[5] = (unsigned long)&frame->uc; /* arg 3: ucontext */
  181. /* actually move the usp to reflect the stacked frame */
  182. regs->sp = (unsigned long)frame;
  183. return 0;
  184. give_sigsegv:
  185. force_sigsegv(sig, current);
  186. return -EFAULT;
  187. }
  188. static inline void
  189. handle_signal(unsigned long sig,
  190. siginfo_t *info, struct k_sigaction *ka,
  191. struct pt_regs *regs)
  192. {
  193. int ret;
  194. ret = setup_rt_frame(sig, ka, info, sigmask_to_save(), regs);
  195. if (ret)
  196. return;
  197. signal_delivered(sig, info, ka, regs,
  198. test_thread_flag(TIF_SINGLESTEP));
  199. }
  200. /*
  201. * Note that 'init' is a special process: it doesn't get signals it doesn't
  202. * want to handle. Thus you cannot kill init even with a SIGKILL even by
  203. * mistake.
  204. *
  205. * Also note that the regs structure given here as an argument, is the latest
  206. * pushed pt_regs. It may or may not be the same as the first pushed registers
  207. * when the initial usermode->kernelmode transition took place. Therefore
  208. * we can use user_mode(regs) to see if we came directly from kernel or user
  209. * mode below.
  210. */
  211. void do_signal(struct pt_regs *regs)
  212. {
  213. siginfo_t info;
  214. int signr;
  215. struct k_sigaction ka;
  216. /*
  217. * We want the common case to go fast, which
  218. * is why we may in certain cases get here from
  219. * kernel mode. Just return without doing anything
  220. * if so.
  221. */
  222. if (!user_mode(regs))
  223. return;
  224. signr = get_signal_to_deliver(&info, &ka, regs, NULL);
  225. /* If we are coming out of a syscall then we need
  226. * to check if the syscall was interrupted and wants to be
  227. * restarted after handling the signal. If so, the original
  228. * syscall number is put back into r11 and the PC rewound to
  229. * point at the l.sys instruction that resulted in the
  230. * original syscall. Syscall results other than the four
  231. * below mean that the syscall executed to completion and no
  232. * restart is necessary.
  233. */
  234. if (regs->orig_gpr11) {
  235. int restart = 0;
  236. switch (regs->gpr[11]) {
  237. case -ERESTART_RESTARTBLOCK:
  238. case -ERESTARTNOHAND:
  239. /* Restart if there is no signal handler */
  240. restart = (signr <= 0);
  241. break;
  242. case -ERESTARTSYS:
  243. /* Restart if there no signal handler or
  244. * SA_RESTART flag is set */
  245. restart = (signr <= 0 || (ka.sa.sa_flags & SA_RESTART));
  246. break;
  247. case -ERESTARTNOINTR:
  248. /* Always restart */
  249. restart = 1;
  250. break;
  251. }
  252. if (restart) {
  253. if (regs->gpr[11] == -ERESTART_RESTARTBLOCK)
  254. regs->gpr[11] = __NR_restart_syscall;
  255. else
  256. regs->gpr[11] = regs->orig_gpr11;
  257. regs->pc -= 4;
  258. } else {
  259. regs->gpr[11] = -EINTR;
  260. }
  261. }
  262. if (signr <= 0) {
  263. /* no signal to deliver so we just put the saved sigmask
  264. * back */
  265. restore_saved_sigmask();
  266. } else { /* signr > 0 */
  267. /* Whee! Actually deliver the signal. */
  268. handle_signal(signr, &info, &ka, regs);
  269. }
  270. return;
  271. }
  272. asmlinkage void do_notify_resume(struct pt_regs *regs)
  273. {
  274. if (current_thread_info()->flags & _TIF_SIGPENDING)
  275. do_signal(regs);
  276. if (current_thread_info()->flags & _TIF_NOTIFY_RESUME) {
  277. clear_thread_flag(TIF_NOTIFY_RESUME);
  278. tracehook_notify_resume(regs);
  279. }
  280. }