blob: b8c6743a13daddad0446d686d3f36436b3ac7531 [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
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010063#ifdef CONFIG_X86_64
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010064#define stack_addr(regs) ((unsigned long *)regs->sp)
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010065#else
66/*
67 * "&regs->sp" looks wrong, but it's correct for x86_32. x86_32 CPUs
68 * don't save the ss and esp registers if the CPU is already in kernel
69 * mode when it traps. So for kprobes, regs->sp and regs->ss are not
70 * the [nonexistent] saved stack pointer and ss register, but rather
71 * the top 8 bytes of the pre-int3 stack. So &regs->sp happens to
72 * point to the top of the pre-int3 stack.
73 */
74#define stack_addr(regs) ((unsigned long *)&regs->sp)
75#endif
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010076
77#define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\
78 (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \
79 (b4##UL << 0x4)|(b5##UL << 0x5)|(b6##UL << 0x6)|(b7##UL << 0x7) | \
80 (b8##UL << 0x8)|(b9##UL << 0x9)|(ba##UL << 0xa)|(bb##UL << 0xb) | \
81 (bc##UL << 0xc)|(bd##UL << 0xd)|(be##UL << 0xe)|(bf##UL << 0xf)) \
82 << (row % 32))
83 /*
84 * Undefined/reserved opcodes, conditional jump, Opcode Extension
85 * Groups, and some special opcodes can not boost.
86 */
87static const u32 twobyte_is_boostable[256 / 32] = {
88 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
89 /* ---------------------------------------------- */
90 W(0x00, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0) | /* 00 */
91 W(0x10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 10 */
92 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 20 */
93 W(0x30, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 30 */
94 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 40 */
95 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */
96 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1) | /* 60 */
97 W(0x70, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) , /* 70 */
98 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 80 */
99 W(0x90, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 90 */
100 W(0xa0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* a0 */
101 W(0xb0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1) , /* b0 */
102 W(0xc0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* c0 */
103 W(0xd0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) , /* d0 */
104 W(0xe0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* e0 */
105 W(0xf0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0) /* f0 */
106 /* ----------------------------------------------- */
107 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
108};
109static const u32 onebyte_has_modrm[256 / 32] = {
110 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
111 /* ----------------------------------------------- */
112 W(0x00, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) | /* 00 */
113 W(0x10, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) , /* 10 */
114 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) | /* 20 */
115 W(0x30, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0) , /* 30 */
116 W(0x40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 40 */
117 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */
118 W(0x60, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0) | /* 60 */
119 W(0x70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 70 */
120 W(0x80, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 80 */
121 W(0x90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 90 */
122 W(0xa0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* a0 */
123 W(0xb0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* b0 */
124 W(0xc0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0) | /* c0 */
125 W(0xd0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1) , /* d0 */
126 W(0xe0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* e0 */
127 W(0xf0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) /* f0 */
128 /* ----------------------------------------------- */
129 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
130};
131static const u32 twobyte_has_modrm[256 / 32] = {
132 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
133 /* ----------------------------------------------- */
134 W(0x00, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1) | /* 0f */
135 W(0x10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0) , /* 1f */
136 W(0x20, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* 2f */
137 W(0x30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 3f */
138 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 4f */
139 W(0x50, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 5f */
140 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 6f */
141 W(0x70, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1) , /* 7f */
142 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 8f */
143 W(0x90, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 9f */
144 W(0xa0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1) | /* af */
145 W(0xb0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1) , /* bf */
146 W(0xc0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0) | /* cf */
147 W(0xd0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* df */
148 W(0xe0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* ef */
149 W(0xf0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0) /* ff */
150 /* ----------------------------------------------- */
151 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
152};
153#undef W
154
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700155struct kretprobe_blackpoint kretprobe_blacklist[] = {
156 {"__switch_to", }, /* This function switches only current task, but
157 doesn't switch kernel stack.*/
158 {NULL, NULL} /* Terminator */
159};
160const int kretprobe_blacklist_size = ARRAY_SIZE(kretprobe_blacklist);
161
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100162/* Insert a jump instruction at address 'from', which jumps to address 'to'.*/
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100163static void __kprobes set_jmp_op(void *from, void *to)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100164{
165 struct __arch_jmp_op {
166 char op;
167 s32 raddr;
168 } __attribute__((packed)) * jop;
169 jop = (struct __arch_jmp_op *)from;
170 jop->raddr = (s32)((long)(to) - ((long)(from) + 5));
171 jop->op = RELATIVEJUMP_INSTRUCTION;
172}
173
174/*
Harvey Harrison99309272008-01-30 13:32:14 +0100175 * Check for the REX prefix which can only exist on X86_64
176 * X86_32 always returns 0
177 */
178static int __kprobes is_REX_prefix(kprobe_opcode_t *insn)
179{
180#ifdef CONFIG_X86_64
181 if ((*insn & 0xf0) == 0x40)
182 return 1;
183#endif
184 return 0;
185}
186
187/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100188 * Returns non-zero if opcode is boostable.
189 * RIP relative instructions are adjusted at copying time in 64 bits mode
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100190 */
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100191static int __kprobes can_boost(kprobe_opcode_t *opcodes)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100192{
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100193 kprobe_opcode_t opcode;
194 kprobe_opcode_t *orig_opcodes = opcodes;
195
196retry:
197 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
198 return 0;
199 opcode = *(opcodes++);
200
201 /* 2nd-byte opcode */
202 if (opcode == 0x0f) {
203 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
204 return 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100205 return test_bit(*opcodes,
206 (unsigned long *)twobyte_is_boostable);
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100207 }
208
209 switch (opcode & 0xf0) {
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100210#ifdef CONFIG_X86_64
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100211 case 0x40:
212 goto retry; /* REX prefix is boostable */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100213#endif
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100214 case 0x60:
215 if (0x63 < opcode && opcode < 0x67)
216 goto retry; /* prefixes */
217 /* can't boost Address-size override and bound */
218 return (opcode != 0x62 && opcode != 0x67);
219 case 0x70:
220 return 0; /* can't boost conditional jump */
221 case 0xc0:
222 /* can't boost software-interruptions */
223 return (0xc1 < opcode && opcode < 0xcc) || opcode == 0xcf;
224 case 0xd0:
225 /* can boost AA* and XLAT */
226 return (opcode == 0xd4 || opcode == 0xd5 || opcode == 0xd7);
227 case 0xe0:
228 /* can boost in/out and absolute jmps */
229 return ((opcode & 0x04) || opcode == 0xea);
230 case 0xf0:
231 if ((opcode & 0x0c) == 0 && opcode != 0xf1)
232 goto retry; /* lock/rep(ne) prefix */
233 /* clear and set flags are boostable */
234 return (opcode == 0xf5 || (0xf7 < opcode && opcode < 0xfe));
235 default:
236 /* segment override prefixes are boostable */
237 if (opcode == 0x26 || opcode == 0x36 || opcode == 0x3e)
238 goto retry; /* prefixes */
239 /* CS override prefix and call are not boostable */
240 return (opcode != 0x2e && opcode != 0x9a);
241 }
242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100245 * Returns non-zero if opcode modifies the interrupt flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 */
Andrew Morton86454192007-11-26 20:42:19 +0100247static int __kprobes is_IF_modifier(kprobe_opcode_t *insn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 switch (*insn) {
250 case 0xfa: /* cli */
251 case 0xfb: /* sti */
252 case 0xcf: /* iret/iretd */
253 case 0x9d: /* popf/popfd */
254 return 1;
255 }
Harvey Harrison99309272008-01-30 13:32:14 +0100256
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100257 /*
Harvey Harrison99309272008-01-30 13:32:14 +0100258 * on X86_64, 0x40-0x4f are REX prefixes so we need to look
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100259 * at the next byte instead.. but of course not recurse infinitely
260 */
Harvey Harrison99309272008-01-30 13:32:14 +0100261 if (is_REX_prefix(insn))
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100262 return is_IF_modifier(++insn);
Harvey Harrison99309272008-01-30 13:32:14 +0100263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return 0;
265}
266
267/*
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.
Harvey Harrison31f80e42008-01-30 13:32:16 +0100272 * Only applicable to 64-bit x86.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100274static void __kprobes fix_riprel(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Harvey Harrison31f80e42008-01-30 13:32:16 +0100276#ifdef CONFIG_X86_64
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100277 u8 *insn = p->ainsn.insn;
278 s64 disp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 int need_modrm;
280
281 /* Skip legacy instruction prefixes. */
282 while (1) {
283 switch (*insn) {
284 case 0x66:
285 case 0x67:
286 case 0x2e:
287 case 0x3e:
288 case 0x26:
289 case 0x64:
290 case 0x65:
291 case 0x36:
292 case 0xf0:
293 case 0xf3:
294 case 0xf2:
295 ++insn;
296 continue;
297 }
298 break;
299 }
300
301 /* Skip REX instruction prefix. */
Harvey Harrison99309272008-01-30 13:32:14 +0100302 if (is_REX_prefix(insn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 ++insn;
304
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100305 if (*insn == 0x0f) {
306 /* Two-byte opcode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 ++insn;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100308 need_modrm = test_bit(*insn,
309 (unsigned long *)twobyte_has_modrm);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100310 } else
311 /* One-byte opcode. */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100312 need_modrm = test_bit(*insn,
313 (unsigned long *)onebyte_has_modrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 if (need_modrm) {
316 u8 modrm = *++insn;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100317 if ((modrm & 0xc7) == 0x05) {
318 /* %rip+disp32 addressing mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* Displacement follows ModRM byte. */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100320 ++insn;
321 /*
322 * The copied instruction uses the %rip-relative
323 * addressing mode. Adjust the displacement for the
324 * difference between the original location of this
325 * instruction and the location of the copy that will
326 * actually be run. The tricky bit here is making sure
327 * that the sign extension happens correctly in this
328 * calculation, since we need a signed 32-bit result to
329 * be sign-extended to 64 bits when it's added to the
330 * %rip value and yield the same 64-bit result that the
331 * sign-extension of the original signed 32-bit
332 * displacement would have given.
333 */
334 disp = (u8 *) p->addr + *((s32 *) insn) -
335 (u8 *) p->ainsn.insn;
336 BUG_ON((s64) (s32) disp != disp); /* Sanity check. */
337 *(s32 *)insn = (s32) disp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339 }
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100340#endif
Harvey Harrison31f80e42008-01-30 13:32:16 +0100341}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800343static void __kprobes arch_copy_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100345 memcpy(p->ainsn.insn, p->addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
Harvey Harrison31f80e42008-01-30 13:32:16 +0100346
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100347 fix_riprel(p);
Harvey Harrison31f80e42008-01-30 13:32:16 +0100348
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100349 if (can_boost(p->addr))
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100350 p->ainsn.boostable = 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100351 else
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100352 p->ainsn.boostable = -1;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100353
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700354 p->opcode = *p->addr;
355}
356
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100357int __kprobes arch_prepare_kprobe(struct kprobe *p)
358{
359 /* insn: must be on special executable page on x86. */
360 p->ainsn.insn = get_insn_slot();
361 if (!p->ainsn.insn)
362 return -ENOMEM;
363 arch_copy_kprobe(p);
364 return 0;
365}
366
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700367void __kprobes arch_arm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700368{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200369 text_poke(p->addr, ((unsigned char []){BREAKPOINT_INSTRUCTION}), 1);
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700370}
371
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700372void __kprobes arch_disarm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700373{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200374 text_poke(p->addr, &p->opcode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -0800377void __kprobes arch_remove_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800379 mutex_lock(&kprobe_mutex);
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100380 free_insn_slot(p->ainsn.insn, (p->ainsn.boostable == 1));
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800381 mutex_unlock(&kprobe_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700384static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700385{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800386 kcb->prev_kprobe.kp = kprobe_running();
387 kcb->prev_kprobe.status = kcb->kprobe_status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100388 kcb->prev_kprobe.old_flags = kcb->kprobe_old_flags;
389 kcb->prev_kprobe.saved_flags = kcb->kprobe_saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700390}
391
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700392static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700393{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800394 __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp;
395 kcb->kprobe_status = kcb->prev_kprobe.status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100396 kcb->kprobe_old_flags = kcb->prev_kprobe.old_flags;
397 kcb->kprobe_saved_flags = kcb->prev_kprobe.saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700398}
399
Prasanna S Panchamukhi3b602112006-04-18 22:22:00 -0700400static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs,
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800401 struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700402{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800403 __get_cpu_var(current_kprobe) = p;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100404 kcb->kprobe_saved_flags = kcb->kprobe_old_flags
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100405 = (regs->flags & (X86_EFLAGS_TF | X86_EFLAGS_IF));
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700406 if (is_IF_modifier(p->ainsn.insn))
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100407 kcb->kprobe_saved_flags &= ~X86_EFLAGS_IF;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700408}
409
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100410static void __kprobes clear_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100411{
412 if (test_thread_flag(TIF_DEBUGCTLMSR))
Jan Beulich5b0e5082008-03-10 13:11:17 +0000413 update_debugctlmsr(0);
Roland McGrath1ecc7982008-01-30 13:30:54 +0100414}
415
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100416static void __kprobes restore_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100417{
418 if (test_thread_flag(TIF_DEBUGCTLMSR))
Jan Beulich5b0e5082008-03-10 13:11:17 +0000419 update_debugctlmsr(current->thread.debugctlmsr);
Roland McGrath1ecc7982008-01-30 13:30:54 +0100420}
421
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700422static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Roland McGrath1ecc7982008-01-30 13:30:54 +0100424 clear_btf();
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100425 regs->flags |= X86_EFLAGS_TF;
426 regs->flags &= ~X86_EFLAGS_IF;
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100427 /* single step inline if the instruction is an int3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (p->opcode == BREAKPOINT_INSTRUCTION)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100429 regs->ip = (unsigned long)p->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 else
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100431 regs->ip = (unsigned long)p->ainsn.insn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800434/* Called with kretprobe_lock held */
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700435void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700436 struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700437{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100438 unsigned long *sara = stack_addr(regs);
Rusty Lynch73649da2005-06-23 00:09:23 -0700439
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700440 ri->ret_addr = (kprobe_opcode_t *) *sara;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100441
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700442 /* Replace the return addr with trampoline addr */
443 *sara = (unsigned long) &kretprobe_trampoline;
Rusty Lynch73649da2005-06-23 00:09:23 -0700444}
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100445
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100446static void __kprobes setup_singlestep(struct kprobe *p, struct pt_regs *regs,
447 struct kprobe_ctlblk *kcb)
448{
449#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PM)
450 if (p->ainsn.boostable == 1 && !p->post_handler) {
451 /* Boost up -- we can execute copied instructions directly */
452 reset_current_kprobe();
453 regs->ip = (unsigned long)p->ainsn.insn;
454 preempt_enable_no_resched();
455 return;
456 }
457#endif
458 prepare_singlestep(p, regs);
459 kcb->kprobe_status = KPROBE_HIT_SS;
460}
461
Harvey Harrison40102d42008-01-30 13:32:02 +0100462/*
463 * We have reentered the kprobe_handler(), since another probe was hit while
464 * within the handler. We save the original kprobes variables and just single
465 * step on the instruction of the new probe without calling any user handlers.
466 */
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100467static int __kprobes reenter_kprobe(struct kprobe *p, struct pt_regs *regs,
468 struct kprobe_ctlblk *kcb)
Harvey Harrison40102d42008-01-30 13:32:02 +0100469{
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100470 switch (kcb->kprobe_status) {
471 case KPROBE_HIT_SSDONE:
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100472#ifdef CONFIG_X86_64
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100473 /* TODO: Provide re-entrancy from post_kprobes_handler() and
474 * avoid exception stack corruption while single-stepping on
475 * the instruction of the new probe.
476 */
477 arch_disarm_kprobe(p);
478 regs->ip = (unsigned long)p->addr;
479 reset_current_kprobe();
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100480 preempt_enable_no_resched();
481 break;
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100482#endif
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100483 case KPROBE_HIT_ACTIVE:
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100484 save_previous_kprobe(kcb);
485 set_current_kprobe(p, regs, kcb);
486 kprobes_inc_nmissed_count(p);
487 prepare_singlestep(p, regs);
488 kcb->kprobe_status = KPROBE_REENTER;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100489 break;
490 case KPROBE_HIT_SS:
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100491 if (p == kprobe_running()) {
gorcunov@gmail.coma5c15d42008-03-28 17:56:56 +0300492 regs->flags &= ~X86_EFLAGS_TF;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100493 regs->flags |= kcb->kprobe_saved_flags;
494 return 0;
495 } else {
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100496 /* A probe has been hit in the codepath leading up
497 * to, or just after, single-stepping of a probed
498 * instruction. This entire codepath should strictly
499 * reside in .kprobes.text section. Raise a warning
500 * to highlight this peculiar case.
501 */
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100502 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100503 default:
504 /* impossible cases */
505 WARN_ON(1);
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100506 return 0;
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100507 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100508
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100509 return 1;
Harvey Harrison40102d42008-01-30 13:32:02 +0100510}
Rusty Lynch73649da2005-06-23 00:09:23 -0700511
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100512/*
513 * Interrupts are disabled on entry as trap3 is an interrupt gate and they
514 * remain disabled thorough out this function.
515 */
516static int __kprobes kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100518 kprobe_opcode_t *addr;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100519 struct kprobe *p;
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800520 struct kprobe_ctlblk *kcb;
521
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100522 addr = (kprobe_opcode_t *)(regs->ip - sizeof(kprobe_opcode_t));
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100523 if (*addr != BREAKPOINT_INSTRUCTION) {
524 /*
525 * The breakpoint instruction was removed right
526 * after we hit it. Another cpu has removed
527 * either a probepoint or a debugger breakpoint
528 * at this address. In either case, no further
529 * handling of this interrupt is appropriate.
530 * Back up over the (now missing) int3 and run
531 * the original instruction.
532 */
533 regs->ip = (unsigned long)addr;
534 return 1;
535 }
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100536
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800537 /*
538 * We don't want to be preempted for the entire
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100539 * duration of kprobe processing. We conditionally
540 * re-enable preemption at the end of this function,
541 * and also in reenter_kprobe() and setup_singlestep().
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800542 */
543 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100545 kcb = get_kprobe_ctlblk();
Harvey Harrisonb9760152008-01-30 13:32:19 +0100546 p = get_kprobe(addr);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100547
Harvey Harrisonb9760152008-01-30 13:32:19 +0100548 if (p) {
Harvey Harrisonb9760152008-01-30 13:32:19 +0100549 if (kprobe_running()) {
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100550 if (reenter_kprobe(p, regs, kcb))
551 return 1;
Harvey Harrisonb9760152008-01-30 13:32:19 +0100552 } else {
553 set_current_kprobe(p, regs, kcb);
554 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 /*
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100557 * If we have no pre-handler or it returned 0, we
558 * continue with normal processing. If we have a
559 * pre-handler and it returned non-zero, it prepped
560 * for calling the break_handler below on re-entry
561 * for jprobe processing, so get out doing nothing
562 * more here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 */
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100564 if (!p->pre_handler || !p->pre_handler(p, regs))
565 setup_singlestep(p, regs, kcb);
566 return 1;
Harvey Harrisonb9760152008-01-30 13:32:19 +0100567 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100568 } else if (kprobe_running()) {
569 p = __get_cpu_var(current_kprobe);
570 if (p->break_handler && p->break_handler(p, regs)) {
571 setup_singlestep(p, regs, kcb);
572 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100574 } /* else: not a kprobe fault; let the kernel handle it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800576 preempt_enable_no_resched();
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100577 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
580/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100581 * When a retprobed function returns, this code saves registers and
582 * calls trampoline_handler() runs, which calls the kretprobe's handler.
Rusty Lynch73649da2005-06-23 00:09:23 -0700583 */
Harvey Harrisonf1452d42008-02-14 15:23:53 -0800584static void __used __kprobes kretprobe_trampoline_holder(void)
Harvey Harrison10175792008-01-30 13:33:01 +0100585{
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100586 asm volatile (
587 ".global kretprobe_trampoline\n"
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100588 "kretprobe_trampoline: \n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100589#ifdef CONFIG_X86_64
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100590 /* We don't bother saving the ss register */
591 " pushq %rsp\n"
592 " pushfq\n"
593 /*
594 * Skip cs, ip, orig_ax.
595 * trampoline_handler() will plug in these values
596 */
597 " subq $24, %rsp\n"
598 " pushq %rdi\n"
599 " pushq %rsi\n"
600 " pushq %rdx\n"
601 " pushq %rcx\n"
602 " pushq %rax\n"
603 " pushq %r8\n"
604 " pushq %r9\n"
605 " pushq %r10\n"
606 " pushq %r11\n"
607 " pushq %rbx\n"
608 " pushq %rbp\n"
609 " pushq %r12\n"
610 " pushq %r13\n"
611 " pushq %r14\n"
612 " pushq %r15\n"
613 " movq %rsp, %rdi\n"
614 " call trampoline_handler\n"
615 /* Replace saved sp with true return address. */
616 " movq %rax, 152(%rsp)\n"
617 " popq %r15\n"
618 " popq %r14\n"
619 " popq %r13\n"
620 " popq %r12\n"
621 " popq %rbp\n"
622 " popq %rbx\n"
623 " popq %r11\n"
624 " popq %r10\n"
625 " popq %r9\n"
626 " popq %r8\n"
627 " popq %rax\n"
628 " popq %rcx\n"
629 " popq %rdx\n"
630 " popq %rsi\n"
631 " popq %rdi\n"
632 /* Skip orig_ax, ip, cs */
633 " addq $24, %rsp\n"
634 " popfq\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100635#else
636 " pushf\n"
637 /*
638 * Skip cs, ip, orig_ax.
639 * trampoline_handler() will plug in these values
640 */
641 " subl $12, %esp\n"
642 " pushl %fs\n"
643 " pushl %ds\n"
644 " pushl %es\n"
645 " pushl %eax\n"
646 " pushl %ebp\n"
647 " pushl %edi\n"
648 " pushl %esi\n"
649 " pushl %edx\n"
650 " pushl %ecx\n"
651 " pushl %ebx\n"
652 " movl %esp, %eax\n"
653 " call trampoline_handler\n"
654 /* Move flags to cs */
655 " movl 52(%esp), %edx\n"
656 " movl %edx, 48(%esp)\n"
657 /* Replace saved flags with true return address. */
658 " movl %eax, 52(%esp)\n"
659 " popl %ebx\n"
660 " popl %ecx\n"
661 " popl %edx\n"
662 " popl %esi\n"
663 " popl %edi\n"
664 " popl %ebp\n"
665 " popl %eax\n"
666 /* Skip ip, orig_ax, es, ds, fs */
667 " addl $20, %esp\n"
668 " popf\n"
669#endif
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100670 " ret\n");
Harvey Harrison10175792008-01-30 13:33:01 +0100671}
Rusty Lynch73649da2005-06-23 00:09:23 -0700672
673/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100674 * Called from kretprobe_trampoline
Rusty Lynch73649da2005-06-23 00:09:23 -0700675 */
Harvey Harrisonf1452d42008-02-14 15:23:53 -0800676static __used __kprobes void *trampoline_handler(struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700677{
bibo,mao62c27be2006-10-02 02:17:33 -0700678 struct kretprobe_instance *ri = NULL;
bibo,mao99219a32006-10-02 02:17:35 -0700679 struct hlist_head *head, empty_rp;
bibo,mao62c27be2006-10-02 02:17:33 -0700680 struct hlist_node *node, *tmp;
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800681 unsigned long flags, orig_ret_address = 0;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100682 unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline;
Rusty Lynch73649da2005-06-23 00:09:23 -0700683
bibo,mao99219a32006-10-02 02:17:35 -0700684 INIT_HLIST_HEAD(&empty_rp);
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800685 spin_lock_irqsave(&kretprobe_lock, flags);
bibo,mao62c27be2006-10-02 02:17:33 -0700686 head = kretprobe_inst_table_head(current);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100687 /* fixup registers */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100688#ifdef CONFIG_X86_64
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100689 regs->cs = __KERNEL_CS;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100690#else
691 regs->cs = __KERNEL_CS | get_kernel_rpl();
692#endif
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100693 regs->ip = trampoline_address;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100694 regs->orig_ax = ~0UL;
Rusty Lynch73649da2005-06-23 00:09:23 -0700695
Rusty Lynchba8af122005-06-27 15:17:10 -0700696 /*
697 * It is possible to have multiple instances associated with a given
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100698 * task either because multiple functions in the call path have
699 * return probes installed on them, and/or more then one
Rusty Lynchba8af122005-06-27 15:17:10 -0700700 * return probe was registered for a target function.
701 *
702 * We can handle this because:
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100703 * - instances are always pushed into the head of the list
Rusty Lynchba8af122005-06-27 15:17:10 -0700704 * - when multiple return probes are registered for the same
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100705 * function, the (chronologically) first instance's ret_addr
706 * will be the real return address, and all the rest will
707 * point to kretprobe_trampoline.
Rusty Lynchba8af122005-06-27 15:17:10 -0700708 */
709 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
bibo,mao62c27be2006-10-02 02:17:33 -0700710 if (ri->task != current)
Rusty Lynchba8af122005-06-27 15:17:10 -0700711 /* another task is sharing our hash bucket */
bibo,mao62c27be2006-10-02 02:17:33 -0700712 continue;
Rusty Lynch73649da2005-06-23 00:09:23 -0700713
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100714 if (ri->rp && ri->rp->handler) {
715 __get_cpu_var(current_kprobe) = &ri->rp->kp;
716 get_kprobe_ctlblk()->kprobe_status = KPROBE_HIT_ACTIVE;
Rusty Lynchba8af122005-06-27 15:17:10 -0700717 ri->rp->handler(ri, regs);
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100718 __get_cpu_var(current_kprobe) = NULL;
719 }
Rusty Lynch73649da2005-06-23 00:09:23 -0700720
Rusty Lynchba8af122005-06-27 15:17:10 -0700721 orig_ret_address = (unsigned long)ri->ret_addr;
bibo,mao99219a32006-10-02 02:17:35 -0700722 recycle_rp_inst(ri, &empty_rp);
Rusty Lynchba8af122005-06-27 15:17:10 -0700723
724 if (orig_ret_address != trampoline_address)
725 /*
726 * This is the real return address. Any other
727 * instances associated with this task are for
728 * other calls deeper on the call stack
729 */
730 break;
Rusty Lynch73649da2005-06-23 00:09:23 -0700731 }
Rusty Lynchba8af122005-06-27 15:17:10 -0700732
Ananth N Mavinakayanahalli0f95b7f2007-05-08 00:28:27 -0700733 kretprobe_assert(ri, orig_ret_address, trampoline_address);
Rusty Lynchba8af122005-06-27 15:17:10 -0700734
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800735 spin_unlock_irqrestore(&kretprobe_lock, flags);
Rusty Lynchba8af122005-06-27 15:17:10 -0700736
bibo,mao99219a32006-10-02 02:17:35 -0700737 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
738 hlist_del(&ri->hlist);
739 kfree(ri);
740 }
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100741 return (void *)orig_ret_address;
Rusty Lynch73649da2005-06-23 00:09:23 -0700742}
743
744/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 * Called after single-stepping. p->addr is the address of the
746 * instruction whose first byte has been replaced by the "int 3"
747 * instruction. To avoid the SMP problems that can occur when we
748 * temporarily put back the original opcode to single-step, we
749 * single-stepped a copy of the instruction. The address of this
750 * copy is p->ainsn.insn.
751 *
752 * This function prepares to return from the post-single-step
753 * interrupt. We have to fix up the stack as follows:
754 *
755 * 0) Except in the case of absolute or indirect jump or call instructions,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100756 * the new ip is relative to the copied instruction. We need to make
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 * it relative to the original instruction.
758 *
759 * 1) If the single-stepped instruction was pushfl, then the TF and IF
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100760 * flags are set in the just-pushed flags, and may need to be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 *
762 * 2) If the single-stepped instruction was a call, the return address
763 * that is atop the stack is the address following the copied instruction.
764 * We need to make it the address following the original instruction.
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100765 *
766 * If this is the first time we've single-stepped the instruction at
767 * this probepoint, and the instruction is boostable, boost it: add a
768 * jump instruction after the copied instruction, that jumps to the next
769 * instruction after the probepoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800771static void __kprobes resume_execution(struct kprobe *p,
772 struct pt_regs *regs, struct kprobe_ctlblk *kcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100774 unsigned long *tos = stack_addr(regs);
775 unsigned long copy_ip = (unsigned long)p->ainsn.insn;
776 unsigned long orig_ip = (unsigned long)p->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 kprobe_opcode_t *insn = p->ainsn.insn;
778
779 /*skip the REX prefix*/
Harvey Harrison99309272008-01-30 13:32:14 +0100780 if (is_REX_prefix(insn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 insn++;
782
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100783 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 switch (*insn) {
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100785 case 0x9c: /* pushfl */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100786 *tos &= ~(X86_EFLAGS_TF | X86_EFLAGS_IF);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100787 *tos |= kcb->kprobe_old_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 break;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100789 case 0xc2: /* iret/ret/lret */
790 case 0xc3:
Prasanna S Panchamukhi0b9e2ca2005-05-05 16:15:40 -0700791 case 0xca:
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100792 case 0xcb:
793 case 0xcf:
794 case 0xea: /* jmp absolute -- ip is correct */
795 /* ip is already adjusted, no more changes required */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100796 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100797 goto no_change;
798 case 0xe8: /* call relative - Fix return addr */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100799 *tos = orig_ip + (*tos - copy_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 break;
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100801#ifdef CONFIG_X86_32
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100802 case 0x9a: /* call absolute -- same as call absolute, indirect */
803 *tos = orig_ip + (*tos - copy_ip);
804 goto no_change;
805#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 case 0xff:
Satoshi Oshimadc49e342006-05-20 15:00:21 -0700807 if ((insn[1] & 0x30) == 0x10) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100808 /*
809 * call absolute, indirect
810 * Fix return addr; ip is correct.
811 * But this is not boostable
812 */
813 *tos = orig_ip + (*tos - copy_ip);
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100814 goto no_change;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100815 } else if (((insn[1] & 0x31) == 0x20) ||
816 ((insn[1] & 0x31) == 0x21)) {
817 /*
818 * jmp near and far, absolute indirect
819 * ip is correct. And this is boostable
820 */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100821 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100822 goto no_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 default:
825 break;
826 }
827
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100828 if (p->ainsn.boostable == 0) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100829 if ((regs->ip > copy_ip) &&
830 (regs->ip - copy_ip) + 5 < MAX_INSN_SIZE) {
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100831 /*
832 * These instructions can be executed directly if it
833 * jumps back to correct address.
834 */
835 set_jmp_op((void *)regs->ip,
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100836 (void *)orig_ip + (regs->ip - copy_ip));
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100837 p->ainsn.boostable = 1;
838 } else {
839 p->ainsn.boostable = -1;
840 }
841 }
842
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100843 regs->ip += orig_ip - copy_ip;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100844
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100845no_change:
Roland McGrath1ecc7982008-01-30 13:30:54 +0100846 restore_btf();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100849/*
850 * Interrupts are disabled on entry as trap1 is an interrupt gate and they
851 * remain disabled thoroughout this function.
852 */
853static int __kprobes post_kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800855 struct kprobe *cur = kprobe_running();
856 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
857
858 if (!cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return 0;
860
Yakov Lerneracb5b8a2008-03-16 03:21:21 -0500861 resume_execution(cur, regs, kcb);
862 regs->flags |= kcb->kprobe_saved_flags;
863 trace_hardirqs_fixup_flags(regs->flags);
864
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800865 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
866 kcb->kprobe_status = KPROBE_HIT_SSDONE;
867 cur->post_handler(cur, regs, 0);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100870 /* Restore back the original saved kprobes variables and continue. */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800871 if (kcb->kprobe_status == KPROBE_REENTER) {
872 restore_previous_kprobe(kcb);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700873 goto out;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700874 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800875 reset_current_kprobe();
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700876out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 preempt_enable_no_resched();
878
879 /*
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100880 * if somebody else is singlestepping across a probe point, flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 * will have TF set, in which case, continue the remaining processing
882 * of do_debug, as if this is not a probe hit.
883 */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100884 if (regs->flags & X86_EFLAGS_TF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return 0;
886
887 return 1;
888}
889
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700890int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800892 struct kprobe *cur = kprobe_running();
893 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
894
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100895 switch (kcb->kprobe_status) {
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800896 case KPROBE_HIT_SS:
897 case KPROBE_REENTER:
898 /*
899 * We are here because the instruction being single
900 * stepped caused a page fault. We reset the current
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100901 * kprobe and the ip points back to the probe address
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800902 * and allow the page fault handler to continue as a
903 * normal page fault.
904 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100905 regs->ip = (unsigned long)cur->addr;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100906 regs->flags |= kcb->kprobe_old_flags;
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800907 if (kcb->kprobe_status == KPROBE_REENTER)
908 restore_previous_kprobe(kcb);
909 else
910 reset_current_kprobe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 preempt_enable_no_resched();
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800912 break;
913 case KPROBE_HIT_ACTIVE:
914 case KPROBE_HIT_SSDONE:
915 /*
916 * We increment the nmissed count for accounting,
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100917 * we can also use npre/npostfault count for accounting
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800918 * these specific fault cases.
919 */
920 kprobes_inc_nmissed_count(cur);
921
922 /*
923 * We come here because instructions in the pre/post
924 * handler caused the page_fault, this could happen
925 * if handler tries to access user space by
926 * copy_from_user(), get_user() etc. Let the
927 * user-specified handler try to fix it first.
928 */
929 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr))
930 return 1;
931
932 /*
933 * In case the user-specified fault handler returned
934 * zero, try to fix up.
935 */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100936 if (fixup_exception(regs))
937 return 1;
Harvey Harrison6d485832008-01-30 13:31:41 +0100938
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800939 /*
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100940 * fixup routine could not handle it,
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800941 * Let do_page_fault() fix it.
942 */
943 break;
944 default:
945 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947 return 0;
948}
949
950/*
951 * Wrapper routine for handling exceptions.
952 */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700953int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
954 unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Jan Engelhardtade1af72008-01-30 13:33:23 +0100956 struct die_args *args = data;
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800957 int ret = NOTIFY_DONE;
958
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100959 if (args->regs && user_mode_vm(args->regs))
bibo,mao2326c772006-03-26 01:38:21 -0800960 return ret;
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 switch (val) {
963 case DIE_INT3:
964 if (kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800965 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 break;
967 case DIE_DEBUG:
968 if (post_kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800969 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 break;
971 case DIE_GPF:
Quentin Barnesb506a9d2008-01-30 13:32:32 +0100972 /*
973 * To be potentially processing a kprobe fault and to
974 * trust the result from kprobe_running(), we have
975 * be non-preemptible.
976 */
977 if (!preemptible() && kprobe_running() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 kprobe_fault_handler(args->regs, args->trapnr))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800979 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 break;
981 default:
982 break;
983 }
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800984 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700987int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 struct jprobe *jp = container_of(p, struct jprobe, kp);
990 unsigned long addr;
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800991 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800993 kcb->jprobe_saved_regs = *regs;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100994 kcb->jprobe_saved_sp = stack_addr(regs);
995 addr = (unsigned long)(kcb->jprobe_saved_sp);
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /*
998 * As Linus pointed out, gcc assumes that the callee
999 * owns the argument space and could overwrite it, e.g.
1000 * tailcall optimization. So, to be absolutely safe
1001 * we also save and restore enough stack bytes to cover
1002 * the argument area.
1003 */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001004 memcpy(kcb->jprobes_stack, (kprobe_opcode_t *)addr,
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001005 MIN_STACK_SIZE(addr));
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001006 regs->flags &= ~X86_EFLAGS_IF;
Peter Zijlstra58dfe882007-10-11 22:25:25 +02001007 trace_hardirqs_off();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001008 regs->ip = (unsigned long)(jp->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return 1;
1010}
1011
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -07001012void __kprobes jprobe_return(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001014 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
1015
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001016 asm volatile (
1017#ifdef CONFIG_X86_64
1018 " xchg %%rbx,%%rsp \n"
1019#else
1020 " xchgl %%ebx,%%esp \n"
1021#endif
1022 " int3 \n"
1023 " .globl jprobe_return_end\n"
1024 " jprobe_return_end: \n"
1025 " nop \n"::"b"
1026 (kcb->jprobe_saved_sp):"memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -07001029int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001031 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001032 u8 *addr = (u8 *) (regs->ip - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct jprobe *jp = container_of(p, struct jprobe, kp);
1034
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001035 if ((addr > (u8 *) jprobe_return) &&
1036 (addr < (u8 *) jprobe_return_end)) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001037 if (stack_addr(regs) != kcb->jprobe_saved_sp) {
Masami Hiramatsu29b6cd72007-12-18 18:05:58 +01001038 struct pt_regs *saved_regs = &kcb->jprobe_saved_regs;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001039 printk(KERN_ERR
1040 "current sp %p does not match saved sp %p\n",
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001041 stack_addr(regs), kcb->jprobe_saved_sp);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001042 printk(KERN_ERR "Saved registers for jprobe %p\n", jp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 show_registers(saved_regs);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001044 printk(KERN_ERR "Current registers\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 show_registers(regs);
1046 BUG();
1047 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001048 *regs = kcb->jprobe_saved_regs;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001049 memcpy((kprobe_opcode_t *)(kcb->jprobe_saved_sp),
1050 kcb->jprobes_stack,
1051 MIN_STACK_SIZE(kcb->jprobe_saved_sp));
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -08001052 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return 1;
1054 }
1055 return 0;
1056}
Rusty Lynchba8af122005-06-27 15:17:10 -07001057
Rusty Lynch67729262005-07-05 18:54:50 -07001058int __init arch_init_kprobes(void)
Rusty Lynchba8af122005-06-27 15:17:10 -07001059{
Masami Hiramatsuda07ab02008-01-30 13:31:21 +01001060 return 0;
Rusty Lynchba8af122005-06-27 15:17:10 -07001061}
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001062
1063int __kprobes arch_trampoline_kprobe(struct kprobe *p)
1064{
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001065 return 0;
1066}