blob: b1804e40235d85273051e5d48a3b5ea80f4ee7ea [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>
47#include <linux/preempt.h>
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -080048#include <linux/module.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070049#include <linux/kdebug.h>
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070050
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010051#include <asm/cacheflush.h>
52#include <asm/desc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/pgtable.h>
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -080054#include <asm/uaccess.h>
Andi Kleen19d36cc2007-07-22 11:12:31 +020055#include <asm/alternative.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057void jprobe_return_end(void);
58
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -080059DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
60DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010062#ifdef CONFIG_X86_64
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010063#define stack_addr(regs) ((unsigned long *)regs->sp)
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010064#else
65/*
66 * "&regs->sp" looks wrong, but it's correct for x86_32. x86_32 CPUs
67 * don't save the ss and esp registers if the CPU is already in kernel
68 * mode when it traps. So for kprobes, regs->sp and regs->ss are not
69 * the [nonexistent] saved stack pointer and ss register, but rather
70 * the top 8 bytes of the pre-int3 stack. So &regs->sp happens to
71 * point to the top of the pre-int3 stack.
72 */
73#define stack_addr(regs) ((unsigned long *)&regs->sp)
74#endif
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010075
76#define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\
77 (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \
78 (b4##UL << 0x4)|(b5##UL << 0x5)|(b6##UL << 0x6)|(b7##UL << 0x7) | \
79 (b8##UL << 0x8)|(b9##UL << 0x9)|(ba##UL << 0xa)|(bb##UL << 0xb) | \
80 (bc##UL << 0xc)|(bd##UL << 0xd)|(be##UL << 0xe)|(bf##UL << 0xf)) \
81 << (row % 32))
82 /*
83 * Undefined/reserved opcodes, conditional jump, Opcode Extension
84 * Groups, and some special opcodes can not boost.
85 */
86static const u32 twobyte_is_boostable[256 / 32] = {
87 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
88 /* ---------------------------------------------- */
89 W(0x00, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0) | /* 00 */
90 W(0x10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 10 */
91 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 20 */
92 W(0x30, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 30 */
93 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 40 */
94 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */
95 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1) | /* 60 */
96 W(0x70, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) , /* 70 */
97 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 80 */
98 W(0x90, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 90 */
99 W(0xa0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* a0 */
100 W(0xb0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1) , /* b0 */
101 W(0xc0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* c0 */
102 W(0xd0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) , /* d0 */
103 W(0xe0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* e0 */
104 W(0xf0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0) /* f0 */
105 /* ----------------------------------------------- */
106 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
107};
108static const u32 onebyte_has_modrm[256 / 32] = {
109 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
110 /* ----------------------------------------------- */
111 W(0x00, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) | /* 00 */
112 W(0x10, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) , /* 10 */
113 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) | /* 20 */
114 W(0x30, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) , /* 30 */
115 W(0x40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 40 */
116 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */
117 W(0x60, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0) | /* 60 */
118 W(0x70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 70 */
119 W(0x80, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 80 */
120 W(0x90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 90 */
121 W(0xa0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* a0 */
122 W(0xb0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* b0 */
123 W(0xc0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0) | /* c0 */
124 W(0xd0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1) , /* d0 */
125 W(0xe0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* e0 */
126 W(0xf0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) /* f0 */
127 /* ----------------------------------------------- */
128 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
129};
130static const u32 twobyte_has_modrm[256 / 32] = {
131 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
132 /* ----------------------------------------------- */
133 W(0x00, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1) | /* 0f */
134 W(0x10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0) , /* 1f */
135 W(0x20, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* 2f */
136 W(0x30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 3f */
137 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 4f */
138 W(0x50, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 5f */
139 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 6f */
140 W(0x70, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1) , /* 7f */
141 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 8f */
142 W(0x90, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 9f */
143 W(0xa0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1) | /* af */
144 W(0xb0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1) , /* bf */
145 W(0xc0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0) | /* cf */
146 W(0xd0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* df */
147 W(0xe0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* ef */
148 W(0xf0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0) /* ff */
149 /* ----------------------------------------------- */
150 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
151};
152#undef W
153
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700154struct kretprobe_blackpoint kretprobe_blacklist[] = {
155 {"__switch_to", }, /* This function switches only current task, but
156 doesn't switch kernel stack.*/
157 {NULL, NULL} /* Terminator */
158};
159const int kretprobe_blacklist_size = ARRAY_SIZE(kretprobe_blacklist);
160
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100161/* Insert a jump instruction at address 'from', which jumps to address 'to'.*/
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100162static void __kprobes set_jmp_op(void *from, void *to)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100163{
164 struct __arch_jmp_op {
165 char op;
166 s32 raddr;
167 } __attribute__((packed)) * jop;
168 jop = (struct __arch_jmp_op *)from;
169 jop->raddr = (s32)((long)(to) - ((long)(from) + 5));
170 jop->op = RELATIVEJUMP_INSTRUCTION;
171}
172
173/*
Harvey Harrison99309272008-01-30 13:32:14 +0100174 * Check for the REX prefix which can only exist on X86_64
175 * X86_32 always returns 0
176 */
177static int __kprobes is_REX_prefix(kprobe_opcode_t *insn)
178{
179#ifdef CONFIG_X86_64
180 if ((*insn & 0xf0) == 0x40)
181 return 1;
182#endif
183 return 0;
184}
185
186/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100187 * Returns non-zero if opcode is boostable.
188 * RIP relative instructions are adjusted at copying time in 64 bits mode
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100189 */
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100190static int __kprobes can_boost(kprobe_opcode_t *opcodes)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100191{
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100192 kprobe_opcode_t opcode;
193 kprobe_opcode_t *orig_opcodes = opcodes;
194
195retry:
196 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
197 return 0;
198 opcode = *(opcodes++);
199
200 /* 2nd-byte opcode */
201 if (opcode == 0x0f) {
202 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
203 return 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100204 return test_bit(*opcodes,
205 (unsigned long *)twobyte_is_boostable);
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100206 }
207
208 switch (opcode & 0xf0) {
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100209#ifdef CONFIG_X86_64
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100210 case 0x40:
211 goto retry; /* REX prefix is boostable */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100212#endif
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100213 case 0x60:
214 if (0x63 < opcode && opcode < 0x67)
215 goto retry; /* prefixes */
216 /* can't boost Address-size override and bound */
217 return (opcode != 0x62 && opcode != 0x67);
218 case 0x70:
219 return 0; /* can't boost conditional jump */
220 case 0xc0:
221 /* can't boost software-interruptions */
222 return (0xc1 < opcode && opcode < 0xcc) || opcode == 0xcf;
223 case 0xd0:
224 /* can boost AA* and XLAT */
225 return (opcode == 0xd4 || opcode == 0xd5 || opcode == 0xd7);
226 case 0xe0:
227 /* can boost in/out and absolute jmps */
228 return ((opcode & 0x04) || opcode == 0xea);
229 case 0xf0:
230 if ((opcode & 0x0c) == 0 && opcode != 0xf1)
231 goto retry; /* lock/rep(ne) prefix */
232 /* clear and set flags are boostable */
233 return (opcode == 0xf5 || (0xf7 < opcode && opcode < 0xfe));
234 default:
235 /* segment override prefixes are boostable */
236 if (opcode == 0x26 || opcode == 0x36 || opcode == 0x3e)
237 goto retry; /* prefixes */
238 /* CS override prefix and call are not boostable */
239 return (opcode != 0x2e && opcode != 0x9a);
240 }
241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100244 * Returns non-zero if opcode modifies the interrupt flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 */
Andrew Morton86454192007-11-26 20:42:19 +0100246static int __kprobes is_IF_modifier(kprobe_opcode_t *insn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 switch (*insn) {
249 case 0xfa: /* cli */
250 case 0xfb: /* sti */
251 case 0xcf: /* iret/iretd */
252 case 0x9d: /* popf/popfd */
253 return 1;
254 }
Harvey Harrison99309272008-01-30 13:32:14 +0100255
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100256 /*
Harvey Harrison99309272008-01-30 13:32:14 +0100257 * on X86_64, 0x40-0x4f are REX prefixes so we need to look
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100258 * at the next byte instead.. but of course not recurse infinitely
259 */
Harvey Harrison99309272008-01-30 13:32:14 +0100260 if (is_REX_prefix(insn))
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100261 return is_IF_modifier(++insn);
Harvey Harrison99309272008-01-30 13:32:14 +0100262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return 0;
264}
265
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100266#ifdef CONFIG_X86_64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/*
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100268 * Adjust the displacement if the instruction uses the %rip-relative
269 * addressing mode.
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100270 * If it does, Return the address of the 32-bit displacement word.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 * If not, return null.
272 */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100273static void __kprobes fix_riprel(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100275 u8 *insn = p->ainsn.insn;
276 s64 disp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 int need_modrm;
278
279 /* Skip legacy instruction prefixes. */
280 while (1) {
281 switch (*insn) {
282 case 0x66:
283 case 0x67:
284 case 0x2e:
285 case 0x3e:
286 case 0x26:
287 case 0x64:
288 case 0x65:
289 case 0x36:
290 case 0xf0:
291 case 0xf3:
292 case 0xf2:
293 ++insn;
294 continue;
295 }
296 break;
297 }
298
299 /* Skip REX instruction prefix. */
Harvey Harrison99309272008-01-30 13:32:14 +0100300 if (is_REX_prefix(insn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 ++insn;
302
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100303 if (*insn == 0x0f) {
304 /* Two-byte opcode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 ++insn;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100306 need_modrm = test_bit(*insn,
307 (unsigned long *)twobyte_has_modrm);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100308 } else
309 /* One-byte opcode. */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100310 need_modrm = test_bit(*insn,
311 (unsigned long *)onebyte_has_modrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 if (need_modrm) {
314 u8 modrm = *++insn;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100315 if ((modrm & 0xc7) == 0x05) {
316 /* %rip+disp32 addressing mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* Displacement follows ModRM byte. */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100318 ++insn;
319 /*
320 * The copied instruction uses the %rip-relative
321 * addressing mode. Adjust the displacement for the
322 * difference between the original location of this
323 * instruction and the location of the copy that will
324 * actually be run. The tricky bit here is making sure
325 * that the sign extension happens correctly in this
326 * calculation, since we need a signed 32-bit result to
327 * be sign-extended to 64 bits when it's added to the
328 * %rip value and yield the same 64-bit result that the
329 * sign-extension of the original signed 32-bit
330 * displacement would have given.
331 */
332 disp = (u8 *) p->addr + *((s32 *) insn) -
333 (u8 *) p->ainsn.insn;
334 BUG_ON((s64) (s32) disp != disp); /* Sanity check. */
335 *(s32 *)insn = (s32) disp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100339#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800341static void __kprobes arch_copy_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100343 memcpy(p->ainsn.insn, p->addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100344#ifdef CONFIG_X86_64
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100345 fix_riprel(p);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100346#endif
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100347 if (can_boost(p->addr))
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100348 p->ainsn.boostable = 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100349 else
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100350 p->ainsn.boostable = -1;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100351
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700352 p->opcode = *p->addr;
353}
354
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100355int __kprobes arch_prepare_kprobe(struct kprobe *p)
356{
357 /* insn: must be on special executable page on x86. */
358 p->ainsn.insn = get_insn_slot();
359 if (!p->ainsn.insn)
360 return -ENOMEM;
361 arch_copy_kprobe(p);
362 return 0;
363}
364
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700365void __kprobes arch_arm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700366{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200367 text_poke(p->addr, ((unsigned char []){BREAKPOINT_INSTRUCTION}), 1);
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700368}
369
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700370void __kprobes arch_disarm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700371{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200372 text_poke(p->addr, &p->opcode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -0800375void __kprobes arch_remove_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800377 mutex_lock(&kprobe_mutex);
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100378 free_insn_slot(p->ainsn.insn, (p->ainsn.boostable == 1));
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800379 mutex_unlock(&kprobe_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700382static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700383{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800384 kcb->prev_kprobe.kp = kprobe_running();
385 kcb->prev_kprobe.status = kcb->kprobe_status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100386 kcb->prev_kprobe.old_flags = kcb->kprobe_old_flags;
387 kcb->prev_kprobe.saved_flags = kcb->kprobe_saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700388}
389
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700390static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700391{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800392 __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp;
393 kcb->kprobe_status = kcb->prev_kprobe.status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100394 kcb->kprobe_old_flags = kcb->prev_kprobe.old_flags;
395 kcb->kprobe_saved_flags = kcb->prev_kprobe.saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700396}
397
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700398static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs,
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800399 struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700400{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800401 __get_cpu_var(current_kprobe) = p;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100402 kcb->kprobe_saved_flags = kcb->kprobe_old_flags
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100403 = (regs->flags & (X86_EFLAGS_TF | X86_EFLAGS_IF));
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700404 if (is_IF_modifier(p->ainsn.insn))
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100405 kcb->kprobe_saved_flags &= ~X86_EFLAGS_IF;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700406}
407
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100408static void __kprobes clear_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100409{
410 if (test_thread_flag(TIF_DEBUGCTLMSR))
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100411 wrmsr(MSR_IA32_DEBUGCTLMSR, 0, 0);
Roland McGrath1ecc7982008-01-30 13:30:54 +0100412}
413
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100414static void __kprobes restore_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100415{
416 if (test_thread_flag(TIF_DEBUGCTLMSR))
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100417 wrmsr(MSR_IA32_DEBUGCTLMSR, current->thread.debugctlmsr, 0);
Roland McGrath1ecc7982008-01-30 13:30:54 +0100418}
419
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700420static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Roland McGrath1ecc7982008-01-30 13:30:54 +0100422 clear_btf();
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100423 regs->flags |= X86_EFLAGS_TF;
424 regs->flags &= ~X86_EFLAGS_IF;
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100425 /* single step inline if the instruction is an int3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (p->opcode == BREAKPOINT_INSTRUCTION)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100427 regs->ip = (unsigned long)p->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 else
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100429 regs->ip = (unsigned long)p->ainsn.insn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800432/* Called with kretprobe_lock held */
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700433void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700434 struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700435{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100436 unsigned long *sara = stack_addr(regs);
Rusty Lynch73649da2005-06-23 00:09:23 -0700437
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700438 ri->ret_addr = (kprobe_opcode_t *) *sara;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100439
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700440 /* Replace the return addr with trampoline addr */
441 *sara = (unsigned long) &kretprobe_trampoline;
Rusty Lynch73649da2005-06-23 00:09:23 -0700442}
Harvey Harrison40102d42008-01-30 13:32:02 +0100443/*
444 * We have reentered the kprobe_handler(), since another probe was hit while
445 * within the handler. We save the original kprobes variables and just single
446 * step on the instruction of the new probe without calling any user handlers.
447 */
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100448static int __kprobes reenter_kprobe(struct kprobe *p, struct pt_regs *regs,
449 struct kprobe_ctlblk *kcb)
Harvey Harrison40102d42008-01-30 13:32:02 +0100450{
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100451 if (kcb->kprobe_status == KPROBE_HIT_SS &&
452 *p->ainsn.insn == BREAKPOINT_INSTRUCTION) {
453 regs->flags &= ~X86_EFLAGS_TF;
454 regs->flags |= kcb->kprobe_saved_flags;
455 return 0;
456#ifdef CONFIG_X86_64
457 } else if (kcb->kprobe_status == KPROBE_HIT_SSDONE) {
458 /* TODO: Provide re-entrancy from post_kprobes_handler() and
459 * avoid exception stack corruption while single-stepping on
460 * the instruction of the new probe.
461 */
462 arch_disarm_kprobe(p);
463 regs->ip = (unsigned long)p->addr;
464 reset_current_kprobe();
465 return 1;
466#endif
467 }
Harvey Harrison40102d42008-01-30 13:32:02 +0100468 save_previous_kprobe(kcb);
469 set_current_kprobe(p, regs, kcb);
470 kprobes_inc_nmissed_count(p);
471 prepare_singlestep(p, regs);
472 kcb->kprobe_status = KPROBE_REENTER;
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100473 return 1;
Harvey Harrison40102d42008-01-30 13:32:02 +0100474}
Rusty Lynch73649da2005-06-23 00:09:23 -0700475
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100476/*
477 * Interrupts are disabled on entry as trap3 is an interrupt gate and they
478 * remain disabled thorough out this function.
479 */
480static int __kprobes kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 struct kprobe *p;
483 int ret = 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100484 kprobe_opcode_t *addr;
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800485 struct kprobe_ctlblk *kcb;
486
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100487 addr = (kprobe_opcode_t *)(regs->ip - sizeof(kprobe_opcode_t));
488
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800489 /*
490 * We don't want to be preempted for the entire
491 * duration of kprobe processing
492 */
493 preempt_disable();
494 kcb = get_kprobe_ctlblk();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /* Check we're not actually recursing */
497 if (kprobe_running()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 p = get_kprobe(addr);
499 if (p) {
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100500 ret = reenter_kprobe(p, regs, kcb);
501 if (kcb->kprobe_status == KPROBE_REENTER)
502 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 } else {
Keshavamurthy Anil Seb3a7292006-01-11 12:17:42 -0800504 if (*addr != BREAKPOINT_INSTRUCTION) {
505 /* The breakpoint instruction was removed by
506 * another cpu right after we hit, no further
507 * handling of this interrupt is appropriate
508 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100509 regs->ip = (unsigned long)addr;
Keshavamurthy Anil Seb3a7292006-01-11 12:17:42 -0800510 ret = 1;
511 goto no_kprobe;
512 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800513 p = __get_cpu_var(current_kprobe);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100514 if (p->break_handler && p->break_handler(p, regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 goto ss_probe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto no_kprobe;
518 }
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 p = get_kprobe(addr);
521 if (!p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (*addr != BREAKPOINT_INSTRUCTION) {
523 /*
524 * The breakpoint instruction was removed right
525 * after we hit it. Another cpu has removed
526 * either a probepoint or a debugger breakpoint
527 * at this address. In either case, no further
528 * handling of this interrupt is appropriate.
Jim Kenistonbce06492005-09-06 15:19:34 -0700529 * Back up over the (now missing) int3 and run
530 * the original instruction.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100532 regs->ip = (unsigned long)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 ret = 1;
534 }
535 /* Not one of ours: let kernel handle it */
536 goto no_kprobe;
537 }
538
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800539 set_current_kprobe(p, regs, kcb);
540 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 if (p->pre_handler && p->pre_handler(p, regs))
543 /* handler has already set things up, so skip ss setup */
544 return 1;
545
546ss_probe:
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100547#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PM)
548 if (p->ainsn.boostable == 1 && !p->post_handler) {
549 /* Boost up -- we can execute copied instructions directly */
550 reset_current_kprobe();
551 regs->ip = (unsigned long)p->ainsn.insn;
552 preempt_enable_no_resched();
553 return 1;
554 }
555#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 prepare_singlestep(p, regs);
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800557 kcb->kprobe_status = KPROBE_HIT_SS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return 1;
559
560no_kprobe:
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800561 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return ret;
563}
564
565/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100566 * When a retprobed function returns, this code saves registers and
567 * calls trampoline_handler() runs, which calls the kretprobe's handler.
Rusty Lynch73649da2005-06-23 00:09:23 -0700568 */
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100569 void __kprobes kretprobe_trampoline_holder(void)
Rusty Lynch73649da2005-06-23 00:09:23 -0700570 {
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100571 asm volatile (
572 ".global kretprobe_trampoline\n"
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100573 "kretprobe_trampoline: \n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100574#ifdef CONFIG_X86_64
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100575 /* We don't bother saving the ss register */
576 " pushq %rsp\n"
577 " pushfq\n"
578 /*
579 * Skip cs, ip, orig_ax.
580 * trampoline_handler() will plug in these values
581 */
582 " subq $24, %rsp\n"
583 " pushq %rdi\n"
584 " pushq %rsi\n"
585 " pushq %rdx\n"
586 " pushq %rcx\n"
587 " pushq %rax\n"
588 " pushq %r8\n"
589 " pushq %r9\n"
590 " pushq %r10\n"
591 " pushq %r11\n"
592 " pushq %rbx\n"
593 " pushq %rbp\n"
594 " pushq %r12\n"
595 " pushq %r13\n"
596 " pushq %r14\n"
597 " pushq %r15\n"
598 " movq %rsp, %rdi\n"
599 " call trampoline_handler\n"
600 /* Replace saved sp with true return address. */
601 " movq %rax, 152(%rsp)\n"
602 " popq %r15\n"
603 " popq %r14\n"
604 " popq %r13\n"
605 " popq %r12\n"
606 " popq %rbp\n"
607 " popq %rbx\n"
608 " popq %r11\n"
609 " popq %r10\n"
610 " popq %r9\n"
611 " popq %r8\n"
612 " popq %rax\n"
613 " popq %rcx\n"
614 " popq %rdx\n"
615 " popq %rsi\n"
616 " popq %rdi\n"
617 /* Skip orig_ax, ip, cs */
618 " addq $24, %rsp\n"
619 " popfq\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100620#else
621 " pushf\n"
622 /*
623 * Skip cs, ip, orig_ax.
624 * trampoline_handler() will plug in these values
625 */
626 " subl $12, %esp\n"
627 " pushl %fs\n"
628 " pushl %ds\n"
629 " pushl %es\n"
630 " pushl %eax\n"
631 " pushl %ebp\n"
632 " pushl %edi\n"
633 " pushl %esi\n"
634 " pushl %edx\n"
635 " pushl %ecx\n"
636 " pushl %ebx\n"
637 " movl %esp, %eax\n"
638 " call trampoline_handler\n"
639 /* Move flags to cs */
640 " movl 52(%esp), %edx\n"
641 " movl %edx, 48(%esp)\n"
642 /* Replace saved flags with true return address. */
643 " movl %eax, 52(%esp)\n"
644 " popl %ebx\n"
645 " popl %ecx\n"
646 " popl %edx\n"
647 " popl %esi\n"
648 " popl %edi\n"
649 " popl %ebp\n"
650 " popl %eax\n"
651 /* Skip ip, orig_ax, es, ds, fs */
652 " addl $20, %esp\n"
653 " popf\n"
654#endif
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100655 " ret\n");
Rusty Lynch73649da2005-06-23 00:09:23 -0700656 }
657
658/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100659 * Called from kretprobe_trampoline
Rusty Lynch73649da2005-06-23 00:09:23 -0700660 */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100661void * __kprobes trampoline_handler(struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700662{
bibo,mao62c27be2006-10-02 02:17:33 -0700663 struct kretprobe_instance *ri = NULL;
bibo,mao99219a32006-10-02 02:17:35 -0700664 struct hlist_head *head, empty_rp;
bibo,mao62c27be2006-10-02 02:17:33 -0700665 struct hlist_node *node, *tmp;
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800666 unsigned long flags, orig_ret_address = 0;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100667 unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline;
Rusty Lynch73649da2005-06-23 00:09:23 -0700668
bibo,mao99219a32006-10-02 02:17:35 -0700669 INIT_HLIST_HEAD(&empty_rp);
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800670 spin_lock_irqsave(&kretprobe_lock, flags);
bibo,mao62c27be2006-10-02 02:17:33 -0700671 head = kretprobe_inst_table_head(current);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100672 /* fixup registers */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100673#ifdef CONFIG_X86_64
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100674 regs->cs = __KERNEL_CS;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100675#else
676 regs->cs = __KERNEL_CS | get_kernel_rpl();
677#endif
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100678 regs->ip = trampoline_address;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100679 regs->orig_ax = ~0UL;
Rusty Lynch73649da2005-06-23 00:09:23 -0700680
Rusty Lynchba8af122005-06-27 15:17:10 -0700681 /*
682 * It is possible to have multiple instances associated with a given
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100683 * task either because multiple functions in the call path have
684 * return probes installed on them, and/or more then one
Rusty Lynchba8af122005-06-27 15:17:10 -0700685 * return probe was registered for a target function.
686 *
687 * We can handle this because:
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100688 * - instances are always pushed into the head of the list
Rusty Lynchba8af122005-06-27 15:17:10 -0700689 * - when multiple return probes are registered for the same
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100690 * function, the (chronologically) first instance's ret_addr
691 * will be the real return address, and all the rest will
692 * point to kretprobe_trampoline.
Rusty Lynchba8af122005-06-27 15:17:10 -0700693 */
694 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
bibo,mao62c27be2006-10-02 02:17:33 -0700695 if (ri->task != current)
Rusty Lynchba8af122005-06-27 15:17:10 -0700696 /* another task is sharing our hash bucket */
bibo,mao62c27be2006-10-02 02:17:33 -0700697 continue;
Rusty Lynch73649da2005-06-23 00:09:23 -0700698
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100699 if (ri->rp && ri->rp->handler) {
700 __get_cpu_var(current_kprobe) = &ri->rp->kp;
701 get_kprobe_ctlblk()->kprobe_status = KPROBE_HIT_ACTIVE;
Rusty Lynchba8af122005-06-27 15:17:10 -0700702 ri->rp->handler(ri, regs);
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100703 __get_cpu_var(current_kprobe) = NULL;
704 }
Rusty Lynch73649da2005-06-23 00:09:23 -0700705
Rusty Lynchba8af122005-06-27 15:17:10 -0700706 orig_ret_address = (unsigned long)ri->ret_addr;
bibo,mao99219a32006-10-02 02:17:35 -0700707 recycle_rp_inst(ri, &empty_rp);
Rusty Lynchba8af122005-06-27 15:17:10 -0700708
709 if (orig_ret_address != trampoline_address)
710 /*
711 * This is the real return address. Any other
712 * instances associated with this task are for
713 * other calls deeper on the call stack
714 */
715 break;
Rusty Lynch73649da2005-06-23 00:09:23 -0700716 }
Rusty Lynchba8af122005-06-27 15:17:10 -0700717
Ananth N Mavinakayanahalli0f95b7f2007-05-08 00:28:27 -0700718 kretprobe_assert(ri, orig_ret_address, trampoline_address);
Rusty Lynchba8af122005-06-27 15:17:10 -0700719
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800720 spin_unlock_irqrestore(&kretprobe_lock, flags);
Rusty Lynchba8af122005-06-27 15:17:10 -0700721
bibo,mao99219a32006-10-02 02:17:35 -0700722 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
723 hlist_del(&ri->hlist);
724 kfree(ri);
725 }
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100726 return (void *)orig_ret_address;
Rusty Lynch73649da2005-06-23 00:09:23 -0700727}
728
729/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * Called after single-stepping. p->addr is the address of the
731 * instruction whose first byte has been replaced by the "int 3"
732 * instruction. To avoid the SMP problems that can occur when we
733 * temporarily put back the original opcode to single-step, we
734 * single-stepped a copy of the instruction. The address of this
735 * copy is p->ainsn.insn.
736 *
737 * This function prepares to return from the post-single-step
738 * interrupt. We have to fix up the stack as follows:
739 *
740 * 0) Except in the case of absolute or indirect jump or call instructions,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100741 * the new ip is relative to the copied instruction. We need to make
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 * it relative to the original instruction.
743 *
744 * 1) If the single-stepped instruction was pushfl, then the TF and IF
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100745 * flags are set in the just-pushed flags, and may need to be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 *
747 * 2) If the single-stepped instruction was a call, the return address
748 * that is atop the stack is the address following the copied instruction.
749 * We need to make it the address following the original instruction.
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100750 *
751 * If this is the first time we've single-stepped the instruction at
752 * this probepoint, and the instruction is boostable, boost it: add a
753 * jump instruction after the copied instruction, that jumps to the next
754 * instruction after the probepoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800756static void __kprobes resume_execution(struct kprobe *p,
757 struct pt_regs *regs, struct kprobe_ctlblk *kcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100759 unsigned long *tos = stack_addr(regs);
760 unsigned long copy_ip = (unsigned long)p->ainsn.insn;
761 unsigned long orig_ip = (unsigned long)p->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 kprobe_opcode_t *insn = p->ainsn.insn;
763
764 /*skip the REX prefix*/
Harvey Harrison99309272008-01-30 13:32:14 +0100765 if (is_REX_prefix(insn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 insn++;
767
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100768 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 switch (*insn) {
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100770 case 0x9c: /* pushfl */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100771 *tos &= ~(X86_EFLAGS_TF | X86_EFLAGS_IF);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100772 *tos |= kcb->kprobe_old_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 break;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100774 case 0xc2: /* iret/ret/lret */
775 case 0xc3:
Prasanna S Panchamukhi0b9e2ca2005-05-05 16:15:40 -0700776 case 0xca:
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100777 case 0xcb:
778 case 0xcf:
779 case 0xea: /* jmp absolute -- ip is correct */
780 /* ip is already adjusted, no more changes required */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100781 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100782 goto no_change;
783 case 0xe8: /* call relative - Fix return addr */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100784 *tos = orig_ip + (*tos - copy_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 break;
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100786#ifdef CONFIG_X86_32
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100787 case 0x9a: /* call absolute -- same as call absolute, indirect */
788 *tos = orig_ip + (*tos - copy_ip);
789 goto no_change;
790#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 case 0xff:
Satoshi Oshimadc49e342006-05-20 15:00:21 -0700792 if ((insn[1] & 0x30) == 0x10) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100793 /*
794 * call absolute, indirect
795 * Fix return addr; ip is correct.
796 * But this is not boostable
797 */
798 *tos = orig_ip + (*tos - copy_ip);
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100799 goto no_change;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100800 } else if (((insn[1] & 0x31) == 0x20) ||
801 ((insn[1] & 0x31) == 0x21)) {
802 /*
803 * jmp near and far, absolute indirect
804 * ip is correct. And this is boostable
805 */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100806 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100807 goto no_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 default:
810 break;
811 }
812
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100813 if (p->ainsn.boostable == 0) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100814 if ((regs->ip > copy_ip) &&
815 (regs->ip - copy_ip) + 5 < MAX_INSN_SIZE) {
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100816 /*
817 * These instructions can be executed directly if it
818 * jumps back to correct address.
819 */
820 set_jmp_op((void *)regs->ip,
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100821 (void *)orig_ip + (regs->ip - copy_ip));
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100822 p->ainsn.boostable = 1;
823 } else {
824 p->ainsn.boostable = -1;
825 }
826 }
827
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100828 regs->ip += orig_ip - copy_ip;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100829
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100830no_change:
Roland McGrath1ecc7982008-01-30 13:30:54 +0100831 restore_btf();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100834/*
835 * Interrupts are disabled on entry as trap1 is an interrupt gate and they
836 * remain disabled thoroughout this function.
837 */
838static int __kprobes post_kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800840 struct kprobe *cur = kprobe_running();
841 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
842
843 if (!cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return 0;
845
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800846 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
847 kcb->kprobe_status = KPROBE_HIT_SSDONE;
848 cur->post_handler(cur, regs, 0);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800851 resume_execution(cur, regs, kcb);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100852 regs->flags |= kcb->kprobe_saved_flags;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100853 trace_hardirqs_fixup_flags(regs->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100855 /* Restore back the original saved kprobes variables and continue. */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800856 if (kcb->kprobe_status == KPROBE_REENTER) {
857 restore_previous_kprobe(kcb);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700858 goto out;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700859 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800860 reset_current_kprobe();
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700861out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 preempt_enable_no_resched();
863
864 /*
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100865 * if somebody else is singlestepping across a probe point, flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 * will have TF set, in which case, continue the remaining processing
867 * of do_debug, as if this is not a probe hit.
868 */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100869 if (regs->flags & X86_EFLAGS_TF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return 0;
871
872 return 1;
873}
874
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700875int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800877 struct kprobe *cur = kprobe_running();
878 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
879
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100880 switch (kcb->kprobe_status) {
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800881 case KPROBE_HIT_SS:
882 case KPROBE_REENTER:
883 /*
884 * We are here because the instruction being single
885 * stepped caused a page fault. We reset the current
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100886 * kprobe and the ip points back to the probe address
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800887 * and allow the page fault handler to continue as a
888 * normal page fault.
889 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100890 regs->ip = (unsigned long)cur->addr;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100891 regs->flags |= kcb->kprobe_old_flags;
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800892 if (kcb->kprobe_status == KPROBE_REENTER)
893 restore_previous_kprobe(kcb);
894 else
895 reset_current_kprobe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 preempt_enable_no_resched();
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800897 break;
898 case KPROBE_HIT_ACTIVE:
899 case KPROBE_HIT_SSDONE:
900 /*
901 * We increment the nmissed count for accounting,
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100902 * we can also use npre/npostfault count for accounting
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800903 * these specific fault cases.
904 */
905 kprobes_inc_nmissed_count(cur);
906
907 /*
908 * We come here because instructions in the pre/post
909 * handler caused the page_fault, this could happen
910 * if handler tries to access user space by
911 * copy_from_user(), get_user() etc. Let the
912 * user-specified handler try to fix it first.
913 */
914 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr))
915 return 1;
916
917 /*
918 * In case the user-specified fault handler returned
919 * zero, try to fix up.
920 */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100921 if (fixup_exception(regs))
922 return 1;
Harvey Harrison6d485832008-01-30 13:31:41 +0100923
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800924 /*
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100925 * fixup routine could not handle it,
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800926 * Let do_page_fault() fix it.
927 */
928 break;
929 default:
930 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932 return 0;
933}
934
935/*
936 * Wrapper routine for handling exceptions.
937 */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700938int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
939 unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
941 struct die_args *args = (struct die_args *)data;
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800942 int ret = NOTIFY_DONE;
943
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100944 if (args->regs && user_mode_vm(args->regs))
bibo,mao2326c772006-03-26 01:38:21 -0800945 return ret;
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 switch (val) {
948 case DIE_INT3:
949 if (kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800950 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 break;
952 case DIE_DEBUG:
953 if (post_kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800954 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 break;
956 case DIE_GPF:
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800957 /* kprobe_running() needs smp_processor_id() */
958 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (kprobe_running() &&
960 kprobe_fault_handler(args->regs, args->trapnr))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800961 ret = NOTIFY_STOP;
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800962 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 break;
964 default:
965 break;
966 }
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800967 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700970int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 struct jprobe *jp = container_of(p, struct jprobe, kp);
973 unsigned long addr;
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800974 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800976 kcb->jprobe_saved_regs = *regs;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100977 kcb->jprobe_saved_sp = stack_addr(regs);
978 addr = (unsigned long)(kcb->jprobe_saved_sp);
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 /*
981 * As Linus pointed out, gcc assumes that the callee
982 * owns the argument space and could overwrite it, e.g.
983 * tailcall optimization. So, to be absolutely safe
984 * we also save and restore enough stack bytes to cover
985 * the argument area.
986 */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800987 memcpy(kcb->jprobes_stack, (kprobe_opcode_t *)addr,
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100988 MIN_STACK_SIZE(addr));
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100989 regs->flags &= ~X86_EFLAGS_IF;
Peter Zijlstra58dfe882007-10-11 22:25:25 +0200990 trace_hardirqs_off();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100991 regs->ip = (unsigned long)(jp->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return 1;
993}
994
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700995void __kprobes jprobe_return(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800997 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
998
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100999 asm volatile (
1000#ifdef CONFIG_X86_64
1001 " xchg %%rbx,%%rsp \n"
1002#else
1003 " xchgl %%ebx,%%esp \n"
1004#endif
1005 " int3 \n"
1006 " .globl jprobe_return_end\n"
1007 " jprobe_return_end: \n"
1008 " nop \n"::"b"
1009 (kcb->jprobe_saved_sp):"memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010}
1011
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -07001012int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001014 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001015 u8 *addr = (u8 *) (regs->ip - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 struct jprobe *jp = container_of(p, struct jprobe, kp);
1017
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001018 if ((addr > (u8 *) jprobe_return) &&
1019 (addr < (u8 *) jprobe_return_end)) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001020 if (stack_addr(regs) != kcb->jprobe_saved_sp) {
Masami Hiramatsu29b6cd72007-12-18 18:05:58 +01001021 struct pt_regs *saved_regs = &kcb->jprobe_saved_regs;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001022 printk(KERN_ERR
1023 "current sp %p does not match saved sp %p\n",
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001024 stack_addr(regs), kcb->jprobe_saved_sp);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001025 printk(KERN_ERR "Saved registers for jprobe %p\n", jp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 show_registers(saved_regs);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001027 printk(KERN_ERR "Current registers\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 show_registers(regs);
1029 BUG();
1030 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001031 *regs = kcb->jprobe_saved_regs;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001032 memcpy((kprobe_opcode_t *)(kcb->jprobe_saved_sp),
1033 kcb->jprobes_stack,
1034 MIN_STACK_SIZE(kcb->jprobe_saved_sp));
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -08001035 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 1;
1037 }
1038 return 0;
1039}
Rusty Lynchba8af122005-06-27 15:17:10 -07001040
Rusty Lynch67729262005-07-05 18:54:50 -07001041int __init arch_init_kprobes(void)
Rusty Lynchba8af122005-06-27 15:17:10 -07001042{
Masami Hiramatsuda07ab02008-01-30 13:31:21 +01001043 return 0;
Rusty Lynchba8af122005-06-27 15:17:10 -07001044}
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001045
1046int __kprobes arch_trampoline_kprobe(struct kprobe *p)
1047{
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001048 return 0;
1049}