signal.c 10 KB

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