Benjamin Herrenschmidt | 22e38f2 | 2007-06-04 15:15:49 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Common signal handling code for both 32 and 64 bits |
| 3 | * |
Adam Buchbinder | 446957b | 2016-02-24 10:51:11 -0800 | [diff] [blame] | 4 | * Copyright (c) 2007 Benjamin Herrenschmidt, IBM Corporation |
Benjamin Herrenschmidt | 22e38f2 | 2007-06-04 15:15:49 +1000 | [diff] [blame] | 5 | * Extracted from signal_32.c and signal_64.c |
| 6 | * |
| 7 | * This file is subject to the terms and conditions of the GNU General |
| 8 | * Public License. See the file README.legal in the main directory of |
| 9 | * this archive for more details. |
| 10 | */ |
| 11 | |
Roland McGrath | 6558ba2 | 2008-07-27 16:49:50 +1000 | [diff] [blame] | 12 | #include <linux/tracehook.h> |
Benjamin Herrenschmidt | 22e38f2 | 2007-06-04 15:15:49 +1000 | [diff] [blame] | 13 | #include <linux/signal.h> |
Ananth N Mavinakayanahalli | 8b7b80b | 2012-08-23 21:31:32 +0000 | [diff] [blame] | 14 | #include <linux/uprobes.h> |
Benjamin Herrenschmidt | 18b246f | 2012-02-22 16:48:32 +1100 | [diff] [blame] | 15 | #include <linux/key.h> |
Li Zhong | 106ed88 | 2013-05-13 16:16:42 +0000 | [diff] [blame] | 16 | #include <linux/context_tracking.h> |
K.Prasad | 06532a6 | 2010-06-15 11:35:41 +0530 | [diff] [blame] | 17 | #include <asm/hw_breakpoint.h> |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 18 | #include <asm/uaccess.h> |
Benjamin Herrenschmidt | 22e38f2 | 2007-06-04 15:15:49 +1000 | [diff] [blame] | 19 | #include <asm/unistd.h> |
David Howells | ae3a197 | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 20 | #include <asm/debug.h> |
Michael Neuling | 2b3f8e8 | 2013-05-26 18:09:41 +0000 | [diff] [blame] | 21 | #include <asm/tm.h> |
Benjamin Herrenschmidt | 22e38f2 | 2007-06-04 15:15:49 +1000 | [diff] [blame] | 22 | |
Christoph Hellwig | db277e9 | 2007-06-04 15:15:51 +1000 | [diff] [blame] | 23 | #include "signal.h" |
| 24 | |
Olof Johansson | d0c3d53 | 2007-10-12 10:20:07 +1000 | [diff] [blame] | 25 | /* Log an error when sending an unhandled signal to a process. Controlled |
| 26 | * through debug.exception-trace sysctl. |
| 27 | */ |
| 28 | |
Benjamin Herrenschmidt | e34166a | 2013-05-14 17:02:11 +1000 | [diff] [blame] | 29 | int show_unhandled_signals = 1; |
Olof Johansson | d0c3d53 | 2007-10-12 10:20:07 +1000 | [diff] [blame] | 30 | |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 31 | /* |
| 32 | * Allocate space for the signal frame |
| 33 | */ |
Richard Weinberger | 059ade6 | 2014-03-05 16:25:55 +0100 | [diff] [blame] | 34 | void __user *get_sigframe(struct ksignal *ksig, unsigned long sp, |
Josh Boyer | efbda86 | 2009-03-25 06:23:59 +0000 | [diff] [blame] | 35 | size_t frame_size, int is_32) |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 36 | { |
| 37 | unsigned long oldsp, newsp; |
| 38 | |
| 39 | /* Default to using normal stack */ |
Michael Neuling | 2b3f8e8 | 2013-05-26 18:09:41 +0000 | [diff] [blame] | 40 | oldsp = get_clean_sp(sp, is_32); |
Richard Weinberger | 059ade6 | 2014-03-05 16:25:55 +0100 | [diff] [blame] | 41 | oldsp = sigsp(oldsp, ksig); |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 42 | newsp = (oldsp - frame_size) & ~0xFUL; |
| 43 | |
| 44 | /* Check access */ |
| 45 | if (!access_ok(VERIFY_WRITE, (void __user *)newsp, oldsp - newsp)) |
| 46 | return NULL; |
| 47 | |
| 48 | return (void __user *)newsp; |
| 49 | } |
| 50 | |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 51 | static void check_syscall_restart(struct pt_regs *regs, struct k_sigaction *ka, |
| 52 | int has_handler) |
Benjamin Herrenschmidt | 22e38f2 | 2007-06-04 15:15:49 +1000 | [diff] [blame] | 53 | { |
| 54 | unsigned long ret = regs->gpr[3]; |
| 55 | int restart = 1; |
| 56 | |
| 57 | /* syscall ? */ |
| 58 | if (TRAP(regs) != 0x0C00) |
| 59 | return; |
| 60 | |
| 61 | /* error signalled ? */ |
| 62 | if (!(regs->ccr & 0x10000000)) |
| 63 | return; |
| 64 | |
| 65 | switch (ret) { |
| 66 | case ERESTART_RESTARTBLOCK: |
| 67 | case ERESTARTNOHAND: |
| 68 | /* ERESTARTNOHAND means that the syscall should only be |
| 69 | * restarted if there was no handler for the signal, and since |
| 70 | * we only get here if there is a handler, we dont restart. |
| 71 | */ |
| 72 | restart = !has_handler; |
| 73 | break; |
| 74 | case ERESTARTSYS: |
| 75 | /* ERESTARTSYS means to restart the syscall if there is no |
| 76 | * handler or the handler was registered with SA_RESTART |
| 77 | */ |
| 78 | restart = !has_handler || (ka->sa.sa_flags & SA_RESTART) != 0; |
| 79 | break; |
| 80 | case ERESTARTNOINTR: |
| 81 | /* ERESTARTNOINTR means that the syscall should be |
| 82 | * called again after the signal handler returns. |
| 83 | */ |
| 84 | break; |
| 85 | default: |
| 86 | return; |
| 87 | } |
| 88 | if (restart) { |
| 89 | if (ret == ERESTART_RESTARTBLOCK) |
| 90 | regs->gpr[0] = __NR_restart_syscall; |
| 91 | else |
| 92 | regs->gpr[3] = regs->orig_gpr3; |
| 93 | regs->nip -= 4; |
| 94 | regs->result = 0; |
| 95 | } else { |
| 96 | regs->result = -EINTR; |
| 97 | regs->gpr[3] = EINTR; |
| 98 | regs->ccr |= 0x10000000; |
| 99 | } |
| 100 | } |
Christoph Hellwig | 69d15f6 | 2007-06-04 15:15:50 +1000 | [diff] [blame] | 101 | |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 102 | static void do_signal(struct pt_regs *regs) |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 103 | { |
Al Viro | b7f9a11 | 2012-05-02 09:59:21 -0400 | [diff] [blame] | 104 | sigset_t *oldset = sigmask_to_save(); |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 105 | struct ksignal ksig; |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 106 | int ret; |
| 107 | int is32 = is_32bit_task(); |
| 108 | |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 109 | get_signal(&ksig); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 110 | |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 111 | /* Is there any syscall restart business here ? */ |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 112 | check_syscall_restart(regs, &ksig.ka, ksig.sig > 0); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 113 | |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 114 | if (ksig.sig <= 0) { |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 115 | /* No signal to deliver -- put the saved sigmask back */ |
Al Viro | 51a7b44 | 2012-05-21 23:33:55 -0400 | [diff] [blame] | 116 | restore_saved_sigmask(); |
Al Viro | 9a81c16 | 2010-09-20 21:48:57 +0100 | [diff] [blame] | 117 | regs->trap = 0; |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 118 | return; /* no signals delivered */ |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 119 | } |
| 120 | |
Dave Kleikamp | 3bffb65 | 2010-02-08 11:51:18 +0000 | [diff] [blame] | 121 | #ifndef CONFIG_PPC_ADV_DEBUG_REGS |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 122 | /* |
| 123 | * Reenable the DABR before delivering the signal to |
| 124 | * user space. The DABR will have been cleared if it |
| 125 | * triggered inside the kernel. |
| 126 | */ |
Michael Neuling | 9422de3 | 2012-12-20 14:06:44 +0000 | [diff] [blame] | 127 | if (current->thread.hw_brk.address && |
| 128 | current->thread.hw_brk.type) |
Paul Gortmaker | 21f5850 | 2014-04-29 15:25:17 -0400 | [diff] [blame] | 129 | __set_breakpoint(¤t->thread.hw_brk); |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 130 | #endif |
K.Prasad | 06532a6 | 2010-06-15 11:35:41 +0530 | [diff] [blame] | 131 | /* Re-enable the breakpoints for the signal stack */ |
| 132 | thread_change_pc(current, regs); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 133 | |
| 134 | if (is32) { |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 135 | if (ksig.ka.sa.sa_flags & SA_SIGINFO) |
| 136 | ret = handle_rt_signal32(&ksig, oldset, regs); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 137 | else |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 138 | ret = handle_signal32(&ksig, oldset, regs); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 139 | } else { |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 140 | ret = handle_rt_signal64(&ksig, oldset, regs); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 141 | } |
| 142 | |
Al Viro | 9a81c16 | 2010-09-20 21:48:57 +0100 | [diff] [blame] | 143 | regs->trap = 0; |
Richard Weinberger | 129b69d | 2014-03-02 14:46:11 +0100 | [diff] [blame] | 144 | signal_setup_done(ret, &ksig, test_thread_flag(TIF_SINGLESTEP)); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 145 | } |
| 146 | |
Benjamin Herrenschmidt | 18b246f | 2012-02-22 16:48:32 +1100 | [diff] [blame] | 147 | void do_notify_resume(struct pt_regs *regs, unsigned long thread_info_flags) |
Roland McGrath | 7d6d637 | 2008-07-27 16:52:52 +1000 | [diff] [blame] | 148 | { |
Li Zhong | 106ed88 | 2013-05-13 16:16:42 +0000 | [diff] [blame] | 149 | user_exit(); |
| 150 | |
Oleg Nesterov | f57d56d | 2012-10-28 18:17:11 +0100 | [diff] [blame] | 151 | if (thread_info_flags & _TIF_UPROBE) |
Ananth N Mavinakayanahalli | 8b7b80b | 2012-08-23 21:31:32 +0000 | [diff] [blame] | 152 | uprobe_notify_resume(regs); |
Ananth N Mavinakayanahalli | 8b7b80b | 2012-08-23 21:31:32 +0000 | [diff] [blame] | 153 | |
Roland McGrath | 7d6d637 | 2008-07-27 16:52:52 +1000 | [diff] [blame] | 154 | if (thread_info_flags & _TIF_SIGPENDING) |
Benjamin Herrenschmidt | 18b246f | 2012-02-22 16:48:32 +1100 | [diff] [blame] | 155 | do_signal(regs); |
Roland McGrath | 7d6d637 | 2008-07-27 16:52:52 +1000 | [diff] [blame] | 156 | |
| 157 | if (thread_info_flags & _TIF_NOTIFY_RESUME) { |
| 158 | clear_thread_flag(TIF_NOTIFY_RESUME); |
| 159 | tracehook_notify_resume(regs); |
| 160 | } |
Li Zhong | 106ed88 | 2013-05-13 16:16:42 +0000 | [diff] [blame] | 161 | |
| 162 | user_enter(); |
Roland McGrath | 7d6d637 | 2008-07-27 16:52:52 +1000 | [diff] [blame] | 163 | } |
Michael Neuling | 2b3f8e8 | 2013-05-26 18:09:41 +0000 | [diff] [blame] | 164 | |
| 165 | unsigned long get_tm_stackpointer(struct pt_regs *regs) |
| 166 | { |
| 167 | /* When in an active transaction that takes a signal, we need to be |
| 168 | * careful with the stack. It's possible that the stack has moved back |
| 169 | * up after the tbegin. The obvious case here is when the tbegin is |
| 170 | * called inside a function that returns before a tend. In this case, |
| 171 | * the stack is part of the checkpointed transactional memory state. |
| 172 | * If we write over this non transactionally or in suspend, we are in |
| 173 | * trouble because if we get a tm abort, the program counter and stack |
| 174 | * pointer will be back at the tbegin but our in memory stack won't be |
| 175 | * valid anymore. |
| 176 | * |
| 177 | * To avoid this, when taking a signal in an active transaction, we |
| 178 | * need to use the stack pointer from the checkpointed state, rather |
| 179 | * than the speculated state. This ensures that the signal context |
| 180 | * (written tm suspended) will be written below the stack required for |
Adam Buchbinder | 446957b | 2016-02-24 10:51:11 -0800 | [diff] [blame] | 181 | * the rollback. The transaction is aborted because of the treclaim, |
Michael Neuling | 2b3f8e8 | 2013-05-26 18:09:41 +0000 | [diff] [blame] | 182 | * so any memory written between the tbegin and the signal will be |
| 183 | * rolled back anyway. |
| 184 | * |
| 185 | * For signals taken in non-TM or suspended mode, we use the |
| 186 | * normal/non-checkpointed stack pointer. |
| 187 | */ |
| 188 | |
| 189 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM |
| 190 | if (MSR_TM_ACTIVE(regs->msr)) { |
Paul Mackerras | d31626f | 2014-01-13 15:56:29 +1100 | [diff] [blame] | 191 | tm_reclaim_current(TM_CAUSE_SIGNAL); |
Michael Neuling | 2b3f8e8 | 2013-05-26 18:09:41 +0000 | [diff] [blame] | 192 | if (MSR_TM_TRANSACTIONAL(regs->msr)) |
| 193 | return current->thread.ckpt_regs.gpr[1]; |
| 194 | } |
| 195 | #endif |
| 196 | return regs->gpr[1]; |
| 197 | } |