blob: 2ee4fa3a3f01d90ecf5e7f4407cc09d3ef4bcb58 [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>
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070051
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010052#include <asm/cacheflush.h>
53#include <asm/desc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/pgtable.h>
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -080055#include <asm/uaccess.h>
Andi Kleen19d36cc2007-07-22 11:12:31 +020056#include <asm/alternative.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058void jprobe_return_end(void);
59
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -080060DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
61DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
H. Peter Anvin98272ed2009-10-12 14:14:10 -070063#define stack_addr(regs) ((unsigned long *)kernel_stack_pointer(regs))
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010064
65#define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\
66 (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \
67 (b4##UL << 0x4)|(b5##UL << 0x5)|(b6##UL << 0x6)|(b7##UL << 0x7) | \
68 (b8##UL << 0x8)|(b9##UL << 0x9)|(ba##UL << 0xa)|(bb##UL << 0xb) | \
69 (bc##UL << 0xc)|(bd##UL << 0xd)|(be##UL << 0xe)|(bf##UL << 0xf)) \
70 << (row % 32))
71 /*
72 * Undefined/reserved opcodes, conditional jump, Opcode Extension
73 * Groups, and some special opcodes can not boost.
74 */
75static const u32 twobyte_is_boostable[256 / 32] = {
76 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
77 /* ---------------------------------------------- */
78 W(0x00, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0) | /* 00 */
79 W(0x10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 10 */
80 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 20 */
81 W(0x30, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 30 */
82 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 40 */
83 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */
84 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1) | /* 60 */
85 W(0x70, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) , /* 70 */
86 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 80 */
87 W(0x90, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 90 */
88 W(0xa0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* a0 */
89 W(0xb0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1) , /* b0 */
90 W(0xc0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* c0 */
91 W(0xd0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) , /* d0 */
92 W(0xe0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* e0 */
93 W(0xf0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0) /* f0 */
94 /* ----------------------------------------------- */
95 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
96};
97static const u32 onebyte_has_modrm[256 / 32] = {
98 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
99 /* ----------------------------------------------- */
100 W(0x00, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) | /* 00 */
101 W(0x10, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) , /* 10 */
102 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) | /* 20 */
103 W(0x30, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) , /* 30 */
104 W(0x40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 40 */
105 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */
106 W(0x60, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0) | /* 60 */
107 W(0x70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 70 */
108 W(0x80, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 80 */
109 W(0x90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 90 */
110 W(0xa0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* a0 */
111 W(0xb0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* b0 */
112 W(0xc0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0) | /* c0 */
113 W(0xd0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1) , /* d0 */
114 W(0xe0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* e0 */
115 W(0xf0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) /* f0 */
116 /* ----------------------------------------------- */
117 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
118};
119static const u32 twobyte_has_modrm[256 / 32] = {
120 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
121 /* ----------------------------------------------- */
122 W(0x00, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1) | /* 0f */
123 W(0x10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0) , /* 1f */
124 W(0x20, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* 2f */
125 W(0x30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 3f */
126 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 4f */
127 W(0x50, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 5f */
128 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 6f */
129 W(0x70, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1) , /* 7f */
130 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 8f */
131 W(0x90, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 9f */
132 W(0xa0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1) | /* af */
133 W(0xb0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1) , /* bf */
134 W(0xc0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0) | /* cf */
135 W(0xd0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* df */
136 W(0xe0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* ef */
137 W(0xf0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0) /* ff */
138 /* ----------------------------------------------- */
139 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
140};
141#undef W
142
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700143struct kretprobe_blackpoint kretprobe_blacklist[] = {
144 {"__switch_to", }, /* This function switches only current task, but
145 doesn't switch kernel stack.*/
146 {NULL, NULL} /* Terminator */
147};
148const int kretprobe_blacklist_size = ARRAY_SIZE(kretprobe_blacklist);
149
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100150/* Insert a jump instruction at address 'from', which jumps to address 'to'.*/
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100151static void __kprobes set_jmp_op(void *from, void *to)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100152{
153 struct __arch_jmp_op {
154 char op;
155 s32 raddr;
156 } __attribute__((packed)) * jop;
157 jop = (struct __arch_jmp_op *)from;
158 jop->raddr = (s32)((long)(to) - ((long)(from) + 5));
159 jop->op = RELATIVEJUMP_INSTRUCTION;
160}
161
162/*
Harvey Harrison99309272008-01-30 13:32:14 +0100163 * Check for the REX prefix which can only exist on X86_64
164 * X86_32 always returns 0
165 */
166static int __kprobes is_REX_prefix(kprobe_opcode_t *insn)
167{
168#ifdef CONFIG_X86_64
169 if ((*insn & 0xf0) == 0x40)
170 return 1;
171#endif
172 return 0;
173}
174
175/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100176 * Returns non-zero if opcode is boostable.
177 * RIP relative instructions are adjusted at copying time in 64 bits mode
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100178 */
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100179static int __kprobes can_boost(kprobe_opcode_t *opcodes)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100180{
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100181 kprobe_opcode_t opcode;
182 kprobe_opcode_t *orig_opcodes = opcodes;
183
Jaswinder Singh Rajputcde5edb2009-03-18 17:37:45 +0530184 if (search_exception_tables((unsigned long)opcodes))
Masami Hiramatsu30390882009-03-16 18:57:22 -0400185 return 0; /* Page fault may occur on this address. */
186
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100187retry:
188 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
189 return 0;
190 opcode = *(opcodes++);
191
192 /* 2nd-byte opcode */
193 if (opcode == 0x0f) {
194 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
195 return 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100196 return test_bit(*opcodes,
197 (unsigned long *)twobyte_is_boostable);
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100198 }
199
200 switch (opcode & 0xf0) {
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100201#ifdef CONFIG_X86_64
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100202 case 0x40:
203 goto retry; /* REX prefix is boostable */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100204#endif
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100205 case 0x60:
206 if (0x63 < opcode && opcode < 0x67)
207 goto retry; /* prefixes */
208 /* can't boost Address-size override and bound */
209 return (opcode != 0x62 && opcode != 0x67);
210 case 0x70:
211 return 0; /* can't boost conditional jump */
212 case 0xc0:
213 /* can't boost software-interruptions */
214 return (0xc1 < opcode && opcode < 0xcc) || opcode == 0xcf;
215 case 0xd0:
216 /* can boost AA* and XLAT */
217 return (opcode == 0xd4 || opcode == 0xd5 || opcode == 0xd7);
218 case 0xe0:
219 /* can boost in/out and absolute jmps */
220 return ((opcode & 0x04) || opcode == 0xea);
221 case 0xf0:
222 if ((opcode & 0x0c) == 0 && opcode != 0xf1)
223 goto retry; /* lock/rep(ne) prefix */
224 /* clear and set flags are boostable */
225 return (opcode == 0xf5 || (0xf7 < opcode && opcode < 0xfe));
226 default:
227 /* segment override prefixes are boostable */
228 if (opcode == 0x26 || opcode == 0x36 || opcode == 0x3e)
229 goto retry; /* prefixes */
230 /* CS override prefix and call are not boostable */
231 return (opcode != 0x2e && opcode != 0x9a);
232 }
233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100236 * Returns non-zero if opcode modifies the interrupt flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 */
Andrew Morton86454192007-11-26 20:42:19 +0100238static int __kprobes is_IF_modifier(kprobe_opcode_t *insn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240 switch (*insn) {
241 case 0xfa: /* cli */
242 case 0xfb: /* sti */
243 case 0xcf: /* iret/iretd */
244 case 0x9d: /* popf/popfd */
245 return 1;
246 }
Harvey Harrison99309272008-01-30 13:32:14 +0100247
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100248 /*
Harvey Harrison99309272008-01-30 13:32:14 +0100249 * on X86_64, 0x40-0x4f are REX prefixes so we need to look
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100250 * at the next byte instead.. but of course not recurse infinitely
251 */
Harvey Harrison99309272008-01-30 13:32:14 +0100252 if (is_REX_prefix(insn))
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100253 return is_IF_modifier(++insn);
Harvey Harrison99309272008-01-30 13:32:14 +0100254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return 0;
256}
257
258/*
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100259 * Adjust the displacement if the instruction uses the %rip-relative
260 * addressing mode.
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100261 * If it does, Return the address of the 32-bit displacement word.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 * If not, return null.
Harvey Harrison31f80e42008-01-30 13:32:16 +0100263 * Only applicable to 64-bit x86.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100265static void __kprobes fix_riprel(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Harvey Harrison31f80e42008-01-30 13:32:16 +0100267#ifdef CONFIG_X86_64
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100268 u8 *insn = p->ainsn.insn;
269 s64 disp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 int need_modrm;
271
272 /* Skip legacy instruction prefixes. */
273 while (1) {
274 switch (*insn) {
275 case 0x66:
276 case 0x67:
277 case 0x2e:
278 case 0x3e:
279 case 0x26:
280 case 0x64:
281 case 0x65:
282 case 0x36:
283 case 0xf0:
284 case 0xf3:
285 case 0xf2:
286 ++insn;
287 continue;
288 }
289 break;
290 }
291
292 /* Skip REX instruction prefix. */
Harvey Harrison99309272008-01-30 13:32:14 +0100293 if (is_REX_prefix(insn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 ++insn;
295
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100296 if (*insn == 0x0f) {
297 /* Two-byte opcode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 ++insn;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100299 need_modrm = test_bit(*insn,
300 (unsigned long *)twobyte_has_modrm);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100301 } else
302 /* One-byte opcode. */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100303 need_modrm = test_bit(*insn,
304 (unsigned long *)onebyte_has_modrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 if (need_modrm) {
307 u8 modrm = *++insn;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100308 if ((modrm & 0xc7) == 0x05) {
309 /* %rip+disp32 addressing mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* Displacement follows ModRM byte. */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100311 ++insn;
312 /*
313 * The copied instruction uses the %rip-relative
314 * addressing mode. Adjust the displacement for the
315 * difference between the original location of this
316 * instruction and the location of the copy that will
317 * actually be run. The tricky bit here is making sure
318 * that the sign extension happens correctly in this
319 * calculation, since we need a signed 32-bit result to
320 * be sign-extended to 64 bits when it's added to the
321 * %rip value and yield the same 64-bit result that the
322 * sign-extension of the original signed 32-bit
323 * displacement would have given.
324 */
325 disp = (u8 *) p->addr + *((s32 *) insn) -
326 (u8 *) p->ainsn.insn;
327 BUG_ON((s64) (s32) disp != disp); /* Sanity check. */
328 *(s32 *)insn = (s32) disp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330 }
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100331#endif
Harvey Harrison31f80e42008-01-30 13:32:16 +0100332}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800334static void __kprobes arch_copy_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100336 memcpy(p->ainsn.insn, p->addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
Harvey Harrison31f80e42008-01-30 13:32:16 +0100337
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100338 fix_riprel(p);
Harvey Harrison31f80e42008-01-30 13:32:16 +0100339
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100340 if (can_boost(p->addr))
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100341 p->ainsn.boostable = 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100342 else
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100343 p->ainsn.boostable = -1;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100344
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700345 p->opcode = *p->addr;
346}
347
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100348int __kprobes arch_prepare_kprobe(struct kprobe *p)
349{
350 /* insn: must be on special executable page on x86. */
351 p->ainsn.insn = get_insn_slot();
352 if (!p->ainsn.insn)
353 return -ENOMEM;
354 arch_copy_kprobe(p);
355 return 0;
356}
357
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700358void __kprobes arch_arm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700359{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200360 text_poke(p->addr, ((unsigned char []){BREAKPOINT_INSTRUCTION}), 1);
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700361}
362
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700363void __kprobes arch_disarm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700364{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200365 text_poke(p->addr, &p->opcode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -0800368void __kprobes arch_remove_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Masami Hiramatsu12941562009-01-06 14:41:50 -0800370 if (p->ainsn.insn) {
371 free_insn_slot(p->ainsn.insn, (p->ainsn.boostable == 1));
372 p->ainsn.insn = NULL;
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700376static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700377{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800378 kcb->prev_kprobe.kp = kprobe_running();
379 kcb->prev_kprobe.status = kcb->kprobe_status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100380 kcb->prev_kprobe.old_flags = kcb->kprobe_old_flags;
381 kcb->prev_kprobe.saved_flags = kcb->kprobe_saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700382}
383
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700384static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700385{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800386 __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp;
387 kcb->kprobe_status = kcb->prev_kprobe.status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100388 kcb->kprobe_old_flags = kcb->prev_kprobe.old_flags;
389 kcb->kprobe_saved_flags = kcb->prev_kprobe.saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700390}
391
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700392static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs,
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800393 struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700394{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800395 __get_cpu_var(current_kprobe) = p;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100396 kcb->kprobe_saved_flags = kcb->kprobe_old_flags
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100397 = (regs->flags & (X86_EFLAGS_TF | X86_EFLAGS_IF));
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700398 if (is_IF_modifier(p->ainsn.insn))
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100399 kcb->kprobe_saved_flags &= ~X86_EFLAGS_IF;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700400}
401
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100402static void __kprobes clear_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100403{
404 if (test_thread_flag(TIF_DEBUGCTLMSR))
Jan Beulich5b0e5082008-03-10 13:11:17 +0000405 update_debugctlmsr(0);
Roland McGrath1ecc7982008-01-30 13:30:54 +0100406}
407
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100408static void __kprobes restore_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100409{
410 if (test_thread_flag(TIF_DEBUGCTLMSR))
Jan Beulich5b0e5082008-03-10 13:11:17 +0000411 update_debugctlmsr(current->thread.debugctlmsr);
Roland McGrath1ecc7982008-01-30 13:30:54 +0100412}
413
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700414static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Roland McGrath1ecc7982008-01-30 13:30:54 +0100416 clear_btf();
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100417 regs->flags |= X86_EFLAGS_TF;
418 regs->flags &= ~X86_EFLAGS_IF;
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100419 /* single step inline if the instruction is an int3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (p->opcode == BREAKPOINT_INSTRUCTION)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100421 regs->ip = (unsigned long)p->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 else
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100423 regs->ip = (unsigned long)p->ainsn.insn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700426void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700427 struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700428{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100429 unsigned long *sara = stack_addr(regs);
Rusty Lynch73649da2005-06-23 00:09:23 -0700430
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700431 ri->ret_addr = (kprobe_opcode_t *) *sara;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100432
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700433 /* Replace the return addr with trampoline addr */
434 *sara = (unsigned long) &kretprobe_trampoline;
Rusty Lynch73649da2005-06-23 00:09:23 -0700435}
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100436
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100437static void __kprobes setup_singlestep(struct kprobe *p, struct pt_regs *regs,
438 struct kprobe_ctlblk *kcb)
439{
Masami Hiramatsu5a4ccaf2009-01-06 21:15:32 +0100440#if !defined(CONFIG_PREEMPT) || defined(CONFIG_FREEZER)
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100441 if (p->ainsn.boostable == 1 && !p->post_handler) {
442 /* Boost up -- we can execute copied instructions directly */
443 reset_current_kprobe();
444 regs->ip = (unsigned long)p->ainsn.insn;
445 preempt_enable_no_resched();
446 return;
447 }
448#endif
449 prepare_singlestep(p, regs);
450 kcb->kprobe_status = KPROBE_HIT_SS;
451}
452
Harvey Harrison40102d42008-01-30 13:32:02 +0100453/*
454 * We have reentered the kprobe_handler(), since another probe was hit while
455 * within the handler. We save the original kprobes variables and just single
456 * step on the instruction of the new probe without calling any user handlers.
457 */
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100458static int __kprobes reenter_kprobe(struct kprobe *p, struct pt_regs *regs,
459 struct kprobe_ctlblk *kcb)
Harvey Harrison40102d42008-01-30 13:32:02 +0100460{
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100461 switch (kcb->kprobe_status) {
462 case KPROBE_HIT_SSDONE:
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100463#ifdef CONFIG_X86_64
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100464 /* TODO: Provide re-entrancy from post_kprobes_handler() and
465 * avoid exception stack corruption while single-stepping on
466 * the instruction of the new probe.
467 */
468 arch_disarm_kprobe(p);
469 regs->ip = (unsigned long)p->addr;
470 reset_current_kprobe();
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100471 preempt_enable_no_resched();
472 break;
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100473#endif
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100474 case KPROBE_HIT_ACTIVE:
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100475 save_previous_kprobe(kcb);
476 set_current_kprobe(p, regs, kcb);
477 kprobes_inc_nmissed_count(p);
478 prepare_singlestep(p, regs);
479 kcb->kprobe_status = KPROBE_REENTER;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100480 break;
481 case KPROBE_HIT_SS:
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100482 if (p == kprobe_running()) {
gorcunov@gmail.coma5c15d42008-03-28 17:56:56 +0300483 regs->flags &= ~X86_EFLAGS_TF;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100484 regs->flags |= kcb->kprobe_saved_flags;
485 return 0;
486 } else {
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100487 /* A probe has been hit in the codepath leading up
488 * to, or just after, single-stepping of a probed
489 * instruction. This entire codepath should strictly
490 * reside in .kprobes.text section. Raise a warning
491 * to highlight this peculiar case.
492 */
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100493 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100494 default:
495 /* impossible cases */
496 WARN_ON(1);
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100497 return 0;
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100498 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100499
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100500 return 1;
Harvey Harrison40102d42008-01-30 13:32:02 +0100501}
Rusty Lynch73649da2005-06-23 00:09:23 -0700502
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100503/*
504 * Interrupts are disabled on entry as trap3 is an interrupt gate and they
505 * remain disabled thorough out this function.
506 */
507static int __kprobes kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100509 kprobe_opcode_t *addr;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100510 struct kprobe *p;
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800511 struct kprobe_ctlblk *kcb;
512
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100513 addr = (kprobe_opcode_t *)(regs->ip - sizeof(kprobe_opcode_t));
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100514 if (*addr != BREAKPOINT_INSTRUCTION) {
515 /*
516 * The breakpoint instruction was removed right
517 * after we hit it. Another cpu has removed
518 * either a probepoint or a debugger breakpoint
519 * at this address. In either case, no further
520 * handling of this interrupt is appropriate.
521 * Back up over the (now missing) int3 and run
522 * the original instruction.
523 */
524 regs->ip = (unsigned long)addr;
525 return 1;
526 }
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100527
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800528 /*
529 * We don't want to be preempted for the entire
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100530 * duration of kprobe processing. We conditionally
531 * re-enable preemption at the end of this function,
532 * and also in reenter_kprobe() and setup_singlestep().
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800533 */
534 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100536 kcb = get_kprobe_ctlblk();
Harvey Harrisonb9760152008-01-30 13:32:19 +0100537 p = get_kprobe(addr);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100538
Harvey Harrisonb9760152008-01-30 13:32:19 +0100539 if (p) {
Harvey Harrisonb9760152008-01-30 13:32:19 +0100540 if (kprobe_running()) {
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100541 if (reenter_kprobe(p, regs, kcb))
542 return 1;
Harvey Harrisonb9760152008-01-30 13:32:19 +0100543 } else {
544 set_current_kprobe(p, regs, kcb);
545 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /*
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100548 * If we have no pre-handler or it returned 0, we
549 * continue with normal processing. If we have a
550 * pre-handler and it returned non-zero, it prepped
551 * for calling the break_handler below on re-entry
552 * for jprobe processing, so get out doing nothing
553 * more here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 */
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100555 if (!p->pre_handler || !p->pre_handler(p, regs))
556 setup_singlestep(p, regs, kcb);
557 return 1;
Harvey Harrisonb9760152008-01-30 13:32:19 +0100558 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100559 } else if (kprobe_running()) {
560 p = __get_cpu_var(current_kprobe);
561 if (p->break_handler && p->break_handler(p, regs)) {
562 setup_singlestep(p, regs, kcb);
563 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100565 } /* else: not a kprobe fault; let the kernel handle it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800567 preempt_enable_no_resched();
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100572 * When a retprobed function returns, this code saves registers and
573 * calls trampoline_handler() runs, which calls the kretprobe's handler.
Rusty Lynch73649da2005-06-23 00:09:23 -0700574 */
Harvey Harrisonf1452d42008-02-14 15:23:53 -0800575static void __used __kprobes kretprobe_trampoline_holder(void)
Harvey Harrison10175792008-01-30 13:33:01 +0100576{
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100577 asm volatile (
578 ".global kretprobe_trampoline\n"
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100579 "kretprobe_trampoline: \n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100580#ifdef CONFIG_X86_64
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100581 /* We don't bother saving the ss register */
582 " pushq %rsp\n"
583 " pushfq\n"
584 /*
585 * Skip cs, ip, orig_ax.
586 * trampoline_handler() will plug in these values
587 */
588 " subq $24, %rsp\n"
589 " pushq %rdi\n"
590 " pushq %rsi\n"
591 " pushq %rdx\n"
592 " pushq %rcx\n"
593 " pushq %rax\n"
594 " pushq %r8\n"
595 " pushq %r9\n"
596 " pushq %r10\n"
597 " pushq %r11\n"
598 " pushq %rbx\n"
599 " pushq %rbp\n"
600 " pushq %r12\n"
601 " pushq %r13\n"
602 " pushq %r14\n"
603 " pushq %r15\n"
604 " movq %rsp, %rdi\n"
605 " call trampoline_handler\n"
606 /* Replace saved sp with true return address. */
607 " movq %rax, 152(%rsp)\n"
608 " popq %r15\n"
609 " popq %r14\n"
610 " popq %r13\n"
611 " popq %r12\n"
612 " popq %rbp\n"
613 " popq %rbx\n"
614 " popq %r11\n"
615 " popq %r10\n"
616 " popq %r9\n"
617 " popq %r8\n"
618 " popq %rax\n"
619 " popq %rcx\n"
620 " popq %rdx\n"
621 " popq %rsi\n"
622 " popq %rdi\n"
623 /* Skip orig_ax, ip, cs */
624 " addq $24, %rsp\n"
625 " popfq\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100626#else
627 " pushf\n"
628 /*
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400629 * Skip cs, ip, orig_ax and gs.
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100630 * trampoline_handler() will plug in these values
631 */
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400632 " subl $16, %esp\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100633 " pushl %fs\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100634 " pushl %es\n"
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400635 " pushl %ds\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100636 " pushl %eax\n"
637 " pushl %ebp\n"
638 " pushl %edi\n"
639 " pushl %esi\n"
640 " pushl %edx\n"
641 " pushl %ecx\n"
642 " pushl %ebx\n"
643 " movl %esp, %eax\n"
644 " call trampoline_handler\n"
645 /* Move flags to cs */
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400646 " movl 56(%esp), %edx\n"
647 " movl %edx, 52(%esp)\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100648 /* Replace saved flags with true return address. */
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400649 " movl %eax, 56(%esp)\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100650 " popl %ebx\n"
651 " popl %ecx\n"
652 " popl %edx\n"
653 " popl %esi\n"
654 " popl %edi\n"
655 " popl %ebp\n"
656 " popl %eax\n"
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400657 /* Skip ds, es, fs, gs, orig_ax and ip */
658 " addl $24, %esp\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100659 " popf\n"
660#endif
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100661 " ret\n");
Harvey Harrison10175792008-01-30 13:33:01 +0100662}
Rusty Lynch73649da2005-06-23 00:09:23 -0700663
664/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100665 * Called from kretprobe_trampoline
Rusty Lynch73649da2005-06-23 00:09:23 -0700666 */
Harvey Harrisonf1452d42008-02-14 15:23:53 -0800667static __used __kprobes void *trampoline_handler(struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700668{
bibo,mao62c27be2006-10-02 02:17:33 -0700669 struct kretprobe_instance *ri = NULL;
bibo,mao99219a32006-10-02 02:17:35 -0700670 struct hlist_head *head, empty_rp;
bibo,mao62c27be2006-10-02 02:17:33 -0700671 struct hlist_node *node, *tmp;
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800672 unsigned long flags, orig_ret_address = 0;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100673 unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline;
Rusty Lynch73649da2005-06-23 00:09:23 -0700674
bibo,mao99219a32006-10-02 02:17:35 -0700675 INIT_HLIST_HEAD(&empty_rp);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700676 kretprobe_hash_lock(current, &head, &flags);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100677 /* fixup registers */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100678#ifdef CONFIG_X86_64
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100679 regs->cs = __KERNEL_CS;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100680#else
681 regs->cs = __KERNEL_CS | get_kernel_rpl();
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400682 regs->gs = 0;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100683#endif
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100684 regs->ip = trampoline_address;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100685 regs->orig_ax = ~0UL;
Rusty Lynch73649da2005-06-23 00:09:23 -0700686
Rusty Lynchba8af122005-06-27 15:17:10 -0700687 /*
688 * It is possible to have multiple instances associated with a given
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100689 * task either because multiple functions in the call path have
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200690 * return probes installed on them, and/or more than one
Rusty Lynchba8af122005-06-27 15:17:10 -0700691 * return probe was registered for a target function.
692 *
693 * We can handle this because:
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100694 * - instances are always pushed into the head of the list
Rusty Lynchba8af122005-06-27 15:17:10 -0700695 * - when multiple return probes are registered for the same
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100696 * function, the (chronologically) first instance's ret_addr
697 * will be the real return address, and all the rest will
698 * point to kretprobe_trampoline.
Rusty Lynchba8af122005-06-27 15:17:10 -0700699 */
700 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
bibo,mao62c27be2006-10-02 02:17:33 -0700701 if (ri->task != current)
Rusty Lynchba8af122005-06-27 15:17:10 -0700702 /* another task is sharing our hash bucket */
bibo,mao62c27be2006-10-02 02:17:33 -0700703 continue;
Rusty Lynch73649da2005-06-23 00:09:23 -0700704
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100705 if (ri->rp && ri->rp->handler) {
706 __get_cpu_var(current_kprobe) = &ri->rp->kp;
707 get_kprobe_ctlblk()->kprobe_status = KPROBE_HIT_ACTIVE;
Rusty Lynchba8af122005-06-27 15:17:10 -0700708 ri->rp->handler(ri, regs);
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100709 __get_cpu_var(current_kprobe) = NULL;
710 }
Rusty Lynch73649da2005-06-23 00:09:23 -0700711
Rusty Lynchba8af122005-06-27 15:17:10 -0700712 orig_ret_address = (unsigned long)ri->ret_addr;
bibo,mao99219a32006-10-02 02:17:35 -0700713 recycle_rp_inst(ri, &empty_rp);
Rusty Lynchba8af122005-06-27 15:17:10 -0700714
715 if (orig_ret_address != trampoline_address)
716 /*
717 * This is the real return address. Any other
718 * instances associated with this task are for
719 * other calls deeper on the call stack
720 */
721 break;
Rusty Lynch73649da2005-06-23 00:09:23 -0700722 }
Rusty Lynchba8af122005-06-27 15:17:10 -0700723
Ananth N Mavinakayanahalli0f95b7f2007-05-08 00:28:27 -0700724 kretprobe_assert(ri, orig_ret_address, trampoline_address);
Rusty Lynchba8af122005-06-27 15:17:10 -0700725
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700726 kretprobe_hash_unlock(current, &flags);
Rusty Lynchba8af122005-06-27 15:17:10 -0700727
bibo,mao99219a32006-10-02 02:17:35 -0700728 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
729 hlist_del(&ri->hlist);
730 kfree(ri);
731 }
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100732 return (void *)orig_ret_address;
Rusty Lynch73649da2005-06-23 00:09:23 -0700733}
734
735/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * Called after single-stepping. p->addr is the address of the
737 * instruction whose first byte has been replaced by the "int 3"
738 * instruction. To avoid the SMP problems that can occur when we
739 * temporarily put back the original opcode to single-step, we
740 * single-stepped a copy of the instruction. The address of this
741 * copy is p->ainsn.insn.
742 *
743 * This function prepares to return from the post-single-step
744 * interrupt. We have to fix up the stack as follows:
745 *
746 * 0) Except in the case of absolute or indirect jump or call instructions,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100747 * the new ip is relative to the copied instruction. We need to make
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 * it relative to the original instruction.
749 *
750 * 1) If the single-stepped instruction was pushfl, then the TF and IF
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100751 * flags are set in the just-pushed flags, and may need to be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 *
753 * 2) If the single-stepped instruction was a call, the return address
754 * that is atop the stack is the address following the copied instruction.
755 * We need to make it the address following the original instruction.
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100756 *
757 * If this is the first time we've single-stepped the instruction at
758 * this probepoint, and the instruction is boostable, boost it: add a
759 * jump instruction after the copied instruction, that jumps to the next
760 * instruction after the probepoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800762static void __kprobes resume_execution(struct kprobe *p,
763 struct pt_regs *regs, struct kprobe_ctlblk *kcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100765 unsigned long *tos = stack_addr(regs);
766 unsigned long copy_ip = (unsigned long)p->ainsn.insn;
767 unsigned long orig_ip = (unsigned long)p->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 kprobe_opcode_t *insn = p->ainsn.insn;
769
770 /*skip the REX prefix*/
Harvey Harrison99309272008-01-30 13:32:14 +0100771 if (is_REX_prefix(insn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 insn++;
773
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100774 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 switch (*insn) {
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100776 case 0x9c: /* pushfl */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100777 *tos &= ~(X86_EFLAGS_TF | X86_EFLAGS_IF);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100778 *tos |= kcb->kprobe_old_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 break;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100780 case 0xc2: /* iret/ret/lret */
781 case 0xc3:
Prasanna S Panchamukhi0b9e2ca2005-05-05 16:15:40 -0700782 case 0xca:
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100783 case 0xcb:
784 case 0xcf:
785 case 0xea: /* jmp absolute -- ip is correct */
786 /* ip is already adjusted, no more changes required */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100787 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100788 goto no_change;
789 case 0xe8: /* call relative - Fix return addr */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100790 *tos = orig_ip + (*tos - copy_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 break;
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100792#ifdef CONFIG_X86_32
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100793 case 0x9a: /* call absolute -- same as call absolute, indirect */
794 *tos = orig_ip + (*tos - copy_ip);
795 goto no_change;
796#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 case 0xff:
Satoshi Oshimadc49e342006-05-20 15:00:21 -0700798 if ((insn[1] & 0x30) == 0x10) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100799 /*
800 * call absolute, indirect
801 * Fix return addr; ip is correct.
802 * But this is not boostable
803 */
804 *tos = orig_ip + (*tos - copy_ip);
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100805 goto no_change;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100806 } else if (((insn[1] & 0x31) == 0x20) ||
807 ((insn[1] & 0x31) == 0x21)) {
808 /*
809 * jmp near and far, absolute indirect
810 * ip is correct. And this is boostable
811 */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100812 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100813 goto no_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 default:
816 break;
817 }
818
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100819 if (p->ainsn.boostable == 0) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100820 if ((regs->ip > copy_ip) &&
821 (regs->ip - copy_ip) + 5 < MAX_INSN_SIZE) {
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100822 /*
823 * These instructions can be executed directly if it
824 * jumps back to correct address.
825 */
826 set_jmp_op((void *)regs->ip,
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100827 (void *)orig_ip + (regs->ip - copy_ip));
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100828 p->ainsn.boostable = 1;
829 } else {
830 p->ainsn.boostable = -1;
831 }
832 }
833
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100834 regs->ip += orig_ip - copy_ip;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100835
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100836no_change:
Roland McGrath1ecc7982008-01-30 13:30:54 +0100837 restore_btf();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100840/*
841 * Interrupts are disabled on entry as trap1 is an interrupt gate and they
842 * remain disabled thoroughout this function.
843 */
844static int __kprobes post_kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800846 struct kprobe *cur = kprobe_running();
847 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
848
849 if (!cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return 0;
851
Yakov Lerneracb5b8a2008-03-16 03:21:21 -0500852 resume_execution(cur, regs, kcb);
853 regs->flags |= kcb->kprobe_saved_flags;
Yakov Lerneracb5b8a2008-03-16 03:21:21 -0500854
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800855 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
856 kcb->kprobe_status = KPROBE_HIT_SSDONE;
857 cur->post_handler(cur, regs, 0);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100860 /* Restore back the original saved kprobes variables and continue. */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800861 if (kcb->kprobe_status == KPROBE_REENTER) {
862 restore_previous_kprobe(kcb);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700863 goto out;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700864 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800865 reset_current_kprobe();
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700866out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 preempt_enable_no_resched();
868
869 /*
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100870 * if somebody else is singlestepping across a probe point, flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 * will have TF set, in which case, continue the remaining processing
872 * of do_debug, as if this is not a probe hit.
873 */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100874 if (regs->flags & X86_EFLAGS_TF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return 0;
876
877 return 1;
878}
879
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700880int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800882 struct kprobe *cur = kprobe_running();
883 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
884
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100885 switch (kcb->kprobe_status) {
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800886 case KPROBE_HIT_SS:
887 case KPROBE_REENTER:
888 /*
889 * We are here because the instruction being single
890 * stepped caused a page fault. We reset the current
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100891 * kprobe and the ip points back to the probe address
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800892 * and allow the page fault handler to continue as a
893 * normal page fault.
894 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100895 regs->ip = (unsigned long)cur->addr;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100896 regs->flags |= kcb->kprobe_old_flags;
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800897 if (kcb->kprobe_status == KPROBE_REENTER)
898 restore_previous_kprobe(kcb);
899 else
900 reset_current_kprobe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 preempt_enable_no_resched();
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800902 break;
903 case KPROBE_HIT_ACTIVE:
904 case KPROBE_HIT_SSDONE:
905 /*
906 * We increment the nmissed count for accounting,
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100907 * we can also use npre/npostfault count for accounting
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800908 * these specific fault cases.
909 */
910 kprobes_inc_nmissed_count(cur);
911
912 /*
913 * We come here because instructions in the pre/post
914 * handler caused the page_fault, this could happen
915 * if handler tries to access user space by
916 * copy_from_user(), get_user() etc. Let the
917 * user-specified handler try to fix it first.
918 */
919 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr))
920 return 1;
921
922 /*
923 * In case the user-specified fault handler returned
924 * zero, try to fix up.
925 */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100926 if (fixup_exception(regs))
927 return 1;
Harvey Harrison6d485832008-01-30 13:31:41 +0100928
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800929 /*
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100930 * fixup routine could not handle it,
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800931 * Let do_page_fault() fix it.
932 */
933 break;
934 default:
935 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 return 0;
938}
939
940/*
941 * Wrapper routine for handling exceptions.
942 */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700943int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
944 unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Jan Engelhardtade1af72008-01-30 13:33:23 +0100946 struct die_args *args = data;
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800947 int ret = NOTIFY_DONE;
948
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100949 if (args->regs && user_mode_vm(args->regs))
bibo,mao2326c772006-03-26 01:38:21 -0800950 return ret;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 switch (val) {
953 case DIE_INT3:
954 if (kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800955 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 break;
957 case DIE_DEBUG:
958 if (post_kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800959 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 break;
961 case DIE_GPF:
Quentin Barnesb506a9d2008-01-30 13:32:32 +0100962 /*
963 * To be potentially processing a kprobe fault and to
964 * trust the result from kprobe_running(), we have
965 * be non-preemptible.
966 */
967 if (!preemptible() && kprobe_running() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 kprobe_fault_handler(args->regs, args->trapnr))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800969 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 break;
971 default:
972 break;
973 }
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800974 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700977int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
979 struct jprobe *jp = container_of(p, struct jprobe, kp);
980 unsigned long addr;
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800981 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800983 kcb->jprobe_saved_regs = *regs;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100984 kcb->jprobe_saved_sp = stack_addr(regs);
985 addr = (unsigned long)(kcb->jprobe_saved_sp);
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 /*
988 * As Linus pointed out, gcc assumes that the callee
989 * owns the argument space and could overwrite it, e.g.
990 * tailcall optimization. So, to be absolutely safe
991 * we also save and restore enough stack bytes to cover
992 * the argument area.
993 */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800994 memcpy(kcb->jprobes_stack, (kprobe_opcode_t *)addr,
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100995 MIN_STACK_SIZE(addr));
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100996 regs->flags &= ~X86_EFLAGS_IF;
Peter Zijlstra58dfe882007-10-11 22:25:25 +0200997 trace_hardirqs_off();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100998 regs->ip = (unsigned long)(jp->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return 1;
1000}
1001
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -07001002void __kprobes jprobe_return(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001004 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
1005
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001006 asm volatile (
1007#ifdef CONFIG_X86_64
1008 " xchg %%rbx,%%rsp \n"
1009#else
1010 " xchgl %%ebx,%%esp \n"
1011#endif
1012 " int3 \n"
1013 " .globl jprobe_return_end\n"
1014 " jprobe_return_end: \n"
1015 " nop \n"::"b"
1016 (kcb->jprobe_saved_sp):"memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -07001019int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001021 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001022 u8 *addr = (u8 *) (regs->ip - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct jprobe *jp = container_of(p, struct jprobe, kp);
1024
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001025 if ((addr > (u8 *) jprobe_return) &&
1026 (addr < (u8 *) jprobe_return_end)) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001027 if (stack_addr(regs) != kcb->jprobe_saved_sp) {
Masami Hiramatsu29b6cd72007-12-18 18:05:58 +01001028 struct pt_regs *saved_regs = &kcb->jprobe_saved_regs;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001029 printk(KERN_ERR
1030 "current sp %p does not match saved sp %p\n",
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001031 stack_addr(regs), kcb->jprobe_saved_sp);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001032 printk(KERN_ERR "Saved registers for jprobe %p\n", jp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 show_registers(saved_regs);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001034 printk(KERN_ERR "Current registers\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 show_registers(regs);
1036 BUG();
1037 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001038 *regs = kcb->jprobe_saved_regs;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001039 memcpy((kprobe_opcode_t *)(kcb->jprobe_saved_sp),
1040 kcb->jprobes_stack,
1041 MIN_STACK_SIZE(kcb->jprobe_saved_sp));
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -08001042 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 1;
1044 }
1045 return 0;
1046}
Rusty Lynchba8af122005-06-27 15:17:10 -07001047
Rusty Lynch67729262005-07-05 18:54:50 -07001048int __init arch_init_kprobes(void)
Rusty Lynchba8af122005-06-27 15:17:10 -07001049{
Masami Hiramatsuda07ab02008-01-30 13:31:21 +01001050 return 0;
Rusty Lynchba8af122005-06-27 15:17:10 -07001051}
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001052
1053int __kprobes arch_trampoline_kprobe(struct kprobe *p)
1054{
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001055 return 0;
1056}