Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Kernel Probes (KProbes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 17 | * |
| 18 | * Copyright (C) IBM Corporation, 2002, 2004 |
| 19 | * |
| 20 | * 2002-Oct Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel |
| 21 | * Probes initial implementation ( includes contributions from |
| 22 | * Rusty Russell). |
| 23 | * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes |
| 24 | * interface to access function arguments. |
| 25 | * 2004-Nov Ananth N Mavinakayanahalli <ananth@in.ibm.com> kprobes port |
| 26 | * for PPC64 |
| 27 | */ |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/kprobes.h> |
| 30 | #include <linux/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/preempt.h> |
Prasanna S Panchamukhi | 50e21f2 | 2006-03-26 01:38:24 -0800 | [diff] [blame] | 32 | #include <linux/module.h> |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 33 | #include <asm/cacheflush.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/kdebug.h> |
| 35 | #include <asm/sstep.h> |
Prasanna S Panchamukhi | 50e21f2 | 2006-03-26 01:38:24 -0800 | [diff] [blame] | 36 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 38 | DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL; |
| 39 | DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 41 | int __kprobes arch_prepare_kprobe(struct kprobe *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { |
Ananth N Mavinakayanahalli | 63224d1e8 | 2005-06-08 15:49:41 -0700 | [diff] [blame] | 43 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | kprobe_opcode_t insn = *p->addr; |
| 45 | |
Ananth N Mavinakayanahalli | 63224d1e8 | 2005-06-08 15:49:41 -0700 | [diff] [blame] | 46 | if ((unsigned long)p->addr & 0x03) { |
| 47 | printk("Attempt to register kprobe at an unaligned address\n"); |
| 48 | ret = -EINVAL; |
Kumar Gala | 8209003 | 2007-02-06 22:55:19 -0600 | [diff] [blame] | 49 | } else if (IS_MTMSRD(insn) || IS_RFID(insn) || IS_RFI(insn)) { |
| 50 | printk("Cannot register a kprobe on rfi/rfid or mtmsr[d]\n"); |
Ananth N Mavinakayanahalli | 63224d1e8 | 2005-06-08 15:49:41 -0700 | [diff] [blame] | 51 | ret = -EINVAL; |
| 52 | } |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 53 | |
| 54 | /* insn must be on a special executable page on ppc64 */ |
| 55 | if (!ret) { |
Ananth N Mavinakayanahalli | 2d8ab6a | 2005-10-01 13:14:17 -0400 | [diff] [blame] | 56 | p->ainsn.insn = get_insn_slot(); |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 57 | if (!p->ainsn.insn) |
| 58 | ret = -ENOMEM; |
| 59 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Anil S Keshavamurthy | 49a2a1b | 2006-01-09 20:52:43 -0800 | [diff] [blame] | 61 | if (!ret) { |
Ananth N Mavinakayanahalli | e6349a9 | 2007-04-18 15:57:51 +1000 | [diff] [blame^] | 62 | memcpy(p->ainsn.insn, p->addr, |
| 63 | MAX_INSN_SIZE * sizeof(kprobe_opcode_t)); |
Anil S Keshavamurthy | 49a2a1b | 2006-01-09 20:52:43 -0800 | [diff] [blame] | 64 | p->opcode = *p->addr; |
Ananth N Mavinakayanahalli | 83db3dd | 2006-08-11 17:01:34 +0530 | [diff] [blame] | 65 | flush_icache_range((unsigned long)p->ainsn.insn, |
| 66 | (unsigned long)p->ainsn.insn + sizeof(kprobe_opcode_t)); |
Anil S Keshavamurthy | 49a2a1b | 2006-01-09 20:52:43 -0800 | [diff] [blame] | 67 | } |
| 68 | |
Ananth N Mavinakayanahalli | e6349a9 | 2007-04-18 15:57:51 +1000 | [diff] [blame^] | 69 | p->ainsn.boostable = 0; |
Anil S Keshavamurthy | 49a2a1b | 2006-01-09 20:52:43 -0800 | [diff] [blame] | 70 | return ret; |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 73 | void __kprobes arch_arm_kprobe(struct kprobe *p) |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 74 | { |
| 75 | *p->addr = BREAKPOINT_INSTRUCTION; |
| 76 | flush_icache_range((unsigned long) p->addr, |
| 77 | (unsigned long) p->addr + sizeof(kprobe_opcode_t)); |
| 78 | } |
| 79 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 80 | void __kprobes arch_disarm_kprobe(struct kprobe *p) |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 81 | { |
| 82 | *p->addr = p->opcode; |
| 83 | flush_icache_range((unsigned long) p->addr, |
| 84 | (unsigned long) p->addr + sizeof(kprobe_opcode_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Ananth N Mavinakayanahalli | 0498b63 | 2006-01-09 20:52:46 -0800 | [diff] [blame] | 87 | void __kprobes arch_remove_kprobe(struct kprobe *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { |
Ingo Molnar | 7a7d1cf | 2006-03-23 03:00:35 -0800 | [diff] [blame] | 89 | mutex_lock(&kprobe_mutex); |
Masami Hiramatsu | b4c6c34 | 2006-12-06 20:38:11 -0800 | [diff] [blame] | 90 | free_insn_slot(p->ainsn.insn, 0); |
Ingo Molnar | 7a7d1cf | 2006-03-23 03:00:35 -0800 | [diff] [blame] | 91 | mutex_unlock(&kprobe_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Prasanna S Panchamukhi | 46dbe2f | 2006-04-18 22:22:01 -0700 | [diff] [blame] | 94 | static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { |
| 96 | regs->msr |= MSR_SE; |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 97 | |
Ananth N Mavinakayanahalli | 0ccde0a | 2006-04-28 17:38:42 +0530 | [diff] [blame] | 98 | /* |
| 99 | * On powerpc we should single step on the original |
| 100 | * instruction even if the probed insn is a trap |
| 101 | * variant as values in regs could play a part in |
| 102 | * if the trap is taken or not |
| 103 | */ |
| 104 | regs->nip = (unsigned long)p->ainsn.insn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Prasanna S Panchamukhi | 46dbe2f | 2006-04-18 22:22:01 -0700 | [diff] [blame] | 107 | static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 108 | { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 109 | kcb->prev_kprobe.kp = kprobe_running(); |
| 110 | kcb->prev_kprobe.status = kcb->kprobe_status; |
| 111 | kcb->prev_kprobe.saved_msr = kcb->kprobe_saved_msr; |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 112 | } |
| 113 | |
Prasanna S Panchamukhi | 46dbe2f | 2006-04-18 22:22:01 -0700 | [diff] [blame] | 114 | static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 115 | { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 116 | __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp; |
| 117 | kcb->kprobe_status = kcb->prev_kprobe.status; |
| 118 | kcb->kprobe_saved_msr = kcb->prev_kprobe.saved_msr; |
| 119 | } |
| 120 | |
Prasanna S Panchamukhi | 46dbe2f | 2006-04-18 22:22:01 -0700 | [diff] [blame] | 121 | static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs, |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 122 | struct kprobe_ctlblk *kcb) |
| 123 | { |
| 124 | __get_cpu_var(current_kprobe) = p; |
| 125 | kcb->kprobe_saved_msr = regs->msr; |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 128 | /* Called with kretprobe_lock held */ |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 129 | void __kprobes arch_prepare_kretprobe(struct kretprobe *rp, |
| 130 | struct pt_regs *regs) |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 131 | { |
| 132 | struct kretprobe_instance *ri; |
| 133 | |
| 134 | if ((ri = get_free_rp_inst(rp)) != NULL) { |
| 135 | ri->rp = rp; |
| 136 | ri->task = current; |
| 137 | ri->ret_addr = (kprobe_opcode_t *)regs->link; |
| 138 | |
| 139 | /* Replace the return addr with trampoline addr */ |
| 140 | regs->link = (unsigned long)kretprobe_trampoline; |
| 141 | add_rp_inst(ri); |
| 142 | } else { |
| 143 | rp->nmissed++; |
| 144 | } |
| 145 | } |
| 146 | |
Prasanna S Panchamukhi | 46dbe2f | 2006-04-18 22:22:01 -0700 | [diff] [blame] | 147 | static int __kprobes kprobe_handler(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
| 149 | struct kprobe *p; |
| 150 | int ret = 0; |
| 151 | unsigned int *addr = (unsigned int *)regs->nip; |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 152 | struct kprobe_ctlblk *kcb; |
| 153 | |
| 154 | /* |
| 155 | * We don't want to be preempted for the entire |
| 156 | * duration of kprobe processing |
| 157 | */ |
| 158 | preempt_disable(); |
| 159 | kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | /* Check we're not actually recursing */ |
| 162 | if (kprobe_running()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | p = get_kprobe(addr); |
| 164 | if (p) { |
Keshavamurthy Anil S | deac66a | 2005-09-06 15:19:35 -0700 | [diff] [blame] | 165 | kprobe_opcode_t insn = *p->ainsn.insn; |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 166 | if (kcb->kprobe_status == KPROBE_HIT_SS && |
Keshavamurthy Anil S | deac66a | 2005-09-06 15:19:35 -0700 | [diff] [blame] | 167 | is_trap(insn)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | regs->msr &= ~MSR_SE; |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 169 | regs->msr |= kcb->kprobe_saved_msr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | goto no_kprobe; |
| 171 | } |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 172 | /* We have reentered the kprobe_handler(), since |
| 173 | * another probe was hit while within the handler. |
| 174 | * We here save the original kprobes variables and |
| 175 | * just single step on the instruction of the new probe |
| 176 | * without calling any user handlers. |
| 177 | */ |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 178 | save_previous_kprobe(kcb); |
| 179 | set_current_kprobe(p, regs, kcb); |
| 180 | kcb->kprobe_saved_msr = regs->msr; |
Keshavamurthy Anil S | bf8d5c5 | 2005-12-12 00:37:34 -0800 | [diff] [blame] | 181 | kprobes_inc_nmissed_count(p); |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 182 | prepare_singlestep(p, regs); |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 183 | kcb->kprobe_status = KPROBE_REENTER; |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 184 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | } else { |
Keshavamurthy Anil S | eb3a729 | 2006-01-11 12:17:42 -0800 | [diff] [blame] | 186 | if (*addr != BREAKPOINT_INSTRUCTION) { |
| 187 | /* If trap variant, then it belongs not to us */ |
| 188 | kprobe_opcode_t cur_insn = *addr; |
| 189 | if (is_trap(cur_insn)) |
| 190 | goto no_kprobe; |
| 191 | /* The breakpoint instruction was removed by |
| 192 | * another cpu right after we hit, no further |
| 193 | * handling of this interrupt is appropriate |
| 194 | */ |
| 195 | ret = 1; |
| 196 | goto no_kprobe; |
| 197 | } |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 198 | p = __get_cpu_var(current_kprobe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | if (p->break_handler && p->break_handler(p, regs)) { |
| 200 | goto ss_probe; |
| 201 | } |
| 202 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | goto no_kprobe; |
| 204 | } |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | p = get_kprobe(addr); |
| 207 | if (!p) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | if (*addr != BREAKPOINT_INSTRUCTION) { |
| 209 | /* |
| 210 | * PowerPC has multiple variants of the "trap" |
| 211 | * instruction. If the current instruction is a |
| 212 | * trap variant, it could belong to someone else |
| 213 | */ |
| 214 | kprobe_opcode_t cur_insn = *addr; |
Keshavamurthy Anil S | deac66a | 2005-09-06 15:19:35 -0700 | [diff] [blame] | 215 | if (is_trap(cur_insn)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | goto no_kprobe; |
| 217 | /* |
| 218 | * The breakpoint instruction was removed right |
| 219 | * after we hit it. Another cpu has removed |
| 220 | * either a probepoint or a debugger breakpoint |
| 221 | * at this address. In either case, no further |
| 222 | * handling of this interrupt is appropriate. |
| 223 | */ |
| 224 | ret = 1; |
| 225 | } |
| 226 | /* Not one of ours: let kernel handle it */ |
| 227 | goto no_kprobe; |
| 228 | } |
| 229 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 230 | kcb->kprobe_status = KPROBE_HIT_ACTIVE; |
| 231 | set_current_kprobe(p, regs, kcb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | if (p->pre_handler && p->pre_handler(p, regs)) |
| 233 | /* handler has already set things up, so skip ss setup */ |
| 234 | return 1; |
| 235 | |
| 236 | ss_probe: |
Ananth N Mavinakayanahalli | e6349a9 | 2007-04-18 15:57:51 +1000 | [diff] [blame^] | 237 | if (p->ainsn.boostable >= 0) { |
| 238 | unsigned int insn = *p->ainsn.insn; |
| 239 | |
| 240 | /* regs->nip is also adjusted if emulate_step returns 1 */ |
| 241 | ret = emulate_step(regs, insn); |
| 242 | if (ret > 0) { |
| 243 | /* |
| 244 | * Once this instruction has been boosted |
| 245 | * successfully, set the boostable flag |
| 246 | */ |
| 247 | if (unlikely(p->ainsn.boostable == 0)) |
| 248 | p->ainsn.boostable = 1; |
| 249 | |
| 250 | if (p->post_handler) |
| 251 | p->post_handler(p, regs, 0); |
| 252 | |
| 253 | kcb->kprobe_status = KPROBE_HIT_SSDONE; |
| 254 | reset_current_kprobe(); |
| 255 | preempt_enable_no_resched(); |
| 256 | return 1; |
| 257 | } else if (ret < 0) { |
| 258 | /* |
| 259 | * We don't allow kprobes on mtmsr(d)/rfi(d), etc. |
| 260 | * So, we should never get here... but, its still |
| 261 | * good to catch them, just in case... |
| 262 | */ |
| 263 | printk("Can't step on instruction %x\n", insn); |
| 264 | BUG(); |
| 265 | } else if (ret == 0) |
| 266 | /* This instruction can't be boosted */ |
| 267 | p->ainsn.boostable = -1; |
| 268 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | prepare_singlestep(p, regs); |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 270 | kcb->kprobe_status = KPROBE_HIT_SS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | return 1; |
| 272 | |
| 273 | no_kprobe: |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 274 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | return ret; |
| 276 | } |
| 277 | |
| 278 | /* |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 279 | * Function return probe trampoline: |
| 280 | * - init_kprobes() establishes a probepoint here |
| 281 | * - When the probed function returns, this probe |
| 282 | * causes the handlers to fire |
| 283 | */ |
| 284 | void kretprobe_trampoline_holder(void) |
| 285 | { |
| 286 | asm volatile(".global kretprobe_trampoline\n" |
| 287 | "kretprobe_trampoline:\n" |
| 288 | "nop\n"); |
| 289 | } |
| 290 | |
| 291 | /* |
| 292 | * Called when the probe at kretprobe trampoline is hit |
| 293 | */ |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 294 | int __kprobes trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs) |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 295 | { |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 296 | struct kretprobe_instance *ri = NULL; |
bibo,mao | 99219a3 | 2006-10-02 02:17:35 -0700 | [diff] [blame] | 297 | struct hlist_head *head, empty_rp; |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 298 | struct hlist_node *node, *tmp; |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 299 | unsigned long flags, orig_ret_address = 0; |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 300 | unsigned long trampoline_address =(unsigned long)&kretprobe_trampoline; |
| 301 | |
bibo,mao | 99219a3 | 2006-10-02 02:17:35 -0700 | [diff] [blame] | 302 | INIT_HLIST_HEAD(&empty_rp); |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 303 | spin_lock_irqsave(&kretprobe_lock, flags); |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 304 | head = kretprobe_inst_table_head(current); |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 305 | |
| 306 | /* |
| 307 | * It is possible to have multiple instances associated with a given |
| 308 | * task either because an multiple functions in the call path |
| 309 | * have a return probe installed on them, and/or more then one return |
| 310 | * return probe was registered for a target function. |
| 311 | * |
| 312 | * We can handle this because: |
| 313 | * - instances are always inserted at the head of the list |
| 314 | * - when multiple return probes are registered for the same |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 315 | * function, the first instance's ret_addr will point to the |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 316 | * real return address, and all the rest will point to |
| 317 | * kretprobe_trampoline |
| 318 | */ |
| 319 | hlist_for_each_entry_safe(ri, node, tmp, head, hlist) { |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 320 | if (ri->task != current) |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 321 | /* another task is sharing our hash bucket */ |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 322 | continue; |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 323 | |
| 324 | if (ri->rp && ri->rp->handler) |
| 325 | ri->rp->handler(ri, regs); |
| 326 | |
| 327 | orig_ret_address = (unsigned long)ri->ret_addr; |
bibo,mao | 99219a3 | 2006-10-02 02:17:35 -0700 | [diff] [blame] | 328 | recycle_rp_inst(ri, &empty_rp); |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 329 | |
| 330 | if (orig_ret_address != trampoline_address) |
| 331 | /* |
| 332 | * This is the real return address. Any other |
| 333 | * instances associated with this task are for |
| 334 | * other calls deeper on the call stack |
| 335 | */ |
| 336 | break; |
| 337 | } |
| 338 | |
| 339 | BUG_ON(!orig_ret_address || (orig_ret_address == trampoline_address)); |
| 340 | regs->nip = orig_ret_address; |
| 341 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 342 | reset_current_kprobe(); |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 343 | spin_unlock_irqrestore(&kretprobe_lock, flags); |
Ananth N Mavinakayanahalli | 66ff2d0 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 344 | preempt_enable_no_resched(); |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 345 | |
bibo,mao | 99219a3 | 2006-10-02 02:17:35 -0700 | [diff] [blame] | 346 | hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) { |
| 347 | hlist_del(&ri->hlist); |
| 348 | kfree(ri); |
| 349 | } |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 350 | /* |
| 351 | * By returning a non-zero value, we are telling |
| 352 | * kprobe_handler() that we don't want the post_handler |
| 353 | * to run (and have re-enabled preemption) |
| 354 | */ |
| 355 | return 1; |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | * Called after single-stepping. p->addr is the address of the |
| 360 | * instruction whose first byte has been replaced by the "breakpoint" |
| 361 | * instruction. To avoid the SMP problems that can occur when we |
| 362 | * temporarily put back the original opcode to single-step, we |
| 363 | * single-stepped a copy of the instruction. The address of this |
| 364 | * copy is p->ainsn.insn. |
| 365 | */ |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 366 | static void __kprobes resume_execution(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | { |
| 368 | int ret; |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 369 | unsigned int insn = *p->ainsn.insn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | regs->nip = (unsigned long)p->addr; |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 372 | ret = emulate_step(regs, insn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | if (ret == 0) |
| 374 | regs->nip = (unsigned long)p->addr + 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
| 376 | |
Prasanna S Panchamukhi | 46dbe2f | 2006-04-18 22:22:01 -0700 | [diff] [blame] | 377 | static int __kprobes post_kprobe_handler(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 379 | struct kprobe *cur = kprobe_running(); |
| 380 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 381 | |
| 382 | if (!cur) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | return 0; |
| 384 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 385 | if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) { |
| 386 | kcb->kprobe_status = KPROBE_HIT_SSDONE; |
| 387 | cur->post_handler(cur, regs, 0); |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 388 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 390 | resume_execution(cur, regs); |
| 391 | regs->msr |= kcb->kprobe_saved_msr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 393 | /*Restore back the original saved kprobes variables and continue. */ |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 394 | if (kcb->kprobe_status == KPROBE_REENTER) { |
| 395 | restore_previous_kprobe(kcb); |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 396 | goto out; |
| 397 | } |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 398 | reset_current_kprobe(); |
Prasanna S Panchamukhi | 42cc206 | 2005-06-23 00:09:38 -0700 | [diff] [blame] | 399 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | preempt_enable_no_resched(); |
| 401 | |
| 402 | /* |
| 403 | * if somebody else is singlestepping across a probe point, msr |
| 404 | * will have SE set, in which case, continue the remaining processing |
| 405 | * of do_debug, as if this is not a probe hit. |
| 406 | */ |
| 407 | if (regs->msr & MSR_SE) |
| 408 | return 0; |
| 409 | |
| 410 | return 1; |
| 411 | } |
| 412 | |
Prasanna S Panchamukhi | 46dbe2f | 2006-04-18 22:22:01 -0700 | [diff] [blame] | 413 | static int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr) |
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 | struct kprobe *cur = kprobe_running(); |
| 416 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
Prasanna S Panchamukhi | 50e21f2 | 2006-03-26 01:38:24 -0800 | [diff] [blame] | 417 | const struct exception_table_entry *entry; |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 418 | |
Prasanna S Panchamukhi | 50e21f2 | 2006-03-26 01:38:24 -0800 | [diff] [blame] | 419 | switch(kcb->kprobe_status) { |
| 420 | case KPROBE_HIT_SS: |
| 421 | case KPROBE_REENTER: |
| 422 | /* |
| 423 | * We are here because the instruction being single |
| 424 | * stepped caused a page fault. We reset the current |
| 425 | * kprobe and the nip points back to the probe address |
| 426 | * and allow the page fault handler to continue as a |
| 427 | * normal page fault. |
| 428 | */ |
| 429 | regs->nip = (unsigned long)cur->addr; |
Ananth N Mavinakayanahalli | f829fd2 | 2005-06-08 15:50:00 -0700 | [diff] [blame] | 430 | regs->msr &= ~MSR_SE; |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 431 | regs->msr |= kcb->kprobe_saved_msr; |
Prasanna S Panchamukhi | 50e21f2 | 2006-03-26 01:38:24 -0800 | [diff] [blame] | 432 | if (kcb->kprobe_status == KPROBE_REENTER) |
| 433 | restore_previous_kprobe(kcb); |
| 434 | else |
| 435 | reset_current_kprobe(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | preempt_enable_no_resched(); |
Prasanna S Panchamukhi | 50e21f2 | 2006-03-26 01:38:24 -0800 | [diff] [blame] | 437 | break; |
| 438 | case KPROBE_HIT_ACTIVE: |
| 439 | case KPROBE_HIT_SSDONE: |
| 440 | /* |
| 441 | * We increment the nmissed count for accounting, |
| 442 | * we can also use npre/npostfault count for accouting |
| 443 | * these specific fault cases. |
| 444 | */ |
| 445 | kprobes_inc_nmissed_count(cur); |
| 446 | |
| 447 | /* |
| 448 | * We come here because instructions in the pre/post |
| 449 | * handler caused the page_fault, this could happen |
| 450 | * if handler tries to access user space by |
| 451 | * copy_from_user(), get_user() etc. Let the |
| 452 | * user-specified handler try to fix it first. |
| 453 | */ |
| 454 | if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) |
| 455 | return 1; |
| 456 | |
| 457 | /* |
| 458 | * In case the user-specified fault handler returned |
| 459 | * zero, try to fix up. |
| 460 | */ |
| 461 | if ((entry = search_exception_tables(regs->nip)) != NULL) { |
| 462 | regs->nip = entry->fixup; |
| 463 | return 1; |
| 464 | } |
| 465 | |
| 466 | /* |
| 467 | * fixup_exception() could not handle it, |
| 468 | * Let do_page_fault() fix it. |
| 469 | */ |
| 470 | break; |
| 471 | default: |
| 472 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | } |
| 474 | return 0; |
| 475 | } |
| 476 | |
| 477 | /* |
| 478 | * Wrapper routine to for handling exceptions. |
| 479 | */ |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 480 | int __kprobes kprobe_exceptions_notify(struct notifier_block *self, |
| 481 | unsigned long val, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | { |
| 483 | struct die_args *args = (struct die_args *)data; |
| 484 | int ret = NOTIFY_DONE; |
| 485 | |
bibo,mao | 2326c77 | 2006-03-26 01:38:21 -0800 | [diff] [blame] | 486 | if (args->regs && user_mode(args->regs)) |
| 487 | return ret; |
| 488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | switch (val) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | case DIE_BPT: |
| 491 | if (kprobe_handler(args->regs)) |
| 492 | ret = NOTIFY_STOP; |
| 493 | break; |
| 494 | case DIE_SSTEP: |
| 495 | if (post_kprobe_handler(args->regs)) |
| 496 | ret = NOTIFY_STOP; |
| 497 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | case DIE_PAGE_FAULT: |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 499 | /* kprobe_running() needs smp_processor_id() */ |
| 500 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | if (kprobe_running() && |
| 502 | kprobe_fault_handler(args->regs, args->trapnr)) |
| 503 | ret = NOTIFY_STOP; |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 504 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | break; |
| 506 | default: |
| 507 | break; |
| 508 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | return ret; |
| 510 | } |
| 511 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 512 | int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | { |
| 514 | struct jprobe *jp = container_of(p, struct jprobe, kp); |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 515 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 517 | memcpy(&kcb->jprobe_saved_regs, regs, sizeof(struct pt_regs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | |
| 519 | /* setup return addr to the jprobe handler routine */ |
Kumar Gala | 8209003 | 2007-02-06 22:55:19 -0600 | [diff] [blame] | 520 | #ifdef CONFIG_PPC64 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | regs->nip = (unsigned long)(((func_descr_t *)jp->entry)->entry); |
| 522 | regs->gpr[2] = (unsigned long)(((func_descr_t *)jp->entry)->toc); |
Kumar Gala | 8209003 | 2007-02-06 22:55:19 -0600 | [diff] [blame] | 523 | #else |
| 524 | regs->nip = (unsigned long)jp->entry; |
| 525 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
| 527 | return 1; |
| 528 | } |
| 529 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 530 | void __kprobes jprobe_return(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | { |
| 532 | asm volatile("trap" ::: "memory"); |
| 533 | } |
| 534 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 535 | void __kprobes jprobe_return_end(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | { |
| 537 | }; |
| 538 | |
Prasanna S Panchamukhi | bb144a8 | 2005-09-06 15:19:29 -0700 | [diff] [blame] | 539 | int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | { |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 541 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 542 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | /* |
| 544 | * FIXME - we should ideally be validating that we got here 'cos |
| 545 | * of the "trap" in jprobe_return() above, before restoring the |
| 546 | * saved regs... |
| 547 | */ |
Ananth N Mavinakayanahalli | 0dc036c | 2005-11-07 01:00:10 -0800 | [diff] [blame] | 548 | memcpy(regs, &kcb->jprobe_saved_regs, sizeof(struct pt_regs)); |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 549 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | return 1; |
| 551 | } |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 552 | |
| 553 | static struct kprobe trampoline_p = { |
| 554 | .addr = (kprobe_opcode_t *) &kretprobe_trampoline, |
| 555 | .pre_handler = trampoline_probe_handler |
| 556 | }; |
| 557 | |
Rusty Lynch | 6772926 | 2005-07-05 18:54:50 -0700 | [diff] [blame] | 558 | int __init arch_init_kprobes(void) |
Rusty Lynch | 97f7943 | 2005-06-27 15:17:15 -0700 | [diff] [blame] | 559 | { |
| 560 | return register_kprobe(&trampoline_p); |
| 561 | } |