Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Kernel Probes (KProbes) |
| 3 | * arch/i386/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. |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 26 | * 2005-May Hien Nguyen <hien@us.ibm.com>, Jim Keniston |
| 27 | * <jkenisto@us.ibm.com> and Prasanna S Panchamukhi |
| 28 | * <prasanna@in.ibm.com> added function-return probes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | */ |
| 30 | |
| 31 | #include <linux/config.h> |
| 32 | #include <linux/kprobes.h> |
| 33 | #include <linux/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/preempt.h> |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 35 | #include <asm/cacheflush.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/kdebug.h> |
| 37 | #include <asm/desc.h> |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | void jprobe_return_end(void); |
| 40 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 41 | DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL; |
| 42 | DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk); |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* |
| 45 | * returns non-zero if opcode modifies the interrupt flag. |
| 46 | */ |
| 47 | static inline int is_IF_modifier(kprobe_opcode_t opcode) |
| 48 | { |
| 49 | switch (opcode) { |
| 50 | case 0xfa: /* cli */ |
| 51 | case 0xfb: /* sti */ |
| 52 | case 0xcf: /* iret/iretd */ |
| 53 | case 0x9d: /* popf/popfd */ |
| 54 | return 1; |
| 55 | } |
| 56 | return 0; |
| 57 | } |
| 58 | |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 59 | int __kprobes arch_prepare_kprobe(struct kprobe *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { |
Prasanna S Panchamukhi | 124d90b | 2006-02-24 13:04:08 -0800 | [diff] [blame] | 61 | /* insn: must be on special executable page on i386. */ |
| 62 | p->ainsn.insn = get_insn_slot(); |
| 63 | if (!p->ainsn.insn) |
| 64 | return -ENOMEM; |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | 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] | 67 | p->opcode = *p->addr; |
Anil S Keshavamurthy | 49a2a1b | 2006-01-09 20:52:43 -0800 | [diff] [blame] | 68 | return 0; |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 71 | void __kprobes arch_arm_kprobe(struct kprobe *p) |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 72 | { |
| 73 | *p->addr = BREAKPOINT_INSTRUCTION; |
| 74 | flush_icache_range((unsigned long) p->addr, |
| 75 | (unsigned long) p->addr + sizeof(kprobe_opcode_t)); |
| 76 | } |
| 77 | |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 78 | void __kprobes arch_disarm_kprobe(struct kprobe *p) |
Rusty Lynch | 7e1048b | 2005-06-23 00:09:25 -0700 | [diff] [blame] | 79 | { |
| 80 | *p->addr = p->opcode; |
| 81 | flush_icache_range((unsigned long) p->addr, |
| 82 | (unsigned long) p->addr + sizeof(kprobe_opcode_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Prasanna S Panchamukhi | 124d90b | 2006-02-24 13:04:08 -0800 | [diff] [blame] | 85 | void __kprobes arch_remove_kprobe(struct kprobe *p) |
| 86 | { |
| 87 | down(&kprobe_mutex); |
| 88 | free_insn_slot(p->ainsn.insn); |
| 89 | up(&kprobe_mutex); |
| 90 | } |
| 91 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 92 | static inline void save_previous_kprobe(struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 93 | { |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 94 | kcb->prev_kprobe.kp = kprobe_running(); |
| 95 | kcb->prev_kprobe.status = kcb->kprobe_status; |
| 96 | kcb->prev_kprobe.old_eflags = kcb->kprobe_old_eflags; |
| 97 | kcb->prev_kprobe.saved_eflags = kcb->kprobe_saved_eflags; |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 100 | static inline void restore_previous_kprobe(struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 101 | { |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 102 | __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp; |
| 103 | kcb->kprobe_status = kcb->prev_kprobe.status; |
| 104 | kcb->kprobe_old_eflags = kcb->prev_kprobe.old_eflags; |
| 105 | kcb->kprobe_saved_eflags = kcb->prev_kprobe.saved_eflags; |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 108 | static inline void set_current_kprobe(struct kprobe *p, struct pt_regs *regs, |
| 109 | struct kprobe_ctlblk *kcb) |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 110 | { |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 111 | __get_cpu_var(current_kprobe) = p; |
| 112 | kcb->kprobe_saved_eflags = kcb->kprobe_old_eflags |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 113 | = (regs->eflags & (TF_MASK | IF_MASK)); |
| 114 | if (is_IF_modifier(p->opcode)) |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 115 | kcb->kprobe_saved_eflags &= ~IF_MASK; |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | static inline void prepare_singlestep(struct kprobe *p, struct pt_regs *regs) |
| 119 | { |
| 120 | regs->eflags |= TF_MASK; |
| 121 | regs->eflags &= ~IF_MASK; |
| 122 | /*single step inline if the instruction is an int3*/ |
| 123 | if (p->opcode == BREAKPOINT_INSTRUCTION) |
| 124 | regs->eip = (unsigned long)p->addr; |
| 125 | else |
Prasanna S Panchamukhi | 124d90b | 2006-02-24 13:04:08 -0800 | [diff] [blame] | 126 | regs->eip = (unsigned long)p->ainsn.insn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 129 | /* Called with kretprobe_lock held */ |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 130 | void __kprobes arch_prepare_kretprobe(struct kretprobe *rp, |
| 131 | struct pt_regs *regs) |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 132 | { |
| 133 | unsigned long *sara = (unsigned long *)®s->esp; |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 134 | struct kretprobe_instance *ri; |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 135 | |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 136 | if ((ri = get_free_rp_inst(rp)) != NULL) { |
| 137 | ri->rp = rp; |
| 138 | ri->task = current; |
| 139 | ri->ret_addr = (kprobe_opcode_t *) *sara; |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 140 | |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 141 | /* Replace the return addr with trampoline addr */ |
| 142 | *sara = (unsigned long) &kretprobe_trampoline; |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 143 | |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 144 | add_rp_inst(ri); |
| 145 | } else { |
| 146 | rp->nmissed++; |
| 147 | } |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | /* |
| 151 | * Interrupts are disabled on entry as trap3 is an interrupt gate and they |
| 152 | * remain disabled thorough out this function. |
| 153 | */ |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 154 | static int __kprobes kprobe_handler(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
| 156 | struct kprobe *p; |
| 157 | int ret = 0; |
| 158 | kprobe_opcode_t *addr = NULL; |
| 159 | unsigned long *lp; |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 160 | struct kprobe_ctlblk *kcb; |
| 161 | |
| 162 | /* |
| 163 | * We don't want to be preempted for the entire |
| 164 | * duration of kprobe processing |
| 165 | */ |
| 166 | preempt_disable(); |
| 167 | kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | /* Check if the application is using LDT entry for its code segment and |
| 170 | * calculate the address by reading the base address from the LDT entry. |
| 171 | */ |
| 172 | if ((regs->xcs & 4) && (current->mm)) { |
| 173 | lp = (unsigned long *) ((unsigned long)((regs->xcs >> 3) * 8) |
| 174 | + (char *) current->mm->context.ldt); |
| 175 | addr = (kprobe_opcode_t *) (get_desc_base(lp) + regs->eip - |
| 176 | sizeof(kprobe_opcode_t)); |
| 177 | } else { |
| 178 | addr = (kprobe_opcode_t *)(regs->eip - sizeof(kprobe_opcode_t)); |
| 179 | } |
| 180 | /* Check we're not actually recursing */ |
| 181 | if (kprobe_running()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | p = get_kprobe(addr); |
| 183 | if (p) { |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 184 | if (kcb->kprobe_status == KPROBE_HIT_SS && |
Keshavamurthy Anil S | deac66a | 2005-09-06 15:19:35 -0700 | [diff] [blame] | 185 | *p->ainsn.insn == BREAKPOINT_INSTRUCTION) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | regs->eflags &= ~TF_MASK; |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 187 | regs->eflags |= kcb->kprobe_saved_eflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | goto no_kprobe; |
| 189 | } |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 190 | /* We have reentered the kprobe_handler(), since |
| 191 | * another probe was hit while within the handler. |
| 192 | * We here save the original kprobes variables and |
| 193 | * just single step on the instruction of the new probe |
| 194 | * without calling any user handlers. |
| 195 | */ |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 196 | save_previous_kprobe(kcb); |
| 197 | set_current_kprobe(p, regs, kcb); |
Keshavamurthy Anil S | bf8d5c5 | 2005-12-12 00:37:34 -0800 | [diff] [blame] | 198 | kprobes_inc_nmissed_count(p); |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 199 | prepare_singlestep(p, regs); |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 200 | kcb->kprobe_status = KPROBE_REENTER; |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 201 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | } else { |
Keshavamurthy Anil S | eb3a729 | 2006-01-11 12:17:42 -0800 | [diff] [blame] | 203 | if (regs->eflags & VM_MASK) { |
| 204 | /* We are in virtual-8086 mode. Return 0 */ |
| 205 | goto no_kprobe; |
| 206 | } |
| 207 | if (*addr != BREAKPOINT_INSTRUCTION) { |
| 208 | /* The breakpoint instruction was removed by |
| 209 | * another cpu right after we hit, no further |
| 210 | * handling of this interrupt is appropriate |
| 211 | */ |
| 212 | regs->eip -= sizeof(kprobe_opcode_t); |
| 213 | ret = 1; |
| 214 | goto no_kprobe; |
| 215 | } |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 216 | p = __get_cpu_var(current_kprobe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | if (p->break_handler && p->break_handler(p, regs)) { |
| 218 | goto ss_probe; |
| 219 | } |
| 220 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | goto no_kprobe; |
| 222 | } |
| 223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | p = get_kprobe(addr); |
| 225 | if (!p) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | if (regs->eflags & VM_MASK) { |
| 227 | /* We are in virtual-8086 mode. Return 0 */ |
| 228 | goto no_kprobe; |
| 229 | } |
| 230 | |
| 231 | if (*addr != BREAKPOINT_INSTRUCTION) { |
| 232 | /* |
| 233 | * The breakpoint instruction was removed right |
| 234 | * after we hit it. Another cpu has removed |
| 235 | * either a probepoint or a debugger breakpoint |
| 236 | * at this address. In either case, no further |
| 237 | * handling of this interrupt is appropriate. |
Jim Keniston | bce0649 | 2005-09-06 15:19:34 -0700 | [diff] [blame] | 238 | * Back up over the (now missing) int3 and run |
| 239 | * the original instruction. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | */ |
Jim Keniston | bce0649 | 2005-09-06 15:19:34 -0700 | [diff] [blame] | 241 | regs->eip -= sizeof(kprobe_opcode_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | ret = 1; |
| 243 | } |
| 244 | /* Not one of ours: let kernel handle it */ |
| 245 | goto no_kprobe; |
| 246 | } |
| 247 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 248 | set_current_kprobe(p, regs, kcb); |
| 249 | kcb->kprobe_status = KPROBE_HIT_ACTIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
| 251 | if (p->pre_handler && p->pre_handler(p, regs)) |
| 252 | /* handler has already set things up, so skip ss setup */ |
| 253 | return 1; |
| 254 | |
| 255 | ss_probe: |
| 256 | prepare_singlestep(p, regs); |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 257 | kcb->kprobe_status = KPROBE_HIT_SS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | return 1; |
| 259 | |
| 260 | no_kprobe: |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 261 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | return ret; |
| 263 | } |
| 264 | |
| 265 | /* |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 266 | * For function-return probes, init_kprobes() establishes a probepoint |
| 267 | * here. When a retprobed function returns, this probe is hit and |
| 268 | * trampoline_probe_handler() runs, calling the kretprobe's handler. |
| 269 | */ |
| 270 | void kretprobe_trampoline_holder(void) |
| 271 | { |
| 272 | asm volatile ( ".global kretprobe_trampoline\n" |
| 273 | "kretprobe_trampoline: \n" |
| 274 | "nop\n"); |
| 275 | } |
| 276 | |
| 277 | /* |
| 278 | * Called when we hit the probe point at kretprobe_trampoline |
| 279 | */ |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 280 | int __kprobes trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs) |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 281 | { |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 282 | struct kretprobe_instance *ri = NULL; |
| 283 | struct hlist_head *head; |
| 284 | struct hlist_node *node, *tmp; |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 285 | unsigned long flags, orig_ret_address = 0; |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 286 | unsigned long trampoline_address =(unsigned long)&kretprobe_trampoline; |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 287 | |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 288 | spin_lock_irqsave(&kretprobe_lock, flags); |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 289 | head = kretprobe_inst_table_head(current); |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 290 | |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 291 | /* |
| 292 | * It is possible to have multiple instances associated with a given |
| 293 | * task either because an multiple functions in the call path |
| 294 | * have a return probe installed on them, and/or more then one return |
| 295 | * return probe was registered for a target function. |
| 296 | * |
| 297 | * We can handle this because: |
| 298 | * - instances are always inserted at the head of the list |
| 299 | * - when multiple return probes are registered for the same |
| 300 | * function, the first instance's ret_addr will point to the |
| 301 | * real return address, and all the rest will point to |
| 302 | * kretprobe_trampoline |
| 303 | */ |
| 304 | hlist_for_each_entry_safe(ri, node, tmp, head, hlist) { |
| 305 | if (ri->task != current) |
| 306 | /* another task is sharing our hash bucket */ |
| 307 | continue; |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 308 | |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 309 | if (ri->rp && ri->rp->handler) |
| 310 | ri->rp->handler(ri, regs); |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 311 | |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 312 | orig_ret_address = (unsigned long)ri->ret_addr; |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 313 | recycle_rp_inst(ri); |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 314 | |
| 315 | if (orig_ret_address != trampoline_address) |
| 316 | /* |
| 317 | * This is the real return address. Any other |
| 318 | * instances associated with this task are for |
| 319 | * other calls deeper on the call stack |
| 320 | */ |
| 321 | break; |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 322 | } |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 323 | |
| 324 | BUG_ON(!orig_ret_address || (orig_ret_address == trampoline_address)); |
| 325 | regs->eip = orig_ret_address; |
| 326 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 327 | reset_current_kprobe(); |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 328 | spin_unlock_irqrestore(&kretprobe_lock, flags); |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 329 | preempt_enable_no_resched(); |
| 330 | |
Ananth N Mavinakayanahalli | 66ff2d06 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 331 | /* |
| 332 | * By returning a non-zero value, we are telling |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 333 | * kprobe_handler() that we don't want the post_handler |
| 334 | * to run (and have re-enabled preemption) |
Ananth N Mavinakayanahalli | 66ff2d06 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 335 | */ |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 336 | return 1; |
Hien Nguyen | b94cce9 | 2005-06-23 00:09:19 -0700 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | * Called after single-stepping. p->addr is the address of the |
| 341 | * instruction whose first byte has been replaced by the "int 3" |
| 342 | * instruction. To avoid the SMP problems that can occur when we |
| 343 | * temporarily put back the original opcode to single-step, we |
| 344 | * single-stepped a copy of the instruction. The address of this |
| 345 | * copy is p->ainsn.insn. |
| 346 | * |
| 347 | * This function prepares to return from the post-single-step |
| 348 | * interrupt. We have to fix up the stack as follows: |
| 349 | * |
| 350 | * 0) Except in the case of absolute or indirect jump or call instructions, |
| 351 | * the new eip is relative to the copied instruction. We need to make |
| 352 | * it relative to the original instruction. |
| 353 | * |
| 354 | * 1) If the single-stepped instruction was pushfl, then the TF and IF |
| 355 | * flags are set in the just-pushed eflags, and may need to be cleared. |
| 356 | * |
| 357 | * 2) If the single-stepped instruction was a call, the return address |
| 358 | * that is atop the stack is the address following the copied instruction. |
| 359 | * We need to make it the address following the original instruction. |
| 360 | */ |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 361 | static void __kprobes resume_execution(struct kprobe *p, |
| 362 | struct pt_regs *regs, struct kprobe_ctlblk *kcb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
| 364 | unsigned long *tos = (unsigned long *)®s->esp; |
| 365 | unsigned long next_eip = 0; |
Prasanna S Panchamukhi | 124d90b | 2006-02-24 13:04:08 -0800 | [diff] [blame] | 366 | unsigned long copy_eip = (unsigned long)p->ainsn.insn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | unsigned long orig_eip = (unsigned long)p->addr; |
| 368 | |
| 369 | switch (p->ainsn.insn[0]) { |
| 370 | case 0x9c: /* pushfl */ |
| 371 | *tos &= ~(TF_MASK | IF_MASK); |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 372 | *tos |= kcb->kprobe_old_eflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | break; |
Prasanna S Panchamukhi | 0b9e2ca | 2005-05-05 16:15:40 -0700 | [diff] [blame] | 374 | case 0xc3: /* ret/lret */ |
| 375 | case 0xcb: |
| 376 | case 0xc2: |
| 377 | case 0xca: |
| 378 | regs->eflags &= ~TF_MASK; |
| 379 | /* eip is already adjusted, no more changes required*/ |
| 380 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | case 0xe8: /* call relative - Fix return addr */ |
| 382 | *tos = orig_eip + (*tos - copy_eip); |
| 383 | break; |
| 384 | case 0xff: |
| 385 | if ((p->ainsn.insn[1] & 0x30) == 0x10) { |
| 386 | /* call absolute, indirect */ |
| 387 | /* Fix return addr; eip is correct. */ |
| 388 | next_eip = regs->eip; |
| 389 | *tos = orig_eip + (*tos - copy_eip); |
| 390 | } else if (((p->ainsn.insn[1] & 0x31) == 0x20) || /* jmp near, absolute indirect */ |
| 391 | ((p->ainsn.insn[1] & 0x31) == 0x21)) { /* jmp far, absolute indirect */ |
| 392 | /* eip is correct. */ |
| 393 | next_eip = regs->eip; |
| 394 | } |
| 395 | break; |
| 396 | case 0xea: /* jmp absolute -- eip is correct */ |
| 397 | next_eip = regs->eip; |
| 398 | break; |
| 399 | default: |
| 400 | break; |
| 401 | } |
| 402 | |
| 403 | regs->eflags &= ~TF_MASK; |
| 404 | if (next_eip) { |
| 405 | regs->eip = next_eip; |
| 406 | } else { |
| 407 | regs->eip = orig_eip + (regs->eip - copy_eip); |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | /* |
| 412 | * Interrupts are disabled on entry as trap1 is an interrupt gate and they |
Ananth N Mavinakayanahalli | 991a51d | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 413 | * remain disabled thoroughout this function. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | */ |
| 415 | static inline int post_kprobe_handler(struct pt_regs *regs) |
| 416 | { |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 417 | struct kprobe *cur = kprobe_running(); |
| 418 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 419 | |
| 420 | if (!cur) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | return 0; |
| 422 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 423 | if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) { |
| 424 | kcb->kprobe_status = KPROBE_HIT_SSDONE; |
| 425 | cur->post_handler(cur, regs, 0); |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 426 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 428 | resume_execution(cur, regs, kcb); |
| 429 | regs->eflags |= kcb->kprobe_saved_eflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 431 | /*Restore back the original saved kprobes variables and continue. */ |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 432 | if (kcb->kprobe_status == KPROBE_REENTER) { |
| 433 | restore_previous_kprobe(kcb); |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 434 | goto out; |
| 435 | } |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 436 | reset_current_kprobe(); |
Prasanna S Panchamukhi | 417c8da | 2005-06-23 00:09:37 -0700 | [diff] [blame] | 437 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | preempt_enable_no_resched(); |
| 439 | |
| 440 | /* |
| 441 | * if somebody else is singlestepping across a probe point, eflags |
| 442 | * will have TF set, in which case, continue the remaining processing |
| 443 | * of do_debug, as if this is not a probe hit. |
| 444 | */ |
| 445 | if (regs->eflags & TF_MASK) |
| 446 | return 0; |
| 447 | |
| 448 | return 1; |
| 449 | } |
| 450 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | static inline int kprobe_fault_handler(struct pt_regs *regs, int trapnr) |
| 452 | { |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 453 | struct kprobe *cur = kprobe_running(); |
| 454 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 455 | |
| 456 | if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | return 1; |
| 458 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 459 | if (kcb->kprobe_status & KPROBE_HIT_SS) { |
| 460 | resume_execution(cur, regs, kcb); |
| 461 | regs->eflags |= kcb->kprobe_old_eflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 463 | reset_current_kprobe(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | preempt_enable_no_resched(); |
| 465 | } |
| 466 | return 0; |
| 467 | } |
| 468 | |
| 469 | /* |
| 470 | * Wrapper routine to for handling exceptions. |
| 471 | */ |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 472 | int __kprobes kprobe_exceptions_notify(struct notifier_block *self, |
| 473 | unsigned long val, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | { |
| 475 | struct die_args *args = (struct die_args *)data; |
Ananth N Mavinakayanahalli | 66ff2d06 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 476 | int ret = NOTIFY_DONE; |
| 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | switch (val) { |
| 479 | case DIE_INT3: |
| 480 | if (kprobe_handler(args->regs)) |
Ananth N Mavinakayanahalli | 66ff2d06 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 481 | ret = NOTIFY_STOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | break; |
| 483 | case DIE_DEBUG: |
| 484 | if (post_kprobe_handler(args->regs)) |
Ananth N Mavinakayanahalli | 66ff2d06 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 485 | ret = NOTIFY_STOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | break; |
| 487 | case DIE_GPF: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | case DIE_PAGE_FAULT: |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 489 | /* kprobe_running() needs smp_processor_id() */ |
| 490 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | if (kprobe_running() && |
| 492 | kprobe_fault_handler(args->regs, args->trapnr)) |
Ananth N Mavinakayanahalli | 66ff2d06 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 493 | ret = NOTIFY_STOP; |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 494 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | break; |
| 496 | default: |
| 497 | break; |
| 498 | } |
Ananth N Mavinakayanahalli | 66ff2d06 | 2005-11-07 01:00:07 -0800 | [diff] [blame] | 499 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 502 | int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | { |
| 504 | struct jprobe *jp = container_of(p, struct jprobe, kp); |
| 505 | unsigned long addr; |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 506 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 508 | kcb->jprobe_saved_regs = *regs; |
| 509 | kcb->jprobe_saved_esp = ®s->esp; |
| 510 | addr = (unsigned long)(kcb->jprobe_saved_esp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
| 512 | /* |
| 513 | * TBD: As Linus pointed out, gcc assumes that the callee |
| 514 | * owns the argument space and could overwrite it, e.g. |
| 515 | * tailcall optimization. So, to be absolutely safe |
| 516 | * we also save and restore enough stack bytes to cover |
| 517 | * the argument area. |
| 518 | */ |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 519 | memcpy(kcb->jprobes_stack, (kprobe_opcode_t *)addr, |
| 520 | MIN_STACK_SIZE(addr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | regs->eflags &= ~IF_MASK; |
| 522 | regs->eip = (unsigned long)(jp->entry); |
| 523 | return 1; |
| 524 | } |
| 525 | |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 526 | void __kprobes jprobe_return(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | { |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 528 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
| 529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | asm volatile (" xchgl %%ebx,%%esp \n" |
| 531 | " int3 \n" |
| 532 | " .globl jprobe_return_end \n" |
| 533 | " jprobe_return_end: \n" |
| 534 | " nop \n"::"b" |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 535 | (kcb->jprobe_saved_esp):"memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | } |
| 537 | |
Prasanna S Panchamukhi | 3d97ae5 | 2005-09-06 15:19:27 -0700 | [diff] [blame] | 538 | int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 540 | struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | u8 *addr = (u8 *) (regs->eip - 1); |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 542 | unsigned long stack_addr = (unsigned long)(kcb->jprobe_saved_esp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | struct jprobe *jp = container_of(p, struct jprobe, kp); |
| 544 | |
| 545 | if ((addr > (u8 *) jprobe_return) && (addr < (u8 *) jprobe_return_end)) { |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 546 | if (®s->esp != kcb->jprobe_saved_esp) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | struct pt_regs *saved_regs = |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 548 | container_of(kcb->jprobe_saved_esp, |
| 549 | struct pt_regs, esp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | printk("current esp %p does not match saved esp %p\n", |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 551 | ®s->esp, kcb->jprobe_saved_esp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | printk("Saved registers for jprobe %p\n", jp); |
| 553 | show_registers(saved_regs); |
| 554 | printk("Current registers\n"); |
| 555 | show_registers(regs); |
| 556 | BUG(); |
| 557 | } |
Ananth N Mavinakayanahalli | 9a0e3a8 | 2005-11-07 01:00:08 -0800 | [diff] [blame] | 558 | *regs = kcb->jprobe_saved_regs; |
| 559 | memcpy((kprobe_opcode_t *) stack_addr, kcb->jprobes_stack, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | MIN_STACK_SIZE(stack_addr)); |
Ananth N Mavinakayanahalli | d217d54 | 2005-11-07 01:00:14 -0800 | [diff] [blame] | 561 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | return 1; |
| 563 | } |
| 564 | return 0; |
| 565 | } |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 566 | |
| 567 | static struct kprobe trampoline_p = { |
| 568 | .addr = (kprobe_opcode_t *) &kretprobe_trampoline, |
| 569 | .pre_handler = trampoline_probe_handler |
| 570 | }; |
| 571 | |
Rusty Lynch | 6772926 | 2005-07-05 18:54:50 -0700 | [diff] [blame] | 572 | int __init arch_init_kprobes(void) |
Rusty Lynch | 4bdbd37 | 2005-06-27 15:17:09 -0700 | [diff] [blame] | 573 | { |
| 574 | return register_kprobe(&trampoline_p); |
| 575 | } |