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-Oct Jim Keniston <kenistoj@us.ibm.com> and Prasanna S Panchamukhi |
| 26 | * <prasanna@in.ibm.com> adapted for x86_64 |
| 27 | * 2005-Mar Roland McGrath <roland@redhat.com> |
| 28 | * Fixed to handle %rip-relative addressing mode correctly. |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 29 | * 2005-May Rusty Lynch <rusty.lynch@intel.com> |
| 30 | * Added function return probes functionality |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | */ |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/kprobes.h> |
| 34 | #include <linux/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/string.h> |
| 36 | #include <linux/slab.h> |
| 37 | #include <linux/preempt.h> |
Prasanna S Panchamukhi | c28f896 | 2006-03-26 01:38:23 -0800 | [diff] [blame] | 38 | #include <linux/module.h> |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 39 | #include <linux/kdebug.h> |
Ananth N Mavinakayanahalli | 9ec4b1f | 2005-06-27 15:17:01 -0700 | [diff] [blame] | 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <asm/pgtable.h> |
Prasanna S Panchamukhi | c28f896 | 2006-03-26 01:38:23 -0800 | [diff] [blame] | 42 | #include <asm/uaccess.h> |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 43 | #include <asm/alternative.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | void jprobe_return_end(void); |
Keshavamurthy Anil S | f709b12 | 2006-01-09 20:52:44 -0800 | [diff] [blame] | 46 | static void __kprobes arch_copy_kprobe(struct kprobe *p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 48 | DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL; |
| 49 | DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | /* |
| 52 | * returns non-zero if opcode modifies the interrupt flag. |
| 53 | */ |
Prasanna S Panchamukhi | 3b60211 | 2006-04-18 22:22:00 -0700 | [diff] [blame] | 54 | static __always_inline int is_IF_modifier(kprobe_opcode_t *insn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { |
| 56 | switch (*insn) { |
| 57 | case 0xfa: /* cli */ |
| 58 | case 0xfb: /* sti */ |
| 59 | case 0xcf: /* iret/iretd */ |
| 60 | case 0x9d: /* popf/popfd */ |
| 61 | return 1; |
| 62 | } |
| 63 | |
| 64 | if (*insn >= 0x40 && *insn <= 0x4f && *++insn == 0xcf) |
| 65 | return 1; |
| 66 | return 0; |
| 67 | } |
| 68 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 69 | int __kprobes arch_prepare_kprobe(struct kprobe *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
| 71 | /* insn: must be on special executable page on x86_64. */ |
Zhang, Yanmin | 2dd960d | 2005-09-30 11:59:20 -0700 | [diff] [blame] | 72 | p->ainsn.insn = get_insn_slot(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | if (!p->ainsn.insn) { |
| 74 | return -ENOMEM; |
| 75 | } |
Anil S Keshavamurthy | 49a2a1b | 2006-01-09 20:52:43 -0800 | [diff] [blame] | 76 | arch_copy_kprobe(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | return 0; |
| 78 | } |
| 79 | |
| 80 | /* |
| 81 | * Determine if the instruction uses the %rip-relative addressing mode. |
| 82 | * If it does, return the address of the 32-bit displacement word. |
| 83 | * If not, return null. |
| 84 | */ |
Prasanna S Panchamukhi | 3b60211 | 2006-04-18 22:22:00 -0700 | [diff] [blame] | 85 | static s32 __kprobes *is_riprel(u8 *insn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
| 87 | #define W(row,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,ba,bb,bc,bd,be,bf) \ |
| 88 | (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \ |
| 89 | (b4##UL << 0x4)|(b5##UL << 0x5)|(b6##UL << 0x6)|(b7##UL << 0x7) | \ |
| 90 | (b8##UL << 0x8)|(b9##UL << 0x9)|(ba##UL << 0xa)|(bb##UL << 0xb) | \ |
| 91 | (bc##UL << 0xc)|(bd##UL << 0xd)|(be##UL << 0xe)|(bf##UL << 0xf)) \ |
| 92 | << (row % 64)) |
| 93 | static const u64 onebyte_has_modrm[256 / 64] = { |
| 94 | /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */ |
| 95 | /* ------------------------------- */ |
| 96 | W(0x00, 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0)| /* 00 */ |
| 97 | W(0x10, 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0)| /* 10 */ |
| 98 | W(0x20, 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0)| /* 20 */ |
| 99 | W(0x30, 1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0), /* 30 */ |
| 100 | W(0x40, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)| /* 40 */ |
| 101 | W(0x50, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)| /* 50 */ |
| 102 | W(0x60, 0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0)| /* 60 */ |
| 103 | W(0x70, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), /* 70 */ |
| 104 | W(0x80, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)| /* 80 */ |
| 105 | W(0x90, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)| /* 90 */ |
| 106 | W(0xa0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)| /* a0 */ |
| 107 | W(0xb0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), /* b0 */ |
| 108 | W(0xc0, 1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0)| /* c0 */ |
| 109 | W(0xd0, 1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1)| /* d0 */ |
| 110 | W(0xe0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)| /* e0 */ |
| 111 | W(0xf0, 0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1) /* f0 */ |
| 112 | /* ------------------------------- */ |
| 113 | /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */ |
| 114 | }; |
| 115 | static const u64 twobyte_has_modrm[256 / 64] = { |
| 116 | /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */ |
| 117 | /* ------------------------------- */ |
| 118 | W(0x00, 1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1)| /* 0f */ |
| 119 | W(0x10, 1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0)| /* 1f */ |
| 120 | W(0x20, 1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1)| /* 2f */ |
| 121 | W(0x30, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), /* 3f */ |
| 122 | W(0x40, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)| /* 4f */ |
| 123 | W(0x50, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)| /* 5f */ |
| 124 | W(0x60, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)| /* 6f */ |
| 125 | W(0x70, 1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1), /* 7f */ |
| 126 | W(0x80, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)| /* 8f */ |
| 127 | W(0x90, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)| /* 9f */ |
| 128 | W(0xa0, 0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1)| /* af */ |
| 129 | W(0xb0, 1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1), /* bf */ |
| 130 | W(0xc0, 1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0)| /* cf */ |
| 131 | W(0xd0, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)| /* df */ |
| 132 | W(0xe0, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)| /* ef */ |
| 133 | W(0xf0, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0) /* ff */ |
| 134 | /* ------------------------------- */ |
| 135 | /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */ |
| 136 | }; |
| 137 | #undef W |
| 138 | int need_modrm; |
| 139 | |
| 140 | /* Skip legacy instruction prefixes. */ |
| 141 | while (1) { |
| 142 | switch (*insn) { |
| 143 | case 0x66: |
| 144 | case 0x67: |
| 145 | case 0x2e: |
| 146 | case 0x3e: |
| 147 | case 0x26: |
| 148 | case 0x64: |
| 149 | case 0x65: |
| 150 | case 0x36: |
| 151 | case 0xf0: |
| 152 | case 0xf3: |
| 153 | case 0xf2: |
| 154 | ++insn; |
| 155 | continue; |
| 156 | } |
| 157 | break; |
| 158 | } |
| 159 | |
| 160 | /* Skip REX instruction prefix. */ |
| 161 | if ((*insn & 0xf0) == 0x40) |
| 162 | ++insn; |
| 163 | |
| 164 | if (*insn == 0x0f) { /* Two-byte opcode. */ |
| 165 | ++insn; |
| 166 | need_modrm = test_bit(*insn, twobyte_has_modrm); |
| 167 | } else { /* One-byte opcode. */ |
| 168 | need_modrm = test_bit(*insn, onebyte_has_modrm); |
| 169 | } |
| 170 | |
| 171 | if (need_modrm) { |
| 172 | u8 modrm = *++insn; |
| 173 | if ((modrm & 0xc7) == 0x05) { /* %rip+disp32 addressing mode */ |
| 174 | /* Displacement follows ModRM byte. */ |
| 175 | return (s32 *) ++insn; |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | /* No %rip-relative addressing mode here. */ |
| 180 | return NULL; |
| 181 | } |
| 182 | |
Keshavamurthy Anil S | f709b12 | 2006-01-09 20:52:44 -0800 | [diff] [blame] | 183 | static void __kprobes arch_copy_kprobe(struct kprobe *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
| 185 | s32 *ripdisp; |
| 186 | memcpy(p->ainsn.insn, p->addr, MAX_INSN_SIZE); |
| 187 | ripdisp = is_riprel(p->ainsn.insn); |
| 188 | if (ripdisp) { |
| 189 | /* |
| 190 | * The copied instruction uses the %rip-relative |
| 191 | * addressing mode. Adjust the displacement for the |
| 192 | * difference between the original location of this |
| 193 | * instruction and the location of the copy that will |
| 194 | * actually be run. The tricky bit here is making sure |
| 195 | * that the sign extension happens correctly in this |
| 196 | * calculation, since we need a signed 32-bit result to |
| 197 | * be sign-extended to 64 bits when it's added to the |
| 198 | * %rip value and yield the same 64-bit result that the |
| 199 | * sign-extension of the original signed 32-bit |
| 200 | * displacement would have given. |
| 201 | */ |
| 202 | s64 disp = (u8 *) p->addr + *ripdisp - (u8 *) p->ainsn.insn; |
| 203 | BUG_ON((s64) (s32) disp != disp); /* Sanity check. */ |
| 204 | *ripdisp = disp; |
| 205 | } |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 206 | p->opcode = *p->addr; |
| 207 | } |
| 208 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 209 | void __kprobes arch_arm_kprobe(struct kprobe *p) |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 210 | { |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 211 | text_poke(p->addr, ((unsigned char []){BREAKPOINT_INSTRUCTION}), 1); |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 212 | } |
| 213 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 214 | void __kprobes arch_disarm_kprobe(struct kprobe *p) |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 215 | { |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 216 | text_poke(p->addr, &p->opcode, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Ananth N Mavinakayanahalli | 0498b63 | 2006-01-09 20:52:46 -0800 | [diff] [blame] | 219 | void __kprobes arch_remove_kprobe(struct kprobe *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | { |
Ingo Molnar | 7a7d1cf | 2006-03-23 03:00:35 -0800 | [diff] [blame] | 221 | mutex_lock(&kprobe_mutex); |
Masami Hiramatsu | b4c6c34 | 2006-12-06 20:38:11 -0800 | [diff] [blame] | 222 | free_insn_slot(p->ainsn.insn, 0); |
Ingo Molnar | 7a7d1cf | 2006-03-23 03:00:35 -0800 | [diff] [blame] | 223 | mutex_unlock(&kprobe_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } |
| 225 | |
Prasanna S Panchamukhi | 3b60211 | 2006-04-18 22:22:00 -0700 | [diff] [blame] | 226 | static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 227 | { |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 228 | kcb->prev_kprobe.kp = kprobe_running(); |
| 229 | kcb->prev_kprobe.status = kcb->kprobe_status; |
| 230 | kcb->prev_kprobe.old_rflags = kcb->kprobe_old_rflags; |
| 231 | kcb->prev_kprobe.saved_rflags = kcb->kprobe_saved_rflags; |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 232 | } |
| 233 | |
Prasanna S Panchamukhi | 3b60211 | 2006-04-18 22:22:00 -0700 | [diff] [blame] | 234 | static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 235 | { |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 236 | __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp; |
| 237 | kcb->kprobe_status = kcb->prev_kprobe.status; |
| 238 | kcb->kprobe_old_rflags = kcb->prev_kprobe.old_rflags; |
| 239 | kcb->kprobe_saved_rflags = kcb->prev_kprobe.saved_rflags; |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 240 | } |
| 241 | |
Prasanna S Panchamukhi | 3b60211 | 2006-04-18 22:22:00 -0700 | [diff] [blame] | 242 | static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs, |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 243 | struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 244 | { |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 245 | __get_cpu_var(current_kprobe) = p; |
| 246 | kcb->kprobe_saved_rflags = kcb->kprobe_old_rflags |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 247 | = (regs->eflags & (TF_MASK | IF_MASK)); |
| 248 | if (is_IF_modifier(p->ainsn.insn)) |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 249 | kcb->kprobe_saved_rflags &= ~IF_MASK; |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 252 | static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
| 254 | regs->eflags |= TF_MASK; |
| 255 | regs->eflags &= ~IF_MASK; |
| 256 | /*single step inline if the instruction is an int3*/ |
| 257 | if (p->opcode == BREAKPOINT_INSTRUCTION) |
| 258 | regs->rip = (unsigned long)p->addr; |
| 259 | else |
| 260 | regs->rip = (unsigned long)p->ainsn.insn; |
| 261 | } |
| 262 | |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 263 | /* Called with kretprobe_lock held */ |
Christoph Hellwig | 4c4308c | 2007-05-08 00:34:14 -0700 | [diff] [blame] | 264 | void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri, |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 265 | struct pt_regs *regs) |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 266 | { |
| 267 | unsigned long *sara = (unsigned long *)regs->rsp; |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 268 | |
Christoph Hellwig | 4c4308c | 2007-05-08 00:34:14 -0700 | [diff] [blame] | 269 | ri->ret_addr = (kprobe_opcode_t *) *sara; |
| 270 | /* Replace the return addr with trampoline addr */ |
| 271 | *sara = (unsigned long) &kretprobe_trampoline; |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 274 | int __kprobes kprobe_handler(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | { |
| 276 | struct kprobe *p; |
| 277 | int ret = 0; |
| 278 | kprobe_opcode_t *addr = (kprobe_opcode_t *)(regs->rip - sizeof(kprobe_opcode_t)); |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 279 | struct kprobe_ctlblk *kcb; |
| 280 | |
| 281 | /* |
| 282 | * We don't want to be preempted for the entire |
| 283 | * duration of kprobe processing |
| 284 | */ |
| 285 | preempt_disable(); |
| 286 | kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | /* Check we're not actually recursing */ |
| 289 | if (kprobe_running()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | p = get_kprobe(addr); |
| 291 | if (p) { |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 292 | if (kcb->kprobe_status == KPROBE_HIT_SS && |
Keshavamurthy Anil S | deac66a | 2005-09-06 15:19:35 -0700 | [diff] [blame] | 293 | *p->ainsn.insn == BREAKPOINT_INSTRUCTION) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | regs->eflags &= ~TF_MASK; |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 295 | regs->eflags |= kcb->kprobe_saved_rflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | goto no_kprobe; |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 297 | } else if (kcb->kprobe_status == KPROBE_HIT_SSDONE) { |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 298 | /* TODO: Provide re-entrancy from |
| 299 | * post_kprobes_handler() and avoid exception |
| 300 | * stack corruption while single-stepping on |
| 301 | * the instruction of the new probe. |
| 302 | */ |
| 303 | arch_disarm_kprobe(p); |
| 304 | regs->rip = (unsigned long)p->addr; |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 305 | reset_current_kprobe(); |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 306 | ret = 1; |
| 307 | } else { |
| 308 | /* We have reentered the kprobe_handler(), since |
| 309 | * another probe was hit while within the |
| 310 | * handler. We here save the original kprobe |
| 311 | * variables and just single step on instruction |
| 312 | * of the new probe without calling any user |
| 313 | * handlers. |
| 314 | */ |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 315 | save_previous_kprobe(kcb); |
| 316 | set_current_kprobe(p, regs, kcb); |
Keshavamurthy Anil S | bf8d5c5 | 2005-12-12 00:37:34 -0800 | [diff] [blame] | 317 | kprobes_inc_nmissed_count(p); |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 318 | prepare_singlestep(p, regs); |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 319 | kcb->kprobe_status = KPROBE_REENTER; |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 320 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } else { |
Keshavamurthy Anil S | eb3a729 | 2006-01-11 12:17:42 -0800 | [diff] [blame] | 323 | if (*addr != BREAKPOINT_INSTRUCTION) { |
| 324 | /* The breakpoint instruction was removed by |
| 325 | * another cpu right after we hit, no further |
| 326 | * handling of this interrupt is appropriate |
| 327 | */ |
| 328 | regs->rip = (unsigned long)addr; |
| 329 | ret = 1; |
| 330 | goto no_kprobe; |
| 331 | } |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 332 | p = __get_cpu_var(current_kprobe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | if (p->break_handler && p->break_handler(p, regs)) { |
| 334 | goto ss_probe; |
| 335 | } |
| 336 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | goto no_kprobe; |
| 338 | } |
| 339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | p = get_kprobe(addr); |
| 341 | if (!p) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | if (*addr != BREAKPOINT_INSTRUCTION) { |
| 343 | /* |
| 344 | * The breakpoint instruction was removed right |
| 345 | * after we hit it. Another cpu has removed |
| 346 | * either a probepoint or a debugger breakpoint |
| 347 | * at this address. In either case, no further |
| 348 | * handling of this interrupt is appropriate. |
Jim Keniston | bce0649 | 2005-09-06 15:19:34 -0700 | [diff] [blame] | 349 | * Back up over the (now missing) int3 and run |
| 350 | * the original instruction. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | */ |
Jim Keniston | bce0649 | 2005-09-06 15:19:34 -0700 | [diff] [blame] | 352 | regs->rip = (unsigned long)addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | ret = 1; |
| 354 | } |
| 355 | /* Not one of ours: let kernel handle it */ |
| 356 | goto no_kprobe; |
| 357 | } |
| 358 | |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 359 | set_current_kprobe(p, regs, kcb); |
| 360 | kcb->kprobe_status = KPROBE_HIT_ACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | if (p->pre_handler && p->pre_handler(p, regs)) |
| 363 | /* handler has already set things up, so skip ss setup */ |
| 364 | return 1; |
| 365 | |
| 366 | ss_probe: |
| 367 | prepare_singlestep(p, regs); |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 368 | kcb->kprobe_status = KPROBE_HIT_SS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | return 1; |
| 370 | |
| 371 | no_kprobe: |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 372 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | return ret; |
| 374 | } |
| 375 | |
| 376 | /* |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 377 | * For function-return probes, init_kprobes() establishes a probepoint |
| 378 | * here. When a retprobed function returns, this probe is hit and |
| 379 | * trampoline_probe_handler() runs, calling the kretprobe's handler. |
| 380 | */ |
| 381 | void kretprobe_trampoline_holder(void) |
| 382 | { |
| 383 | asm volatile ( ".global kretprobe_trampoline\n" |
| 384 | "kretprobe_trampoline: \n" |
| 385 | "nop\n"); |
| 386 | } |
| 387 | |
| 388 | /* |
| 389 | * Called when we hit the probe point at kretprobe_trampoline |
| 390 | */ |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 391 | int __kprobes trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs) |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 392 | { |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 393 | struct kretprobe_instance *ri = NULL; |
bibo,mao | 99219a3 | 2006-10-02 02:17:35 -0700 | [diff] [blame] | 394 | struct hlist_head *head, empty_rp; |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 395 | struct hlist_node *node, *tmp; |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 396 | unsigned long flags, orig_ret_address = 0; |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 397 | unsigned long trampoline_address =(unsigned long)&kretprobe_trampoline; |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 398 | |
bibo,mao | 99219a3 | 2006-10-02 02:17:35 -0700 | [diff] [blame] | 399 | INIT_HLIST_HEAD(&empty_rp); |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 400 | spin_lock_irqsave(&kretprobe_lock, flags); |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 401 | head = kretprobe_inst_table_head(current); |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 402 | |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 403 | /* |
| 404 | * It is possible to have multiple instances associated with a given |
| 405 | * task either because an multiple functions in the call path |
| 406 | * have a return probe installed on them, and/or more then one return |
| 407 | * return probe was registered for a target function. |
| 408 | * |
| 409 | * We can handle this because: |
| 410 | * - instances are always inserted at the head of the list |
| 411 | * - when multiple return probes are registered for the same |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 412 | * function, the first instance's ret_addr will point to the |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 413 | * real return address, and all the rest will point to |
| 414 | * kretprobe_trampoline |
| 415 | */ |
| 416 | hlist_for_each_entry_safe(ri, node, tmp, head, hlist) { |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 417 | if (ri->task != current) |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 418 | /* another task is sharing our hash bucket */ |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 419 | continue; |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 420 | |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 421 | if (ri->rp && ri->rp->handler) |
| 422 | ri->rp->handler(ri, regs); |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 423 | |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 424 | orig_ret_address = (unsigned long)ri->ret_addr; |
bibo,mao | 99219a3 | 2006-10-02 02:17:35 -0700 | [diff] [blame] | 425 | recycle_rp_inst(ri, &empty_rp); |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 426 | |
| 427 | if (orig_ret_address != trampoline_address) |
| 428 | /* |
| 429 | * This is the real return address. Any other |
| 430 | * instances associated with this task are for |
| 431 | * other calls deeper on the call stack |
| 432 | */ |
| 433 | break; |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 434 | } |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 435 | |
Ananth N Mavinakayanahalli | 0f95b7f | 2007-05-08 00:28:27 -0700 | [diff] [blame] | 436 | kretprobe_assert(ri, orig_ret_address, trampoline_address); |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 437 | regs->rip = orig_ret_address; |
| 438 | |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 439 | reset_current_kprobe(); |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 440 | spin_unlock_irqrestore(&kretprobe_lock, flags); |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 441 | preempt_enable_no_resched(); |
| 442 | |
bibo,mao | 99219a3 | 2006-10-02 02:17:35 -0700 | [diff] [blame] | 443 | hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) { |
| 444 | hlist_del(&ri->hlist); |
| 445 | kfree(ri); |
| 446 | } |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 447 | /* |
| 448 | * By returning a non-zero value, we are telling |
| 449 | * kprobe_handler() that we don't want the post_handler |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 450 | * to run (and have re-enabled preemption) |
bibo,mao | 62c27be | 2006-10-02 02:17:33 -0700 | [diff] [blame] | 451 | */ |
| 452 | return 1; |
Rusty Lynch | 73649da | 2005-06-23 00:09:23 -0700 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | * Called after single-stepping. p->addr is the address of the |
| 457 | * instruction whose first byte has been replaced by the "int 3" |
| 458 | * instruction. To avoid the SMP problems that can occur when we |
| 459 | * temporarily put back the original opcode to single-step, we |
| 460 | * single-stepped a copy of the instruction. The address of this |
| 461 | * copy is p->ainsn.insn. |
| 462 | * |
| 463 | * This function prepares to return from the post-single-step |
| 464 | * interrupt. We have to fix up the stack as follows: |
| 465 | * |
| 466 | * 0) Except in the case of absolute or indirect jump or call instructions, |
| 467 | * the new rip is relative to the copied instruction. We need to make |
| 468 | * it relative to the original instruction. |
| 469 | * |
| 470 | * 1) If the single-stepped instruction was pushfl, then the TF and IF |
| 471 | * flags are set in the just-pushed eflags, and may need to be cleared. |
| 472 | * |
| 473 | * 2) If the single-stepped instruction was a call, the return address |
| 474 | * that is atop the stack is the address following the copied instruction. |
| 475 | * We need to make it the address following the original instruction. |
| 476 | */ |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 477 | static void __kprobes resume_execution(struct kprobe *p, |
| 478 | struct pt_regs *regs, struct kprobe_ctlblk *kcb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | { |
| 480 | unsigned long *tos = (unsigned long *)regs->rsp; |
| 481 | unsigned long next_rip = 0; |
| 482 | unsigned long copy_rip = (unsigned long)p->ainsn.insn; |
| 483 | unsigned long orig_rip = (unsigned long)p->addr; |
| 484 | kprobe_opcode_t *insn = p->ainsn.insn; |
| 485 | |
| 486 | /*skip the REX prefix*/ |
| 487 | if (*insn >= 0x40 && *insn <= 0x4f) |
| 488 | insn++; |
| 489 | |
| 490 | switch (*insn) { |
| 491 | case 0x9c: /* pushfl */ |
| 492 | *tos &= ~(TF_MASK | IF_MASK); |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 493 | *tos |= kcb->kprobe_old_rflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | break; |
Prasanna S Panchamukhi | 0b9e2ca | 2005-05-05 16:15:40 -0700 | [diff] [blame] | 495 | case 0xc3: /* ret/lret */ |
| 496 | case 0xcb: |
| 497 | case 0xc2: |
| 498 | case 0xca: |
| 499 | regs->eflags &= ~TF_MASK; |
| 500 | /* rip is already adjusted, no more changes required*/ |
| 501 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | case 0xe8: /* call relative - Fix return addr */ |
| 503 | *tos = orig_rip + (*tos - copy_rip); |
| 504 | break; |
| 505 | case 0xff: |
Satoshi Oshima | dc49e34 | 2006-05-20 15:00:21 -0700 | [diff] [blame] | 506 | if ((insn[1] & 0x30) == 0x10) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | /* call absolute, indirect */ |
| 508 | /* Fix return addr; rip is correct. */ |
| 509 | next_rip = regs->rip; |
| 510 | *tos = orig_rip + (*tos - copy_rip); |
Satoshi Oshima | dc49e34 | 2006-05-20 15:00:21 -0700 | [diff] [blame] | 511 | } else if (((insn[1] & 0x31) == 0x20) || /* jmp near, absolute indirect */ |
| 512 | ((insn[1] & 0x31) == 0x21)) { /* jmp far, absolute indirect */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | /* rip is correct. */ |
| 514 | next_rip = regs->rip; |
| 515 | } |
| 516 | break; |
| 517 | case 0xea: /* jmp absolute -- rip is correct */ |
| 518 | next_rip = regs->rip; |
| 519 | break; |
| 520 | default: |
| 521 | break; |
| 522 | } |
| 523 | |
| 524 | regs->eflags &= ~TF_MASK; |
| 525 | if (next_rip) { |
| 526 | regs->rip = next_rip; |
| 527 | } else { |
| 528 | regs->rip = orig_rip + (regs->rip - copy_rip); |
| 529 | } |
| 530 | } |
| 531 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 532 | int __kprobes post_kprobe_handler(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | { |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 534 | struct kprobe *cur = kprobe_running(); |
| 535 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 536 | |
| 537 | if (!cur) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | return 0; |
| 539 | |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 540 | if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) { |
| 541 | kcb->kprobe_status = KPROBE_HIT_SSDONE; |
| 542 | cur->post_handler(cur, regs, 0); |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 543 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 545 | resume_execution(cur, regs, kcb); |
| 546 | regs->eflags |= kcb->kprobe_saved_rflags; |
Peter Zijlstra | 58dfe88 | 2007-10-11 22:25:25 +0200 | [diff] [blame] | 547 | #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT |
| 548 | if (raw_irqs_disabled_flags(regs->eflags)) |
| 549 | trace_hardirqs_off(); |
| 550 | else |
| 551 | trace_hardirqs_on(); |
| 552 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 554 | /* Restore the original saved kprobes variables and continue. */ |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 555 | if (kcb->kprobe_status == KPROBE_REENTER) { |
| 556 | restore_previous_kprobe(kcb); |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 557 | goto out; |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 558 | } |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 559 | reset_current_kprobe(); |
Prasanna S Panchamukhi | aa3d7e3 | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 560 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | preempt_enable_no_resched(); |
| 562 | |
| 563 | /* |
| 564 | * if somebody else is singlestepping across a probe point, eflags |
| 565 | * will have TF set, in which case, continue the remaining processing |
| 566 | * of do_debug, as if this is not a probe hit. |
| 567 | */ |
| 568 | if (regs->eflags & TF_MASK) |
| 569 | return 0; |
| 570 | |
| 571 | return 1; |
| 572 | } |
| 573 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 574 | int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | { |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 576 | struct kprobe *cur = kprobe_running(); |
| 577 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
Prasanna S Panchamukhi | c28f896 | 2006-03-26 01:38:23 -0800 | [diff] [blame] | 578 | const struct exception_table_entry *fixup; |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 579 | |
Prasanna S Panchamukhi | c28f896 | 2006-03-26 01:38:23 -0800 | [diff] [blame] | 580 | switch(kcb->kprobe_status) { |
| 581 | case KPROBE_HIT_SS: |
| 582 | case KPROBE_REENTER: |
| 583 | /* |
| 584 | * We are here because the instruction being single |
| 585 | * stepped caused a page fault. We reset the current |
| 586 | * kprobe and the rip points back to the probe address |
| 587 | * and allow the page fault handler to continue as a |
| 588 | * normal page fault. |
| 589 | */ |
| 590 | regs->rip = (unsigned long)cur->addr; |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 591 | regs->eflags |= kcb->kprobe_old_rflags; |
Prasanna S Panchamukhi | c28f896 | 2006-03-26 01:38:23 -0800 | [diff] [blame] | 592 | if (kcb->kprobe_status == KPROBE_REENTER) |
| 593 | restore_previous_kprobe(kcb); |
| 594 | else |
| 595 | reset_current_kprobe(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | preempt_enable_no_resched(); |
Prasanna S Panchamukhi | c28f896 | 2006-03-26 01:38:23 -0800 | [diff] [blame] | 597 | break; |
| 598 | case KPROBE_HIT_ACTIVE: |
| 599 | case KPROBE_HIT_SSDONE: |
| 600 | /* |
| 601 | * We increment the nmissed count for accounting, |
| 602 | * we can also use npre/npostfault count for accouting |
| 603 | * these specific fault cases. |
| 604 | */ |
| 605 | kprobes_inc_nmissed_count(cur); |
| 606 | |
| 607 | /* |
| 608 | * We come here because instructions in the pre/post |
| 609 | * handler caused the page_fault, this could happen |
| 610 | * if handler tries to access user space by |
| 611 | * copy_from_user(), get_user() etc. Let the |
| 612 | * user-specified handler try to fix it first. |
| 613 | */ |
| 614 | if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) |
| 615 | return 1; |
| 616 | |
| 617 | /* |
| 618 | * In case the user-specified fault handler returned |
| 619 | * zero, try to fix up. |
| 620 | */ |
| 621 | fixup = search_exception_tables(regs->rip); |
| 622 | if (fixup) { |
| 623 | regs->rip = fixup->fixup; |
| 624 | return 1; |
| 625 | } |
| 626 | |
| 627 | /* |
| 628 | * fixup() could not handle it, |
| 629 | * Let do_page_fault() fix it. |
| 630 | */ |
| 631 | break; |
| 632 | default: |
| 633 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | } |
| 635 | return 0; |
| 636 | } |
| 637 | |
| 638 | /* |
| 639 | * Wrapper routine for handling exceptions. |
| 640 | */ |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 641 | int __kprobes kprobe_exceptions_notify(struct notifier_block *self, |
| 642 | unsigned long val, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | { |
| 644 | struct die_args *args = (struct die_args *)data; |
Ananth N Mavinakayanahalli | 66ff2d0 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 645 | int ret = NOTIFY_DONE; |
| 646 | |
bibo,mao | 2326c77 | 2006-03-26 01:38:21 -0800 | [diff] [blame] | 647 | if (args->regs && user_mode(args->regs)) |
| 648 | return ret; |
| 649 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | switch (val) { |
| 651 | case DIE_INT3: |
| 652 | if (kprobe_handler(args->regs)) |
Ananth N Mavinakayanahalli | 66ff2d0 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 653 | ret = NOTIFY_STOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | break; |
| 655 | case DIE_DEBUG: |
| 656 | if (post_kprobe_handler(args->regs)) |
Ananth N Mavinakayanahalli | 66ff2d0 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 657 | ret = NOTIFY_STOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | break; |
| 659 | case DIE_GPF: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | case DIE_PAGE_FAULT: |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 661 | /* kprobe_running() needs smp_processor_id() */ |
| 662 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | if (kprobe_running() && |
| 664 | kprobe_fault_handler(args->regs, args->trapnr)) |
Ananth N Mavinakayanahalli | 66ff2d0 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 665 | ret = NOTIFY_STOP; |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 666 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | break; |
| 668 | default: |
| 669 | break; |
| 670 | } |
Ananth N Mavinakayanahalli | 66ff2d0 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 671 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | } |
| 673 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 674 | int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | { |
| 676 | struct jprobe *jp = container_of(p, struct jprobe, kp); |
| 677 | unsigned long addr; |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 678 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 680 | kcb->jprobe_saved_regs = *regs; |
| 681 | kcb->jprobe_saved_rsp = (long *) regs->rsp; |
| 682 | addr = (unsigned long)(kcb->jprobe_saved_rsp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | /* |
| 684 | * As Linus pointed out, gcc assumes that the callee |
| 685 | * owns the argument space and could overwrite it, e.g. |
| 686 | * tailcall optimization. So, to be absolutely safe |
| 687 | * we also save and restore enough stack bytes to cover |
| 688 | * the argument area. |
| 689 | */ |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 690 | memcpy(kcb->jprobes_stack, (kprobe_opcode_t *)addr, |
| 691 | MIN_STACK_SIZE(addr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | regs->eflags &= ~IF_MASK; |
Peter Zijlstra | 58dfe88 | 2007-10-11 22:25:25 +0200 | [diff] [blame] | 693 | trace_hardirqs_off(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | regs->rip = (unsigned long)(jp->entry); |
| 695 | return 1; |
| 696 | } |
| 697 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 698 | void __kprobes jprobe_return(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | { |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 700 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 701 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | asm volatile (" xchg %%rbx,%%rsp \n" |
| 703 | " int3 \n" |
| 704 | " .globl jprobe_return_end \n" |
| 705 | " jprobe_return_end: \n" |
| 706 | " nop \n"::"b" |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 707 | (kcb->jprobe_saved_rsp):"memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | } |
| 709 | |
Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 710 | int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | { |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 712 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | u8 *addr = (u8 *) (regs->rip - 1); |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 714 | unsigned long stack_addr = (unsigned long)(kcb->jprobe_saved_rsp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | struct jprobe *jp = container_of(p, struct jprobe, kp); |
| 716 | |
| 717 | if ((addr > (u8 *) jprobe_return) && (addr < (u8 *) jprobe_return_end)) { |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 718 | if ((long *)regs->rsp != kcb->jprobe_saved_rsp) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | struct pt_regs *saved_regs = |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 720 | container_of(kcb->jprobe_saved_rsp, |
| 721 | struct pt_regs, rsp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | printk("current rsp %p does not match saved rsp %p\n", |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 723 | (long *)regs->rsp, kcb->jprobe_saved_rsp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | printk("Saved registers for jprobe %p\n", jp); |
| 725 | show_registers(saved_regs); |
| 726 | printk("Current registers\n"); |
| 727 | show_registers(regs); |
| 728 | BUG(); |
| 729 | } |
Ananth N Mavinakayanahalli | e7a510f | 2005-11-07 01:00:12 -0800 | [diff] [blame] | 730 | *regs = kcb->jprobe_saved_regs; |
| 731 | memcpy((kprobe_opcode_t *) stack_addr, kcb->jprobes_stack, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | MIN_STACK_SIZE(stack_addr)); |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 733 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | return 1; |
| 735 | } |
| 736 | return 0; |
| 737 | } |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 738 | |
| 739 | static struct kprobe trampoline_p = { |
| 740 | .addr = (kprobe_opcode_t *) &kretprobe_trampoline, |
| 741 | .pre_handler = trampoline_probe_handler |
| 742 | }; |
| 743 | |
Rusty Lynch | 6772926 | 2005-07-05 18:54:50 -0700 | [diff] [blame] | 744 | int __init arch_init_kprobes(void) |
Rusty Lynch | ba8af12 | 2005-06-27 15:17:10 -0700 | [diff] [blame] | 745 | { |
| 746 | return register_kprobe(&trampoline_p); |
| 747 | } |
Ananth N Mavinakayanahalli | bf8f6e5 | 2007-05-08 00:34:16 -0700 | [diff] [blame] | 748 | |
| 749 | int __kprobes arch_trampoline_kprobe(struct kprobe *p) |
| 750 | { |
| 751 | if (p->addr == (kprobe_opcode_t *)&kretprobe_trampoline) |
| 752 | return 1; |
| 753 | |
| 754 | return 0; |
| 755 | } |