blob: aa15f3e1f64b365c06f3b520a59b627c6a4d228a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Kernel Probes (KProbes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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.
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010025 * 2004-Oct Jim Keniston <jkenisto@us.ibm.com> and Prasanna S Panchamukhi
26 * <prasanna@in.ibm.com> adapted for x86_64 from i386.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * 2005-Mar Roland McGrath <roland@redhat.com>
28 * Fixed to handle %rip-relative addressing mode correctly.
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010029 * 2005-May Hien Nguyen <hien@us.ibm.com>, Jim Keniston
30 * <jkenisto@us.ibm.com> and Prasanna S Panchamukhi
31 * <prasanna@in.ibm.com> added function-return probes.
32 * 2005-May Rusty Lynch <rusty.lynch@intel.com>
33 * Added function return probes functionality
34 * 2006-Feb Masami Hiramatsu <hiramatu@sdl.hitachi.co.jp> added
35 * kprobe-booster and kretprobe-booster for i386.
Masami Hiramatsuda07ab02008-01-30 13:31:21 +010036 * 2007-Dec Masami Hiramatsu <mhiramat@redhat.com> added kprobe-booster
37 * and kretprobe-booster for x86-64
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010038 * 2007-Dec Masami Hiramatsu <mhiramat@redhat.com>, Arjan van de Ven
39 * <arjan@infradead.org> and Jim Keniston <jkenisto@us.ibm.com>
40 * unified x86 kprobes code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/kprobes.h>
44#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/string.h>
46#include <linux/slab.h>
Quentin Barnesb506a9d2008-01-30 13:32:32 +010047#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/preempt.h>
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -080049#include <linux/module.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070050#include <linux/kdebug.h>
Masami Hiramatsub46b3d72009-08-13 16:34:28 -040051#include <linux/kallsyms.h>
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070052
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010053#include <asm/cacheflush.h>
54#include <asm/desc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/pgtable.h>
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -080056#include <asm/uaccess.h>
Andi Kleen19d36cc2007-07-22 11:12:31 +020057#include <asm/alternative.h>
Masami Hiramatsub46b3d72009-08-13 16:34:28 -040058#include <asm/insn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060void jprobe_return_end(void);
61
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -080062DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
63DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010065#ifdef CONFIG_X86_64
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010066#define stack_addr(regs) ((unsigned long *)regs->sp)
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010067#else
68/*
69 * "&regs->sp" looks wrong, but it's correct for x86_32. x86_32 CPUs
70 * don't save the ss and esp registers if the CPU is already in kernel
71 * mode when it traps. So for kprobes, regs->sp and regs->ss are not
72 * the [nonexistent] saved stack pointer and ss register, but rather
73 * the top 8 bytes of the pre-int3 stack. So &regs->sp happens to
74 * point to the top of the pre-int3 stack.
75 */
76#define stack_addr(regs) ((unsigned long *)&regs->sp)
77#endif
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010078
79#define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\
80 (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \
81 (b4##UL << 0x4)|(b5##UL << 0x5)|(b6##UL << 0x6)|(b7##UL << 0x7) | \
82 (b8##UL << 0x8)|(b9##UL << 0x9)|(ba##UL << 0xa)|(bb##UL << 0xb) | \
83 (bc##UL << 0xc)|(bd##UL << 0xd)|(be##UL << 0xe)|(bf##UL << 0xf)) \
84 << (row % 32))
85 /*
86 * Undefined/reserved opcodes, conditional jump, Opcode Extension
87 * Groups, and some special opcodes can not boost.
88 */
89static const u32 twobyte_is_boostable[256 / 32] = {
90 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
91 /* ---------------------------------------------- */
92 W(0x00, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0) | /* 00 */
93 W(0x10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 10 */
94 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 20 */
95 W(0x30, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 30 */
96 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 40 */
97 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */
98 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1) | /* 60 */
99 W(0x70, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) , /* 70 */
100 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 80 */
101 W(0x90, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 90 */
102 W(0xa0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* a0 */
103 W(0xb0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1) , /* b0 */
104 W(0xc0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* c0 */
105 W(0xd0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) , /* d0 */
106 W(0xe0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* e0 */
107 W(0xf0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0) /* f0 */
108 /* ----------------------------------------------- */
109 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
110};
111static const u32 onebyte_has_modrm[256 / 32] = {
112 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
113 /* ----------------------------------------------- */
114 W(0x00, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) | /* 00 */
115 W(0x10, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) , /* 10 */
116 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) | /* 20 */
117 W(0x30, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) , /* 30 */
118 W(0x40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 40 */
119 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */
120 W(0x60, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0) | /* 60 */
121 W(0x70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 70 */
122 W(0x80, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 80 */
123 W(0x90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 90 */
124 W(0xa0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* a0 */
125 W(0xb0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* b0 */
126 W(0xc0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0) | /* c0 */
127 W(0xd0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1) , /* d0 */
128 W(0xe0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* e0 */
129 W(0xf0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) /* f0 */
130 /* ----------------------------------------------- */
131 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
132};
133static const u32 twobyte_has_modrm[256 / 32] = {
134 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
135 /* ----------------------------------------------- */
136 W(0x00, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1) | /* 0f */
137 W(0x10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0) , /* 1f */
138 W(0x20, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* 2f */
139 W(0x30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 3f */
140 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 4f */
141 W(0x50, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 5f */
142 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 6f */
143 W(0x70, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1) , /* 7f */
144 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 8f */
145 W(0x90, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 9f */
146 W(0xa0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1) | /* af */
147 W(0xb0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1) , /* bf */
148 W(0xc0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0) | /* cf */
149 W(0xd0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* df */
150 W(0xe0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* ef */
151 W(0xf0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0) /* ff */
152 /* ----------------------------------------------- */
153 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
154};
155#undef W
156
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700157struct kretprobe_blackpoint kretprobe_blacklist[] = {
158 {"__switch_to", }, /* This function switches only current task, but
159 doesn't switch kernel stack.*/
160 {NULL, NULL} /* Terminator */
161};
162const int kretprobe_blacklist_size = ARRAY_SIZE(kretprobe_blacklist);
163
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100164/* Insert a jump instruction at address 'from', which jumps to address 'to'.*/
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100165static void __kprobes set_jmp_op(void *from, void *to)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100166{
167 struct __arch_jmp_op {
168 char op;
169 s32 raddr;
170 } __attribute__((packed)) * jop;
171 jop = (struct __arch_jmp_op *)from;
172 jop->raddr = (s32)((long)(to) - ((long)(from) + 5));
173 jop->op = RELATIVEJUMP_INSTRUCTION;
174}
175
176/*
Harvey Harrison99309272008-01-30 13:32:14 +0100177 * Check for the REX prefix which can only exist on X86_64
178 * X86_32 always returns 0
179 */
180static int __kprobes is_REX_prefix(kprobe_opcode_t *insn)
181{
182#ifdef CONFIG_X86_64
183 if ((*insn & 0xf0) == 0x40)
184 return 1;
185#endif
186 return 0;
187}
188
189/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100190 * Returns non-zero if opcode is boostable.
191 * RIP relative instructions are adjusted at copying time in 64 bits mode
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100192 */
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100193static int __kprobes can_boost(kprobe_opcode_t *opcodes)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100194{
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100195 kprobe_opcode_t opcode;
196 kprobe_opcode_t *orig_opcodes = opcodes;
197
Jaswinder Singh Rajputcde5edb2009-03-18 17:37:45 +0530198 if (search_exception_tables((unsigned long)opcodes))
Masami Hiramatsu30390882009-03-16 18:57:22 -0400199 return 0; /* Page fault may occur on this address. */
200
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100201retry:
202 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
203 return 0;
204 opcode = *(opcodes++);
205
206 /* 2nd-byte opcode */
207 if (opcode == 0x0f) {
208 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
209 return 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100210 return test_bit(*opcodes,
211 (unsigned long *)twobyte_is_boostable);
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100212 }
213
214 switch (opcode & 0xf0) {
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100215#ifdef CONFIG_X86_64
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100216 case 0x40:
217 goto retry; /* REX prefix is boostable */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100218#endif
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100219 case 0x60:
220 if (0x63 < opcode && opcode < 0x67)
221 goto retry; /* prefixes */
222 /* can't boost Address-size override and bound */
223 return (opcode != 0x62 && opcode != 0x67);
224 case 0x70:
225 return 0; /* can't boost conditional jump */
226 case 0xc0:
227 /* can't boost software-interruptions */
228 return (0xc1 < opcode && opcode < 0xcc) || opcode == 0xcf;
229 case 0xd0:
230 /* can boost AA* and XLAT */
231 return (opcode == 0xd4 || opcode == 0xd5 || opcode == 0xd7);
232 case 0xe0:
233 /* can boost in/out and absolute jmps */
234 return ((opcode & 0x04) || opcode == 0xea);
235 case 0xf0:
236 if ((opcode & 0x0c) == 0 && opcode != 0xf1)
237 goto retry; /* lock/rep(ne) prefix */
238 /* clear and set flags are boostable */
239 return (opcode == 0xf5 || (0xf7 < opcode && opcode < 0xfe));
240 default:
241 /* segment override prefixes are boostable */
242 if (opcode == 0x26 || opcode == 0x36 || opcode == 0x3e)
243 goto retry; /* prefixes */
244 /* CS override prefix and call are not boostable */
245 return (opcode != 0x2e && opcode != 0x9a);
246 }
247}
248
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400249/* Recover the probed instruction at addr for further analysis. */
250static int recover_probed_instruction(kprobe_opcode_t *buf, unsigned long addr)
251{
252 struct kprobe *kp;
253 kp = get_kprobe((void *)addr);
254 if (!kp)
255 return -EINVAL;
256
257 /*
258 * Basically, kp->ainsn.insn has an original instruction.
259 * However, RIP-relative instruction can not do single-stepping
260 * at different place, fix_riprel() tweaks the displacement of
261 * that instruction. In that case, we can't recover the instruction
262 * from the kp->ainsn.insn.
263 *
264 * On the other hand, kp->opcode has a copy of the first byte of
265 * the probed instruction, which is overwritten by int3. And
266 * the instruction at kp->addr is not modified by kprobes except
267 * for the first byte, we can recover the original instruction
268 * from it and kp->opcode.
269 */
270 memcpy(buf, kp->addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
271 buf[0] = kp->opcode;
272 return 0;
273}
274
275/* Dummy buffers for kallsyms_lookup */
276static char __dummy_buf[KSYM_NAME_LEN];
277
278/* Check if paddr is at an instruction boundary */
279static int __kprobes can_probe(unsigned long paddr)
280{
281 int ret;
282 unsigned long addr, offset = 0;
283 struct insn insn;
284 kprobe_opcode_t buf[MAX_INSN_SIZE];
285
286 if (!kallsyms_lookup(paddr, NULL, &offset, NULL, __dummy_buf))
287 return 0;
288
289 /* Decode instructions */
290 addr = paddr - offset;
291 while (addr < paddr) {
292 kernel_insn_init(&insn, (void *)addr);
293 insn_get_opcode(&insn);
294
295 /*
296 * Check if the instruction has been modified by another
297 * kprobe, in which case we replace the breakpoint by the
298 * original instruction in our buffer.
299 */
300 if (insn.opcode.bytes[0] == BREAKPOINT_INSTRUCTION) {
301 ret = recover_probed_instruction(buf, addr);
302 if (ret)
303 /*
304 * Another debugging subsystem might insert
305 * this breakpoint. In that case, we can't
306 * recover it.
307 */
308 return 0;
309 kernel_insn_init(&insn, buf);
310 }
311 insn_get_length(&insn);
312 addr += insn.length;
313 }
314
315 return (addr == paddr);
316}
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100319 * Returns non-zero if opcode modifies the interrupt flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 */
Andrew Morton86454192007-11-26 20:42:19 +0100321static int __kprobes is_IF_modifier(kprobe_opcode_t *insn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 switch (*insn) {
324 case 0xfa: /* cli */
325 case 0xfb: /* sti */
326 case 0xcf: /* iret/iretd */
327 case 0x9d: /* popf/popfd */
328 return 1;
329 }
Harvey Harrison99309272008-01-30 13:32:14 +0100330
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100331 /*
Harvey Harrison99309272008-01-30 13:32:14 +0100332 * on X86_64, 0x40-0x4f are REX prefixes so we need to look
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100333 * at the next byte instead.. but of course not recurse infinitely
334 */
Harvey Harrison99309272008-01-30 13:32:14 +0100335 if (is_REX_prefix(insn))
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100336 return is_IF_modifier(++insn);
Harvey Harrison99309272008-01-30 13:32:14 +0100337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return 0;
339}
340
341/*
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100342 * Adjust the displacement if the instruction uses the %rip-relative
343 * addressing mode.
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100344 * If it does, Return the address of the 32-bit displacement word.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * If not, return null.
Harvey Harrison31f80e42008-01-30 13:32:16 +0100346 * Only applicable to 64-bit x86.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100348static void __kprobes fix_riprel(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Harvey Harrison31f80e42008-01-30 13:32:16 +0100350#ifdef CONFIG_X86_64
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100351 u8 *insn = p->ainsn.insn;
352 s64 disp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 int need_modrm;
354
355 /* Skip legacy instruction prefixes. */
356 while (1) {
357 switch (*insn) {
358 case 0x66:
359 case 0x67:
360 case 0x2e:
361 case 0x3e:
362 case 0x26:
363 case 0x64:
364 case 0x65:
365 case 0x36:
366 case 0xf0:
367 case 0xf3:
368 case 0xf2:
369 ++insn;
370 continue;
371 }
372 break;
373 }
374
375 /* Skip REX instruction prefix. */
Harvey Harrison99309272008-01-30 13:32:14 +0100376 if (is_REX_prefix(insn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 ++insn;
378
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100379 if (*insn == 0x0f) {
380 /* Two-byte opcode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 ++insn;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100382 need_modrm = test_bit(*insn,
383 (unsigned long *)twobyte_has_modrm);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100384 } else
385 /* One-byte opcode. */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100386 need_modrm = test_bit(*insn,
387 (unsigned long *)onebyte_has_modrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 if (need_modrm) {
390 u8 modrm = *++insn;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100391 if ((modrm & 0xc7) == 0x05) {
392 /* %rip+disp32 addressing mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /* Displacement follows ModRM byte. */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100394 ++insn;
395 /*
396 * The copied instruction uses the %rip-relative
397 * addressing mode. Adjust the displacement for the
398 * difference between the original location of this
399 * instruction and the location of the copy that will
400 * actually be run. The tricky bit here is making sure
401 * that the sign extension happens correctly in this
402 * calculation, since we need a signed 32-bit result to
403 * be sign-extended to 64 bits when it's added to the
404 * %rip value and yield the same 64-bit result that the
405 * sign-extension of the original signed 32-bit
406 * displacement would have given.
407 */
408 disp = (u8 *) p->addr + *((s32 *) insn) -
409 (u8 *) p->ainsn.insn;
410 BUG_ON((s64) (s32) disp != disp); /* Sanity check. */
411 *(s32 *)insn = (s32) disp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 }
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100414#endif
Harvey Harrison31f80e42008-01-30 13:32:16 +0100415}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800417static void __kprobes arch_copy_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100419 memcpy(p->ainsn.insn, p->addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
Harvey Harrison31f80e42008-01-30 13:32:16 +0100420
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100421 fix_riprel(p);
Harvey Harrison31f80e42008-01-30 13:32:16 +0100422
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100423 if (can_boost(p->addr))
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100424 p->ainsn.boostable = 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100425 else
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100426 p->ainsn.boostable = -1;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100427
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700428 p->opcode = *p->addr;
429}
430
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100431int __kprobes arch_prepare_kprobe(struct kprobe *p)
432{
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400433 if (!can_probe((unsigned long)p->addr))
434 return -EILSEQ;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100435 /* insn: must be on special executable page on x86. */
436 p->ainsn.insn = get_insn_slot();
437 if (!p->ainsn.insn)
438 return -ENOMEM;
439 arch_copy_kprobe(p);
440 return 0;
441}
442
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700443void __kprobes arch_arm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700444{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200445 text_poke(p->addr, ((unsigned char []){BREAKPOINT_INSTRUCTION}), 1);
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700446}
447
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700448void __kprobes arch_disarm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700449{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200450 text_poke(p->addr, &p->opcode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -0800453void __kprobes arch_remove_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Masami Hiramatsu12941562009-01-06 14:41:50 -0800455 if (p->ainsn.insn) {
456 free_insn_slot(p->ainsn.insn, (p->ainsn.boostable == 1));
457 p->ainsn.insn = NULL;
458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700461static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700462{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800463 kcb->prev_kprobe.kp = kprobe_running();
464 kcb->prev_kprobe.status = kcb->kprobe_status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100465 kcb->prev_kprobe.old_flags = kcb->kprobe_old_flags;
466 kcb->prev_kprobe.saved_flags = kcb->kprobe_saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700467}
468
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700469static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700470{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800471 __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp;
472 kcb->kprobe_status = kcb->prev_kprobe.status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100473 kcb->kprobe_old_flags = kcb->prev_kprobe.old_flags;
474 kcb->kprobe_saved_flags = kcb->prev_kprobe.saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700475}
476
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700477static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs,
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800478 struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700479{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800480 __get_cpu_var(current_kprobe) = p;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100481 kcb->kprobe_saved_flags = kcb->kprobe_old_flags
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100482 = (regs->flags & (X86_EFLAGS_TF | X86_EFLAGS_IF));
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700483 if (is_IF_modifier(p->ainsn.insn))
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100484 kcb->kprobe_saved_flags &= ~X86_EFLAGS_IF;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700485}
486
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100487static void __kprobes clear_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100488{
489 if (test_thread_flag(TIF_DEBUGCTLMSR))
Jan Beulich5b0e5082008-03-10 13:11:17 +0000490 update_debugctlmsr(0);
Roland McGrath1ecc7982008-01-30 13:30:54 +0100491}
492
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100493static void __kprobes restore_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100494{
495 if (test_thread_flag(TIF_DEBUGCTLMSR))
Jan Beulich5b0e5082008-03-10 13:11:17 +0000496 update_debugctlmsr(current->thread.debugctlmsr);
Roland McGrath1ecc7982008-01-30 13:30:54 +0100497}
498
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700499static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Roland McGrath1ecc7982008-01-30 13:30:54 +0100501 clear_btf();
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100502 regs->flags |= X86_EFLAGS_TF;
503 regs->flags &= ~X86_EFLAGS_IF;
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100504 /* single step inline if the instruction is an int3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (p->opcode == BREAKPOINT_INSTRUCTION)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100506 regs->ip = (unsigned long)p->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 else
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100508 regs->ip = (unsigned long)p->ainsn.insn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700511void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700512 struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700513{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100514 unsigned long *sara = stack_addr(regs);
Rusty Lynch73649da2005-06-23 00:09:23 -0700515
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700516 ri->ret_addr = (kprobe_opcode_t *) *sara;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100517
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700518 /* Replace the return addr with trampoline addr */
519 *sara = (unsigned long) &kretprobe_trampoline;
Rusty Lynch73649da2005-06-23 00:09:23 -0700520}
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100521
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100522static void __kprobes setup_singlestep(struct kprobe *p, struct pt_regs *regs,
523 struct kprobe_ctlblk *kcb)
524{
Masami Hiramatsu5a4ccaf2009-01-06 21:15:32 +0100525#if !defined(CONFIG_PREEMPT) || defined(CONFIG_FREEZER)
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100526 if (p->ainsn.boostable == 1 && !p->post_handler) {
527 /* Boost up -- we can execute copied instructions directly */
528 reset_current_kprobe();
529 regs->ip = (unsigned long)p->ainsn.insn;
530 preempt_enable_no_resched();
531 return;
532 }
533#endif
534 prepare_singlestep(p, regs);
535 kcb->kprobe_status = KPROBE_HIT_SS;
536}
537
Harvey Harrison40102d42008-01-30 13:32:02 +0100538/*
539 * We have reentered the kprobe_handler(), since another probe was hit while
540 * within the handler. We save the original kprobes variables and just single
541 * step on the instruction of the new probe without calling any user handlers.
542 */
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100543static int __kprobes reenter_kprobe(struct kprobe *p, struct pt_regs *regs,
544 struct kprobe_ctlblk *kcb)
Harvey Harrison40102d42008-01-30 13:32:02 +0100545{
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100546 switch (kcb->kprobe_status) {
547 case KPROBE_HIT_SSDONE:
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100548#ifdef CONFIG_X86_64
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100549 /* TODO: Provide re-entrancy from post_kprobes_handler() and
550 * avoid exception stack corruption while single-stepping on
551 * the instruction of the new probe.
552 */
553 arch_disarm_kprobe(p);
554 regs->ip = (unsigned long)p->addr;
555 reset_current_kprobe();
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100556 preempt_enable_no_resched();
557 break;
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100558#endif
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100559 case KPROBE_HIT_ACTIVE:
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100560 save_previous_kprobe(kcb);
561 set_current_kprobe(p, regs, kcb);
562 kprobes_inc_nmissed_count(p);
563 prepare_singlestep(p, regs);
564 kcb->kprobe_status = KPROBE_REENTER;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100565 break;
566 case KPROBE_HIT_SS:
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100567 if (p == kprobe_running()) {
gorcunov@gmail.coma5c15d42008-03-28 17:56:56 +0300568 regs->flags &= ~X86_EFLAGS_TF;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100569 regs->flags |= kcb->kprobe_saved_flags;
570 return 0;
571 } else {
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100572 /* A probe has been hit in the codepath leading up
573 * to, or just after, single-stepping of a probed
574 * instruction. This entire codepath should strictly
575 * reside in .kprobes.text section. Raise a warning
576 * to highlight this peculiar case.
577 */
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100578 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100579 default:
580 /* impossible cases */
581 WARN_ON(1);
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100582 return 0;
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100583 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100584
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100585 return 1;
Harvey Harrison40102d42008-01-30 13:32:02 +0100586}
Rusty Lynch73649da2005-06-23 00:09:23 -0700587
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100588/*
589 * Interrupts are disabled on entry as trap3 is an interrupt gate and they
590 * remain disabled thorough out this function.
591 */
592static int __kprobes kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100594 kprobe_opcode_t *addr;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100595 struct kprobe *p;
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800596 struct kprobe_ctlblk *kcb;
597
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100598 addr = (kprobe_opcode_t *)(regs->ip - sizeof(kprobe_opcode_t));
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100599 if (*addr != BREAKPOINT_INSTRUCTION) {
600 /*
601 * The breakpoint instruction was removed right
602 * after we hit it. Another cpu has removed
603 * either a probepoint or a debugger breakpoint
604 * at this address. In either case, no further
605 * handling of this interrupt is appropriate.
606 * Back up over the (now missing) int3 and run
607 * the original instruction.
608 */
609 regs->ip = (unsigned long)addr;
610 return 1;
611 }
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100612
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800613 /*
614 * We don't want to be preempted for the entire
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100615 * duration of kprobe processing. We conditionally
616 * re-enable preemption at the end of this function,
617 * and also in reenter_kprobe() and setup_singlestep().
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800618 */
619 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100621 kcb = get_kprobe_ctlblk();
Harvey Harrisonb9760152008-01-30 13:32:19 +0100622 p = get_kprobe(addr);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100623
Harvey Harrisonb9760152008-01-30 13:32:19 +0100624 if (p) {
Harvey Harrisonb9760152008-01-30 13:32:19 +0100625 if (kprobe_running()) {
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100626 if (reenter_kprobe(p, regs, kcb))
627 return 1;
Harvey Harrisonb9760152008-01-30 13:32:19 +0100628 } else {
629 set_current_kprobe(p, regs, kcb);
630 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100633 * If we have no pre-handler or it returned 0, we
634 * continue with normal processing. If we have a
635 * pre-handler and it returned non-zero, it prepped
636 * for calling the break_handler below on re-entry
637 * for jprobe processing, so get out doing nothing
638 * more here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100640 if (!p->pre_handler || !p->pre_handler(p, regs))
641 setup_singlestep(p, regs, kcb);
642 return 1;
Harvey Harrisonb9760152008-01-30 13:32:19 +0100643 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100644 } else if (kprobe_running()) {
645 p = __get_cpu_var(current_kprobe);
646 if (p->break_handler && p->break_handler(p, regs)) {
647 setup_singlestep(p, regs, kcb);
648 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100650 } /* else: not a kprobe fault; let the kernel handle it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800652 preempt_enable_no_resched();
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100653 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
656/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100657 * When a retprobed function returns, this code saves registers and
658 * calls trampoline_handler() runs, which calls the kretprobe's handler.
Rusty Lynch73649da2005-06-23 00:09:23 -0700659 */
Harvey Harrisonf1452d42008-02-14 15:23:53 -0800660static void __used __kprobes kretprobe_trampoline_holder(void)
Harvey Harrison10175792008-01-30 13:33:01 +0100661{
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100662 asm volatile (
663 ".global kretprobe_trampoline\n"
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100664 "kretprobe_trampoline: \n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100665#ifdef CONFIG_X86_64
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100666 /* We don't bother saving the ss register */
667 " pushq %rsp\n"
668 " pushfq\n"
669 /*
670 * Skip cs, ip, orig_ax.
671 * trampoline_handler() will plug in these values
672 */
673 " subq $24, %rsp\n"
674 " pushq %rdi\n"
675 " pushq %rsi\n"
676 " pushq %rdx\n"
677 " pushq %rcx\n"
678 " pushq %rax\n"
679 " pushq %r8\n"
680 " pushq %r9\n"
681 " pushq %r10\n"
682 " pushq %r11\n"
683 " pushq %rbx\n"
684 " pushq %rbp\n"
685 " pushq %r12\n"
686 " pushq %r13\n"
687 " pushq %r14\n"
688 " pushq %r15\n"
689 " movq %rsp, %rdi\n"
690 " call trampoline_handler\n"
691 /* Replace saved sp with true return address. */
692 " movq %rax, 152(%rsp)\n"
693 " popq %r15\n"
694 " popq %r14\n"
695 " popq %r13\n"
696 " popq %r12\n"
697 " popq %rbp\n"
698 " popq %rbx\n"
699 " popq %r11\n"
700 " popq %r10\n"
701 " popq %r9\n"
702 " popq %r8\n"
703 " popq %rax\n"
704 " popq %rcx\n"
705 " popq %rdx\n"
706 " popq %rsi\n"
707 " popq %rdi\n"
708 /* Skip orig_ax, ip, cs */
709 " addq $24, %rsp\n"
710 " popfq\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100711#else
712 " pushf\n"
713 /*
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400714 * Skip cs, ip, orig_ax and gs.
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100715 * trampoline_handler() will plug in these values
716 */
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400717 " subl $16, %esp\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100718 " pushl %fs\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100719 " pushl %es\n"
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400720 " pushl %ds\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100721 " pushl %eax\n"
722 " pushl %ebp\n"
723 " pushl %edi\n"
724 " pushl %esi\n"
725 " pushl %edx\n"
726 " pushl %ecx\n"
727 " pushl %ebx\n"
728 " movl %esp, %eax\n"
729 " call trampoline_handler\n"
730 /* Move flags to cs */
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400731 " movl 56(%esp), %edx\n"
732 " movl %edx, 52(%esp)\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100733 /* Replace saved flags with true return address. */
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400734 " movl %eax, 56(%esp)\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100735 " popl %ebx\n"
736 " popl %ecx\n"
737 " popl %edx\n"
738 " popl %esi\n"
739 " popl %edi\n"
740 " popl %ebp\n"
741 " popl %eax\n"
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400742 /* Skip ds, es, fs, gs, orig_ax and ip */
743 " addl $24, %esp\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100744 " popf\n"
745#endif
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100746 " ret\n");
Harvey Harrison10175792008-01-30 13:33:01 +0100747}
Rusty Lynch73649da2005-06-23 00:09:23 -0700748
749/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100750 * Called from kretprobe_trampoline
Rusty Lynch73649da2005-06-23 00:09:23 -0700751 */
Harvey Harrisonf1452d42008-02-14 15:23:53 -0800752static __used __kprobes void *trampoline_handler(struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700753{
bibo,mao62c27be2006-10-02 02:17:33 -0700754 struct kretprobe_instance *ri = NULL;
bibo,mao99219a32006-10-02 02:17:35 -0700755 struct hlist_head *head, empty_rp;
bibo,mao62c27be2006-10-02 02:17:33 -0700756 struct hlist_node *node, *tmp;
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800757 unsigned long flags, orig_ret_address = 0;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100758 unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline;
Rusty Lynch73649da2005-06-23 00:09:23 -0700759
bibo,mao99219a32006-10-02 02:17:35 -0700760 INIT_HLIST_HEAD(&empty_rp);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700761 kretprobe_hash_lock(current, &head, &flags);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100762 /* fixup registers */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100763#ifdef CONFIG_X86_64
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100764 regs->cs = __KERNEL_CS;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100765#else
766 regs->cs = __KERNEL_CS | get_kernel_rpl();
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400767 regs->gs = 0;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100768#endif
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100769 regs->ip = trampoline_address;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100770 regs->orig_ax = ~0UL;
Rusty Lynch73649da2005-06-23 00:09:23 -0700771
Rusty Lynchba8af122005-06-27 15:17:10 -0700772 /*
773 * It is possible to have multiple instances associated with a given
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100774 * task either because multiple functions in the call path have
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200775 * return probes installed on them, and/or more than one
Rusty Lynchba8af122005-06-27 15:17:10 -0700776 * return probe was registered for a target function.
777 *
778 * We can handle this because:
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100779 * - instances are always pushed into the head of the list
Rusty Lynchba8af122005-06-27 15:17:10 -0700780 * - when multiple return probes are registered for the same
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100781 * function, the (chronologically) first instance's ret_addr
782 * will be the real return address, and all the rest will
783 * point to kretprobe_trampoline.
Rusty Lynchba8af122005-06-27 15:17:10 -0700784 */
785 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
bibo,mao62c27be2006-10-02 02:17:33 -0700786 if (ri->task != current)
Rusty Lynchba8af122005-06-27 15:17:10 -0700787 /* another task is sharing our hash bucket */
bibo,mao62c27be2006-10-02 02:17:33 -0700788 continue;
Rusty Lynch73649da2005-06-23 00:09:23 -0700789
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100790 if (ri->rp && ri->rp->handler) {
791 __get_cpu_var(current_kprobe) = &ri->rp->kp;
792 get_kprobe_ctlblk()->kprobe_status = KPROBE_HIT_ACTIVE;
Rusty Lynchba8af122005-06-27 15:17:10 -0700793 ri->rp->handler(ri, regs);
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100794 __get_cpu_var(current_kprobe) = NULL;
795 }
Rusty Lynch73649da2005-06-23 00:09:23 -0700796
Rusty Lynchba8af122005-06-27 15:17:10 -0700797 orig_ret_address = (unsigned long)ri->ret_addr;
bibo,mao99219a32006-10-02 02:17:35 -0700798 recycle_rp_inst(ri, &empty_rp);
Rusty Lynchba8af122005-06-27 15:17:10 -0700799
800 if (orig_ret_address != trampoline_address)
801 /*
802 * This is the real return address. Any other
803 * instances associated with this task are for
804 * other calls deeper on the call stack
805 */
806 break;
Rusty Lynch73649da2005-06-23 00:09:23 -0700807 }
Rusty Lynchba8af122005-06-27 15:17:10 -0700808
Ananth N Mavinakayanahalli0f95b7f2007-05-08 00:28:27 -0700809 kretprobe_assert(ri, orig_ret_address, trampoline_address);
Rusty Lynchba8af122005-06-27 15:17:10 -0700810
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700811 kretprobe_hash_unlock(current, &flags);
Rusty Lynchba8af122005-06-27 15:17:10 -0700812
bibo,mao99219a32006-10-02 02:17:35 -0700813 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
814 hlist_del(&ri->hlist);
815 kfree(ri);
816 }
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100817 return (void *)orig_ret_address;
Rusty Lynch73649da2005-06-23 00:09:23 -0700818}
819
820/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 * Called after single-stepping. p->addr is the address of the
822 * instruction whose first byte has been replaced by the "int 3"
823 * instruction. To avoid the SMP problems that can occur when we
824 * temporarily put back the original opcode to single-step, we
825 * single-stepped a copy of the instruction. The address of this
826 * copy is p->ainsn.insn.
827 *
828 * This function prepares to return from the post-single-step
829 * interrupt. We have to fix up the stack as follows:
830 *
831 * 0) Except in the case of absolute or indirect jump or call instructions,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100832 * the new ip is relative to the copied instruction. We need to make
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 * it relative to the original instruction.
834 *
835 * 1) If the single-stepped instruction was pushfl, then the TF and IF
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100836 * flags are set in the just-pushed flags, and may need to be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 *
838 * 2) If the single-stepped instruction was a call, the return address
839 * that is atop the stack is the address following the copied instruction.
840 * We need to make it the address following the original instruction.
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100841 *
842 * If this is the first time we've single-stepped the instruction at
843 * this probepoint, and the instruction is boostable, boost it: add a
844 * jump instruction after the copied instruction, that jumps to the next
845 * instruction after the probepoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800847static void __kprobes resume_execution(struct kprobe *p,
848 struct pt_regs *regs, struct kprobe_ctlblk *kcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100850 unsigned long *tos = stack_addr(regs);
851 unsigned long copy_ip = (unsigned long)p->ainsn.insn;
852 unsigned long orig_ip = (unsigned long)p->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 kprobe_opcode_t *insn = p->ainsn.insn;
854
855 /*skip the REX prefix*/
Harvey Harrison99309272008-01-30 13:32:14 +0100856 if (is_REX_prefix(insn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 insn++;
858
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100859 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 switch (*insn) {
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100861 case 0x9c: /* pushfl */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100862 *tos &= ~(X86_EFLAGS_TF | X86_EFLAGS_IF);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100863 *tos |= kcb->kprobe_old_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 break;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100865 case 0xc2: /* iret/ret/lret */
866 case 0xc3:
Prasanna S Panchamukhi0b9e2ca2005-05-05 16:15:40 -0700867 case 0xca:
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100868 case 0xcb:
869 case 0xcf:
870 case 0xea: /* jmp absolute -- ip is correct */
871 /* ip is already adjusted, no more changes required */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100872 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100873 goto no_change;
874 case 0xe8: /* call relative - Fix return addr */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100875 *tos = orig_ip + (*tos - copy_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 break;
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100877#ifdef CONFIG_X86_32
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100878 case 0x9a: /* call absolute -- same as call absolute, indirect */
879 *tos = orig_ip + (*tos - copy_ip);
880 goto no_change;
881#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 case 0xff:
Satoshi Oshimadc49e342006-05-20 15:00:21 -0700883 if ((insn[1] & 0x30) == 0x10) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100884 /*
885 * call absolute, indirect
886 * Fix return addr; ip is correct.
887 * But this is not boostable
888 */
889 *tos = orig_ip + (*tos - copy_ip);
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100890 goto no_change;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100891 } else if (((insn[1] & 0x31) == 0x20) ||
892 ((insn[1] & 0x31) == 0x21)) {
893 /*
894 * jmp near and far, absolute indirect
895 * ip is correct. And this is boostable
896 */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100897 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100898 goto no_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 default:
901 break;
902 }
903
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100904 if (p->ainsn.boostable == 0) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100905 if ((regs->ip > copy_ip) &&
906 (regs->ip - copy_ip) + 5 < MAX_INSN_SIZE) {
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100907 /*
908 * These instructions can be executed directly if it
909 * jumps back to correct address.
910 */
911 set_jmp_op((void *)regs->ip,
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100912 (void *)orig_ip + (regs->ip - copy_ip));
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100913 p->ainsn.boostable = 1;
914 } else {
915 p->ainsn.boostable = -1;
916 }
917 }
918
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100919 regs->ip += orig_ip - copy_ip;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100920
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100921no_change:
Roland McGrath1ecc7982008-01-30 13:30:54 +0100922 restore_btf();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100925/*
926 * Interrupts are disabled on entry as trap1 is an interrupt gate and they
927 * remain disabled thoroughout this function.
928 */
929static int __kprobes post_kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800931 struct kprobe *cur = kprobe_running();
932 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
933
934 if (!cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
936
Yakov Lerneracb5b8a2008-03-16 03:21:21 -0500937 resume_execution(cur, regs, kcb);
938 regs->flags |= kcb->kprobe_saved_flags;
Yakov Lerneracb5b8a2008-03-16 03:21:21 -0500939
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800940 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
941 kcb->kprobe_status = KPROBE_HIT_SSDONE;
942 cur->post_handler(cur, regs, 0);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100945 /* Restore back the original saved kprobes variables and continue. */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800946 if (kcb->kprobe_status == KPROBE_REENTER) {
947 restore_previous_kprobe(kcb);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700948 goto out;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700949 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800950 reset_current_kprobe();
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700951out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 preempt_enable_no_resched();
953
954 /*
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100955 * if somebody else is singlestepping across a probe point, flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 * will have TF set, in which case, continue the remaining processing
957 * of do_debug, as if this is not a probe hit.
958 */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100959 if (regs->flags & X86_EFLAGS_TF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return 0;
961
962 return 1;
963}
964
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700965int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800967 struct kprobe *cur = kprobe_running();
968 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
969
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100970 switch (kcb->kprobe_status) {
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800971 case KPROBE_HIT_SS:
972 case KPROBE_REENTER:
973 /*
974 * We are here because the instruction being single
975 * stepped caused a page fault. We reset the current
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100976 * kprobe and the ip points back to the probe address
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800977 * and allow the page fault handler to continue as a
978 * normal page fault.
979 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100980 regs->ip = (unsigned long)cur->addr;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100981 regs->flags |= kcb->kprobe_old_flags;
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800982 if (kcb->kprobe_status == KPROBE_REENTER)
983 restore_previous_kprobe(kcb);
984 else
985 reset_current_kprobe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 preempt_enable_no_resched();
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800987 break;
988 case KPROBE_HIT_ACTIVE:
989 case KPROBE_HIT_SSDONE:
990 /*
991 * We increment the nmissed count for accounting,
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100992 * we can also use npre/npostfault count for accounting
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800993 * these specific fault cases.
994 */
995 kprobes_inc_nmissed_count(cur);
996
997 /*
998 * We come here because instructions in the pre/post
999 * handler caused the page_fault, this could happen
1000 * if handler tries to access user space by
1001 * copy_from_user(), get_user() etc. Let the
1002 * user-specified handler try to fix it first.
1003 */
1004 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr))
1005 return 1;
1006
1007 /*
1008 * In case the user-specified fault handler returned
1009 * zero, try to fix up.
1010 */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001011 if (fixup_exception(regs))
1012 return 1;
Harvey Harrison6d485832008-01-30 13:31:41 +01001013
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -08001014 /*
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001015 * fixup routine could not handle it,
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -08001016 * Let do_page_fault() fix it.
1017 */
1018 break;
1019 default:
1020 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022 return 0;
1023}
1024
1025/*
1026 * Wrapper routine for handling exceptions.
1027 */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -07001028int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
1029 unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Jan Engelhardtade1af72008-01-30 13:33:23 +01001031 struct die_args *args = data;
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -08001032 int ret = NOTIFY_DONE;
1033
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001034 if (args->regs && user_mode_vm(args->regs))
bibo,mao2326c772006-03-26 01:38:21 -08001035 return ret;
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 switch (val) {
1038 case DIE_INT3:
1039 if (kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -08001040 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 break;
1042 case DIE_DEBUG:
1043 if (post_kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -08001044 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 break;
1046 case DIE_GPF:
Quentin Barnesb506a9d2008-01-30 13:32:32 +01001047 /*
1048 * To be potentially processing a kprobe fault and to
1049 * trust the result from kprobe_running(), we have
1050 * be non-preemptible.
1051 */
1052 if (!preemptible() && kprobe_running() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 kprobe_fault_handler(args->regs, args->trapnr))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -08001054 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 break;
1056 default:
1057 break;
1058 }
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -08001059 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -07001062int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
1064 struct jprobe *jp = container_of(p, struct jprobe, kp);
1065 unsigned long addr;
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001066 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001068 kcb->jprobe_saved_regs = *regs;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001069 kcb->jprobe_saved_sp = stack_addr(regs);
1070 addr = (unsigned long)(kcb->jprobe_saved_sp);
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 /*
1073 * As Linus pointed out, gcc assumes that the callee
1074 * owns the argument space and could overwrite it, e.g.
1075 * tailcall optimization. So, to be absolutely safe
1076 * we also save and restore enough stack bytes to cover
1077 * the argument area.
1078 */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001079 memcpy(kcb->jprobes_stack, (kprobe_opcode_t *)addr,
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001080 MIN_STACK_SIZE(addr));
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001081 regs->flags &= ~X86_EFLAGS_IF;
Peter Zijlstra58dfe882007-10-11 22:25:25 +02001082 trace_hardirqs_off();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001083 regs->ip = (unsigned long)(jp->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return 1;
1085}
1086
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -07001087void __kprobes jprobe_return(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001089 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
1090
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001091 asm volatile (
1092#ifdef CONFIG_X86_64
1093 " xchg %%rbx,%%rsp \n"
1094#else
1095 " xchgl %%ebx,%%esp \n"
1096#endif
1097 " int3 \n"
1098 " .globl jprobe_return_end\n"
1099 " jprobe_return_end: \n"
1100 " nop \n"::"b"
1101 (kcb->jprobe_saved_sp):"memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -07001104int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001106 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001107 u8 *addr = (u8 *) (regs->ip - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 struct jprobe *jp = container_of(p, struct jprobe, kp);
1109
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001110 if ((addr > (u8 *) jprobe_return) &&
1111 (addr < (u8 *) jprobe_return_end)) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001112 if (stack_addr(regs) != kcb->jprobe_saved_sp) {
Masami Hiramatsu29b6cd72007-12-18 18:05:58 +01001113 struct pt_regs *saved_regs = &kcb->jprobe_saved_regs;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001114 printk(KERN_ERR
1115 "current sp %p does not match saved sp %p\n",
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001116 stack_addr(regs), kcb->jprobe_saved_sp);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001117 printk(KERN_ERR "Saved registers for jprobe %p\n", jp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 show_registers(saved_regs);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001119 printk(KERN_ERR "Current registers\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 show_registers(regs);
1121 BUG();
1122 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001123 *regs = kcb->jprobe_saved_regs;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001124 memcpy((kprobe_opcode_t *)(kcb->jprobe_saved_sp),
1125 kcb->jprobes_stack,
1126 MIN_STACK_SIZE(kcb->jprobe_saved_sp));
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -08001127 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return 1;
1129 }
1130 return 0;
1131}
Rusty Lynchba8af122005-06-27 15:17:10 -07001132
Rusty Lynch67729262005-07-05 18:54:50 -07001133int __init arch_init_kprobes(void)
Rusty Lynchba8af122005-06-27 15:17:10 -07001134{
Masami Hiramatsuda07ab02008-01-30 13:31:21 +01001135 return 0;
Rusty Lynchba8af122005-06-27 15:17:10 -07001136}
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001137
1138int __kprobes arch_trampoline_kprobe(struct kprobe *p)
1139{
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001140 return 0;
1141}