blob: fa034d29cf73d5730f531b7bfd98682278d077b4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Kernel Probes (KProbes)
3 * kernel/kprobes.c
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 *
19 * Copyright (C) IBM Corporation, 2002, 2004
20 *
21 * 2002-Oct Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel
22 * Probes initial implementation (includes suggestions from
23 * Rusty Russell).
24 * 2004-Aug Updated by Prasanna S Panchamukhi <prasanna@in.ibm.com> with
25 * hlists and exceptions notifier as suggested by Andi Kleen.
26 * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes
27 * interface to access function arguments.
28 * 2004-Sep Prasanna S Panchamukhi <prasanna@in.ibm.com> Changed Kprobes
29 * exceptions notifier to be first on the priority list.
Hien Nguyenb94cce92005-06-23 00:09:19 -070030 * 2005-May Hien Nguyen <hien@us.ibm.com>, Jim Keniston
31 * <jkenisto@us.ibm.com> and Prasanna S Panchamukhi
32 * <prasanna@in.ibm.com> added function-return probes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34#include <linux/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/hash.h>
36#include <linux/init.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080037#include <linux/slab.h>
Randy Dunlape3869792007-05-08 00:27:01 -070038#include <linux/stddef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070040#include <linux/moduleloader.h>
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -070041#include <linux/kallsyms.h>
Masami Hiramatsub4c6c342006-12-06 20:38:11 -080042#include <linux/freezer.h>
Srinivasa Ds346fd592007-02-20 13:57:54 -080043#include <linux/seq_file.h>
44#include <linux/debugfs.h>
Masami Hiramatsub2be84d2010-02-25 08:34:15 -050045#include <linux/sysctl.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070046#include <linux/kdebug.h>
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -050047#include <linux/memory.h>
Masami Hiramatsu4554dbc2010-02-02 16:49:18 -050048#include <linux/ftrace.h>
Masami Hiramatsuafd66252010-02-25 08:34:07 -050049#include <linux/cpu.h>
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070050
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -070051#include <asm-generic/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/cacheflush.h>
53#include <asm/errno.h>
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070054#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define KPROBE_HASH_BITS 6
57#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS)
58
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -070059
60/*
61 * Some oddball architectures like 64bit powerpc have function descriptors
62 * so this must be overridable.
63 */
64#ifndef kprobe_lookup_name
65#define kprobe_lookup_name(name, addr) \
66 addr = ((kprobe_opcode_t *)(kallsyms_lookup_name(name)))
67#endif
68
Srinivasa D Sef53d9c2008-07-25 01:46:04 -070069static int kprobes_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static struct hlist_head kprobe_table[KPROBE_TABLE_SIZE];
Hien Nguyenb94cce92005-06-23 00:09:19 -070071static struct hlist_head kretprobe_inst_table[KPROBE_TABLE_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070073/* NOTE: change this value only with kprobe_mutex held */
Masami Hiramatsue579abe2009-04-06 19:01:01 -070074static bool kprobes_all_disarmed;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070075
Masami Hiramatsu12941562009-01-06 14:41:50 -080076static DEFINE_MUTEX(kprobe_mutex); /* Protects kprobe_table */
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -080077static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -070078static struct {
Andrew Morton7e036d02008-11-12 13:26:57 -080079 spinlock_t lock ____cacheline_aligned_in_smp;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -070080} kretprobe_table_locks[KPROBE_TABLE_SIZE];
81
82static spinlock_t *kretprobe_table_lock_ptr(unsigned long hash)
83{
84 return &(kretprobe_table_locks[hash].lock);
85}
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Srinivasa Ds3d8d9962008-04-28 02:14:26 -070087/*
88 * Normally, functions that we'd want to prohibit kprobes in, are marked
89 * __kprobes. But, there are cases where such functions already belong to
90 * a different section (__sched for preempt_schedule)
91 *
92 * For such cases, we now have a blacklist
93 */
Daniel Guilak544304b2008-07-10 09:38:19 -070094static struct kprobe_blackpoint kprobe_blacklist[] = {
Srinivasa Ds3d8d9962008-04-28 02:14:26 -070095 {"preempt_schedule",},
Masami Hiramatsu65e234e2009-08-27 13:23:32 -040096 {"native_get_debugreg",},
Masami Hiramatsua00e8172009-09-08 12:47:55 -040097 {"irq_entries_start",},
98 {"common_interrupt",},
Masami Hiramatsu5ecaafd2010-02-05 01:24:34 -050099 {"mcount",}, /* mcount can be called from everywhere */
Srinivasa Ds3d8d9962008-04-28 02:14:26 -0700100 {NULL} /* Terminator */
101};
102
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -0800103#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700104/*
105 * kprobe->ainsn.insn points to the copy of the instruction to be
106 * single-stepped. x86_64, POWER4 and above have no-exec support and
107 * stepping on the instruction on a vmalloced/kmalloced/data page
108 * is a recipe for disaster
109 */
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700110struct kprobe_insn_page {
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400111 struct list_head list;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700112 kprobe_opcode_t *insns; /* Page of instruction slots */
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700113 int nused;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800114 int ngarbage;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500115 char slot_used[];
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700116};
117
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500118#define KPROBE_INSN_PAGE_SIZE(slots) \
119 (offsetof(struct kprobe_insn_page, slot_used) + \
120 (sizeof(char) * (slots)))
121
122struct kprobe_insn_cache {
123 struct list_head pages; /* list of kprobe_insn_page */
124 size_t insn_size; /* size of instruction slot */
125 int nr_garbage;
126};
127
128static int slots_per_page(struct kprobe_insn_cache *c)
129{
130 return PAGE_SIZE/(c->insn_size * sizeof(kprobe_opcode_t));
131}
132
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800133enum kprobe_slot_state {
134 SLOT_CLEAN = 0,
135 SLOT_DIRTY = 1,
136 SLOT_USED = 2,
137};
138
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500139static DEFINE_MUTEX(kprobe_insn_mutex); /* Protects kprobe_insn_slots */
140static struct kprobe_insn_cache kprobe_insn_slots = {
141 .pages = LIST_HEAD_INIT(kprobe_insn_slots.pages),
142 .insn_size = MAX_INSN_SIZE,
143 .nr_garbage = 0,
144};
145static int __kprobes collect_garbage_slots(struct kprobe_insn_cache *c);
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800146
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700147/**
Masami Hiramatsu12941562009-01-06 14:41:50 -0800148 * __get_insn_slot() - Find a slot on an executable page for an instruction.
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700149 * We allocate an executable page if there's no room on existing ones.
150 */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500151static kprobe_opcode_t __kprobes *__get_insn_slot(struct kprobe_insn_cache *c)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700152{
153 struct kprobe_insn_page *kip;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700154
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700155 retry:
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500156 list_for_each_entry(kip, &c->pages, list) {
157 if (kip->nused < slots_per_page(c)) {
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700158 int i;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500159 for (i = 0; i < slots_per_page(c); i++) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800160 if (kip->slot_used[i] == SLOT_CLEAN) {
161 kip->slot_used[i] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700162 kip->nused++;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500163 return kip->insns + (i * c->insn_size);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700164 }
165 }
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500166 /* kip->nused is broken. Fix it. */
167 kip->nused = slots_per_page(c);
168 WARN_ON(1);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700169 }
170 }
171
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800172 /* If there are any garbage slots, collect it and try again. */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500173 if (c->nr_garbage && collect_garbage_slots(c) == 0)
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800174 goto retry;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500175
176 /* All out of space. Need to allocate a new page. */
177 kip = kmalloc(KPROBE_INSN_PAGE_SIZE(slots_per_page(c)), GFP_KERNEL);
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700178 if (!kip)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700179 return NULL;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700180
181 /*
182 * Use module_alloc so this page is within +/- 2GB of where the
183 * kernel image and loaded module images reside. This is required
184 * so x86_64 can correctly handle the %rip-relative fixups.
185 */
186 kip->insns = module_alloc(PAGE_SIZE);
187 if (!kip->insns) {
188 kfree(kip);
189 return NULL;
190 }
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400191 INIT_LIST_HEAD(&kip->list);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500192 memset(kip->slot_used, SLOT_CLEAN, slots_per_page(c));
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800193 kip->slot_used[0] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700194 kip->nused = 1;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800195 kip->ngarbage = 0;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500196 list_add(&kip->list, &c->pages);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700197 return kip->insns;
198}
199
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500200
Masami Hiramatsu12941562009-01-06 14:41:50 -0800201kprobe_opcode_t __kprobes *get_insn_slot(void)
202{
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500203 kprobe_opcode_t *ret = NULL;
204
Masami Hiramatsu12941562009-01-06 14:41:50 -0800205 mutex_lock(&kprobe_insn_mutex);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500206 ret = __get_insn_slot(&kprobe_insn_slots);
Masami Hiramatsu12941562009-01-06 14:41:50 -0800207 mutex_unlock(&kprobe_insn_mutex);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500208
Masami Hiramatsu12941562009-01-06 14:41:50 -0800209 return ret;
210}
211
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800212/* Return 1 if all garbages are collected, otherwise 0. */
213static int __kprobes collect_one_slot(struct kprobe_insn_page *kip, int idx)
214{
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800215 kip->slot_used[idx] = SLOT_CLEAN;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800216 kip->nused--;
217 if (kip->nused == 0) {
218 /*
219 * Page is no longer in use. Free it unless
220 * it's the last one. We keep the last one
221 * so as not to have to set it up again the
222 * next time somebody inserts a probe.
223 */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500224 if (!list_is_singular(&kip->list)) {
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400225 list_del(&kip->list);
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800226 module_free(NULL, kip->insns);
227 kfree(kip);
228 }
229 return 1;
230 }
231 return 0;
232}
233
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500234static int __kprobes collect_garbage_slots(struct kprobe_insn_cache *c)
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800235{
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400236 struct kprobe_insn_page *kip, *next;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800237
Masami Hiramatsu615d0eb2010-02-02 16:49:04 -0500238 /* Ensure no-one is interrupted on the garbages */
239 synchronize_sched();
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800240
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500241 list_for_each_entry_safe(kip, next, &c->pages, list) {
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800242 int i;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800243 if (kip->ngarbage == 0)
244 continue;
245 kip->ngarbage = 0; /* we will collect all garbages */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500246 for (i = 0; i < slots_per_page(c); i++) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800247 if (kip->slot_used[i] == SLOT_DIRTY &&
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800248 collect_one_slot(kip, i))
249 break;
250 }
251 }
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500252 c->nr_garbage = 0;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800253 return 0;
254}
255
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500256static void __kprobes __free_insn_slot(struct kprobe_insn_cache *c,
257 kprobe_opcode_t *slot, int dirty)
258{
259 struct kprobe_insn_page *kip;
260
261 list_for_each_entry(kip, &c->pages, list) {
262 long idx = ((long)slot - (long)kip->insns) / c->insn_size;
263 if (idx >= 0 && idx < slots_per_page(c)) {
264 WARN_ON(kip->slot_used[idx] != SLOT_USED);
265 if (dirty) {
266 kip->slot_used[idx] = SLOT_DIRTY;
267 kip->ngarbage++;
268 if (++c->nr_garbage > slots_per_page(c))
269 collect_garbage_slots(c);
270 } else
271 collect_one_slot(kip, idx);
272 return;
273 }
274 }
275 /* Could not free this slot. */
276 WARN_ON(1);
277}
278
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800279void __kprobes free_insn_slot(kprobe_opcode_t * slot, int dirty)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700280{
Masami Hiramatsu12941562009-01-06 14:41:50 -0800281 mutex_lock(&kprobe_insn_mutex);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500282 __free_insn_slot(&kprobe_insn_slots, slot, dirty);
Masami Hiramatsu12941562009-01-06 14:41:50 -0800283 mutex_unlock(&kprobe_insn_mutex);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700284}
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500285#ifdef CONFIG_OPTPROBES
286/* For optimized_kprobe buffer */
287static DEFINE_MUTEX(kprobe_optinsn_mutex); /* Protects kprobe_optinsn_slots */
288static struct kprobe_insn_cache kprobe_optinsn_slots = {
289 .pages = LIST_HEAD_INIT(kprobe_optinsn_slots.pages),
290 /* .insn_size is initialized later */
291 .nr_garbage = 0,
292};
293/* Get a slot for optimized_kprobe buffer */
294kprobe_opcode_t __kprobes *get_optinsn_slot(void)
295{
296 kprobe_opcode_t *ret = NULL;
297
298 mutex_lock(&kprobe_optinsn_mutex);
299 ret = __get_insn_slot(&kprobe_optinsn_slots);
300 mutex_unlock(&kprobe_optinsn_mutex);
301
302 return ret;
303}
304
305void __kprobes free_optinsn_slot(kprobe_opcode_t * slot, int dirty)
306{
307 mutex_lock(&kprobe_optinsn_mutex);
308 __free_insn_slot(&kprobe_optinsn_slots, slot, dirty);
309 mutex_unlock(&kprobe_optinsn_mutex);
310}
311#endif
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -0800312#endif
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700313
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800314/* We have preemption disabled.. so it is safe to use __ versions */
315static inline void set_kprobe_instance(struct kprobe *kp)
316{
317 __get_cpu_var(kprobe_instance) = kp;
318}
319
320static inline void reset_kprobe_instance(void)
321{
322 __get_cpu_var(kprobe_instance) = NULL;
323}
324
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800325/*
326 * This routine is called either:
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800327 * - under the kprobe_mutex - during kprobe_[un]register()
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800328 * OR
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800329 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800330 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700331struct kprobe __kprobes *get_kprobe(void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 struct hlist_head *head;
334 struct hlist_node *node;
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800335 struct kprobe *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800338 hlist_for_each_entry_rcu(p, node, head, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (p->addr == addr)
340 return p;
341 }
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return NULL;
344}
345
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500346static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs);
347
348/* Return true if the kprobe is an aggregator */
349static inline int kprobe_aggrprobe(struct kprobe *p)
350{
351 return p->pre_handler == aggr_pre_handler;
352}
353
354/*
355 * Keep all fields in the kprobe consistent
356 */
357static inline void copy_kprobe(struct kprobe *old_p, struct kprobe *p)
358{
359 memcpy(&p->opcode, &old_p->opcode, sizeof(kprobe_opcode_t));
360 memcpy(&p->ainsn, &old_p->ainsn, sizeof(struct arch_specific_insn));
361}
362
363#ifdef CONFIG_OPTPROBES
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500364/* NOTE: change this value only with kprobe_mutex held */
365static bool kprobes_allow_optimization;
366
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500367/*
368 * Call all pre_handler on the list, but ignores its return value.
369 * This must be called from arch-dep optimized caller.
370 */
371void __kprobes opt_pre_handler(struct kprobe *p, struct pt_regs *regs)
372{
373 struct kprobe *kp;
374
375 list_for_each_entry_rcu(kp, &p->list, list) {
376 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
377 set_kprobe_instance(kp);
378 kp->pre_handler(kp, regs);
379 }
380 reset_kprobe_instance();
381 }
382}
383
384/* Return true(!0) if the kprobe is ready for optimization. */
385static inline int kprobe_optready(struct kprobe *p)
386{
387 struct optimized_kprobe *op;
388
389 if (kprobe_aggrprobe(p)) {
390 op = container_of(p, struct optimized_kprobe, kp);
391 return arch_prepared_optinsn(&op->optinsn);
392 }
393
394 return 0;
395}
396
397/*
398 * Return an optimized kprobe whose optimizing code replaces
399 * instructions including addr (exclude breakpoint).
400 */
401struct kprobe *__kprobes get_optimized_kprobe(unsigned long addr)
402{
403 int i;
404 struct kprobe *p = NULL;
405 struct optimized_kprobe *op;
406
407 /* Don't check i == 0, since that is a breakpoint case. */
408 for (i = 1; !p && i < MAX_OPTIMIZED_LENGTH; i++)
409 p = get_kprobe((void *)(addr - i));
410
411 if (p && kprobe_optready(p)) {
412 op = container_of(p, struct optimized_kprobe, kp);
413 if (arch_within_optimized_kprobe(op, addr))
414 return p;
415 }
416
417 return NULL;
418}
419
420/* Optimization staging list, protected by kprobe_mutex */
421static LIST_HEAD(optimizing_list);
422
423static void kprobe_optimizer(struct work_struct *work);
424static DECLARE_DELAYED_WORK(optimizing_work, kprobe_optimizer);
425#define OPTIMIZE_DELAY 5
426
427/* Kprobe jump optimizer */
428static __kprobes void kprobe_optimizer(struct work_struct *work)
429{
430 struct optimized_kprobe *op, *tmp;
431
432 /* Lock modules while optimizing kprobes */
433 mutex_lock(&module_mutex);
434 mutex_lock(&kprobe_mutex);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500435 if (kprobes_all_disarmed || !kprobes_allow_optimization)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500436 goto end;
437
438 /*
439 * Wait for quiesence period to ensure all running interrupts
440 * are done. Because optprobe may modify multiple instructions
441 * there is a chance that Nth instruction is interrupted. In that
442 * case, running interrupt can return to 2nd-Nth byte of jump
443 * instruction. This wait is for avoiding it.
444 */
445 synchronize_sched();
446
447 /*
448 * The optimization/unoptimization refers online_cpus via
449 * stop_machine() and cpu-hotplug modifies online_cpus.
450 * And same time, text_mutex will be held in cpu-hotplug and here.
451 * This combination can cause a deadlock (cpu-hotplug try to lock
452 * text_mutex but stop_machine can not be done because online_cpus
453 * has been changed)
454 * To avoid this deadlock, we need to call get_online_cpus()
455 * for preventing cpu-hotplug outside of text_mutex locking.
456 */
457 get_online_cpus();
458 mutex_lock(&text_mutex);
459 list_for_each_entry_safe(op, tmp, &optimizing_list, list) {
460 WARN_ON(kprobe_disabled(&op->kp));
461 if (arch_optimize_kprobe(op) < 0)
462 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
463 list_del_init(&op->list);
464 }
465 mutex_unlock(&text_mutex);
466 put_online_cpus();
467end:
468 mutex_unlock(&kprobe_mutex);
469 mutex_unlock(&module_mutex);
470}
471
472/* Optimize kprobe if p is ready to be optimized */
473static __kprobes void optimize_kprobe(struct kprobe *p)
474{
475 struct optimized_kprobe *op;
476
477 /* Check if the kprobe is disabled or not ready for optimization. */
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500478 if (!kprobe_optready(p) || !kprobes_allow_optimization ||
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500479 (kprobe_disabled(p) || kprobes_all_disarmed))
480 return;
481
482 /* Both of break_handler and post_handler are not supported. */
483 if (p->break_handler || p->post_handler)
484 return;
485
486 op = container_of(p, struct optimized_kprobe, kp);
487
488 /* Check there is no other kprobes at the optimized instructions */
489 if (arch_check_optimized_kprobe(op) < 0)
490 return;
491
492 /* Check if it is already optimized. */
493 if (op->kp.flags & KPROBE_FLAG_OPTIMIZED)
494 return;
495
496 op->kp.flags |= KPROBE_FLAG_OPTIMIZED;
497 list_add(&op->list, &optimizing_list);
498 if (!delayed_work_pending(&optimizing_work))
499 schedule_delayed_work(&optimizing_work, OPTIMIZE_DELAY);
500}
501
502/* Unoptimize a kprobe if p is optimized */
503static __kprobes void unoptimize_kprobe(struct kprobe *p)
504{
505 struct optimized_kprobe *op;
506
507 if ((p->flags & KPROBE_FLAG_OPTIMIZED) && kprobe_aggrprobe(p)) {
508 op = container_of(p, struct optimized_kprobe, kp);
509 if (!list_empty(&op->list))
510 /* Dequeue from the optimization queue */
511 list_del_init(&op->list);
512 else
513 /* Replace jump with break */
514 arch_unoptimize_kprobe(op);
515 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
516 }
517}
518
519/* Remove optimized instructions */
520static void __kprobes kill_optimized_kprobe(struct kprobe *p)
521{
522 struct optimized_kprobe *op;
523
524 op = container_of(p, struct optimized_kprobe, kp);
525 if (!list_empty(&op->list)) {
526 /* Dequeue from the optimization queue */
527 list_del_init(&op->list);
528 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
529 }
530 /* Don't unoptimize, because the target code will be freed. */
531 arch_remove_optimized_kprobe(op);
532}
533
534/* Try to prepare optimized instructions */
535static __kprobes void prepare_optimized_kprobe(struct kprobe *p)
536{
537 struct optimized_kprobe *op;
538
539 op = container_of(p, struct optimized_kprobe, kp);
540 arch_prepare_optimized_kprobe(op);
541}
542
543/* Free optimized instructions and optimized_kprobe */
544static __kprobes void free_aggr_kprobe(struct kprobe *p)
545{
546 struct optimized_kprobe *op;
547
548 op = container_of(p, struct optimized_kprobe, kp);
549 arch_remove_optimized_kprobe(op);
550 kfree(op);
551}
552
553/* Allocate new optimized_kprobe and try to prepare optimized instructions */
554static __kprobes struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
555{
556 struct optimized_kprobe *op;
557
558 op = kzalloc(sizeof(struct optimized_kprobe), GFP_KERNEL);
559 if (!op)
560 return NULL;
561
562 INIT_LIST_HEAD(&op->list);
563 op->kp.addr = p->addr;
564 arch_prepare_optimized_kprobe(op);
565
566 return &op->kp;
567}
568
569static void __kprobes init_aggr_kprobe(struct kprobe *ap, struct kprobe *p);
570
571/*
572 * Prepare an optimized_kprobe and optimize it
573 * NOTE: p must be a normal registered kprobe
574 */
575static __kprobes void try_to_optimize_kprobe(struct kprobe *p)
576{
577 struct kprobe *ap;
578 struct optimized_kprobe *op;
579
580 ap = alloc_aggr_kprobe(p);
581 if (!ap)
582 return;
583
584 op = container_of(ap, struct optimized_kprobe, kp);
585 if (!arch_prepared_optinsn(&op->optinsn)) {
586 /* If failed to setup optimizing, fallback to kprobe */
587 free_aggr_kprobe(ap);
588 return;
589 }
590
591 init_aggr_kprobe(ap, p);
592 optimize_kprobe(ap);
593}
594
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500595#ifdef CONFIG_SYSCTL
596static void __kprobes optimize_all_kprobes(void)
597{
598 struct hlist_head *head;
599 struct hlist_node *node;
600 struct kprobe *p;
601 unsigned int i;
602
603 /* If optimization is already allowed, just return */
604 if (kprobes_allow_optimization)
605 return;
606
607 kprobes_allow_optimization = true;
608 mutex_lock(&text_mutex);
609 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
610 head = &kprobe_table[i];
611 hlist_for_each_entry_rcu(p, node, head, hlist)
612 if (!kprobe_disabled(p))
613 optimize_kprobe(p);
614 }
615 mutex_unlock(&text_mutex);
616 printk(KERN_INFO "Kprobes globally optimized\n");
617}
618
619static void __kprobes unoptimize_all_kprobes(void)
620{
621 struct hlist_head *head;
622 struct hlist_node *node;
623 struct kprobe *p;
624 unsigned int i;
625
626 /* If optimization is already prohibited, just return */
627 if (!kprobes_allow_optimization)
628 return;
629
630 kprobes_allow_optimization = false;
631 printk(KERN_INFO "Kprobes globally unoptimized\n");
632 get_online_cpus(); /* For avoiding text_mutex deadlock */
633 mutex_lock(&text_mutex);
634 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
635 head = &kprobe_table[i];
636 hlist_for_each_entry_rcu(p, node, head, hlist) {
637 if (!kprobe_disabled(p))
638 unoptimize_kprobe(p);
639 }
640 }
641
642 mutex_unlock(&text_mutex);
643 put_online_cpus();
644 /* Allow all currently running kprobes to complete */
645 synchronize_sched();
646}
647
648int sysctl_kprobes_optimization;
649int proc_kprobes_optimization_handler(struct ctl_table *table, int write,
650 void __user *buffer, size_t *length,
651 loff_t *ppos)
652{
653 int ret;
654
655 mutex_lock(&kprobe_mutex);
656 sysctl_kprobes_optimization = kprobes_allow_optimization ? 1 : 0;
657 ret = proc_dointvec_minmax(table, write, buffer, length, ppos);
658
659 if (sysctl_kprobes_optimization)
660 optimize_all_kprobes();
661 else
662 unoptimize_all_kprobes();
663 mutex_unlock(&kprobe_mutex);
664
665 return ret;
666}
667#endif /* CONFIG_SYSCTL */
668
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500669static void __kprobes __arm_kprobe(struct kprobe *p)
670{
671 struct kprobe *old_p;
672
673 /* Check collision with other optimized kprobes */
674 old_p = get_optimized_kprobe((unsigned long)p->addr);
675 if (unlikely(old_p))
676 unoptimize_kprobe(old_p); /* Fallback to unoptimized kprobe */
677
678 arch_arm_kprobe(p);
679 optimize_kprobe(p); /* Try to optimize (add kprobe to a list) */
680}
681
682static void __kprobes __disarm_kprobe(struct kprobe *p)
683{
684 struct kprobe *old_p;
685
686 unoptimize_kprobe(p); /* Try to unoptimize */
687 arch_disarm_kprobe(p);
688
689 /* If another kprobe was blocked, optimize it. */
690 old_p = get_optimized_kprobe((unsigned long)p->addr);
691 if (unlikely(old_p))
692 optimize_kprobe(old_p);
693}
694
695#else /* !CONFIG_OPTPROBES */
696
697#define optimize_kprobe(p) do {} while (0)
698#define unoptimize_kprobe(p) do {} while (0)
699#define kill_optimized_kprobe(p) do {} while (0)
700#define prepare_optimized_kprobe(p) do {} while (0)
701#define try_to_optimize_kprobe(p) do {} while (0)
702#define __arm_kprobe(p) arch_arm_kprobe(p)
703#define __disarm_kprobe(p) arch_disarm_kprobe(p)
704
705static __kprobes void free_aggr_kprobe(struct kprobe *p)
706{
707 kfree(p);
708}
709
710static __kprobes struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
711{
712 return kzalloc(sizeof(struct kprobe), GFP_KERNEL);
713}
714#endif /* CONFIG_OPTPROBES */
715
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400716/* Arm a kprobe with text_mutex */
717static void __kprobes arm_kprobe(struct kprobe *kp)
718{
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500719 /*
720 * Here, since __arm_kprobe() doesn't use stop_machine(),
721 * this doesn't cause deadlock on text_mutex. So, we don't
722 * need get_online_cpus().
723 */
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400724 mutex_lock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500725 __arm_kprobe(kp);
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400726 mutex_unlock(&text_mutex);
727}
728
729/* Disarm a kprobe with text_mutex */
730static void __kprobes disarm_kprobe(struct kprobe *kp)
731{
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500732 get_online_cpus(); /* For avoiding text_mutex deadlock */
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400733 mutex_lock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500734 __disarm_kprobe(kp);
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400735 mutex_unlock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500736 put_online_cpus();
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400737}
738
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700739/*
740 * Aggregate handlers for multiple kprobes support - these handlers
741 * take care of invoking the individual kprobe handlers on p->list
742 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700743static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700744{
745 struct kprobe *kp;
746
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800747 list_for_each_entry_rcu(kp, &p->list, list) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700748 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800749 set_kprobe_instance(kp);
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700750 if (kp->pre_handler(kp, regs))
751 return 1;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700752 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800753 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700754 }
755 return 0;
756}
757
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700758static void __kprobes aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
759 unsigned long flags)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700760{
761 struct kprobe *kp;
762
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800763 list_for_each_entry_rcu(kp, &p->list, list) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700764 if (kp->post_handler && likely(!kprobe_disabled(kp))) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800765 set_kprobe_instance(kp);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700766 kp->post_handler(kp, regs, flags);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800767 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700768 }
769 }
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700770}
771
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700772static int __kprobes aggr_fault_handler(struct kprobe *p, struct pt_regs *regs,
773 int trapnr)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700774{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800775 struct kprobe *cur = __get_cpu_var(kprobe_instance);
776
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700777 /*
778 * if we faulted "during" the execution of a user specified
779 * probe handler, invoke just that probe's fault handler
780 */
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800781 if (cur && cur->fault_handler) {
782 if (cur->fault_handler(cur, regs, trapnr))
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700783 return 1;
784 }
785 return 0;
786}
787
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700788static int __kprobes aggr_break_handler(struct kprobe *p, struct pt_regs *regs)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700789{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800790 struct kprobe *cur = __get_cpu_var(kprobe_instance);
791 int ret = 0;
792
793 if (cur && cur->break_handler) {
794 if (cur->break_handler(cur, regs))
795 ret = 1;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700796 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800797 reset_kprobe_instance();
798 return ret;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700799}
800
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800801/* Walks the list and increments nmissed count for multiprobe case */
802void __kprobes kprobes_inc_nmissed_count(struct kprobe *p)
803{
804 struct kprobe *kp;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500805 if (!kprobe_aggrprobe(p)) {
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800806 p->nmissed++;
807 } else {
808 list_for_each_entry_rcu(kp, &p->list, list)
809 kp->nmissed++;
810 }
811 return;
812}
813
bibo,mao99219a32006-10-02 02:17:35 -0700814void __kprobes recycle_rp_inst(struct kretprobe_instance *ri,
815 struct hlist_head *head)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700816{
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700817 struct kretprobe *rp = ri->rp;
818
Hien Nguyenb94cce92005-06-23 00:09:19 -0700819 /* remove rp inst off the rprobe_inst_table */
820 hlist_del(&ri->hlist);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700821 INIT_HLIST_NODE(&ri->hlist);
822 if (likely(rp)) {
823 spin_lock(&rp->lock);
824 hlist_add_head(&ri->hlist, &rp->free_instances);
825 spin_unlock(&rp->lock);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700826 } else
827 /* Unregistering */
bibo,mao99219a32006-10-02 02:17:35 -0700828 hlist_add_head(&ri->hlist, head);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700829}
830
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800831void __kprobes kretprobe_hash_lock(struct task_struct *tsk,
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700832 struct hlist_head **head, unsigned long *flags)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700833{
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700834 unsigned long hash = hash_ptr(tsk, KPROBE_HASH_BITS);
835 spinlock_t *hlist_lock;
836
837 *head = &kretprobe_inst_table[hash];
838 hlist_lock = kretprobe_table_lock_ptr(hash);
839 spin_lock_irqsave(hlist_lock, *flags);
840}
841
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800842static void __kprobes kretprobe_table_lock(unsigned long hash,
843 unsigned long *flags)
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700844{
845 spinlock_t *hlist_lock = kretprobe_table_lock_ptr(hash);
846 spin_lock_irqsave(hlist_lock, *flags);
847}
848
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800849void __kprobes kretprobe_hash_unlock(struct task_struct *tsk,
850 unsigned long *flags)
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700851{
852 unsigned long hash = hash_ptr(tsk, KPROBE_HASH_BITS);
853 spinlock_t *hlist_lock;
854
855 hlist_lock = kretprobe_table_lock_ptr(hash);
856 spin_unlock_irqrestore(hlist_lock, *flags);
857}
858
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800859void __kprobes kretprobe_table_unlock(unsigned long hash, unsigned long *flags)
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700860{
861 spinlock_t *hlist_lock = kretprobe_table_lock_ptr(hash);
862 spin_unlock_irqrestore(hlist_lock, *flags);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700863}
864
Hien Nguyenb94cce92005-06-23 00:09:19 -0700865/*
bibo maoc6fd91f2006-03-26 01:38:20 -0800866 * This function is called from finish_task_switch when task tk becomes dead,
867 * so that we can recycle any function-return probe instances associated
868 * with this task. These left over instances represent probed functions
869 * that have been called but will never return.
Hien Nguyenb94cce92005-06-23 00:09:19 -0700870 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700871void __kprobes kprobe_flush_task(struct task_struct *tk)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700872{
bibo,mao62c27be2006-10-02 02:17:33 -0700873 struct kretprobe_instance *ri;
bibo,mao99219a32006-10-02 02:17:35 -0700874 struct hlist_head *head, empty_rp;
Rusty Lynch802eae72005-06-27 15:17:08 -0700875 struct hlist_node *node, *tmp;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700876 unsigned long hash, flags = 0;
Rusty Lynch802eae72005-06-27 15:17:08 -0700877
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700878 if (unlikely(!kprobes_initialized))
879 /* Early boot. kretprobe_table_locks not yet initialized. */
880 return;
881
882 hash = hash_ptr(tk, KPROBE_HASH_BITS);
883 head = &kretprobe_inst_table[hash];
884 kretprobe_table_lock(hash, &flags);
bibo,mao62c27be2006-10-02 02:17:33 -0700885 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
886 if (ri->task == tk)
bibo,mao99219a32006-10-02 02:17:35 -0700887 recycle_rp_inst(ri, &empty_rp);
bibo,mao62c27be2006-10-02 02:17:33 -0700888 }
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700889 kretprobe_table_unlock(hash, &flags);
890 INIT_HLIST_HEAD(&empty_rp);
bibo,mao99219a32006-10-02 02:17:35 -0700891 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
892 hlist_del(&ri->hlist);
893 kfree(ri);
894 }
Hien Nguyenb94cce92005-06-23 00:09:19 -0700895}
896
Hien Nguyenb94cce92005-06-23 00:09:19 -0700897static inline void free_rp_inst(struct kretprobe *rp)
898{
899 struct kretprobe_instance *ri;
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700900 struct hlist_node *pos, *next;
901
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700902 hlist_for_each_entry_safe(ri, pos, next, &rp->free_instances, hlist) {
903 hlist_del(&ri->hlist);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700904 kfree(ri);
905 }
906}
907
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700908static void __kprobes cleanup_rp_inst(struct kretprobe *rp)
909{
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700910 unsigned long flags, hash;
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700911 struct kretprobe_instance *ri;
912 struct hlist_node *pos, *next;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700913 struct hlist_head *head;
914
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700915 /* No race here */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700916 for (hash = 0; hash < KPROBE_TABLE_SIZE; hash++) {
917 kretprobe_table_lock(hash, &flags);
918 head = &kretprobe_inst_table[hash];
919 hlist_for_each_entry_safe(ri, pos, next, head, hlist) {
920 if (ri->rp == rp)
921 ri->rp = NULL;
922 }
923 kretprobe_table_unlock(hash, &flags);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700924 }
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700925 free_rp_inst(rp);
926}
927
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700928/*
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700929* Add the new probe to ap->list. Fail if this is the
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700930* second jprobe at the address - two jprobes can't coexist
931*/
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700932static int __kprobes add_new_kprobe(struct kprobe *ap, struct kprobe *p)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700933{
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700934 BUG_ON(kprobe_gone(ap) || kprobe_gone(p));
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500935
936 if (p->break_handler || p->post_handler)
937 unoptimize_kprobe(ap); /* Fall back to normal kprobe */
938
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700939 if (p->break_handler) {
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700940 if (ap->break_handler)
mao, bibo36721652006-06-26 00:25:22 -0700941 return -EEXIST;
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700942 list_add_tail_rcu(&p->list, &ap->list);
943 ap->break_handler = aggr_break_handler;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700944 } else
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700945 list_add_rcu(&p->list, &ap->list);
946 if (p->post_handler && !ap->post_handler)
947 ap->post_handler = aggr_post_handler;
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700948
949 if (kprobe_disabled(ap) && !kprobe_disabled(p)) {
950 ap->flags &= ~KPROBE_FLAG_DISABLED;
951 if (!kprobes_all_disarmed)
952 /* Arm the breakpoint again. */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500953 __arm_kprobe(ap);
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700954 }
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700955 return 0;
956}
957
958/*
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700959 * Fill in the required fields of the "manager kprobe". Replace the
960 * earlier kprobe in the hlist with the manager kprobe
961 */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500962static void __kprobes init_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700963{
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500964 /* Copy p's insn slot to ap */
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700965 copy_kprobe(p, ap);
bibo, maoa9ad9652006-07-30 03:03:26 -0700966 flush_insn_slot(ap);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700967 ap->addr = p->addr;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500968 ap->flags = p->flags & ~KPROBE_FLAG_OPTIMIZED;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700969 ap->pre_handler = aggr_pre_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700970 ap->fault_handler = aggr_fault_handler;
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800971 /* We don't care the kprobe which has gone. */
972 if (p->post_handler && !kprobe_gone(p))
mao, bibo36721652006-06-26 00:25:22 -0700973 ap->post_handler = aggr_post_handler;
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800974 if (p->break_handler && !kprobe_gone(p))
mao, bibo36721652006-06-26 00:25:22 -0700975 ap->break_handler = aggr_break_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700976
977 INIT_LIST_HEAD(&ap->list);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500978 INIT_HLIST_NODE(&ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700979
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500980 list_add_rcu(&p->list, &ap->list);
Keshavamurthy Anil Sadad0f32005-12-12 00:37:12 -0800981 hlist_replace_rcu(&p->hlist, &ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700982}
983
984/*
985 * This is the second or subsequent kprobe at the address - handle
986 * the intricacies
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700987 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700988static int __kprobes register_aggr_kprobe(struct kprobe *old_p,
989 struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700990{
991 int ret = 0;
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700992 struct kprobe *ap = old_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700993
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500994 if (!kprobe_aggrprobe(old_p)) {
995 /* If old_p is not an aggr_kprobe, create new aggr_kprobe. */
996 ap = alloc_aggr_kprobe(old_p);
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700997 if (!ap)
998 return -ENOMEM;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500999 init_aggr_kprobe(ap, old_p);
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001000 }
1001
1002 if (kprobe_gone(ap)) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001003 /*
1004 * Attempting to insert new probe at the same location that
1005 * had a probe in the module vaddr area which already
1006 * freed. So, the instruction slot has already been
1007 * released. We need a new slot for the new probe.
1008 */
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001009 ret = arch_prepare_kprobe(ap);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001010 if (ret)
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001011 /*
1012 * Even if fail to allocate new slot, don't need to
1013 * free aggr_probe. It will be used next time, or
1014 * freed by unregister_kprobe.
1015 */
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001016 return ret;
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001017
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001018 /* Prepare optimized instructions if possible. */
1019 prepare_optimized_kprobe(ap);
1020
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001021 /*
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001022 * Clear gone flag to prevent allocating new slot again, and
1023 * set disabled flag because it is not armed yet.
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001024 */
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001025 ap->flags = (ap->flags & ~KPROBE_FLAG_GONE)
1026 | KPROBE_FLAG_DISABLED;
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001027 }
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001028
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001029 /* Copy ap's insn slot to p */
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001030 copy_kprobe(ap, p);
1031 return add_new_kprobe(ap, p);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001032}
1033
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001034/* Try to disable aggr_kprobe, and return 1 if succeeded.*/
1035static int __kprobes try_to_disable_aggr_kprobe(struct kprobe *p)
1036{
1037 struct kprobe *kp;
1038
1039 list_for_each_entry_rcu(kp, &p->list, list) {
1040 if (!kprobe_disabled(kp))
1041 /*
1042 * There is an active probe on the list.
1043 * We can't disable aggr_kprobe.
1044 */
1045 return 0;
1046 }
1047 p->flags |= KPROBE_FLAG_DISABLED;
1048 return 1;
1049}
1050
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001051static int __kprobes in_kprobes_functions(unsigned long addr)
1052{
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001053 struct kprobe_blackpoint *kb;
1054
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001055 if (addr >= (unsigned long)__kprobes_text_start &&
1056 addr < (unsigned long)__kprobes_text_end)
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001057 return -EINVAL;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001058 /*
1059 * If there exists a kprobe_blacklist, verify and
1060 * fail any probe registration in the prohibited area
1061 */
1062 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
1063 if (kb->start_addr) {
1064 if (addr >= kb->start_addr &&
1065 addr < (kb->start_addr + kb->range))
1066 return -EINVAL;
1067 }
1068 }
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001069 return 0;
1070}
1071
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001072/*
1073 * If we have a symbol_name argument, look it up and add the offset field
1074 * to it. This way, we can specify a relative address to a symbol.
1075 */
1076static kprobe_opcode_t __kprobes *kprobe_addr(struct kprobe *p)
1077{
1078 kprobe_opcode_t *addr = p->addr;
1079 if (p->symbol_name) {
1080 if (addr)
1081 return NULL;
1082 kprobe_lookup_name(p->symbol_name, addr);
1083 }
1084
1085 if (!addr)
1086 return NULL;
1087 return (kprobe_opcode_t *)(((char *)addr) + p->offset);
1088}
1089
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301090/* Check passed kprobe is valid and return kprobe in kprobe_table. */
1091static struct kprobe * __kprobes __get_valid_kprobe(struct kprobe *p)
1092{
1093 struct kprobe *old_p, *list_p;
1094
1095 old_p = get_kprobe(p->addr);
1096 if (unlikely(!old_p))
1097 return NULL;
1098
1099 if (p != old_p) {
1100 list_for_each_entry_rcu(list_p, &old_p->list, list)
1101 if (list_p == p)
1102 /* kprobe p is a valid probe */
1103 goto valid;
1104 return NULL;
1105 }
1106valid:
1107 return old_p;
1108}
1109
1110/* Return error if the kprobe is being re-registered */
1111static inline int check_kprobe_rereg(struct kprobe *p)
1112{
1113 int ret = 0;
1114 struct kprobe *old_p;
1115
1116 mutex_lock(&kprobe_mutex);
1117 old_p = __get_valid_kprobe(p);
1118 if (old_p)
1119 ret = -EINVAL;
1120 mutex_unlock(&kprobe_mutex);
1121 return ret;
1122}
1123
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001124int __kprobes register_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 int ret = 0;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001127 struct kprobe *old_p;
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001128 struct module *probed_mod;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001129 kprobe_opcode_t *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001131 addr = kprobe_addr(p);
1132 if (!addr)
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -07001133 return -EINVAL;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001134 p->addr = addr;
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -07001135
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301136 ret = check_kprobe_rereg(p);
1137 if (ret)
1138 return ret;
1139
Masami Hiramatsua189d032008-11-12 13:26:51 -08001140 preempt_disable();
Masami Hiramatsuec30c5f2009-07-28 19:47:23 -04001141 if (!kernel_text_address((unsigned long) p->addr) ||
Masami Hiramatsu4554dbc2010-02-02 16:49:18 -05001142 in_kprobes_functions((unsigned long) p->addr) ||
1143 ftrace_text_reserved(p->addr, p->addr)) {
Masami Hiramatsua189d032008-11-12 13:26:51 -08001144 preempt_enable();
Mao, Bibob3e55c72005-12-12 00:37:00 -08001145 return -EINVAL;
Masami Hiramatsua189d032008-11-12 13:26:51 -08001146 }
Mao, Bibob3e55c72005-12-12 00:37:00 -08001147
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001148 /* User can pass only KPROBE_FLAG_DISABLED to register_kprobe */
1149 p->flags &= KPROBE_FLAG_DISABLED;
1150
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001151 /*
1152 * Check if are we probing a module.
1153 */
Masami Hiramatsua189d032008-11-12 13:26:51 -08001154 probed_mod = __module_text_address((unsigned long) p->addr);
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001155 if (probed_mod) {
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001156 /*
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001157 * We must hold a refcount of the probed module while updating
1158 * its code to prohibit unexpected unloading.
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001159 */
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001160 if (unlikely(!try_module_get(probed_mod))) {
1161 preempt_enable();
1162 return -EINVAL;
1163 }
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001164 /*
1165 * If the module freed .init.text, we couldn't insert
1166 * kprobes in there.
1167 */
1168 if (within_module_init((unsigned long)p->addr, probed_mod) &&
1169 probed_mod->state != MODULE_STATE_COMING) {
1170 module_put(probed_mod);
1171 preempt_enable();
1172 return -EINVAL;
1173 }
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001174 }
Masami Hiramatsua189d032008-11-12 13:26:51 -08001175 preempt_enable();
Mao, Bibob3e55c72005-12-12 00:37:00 -08001176
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001177 p->nmissed = 0;
Masami Hiramatsu98616682008-04-28 02:14:28 -07001178 INIT_LIST_HEAD(&p->list);
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -08001179 mutex_lock(&kprobe_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001180
1181 get_online_cpus(); /* For avoiding text_mutex deadlock. */
1182 mutex_lock(&text_mutex);
1183
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001184 old_p = get_kprobe(p->addr);
1185 if (old_p) {
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001186 /* Since this may unoptimize old_p, locking text_mutex. */
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001187 ret = register_aggr_kprobe(old_p, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 goto out;
1189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001191 ret = arch_prepare_kprobe(p);
1192 if (ret)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001193 goto out;
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001194
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001195 INIT_HLIST_NODE(&p->hlist);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001196 hlist_add_head_rcu(&p->hlist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
1198
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001199 if (!kprobes_all_disarmed && !kprobe_disabled(p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001200 __arm_kprobe(p);
Christoph Hellwig74a0b572007-10-16 01:24:07 -07001201
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001202 /* Try to optimize kprobe */
1203 try_to_optimize_kprobe(p);
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205out:
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001206 mutex_unlock(&text_mutex);
1207 put_online_cpus();
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -08001208 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001209
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001210 if (probed_mod)
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001211 module_put(probed_mod);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return ret;
1214}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001215EXPORT_SYMBOL_GPL(register_kprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Masami Hiramatsu98616682008-04-28 02:14:28 -07001217/*
1218 * Unregister a kprobe without a scheduler synchronization.
1219 */
1220static int __kprobes __unregister_kprobe_top(struct kprobe *p)
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001221{
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -08001222 struct kprobe *old_p, *list_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001223
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001224 old_p = __get_valid_kprobe(p);
1225 if (old_p == NULL)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001226 return -EINVAL;
1227
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001228 if (old_p == p ||
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001229 (kprobe_aggrprobe(old_p) &&
Masami Hiramatsu98616682008-04-28 02:14:28 -07001230 list_is_singular(&old_p->list))) {
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001231 /*
1232 * Only probe on the hash list. Disarm only if kprobes are
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001233 * enabled and not gone - otherwise, the breakpoint would
1234 * already have been removed. We save on flushing icache.
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001235 */
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001236 if (!kprobes_all_disarmed && !kprobe_disabled(old_p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001237 disarm_kprobe(old_p);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001238 hlist_del_rcu(&old_p->hlist);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001239 } else {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001240 if (p->break_handler && !kprobe_gone(p))
Masami Hiramatsu98616682008-04-28 02:14:28 -07001241 old_p->break_handler = NULL;
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001242 if (p->post_handler && !kprobe_gone(p)) {
Masami Hiramatsu98616682008-04-28 02:14:28 -07001243 list_for_each_entry_rcu(list_p, &old_p->list, list) {
1244 if ((list_p != p) && (list_p->post_handler))
1245 goto noclean;
1246 }
1247 old_p->post_handler = NULL;
1248 }
1249noclean:
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001250 list_del_rcu(&p->list);
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001251 if (!kprobe_disabled(old_p)) {
1252 try_to_disable_aggr_kprobe(old_p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001253 if (!kprobes_all_disarmed) {
1254 if (kprobe_disabled(old_p))
1255 disarm_kprobe(old_p);
1256 else
1257 /* Try to optimize this probe again */
1258 optimize_kprobe(old_p);
1259 }
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001260 }
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001261 }
Masami Hiramatsu98616682008-04-28 02:14:28 -07001262 return 0;
1263}
Mao, Bibob3e55c72005-12-12 00:37:00 -08001264
Masami Hiramatsu98616682008-04-28 02:14:28 -07001265static void __kprobes __unregister_kprobe_bottom(struct kprobe *p)
1266{
Masami Hiramatsu98616682008-04-28 02:14:28 -07001267 struct kprobe *old_p;
Mao, Bibob3e55c72005-12-12 00:37:00 -08001268
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001269 if (list_empty(&p->list))
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -08001270 arch_remove_kprobe(p);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001271 else if (list_is_singular(&p->list)) {
1272 /* "p" is the last child of an aggr_kprobe */
1273 old_p = list_entry(p->list.next, struct kprobe, list);
1274 list_del(&p->list);
1275 arch_remove_kprobe(old_p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001276 free_aggr_kprobe(old_p);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001280int __kprobes register_kprobes(struct kprobe **kps, int num)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001281{
1282 int i, ret = 0;
1283
1284 if (num <= 0)
1285 return -EINVAL;
1286 for (i = 0; i < num; i++) {
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001287 ret = register_kprobe(kps[i]);
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001288 if (ret < 0) {
1289 if (i > 0)
1290 unregister_kprobes(kps, i);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001291 break;
1292 }
1293 }
1294 return ret;
1295}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001296EXPORT_SYMBOL_GPL(register_kprobes);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001297
Masami Hiramatsu98616682008-04-28 02:14:28 -07001298void __kprobes unregister_kprobe(struct kprobe *p)
1299{
1300 unregister_kprobes(&p, 1);
1301}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001302EXPORT_SYMBOL_GPL(unregister_kprobe);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001303
Masami Hiramatsu98616682008-04-28 02:14:28 -07001304void __kprobes unregister_kprobes(struct kprobe **kps, int num)
1305{
1306 int i;
1307
1308 if (num <= 0)
1309 return;
1310 mutex_lock(&kprobe_mutex);
1311 for (i = 0; i < num; i++)
1312 if (__unregister_kprobe_top(kps[i]) < 0)
1313 kps[i]->addr = NULL;
1314 mutex_unlock(&kprobe_mutex);
1315
1316 synchronize_sched();
1317 for (i = 0; i < num; i++)
1318 if (kps[i]->addr)
1319 __unregister_kprobe_bottom(kps[i]);
1320}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001321EXPORT_SYMBOL_GPL(unregister_kprobes);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323static struct notifier_block kprobe_exceptions_nb = {
1324 .notifier_call = kprobe_exceptions_notify,
Anil S Keshavamurthy3d5631e2006-06-26 00:25:28 -07001325 .priority = 0x7fffffff /* we need to be notified first */
1326};
1327
Michael Ellerman3d7e3382007-07-19 01:48:11 -07001328unsigned long __weak arch_deref_entry_point(void *entry)
1329{
1330 return (unsigned long)entry;
1331}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001333int __kprobes register_jprobes(struct jprobe **jps, int num)
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001334{
1335 struct jprobe *jp;
1336 int ret = 0, i;
1337
1338 if (num <= 0)
1339 return -EINVAL;
1340 for (i = 0; i < num; i++) {
1341 unsigned long addr;
1342 jp = jps[i];
1343 addr = arch_deref_entry_point(jp->entry);
1344
1345 if (!kernel_text_address(addr))
1346 ret = -EINVAL;
1347 else {
1348 /* Todo: Verify probepoint is a function entry point */
1349 jp->kp.pre_handler = setjmp_pre_handler;
1350 jp->kp.break_handler = longjmp_break_handler;
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001351 ret = register_kprobe(&jp->kp);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001352 }
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001353 if (ret < 0) {
1354 if (i > 0)
1355 unregister_jprobes(jps, i);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001356 break;
1357 }
1358 }
1359 return ret;
1360}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001361EXPORT_SYMBOL_GPL(register_jprobes);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001362
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001363int __kprobes register_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001365 return register_jprobes(&jp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001367EXPORT_SYMBOL_GPL(register_jprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001369void __kprobes unregister_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001371 unregister_jprobes(&jp, 1);
1372}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001373EXPORT_SYMBOL_GPL(unregister_jprobe);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001374
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001375void __kprobes unregister_jprobes(struct jprobe **jps, int num)
1376{
1377 int i;
1378
1379 if (num <= 0)
1380 return;
1381 mutex_lock(&kprobe_mutex);
1382 for (i = 0; i < num; i++)
1383 if (__unregister_kprobe_top(&jps[i]->kp) < 0)
1384 jps[i]->kp.addr = NULL;
1385 mutex_unlock(&kprobe_mutex);
1386
1387 synchronize_sched();
1388 for (i = 0; i < num; i++) {
1389 if (jps[i]->kp.addr)
1390 __unregister_kprobe_bottom(&jps[i]->kp);
1391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001393EXPORT_SYMBOL_GPL(unregister_jprobes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001395#ifdef CONFIG_KRETPROBES
Adrian Bunke65cefe2006-02-03 03:03:42 -08001396/*
1397 * This kprobe pre_handler is registered with every kretprobe. When probe
1398 * hits it will set up the return probe.
1399 */
1400static int __kprobes pre_handler_kretprobe(struct kprobe *p,
1401 struct pt_regs *regs)
1402{
1403 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001404 unsigned long hash, flags = 0;
1405 struct kretprobe_instance *ri;
Adrian Bunke65cefe2006-02-03 03:03:42 -08001406
1407 /*TODO: consider to only swap the RA after the last pre_handler fired */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001408 hash = hash_ptr(current, KPROBE_HASH_BITS);
1409 spin_lock_irqsave(&rp->lock, flags);
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001410 if (!hlist_empty(&rp->free_instances)) {
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001411 ri = hlist_entry(rp->free_instances.first,
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001412 struct kretprobe_instance, hlist);
1413 hlist_del(&ri->hlist);
1414 spin_unlock_irqrestore(&rp->lock, flags);
1415
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001416 ri->rp = rp;
1417 ri->task = current;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001418
Ananth N Mavinakayanahallif02b8622009-03-18 17:06:21 +05301419 if (rp->entry_handler && rp->entry_handler(ri, regs))
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001420 return 0;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001421
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001422 arch_prepare_kretprobe(ri, regs);
1423
1424 /* XXX(hch): why is there no hlist_move_head? */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001425 INIT_HLIST_NODE(&ri->hlist);
1426 kretprobe_table_lock(hash, &flags);
1427 hlist_add_head(&ri->hlist, &kretprobe_inst_table[hash]);
1428 kretprobe_table_unlock(hash, &flags);
1429 } else {
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001430 rp->nmissed++;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001431 spin_unlock_irqrestore(&rp->lock, flags);
1432 }
Adrian Bunke65cefe2006-02-03 03:03:42 -08001433 return 0;
1434}
1435
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001436int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001437{
1438 int ret = 0;
1439 struct kretprobe_instance *inst;
1440 int i;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001441 void *addr;
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001442
1443 if (kretprobe_blacklist_size) {
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001444 addr = kprobe_addr(&rp->kp);
1445 if (!addr)
1446 return -EINVAL;
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001447
1448 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
1449 if (kretprobe_blacklist[i].addr == addr)
1450 return -EINVAL;
1451 }
1452 }
Hien Nguyenb94cce92005-06-23 00:09:19 -07001453
1454 rp->kp.pre_handler = pre_handler_kretprobe;
Ananth N Mavinakayanahalli7522a842006-04-20 02:43:11 -07001455 rp->kp.post_handler = NULL;
1456 rp->kp.fault_handler = NULL;
1457 rp->kp.break_handler = NULL;
Hien Nguyenb94cce92005-06-23 00:09:19 -07001458
1459 /* Pre-allocate memory for max kretprobe instances */
1460 if (rp->maxactive <= 0) {
1461#ifdef CONFIG_PREEMPT
Heiko Carstensc2ef6662009-12-21 13:02:24 +01001462 rp->maxactive = max_t(unsigned int, 10, 2*num_possible_cpus());
Hien Nguyenb94cce92005-06-23 00:09:19 -07001463#else
Ananth N Mavinakayanahalli4dae5602009-10-30 19:23:10 +05301464 rp->maxactive = num_possible_cpus();
Hien Nguyenb94cce92005-06-23 00:09:19 -07001465#endif
1466 }
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001467 spin_lock_init(&rp->lock);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001468 INIT_HLIST_HEAD(&rp->free_instances);
1469 for (i = 0; i < rp->maxactive; i++) {
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001470 inst = kmalloc(sizeof(struct kretprobe_instance) +
1471 rp->data_size, GFP_KERNEL);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001472 if (inst == NULL) {
1473 free_rp_inst(rp);
1474 return -ENOMEM;
1475 }
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001476 INIT_HLIST_NODE(&inst->hlist);
1477 hlist_add_head(&inst->hlist, &rp->free_instances);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001478 }
1479
1480 rp->nmissed = 0;
1481 /* Establish function entry probe point */
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001482 ret = register_kprobe(&rp->kp);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001483 if (ret != 0)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001484 free_rp_inst(rp);
1485 return ret;
1486}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001487EXPORT_SYMBOL_GPL(register_kretprobe);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001488
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001489int __kprobes register_kretprobes(struct kretprobe **rps, int num)
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001490{
1491 int ret = 0, i;
1492
1493 if (num <= 0)
1494 return -EINVAL;
1495 for (i = 0; i < num; i++) {
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001496 ret = register_kretprobe(rps[i]);
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001497 if (ret < 0) {
1498 if (i > 0)
1499 unregister_kretprobes(rps, i);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001500 break;
1501 }
1502 }
1503 return ret;
1504}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001505EXPORT_SYMBOL_GPL(register_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001506
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001507void __kprobes unregister_kretprobe(struct kretprobe *rp)
1508{
1509 unregister_kretprobes(&rp, 1);
1510}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001511EXPORT_SYMBOL_GPL(unregister_kretprobe);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001512
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001513void __kprobes unregister_kretprobes(struct kretprobe **rps, int num)
1514{
1515 int i;
1516
1517 if (num <= 0)
1518 return;
1519 mutex_lock(&kprobe_mutex);
1520 for (i = 0; i < num; i++)
1521 if (__unregister_kprobe_top(&rps[i]->kp) < 0)
1522 rps[i]->kp.addr = NULL;
1523 mutex_unlock(&kprobe_mutex);
1524
1525 synchronize_sched();
1526 for (i = 0; i < num; i++) {
1527 if (rps[i]->kp.addr) {
1528 __unregister_kprobe_bottom(&rps[i]->kp);
1529 cleanup_rp_inst(rps[i]);
1530 }
1531 }
1532}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001533EXPORT_SYMBOL_GPL(unregister_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001534
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001535#else /* CONFIG_KRETPROBES */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001536int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001537{
1538 return -ENOSYS;
1539}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001540EXPORT_SYMBOL_GPL(register_kretprobe);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001541
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001542int __kprobes register_kretprobes(struct kretprobe **rps, int num)
1543{
1544 return -ENOSYS;
1545}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001546EXPORT_SYMBOL_GPL(register_kretprobes);
1547
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001548void __kprobes unregister_kretprobe(struct kretprobe *rp)
1549{
1550}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001551EXPORT_SYMBOL_GPL(unregister_kretprobe);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001552
1553void __kprobes unregister_kretprobes(struct kretprobe **rps, int num)
1554{
1555}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001556EXPORT_SYMBOL_GPL(unregister_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001557
Srinivasa Ds346fd592007-02-20 13:57:54 -08001558static int __kprobes pre_handler_kretprobe(struct kprobe *p,
1559 struct pt_regs *regs)
1560{
1561 return 0;
1562}
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001563
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001564#endif /* CONFIG_KRETPROBES */
Hien Nguyenb94cce92005-06-23 00:09:19 -07001565
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001566/* Set the kprobe gone and remove its instruction buffer. */
1567static void __kprobes kill_kprobe(struct kprobe *p)
1568{
1569 struct kprobe *kp;
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001570
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001571 p->flags |= KPROBE_FLAG_GONE;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001572 if (kprobe_aggrprobe(p)) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001573 /*
1574 * If this is an aggr_kprobe, we have to list all the
1575 * chained probes and mark them GONE.
1576 */
1577 list_for_each_entry_rcu(kp, &p->list, list)
1578 kp->flags |= KPROBE_FLAG_GONE;
1579 p->post_handler = NULL;
1580 p->break_handler = NULL;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001581 kill_optimized_kprobe(p);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001582 }
1583 /*
1584 * Here, we can remove insn_slot safely, because no thread calls
1585 * the original probed function (which will be freed soon) any more.
1586 */
1587 arch_remove_kprobe(p);
1588}
1589
Frederic Weisbecker24851d22009-08-26 23:38:30 +02001590void __kprobes dump_kprobe(struct kprobe *kp)
1591{
1592 printk(KERN_WARNING "Dumping kprobe:\n");
1593 printk(KERN_WARNING "Name: %s\nAddress: %p\nOffset: %x\n",
1594 kp->symbol_name, kp->addr, kp->offset);
1595}
1596
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001597/* Module notifier call back, checking kprobes on the module */
1598static int __kprobes kprobes_module_callback(struct notifier_block *nb,
1599 unsigned long val, void *data)
1600{
1601 struct module *mod = data;
1602 struct hlist_head *head;
1603 struct hlist_node *node;
1604 struct kprobe *p;
1605 unsigned int i;
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001606 int checkcore = (val == MODULE_STATE_GOING);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001607
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001608 if (val != MODULE_STATE_GOING && val != MODULE_STATE_LIVE)
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001609 return NOTIFY_DONE;
1610
1611 /*
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001612 * When MODULE_STATE_GOING was notified, both of module .text and
1613 * .init.text sections would be freed. When MODULE_STATE_LIVE was
1614 * notified, only .init.text section would be freed. We need to
1615 * disable kprobes which have been inserted in the sections.
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001616 */
1617 mutex_lock(&kprobe_mutex);
1618 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1619 head = &kprobe_table[i];
1620 hlist_for_each_entry_rcu(p, node, head, hlist)
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001621 if (within_module_init((unsigned long)p->addr, mod) ||
1622 (checkcore &&
1623 within_module_core((unsigned long)p->addr, mod))) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001624 /*
1625 * The vaddr this probe is installed will soon
1626 * be vfreed buy not synced to disk. Hence,
1627 * disarming the breakpoint isn't needed.
1628 */
1629 kill_kprobe(p);
1630 }
1631 }
1632 mutex_unlock(&kprobe_mutex);
1633 return NOTIFY_DONE;
1634}
1635
1636static struct notifier_block kprobe_module_nb = {
1637 .notifier_call = kprobes_module_callback,
1638 .priority = 0
1639};
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641static int __init init_kprobes(void)
1642{
1643 int i, err = 0;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001644 unsigned long offset = 0, size = 0;
1645 char *modname, namebuf[128];
1646 const char *symbol_name;
1647 void *addr;
1648 struct kprobe_blackpoint *kb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 /* FIXME allocate the probe table, currently defined statically */
1651 /* initialize all list heads */
Hien Nguyenb94cce92005-06-23 00:09:19 -07001652 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 INIT_HLIST_HEAD(&kprobe_table[i]);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001654 INIT_HLIST_HEAD(&kretprobe_inst_table[i]);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001655 spin_lock_init(&(kretprobe_table_locks[i].lock));
Hien Nguyenb94cce92005-06-23 00:09:19 -07001656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001658 /*
1659 * Lookup and populate the kprobe_blacklist.
1660 *
1661 * Unlike the kretprobe blacklist, we'll need to determine
1662 * the range of addresses that belong to the said functions,
1663 * since a kprobe need not necessarily be at the beginning
1664 * of a function.
1665 */
1666 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
1667 kprobe_lookup_name(kb->name, addr);
1668 if (!addr)
1669 continue;
1670
1671 kb->start_addr = (unsigned long)addr;
1672 symbol_name = kallsyms_lookup(kb->start_addr,
1673 &size, &offset, &modname, namebuf);
1674 if (!symbol_name)
1675 kb->range = 0;
1676 else
1677 kb->range = size;
1678 }
1679
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001680 if (kretprobe_blacklist_size) {
1681 /* lookup the function address from its name */
1682 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
1683 kprobe_lookup_name(kretprobe_blacklist[i].name,
1684 kretprobe_blacklist[i].addr);
1685 if (!kretprobe_blacklist[i].addr)
1686 printk("kretprobe: lookup failed: %s\n",
1687 kretprobe_blacklist[i].name);
1688 }
1689 }
1690
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001691#if defined(CONFIG_OPTPROBES)
1692#if defined(__ARCH_WANT_KPROBES_INSN_SLOT)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001693 /* Init kprobe_optinsn_slots */
1694 kprobe_optinsn_slots.insn_size = MAX_OPTINSN_SIZE;
1695#endif
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001696 /* By default, kprobes can be optimized */
1697 kprobes_allow_optimization = true;
1698#endif
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001699
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001700 /* By default, kprobes are armed */
1701 kprobes_all_disarmed = false;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001702
Rusty Lynch67729262005-07-05 18:54:50 -07001703 err = arch_init_kprobes();
Rusty Lynch802eae72005-06-27 15:17:08 -07001704 if (!err)
1705 err = register_die_notifier(&kprobe_exceptions_nb);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001706 if (!err)
1707 err = register_module_notifier(&kprobe_module_nb);
1708
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001709 kprobes_initialized = (err == 0);
Rusty Lynch802eae72005-06-27 15:17:08 -07001710
Ananth N Mavinakayanahalli8c1c9352008-01-30 13:32:53 +01001711 if (!err)
1712 init_test_probes();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return err;
1714}
1715
Srinivasa Ds346fd592007-02-20 13:57:54 -08001716#ifdef CONFIG_DEBUG_FS
1717static void __kprobes report_probe(struct seq_file *pi, struct kprobe *p,
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001718 const char *sym, int offset, char *modname, struct kprobe *pp)
Srinivasa Ds346fd592007-02-20 13:57:54 -08001719{
1720 char *kprobe_type;
1721
1722 if (p->pre_handler == pre_handler_kretprobe)
1723 kprobe_type = "r";
1724 else if (p->pre_handler == setjmp_pre_handler)
1725 kprobe_type = "j";
1726 else
1727 kprobe_type = "k";
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001728
Srinivasa Ds346fd592007-02-20 13:57:54 -08001729 if (sym)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001730 seq_printf(pi, "%p %s %s+0x%x %s ",
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001731 p->addr, kprobe_type, sym, offset,
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001732 (modname ? modname : " "));
Srinivasa Ds346fd592007-02-20 13:57:54 -08001733 else
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001734 seq_printf(pi, "%p %s %p ",
1735 p->addr, kprobe_type, p->addr);
1736
1737 if (!pp)
1738 pp = p;
1739 seq_printf(pi, "%s%s%s\n",
1740 (kprobe_gone(p) ? "[GONE]" : ""),
1741 ((kprobe_disabled(p) && !kprobe_gone(p)) ? "[DISABLED]" : ""),
1742 (kprobe_optimized(pp) ? "[OPTIMIZED]" : ""));
Srinivasa Ds346fd592007-02-20 13:57:54 -08001743}
1744
1745static void __kprobes *kprobe_seq_start(struct seq_file *f, loff_t *pos)
1746{
1747 return (*pos < KPROBE_TABLE_SIZE) ? pos : NULL;
1748}
1749
1750static void __kprobes *kprobe_seq_next(struct seq_file *f, void *v, loff_t *pos)
1751{
1752 (*pos)++;
1753 if (*pos >= KPROBE_TABLE_SIZE)
1754 return NULL;
1755 return pos;
1756}
1757
1758static void __kprobes kprobe_seq_stop(struct seq_file *f, void *v)
1759{
1760 /* Nothing to do */
1761}
1762
1763static int __kprobes show_kprobe_addr(struct seq_file *pi, void *v)
1764{
1765 struct hlist_head *head;
1766 struct hlist_node *node;
1767 struct kprobe *p, *kp;
1768 const char *sym = NULL;
1769 unsigned int i = *(loff_t *) v;
Alexey Dobriyanffb45122007-05-08 00:28:41 -07001770 unsigned long offset = 0;
Srinivasa Ds346fd592007-02-20 13:57:54 -08001771 char *modname, namebuf[128];
1772
1773 head = &kprobe_table[i];
1774 preempt_disable();
1775 hlist_for_each_entry_rcu(p, node, head, hlist) {
Alexey Dobriyanffb45122007-05-08 00:28:41 -07001776 sym = kallsyms_lookup((unsigned long)p->addr, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -08001777 &offset, &modname, namebuf);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001778 if (kprobe_aggrprobe(p)) {
Srinivasa Ds346fd592007-02-20 13:57:54 -08001779 list_for_each_entry_rcu(kp, &p->list, list)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001780 report_probe(pi, kp, sym, offset, modname, p);
Srinivasa Ds346fd592007-02-20 13:57:54 -08001781 } else
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001782 report_probe(pi, p, sym, offset, modname, NULL);
Srinivasa Ds346fd592007-02-20 13:57:54 -08001783 }
1784 preempt_enable();
1785 return 0;
1786}
1787
James Morris88e9d342009-09-22 16:43:43 -07001788static const struct seq_operations kprobes_seq_ops = {
Srinivasa Ds346fd592007-02-20 13:57:54 -08001789 .start = kprobe_seq_start,
1790 .next = kprobe_seq_next,
1791 .stop = kprobe_seq_stop,
1792 .show = show_kprobe_addr
1793};
1794
1795static int __kprobes kprobes_open(struct inode *inode, struct file *filp)
1796{
1797 return seq_open(filp, &kprobes_seq_ops);
1798}
1799
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001800static const struct file_operations debugfs_kprobes_operations = {
Srinivasa Ds346fd592007-02-20 13:57:54 -08001801 .open = kprobes_open,
1802 .read = seq_read,
1803 .llseek = seq_lseek,
1804 .release = seq_release,
1805};
1806
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001807/* Disable one kprobe */
1808int __kprobes disable_kprobe(struct kprobe *kp)
1809{
1810 int ret = 0;
1811 struct kprobe *p;
1812
1813 mutex_lock(&kprobe_mutex);
1814
1815 /* Check whether specified probe is valid. */
1816 p = __get_valid_kprobe(kp);
1817 if (unlikely(p == NULL)) {
1818 ret = -EINVAL;
1819 goto out;
1820 }
1821
1822 /* If the probe is already disabled (or gone), just return */
1823 if (kprobe_disabled(kp))
1824 goto out;
1825
1826 kp->flags |= KPROBE_FLAG_DISABLED;
1827 if (p != kp)
1828 /* When kp != p, p is always enabled. */
1829 try_to_disable_aggr_kprobe(p);
1830
1831 if (!kprobes_all_disarmed && kprobe_disabled(p))
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001832 disarm_kprobe(p);
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001833out:
1834 mutex_unlock(&kprobe_mutex);
1835 return ret;
1836}
1837EXPORT_SYMBOL_GPL(disable_kprobe);
1838
1839/* Enable one kprobe */
1840int __kprobes enable_kprobe(struct kprobe *kp)
1841{
1842 int ret = 0;
1843 struct kprobe *p;
1844
1845 mutex_lock(&kprobe_mutex);
1846
1847 /* Check whether specified probe is valid. */
1848 p = __get_valid_kprobe(kp);
1849 if (unlikely(p == NULL)) {
1850 ret = -EINVAL;
1851 goto out;
1852 }
1853
1854 if (kprobe_gone(kp)) {
1855 /* This kprobe has gone, we couldn't enable it. */
1856 ret = -EINVAL;
1857 goto out;
1858 }
1859
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001860 if (p != kp)
1861 kp->flags &= ~KPROBE_FLAG_DISABLED;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001862
1863 if (!kprobes_all_disarmed && kprobe_disabled(p)) {
1864 p->flags &= ~KPROBE_FLAG_DISABLED;
1865 arm_kprobe(p);
1866 }
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001867out:
1868 mutex_unlock(&kprobe_mutex);
1869 return ret;
1870}
1871EXPORT_SYMBOL_GPL(enable_kprobe);
1872
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001873static void __kprobes arm_all_kprobes(void)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001874{
1875 struct hlist_head *head;
1876 struct hlist_node *node;
1877 struct kprobe *p;
1878 unsigned int i;
1879
1880 mutex_lock(&kprobe_mutex);
1881
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001882 /* If kprobes are armed, just return */
1883 if (!kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001884 goto already_enabled;
1885
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001886 /* Arming kprobes doesn't optimize kprobe itself */
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001887 mutex_lock(&text_mutex);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001888 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1889 head = &kprobe_table[i];
1890 hlist_for_each_entry_rcu(p, node, head, hlist)
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001891 if (!kprobe_disabled(p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001892 __arm_kprobe(p);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001893 }
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001894 mutex_unlock(&text_mutex);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001895
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001896 kprobes_all_disarmed = false;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001897 printk(KERN_INFO "Kprobes globally enabled\n");
1898
1899already_enabled:
1900 mutex_unlock(&kprobe_mutex);
1901 return;
1902}
1903
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001904static void __kprobes disarm_all_kprobes(void)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001905{
1906 struct hlist_head *head;
1907 struct hlist_node *node;
1908 struct kprobe *p;
1909 unsigned int i;
1910
1911 mutex_lock(&kprobe_mutex);
1912
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001913 /* If kprobes are already disarmed, just return */
1914 if (kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001915 goto already_disabled;
1916
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001917 kprobes_all_disarmed = true;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001918 printk(KERN_INFO "Kprobes globally disabled\n");
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001919
1920 /*
1921 * Here we call get_online_cpus() for avoiding text_mutex deadlock,
1922 * because disarming may also unoptimize kprobes.
1923 */
1924 get_online_cpus();
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001925 mutex_lock(&text_mutex);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001926 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1927 head = &kprobe_table[i];
1928 hlist_for_each_entry_rcu(p, node, head, hlist) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001929 if (!arch_trampoline_kprobe(p) && !kprobe_disabled(p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001930 __disarm_kprobe(p);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001931 }
1932 }
1933
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001934 mutex_unlock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001935 put_online_cpus();
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001936 mutex_unlock(&kprobe_mutex);
1937 /* Allow all currently running kprobes to complete */
1938 synchronize_sched();
Christoph Hellwig74a0b572007-10-16 01:24:07 -07001939 return;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001940
1941already_disabled:
1942 mutex_unlock(&kprobe_mutex);
1943 return;
1944}
1945
1946/*
1947 * XXX: The debugfs bool file interface doesn't allow for callbacks
1948 * when the bool state is switched. We can reuse that facility when
1949 * available
1950 */
1951static ssize_t read_enabled_file_bool(struct file *file,
1952 char __user *user_buf, size_t count, loff_t *ppos)
1953{
1954 char buf[3];
1955
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001956 if (!kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001957 buf[0] = '1';
1958 else
1959 buf[0] = '0';
1960 buf[1] = '\n';
1961 buf[2] = 0x00;
1962 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
1963}
1964
1965static ssize_t write_enabled_file_bool(struct file *file,
1966 const char __user *user_buf, size_t count, loff_t *ppos)
1967{
1968 char buf[32];
1969 int buf_size;
1970
1971 buf_size = min(count, (sizeof(buf)-1));
1972 if (copy_from_user(buf, user_buf, buf_size))
1973 return -EFAULT;
1974
1975 switch (buf[0]) {
1976 case 'y':
1977 case 'Y':
1978 case '1':
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001979 arm_all_kprobes();
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001980 break;
1981 case 'n':
1982 case 'N':
1983 case '0':
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001984 disarm_all_kprobes();
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001985 break;
1986 }
1987
1988 return count;
1989}
1990
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001991static const struct file_operations fops_kp = {
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001992 .read = read_enabled_file_bool,
1993 .write = write_enabled_file_bool,
1994};
1995
Srinivasa Ds346fd592007-02-20 13:57:54 -08001996static int __kprobes debugfs_kprobe_init(void)
1997{
1998 struct dentry *dir, *file;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001999 unsigned int value = 1;
Srinivasa Ds346fd592007-02-20 13:57:54 -08002000
2001 dir = debugfs_create_dir("kprobes", NULL);
2002 if (!dir)
2003 return -ENOMEM;
2004
Randy Dunlape3869792007-05-08 00:27:01 -07002005 file = debugfs_create_file("list", 0444, dir, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -08002006 &debugfs_kprobes_operations);
2007 if (!file) {
2008 debugfs_remove(dir);
2009 return -ENOMEM;
2010 }
2011
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002012 file = debugfs_create_file("enabled", 0600, dir,
2013 &value, &fops_kp);
2014 if (!file) {
2015 debugfs_remove(dir);
2016 return -ENOMEM;
2017 }
2018
Srinivasa Ds346fd592007-02-20 13:57:54 -08002019 return 0;
2020}
2021
2022late_initcall(debugfs_kprobe_init);
2023#endif /* CONFIG_DEBUG_FS */
2024
2025module_init(init_kprobes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002027/* defined in arch/.../kernel/kprobes.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028EXPORT_SYMBOL_GPL(jprobe_return);