Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Kernel Probes (KProbes) |
| 3 | * arch/ppc64/kernel/kprobes.c |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 18 | * |
| 19 | * Copyright (C) IBM Corporation, 2002, 2004 |
| 20 | * |
| 21 | * 2002-Oct Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel |
| 22 | * Probes initial implementation ( includes contributions from |
| 23 | * Rusty Russell). |
| 24 | * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes |
| 25 | * interface to access function arguments. |
| 26 | * 2004-Nov Ananth N Mavinakayanahalli <ananth@in.ibm.com> kprobes port |
| 27 | * for PPC64 |
| 28 | */ |
| 29 | |
| 30 | #include <linux/config.h> |
| 31 | #include <linux/kprobes.h> |
| 32 | #include <linux/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/preempt.h> |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 34 | #include <asm/cacheflush.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/kdebug.h> |
| 36 | #include <asm/sstep.h> |
| 37 | |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 38 | static DECLARE_MUTEX(kprobe_mutex); |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 39 | DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL; |
| 40 | DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 42 | int __kprobes arch_prepare_kprobe(struct kprobe *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
Ananth N Mavinakayanahalli | 63224d1e8 | 2005-06-08 15:49:41 -0700 | [diff] [blame] | 44 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | kprobe_opcode_t insn = *p->addr; |
| 46 | |
Ananth N Mavinakayanahalli | 63224d1e8 | 2005-06-08 15:49:41 -0700 | [diff] [blame] | 47 | if ((unsigned long)p->addr & 0x03) { |
| 48 | printk("Attempt to register kprobe at an unaligned address\n"); |
| 49 | ret = -EINVAL; |
| 50 | } else if (IS_MTMSRD(insn) || IS_RFID(insn)) { |
| 51 | printk("Cannot register a kprobe on rfid or mtmsrd\n"); |
| 52 | ret = -EINVAL; |
| 53 | } |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 54 | |
| 55 | /* insn must be on a special executable page on ppc64 */ |
| 56 | if (!ret) { |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 57 | down(&kprobe_mutex); |
Ananth N Mavinakayanahalli | 2d8ab6a | 2005-10-01 13:14:17 -0400 | [diff] [blame] | 58 | p->ainsn.insn = get_insn_slot(); |
| 59 | up(&kprobe_mutex); |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 60 | if (!p->ainsn.insn) |
| 61 | ret = -ENOMEM; |
| 62 | } |
Ananth N Mavinakayanahalli | 63224d1e8 | 2005-06-08 15:49:41 -0700 | [diff] [blame] | 63 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 66 | void __kprobes arch_copy_kprobe(struct kprobe *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | { |
| 68 | memcpy(p->ainsn.insn, p->addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t)); |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 69 | p->opcode = *p->addr; |
| 70 | } |
| 71 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 72 | void __kprobes arch_arm_kprobe(struct kprobe *p) |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 73 | { |
| 74 | *p->addr = BREAKPOINT_INSTRUCTION; |
| 75 | flush_icache_range((unsigned long) p->addr, |
| 76 | (unsigned long) p->addr + sizeof(kprobe_opcode_t)); |
| 77 | } |
| 78 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 79 | void __kprobes arch_disarm_kprobe(struct kprobe *p) |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 80 | { |
| 81 | *p->addr = p->opcode; |
| 82 | flush_icache_range((unsigned long) p->addr, |
| 83 | (unsigned long) p->addr + sizeof(kprobe_opcode_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 86 | void __kprobes arch_remove_kprobe(struct kprobe *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 88 | down(&kprobe_mutex); |
Ananth N Mavinakayanahalli | 2d8ab6a | 2005-10-01 13:14:17 -0400 | [diff] [blame] | 89 | free_insn_slot(p->ainsn.insn); |
| 90 | up(&kprobe_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | static inline void prepare_singlestep(struct kprobe *p, struct pt_regs *regs) |
| 94 | { |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 95 | kprobe_opcode_t insn = *p->ainsn.insn; |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | regs->msr |= MSR_SE; |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 98 | |
| 99 | /* single step inline if it is a trap variant */ |
Keshavamurthy Anil S | deac66a | 2005-09-06 15:19:35 -0700 | [diff] [blame] | 100 | if (is_trap(insn)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | regs->nip = (unsigned long)p->addr; |
| 102 | else |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 103 | regs->nip = (unsigned long)p->ainsn.insn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 106 | static inline void save_previous_kprobe(struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 107 | { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 108 | kcb->prev_kprobe.kp = kprobe_running(); |
| 109 | kcb->prev_kprobe.status = kcb->kprobe_status; |
| 110 | kcb->prev_kprobe.saved_msr = kcb->kprobe_saved_msr; |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 111 | } |
| 112 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 113 | static inline void restore_previous_kprobe(struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 114 | { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 115 | __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp; |
| 116 | kcb->kprobe_status = kcb->prev_kprobe.status; |
| 117 | kcb->kprobe_saved_msr = kcb->prev_kprobe.saved_msr; |
| 118 | } |
| 119 | |
| 120 | static inline void set_current_kprobe(struct kprobe *p, struct pt_regs *regs, |
| 121 | struct kprobe_ctlblk *kcb) |
| 122 | { |
| 123 | __get_cpu_var(current_kprobe) = p; |
| 124 | kcb->kprobe_saved_msr = regs->msr; |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame^] | 127 | /* Called with kretprobe_lock held */ |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 128 | void __kprobes arch_prepare_kretprobe(struct kretprobe *rp, |
| 129 | struct pt_regs *regs) |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 130 | { |
| 131 | struct kretprobe_instance *ri; |
| 132 | |
| 133 | if ((ri = get_free_rp_inst(rp)) != NULL) { |
| 134 | ri->rp = rp; |
| 135 | ri->task = current; |
| 136 | ri->ret_addr = (kprobe_opcode_t *)regs->link; |
| 137 | |
| 138 | /* Replace the return addr with trampoline addr */ |
| 139 | regs->link = (unsigned long)kretprobe_trampoline; |
| 140 | add_rp_inst(ri); |
| 141 | } else { |
| 142 | rp->nmissed++; |
| 143 | } |
| 144 | } |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | static inline int kprobe_handler(struct pt_regs *regs) |
| 147 | { |
| 148 | struct kprobe *p; |
| 149 | int ret = 0; |
| 150 | unsigned int *addr = (unsigned int *)regs->nip; |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 151 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
| 153 | /* Check we're not actually recursing */ |
| 154 | if (kprobe_running()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | p = get_kprobe(addr); |
| 156 | if (p) { |
Keshavamurthy Anil S | deac66a | 2005-09-06 15:19:35 -0700 | [diff] [blame] | 157 | kprobe_opcode_t insn = *p->ainsn.insn; |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 158 | if (kcb->kprobe_status == KPROBE_HIT_SS && |
Keshavamurthy Anil S | deac66a | 2005-09-06 15:19:35 -0700 | [diff] [blame] | 159 | is_trap(insn)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | regs->msr &= ~MSR_SE; |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 161 | regs->msr |= kcb->kprobe_saved_msr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | goto no_kprobe; |
| 163 | } |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 164 | /* We have reentered the kprobe_handler(), since |
| 165 | * another probe was hit while within the handler. |
| 166 | * We here save the original kprobes variables and |
| 167 | * just single step on the instruction of the new probe |
| 168 | * without calling any user handlers. |
| 169 | */ |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 170 | save_previous_kprobe(kcb); |
| 171 | set_current_kprobe(p, regs, kcb); |
| 172 | kcb->kprobe_saved_msr = regs->msr; |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 173 | p->nmissed++; |
| 174 | prepare_singlestep(p, regs); |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 175 | kcb->kprobe_status = KPROBE_REENTER; |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 176 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } else { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 178 | p = __get_cpu_var(current_kprobe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (p->break_handler && p->break_handler(p, regs)) { |
| 180 | goto ss_probe; |
| 181 | } |
| 182 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | goto no_kprobe; |
| 184 | } |
| 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | p = get_kprobe(addr); |
| 187 | if (!p) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | if (*addr != BREAKPOINT_INSTRUCTION) { |
| 189 | /* |
| 190 | * PowerPC has multiple variants of the "trap" |
| 191 | * instruction. If the current instruction is a |
| 192 | * trap variant, it could belong to someone else |
| 193 | */ |
| 194 | kprobe_opcode_t cur_insn = *addr; |
Keshavamurthy Anil S | deac66a | 2005-09-06 15:19:35 -0700 | [diff] [blame] | 195 | if (is_trap(cur_insn)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | goto no_kprobe; |
| 197 | /* |
| 198 | * The breakpoint instruction was removed right |
| 199 | * after we hit it. Another cpu has removed |
| 200 | * either a probepoint or a debugger breakpoint |
| 201 | * at this address. In either case, no further |
| 202 | * handling of this interrupt is appropriate. |
| 203 | */ |
| 204 | ret = 1; |
| 205 | } |
| 206 | /* Not one of ours: let kernel handle it */ |
| 207 | goto no_kprobe; |
| 208 | } |
| 209 | |
Ananth N Mavinakayanahalli | 66ff2d0 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 210 | /* |
| 211 | * This preempt_disable() matches the preempt_enable_no_resched() |
| 212 | * in post_kprobe_handler(). |
| 213 | */ |
| 214 | preempt_disable(); |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 215 | kcb->kprobe_status = KPROBE_HIT_ACTIVE; |
| 216 | set_current_kprobe(p, regs, kcb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | if (p->pre_handler && p->pre_handler(p, regs)) |
| 218 | /* handler has already set things up, so skip ss setup */ |
| 219 | return 1; |
| 220 | |
| 221 | ss_probe: |
| 222 | prepare_singlestep(p, regs); |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 223 | kcb->kprobe_status = KPROBE_HIT_SS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | return 1; |
| 225 | |
| 226 | no_kprobe: |
| 227 | return ret; |
| 228 | } |
| 229 | |
| 230 | /* |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 231 | * Function return probe trampoline: |
| 232 | * - init_kprobes() establishes a probepoint here |
| 233 | * - When the probed function returns, this probe |
| 234 | * causes the handlers to fire |
| 235 | */ |
| 236 | void kretprobe_trampoline_holder(void) |
| 237 | { |
| 238 | asm volatile(".global kretprobe_trampoline\n" |
| 239 | "kretprobe_trampoline:\n" |
| 240 | "nop\n"); |
| 241 | } |
| 242 | |
| 243 | /* |
| 244 | * Called when the probe at kretprobe trampoline is hit |
| 245 | */ |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 246 | int __kprobes trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs) |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 247 | { |
| 248 | struct kretprobe_instance *ri = NULL; |
| 249 | struct hlist_head *head; |
| 250 | struct hlist_node *node, *tmp; |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame^] | 251 | unsigned long flags, orig_ret_address = 0; |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 252 | unsigned long trampoline_address =(unsigned long)&kretprobe_trampoline; |
| 253 | |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame^] | 254 | spin_lock_irqsave(&kretprobe_lock, flags); |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 255 | head = kretprobe_inst_table_head(current); |
| 256 | |
| 257 | /* |
| 258 | * It is possible to have multiple instances associated with a given |
| 259 | * task either because an multiple functions in the call path |
| 260 | * have a return probe installed on them, and/or more then one return |
| 261 | * return probe was registered for a target function. |
| 262 | * |
| 263 | * We can handle this because: |
| 264 | * - instances are always inserted at the head of the list |
| 265 | * - when multiple return probes are registered for the same |
| 266 | * function, the first instance's ret_addr will point to the |
| 267 | * real return address, and all the rest will point to |
| 268 | * kretprobe_trampoline |
| 269 | */ |
| 270 | hlist_for_each_entry_safe(ri, node, tmp, head, hlist) { |
| 271 | if (ri->task != current) |
| 272 | /* another task is sharing our hash bucket */ |
| 273 | continue; |
| 274 | |
| 275 | if (ri->rp && ri->rp->handler) |
| 276 | ri->rp->handler(ri, regs); |
| 277 | |
| 278 | orig_ret_address = (unsigned long)ri->ret_addr; |
| 279 | recycle_rp_inst(ri); |
| 280 | |
| 281 | if (orig_ret_address != trampoline_address) |
| 282 | /* |
| 283 | * This is the real return address. Any other |
| 284 | * instances associated with this task are for |
| 285 | * other calls deeper on the call stack |
| 286 | */ |
| 287 | break; |
| 288 | } |
| 289 | |
| 290 | BUG_ON(!orig_ret_address || (orig_ret_address == trampoline_address)); |
| 291 | regs->nip = orig_ret_address; |
| 292 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 293 | reset_current_kprobe(); |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame^] | 294 | spin_unlock_irqrestore(&kretprobe_lock, flags); |
Ananth N Mavinakayanahalli | 66ff2d0 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 295 | preempt_enable_no_resched(); |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 296 | |
| 297 | /* |
| 298 | * By returning a non-zero value, we are telling |
| 299 | * kprobe_handler() that we have handled unlocking |
| 300 | * and re-enabling preemption. |
| 301 | */ |
| 302 | return 1; |
| 303 | } |
| 304 | |
| 305 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | * Called after single-stepping. p->addr is the address of the |
| 307 | * instruction whose first byte has been replaced by the "breakpoint" |
| 308 | * instruction. To avoid the SMP problems that can occur when we |
| 309 | * temporarily put back the original opcode to single-step, we |
| 310 | * single-stepped a copy of the instruction. The address of this |
| 311 | * copy is p->ainsn.insn. |
| 312 | */ |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 313 | static void __kprobes resume_execution(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
| 315 | int ret; |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 316 | unsigned int insn = *p->ainsn.insn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
| 318 | regs->nip = (unsigned long)p->addr; |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 319 | ret = emulate_step(regs, insn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | if (ret == 0) |
| 321 | regs->nip = (unsigned long)p->addr + 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | static inline int post_kprobe_handler(struct pt_regs *regs) |
| 325 | { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 326 | struct kprobe *cur = kprobe_running(); |
| 327 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 328 | |
| 329 | if (!cur) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | return 0; |
| 331 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 332 | if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) { |
| 333 | kcb->kprobe_status = KPROBE_HIT_SSDONE; |
| 334 | cur->post_handler(cur, regs, 0); |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 335 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 337 | resume_execution(cur, regs); |
| 338 | regs->msr |= kcb->kprobe_saved_msr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 340 | /*Restore back the original saved kprobes variables and continue. */ |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 341 | if (kcb->kprobe_status == KPROBE_REENTER) { |
| 342 | restore_previous_kprobe(kcb); |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 343 | goto out; |
| 344 | } |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 345 | reset_current_kprobe(); |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 346 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | preempt_enable_no_resched(); |
| 348 | |
| 349 | /* |
| 350 | * if somebody else is singlestepping across a probe point, msr |
| 351 | * will have SE set, in which case, continue the remaining processing |
| 352 | * of do_debug, as if this is not a probe hit. |
| 353 | */ |
| 354 | if (regs->msr & MSR_SE) |
| 355 | return 0; |
| 356 | |
| 357 | return 1; |
| 358 | } |
| 359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | static inline int kprobe_fault_handler(struct pt_regs *regs, int trapnr) |
| 361 | { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 362 | struct kprobe *cur = kprobe_running(); |
| 363 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 364 | |
| 365 | if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | return 1; |
| 367 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 368 | if (kcb->kprobe_status & KPROBE_HIT_SS) { |
| 369 | resume_execution(cur, regs); |
Ananth N Mavinakayanahalli | f829fd2 | 2005-06-08 15:50:00 -0700 | [diff] [blame] | 370 | regs->msr &= ~MSR_SE; |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 371 | regs->msr |= kcb->kprobe_saved_msr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 373 | reset_current_kprobe(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | preempt_enable_no_resched(); |
| 375 | } |
| 376 | return 0; |
| 377 | } |
| 378 | |
| 379 | /* |
| 380 | * Wrapper routine to for handling exceptions. |
| 381 | */ |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 382 | int __kprobes kprobe_exceptions_notify(struct notifier_block *self, |
| 383 | unsigned long val, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | { |
| 385 | struct die_args *args = (struct die_args *)data; |
| 386 | int ret = NOTIFY_DONE; |
| 387 | |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame^] | 388 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | switch (val) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | case DIE_BPT: |
| 391 | if (kprobe_handler(args->regs)) |
| 392 | ret = NOTIFY_STOP; |
| 393 | break; |
| 394 | case DIE_SSTEP: |
| 395 | if (post_kprobe_handler(args->regs)) |
| 396 | ret = NOTIFY_STOP; |
| 397 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | case DIE_PAGE_FAULT: |
| 399 | if (kprobe_running() && |
| 400 | kprobe_fault_handler(args->regs, args->trapnr)) |
| 401 | ret = NOTIFY_STOP; |
| 402 | break; |
| 403 | default: |
| 404 | break; |
| 405 | } |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame^] | 406 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | return ret; |
| 408 | } |
| 409 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 410 | int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | { |
| 412 | struct jprobe *jp = container_of(p, struct jprobe, kp); |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 413 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 415 | memcpy(&kcb->jprobe_saved_regs, regs, sizeof(struct pt_regs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
| 417 | /* setup return addr to the jprobe handler routine */ |
| 418 | regs->nip = (unsigned long)(((func_descr_t *)jp->entry)->entry); |
| 419 | regs->gpr[2] = (unsigned long)(((func_descr_t *)jp->entry)->toc); |
| 420 | |
| 421 | return 1; |
| 422 | } |
| 423 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 424 | void __kprobes jprobe_return(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | { |
| 426 | asm volatile("trap" ::: "memory"); |
| 427 | } |
| 428 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 429 | void __kprobes jprobe_return_end(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { |
| 431 | }; |
| 432 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 433 | int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 435 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 436 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | /* |
| 438 | * FIXME - we should ideally be validating that we got here 'cos |
| 439 | * of the "trap" in jprobe_return() above, before restoring the |
| 440 | * saved regs... |
| 441 | */ |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 442 | memcpy(regs, &kcb->jprobe_saved_regs, sizeof(struct pt_regs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | return 1; |
| 444 | } |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 445 | |
| 446 | static struct kprobe trampoline_p = { |
| 447 | .addr = (kprobe_opcode_t *) &kretprobe_trampoline, |
| 448 | .pre_handler = trampoline_probe_handler |
| 449 | }; |
| 450 | |
Rusty Lynch | 6772926 | 2005-07-05 18:54:50 -0700 | [diff] [blame] | 451 | int __init arch_init_kprobes(void) |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 452 | { |
| 453 | return register_kprobe(&trampoline_p); |
| 454 | } |