signal.c 11 KB

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