blob: 7847e5c0e0b5d0ce9af2cd47274b52bab7f2597a [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>
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +090033 * Added function return probes functionality
Masami Hiramatsud6be29b2008-01-30 13:31:21 +010034 * 2006-Feb Masami Hiramatsu <hiramatu@sdl.hitachi.co.jp> added
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +090035 * 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
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +090037 * 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
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +090039 * <arjan@infradead.org> and Jim Keniston <jkenisto@us.ibm.com>
40 * unified x86 kprobes code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/kprobes.h>
43#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/string.h>
45#include <linux/slab.h>
Quentin Barnesb506a9d2008-01-30 13:32:32 +010046#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/preempt.h>
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -080048#include <linux/module.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070049#include <linux/kdebug.h>
Masami Hiramatsub46b3d72009-08-13 16:34:28 -040050#include <linux/kallsyms.h>
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -050051#include <linux/ftrace.h>
Josh Poimboeuf87aaff22016-02-28 22:22:40 -060052#include <linux/frame.h>
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070053
Andy Lutomirski35de5b02016-04-26 12:23:24 -070054#include <asm/text-patching.h>
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010055#include <asm/cacheflush.h>
56#include <asm/desc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/pgtable.h>
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -080058#include <asm/uaccess.h>
Andi Kleen19d36cc2007-07-22 11:12:31 +020059#include <asm/alternative.h>
Masami Hiramatsub46b3d72009-08-13 16:34:28 -040060#include <asm/insn.h>
K.Prasad62edab92009-06-01 23:47:06 +053061#include <asm/debugreg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Masami Hiramatsuf6841992012-09-28 17:15:22 +090063#include "common.h"
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +090064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065void jprobe_return_end(void);
66
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -080067DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
68DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
H. Peter Anvin98272ed2009-10-12 14:14:10 -070070#define stack_addr(regs) ((unsigned long *)kernel_stack_pointer(regs))
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010071
72#define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\
73 (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \
74 (b4##UL << 0x4)|(b5##UL << 0x5)|(b6##UL << 0x6)|(b7##UL << 0x7) | \
75 (b8##UL << 0x8)|(b9##UL << 0x9)|(ba##UL << 0xa)|(bb##UL << 0xb) | \
76 (bc##UL << 0xc)|(bd##UL << 0xd)|(be##UL << 0xe)|(bf##UL << 0xf)) \
77 << (row % 32))
78 /*
79 * Undefined/reserved opcodes, conditional jump, Opcode Extension
80 * Groups, and some special opcodes can not boost.
Linus Torvalds7115e3f2011-10-26 17:03:38 +020081 * This is non-const and volatile to keep gcc from statically
82 * optimizing it out, as variable_test_bit makes gcc think only
Masami Hiramatsuf6841992012-09-28 17:15:22 +090083 * *(unsigned long*) is used.
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010084 */
Linus Torvalds7115e3f2011-10-26 17:03:38 +020085static volatile u32 twobyte_is_boostable[256 / 32] = {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010086 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
87 /* ---------------------------------------------- */
88 W(0x00, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0) | /* 00 */
Wang Nanb7e37562015-02-10 09:34:05 +080089 W(0x10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1) , /* 10 */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +010090 W(0x20, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 20 */
91 W(0x30, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 30 */
92 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 40 */
93 W(0x50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) , /* 50 */
94 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1) | /* 60 */
95 W(0x70, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1) , /* 70 */
96 W(0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) | /* 80 */
97 W(0x90, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 90 */
98 W(0xa0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* a0 */
99 W(0xb0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1) , /* b0 */
100 W(0xc0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* c0 */
101 W(0xd0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) , /* d0 */
102 W(0xe0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1) | /* e0 */
103 W(0xf0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0) /* f0 */
104 /* ----------------------------------------------- */
105 /* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
106};
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100107#undef W
108
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700109struct kretprobe_blackpoint kretprobe_blacklist[] = {
110 {"__switch_to", }, /* This function switches only current task, but
111 doesn't switch kernel stack.*/
112 {NULL, NULL} /* Terminator */
113};
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +0900114
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700115const int kretprobe_blacklist_size = ARRAY_SIZE(kretprobe_blacklist);
116
Masami Hiramatsu93266382014-04-17 17:18:14 +0900117static nokprobe_inline void
118__synthesize_relative_insn(void *from, void *to, u8 op)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100119{
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500120 struct __arch_relative_insn {
121 u8 op;
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100122 s32 raddr;
Masami Hiramatsuf6841992012-09-28 17:15:22 +0900123 } __packed *insn;
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500124
125 insn = (struct __arch_relative_insn *)from;
126 insn->raddr = (s32)((long)(to) - ((long)(from) + 5));
127 insn->op = op;
128}
129
130/* Insert a jump instruction at address 'from', which jumps to address 'to'.*/
Masami Hiramatsu93266382014-04-17 17:18:14 +0900131void synthesize_reljump(void *from, void *to)
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500132{
133 __synthesize_relative_insn(from, to, RELATIVEJUMP_OPCODE);
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100134}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900135NOKPROBE_SYMBOL(synthesize_reljump);
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100136
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +0900137/* Insert a call instruction at address 'from', which calls address 'to'.*/
Masami Hiramatsu93266382014-04-17 17:18:14 +0900138void synthesize_relcall(void *from, void *to)
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +0900139{
140 __synthesize_relative_insn(from, to, RELATIVECALL_OPCODE);
141}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900142NOKPROBE_SYMBOL(synthesize_relcall);
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +0900143
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100144/*
Masami Hiramatsu567a9fd2010-06-29 14:53:50 +0900145 * Skip the prefixes of the instruction.
Harvey Harrison99309272008-01-30 13:32:14 +0100146 */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900147static kprobe_opcode_t *skip_prefixes(kprobe_opcode_t *insn)
Harvey Harrison99309272008-01-30 13:32:14 +0100148{
Masami Hiramatsu567a9fd2010-06-29 14:53:50 +0900149 insn_attr_t attr;
150
151 attr = inat_get_opcode_attribute((insn_byte_t)*insn);
152 while (inat_is_legacy_prefix(attr)) {
153 insn++;
154 attr = inat_get_opcode_attribute((insn_byte_t)*insn);
155 }
Harvey Harrison99309272008-01-30 13:32:14 +0100156#ifdef CONFIG_X86_64
Masami Hiramatsu567a9fd2010-06-29 14:53:50 +0900157 if (inat_is_rex_prefix(attr))
158 insn++;
Harvey Harrison99309272008-01-30 13:32:14 +0100159#endif
Masami Hiramatsu567a9fd2010-06-29 14:53:50 +0900160 return insn;
Harvey Harrison99309272008-01-30 13:32:14 +0100161}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900162NOKPROBE_SYMBOL(skip_prefixes);
Harvey Harrison99309272008-01-30 13:32:14 +0100163
164/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100165 * Returns non-zero if opcode is boostable.
166 * RIP relative instructions are adjusted at copying time in 64 bits mode
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100167 */
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +0900168int can_boost(kprobe_opcode_t *opcodes)
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100169{
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100170 kprobe_opcode_t opcode;
171 kprobe_opcode_t *orig_opcodes = opcodes;
172
Jaswinder Singh Rajputcde5edb2009-03-18 17:37:45 +0530173 if (search_exception_tables((unsigned long)opcodes))
Masami Hiramatsu30390882009-03-16 18:57:22 -0400174 return 0; /* Page fault may occur on this address. */
175
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100176retry:
177 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
178 return 0;
179 opcode = *(opcodes++);
180
181 /* 2nd-byte opcode */
182 if (opcode == 0x0f) {
183 if (opcodes - orig_opcodes > MAX_INSN_SIZE - 1)
184 return 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100185 return test_bit(*opcodes,
186 (unsigned long *)twobyte_is_boostable);
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100187 }
188
189 switch (opcode & 0xf0) {
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100190#ifdef CONFIG_X86_64
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100191 case 0x40:
192 goto retry; /* REX prefix is boostable */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100193#endif
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100194 case 0x60:
195 if (0x63 < opcode && opcode < 0x67)
196 goto retry; /* prefixes */
197 /* can't boost Address-size override and bound */
198 return (opcode != 0x62 && opcode != 0x67);
199 case 0x70:
200 return 0; /* can't boost conditional jump */
201 case 0xc0:
202 /* can't boost software-interruptions */
203 return (0xc1 < opcode && opcode < 0xcc) || opcode == 0xcf;
204 case 0xd0:
205 /* can boost AA* and XLAT */
206 return (opcode == 0xd4 || opcode == 0xd5 || opcode == 0xd7);
207 case 0xe0:
208 /* can boost in/out and absolute jmps */
209 return ((opcode & 0x04) || opcode == 0xea);
210 case 0xf0:
211 if ((opcode & 0x0c) == 0 && opcode != 0xf1)
212 goto retry; /* lock/rep(ne) prefix */
213 /* clear and set flags are boostable */
214 return (opcode == 0xf5 || (0xf7 < opcode && opcode < 0xfe));
215 default:
216 /* segment override prefixes are boostable */
217 if (opcode == 0x26 || opcode == 0x36 || opcode == 0x3e)
218 goto retry; /* prefixes */
219 /* CS override prefix and call are not boostable */
220 return (opcode != 0x2e && opcode != 0x9a);
221 }
222}
223
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +0900224static unsigned long
225__recover_probed_insn(kprobe_opcode_t *buf, unsigned long addr)
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400226{
227 struct kprobe *kp;
Petr Mladek650b7b22015-02-20 15:07:29 +0100228 unsigned long faddr;
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900229
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400230 kp = get_kprobe((void *)addr);
Petr Mladek650b7b22015-02-20 15:07:29 +0100231 faddr = ftrace_location(addr);
232 /*
Petr Mladek2a6730c2015-02-20 15:07:30 +0100233 * Addresses inside the ftrace location are refused by
234 * arch_check_ftrace_location(). Something went terribly wrong
235 * if such an address is checked here.
236 */
237 if (WARN_ON(faddr && faddr != addr))
238 return 0UL;
239 /*
Petr Mladek650b7b22015-02-20 15:07:29 +0100240 * Use the current code if it is not modified by Kprobe
241 * and it cannot be modified by ftrace.
242 */
243 if (!kp && !faddr)
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900244 return addr;
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400245
246 /*
Petr Mladek650b7b22015-02-20 15:07:29 +0100247 * Basically, kp->ainsn.insn has an original instruction.
248 * However, RIP-relative instruction can not do single-stepping
249 * at different place, __copy_instruction() tweaks the displacement of
250 * that instruction. In that case, we can't recover the instruction
251 * from the kp->ainsn.insn.
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400252 *
Petr Mladek650b7b22015-02-20 15:07:29 +0100253 * On the other hand, in case on normal Kprobe, kp->opcode has a copy
254 * of the first byte of the probed instruction, which is overwritten
255 * by int3. And the instruction at kp->addr is not modified by kprobes
256 * except for the first byte, we can recover the original instruction
257 * from it and kp->opcode.
258 *
259 * In case of Kprobes using ftrace, we do not have a copy of
260 * the original instruction. In fact, the ftrace location might
261 * be modified at anytime and even could be in an inconsistent state.
262 * Fortunately, we know that the original code is the ideal 5-byte
263 * long NOP.
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400264 */
Petr Mladek650b7b22015-02-20 15:07:29 +0100265 memcpy(buf, (void *)addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
266 if (faddr)
267 memcpy(buf, ideal_nops[NOP_ATOMIC5], 5);
268 else
269 buf[0] = kp->opcode;
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900270 return (unsigned long)buf;
271}
272
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900273/*
274 * Recover the probed instruction at addr for further analysis.
275 * Caller must lock kprobes by kprobe_mutex, or disable preemption
276 * for preventing to release referencing kprobes.
Petr Mladek2a6730c2015-02-20 15:07:30 +0100277 * Returns zero if the instruction can not get recovered.
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900278 */
Masami Hiramatsu3f33ab12012-03-05 22:32:22 +0900279unsigned long recover_probed_instruction(kprobe_opcode_t *buf, unsigned long addr)
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900280{
281 unsigned long __addr;
282
283 __addr = __recover_optprobed_insn(buf, addr);
284 if (__addr != addr)
285 return __addr;
286
287 return __recover_probed_insn(buf, addr);
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400288}
289
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400290/* Check if paddr is at an instruction boundary */
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +0900291static int can_probe(unsigned long paddr)
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400292{
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900293 unsigned long addr, __addr, offset = 0;
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400294 struct insn insn;
295 kprobe_opcode_t buf[MAX_INSN_SIZE];
296
Namhyung Kim6abded72010-09-15 10:04:29 +0900297 if (!kallsyms_lookup_size_offset(paddr, NULL, &offset))
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400298 return 0;
299
300 /* Decode instructions */
301 addr = paddr - offset;
302 while (addr < paddr) {
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400303 /*
304 * Check if the instruction has been modified by another
305 * kprobe, in which case we replace the breakpoint by the
306 * original instruction in our buffer.
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900307 * Also, jump optimization will change the breakpoint to
308 * relative-jump. Since the relative-jump itself is
309 * normally used, we just go through if there is no kprobe.
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400310 */
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900311 __addr = recover_probed_instruction(buf, addr);
Petr Mladek2a6730c2015-02-20 15:07:30 +0100312 if (!__addr)
313 return 0;
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800314 kernel_insn_init(&insn, (void *)__addr, MAX_INSN_SIZE);
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400315 insn_get_length(&insn);
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900316
317 /*
318 * Another debugging subsystem might insert this breakpoint.
319 * In that case, we can't recover it.
320 */
321 if (insn.opcode.bytes[0] == BREAKPOINT_INSTRUCTION)
322 return 0;
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400323 addr += insn.length;
324 }
325
326 return (addr == paddr);
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329/*
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100330 * Returns non-zero if opcode modifies the interrupt flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 */
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +0900332static int is_IF_modifier(kprobe_opcode_t *insn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Masami Hiramatsu567a9fd2010-06-29 14:53:50 +0900334 /* Skip prefixes */
335 insn = skip_prefixes(insn);
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 switch (*insn) {
338 case 0xfa: /* cli */
339 case 0xfb: /* sti */
340 case 0xcf: /* iret/iretd */
341 case 0x9d: /* popf/popfd */
342 return 1;
343 }
Harvey Harrison99309272008-01-30 13:32:14 +0100344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return 0;
346}
347
348/*
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500349 * Copy an instruction and adjust the displacement if the instruction
350 * uses the %rip-relative addressing mode.
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100351 * If it does, Return the address of the 32-bit displacement word.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * If not, return null.
Harvey Harrison31f80e42008-01-30 13:32:16 +0100353 * Only applicable to 64-bit x86.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 */
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +0900355int __copy_instruction(u8 *dest, u8 *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Masami Hiramatsu89ae4652009-08-13 16:34:36 -0400357 struct insn insn;
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500358 kprobe_opcode_t buf[MAX_INSN_SIZE];
Eugene Shatokhinc80e5c02015-03-17 19:09:18 +0900359 int length;
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800360 unsigned long recovered_insn =
361 recover_probed_instruction(buf, (unsigned long)src);
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900362
Petr Mladek2a6730c2015-02-20 15:07:30 +0100363 if (!recovered_insn)
364 return 0;
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800365 kernel_insn_init(&insn, (void *)recovered_insn, MAX_INSN_SIZE);
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500366 insn_get_length(&insn);
Eugene Shatokhinc80e5c02015-03-17 19:09:18 +0900367 length = insn.length;
368
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900369 /* Another subsystem puts a breakpoint, failed to recover */
Masami Hiramatsu46484682012-03-05 22:32:16 +0900370 if (insn.opcode.bytes[0] == BREAKPOINT_INSTRUCTION)
Masami Hiramatsu86b4ce32012-03-05 22:32:09 +0900371 return 0;
Eugene Shatokhinc80e5c02015-03-17 19:09:18 +0900372 memcpy(dest, insn.kaddr, length);
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500373
374#ifdef CONFIG_X86_64
Masami Hiramatsu89ae4652009-08-13 16:34:36 -0400375 if (insn_rip_relative(&insn)) {
376 s64 newdisp;
377 u8 *disp;
Eugene Shatokhinc80e5c02015-03-17 19:09:18 +0900378 kernel_insn_init(&insn, dest, length);
Masami Hiramatsu89ae4652009-08-13 16:34:36 -0400379 insn_get_displacement(&insn);
380 /*
381 * The copied instruction uses the %rip-relative addressing
382 * mode. Adjust the displacement for the difference between
383 * the original location of this instruction and the location
384 * of the copy that will actually be run. The tricky bit here
385 * is making sure that the sign extension happens correctly in
386 * this calculation, since we need a signed 32-bit result to
387 * be sign-extended to 64 bits when it's added to the %rip
388 * value and yield the same 64-bit result that the sign-
389 * extension of the original signed 32-bit displacement would
390 * have given.
391 */
Masami Hiramatsu46484682012-03-05 22:32:16 +0900392 newdisp = (u8 *) src + (s64) insn.displacement.value - (u8 *) dest;
Masami Hiramatsu81013762013-04-04 19:42:30 +0900393 if ((s64) (s32) newdisp != newdisp) {
394 pr_err("Kprobes error: new displacement does not fit into s32 (%llx)\n", newdisp);
395 pr_err("\tSrc: %p, Dest: %p, old disp: %x\n", src, dest, insn.displacement.value);
396 return 0;
397 }
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500398 disp = (u8 *) dest + insn_offset_displacement(&insn);
Masami Hiramatsu89ae4652009-08-13 16:34:36 -0400399 *(s32 *) disp = (s32) newdisp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100401#endif
Eugene Shatokhinc80e5c02015-03-17 19:09:18 +0900402 return length;
Harvey Harrison31f80e42008-01-30 13:32:16 +0100403}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +0900405static int arch_copy_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Masami Hiramatsu003002e2013-06-05 12:12:16 +0900407 int ret;
408
Masami Hiramatsu46484682012-03-05 22:32:16 +0900409 /* Copy an instruction with recovering if other optprobe modifies it.*/
Masami Hiramatsu003002e2013-06-05 12:12:16 +0900410 ret = __copy_instruction(p->ainsn.insn, p->addr);
411 if (!ret)
412 return -EINVAL;
Harvey Harrison31f80e42008-01-30 13:32:16 +0100413
Masami Hiramatsu46484682012-03-05 22:32:16 +0900414 /*
415 * __copy_instruction can modify the displacement of the instruction,
416 * but it doesn't affect boostable check.
417 */
418 if (can_boost(p->ainsn.insn))
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100419 p->ainsn.boostable = 0;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100420 else
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100421 p->ainsn.boostable = -1;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100422
Masami Hiramatsu9a556ab2013-03-14 20:52:43 +0900423 /* Check whether the instruction modifies Interrupt Flag or not */
424 p->ainsn.if_modifier = is_IF_modifier(p->ainsn.insn);
425
Masami Hiramatsu46484682012-03-05 22:32:16 +0900426 /* Also, displacement change doesn't affect the first byte */
427 p->opcode = p->ainsn.insn[0];
Masami Hiramatsu003002e2013-06-05 12:12:16 +0900428
429 return 0;
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700430}
431
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +0900432int arch_prepare_kprobe(struct kprobe *p)
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100433{
Masami Hiramatsu4554dbc2010-02-02 16:49:18 -0500434 if (alternatives_text_reserved(p->addr, p->addr))
435 return -EINVAL;
436
Masami Hiramatsub46b3d72009-08-13 16:34:28 -0400437 if (!can_probe((unsigned long)p->addr))
438 return -EILSEQ;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100439 /* insn: must be on special executable page on x86. */
440 p->ainsn.insn = get_insn_slot();
441 if (!p->ainsn.insn)
442 return -ENOMEM;
Masami Hiramatsu003002e2013-06-05 12:12:16 +0900443
444 return arch_copy_kprobe(p);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100445}
446
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +0900447void arch_arm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700448{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200449 text_poke(p->addr, ((unsigned char []){BREAKPOINT_INSTRUCTION}), 1);
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700450}
451
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +0900452void arch_disarm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700453{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200454 text_poke(p->addr, &p->opcode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +0900457void arch_remove_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Masami Hiramatsu12941562009-01-06 14:41:50 -0800459 if (p->ainsn.insn) {
460 free_insn_slot(p->ainsn.insn, (p->ainsn.boostable == 1));
461 p->ainsn.insn = NULL;
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Masami Hiramatsu93266382014-04-17 17:18:14 +0900465static nokprobe_inline void
466save_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700467{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800468 kcb->prev_kprobe.kp = kprobe_running();
469 kcb->prev_kprobe.status = kcb->kprobe_status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100470 kcb->prev_kprobe.old_flags = kcb->kprobe_old_flags;
471 kcb->prev_kprobe.saved_flags = kcb->kprobe_saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700472}
473
Masami Hiramatsu93266382014-04-17 17:18:14 +0900474static nokprobe_inline void
475restore_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700476{
Christoph Lameterb76834b2010-12-06 11:16:25 -0600477 __this_cpu_write(current_kprobe, kcb->prev_kprobe.kp);
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800478 kcb->kprobe_status = kcb->prev_kprobe.status;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100479 kcb->kprobe_old_flags = kcb->prev_kprobe.old_flags;
480 kcb->kprobe_saved_flags = kcb->prev_kprobe.saved_flags;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700481}
482
Masami Hiramatsu93266382014-04-17 17:18:14 +0900483static nokprobe_inline void
484set_current_kprobe(struct kprobe *p, struct pt_regs *regs,
485 struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700486{
Christoph Lameterb76834b2010-12-06 11:16:25 -0600487 __this_cpu_write(current_kprobe, p);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100488 kcb->kprobe_saved_flags = kcb->kprobe_old_flags
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100489 = (regs->flags & (X86_EFLAGS_TF | X86_EFLAGS_IF));
Masami Hiramatsu9a556ab2013-03-14 20:52:43 +0900490 if (p->ainsn.if_modifier)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100491 kcb->kprobe_saved_flags &= ~X86_EFLAGS_IF;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700492}
493
Masami Hiramatsu93266382014-04-17 17:18:14 +0900494static nokprobe_inline void clear_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100495{
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100496 if (test_thread_flag(TIF_BLOCKSTEP)) {
497 unsigned long debugctl = get_debugctlmsr();
498
499 debugctl &= ~DEBUGCTLMSR_BTF;
500 update_debugctlmsr(debugctl);
501 }
Roland McGrath1ecc7982008-01-30 13:30:54 +0100502}
503
Masami Hiramatsu93266382014-04-17 17:18:14 +0900504static nokprobe_inline void restore_btf(void)
Roland McGrath1ecc7982008-01-30 13:30:54 +0100505{
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100506 if (test_thread_flag(TIF_BLOCKSTEP)) {
507 unsigned long debugctl = get_debugctlmsr();
508
509 debugctl |= DEBUGCTLMSR_BTF;
510 update_debugctlmsr(debugctl);
511 }
Roland McGrath1ecc7982008-01-30 13:30:54 +0100512}
513
Masami Hiramatsu93266382014-04-17 17:18:14 +0900514void arch_prepare_kretprobe(struct kretprobe_instance *ri, struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700515{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100516 unsigned long *sara = stack_addr(regs);
Rusty Lynch73649da2005-06-23 00:09:23 -0700517
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700518 ri->ret_addr = (kprobe_opcode_t *) *sara;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100519
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700520 /* Replace the return addr with trampoline addr */
521 *sara = (unsigned long) &kretprobe_trampoline;
Rusty Lynch73649da2005-06-23 00:09:23 -0700522}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900523NOKPROBE_SYMBOL(arch_prepare_kretprobe);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100524
Masami Hiramatsu93266382014-04-17 17:18:14 +0900525static void setup_singlestep(struct kprobe *p, struct pt_regs *regs,
526 struct kprobe_ctlblk *kcb, int reenter)
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100527{
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500528 if (setup_detour_execution(p, regs, reenter))
529 return;
530
Masami Hiramatsu615d0eb2010-02-02 16:49:04 -0500531#if !defined(CONFIG_PREEMPT)
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100532 if (p->ainsn.boostable == 1 && !p->post_handler) {
533 /* Boost up -- we can execute copied instructions directly */
Masami Hiramatsu0f94eb62010-02-25 08:34:23 -0500534 if (!reenter)
535 reset_current_kprobe();
536 /*
537 * Reentering boosted probe doesn't reset current_kprobe,
538 * nor set current_kprobe, because it doesn't use single
539 * stepping.
540 */
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100541 regs->ip = (unsigned long)p->ainsn.insn;
542 preempt_enable_no_resched();
543 return;
544 }
545#endif
Masami Hiramatsu0f94eb62010-02-25 08:34:23 -0500546 if (reenter) {
547 save_previous_kprobe(kcb);
548 set_current_kprobe(p, regs, kcb);
549 kcb->kprobe_status = KPROBE_REENTER;
550 } else
551 kcb->kprobe_status = KPROBE_HIT_SS;
552 /* Prepare real single stepping */
553 clear_btf();
554 regs->flags |= X86_EFLAGS_TF;
555 regs->flags &= ~X86_EFLAGS_IF;
556 /* single step inline if the instruction is an int3 */
557 if (p->opcode == BREAKPOINT_INSTRUCTION)
558 regs->ip = (unsigned long)p->addr;
559 else
560 regs->ip = (unsigned long)p->ainsn.insn;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100561}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900562NOKPROBE_SYMBOL(setup_singlestep);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100563
Harvey Harrison40102d42008-01-30 13:32:02 +0100564/*
565 * We have reentered the kprobe_handler(), since another probe was hit while
566 * within the handler. We save the original kprobes variables and just single
567 * step on the instruction of the new probe without calling any user handlers.
568 */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900569static int reenter_kprobe(struct kprobe *p, struct pt_regs *regs,
570 struct kprobe_ctlblk *kcb)
Harvey Harrison40102d42008-01-30 13:32:02 +0100571{
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100572 switch (kcb->kprobe_status) {
573 case KPROBE_HIT_SSDONE:
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100574 case KPROBE_HIT_ACTIVE:
Masami Hiramatsu6a5022a2014-04-17 17:16:51 +0900575 case KPROBE_HIT_SS:
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100576 kprobes_inc_nmissed_count(p);
Masami Hiramatsu0f94eb62010-02-25 08:34:23 -0500577 setup_singlestep(p, regs, kcb, 1);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100578 break;
Masami Hiramatsu6a5022a2014-04-17 17:16:51 +0900579 case KPROBE_REENTER:
Masami Hiramatsue9afe9e2009-08-27 13:22:58 -0400580 /* A probe has been hit in the codepath leading up to, or just
581 * after, single-stepping of a probed instruction. This entire
582 * codepath should strictly reside in .kprobes.text section.
583 * Raise a BUG or we'll continue in an endless reentering loop
584 * and eventually a stack overflow.
585 */
586 printk(KERN_WARNING "Unrecoverable kprobe detected at %p.\n",
587 p->addr);
588 dump_kprobe(p);
589 BUG();
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100590 default:
591 /* impossible cases */
592 WARN_ON(1);
Abhishek Sagarfb8830e2008-01-30 13:33:13 +0100593 return 0;
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100594 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100595
Masami Hiramatsu59e87cd2008-01-30 13:32:02 +0100596 return 1;
Harvey Harrison40102d42008-01-30 13:32:02 +0100597}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900598NOKPROBE_SYMBOL(reenter_kprobe);
Rusty Lynch73649da2005-06-23 00:09:23 -0700599
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100600/*
601 * Interrupts are disabled on entry as trap3 is an interrupt gate and they
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200602 * remain disabled throughout this function.
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100603 */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900604int kprobe_int3_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100606 kprobe_opcode_t *addr;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100607 struct kprobe *p;
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800608 struct kprobe_ctlblk *kcb;
609
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700610 if (user_mode(regs))
Andy Lutomirski0cdd1922014-07-11 10:27:01 -0700611 return 0;
612
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100613 addr = (kprobe_opcode_t *)(regs->ip - sizeof(kprobe_opcode_t));
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800614 /*
615 * We don't want to be preempted for the entire
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100616 * duration of kprobe processing. We conditionally
617 * re-enable preemption at the end of this function,
618 * and also in reenter_kprobe() and setup_singlestep().
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800619 */
620 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100622 kcb = get_kprobe_ctlblk();
Harvey Harrisonb9760152008-01-30 13:32:19 +0100623 p = get_kprobe(addr);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100624
Harvey Harrisonb9760152008-01-30 13:32:19 +0100625 if (p) {
Harvey Harrisonb9760152008-01-30 13:32:19 +0100626 if (kprobe_running()) {
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100627 if (reenter_kprobe(p, regs, kcb))
628 return 1;
Harvey Harrisonb9760152008-01-30 13:32:19 +0100629 } else {
630 set_current_kprobe(p, regs, kcb);
631 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /*
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100634 * If we have no pre-handler or it returned 0, we
635 * continue with normal processing. If we have a
636 * pre-handler and it returned non-zero, it prepped
637 * for calling the break_handler below on re-entry
638 * for jprobe processing, so get out doing nothing
639 * more here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 */
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100641 if (!p->pre_handler || !p->pre_handler(p, regs))
Masami Hiramatsu0f94eb62010-02-25 08:34:23 -0500642 setup_singlestep(p, regs, kcb, 0);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100643 return 1;
Harvey Harrisonb9760152008-01-30 13:32:19 +0100644 }
Masami Hiramatsu829e9242010-04-27 18:33:49 -0400645 } else if (*addr != BREAKPOINT_INSTRUCTION) {
646 /*
647 * The breakpoint instruction was removed right
648 * after we hit it. Another cpu has removed
649 * either a probepoint or a debugger breakpoint
650 * at this address. In either case, no further
651 * handling of this interrupt is appropriate.
652 * Back up over the (now missing) int3 and run
653 * the original instruction.
654 */
655 regs->ip = (unsigned long)addr;
656 preempt_enable_no_resched();
657 return 1;
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100658 } else if (kprobe_running()) {
Christoph Lameterb76834b2010-12-06 11:16:25 -0600659 p = __this_cpu_read(current_kprobe);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100660 if (p->break_handler && p->break_handler(p, regs)) {
Masami Hiramatsue7dbfe32012-09-28 17:15:20 +0900661 if (!skip_singlestep(p, regs, kcb))
662 setup_singlestep(p, regs, kcb, 0);
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100663 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100665 } /* else: not a kprobe fault; let the kernel handle it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800667 preempt_enable_no_resched();
Abhishek Sagarf315dec2008-01-30 13:32:50 +0100668 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900670NOKPROBE_SYMBOL(kprobe_int3_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100673 * When a retprobed function returns, this code saves registers and
674 * calls trampoline_handler() runs, which calls the kretprobe's handler.
Rusty Lynch73649da2005-06-23 00:09:23 -0700675 */
Josh Poimboeufc1c355c2016-01-21 16:49:28 -0600676asm(
677 ".global kretprobe_trampoline\n"
678 ".type kretprobe_trampoline, @function\n"
679 "kretprobe_trampoline:\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100680#ifdef CONFIG_X86_64
Josh Poimboeufc1c355c2016-01-21 16:49:28 -0600681 /* We don't bother saving the ss register */
682 " pushq %rsp\n"
683 " pushfq\n"
684 SAVE_REGS_STRING
685 " movq %rsp, %rdi\n"
686 " call trampoline_handler\n"
687 /* Replace saved sp with true return address. */
688 " movq %rax, 152(%rsp)\n"
689 RESTORE_REGS_STRING
690 " popfq\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100691#else
Josh Poimboeufc1c355c2016-01-21 16:49:28 -0600692 " pushf\n"
693 SAVE_REGS_STRING
694 " movl %esp, %eax\n"
695 " call trampoline_handler\n"
696 /* Move flags to cs */
697 " movl 56(%esp), %edx\n"
698 " movl %edx, 52(%esp)\n"
699 /* Replace saved flags with true return address. */
700 " movl %eax, 56(%esp)\n"
701 RESTORE_REGS_STRING
702 " popf\n"
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100703#endif
Josh Poimboeufc1c355c2016-01-21 16:49:28 -0600704 " ret\n"
705 ".size kretprobe_trampoline, .-kretprobe_trampoline\n"
706);
Masami Hiramatsu93266382014-04-17 17:18:14 +0900707NOKPROBE_SYMBOL(kretprobe_trampoline);
Josh Poimboeuf87aaff22016-02-28 22:22:40 -0600708STACK_FRAME_NON_STANDARD(kretprobe_trampoline);
Rusty Lynch73649da2005-06-23 00:09:23 -0700709
710/*
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100711 * Called from kretprobe_trampoline
Rusty Lynch73649da2005-06-23 00:09:23 -0700712 */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900713__visible __used void *trampoline_handler(struct pt_regs *regs)
Rusty Lynch73649da2005-06-23 00:09:23 -0700714{
bibo,mao62c27be2006-10-02 02:17:33 -0700715 struct kretprobe_instance *ri = NULL;
bibo,mao99219a32006-10-02 02:17:35 -0700716 struct hlist_head *head, empty_rp;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800717 struct hlist_node *tmp;
Ananth N Mavinakayanahalli991a51d2005-11-07 01:00:14 -0800718 unsigned long flags, orig_ret_address = 0;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100719 unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline;
KUMANO Syuhei737480a2010-08-15 15:18:04 +0900720 kprobe_opcode_t *correct_ret_addr = NULL;
Rusty Lynch73649da2005-06-23 00:09:23 -0700721
bibo,mao99219a32006-10-02 02:17:35 -0700722 INIT_HLIST_HEAD(&empty_rp);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700723 kretprobe_hash_lock(current, &head, &flags);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100724 /* fixup registers */
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100725#ifdef CONFIG_X86_64
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100726 regs->cs = __KERNEL_CS;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100727#else
728 regs->cs = __KERNEL_CS | get_kernel_rpl();
Masami Hiramatsufee039a2009-03-23 10:14:52 -0400729 regs->gs = 0;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100730#endif
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100731 regs->ip = trampoline_address;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100732 regs->orig_ax = ~0UL;
Rusty Lynch73649da2005-06-23 00:09:23 -0700733
Rusty Lynchba8af122005-06-27 15:17:10 -0700734 /*
735 * It is possible to have multiple instances associated with a given
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100736 * task either because multiple functions in the call path have
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200737 * return probes installed on them, and/or more than one
Rusty Lynchba8af122005-06-27 15:17:10 -0700738 * return probe was registered for a target function.
739 *
740 * We can handle this because:
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100741 * - instances are always pushed into the head of the list
Rusty Lynchba8af122005-06-27 15:17:10 -0700742 * - when multiple return probes are registered for the same
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100743 * function, the (chronologically) first instance's ret_addr
744 * will be the real return address, and all the rest will
745 * point to kretprobe_trampoline.
Rusty Lynchba8af122005-06-27 15:17:10 -0700746 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800747 hlist_for_each_entry_safe(ri, tmp, head, hlist) {
bibo,mao62c27be2006-10-02 02:17:33 -0700748 if (ri->task != current)
Rusty Lynchba8af122005-06-27 15:17:10 -0700749 /* another task is sharing our hash bucket */
bibo,mao62c27be2006-10-02 02:17:33 -0700750 continue;
Rusty Lynch73649da2005-06-23 00:09:23 -0700751
Rusty Lynchba8af122005-06-27 15:17:10 -0700752 orig_ret_address = (unsigned long)ri->ret_addr;
Rusty Lynchba8af122005-06-27 15:17:10 -0700753
754 if (orig_ret_address != trampoline_address)
755 /*
756 * This is the real return address. Any other
757 * instances associated with this task are for
758 * other calls deeper on the call stack
759 */
760 break;
Rusty Lynch73649da2005-06-23 00:09:23 -0700761 }
Rusty Lynchba8af122005-06-27 15:17:10 -0700762
Ananth N Mavinakayanahalli0f95b7f2007-05-08 00:28:27 -0700763 kretprobe_assert(ri, orig_ret_address, trampoline_address);
Rusty Lynchba8af122005-06-27 15:17:10 -0700764
KUMANO Syuhei737480a2010-08-15 15:18:04 +0900765 correct_ret_addr = ri->ret_addr;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800766 hlist_for_each_entry_safe(ri, tmp, head, hlist) {
KUMANO Syuhei737480a2010-08-15 15:18:04 +0900767 if (ri->task != current)
768 /* another task is sharing our hash bucket */
769 continue;
770
771 orig_ret_address = (unsigned long)ri->ret_addr;
772 if (ri->rp && ri->rp->handler) {
Christoph Lameterb76834b2010-12-06 11:16:25 -0600773 __this_cpu_write(current_kprobe, &ri->rp->kp);
KUMANO Syuhei737480a2010-08-15 15:18:04 +0900774 get_kprobe_ctlblk()->kprobe_status = KPROBE_HIT_ACTIVE;
775 ri->ret_addr = correct_ret_addr;
776 ri->rp->handler(ri, regs);
Christoph Lameterb76834b2010-12-06 11:16:25 -0600777 __this_cpu_write(current_kprobe, NULL);
KUMANO Syuhei737480a2010-08-15 15:18:04 +0900778 }
779
780 recycle_rp_inst(ri, &empty_rp);
781
782 if (orig_ret_address != trampoline_address)
783 /*
784 * This is the real return address. Any other
785 * instances associated with this task are for
786 * other calls deeper on the call stack
787 */
788 break;
789 }
790
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700791 kretprobe_hash_unlock(current, &flags);
Rusty Lynchba8af122005-06-27 15:17:10 -0700792
Sasha Levinb67bfe02013-02-27 17:06:00 -0800793 hlist_for_each_entry_safe(ri, tmp, &empty_rp, hlist) {
bibo,mao99219a32006-10-02 02:17:35 -0700794 hlist_del(&ri->hlist);
795 kfree(ri);
796 }
Masami Hiramatsuda07ab02008-01-30 13:31:21 +0100797 return (void *)orig_ret_address;
Rusty Lynch73649da2005-06-23 00:09:23 -0700798}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900799NOKPROBE_SYMBOL(trampoline_handler);
Rusty Lynch73649da2005-06-23 00:09:23 -0700800
801/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 * Called after single-stepping. p->addr is the address of the
803 * instruction whose first byte has been replaced by the "int 3"
804 * instruction. To avoid the SMP problems that can occur when we
805 * temporarily put back the original opcode to single-step, we
806 * single-stepped a copy of the instruction. The address of this
807 * copy is p->ainsn.insn.
808 *
809 * This function prepares to return from the post-single-step
810 * interrupt. We have to fix up the stack as follows:
811 *
812 * 0) Except in the case of absolute or indirect jump or call instructions,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100813 * the new ip is relative to the copied instruction. We need to make
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 * it relative to the original instruction.
815 *
816 * 1) If the single-stepped instruction was pushfl, then the TF and IF
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100817 * flags are set in the just-pushed flags, and may need to be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 *
819 * 2) If the single-stepped instruction was a call, the return address
820 * that is atop the stack is the address following the copied instruction.
821 * We need to make it the address following the original instruction.
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100822 *
823 * If this is the first time we've single-stepped the instruction at
824 * this probepoint, and the instruction is boostable, boost it: add a
825 * jump instruction after the copied instruction, that jumps to the next
826 * instruction after the probepoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900828static void resume_execution(struct kprobe *p, struct pt_regs *regs,
829 struct kprobe_ctlblk *kcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100831 unsigned long *tos = stack_addr(regs);
832 unsigned long copy_ip = (unsigned long)p->ainsn.insn;
833 unsigned long orig_ip = (unsigned long)p->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 kprobe_opcode_t *insn = p->ainsn.insn;
835
Masami Hiramatsu567a9fd2010-06-29 14:53:50 +0900836 /* Skip prefixes */
837 insn = skip_prefixes(insn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100839 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 switch (*insn) {
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100841 case 0x9c: /* pushfl */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100842 *tos &= ~(X86_EFLAGS_TF | X86_EFLAGS_IF);
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100843 *tos |= kcb->kprobe_old_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 break;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100845 case 0xc2: /* iret/ret/lret */
846 case 0xc3:
Prasanna S Panchamukhi0b9e2ca2005-05-05 16:15:40 -0700847 case 0xca:
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100848 case 0xcb:
849 case 0xcf:
850 case 0xea: /* jmp absolute -- ip is correct */
851 /* ip is already adjusted, no more changes required */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100852 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100853 goto no_change;
854 case 0xe8: /* call relative - Fix return addr */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100855 *tos = orig_ip + (*tos - copy_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 break;
Harvey Harrisone7b5e112008-01-30 13:31:43 +0100857#ifdef CONFIG_X86_32
Masami Hiramatsud6be29b2008-01-30 13:31:21 +0100858 case 0x9a: /* call absolute -- same as call absolute, indirect */
859 *tos = orig_ip + (*tos - copy_ip);
860 goto no_change;
861#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 case 0xff:
Satoshi Oshimadc49e342006-05-20 15:00:21 -0700863 if ((insn[1] & 0x30) == 0x10) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100864 /*
865 * call absolute, indirect
866 * Fix return addr; ip is correct.
867 * But this is not boostable
868 */
869 *tos = orig_ip + (*tos - copy_ip);
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100870 goto no_change;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100871 } else if (((insn[1] & 0x31) == 0x20) ||
872 ((insn[1] & 0x31) == 0x21)) {
873 /*
874 * jmp near and far, absolute indirect
875 * ip is correct. And this is boostable
876 */
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100877 p->ainsn.boostable = 1;
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100878 goto no_change;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 default:
881 break;
882 }
883
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100884 if (p->ainsn.boostable == 0) {
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100885 if ((regs->ip > copy_ip) &&
886 (regs->ip - copy_ip) + 5 < MAX_INSN_SIZE) {
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100887 /*
888 * These instructions can be executed directly if it
889 * jumps back to correct address.
890 */
Masami Hiramatsuc0f7ac32010-02-25 08:34:46 -0500891 synthesize_reljump((void *)regs->ip,
892 (void *)orig_ip + (regs->ip - copy_ip));
Masami Hiramatsuaa470142008-01-30 13:31:21 +0100893 p->ainsn.boostable = 1;
894 } else {
895 p->ainsn.boostable = -1;
896 }
897 }
898
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100899 regs->ip += orig_ip - copy_ip;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100900
Masami Hiramatsu0b0122f2007-12-18 18:05:58 +0100901no_change:
Roland McGrath1ecc7982008-01-30 13:30:54 +0100902 restore_btf();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900904NOKPROBE_SYMBOL(resume_execution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100906/*
907 * Interrupts are disabled on entry as trap1 is an interrupt gate and they
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200908 * remain disabled throughout this function.
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100909 */
Masami Hiramatsu93266382014-04-17 17:18:14 +0900910int kprobe_debug_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800912 struct kprobe *cur = kprobe_running();
913 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
914
915 if (!cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return 0;
917
Yakov Lerneracb5b8a2008-03-16 03:21:21 -0500918 resume_execution(cur, regs, kcb);
919 regs->flags |= kcb->kprobe_saved_flags;
Yakov Lerneracb5b8a2008-03-16 03:21:21 -0500920
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800921 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
922 kcb->kprobe_status = KPROBE_HIT_SSDONE;
923 cur->post_handler(cur, regs, 0);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100926 /* Restore back the original saved kprobes variables and continue. */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800927 if (kcb->kprobe_status == KPROBE_REENTER) {
928 restore_previous_kprobe(kcb);
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700929 goto out;
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700930 }
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800931 reset_current_kprobe();
Prasanna S Panchamukhiaa3d7e32005-06-23 00:09:37 -0700932out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 preempt_enable_no_resched();
934
935 /*
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100936 * if somebody else is singlestepping across a probe point, flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 * will have TF set, in which case, continue the remaining processing
938 * of do_debug, as if this is not a probe hit.
939 */
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100940 if (regs->flags & X86_EFLAGS_TF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return 0;
942
943 return 1;
944}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900945NOKPROBE_SYMBOL(kprobe_debug_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Masami Hiramatsu93266382014-04-17 17:18:14 +0900947int kprobe_fault_handler(struct pt_regs *regs, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -0800949 struct kprobe *cur = kprobe_running();
950 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
951
Masami Hiramatsu6381c242014-04-17 17:16:44 +0900952 if (unlikely(regs->ip == (unsigned long)cur->ainsn.insn)) {
953 /* This must happen on single-stepping */
954 WARN_ON(kcb->kprobe_status != KPROBE_HIT_SS &&
955 kcb->kprobe_status != KPROBE_REENTER);
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800956 /*
957 * We are here because the instruction being single
958 * stepped caused a page fault. We reset the current
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100959 * kprobe and the ip points back to the probe address
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800960 * and allow the page fault handler to continue as a
961 * normal page fault.
962 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100963 regs->ip = (unsigned long)cur->addr;
Masami Hiramatsudcfc4722016-06-11 23:06:53 +0900964 /*
965 * Trap flag (TF) has been set here because this fault
966 * happened where the single stepping will be done.
967 * So clear it by resetting the current kprobe:
968 */
969 regs->flags &= ~X86_EFLAGS_TF;
970
971 /*
972 * If the TF flag was set before the kprobe hit,
973 * don't touch it:
974 */
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100975 regs->flags |= kcb->kprobe_old_flags;
Masami Hiramatsudcfc4722016-06-11 23:06:53 +0900976
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800977 if (kcb->kprobe_status == KPROBE_REENTER)
978 restore_previous_kprobe(kcb);
979 else
980 reset_current_kprobe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 preempt_enable_no_resched();
Masami Hiramatsu6381c242014-04-17 17:16:44 +0900982 } else if (kcb->kprobe_status == KPROBE_HIT_ACTIVE ||
983 kcb->kprobe_status == KPROBE_HIT_SSDONE) {
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800984 /*
985 * We increment the nmissed count for accounting,
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +0100986 * we can also use npre/npostfault count for accounting
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -0800987 * these specific fault cases.
988 */
989 kprobes_inc_nmissed_count(cur);
990
991 /*
992 * We come here because instructions in the pre/post
993 * handler caused the page_fault, this could happen
994 * if handler tries to access user space by
995 * copy_from_user(), get_user() etc. Let the
996 * user-specified handler try to fix it first.
997 */
998 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr))
999 return 1;
1000
1001 /*
1002 * In case the user-specified fault handler returned
1003 * zero, try to fix up.
1004 */
Tony Luck548acf12016-02-17 10:20:12 -08001005 if (fixup_exception(regs, trapnr))
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001006 return 1;
Harvey Harrison6d485832008-01-30 13:31:41 +01001007
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -08001008 /*
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001009 * fixup routine could not handle it,
Prasanna S Panchamukhic28f8962006-03-26 01:38:23 -08001010 * Let do_page_fault() fix it.
1011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Masami Hiramatsu6381c242014-04-17 17:16:44 +09001013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return 0;
1015}
Masami Hiramatsu93266382014-04-17 17:18:14 +09001016NOKPROBE_SYMBOL(kprobe_fault_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018/*
1019 * Wrapper routine for handling exceptions.
1020 */
Masami Hiramatsu93266382014-04-17 17:18:14 +09001021int kprobe_exceptions_notify(struct notifier_block *self, unsigned long val,
1022 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Jan Engelhardtade1af72008-01-30 13:33:23 +01001024 struct die_args *args = data;
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -08001025 int ret = NOTIFY_DONE;
1026
Andy Lutomirskif39b6f02015-03-18 18:33:33 -07001027 if (args->regs && user_mode(args->regs))
bibo,mao2326c772006-03-26 01:38:21 -08001028 return ret;
1029
Masami Hiramatsu6f6343f2014-04-17 17:17:33 +09001030 if (val == DIE_GPF) {
Quentin Barnesb506a9d2008-01-30 13:32:32 +01001031 /*
1032 * To be potentially processing a kprobe fault and to
1033 * trust the result from kprobe_running(), we have
1034 * be non-preemptible.
1035 */
1036 if (!preemptible() && kprobe_running() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 kprobe_fault_handler(args->regs, args->trapnr))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -08001038 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -08001040 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041}
Masami Hiramatsu93266382014-04-17 17:18:14 +09001042NOKPROBE_SYMBOL(kprobe_exceptions_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Masami Hiramatsu93266382014-04-17 17:18:14 +09001044int setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 struct jprobe *jp = container_of(p, struct jprobe, kp);
1047 unsigned long addr;
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001048 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001050 kcb->jprobe_saved_regs = *regs;
Masami Hiramatsu8533bbe2008-01-30 13:31:21 +01001051 kcb->jprobe_saved_sp = stack_addr(regs);
1052 addr = (unsigned long)(kcb->jprobe_saved_sp);
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 /*
1055 * As Linus pointed out, gcc assumes that the callee
1056 * owns the argument space and could overwrite it, e.g.
1057 * tailcall optimization. So, to be absolutely safe
1058 * we also save and restore enough stack bytes to cover
1059 * the argument area.
1060 */
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001061 memcpy(kcb->jprobes_stack, (kprobe_opcode_t *)addr,
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001062 MIN_STACK_SIZE(addr));
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001063 regs->flags &= ~X86_EFLAGS_IF;
Peter Zijlstra58dfe882007-10-11 22:25:25 +02001064 trace_hardirqs_off();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001065 regs->ip = (unsigned long)(jp->entry);
Steven Rostedt (Red Hat)237d28d2015-01-12 12:12:03 -05001066
1067 /*
1068 * jprobes use jprobe_return() which skips the normal return
1069 * path of the function, and this messes up the accounting of the
1070 * function graph tracer to get messed up.
1071 *
1072 * Pause function graph tracing while performing the jprobe function.
1073 */
1074 pause_graph_tracing();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return 1;
1076}
Masami Hiramatsu93266382014-04-17 17:18:14 +09001077NOKPROBE_SYMBOL(setjmp_pre_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Masami Hiramatsu93266382014-04-17 17:18:14 +09001079void jprobe_return(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001081 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
1082
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001083 asm volatile (
1084#ifdef CONFIG_X86_64
1085 " xchg %%rbx,%%rsp \n"
1086#else
1087 " xchgl %%ebx,%%esp \n"
1088#endif
1089 " int3 \n"
1090 " .globl jprobe_return_end\n"
1091 " jprobe_return_end: \n"
1092 " nop \n"::"b"
1093 (kcb->jprobe_saved_sp):"memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
Masami Hiramatsu93266382014-04-17 17:18:14 +09001095NOKPROBE_SYMBOL(jprobe_return);
1096NOKPROBE_SYMBOL(jprobe_return_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Masami Hiramatsu93266382014-04-17 17:18:14 +09001098int longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001100 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001101 u8 *addr = (u8 *) (regs->ip - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 struct jprobe *jp = container_of(p, struct jprobe, kp);
Steven Rostedt (Red Hat)237d28d2015-01-12 12:12:03 -05001103 void *saved_sp = kcb->jprobe_saved_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001105 if ((addr > (u8 *) jprobe_return) &&
1106 (addr < (u8 *) jprobe_return_end)) {
Steven Rostedt (Red Hat)237d28d2015-01-12 12:12:03 -05001107 if (stack_addr(regs) != saved_sp) {
Masami Hiramatsu29b6cd72007-12-18 18:05:58 +01001108 struct pt_regs *saved_regs = &kcb->jprobe_saved_regs;
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001109 printk(KERN_ERR
1110 "current sp %p does not match saved sp %p\n",
Steven Rostedt (Red Hat)237d28d2015-01-12 12:12:03 -05001111 stack_addr(regs), saved_sp);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001112 printk(KERN_ERR "Saved registers for jprobe %p\n", jp);
Jan Beulich57da8b92012-05-09 08:47:37 +01001113 show_regs(saved_regs);
Masami Hiramatsud6be29b2008-01-30 13:31:21 +01001114 printk(KERN_ERR "Current registers\n");
Jan Beulich57da8b92012-05-09 08:47:37 +01001115 show_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 BUG();
1117 }
Steven Rostedt (Red Hat)237d28d2015-01-12 12:12:03 -05001118 /* It's OK to start function graph tracing again */
1119 unpause_graph_tracing();
Ananth N Mavinakayanahallie7a510f2005-11-07 01:00:12 -08001120 *regs = kcb->jprobe_saved_regs;
Steven Rostedt (Red Hat)237d28d2015-01-12 12:12:03 -05001121 memcpy(saved_sp, kcb->jprobes_stack, MIN_STACK_SIZE(saved_sp));
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -08001122 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 return 1;
1124 }
1125 return 0;
1126}
Masami Hiramatsu93266382014-04-17 17:18:14 +09001127NOKPROBE_SYMBOL(longjmp_break_handler);
Rusty Lynchba8af122005-06-27 15:17:10 -07001128
Masami Hiramatsube8f2742014-04-17 17:16:58 +09001129bool arch_within_kprobe_blacklist(unsigned long addr)
1130{
1131 return (addr >= (unsigned long)__kprobes_text_start &&
1132 addr < (unsigned long)__kprobes_text_end) ||
1133 (addr >= (unsigned long)__entry_text_start &&
1134 addr < (unsigned long)__entry_text_end);
1135}
1136
Rusty Lynch67729262005-07-05 18:54:50 -07001137int __init arch_init_kprobes(void)
Rusty Lynchba8af122005-06-27 15:17:10 -07001138{
Masami Hiramatsua7b01332013-07-18 20:47:50 +09001139 return 0;
Rusty Lynchba8af122005-06-27 15:17:10 -07001140}
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001141
Masami Hiramatsu7ec8a972014-04-17 17:17:47 +09001142int arch_trampoline_kprobe(struct kprobe *p)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001143{
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001144 return 0;
1145}