signal.c 9.6 KB

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