signal.c 11 KB

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