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 | * |
| 4 | * Copyright (c) 2007 Benjamin Herrenschmidt, IBM Coproration |
| 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> |
K.Prasad | 06532a6 | 2010-06-15 11:35:41 +0530 | [diff] [blame] | 14 | #include <asm/hw_breakpoint.h> |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 15 | #include <asm/uaccess.h> |
Benjamin Herrenschmidt | 22e38f2 | 2007-06-04 15:15:49 +1000 | [diff] [blame] | 16 | #include <asm/unistd.h> |
| 17 | |
Christoph Hellwig | db277e9 | 2007-06-04 15:15:51 +1000 | [diff] [blame] | 18 | #include "signal.h" |
| 19 | |
Olof Johansson | d0c3d53 | 2007-10-12 10:20:07 +1000 | [diff] [blame] | 20 | /* Log an error when sending an unhandled signal to a process. Controlled |
| 21 | * through debug.exception-trace sysctl. |
| 22 | */ |
| 23 | |
| 24 | int show_unhandled_signals = 0; |
| 25 | |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 26 | /* |
| 27 | * Allocate space for the signal frame |
| 28 | */ |
| 29 | void __user * get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, |
Josh Boyer | efbda86 | 2009-03-25 06:23:59 +0000 | [diff] [blame] | 30 | size_t frame_size, int is_32) |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 31 | { |
| 32 | unsigned long oldsp, newsp; |
| 33 | |
| 34 | /* Default to using normal stack */ |
Josh Boyer | efbda86 | 2009-03-25 06:23:59 +0000 | [diff] [blame] | 35 | oldsp = get_clean_sp(regs, is_32); |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 36 | |
| 37 | /* Check for alt stack */ |
| 38 | if ((ka->sa.sa_flags & SA_ONSTACK) && |
| 39 | current->sas_ss_size && !on_sig_stack(oldsp)) |
| 40 | oldsp = (current->sas_ss_sp + current->sas_ss_size); |
| 41 | |
| 42 | /* Get aligned frame */ |
| 43 | newsp = (oldsp - frame_size) & ~0xFUL; |
| 44 | |
| 45 | /* Check access */ |
| 46 | if (!access_ok(VERIFY_WRITE, (void __user *)newsp, oldsp - newsp)) |
| 47 | return NULL; |
| 48 | |
| 49 | return (void __user *)newsp; |
| 50 | } |
| 51 | |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 52 | |
Christoph Hellwig | db277e9 | 2007-06-04 15:15:51 +1000 | [diff] [blame] | 53 | /* |
| 54 | * Restore the user process's signal mask |
| 55 | */ |
| 56 | void restore_sigmask(sigset_t *set) |
| 57 | { |
| 58 | sigdelsetmask(set, ~_BLOCKABLE); |
| 59 | spin_lock_irq(¤t->sighand->siglock); |
| 60 | current->blocked = *set; |
| 61 | recalc_sigpending(); |
| 62 | spin_unlock_irq(¤t->sighand->siglock); |
| 63 | } |
| 64 | |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 65 | static void check_syscall_restart(struct pt_regs *regs, struct k_sigaction *ka, |
| 66 | int has_handler) |
Benjamin Herrenschmidt | 22e38f2 | 2007-06-04 15:15:49 +1000 | [diff] [blame] | 67 | { |
| 68 | unsigned long ret = regs->gpr[3]; |
| 69 | int restart = 1; |
| 70 | |
| 71 | /* syscall ? */ |
| 72 | if (TRAP(regs) != 0x0C00) |
| 73 | return; |
| 74 | |
| 75 | /* error signalled ? */ |
| 76 | if (!(regs->ccr & 0x10000000)) |
| 77 | return; |
| 78 | |
| 79 | switch (ret) { |
| 80 | case ERESTART_RESTARTBLOCK: |
| 81 | case ERESTARTNOHAND: |
| 82 | /* ERESTARTNOHAND means that the syscall should only be |
| 83 | * restarted if there was no handler for the signal, and since |
| 84 | * we only get here if there is a handler, we dont restart. |
| 85 | */ |
| 86 | restart = !has_handler; |
| 87 | break; |
| 88 | case ERESTARTSYS: |
| 89 | /* ERESTARTSYS means to restart the syscall if there is no |
| 90 | * handler or the handler was registered with SA_RESTART |
| 91 | */ |
| 92 | restart = !has_handler || (ka->sa.sa_flags & SA_RESTART) != 0; |
| 93 | break; |
| 94 | case ERESTARTNOINTR: |
| 95 | /* ERESTARTNOINTR means that the syscall should be |
| 96 | * called again after the signal handler returns. |
| 97 | */ |
| 98 | break; |
| 99 | default: |
| 100 | return; |
| 101 | } |
| 102 | if (restart) { |
| 103 | if (ret == ERESTART_RESTARTBLOCK) |
| 104 | regs->gpr[0] = __NR_restart_syscall; |
| 105 | else |
| 106 | regs->gpr[3] = regs->orig_gpr3; |
| 107 | regs->nip -= 4; |
| 108 | regs->result = 0; |
| 109 | } else { |
| 110 | regs->result = -EINTR; |
| 111 | regs->gpr[3] = EINTR; |
| 112 | regs->ccr |= 0x10000000; |
| 113 | } |
| 114 | } |
Christoph Hellwig | 69d15f6 | 2007-06-04 15:15:50 +1000 | [diff] [blame] | 115 | |
Roland McGrath | 7d6d637 | 2008-07-27 16:52:52 +1000 | [diff] [blame] | 116 | static int do_signal_pending(sigset_t *oldset, struct pt_regs *regs) |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 117 | { |
| 118 | siginfo_t info; |
| 119 | int signr; |
| 120 | struct k_sigaction ka; |
| 121 | int ret; |
| 122 | int is32 = is_32bit_task(); |
| 123 | |
Roland McGrath | 7a10174 | 2008-04-28 17:30:37 +1000 | [diff] [blame] | 124 | if (current_thread_info()->local_flags & _TLF_RESTORE_SIGMASK) |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 125 | oldset = ¤t->saved_sigmask; |
| 126 | else if (!oldset) |
| 127 | oldset = ¤t->blocked; |
| 128 | |
| 129 | signr = get_signal_to_deliver(&info, &ka, regs, NULL); |
| 130 | |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 131 | /* Is there any syscall restart business here ? */ |
| 132 | check_syscall_restart(regs, &ka, signr > 0); |
| 133 | |
| 134 | if (signr <= 0) { |
Roland McGrath | 7a10174 | 2008-04-28 17:30:37 +1000 | [diff] [blame] | 135 | struct thread_info *ti = current_thread_info(); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 136 | /* No signal to deliver -- put the saved sigmask back */ |
Roland McGrath | 7a10174 | 2008-04-28 17:30:37 +1000 | [diff] [blame] | 137 | if (ti->local_flags & _TLF_RESTORE_SIGMASK) { |
| 138 | ti->local_flags &= ~_TLF_RESTORE_SIGMASK; |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 139 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); |
| 140 | } |
Al Viro | 9a81c16 | 2010-09-20 21:48:57 +0100 | [diff] [blame] | 141 | regs->trap = 0; |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 142 | return 0; /* no signals delivered */ |
| 143 | } |
| 144 | |
Dave Kleikamp | 3bffb65 | 2010-02-08 11:51:18 +0000 | [diff] [blame] | 145 | #ifndef CONFIG_PPC_ADV_DEBUG_REGS |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 146 | /* |
| 147 | * Reenable the DABR before delivering the signal to |
| 148 | * user space. The DABR will have been cleared if it |
| 149 | * triggered inside the kernel. |
| 150 | */ |
Dave Kleikamp | 3bffb65 | 2010-02-08 11:51:18 +0000 | [diff] [blame] | 151 | if (current->thread.dabr) |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 152 | set_dabr(current->thread.dabr); |
Luis Machado | d6a61bf | 2008-07-24 02:10:41 +1000 | [diff] [blame] | 153 | #endif |
K.Prasad | 06532a6 | 2010-06-15 11:35:41 +0530 | [diff] [blame] | 154 | /* Re-enable the breakpoints for the signal stack */ |
| 155 | thread_change_pc(current, regs); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 156 | |
| 157 | if (is32) { |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 158 | if (ka.sa.sa_flags & SA_SIGINFO) |
| 159 | ret = handle_rt_signal32(signr, &ka, &info, oldset, |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 160 | regs); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 161 | else |
| 162 | ret = handle_signal32(signr, &ka, &info, oldset, |
Benjamin Herrenschmidt | a3f61dc | 2007-06-04 17:22:48 +1000 | [diff] [blame] | 163 | regs); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 164 | } else { |
| 165 | ret = handle_rt_signal64(signr, &ka, &info, oldset, regs); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 166 | } |
| 167 | |
Al Viro | 9a81c16 | 2010-09-20 21:48:57 +0100 | [diff] [blame] | 168 | regs->trap = 0; |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 169 | if (ret) { |
| 170 | spin_lock_irq(¤t->sighand->siglock); |
| 171 | sigorsets(¤t->blocked, ¤t->blocked, |
| 172 | &ka.sa.sa_mask); |
| 173 | if (!(ka.sa.sa_flags & SA_NODEFER)) |
| 174 | sigaddset(¤t->blocked, signr); |
| 175 | recalc_sigpending(); |
| 176 | spin_unlock_irq(¤t->sighand->siglock); |
| 177 | |
| 178 | /* |
| 179 | * A signal was successfully delivered; the saved sigmask is in |
Roland McGrath | 7a10174 | 2008-04-28 17:30:37 +1000 | [diff] [blame] | 180 | * its frame, and we can clear the TLF_RESTORE_SIGMASK flag. |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 181 | */ |
Roland McGrath | 7a10174 | 2008-04-28 17:30:37 +1000 | [diff] [blame] | 182 | current_thread_info()->local_flags &= ~_TLF_RESTORE_SIGMASK; |
Roland McGrath | 6558ba2 | 2008-07-27 16:49:50 +1000 | [diff] [blame] | 183 | |
| 184 | /* |
| 185 | * Let tracing know that we've done the handler setup. |
| 186 | */ |
| 187 | tracehook_signal_handler(signr, &info, &ka, regs, |
| 188 | test_thread_flag(TIF_SINGLESTEP)); |
Christoph Hellwig | f478f54 | 2007-06-04 15:15:52 +1000 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | return ret; |
| 192 | } |
| 193 | |
Roland McGrath | 7d6d637 | 2008-07-27 16:52:52 +1000 | [diff] [blame] | 194 | void do_signal(struct pt_regs *regs, unsigned long thread_info_flags) |
| 195 | { |
| 196 | if (thread_info_flags & _TIF_SIGPENDING) |
| 197 | do_signal_pending(NULL, regs); |
| 198 | |
| 199 | if (thread_info_flags & _TIF_NOTIFY_RESUME) { |
| 200 | clear_thread_flag(TIF_NOTIFY_RESUME); |
| 201 | tracehook_notify_resume(regs); |
| 202 | } |
| 203 | } |
| 204 | |
Christoph Hellwig | 69d15f6 | 2007-06-04 15:15:50 +1000 | [diff] [blame] | 205 | long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss, |
| 206 | unsigned long r5, unsigned long r6, unsigned long r7, |
| 207 | unsigned long r8, struct pt_regs *regs) |
| 208 | { |
| 209 | return do_sigaltstack(uss, uoss, regs->gpr[1]); |
| 210 | } |