blob: 612af2d616141b35beb410a5adc58a9be5fecd5b [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>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070045#include <linux/kdebug.h>
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -050046#include <linux/memory.h>
Masami Hiramatsu4554dbc2010-02-02 16:49:18 -050047#include <linux/ftrace.h>
Masami Hiramatsuafd66252010-02-25 08:34:07 -050048#include <linux/cpu.h>
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070049
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -070050#include <asm-generic/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/cacheflush.h>
52#include <asm/errno.h>
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070053#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#define KPROBE_HASH_BITS 6
56#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS)
57
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -070058
59/*
60 * Some oddball architectures like 64bit powerpc have function descriptors
61 * so this must be overridable.
62 */
63#ifndef kprobe_lookup_name
64#define kprobe_lookup_name(name, addr) \
65 addr = ((kprobe_opcode_t *)(kallsyms_lookup_name(name)))
66#endif
67
Srinivasa D Sef53d9c2008-07-25 01:46:04 -070068static int kprobes_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static struct hlist_head kprobe_table[KPROBE_TABLE_SIZE];
Hien Nguyenb94cce92005-06-23 00:09:19 -070070static struct hlist_head kretprobe_inst_table[KPROBE_TABLE_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070072/* NOTE: change this value only with kprobe_mutex held */
Masami Hiramatsue579abe2009-04-06 19:01:01 -070073static bool kprobes_all_disarmed;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070074
Masami Hiramatsu12941562009-01-06 14:41:50 -080075static DEFINE_MUTEX(kprobe_mutex); /* Protects kprobe_table */
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -080076static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -070077static struct {
Andrew Morton7e036d02008-11-12 13:26:57 -080078 spinlock_t lock ____cacheline_aligned_in_smp;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -070079} kretprobe_table_locks[KPROBE_TABLE_SIZE];
80
81static spinlock_t *kretprobe_table_lock_ptr(unsigned long hash)
82{
83 return &(kretprobe_table_locks[hash].lock);
84}
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Srinivasa Ds3d8d9962008-04-28 02:14:26 -070086/*
87 * Normally, functions that we'd want to prohibit kprobes in, are marked
88 * __kprobes. But, there are cases where such functions already belong to
89 * a different section (__sched for preempt_schedule)
90 *
91 * For such cases, we now have a blacklist
92 */
Daniel Guilak544304b2008-07-10 09:38:19 -070093static struct kprobe_blackpoint kprobe_blacklist[] = {
Srinivasa Ds3d8d9962008-04-28 02:14:26 -070094 {"preempt_schedule",},
Masami Hiramatsu65e234e2009-08-27 13:23:32 -040095 {"native_get_debugreg",},
Masami Hiramatsua00e8172009-09-08 12:47:55 -040096 {"irq_entries_start",},
97 {"common_interrupt",},
Masami Hiramatsu5ecaafd2010-02-05 01:24:34 -050098 {"mcount",}, /* mcount can be called from everywhere */
Srinivasa Ds3d8d9962008-04-28 02:14:26 -070099 {NULL} /* Terminator */
100};
101
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -0800102#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700103/*
104 * kprobe->ainsn.insn points to the copy of the instruction to be
105 * single-stepped. x86_64, POWER4 and above have no-exec support and
106 * stepping on the instruction on a vmalloced/kmalloced/data page
107 * is a recipe for disaster
108 */
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700109struct kprobe_insn_page {
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400110 struct list_head list;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700111 kprobe_opcode_t *insns; /* Page of instruction slots */
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700112 int nused;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800113 int ngarbage;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500114 char slot_used[];
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700115};
116
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500117#define KPROBE_INSN_PAGE_SIZE(slots) \
118 (offsetof(struct kprobe_insn_page, slot_used) + \
119 (sizeof(char) * (slots)))
120
121struct kprobe_insn_cache {
122 struct list_head pages; /* list of kprobe_insn_page */
123 size_t insn_size; /* size of instruction slot */
124 int nr_garbage;
125};
126
127static int slots_per_page(struct kprobe_insn_cache *c)
128{
129 return PAGE_SIZE/(c->insn_size * sizeof(kprobe_opcode_t));
130}
131
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800132enum kprobe_slot_state {
133 SLOT_CLEAN = 0,
134 SLOT_DIRTY = 1,
135 SLOT_USED = 2,
136};
137
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500138static DEFINE_MUTEX(kprobe_insn_mutex); /* Protects kprobe_insn_slots */
139static struct kprobe_insn_cache kprobe_insn_slots = {
140 .pages = LIST_HEAD_INIT(kprobe_insn_slots.pages),
141 .insn_size = MAX_INSN_SIZE,
142 .nr_garbage = 0,
143};
144static int __kprobes collect_garbage_slots(struct kprobe_insn_cache *c);
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800145
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700146/**
Masami Hiramatsu12941562009-01-06 14:41:50 -0800147 * __get_insn_slot() - Find a slot on an executable page for an instruction.
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700148 * We allocate an executable page if there's no room on existing ones.
149 */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500150static kprobe_opcode_t __kprobes *__get_insn_slot(struct kprobe_insn_cache *c)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700151{
152 struct kprobe_insn_page *kip;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700153
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700154 retry:
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500155 list_for_each_entry(kip, &c->pages, list) {
156 if (kip->nused < slots_per_page(c)) {
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700157 int i;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500158 for (i = 0; i < slots_per_page(c); i++) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800159 if (kip->slot_used[i] == SLOT_CLEAN) {
160 kip->slot_used[i] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700161 kip->nused++;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500162 return kip->insns + (i * c->insn_size);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700163 }
164 }
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500165 /* kip->nused is broken. Fix it. */
166 kip->nused = slots_per_page(c);
167 WARN_ON(1);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700168 }
169 }
170
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800171 /* If there are any garbage slots, collect it and try again. */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500172 if (c->nr_garbage && collect_garbage_slots(c) == 0)
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800173 goto retry;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500174
175 /* All out of space. Need to allocate a new page. */
176 kip = kmalloc(KPROBE_INSN_PAGE_SIZE(slots_per_page(c)), GFP_KERNEL);
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700177 if (!kip)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700178 return NULL;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700179
180 /*
181 * Use module_alloc so this page is within +/- 2GB of where the
182 * kernel image and loaded module images reside. This is required
183 * so x86_64 can correctly handle the %rip-relative fixups.
184 */
185 kip->insns = module_alloc(PAGE_SIZE);
186 if (!kip->insns) {
187 kfree(kip);
188 return NULL;
189 }
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400190 INIT_LIST_HEAD(&kip->list);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500191 memset(kip->slot_used, SLOT_CLEAN, slots_per_page(c));
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800192 kip->slot_used[0] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700193 kip->nused = 1;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800194 kip->ngarbage = 0;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500195 list_add(&kip->list, &c->pages);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700196 return kip->insns;
197}
198
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500199
Masami Hiramatsu12941562009-01-06 14:41:50 -0800200kprobe_opcode_t __kprobes *get_insn_slot(void)
201{
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500202 kprobe_opcode_t *ret = NULL;
203
Masami Hiramatsu12941562009-01-06 14:41:50 -0800204 mutex_lock(&kprobe_insn_mutex);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500205 ret = __get_insn_slot(&kprobe_insn_slots);
Masami Hiramatsu12941562009-01-06 14:41:50 -0800206 mutex_unlock(&kprobe_insn_mutex);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500207
Masami Hiramatsu12941562009-01-06 14:41:50 -0800208 return ret;
209}
210
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800211/* Return 1 if all garbages are collected, otherwise 0. */
212static int __kprobes collect_one_slot(struct kprobe_insn_page *kip, int idx)
213{
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800214 kip->slot_used[idx] = SLOT_CLEAN;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800215 kip->nused--;
216 if (kip->nused == 0) {
217 /*
218 * Page is no longer in use. Free it unless
219 * it's the last one. We keep the last one
220 * so as not to have to set it up again the
221 * next time somebody inserts a probe.
222 */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500223 if (!list_is_singular(&kip->list)) {
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400224 list_del(&kip->list);
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800225 module_free(NULL, kip->insns);
226 kfree(kip);
227 }
228 return 1;
229 }
230 return 0;
231}
232
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500233static int __kprobes collect_garbage_slots(struct kprobe_insn_cache *c)
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800234{
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400235 struct kprobe_insn_page *kip, *next;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800236
Masami Hiramatsu615d0eb2010-02-02 16:49:04 -0500237 /* Ensure no-one is interrupted on the garbages */
238 synchronize_sched();
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800239
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500240 list_for_each_entry_safe(kip, next, &c->pages, list) {
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800241 int i;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800242 if (kip->ngarbage == 0)
243 continue;
244 kip->ngarbage = 0; /* we will collect all garbages */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500245 for (i = 0; i < slots_per_page(c); i++) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800246 if (kip->slot_used[i] == SLOT_DIRTY &&
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800247 collect_one_slot(kip, i))
248 break;
249 }
250 }
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500251 c->nr_garbage = 0;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800252 return 0;
253}
254
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500255static void __kprobes __free_insn_slot(struct kprobe_insn_cache *c,
256 kprobe_opcode_t *slot, int dirty)
257{
258 struct kprobe_insn_page *kip;
259
260 list_for_each_entry(kip, &c->pages, list) {
261 long idx = ((long)slot - (long)kip->insns) / c->insn_size;
262 if (idx >= 0 && idx < slots_per_page(c)) {
263 WARN_ON(kip->slot_used[idx] != SLOT_USED);
264 if (dirty) {
265 kip->slot_used[idx] = SLOT_DIRTY;
266 kip->ngarbage++;
267 if (++c->nr_garbage > slots_per_page(c))
268 collect_garbage_slots(c);
269 } else
270 collect_one_slot(kip, idx);
271 return;
272 }
273 }
274 /* Could not free this slot. */
275 WARN_ON(1);
276}
277
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800278void __kprobes free_insn_slot(kprobe_opcode_t * slot, int dirty)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700279{
Masami Hiramatsu12941562009-01-06 14:41:50 -0800280 mutex_lock(&kprobe_insn_mutex);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500281 __free_insn_slot(&kprobe_insn_slots, slot, dirty);
Masami Hiramatsu12941562009-01-06 14:41:50 -0800282 mutex_unlock(&kprobe_insn_mutex);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700283}
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500284#ifdef CONFIG_OPTPROBES
285/* For optimized_kprobe buffer */
286static DEFINE_MUTEX(kprobe_optinsn_mutex); /* Protects kprobe_optinsn_slots */
287static struct kprobe_insn_cache kprobe_optinsn_slots = {
288 .pages = LIST_HEAD_INIT(kprobe_optinsn_slots.pages),
289 /* .insn_size is initialized later */
290 .nr_garbage = 0,
291};
292/* Get a slot for optimized_kprobe buffer */
293kprobe_opcode_t __kprobes *get_optinsn_slot(void)
294{
295 kprobe_opcode_t *ret = NULL;
296
297 mutex_lock(&kprobe_optinsn_mutex);
298 ret = __get_insn_slot(&kprobe_optinsn_slots);
299 mutex_unlock(&kprobe_optinsn_mutex);
300
301 return ret;
302}
303
304void __kprobes free_optinsn_slot(kprobe_opcode_t * slot, int dirty)
305{
306 mutex_lock(&kprobe_optinsn_mutex);
307 __free_insn_slot(&kprobe_optinsn_slots, slot, dirty);
308 mutex_unlock(&kprobe_optinsn_mutex);
309}
310#endif
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -0800311#endif
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700312
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800313/* We have preemption disabled.. so it is safe to use __ versions */
314static inline void set_kprobe_instance(struct kprobe *kp)
315{
316 __get_cpu_var(kprobe_instance) = kp;
317}
318
319static inline void reset_kprobe_instance(void)
320{
321 __get_cpu_var(kprobe_instance) = NULL;
322}
323
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800324/*
325 * This routine is called either:
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800326 * - under the kprobe_mutex - during kprobe_[un]register()
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800327 * OR
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800328 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800329 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700330struct kprobe __kprobes *get_kprobe(void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 struct hlist_head *head;
333 struct hlist_node *node;
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800334 struct kprobe *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800337 hlist_for_each_entry_rcu(p, node, head, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (p->addr == addr)
339 return p;
340 }
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return NULL;
343}
344
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500345static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs);
346
347/* Return true if the kprobe is an aggregator */
348static inline int kprobe_aggrprobe(struct kprobe *p)
349{
350 return p->pre_handler == aggr_pre_handler;
351}
352
353/*
354 * Keep all fields in the kprobe consistent
355 */
356static inline void copy_kprobe(struct kprobe *old_p, struct kprobe *p)
357{
358 memcpy(&p->opcode, &old_p->opcode, sizeof(kprobe_opcode_t));
359 memcpy(&p->ainsn, &old_p->ainsn, sizeof(struct arch_specific_insn));
360}
361
362#ifdef CONFIG_OPTPROBES
363/*
364 * Call all pre_handler on the list, but ignores its return value.
365 * This must be called from arch-dep optimized caller.
366 */
367void __kprobes opt_pre_handler(struct kprobe *p, struct pt_regs *regs)
368{
369 struct kprobe *kp;
370
371 list_for_each_entry_rcu(kp, &p->list, list) {
372 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
373 set_kprobe_instance(kp);
374 kp->pre_handler(kp, regs);
375 }
376 reset_kprobe_instance();
377 }
378}
379
380/* Return true(!0) if the kprobe is ready for optimization. */
381static inline int kprobe_optready(struct kprobe *p)
382{
383 struct optimized_kprobe *op;
384
385 if (kprobe_aggrprobe(p)) {
386 op = container_of(p, struct optimized_kprobe, kp);
387 return arch_prepared_optinsn(&op->optinsn);
388 }
389
390 return 0;
391}
392
393/*
394 * Return an optimized kprobe whose optimizing code replaces
395 * instructions including addr (exclude breakpoint).
396 */
397struct kprobe *__kprobes get_optimized_kprobe(unsigned long addr)
398{
399 int i;
400 struct kprobe *p = NULL;
401 struct optimized_kprobe *op;
402
403 /* Don't check i == 0, since that is a breakpoint case. */
404 for (i = 1; !p && i < MAX_OPTIMIZED_LENGTH; i++)
405 p = get_kprobe((void *)(addr - i));
406
407 if (p && kprobe_optready(p)) {
408 op = container_of(p, struct optimized_kprobe, kp);
409 if (arch_within_optimized_kprobe(op, addr))
410 return p;
411 }
412
413 return NULL;
414}
415
416/* Optimization staging list, protected by kprobe_mutex */
417static LIST_HEAD(optimizing_list);
418
419static void kprobe_optimizer(struct work_struct *work);
420static DECLARE_DELAYED_WORK(optimizing_work, kprobe_optimizer);
421#define OPTIMIZE_DELAY 5
422
423/* Kprobe jump optimizer */
424static __kprobes void kprobe_optimizer(struct work_struct *work)
425{
426 struct optimized_kprobe *op, *tmp;
427
428 /* Lock modules while optimizing kprobes */
429 mutex_lock(&module_mutex);
430 mutex_lock(&kprobe_mutex);
431 if (kprobes_all_disarmed)
432 goto end;
433
434 /*
435 * Wait for quiesence period to ensure all running interrupts
436 * are done. Because optprobe may modify multiple instructions
437 * there is a chance that Nth instruction is interrupted. In that
438 * case, running interrupt can return to 2nd-Nth byte of jump
439 * instruction. This wait is for avoiding it.
440 */
441 synchronize_sched();
442
443 /*
444 * The optimization/unoptimization refers online_cpus via
445 * stop_machine() and cpu-hotplug modifies online_cpus.
446 * And same time, text_mutex will be held in cpu-hotplug and here.
447 * This combination can cause a deadlock (cpu-hotplug try to lock
448 * text_mutex but stop_machine can not be done because online_cpus
449 * has been changed)
450 * To avoid this deadlock, we need to call get_online_cpus()
451 * for preventing cpu-hotplug outside of text_mutex locking.
452 */
453 get_online_cpus();
454 mutex_lock(&text_mutex);
455 list_for_each_entry_safe(op, tmp, &optimizing_list, list) {
456 WARN_ON(kprobe_disabled(&op->kp));
457 if (arch_optimize_kprobe(op) < 0)
458 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
459 list_del_init(&op->list);
460 }
461 mutex_unlock(&text_mutex);
462 put_online_cpus();
463end:
464 mutex_unlock(&kprobe_mutex);
465 mutex_unlock(&module_mutex);
466}
467
468/* Optimize kprobe if p is ready to be optimized */
469static __kprobes void optimize_kprobe(struct kprobe *p)
470{
471 struct optimized_kprobe *op;
472
473 /* Check if the kprobe is disabled or not ready for optimization. */
474 if (!kprobe_optready(p) ||
475 (kprobe_disabled(p) || kprobes_all_disarmed))
476 return;
477
478 /* Both of break_handler and post_handler are not supported. */
479 if (p->break_handler || p->post_handler)
480 return;
481
482 op = container_of(p, struct optimized_kprobe, kp);
483
484 /* Check there is no other kprobes at the optimized instructions */
485 if (arch_check_optimized_kprobe(op) < 0)
486 return;
487
488 /* Check if it is already optimized. */
489 if (op->kp.flags & KPROBE_FLAG_OPTIMIZED)
490 return;
491
492 op->kp.flags |= KPROBE_FLAG_OPTIMIZED;
493 list_add(&op->list, &optimizing_list);
494 if (!delayed_work_pending(&optimizing_work))
495 schedule_delayed_work(&optimizing_work, OPTIMIZE_DELAY);
496}
497
498/* Unoptimize a kprobe if p is optimized */
499static __kprobes void unoptimize_kprobe(struct kprobe *p)
500{
501 struct optimized_kprobe *op;
502
503 if ((p->flags & KPROBE_FLAG_OPTIMIZED) && kprobe_aggrprobe(p)) {
504 op = container_of(p, struct optimized_kprobe, kp);
505 if (!list_empty(&op->list))
506 /* Dequeue from the optimization queue */
507 list_del_init(&op->list);
508 else
509 /* Replace jump with break */
510 arch_unoptimize_kprobe(op);
511 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
512 }
513}
514
515/* Remove optimized instructions */
516static void __kprobes kill_optimized_kprobe(struct kprobe *p)
517{
518 struct optimized_kprobe *op;
519
520 op = container_of(p, struct optimized_kprobe, kp);
521 if (!list_empty(&op->list)) {
522 /* Dequeue from the optimization queue */
523 list_del_init(&op->list);
524 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
525 }
526 /* Don't unoptimize, because the target code will be freed. */
527 arch_remove_optimized_kprobe(op);
528}
529
530/* Try to prepare optimized instructions */
531static __kprobes void prepare_optimized_kprobe(struct kprobe *p)
532{
533 struct optimized_kprobe *op;
534
535 op = container_of(p, struct optimized_kprobe, kp);
536 arch_prepare_optimized_kprobe(op);
537}
538
539/* Free optimized instructions and optimized_kprobe */
540static __kprobes void free_aggr_kprobe(struct kprobe *p)
541{
542 struct optimized_kprobe *op;
543
544 op = container_of(p, struct optimized_kprobe, kp);
545 arch_remove_optimized_kprobe(op);
546 kfree(op);
547}
548
549/* Allocate new optimized_kprobe and try to prepare optimized instructions */
550static __kprobes struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
551{
552 struct optimized_kprobe *op;
553
554 op = kzalloc(sizeof(struct optimized_kprobe), GFP_KERNEL);
555 if (!op)
556 return NULL;
557
558 INIT_LIST_HEAD(&op->list);
559 op->kp.addr = p->addr;
560 arch_prepare_optimized_kprobe(op);
561
562 return &op->kp;
563}
564
565static void __kprobes init_aggr_kprobe(struct kprobe *ap, struct kprobe *p);
566
567/*
568 * Prepare an optimized_kprobe and optimize it
569 * NOTE: p must be a normal registered kprobe
570 */
571static __kprobes void try_to_optimize_kprobe(struct kprobe *p)
572{
573 struct kprobe *ap;
574 struct optimized_kprobe *op;
575
576 ap = alloc_aggr_kprobe(p);
577 if (!ap)
578 return;
579
580 op = container_of(ap, struct optimized_kprobe, kp);
581 if (!arch_prepared_optinsn(&op->optinsn)) {
582 /* If failed to setup optimizing, fallback to kprobe */
583 free_aggr_kprobe(ap);
584 return;
585 }
586
587 init_aggr_kprobe(ap, p);
588 optimize_kprobe(ap);
589}
590
591static void __kprobes __arm_kprobe(struct kprobe *p)
592{
593 struct kprobe *old_p;
594
595 /* Check collision with other optimized kprobes */
596 old_p = get_optimized_kprobe((unsigned long)p->addr);
597 if (unlikely(old_p))
598 unoptimize_kprobe(old_p); /* Fallback to unoptimized kprobe */
599
600 arch_arm_kprobe(p);
601 optimize_kprobe(p); /* Try to optimize (add kprobe to a list) */
602}
603
604static void __kprobes __disarm_kprobe(struct kprobe *p)
605{
606 struct kprobe *old_p;
607
608 unoptimize_kprobe(p); /* Try to unoptimize */
609 arch_disarm_kprobe(p);
610
611 /* If another kprobe was blocked, optimize it. */
612 old_p = get_optimized_kprobe((unsigned long)p->addr);
613 if (unlikely(old_p))
614 optimize_kprobe(old_p);
615}
616
617#else /* !CONFIG_OPTPROBES */
618
619#define optimize_kprobe(p) do {} while (0)
620#define unoptimize_kprobe(p) do {} while (0)
621#define kill_optimized_kprobe(p) do {} while (0)
622#define prepare_optimized_kprobe(p) do {} while (0)
623#define try_to_optimize_kprobe(p) do {} while (0)
624#define __arm_kprobe(p) arch_arm_kprobe(p)
625#define __disarm_kprobe(p) arch_disarm_kprobe(p)
626
627static __kprobes void free_aggr_kprobe(struct kprobe *p)
628{
629 kfree(p);
630}
631
632static __kprobes struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
633{
634 return kzalloc(sizeof(struct kprobe), GFP_KERNEL);
635}
636#endif /* CONFIG_OPTPROBES */
637
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400638/* Arm a kprobe with text_mutex */
639static void __kprobes arm_kprobe(struct kprobe *kp)
640{
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500641 /*
642 * Here, since __arm_kprobe() doesn't use stop_machine(),
643 * this doesn't cause deadlock on text_mutex. So, we don't
644 * need get_online_cpus().
645 */
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400646 mutex_lock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500647 __arm_kprobe(kp);
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400648 mutex_unlock(&text_mutex);
649}
650
651/* Disarm a kprobe with text_mutex */
652static void __kprobes disarm_kprobe(struct kprobe *kp)
653{
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500654 get_online_cpus(); /* For avoiding text_mutex deadlock */
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400655 mutex_lock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500656 __disarm_kprobe(kp);
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400657 mutex_unlock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500658 put_online_cpus();
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400659}
660
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700661/*
662 * Aggregate handlers for multiple kprobes support - these handlers
663 * take care of invoking the individual kprobe handlers on p->list
664 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700665static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700666{
667 struct kprobe *kp;
668
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800669 list_for_each_entry_rcu(kp, &p->list, list) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700670 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800671 set_kprobe_instance(kp);
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700672 if (kp->pre_handler(kp, regs))
673 return 1;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700674 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800675 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700676 }
677 return 0;
678}
679
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700680static void __kprobes aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
681 unsigned long flags)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700682{
683 struct kprobe *kp;
684
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800685 list_for_each_entry_rcu(kp, &p->list, list) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700686 if (kp->post_handler && likely(!kprobe_disabled(kp))) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800687 set_kprobe_instance(kp);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700688 kp->post_handler(kp, regs, flags);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800689 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700690 }
691 }
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700692}
693
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700694static int __kprobes aggr_fault_handler(struct kprobe *p, struct pt_regs *regs,
695 int trapnr)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700696{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800697 struct kprobe *cur = __get_cpu_var(kprobe_instance);
698
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700699 /*
700 * if we faulted "during" the execution of a user specified
701 * probe handler, invoke just that probe's fault handler
702 */
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800703 if (cur && cur->fault_handler) {
704 if (cur->fault_handler(cur, regs, trapnr))
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700705 return 1;
706 }
707 return 0;
708}
709
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700710static int __kprobes aggr_break_handler(struct kprobe *p, struct pt_regs *regs)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700711{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800712 struct kprobe *cur = __get_cpu_var(kprobe_instance);
713 int ret = 0;
714
715 if (cur && cur->break_handler) {
716 if (cur->break_handler(cur, regs))
717 ret = 1;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700718 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800719 reset_kprobe_instance();
720 return ret;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700721}
722
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800723/* Walks the list and increments nmissed count for multiprobe case */
724void __kprobes kprobes_inc_nmissed_count(struct kprobe *p)
725{
726 struct kprobe *kp;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500727 if (!kprobe_aggrprobe(p)) {
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800728 p->nmissed++;
729 } else {
730 list_for_each_entry_rcu(kp, &p->list, list)
731 kp->nmissed++;
732 }
733 return;
734}
735
bibo,mao99219a32006-10-02 02:17:35 -0700736void __kprobes recycle_rp_inst(struct kretprobe_instance *ri,
737 struct hlist_head *head)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700738{
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700739 struct kretprobe *rp = ri->rp;
740
Hien Nguyenb94cce92005-06-23 00:09:19 -0700741 /* remove rp inst off the rprobe_inst_table */
742 hlist_del(&ri->hlist);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700743 INIT_HLIST_NODE(&ri->hlist);
744 if (likely(rp)) {
745 spin_lock(&rp->lock);
746 hlist_add_head(&ri->hlist, &rp->free_instances);
747 spin_unlock(&rp->lock);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700748 } else
749 /* Unregistering */
bibo,mao99219a32006-10-02 02:17:35 -0700750 hlist_add_head(&ri->hlist, head);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700751}
752
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800753void __kprobes kretprobe_hash_lock(struct task_struct *tsk,
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700754 struct hlist_head **head, unsigned long *flags)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700755{
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700756 unsigned long hash = hash_ptr(tsk, KPROBE_HASH_BITS);
757 spinlock_t *hlist_lock;
758
759 *head = &kretprobe_inst_table[hash];
760 hlist_lock = kretprobe_table_lock_ptr(hash);
761 spin_lock_irqsave(hlist_lock, *flags);
762}
763
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800764static void __kprobes kretprobe_table_lock(unsigned long hash,
765 unsigned long *flags)
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700766{
767 spinlock_t *hlist_lock = kretprobe_table_lock_ptr(hash);
768 spin_lock_irqsave(hlist_lock, *flags);
769}
770
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800771void __kprobes kretprobe_hash_unlock(struct task_struct *tsk,
772 unsigned long *flags)
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700773{
774 unsigned long hash = hash_ptr(tsk, KPROBE_HASH_BITS);
775 spinlock_t *hlist_lock;
776
777 hlist_lock = kretprobe_table_lock_ptr(hash);
778 spin_unlock_irqrestore(hlist_lock, *flags);
779}
780
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800781void __kprobes kretprobe_table_unlock(unsigned long hash, unsigned long *flags)
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700782{
783 spinlock_t *hlist_lock = kretprobe_table_lock_ptr(hash);
784 spin_unlock_irqrestore(hlist_lock, *flags);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700785}
786
Hien Nguyenb94cce92005-06-23 00:09:19 -0700787/*
bibo maoc6fd91f2006-03-26 01:38:20 -0800788 * This function is called from finish_task_switch when task tk becomes dead,
789 * so that we can recycle any function-return probe instances associated
790 * with this task. These left over instances represent probed functions
791 * that have been called but will never return.
Hien Nguyenb94cce92005-06-23 00:09:19 -0700792 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700793void __kprobes kprobe_flush_task(struct task_struct *tk)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700794{
bibo,mao62c27be2006-10-02 02:17:33 -0700795 struct kretprobe_instance *ri;
bibo,mao99219a32006-10-02 02:17:35 -0700796 struct hlist_head *head, empty_rp;
Rusty Lynch802eae72005-06-27 15:17:08 -0700797 struct hlist_node *node, *tmp;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700798 unsigned long hash, flags = 0;
Rusty Lynch802eae72005-06-27 15:17:08 -0700799
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700800 if (unlikely(!kprobes_initialized))
801 /* Early boot. kretprobe_table_locks not yet initialized. */
802 return;
803
804 hash = hash_ptr(tk, KPROBE_HASH_BITS);
805 head = &kretprobe_inst_table[hash];
806 kretprobe_table_lock(hash, &flags);
bibo,mao62c27be2006-10-02 02:17:33 -0700807 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
808 if (ri->task == tk)
bibo,mao99219a32006-10-02 02:17:35 -0700809 recycle_rp_inst(ri, &empty_rp);
bibo,mao62c27be2006-10-02 02:17:33 -0700810 }
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700811 kretprobe_table_unlock(hash, &flags);
812 INIT_HLIST_HEAD(&empty_rp);
bibo,mao99219a32006-10-02 02:17:35 -0700813 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
814 hlist_del(&ri->hlist);
815 kfree(ri);
816 }
Hien Nguyenb94cce92005-06-23 00:09:19 -0700817}
818
Hien Nguyenb94cce92005-06-23 00:09:19 -0700819static inline void free_rp_inst(struct kretprobe *rp)
820{
821 struct kretprobe_instance *ri;
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700822 struct hlist_node *pos, *next;
823
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700824 hlist_for_each_entry_safe(ri, pos, next, &rp->free_instances, hlist) {
825 hlist_del(&ri->hlist);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700826 kfree(ri);
827 }
828}
829
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700830static void __kprobes cleanup_rp_inst(struct kretprobe *rp)
831{
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700832 unsigned long flags, hash;
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700833 struct kretprobe_instance *ri;
834 struct hlist_node *pos, *next;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700835 struct hlist_head *head;
836
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700837 /* No race here */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700838 for (hash = 0; hash < KPROBE_TABLE_SIZE; hash++) {
839 kretprobe_table_lock(hash, &flags);
840 head = &kretprobe_inst_table[hash];
841 hlist_for_each_entry_safe(ri, pos, next, head, hlist) {
842 if (ri->rp == rp)
843 ri->rp = NULL;
844 }
845 kretprobe_table_unlock(hash, &flags);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700846 }
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700847 free_rp_inst(rp);
848}
849
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700850/*
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700851* Add the new probe to ap->list. Fail if this is the
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700852* second jprobe at the address - two jprobes can't coexist
853*/
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700854static int __kprobes add_new_kprobe(struct kprobe *ap, struct kprobe *p)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700855{
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700856 BUG_ON(kprobe_gone(ap) || kprobe_gone(p));
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500857
858 if (p->break_handler || p->post_handler)
859 unoptimize_kprobe(ap); /* Fall back to normal kprobe */
860
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700861 if (p->break_handler) {
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700862 if (ap->break_handler)
mao, bibo36721652006-06-26 00:25:22 -0700863 return -EEXIST;
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700864 list_add_tail_rcu(&p->list, &ap->list);
865 ap->break_handler = aggr_break_handler;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700866 } else
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700867 list_add_rcu(&p->list, &ap->list);
868 if (p->post_handler && !ap->post_handler)
869 ap->post_handler = aggr_post_handler;
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700870
871 if (kprobe_disabled(ap) && !kprobe_disabled(p)) {
872 ap->flags &= ~KPROBE_FLAG_DISABLED;
873 if (!kprobes_all_disarmed)
874 /* Arm the breakpoint again. */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500875 __arm_kprobe(ap);
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700876 }
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700877 return 0;
878}
879
880/*
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700881 * Fill in the required fields of the "manager kprobe". Replace the
882 * earlier kprobe in the hlist with the manager kprobe
883 */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500884static void __kprobes init_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700885{
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500886 /* Copy p's insn slot to ap */
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700887 copy_kprobe(p, ap);
bibo, maoa9ad9652006-07-30 03:03:26 -0700888 flush_insn_slot(ap);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700889 ap->addr = p->addr;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500890 ap->flags = p->flags & ~KPROBE_FLAG_OPTIMIZED;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700891 ap->pre_handler = aggr_pre_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700892 ap->fault_handler = aggr_fault_handler;
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800893 /* We don't care the kprobe which has gone. */
894 if (p->post_handler && !kprobe_gone(p))
mao, bibo36721652006-06-26 00:25:22 -0700895 ap->post_handler = aggr_post_handler;
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800896 if (p->break_handler && !kprobe_gone(p))
mao, bibo36721652006-06-26 00:25:22 -0700897 ap->break_handler = aggr_break_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700898
899 INIT_LIST_HEAD(&ap->list);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500900 INIT_HLIST_NODE(&ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700901
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500902 list_add_rcu(&p->list, &ap->list);
Keshavamurthy Anil Sadad0f32005-12-12 00:37:12 -0800903 hlist_replace_rcu(&p->hlist, &ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700904}
905
906/*
907 * This is the second or subsequent kprobe at the address - handle
908 * the intricacies
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700909 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700910static int __kprobes register_aggr_kprobe(struct kprobe *old_p,
911 struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700912{
913 int ret = 0;
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700914 struct kprobe *ap = old_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700915
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500916 if (!kprobe_aggrprobe(old_p)) {
917 /* If old_p is not an aggr_kprobe, create new aggr_kprobe. */
918 ap = alloc_aggr_kprobe(old_p);
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700919 if (!ap)
920 return -ENOMEM;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500921 init_aggr_kprobe(ap, old_p);
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700922 }
923
924 if (kprobe_gone(ap)) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800925 /*
926 * Attempting to insert new probe at the same location that
927 * had a probe in the module vaddr area which already
928 * freed. So, the instruction slot has already been
929 * released. We need a new slot for the new probe.
930 */
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700931 ret = arch_prepare_kprobe(ap);
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800932 if (ret)
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700933 /*
934 * Even if fail to allocate new slot, don't need to
935 * free aggr_probe. It will be used next time, or
936 * freed by unregister_kprobe.
937 */
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800938 return ret;
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700939
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500940 /* Prepare optimized instructions if possible. */
941 prepare_optimized_kprobe(ap);
942
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800943 /*
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700944 * Clear gone flag to prevent allocating new slot again, and
945 * set disabled flag because it is not armed yet.
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800946 */
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700947 ap->flags = (ap->flags & ~KPROBE_FLAG_GONE)
948 | KPROBE_FLAG_DISABLED;
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800949 }
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700950
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500951 /* Copy ap's insn slot to p */
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700952 copy_kprobe(ap, p);
953 return add_new_kprobe(ap, p);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700954}
955
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700956/* Try to disable aggr_kprobe, and return 1 if succeeded.*/
957static int __kprobes try_to_disable_aggr_kprobe(struct kprobe *p)
958{
959 struct kprobe *kp;
960
961 list_for_each_entry_rcu(kp, &p->list, list) {
962 if (!kprobe_disabled(kp))
963 /*
964 * There is an active probe on the list.
965 * We can't disable aggr_kprobe.
966 */
967 return 0;
968 }
969 p->flags |= KPROBE_FLAG_DISABLED;
970 return 1;
971}
972
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700973static int __kprobes in_kprobes_functions(unsigned long addr)
974{
Srinivasa Ds3d8d9962008-04-28 02:14:26 -0700975 struct kprobe_blackpoint *kb;
976
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700977 if (addr >= (unsigned long)__kprobes_text_start &&
978 addr < (unsigned long)__kprobes_text_end)
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700979 return -EINVAL;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -0700980 /*
981 * If there exists a kprobe_blacklist, verify and
982 * fail any probe registration in the prohibited area
983 */
984 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
985 if (kb->start_addr) {
986 if (addr >= kb->start_addr &&
987 addr < (kb->start_addr + kb->range))
988 return -EINVAL;
989 }
990 }
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700991 return 0;
992}
993
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -0800994/*
995 * If we have a symbol_name argument, look it up and add the offset field
996 * to it. This way, we can specify a relative address to a symbol.
997 */
998static kprobe_opcode_t __kprobes *kprobe_addr(struct kprobe *p)
999{
1000 kprobe_opcode_t *addr = p->addr;
1001 if (p->symbol_name) {
1002 if (addr)
1003 return NULL;
1004 kprobe_lookup_name(p->symbol_name, addr);
1005 }
1006
1007 if (!addr)
1008 return NULL;
1009 return (kprobe_opcode_t *)(((char *)addr) + p->offset);
1010}
1011
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301012/* Check passed kprobe is valid and return kprobe in kprobe_table. */
1013static struct kprobe * __kprobes __get_valid_kprobe(struct kprobe *p)
1014{
1015 struct kprobe *old_p, *list_p;
1016
1017 old_p = get_kprobe(p->addr);
1018 if (unlikely(!old_p))
1019 return NULL;
1020
1021 if (p != old_p) {
1022 list_for_each_entry_rcu(list_p, &old_p->list, list)
1023 if (list_p == p)
1024 /* kprobe p is a valid probe */
1025 goto valid;
1026 return NULL;
1027 }
1028valid:
1029 return old_p;
1030}
1031
1032/* Return error if the kprobe is being re-registered */
1033static inline int check_kprobe_rereg(struct kprobe *p)
1034{
1035 int ret = 0;
1036 struct kprobe *old_p;
1037
1038 mutex_lock(&kprobe_mutex);
1039 old_p = __get_valid_kprobe(p);
1040 if (old_p)
1041 ret = -EINVAL;
1042 mutex_unlock(&kprobe_mutex);
1043 return ret;
1044}
1045
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001046int __kprobes register_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 int ret = 0;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001049 struct kprobe *old_p;
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001050 struct module *probed_mod;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001051 kprobe_opcode_t *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001053 addr = kprobe_addr(p);
1054 if (!addr)
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -07001055 return -EINVAL;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001056 p->addr = addr;
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -07001057
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301058 ret = check_kprobe_rereg(p);
1059 if (ret)
1060 return ret;
1061
Masami Hiramatsua189d032008-11-12 13:26:51 -08001062 preempt_disable();
Masami Hiramatsuec30c5f2009-07-28 19:47:23 -04001063 if (!kernel_text_address((unsigned long) p->addr) ||
Masami Hiramatsu4554dbc2010-02-02 16:49:18 -05001064 in_kprobes_functions((unsigned long) p->addr) ||
1065 ftrace_text_reserved(p->addr, p->addr)) {
Masami Hiramatsua189d032008-11-12 13:26:51 -08001066 preempt_enable();
Mao, Bibob3e55c72005-12-12 00:37:00 -08001067 return -EINVAL;
Masami Hiramatsua189d032008-11-12 13:26:51 -08001068 }
Mao, Bibob3e55c72005-12-12 00:37:00 -08001069
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001070 /* User can pass only KPROBE_FLAG_DISABLED to register_kprobe */
1071 p->flags &= KPROBE_FLAG_DISABLED;
1072
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001073 /*
1074 * Check if are we probing a module.
1075 */
Masami Hiramatsua189d032008-11-12 13:26:51 -08001076 probed_mod = __module_text_address((unsigned long) p->addr);
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001077 if (probed_mod) {
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001078 /*
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001079 * We must hold a refcount of the probed module while updating
1080 * its code to prohibit unexpected unloading.
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001081 */
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001082 if (unlikely(!try_module_get(probed_mod))) {
1083 preempt_enable();
1084 return -EINVAL;
1085 }
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001086 /*
1087 * If the module freed .init.text, we couldn't insert
1088 * kprobes in there.
1089 */
1090 if (within_module_init((unsigned long)p->addr, probed_mod) &&
1091 probed_mod->state != MODULE_STATE_COMING) {
1092 module_put(probed_mod);
1093 preempt_enable();
1094 return -EINVAL;
1095 }
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001096 }
Masami Hiramatsua189d032008-11-12 13:26:51 -08001097 preempt_enable();
Mao, Bibob3e55c72005-12-12 00:37:00 -08001098
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001099 p->nmissed = 0;
Masami Hiramatsu98616682008-04-28 02:14:28 -07001100 INIT_LIST_HEAD(&p->list);
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -08001101 mutex_lock(&kprobe_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001102
1103 get_online_cpus(); /* For avoiding text_mutex deadlock. */
1104 mutex_lock(&text_mutex);
1105
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001106 old_p = get_kprobe(p->addr);
1107 if (old_p) {
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001108 /* Since this may unoptimize old_p, locking text_mutex. */
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001109 ret = register_aggr_kprobe(old_p, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 goto out;
1111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001113 ret = arch_prepare_kprobe(p);
1114 if (ret)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001115 goto out;
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001116
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001117 INIT_HLIST_NODE(&p->hlist);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001118 hlist_add_head_rcu(&p->hlist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
1120
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001121 if (!kprobes_all_disarmed && !kprobe_disabled(p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001122 __arm_kprobe(p);
Christoph Hellwig74a0b572007-10-16 01:24:07 -07001123
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001124 /* Try to optimize kprobe */
1125 try_to_optimize_kprobe(p);
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127out:
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001128 mutex_unlock(&text_mutex);
1129 put_online_cpus();
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -08001130 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001131
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001132 if (probed_mod)
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001133 module_put(probed_mod);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return ret;
1136}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001137EXPORT_SYMBOL_GPL(register_kprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Masami Hiramatsu98616682008-04-28 02:14:28 -07001139/*
1140 * Unregister a kprobe without a scheduler synchronization.
1141 */
1142static int __kprobes __unregister_kprobe_top(struct kprobe *p)
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001143{
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -08001144 struct kprobe *old_p, *list_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001145
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001146 old_p = __get_valid_kprobe(p);
1147 if (old_p == NULL)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001148 return -EINVAL;
1149
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001150 if (old_p == p ||
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001151 (kprobe_aggrprobe(old_p) &&
Masami Hiramatsu98616682008-04-28 02:14:28 -07001152 list_is_singular(&old_p->list))) {
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001153 /*
1154 * Only probe on the hash list. Disarm only if kprobes are
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001155 * enabled and not gone - otherwise, the breakpoint would
1156 * already have been removed. We save on flushing icache.
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001157 */
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001158 if (!kprobes_all_disarmed && !kprobe_disabled(old_p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001159 disarm_kprobe(old_p);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001160 hlist_del_rcu(&old_p->hlist);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001161 } else {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001162 if (p->break_handler && !kprobe_gone(p))
Masami Hiramatsu98616682008-04-28 02:14:28 -07001163 old_p->break_handler = NULL;
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001164 if (p->post_handler && !kprobe_gone(p)) {
Masami Hiramatsu98616682008-04-28 02:14:28 -07001165 list_for_each_entry_rcu(list_p, &old_p->list, list) {
1166 if ((list_p != p) && (list_p->post_handler))
1167 goto noclean;
1168 }
1169 old_p->post_handler = NULL;
1170 }
1171noclean:
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001172 list_del_rcu(&p->list);
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001173 if (!kprobe_disabled(old_p)) {
1174 try_to_disable_aggr_kprobe(old_p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001175 if (!kprobes_all_disarmed) {
1176 if (kprobe_disabled(old_p))
1177 disarm_kprobe(old_p);
1178 else
1179 /* Try to optimize this probe again */
1180 optimize_kprobe(old_p);
1181 }
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001182 }
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001183 }
Masami Hiramatsu98616682008-04-28 02:14:28 -07001184 return 0;
1185}
Mao, Bibob3e55c72005-12-12 00:37:00 -08001186
Masami Hiramatsu98616682008-04-28 02:14:28 -07001187static void __kprobes __unregister_kprobe_bottom(struct kprobe *p)
1188{
Masami Hiramatsu98616682008-04-28 02:14:28 -07001189 struct kprobe *old_p;
Mao, Bibob3e55c72005-12-12 00:37:00 -08001190
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001191 if (list_empty(&p->list))
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -08001192 arch_remove_kprobe(p);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001193 else if (list_is_singular(&p->list)) {
1194 /* "p" is the last child of an aggr_kprobe */
1195 old_p = list_entry(p->list.next, struct kprobe, list);
1196 list_del(&p->list);
1197 arch_remove_kprobe(old_p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001198 free_aggr_kprobe(old_p);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001202int __kprobes register_kprobes(struct kprobe **kps, int num)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001203{
1204 int i, ret = 0;
1205
1206 if (num <= 0)
1207 return -EINVAL;
1208 for (i = 0; i < num; i++) {
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001209 ret = register_kprobe(kps[i]);
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001210 if (ret < 0) {
1211 if (i > 0)
1212 unregister_kprobes(kps, i);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001213 break;
1214 }
1215 }
1216 return ret;
1217}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001218EXPORT_SYMBOL_GPL(register_kprobes);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001219
Masami Hiramatsu98616682008-04-28 02:14:28 -07001220void __kprobes unregister_kprobe(struct kprobe *p)
1221{
1222 unregister_kprobes(&p, 1);
1223}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001224EXPORT_SYMBOL_GPL(unregister_kprobe);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001225
Masami Hiramatsu98616682008-04-28 02:14:28 -07001226void __kprobes unregister_kprobes(struct kprobe **kps, int num)
1227{
1228 int i;
1229
1230 if (num <= 0)
1231 return;
1232 mutex_lock(&kprobe_mutex);
1233 for (i = 0; i < num; i++)
1234 if (__unregister_kprobe_top(kps[i]) < 0)
1235 kps[i]->addr = NULL;
1236 mutex_unlock(&kprobe_mutex);
1237
1238 synchronize_sched();
1239 for (i = 0; i < num; i++)
1240 if (kps[i]->addr)
1241 __unregister_kprobe_bottom(kps[i]);
1242}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001243EXPORT_SYMBOL_GPL(unregister_kprobes);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245static struct notifier_block kprobe_exceptions_nb = {
1246 .notifier_call = kprobe_exceptions_notify,
Anil S Keshavamurthy3d5631e2006-06-26 00:25:28 -07001247 .priority = 0x7fffffff /* we need to be notified first */
1248};
1249
Michael Ellerman3d7e3382007-07-19 01:48:11 -07001250unsigned long __weak arch_deref_entry_point(void *entry)
1251{
1252 return (unsigned long)entry;
1253}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001255int __kprobes register_jprobes(struct jprobe **jps, int num)
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001256{
1257 struct jprobe *jp;
1258 int ret = 0, i;
1259
1260 if (num <= 0)
1261 return -EINVAL;
1262 for (i = 0; i < num; i++) {
1263 unsigned long addr;
1264 jp = jps[i];
1265 addr = arch_deref_entry_point(jp->entry);
1266
1267 if (!kernel_text_address(addr))
1268 ret = -EINVAL;
1269 else {
1270 /* Todo: Verify probepoint is a function entry point */
1271 jp->kp.pre_handler = setjmp_pre_handler;
1272 jp->kp.break_handler = longjmp_break_handler;
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001273 ret = register_kprobe(&jp->kp);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001274 }
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001275 if (ret < 0) {
1276 if (i > 0)
1277 unregister_jprobes(jps, i);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001278 break;
1279 }
1280 }
1281 return ret;
1282}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001283EXPORT_SYMBOL_GPL(register_jprobes);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001284
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001285int __kprobes register_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001287 return register_jprobes(&jp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001289EXPORT_SYMBOL_GPL(register_jprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001291void __kprobes unregister_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001293 unregister_jprobes(&jp, 1);
1294}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001295EXPORT_SYMBOL_GPL(unregister_jprobe);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001296
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001297void __kprobes unregister_jprobes(struct jprobe **jps, int num)
1298{
1299 int i;
1300
1301 if (num <= 0)
1302 return;
1303 mutex_lock(&kprobe_mutex);
1304 for (i = 0; i < num; i++)
1305 if (__unregister_kprobe_top(&jps[i]->kp) < 0)
1306 jps[i]->kp.addr = NULL;
1307 mutex_unlock(&kprobe_mutex);
1308
1309 synchronize_sched();
1310 for (i = 0; i < num; i++) {
1311 if (jps[i]->kp.addr)
1312 __unregister_kprobe_bottom(&jps[i]->kp);
1313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001315EXPORT_SYMBOL_GPL(unregister_jprobes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001317#ifdef CONFIG_KRETPROBES
Adrian Bunke65cefe2006-02-03 03:03:42 -08001318/*
1319 * This kprobe pre_handler is registered with every kretprobe. When probe
1320 * hits it will set up the return probe.
1321 */
1322static int __kprobes pre_handler_kretprobe(struct kprobe *p,
1323 struct pt_regs *regs)
1324{
1325 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001326 unsigned long hash, flags = 0;
1327 struct kretprobe_instance *ri;
Adrian Bunke65cefe2006-02-03 03:03:42 -08001328
1329 /*TODO: consider to only swap the RA after the last pre_handler fired */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001330 hash = hash_ptr(current, KPROBE_HASH_BITS);
1331 spin_lock_irqsave(&rp->lock, flags);
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001332 if (!hlist_empty(&rp->free_instances)) {
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001333 ri = hlist_entry(rp->free_instances.first,
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001334 struct kretprobe_instance, hlist);
1335 hlist_del(&ri->hlist);
1336 spin_unlock_irqrestore(&rp->lock, flags);
1337
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001338 ri->rp = rp;
1339 ri->task = current;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001340
Ananth N Mavinakayanahallif02b8622009-03-18 17:06:21 +05301341 if (rp->entry_handler && rp->entry_handler(ri, regs))
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001342 return 0;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001343
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001344 arch_prepare_kretprobe(ri, regs);
1345
1346 /* XXX(hch): why is there no hlist_move_head? */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001347 INIT_HLIST_NODE(&ri->hlist);
1348 kretprobe_table_lock(hash, &flags);
1349 hlist_add_head(&ri->hlist, &kretprobe_inst_table[hash]);
1350 kretprobe_table_unlock(hash, &flags);
1351 } else {
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001352 rp->nmissed++;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001353 spin_unlock_irqrestore(&rp->lock, flags);
1354 }
Adrian Bunke65cefe2006-02-03 03:03:42 -08001355 return 0;
1356}
1357
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001358int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001359{
1360 int ret = 0;
1361 struct kretprobe_instance *inst;
1362 int i;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001363 void *addr;
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001364
1365 if (kretprobe_blacklist_size) {
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001366 addr = kprobe_addr(&rp->kp);
1367 if (!addr)
1368 return -EINVAL;
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001369
1370 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
1371 if (kretprobe_blacklist[i].addr == addr)
1372 return -EINVAL;
1373 }
1374 }
Hien Nguyenb94cce92005-06-23 00:09:19 -07001375
1376 rp->kp.pre_handler = pre_handler_kretprobe;
Ananth N Mavinakayanahalli7522a842006-04-20 02:43:11 -07001377 rp->kp.post_handler = NULL;
1378 rp->kp.fault_handler = NULL;
1379 rp->kp.break_handler = NULL;
Hien Nguyenb94cce92005-06-23 00:09:19 -07001380
1381 /* Pre-allocate memory for max kretprobe instances */
1382 if (rp->maxactive <= 0) {
1383#ifdef CONFIG_PREEMPT
Heiko Carstensc2ef6662009-12-21 13:02:24 +01001384 rp->maxactive = max_t(unsigned int, 10, 2*num_possible_cpus());
Hien Nguyenb94cce92005-06-23 00:09:19 -07001385#else
Ananth N Mavinakayanahalli4dae5602009-10-30 19:23:10 +05301386 rp->maxactive = num_possible_cpus();
Hien Nguyenb94cce92005-06-23 00:09:19 -07001387#endif
1388 }
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001389 spin_lock_init(&rp->lock);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001390 INIT_HLIST_HEAD(&rp->free_instances);
1391 for (i = 0; i < rp->maxactive; i++) {
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001392 inst = kmalloc(sizeof(struct kretprobe_instance) +
1393 rp->data_size, GFP_KERNEL);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001394 if (inst == NULL) {
1395 free_rp_inst(rp);
1396 return -ENOMEM;
1397 }
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001398 INIT_HLIST_NODE(&inst->hlist);
1399 hlist_add_head(&inst->hlist, &rp->free_instances);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001400 }
1401
1402 rp->nmissed = 0;
1403 /* Establish function entry probe point */
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001404 ret = register_kprobe(&rp->kp);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001405 if (ret != 0)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001406 free_rp_inst(rp);
1407 return ret;
1408}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001409EXPORT_SYMBOL_GPL(register_kretprobe);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001410
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001411int __kprobes register_kretprobes(struct kretprobe **rps, int num)
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001412{
1413 int ret = 0, i;
1414
1415 if (num <= 0)
1416 return -EINVAL;
1417 for (i = 0; i < num; i++) {
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001418 ret = register_kretprobe(rps[i]);
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001419 if (ret < 0) {
1420 if (i > 0)
1421 unregister_kretprobes(rps, i);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001422 break;
1423 }
1424 }
1425 return ret;
1426}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001427EXPORT_SYMBOL_GPL(register_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001428
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001429void __kprobes unregister_kretprobe(struct kretprobe *rp)
1430{
1431 unregister_kretprobes(&rp, 1);
1432}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001433EXPORT_SYMBOL_GPL(unregister_kretprobe);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001434
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001435void __kprobes unregister_kretprobes(struct kretprobe **rps, int num)
1436{
1437 int i;
1438
1439 if (num <= 0)
1440 return;
1441 mutex_lock(&kprobe_mutex);
1442 for (i = 0; i < num; i++)
1443 if (__unregister_kprobe_top(&rps[i]->kp) < 0)
1444 rps[i]->kp.addr = NULL;
1445 mutex_unlock(&kprobe_mutex);
1446
1447 synchronize_sched();
1448 for (i = 0; i < num; i++) {
1449 if (rps[i]->kp.addr) {
1450 __unregister_kprobe_bottom(&rps[i]->kp);
1451 cleanup_rp_inst(rps[i]);
1452 }
1453 }
1454}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001455EXPORT_SYMBOL_GPL(unregister_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001456
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001457#else /* CONFIG_KRETPROBES */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001458int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001459{
1460 return -ENOSYS;
1461}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001462EXPORT_SYMBOL_GPL(register_kretprobe);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001463
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001464int __kprobes register_kretprobes(struct kretprobe **rps, int num)
1465{
1466 return -ENOSYS;
1467}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001468EXPORT_SYMBOL_GPL(register_kretprobes);
1469
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001470void __kprobes unregister_kretprobe(struct kretprobe *rp)
1471{
1472}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001473EXPORT_SYMBOL_GPL(unregister_kretprobe);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001474
1475void __kprobes unregister_kretprobes(struct kretprobe **rps, int num)
1476{
1477}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001478EXPORT_SYMBOL_GPL(unregister_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001479
Srinivasa Ds346fd592007-02-20 13:57:54 -08001480static int __kprobes pre_handler_kretprobe(struct kprobe *p,
1481 struct pt_regs *regs)
1482{
1483 return 0;
1484}
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001485
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001486#endif /* CONFIG_KRETPROBES */
Hien Nguyenb94cce92005-06-23 00:09:19 -07001487
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001488/* Set the kprobe gone and remove its instruction buffer. */
1489static void __kprobes kill_kprobe(struct kprobe *p)
1490{
1491 struct kprobe *kp;
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001492
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001493 p->flags |= KPROBE_FLAG_GONE;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001494 if (kprobe_aggrprobe(p)) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001495 /*
1496 * If this is an aggr_kprobe, we have to list all the
1497 * chained probes and mark them GONE.
1498 */
1499 list_for_each_entry_rcu(kp, &p->list, list)
1500 kp->flags |= KPROBE_FLAG_GONE;
1501 p->post_handler = NULL;
1502 p->break_handler = NULL;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001503 kill_optimized_kprobe(p);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001504 }
1505 /*
1506 * Here, we can remove insn_slot safely, because no thread calls
1507 * the original probed function (which will be freed soon) any more.
1508 */
1509 arch_remove_kprobe(p);
1510}
1511
Frederic Weisbecker24851d22009-08-26 23:38:30 +02001512void __kprobes dump_kprobe(struct kprobe *kp)
1513{
1514 printk(KERN_WARNING "Dumping kprobe:\n");
1515 printk(KERN_WARNING "Name: %s\nAddress: %p\nOffset: %x\n",
1516 kp->symbol_name, kp->addr, kp->offset);
1517}
1518
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001519/* Module notifier call back, checking kprobes on the module */
1520static int __kprobes kprobes_module_callback(struct notifier_block *nb,
1521 unsigned long val, void *data)
1522{
1523 struct module *mod = data;
1524 struct hlist_head *head;
1525 struct hlist_node *node;
1526 struct kprobe *p;
1527 unsigned int i;
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001528 int checkcore = (val == MODULE_STATE_GOING);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001529
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001530 if (val != MODULE_STATE_GOING && val != MODULE_STATE_LIVE)
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001531 return NOTIFY_DONE;
1532
1533 /*
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001534 * When MODULE_STATE_GOING was notified, both of module .text and
1535 * .init.text sections would be freed. When MODULE_STATE_LIVE was
1536 * notified, only .init.text section would be freed. We need to
1537 * disable kprobes which have been inserted in the sections.
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001538 */
1539 mutex_lock(&kprobe_mutex);
1540 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1541 head = &kprobe_table[i];
1542 hlist_for_each_entry_rcu(p, node, head, hlist)
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001543 if (within_module_init((unsigned long)p->addr, mod) ||
1544 (checkcore &&
1545 within_module_core((unsigned long)p->addr, mod))) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001546 /*
1547 * The vaddr this probe is installed will soon
1548 * be vfreed buy not synced to disk. Hence,
1549 * disarming the breakpoint isn't needed.
1550 */
1551 kill_kprobe(p);
1552 }
1553 }
1554 mutex_unlock(&kprobe_mutex);
1555 return NOTIFY_DONE;
1556}
1557
1558static struct notifier_block kprobe_module_nb = {
1559 .notifier_call = kprobes_module_callback,
1560 .priority = 0
1561};
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563static int __init init_kprobes(void)
1564{
1565 int i, err = 0;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001566 unsigned long offset = 0, size = 0;
1567 char *modname, namebuf[128];
1568 const char *symbol_name;
1569 void *addr;
1570 struct kprobe_blackpoint *kb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 /* FIXME allocate the probe table, currently defined statically */
1573 /* initialize all list heads */
Hien Nguyenb94cce92005-06-23 00:09:19 -07001574 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 INIT_HLIST_HEAD(&kprobe_table[i]);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001576 INIT_HLIST_HEAD(&kretprobe_inst_table[i]);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001577 spin_lock_init(&(kretprobe_table_locks[i].lock));
Hien Nguyenb94cce92005-06-23 00:09:19 -07001578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001580 /*
1581 * Lookup and populate the kprobe_blacklist.
1582 *
1583 * Unlike the kretprobe blacklist, we'll need to determine
1584 * the range of addresses that belong to the said functions,
1585 * since a kprobe need not necessarily be at the beginning
1586 * of a function.
1587 */
1588 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
1589 kprobe_lookup_name(kb->name, addr);
1590 if (!addr)
1591 continue;
1592
1593 kb->start_addr = (unsigned long)addr;
1594 symbol_name = kallsyms_lookup(kb->start_addr,
1595 &size, &offset, &modname, namebuf);
1596 if (!symbol_name)
1597 kb->range = 0;
1598 else
1599 kb->range = size;
1600 }
1601
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001602 if (kretprobe_blacklist_size) {
1603 /* lookup the function address from its name */
1604 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
1605 kprobe_lookup_name(kretprobe_blacklist[i].name,
1606 kretprobe_blacklist[i].addr);
1607 if (!kretprobe_blacklist[i].addr)
1608 printk("kretprobe: lookup failed: %s\n",
1609 kretprobe_blacklist[i].name);
1610 }
1611 }
1612
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001613#if defined(CONFIG_OPTPROBES) && defined(__ARCH_WANT_KPROBES_INSN_SLOT)
1614 /* Init kprobe_optinsn_slots */
1615 kprobe_optinsn_slots.insn_size = MAX_OPTINSN_SIZE;
1616#endif
1617
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001618 /* By default, kprobes are armed */
1619 kprobes_all_disarmed = false;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001620
Rusty Lynch67729262005-07-05 18:54:50 -07001621 err = arch_init_kprobes();
Rusty Lynch802eae72005-06-27 15:17:08 -07001622 if (!err)
1623 err = register_die_notifier(&kprobe_exceptions_nb);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001624 if (!err)
1625 err = register_module_notifier(&kprobe_module_nb);
1626
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001627 kprobes_initialized = (err == 0);
Rusty Lynch802eae72005-06-27 15:17:08 -07001628
Ananth N Mavinakayanahalli8c1c9352008-01-30 13:32:53 +01001629 if (!err)
1630 init_test_probes();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 return err;
1632}
1633
Srinivasa Ds346fd592007-02-20 13:57:54 -08001634#ifdef CONFIG_DEBUG_FS
1635static void __kprobes report_probe(struct seq_file *pi, struct kprobe *p,
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001636 const char *sym, int offset, char *modname, struct kprobe *pp)
Srinivasa Ds346fd592007-02-20 13:57:54 -08001637{
1638 char *kprobe_type;
1639
1640 if (p->pre_handler == pre_handler_kretprobe)
1641 kprobe_type = "r";
1642 else if (p->pre_handler == setjmp_pre_handler)
1643 kprobe_type = "j";
1644 else
1645 kprobe_type = "k";
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001646
Srinivasa Ds346fd592007-02-20 13:57:54 -08001647 if (sym)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001648 seq_printf(pi, "%p %s %s+0x%x %s ",
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001649 p->addr, kprobe_type, sym, offset,
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001650 (modname ? modname : " "));
Srinivasa Ds346fd592007-02-20 13:57:54 -08001651 else
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001652 seq_printf(pi, "%p %s %p ",
1653 p->addr, kprobe_type, p->addr);
1654
1655 if (!pp)
1656 pp = p;
1657 seq_printf(pi, "%s%s%s\n",
1658 (kprobe_gone(p) ? "[GONE]" : ""),
1659 ((kprobe_disabled(p) && !kprobe_gone(p)) ? "[DISABLED]" : ""),
1660 (kprobe_optimized(pp) ? "[OPTIMIZED]" : ""));
Srinivasa Ds346fd592007-02-20 13:57:54 -08001661}
1662
1663static void __kprobes *kprobe_seq_start(struct seq_file *f, loff_t *pos)
1664{
1665 return (*pos < KPROBE_TABLE_SIZE) ? pos : NULL;
1666}
1667
1668static void __kprobes *kprobe_seq_next(struct seq_file *f, void *v, loff_t *pos)
1669{
1670 (*pos)++;
1671 if (*pos >= KPROBE_TABLE_SIZE)
1672 return NULL;
1673 return pos;
1674}
1675
1676static void __kprobes kprobe_seq_stop(struct seq_file *f, void *v)
1677{
1678 /* Nothing to do */
1679}
1680
1681static int __kprobes show_kprobe_addr(struct seq_file *pi, void *v)
1682{
1683 struct hlist_head *head;
1684 struct hlist_node *node;
1685 struct kprobe *p, *kp;
1686 const char *sym = NULL;
1687 unsigned int i = *(loff_t *) v;
Alexey Dobriyanffb45122007-05-08 00:28:41 -07001688 unsigned long offset = 0;
Srinivasa Ds346fd592007-02-20 13:57:54 -08001689 char *modname, namebuf[128];
1690
1691 head = &kprobe_table[i];
1692 preempt_disable();
1693 hlist_for_each_entry_rcu(p, node, head, hlist) {
Alexey Dobriyanffb45122007-05-08 00:28:41 -07001694 sym = kallsyms_lookup((unsigned long)p->addr, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -08001695 &offset, &modname, namebuf);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001696 if (kprobe_aggrprobe(p)) {
Srinivasa Ds346fd592007-02-20 13:57:54 -08001697 list_for_each_entry_rcu(kp, &p->list, list)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001698 report_probe(pi, kp, sym, offset, modname, p);
Srinivasa Ds346fd592007-02-20 13:57:54 -08001699 } else
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001700 report_probe(pi, p, sym, offset, modname, NULL);
Srinivasa Ds346fd592007-02-20 13:57:54 -08001701 }
1702 preempt_enable();
1703 return 0;
1704}
1705
James Morris88e9d342009-09-22 16:43:43 -07001706static const struct seq_operations kprobes_seq_ops = {
Srinivasa Ds346fd592007-02-20 13:57:54 -08001707 .start = kprobe_seq_start,
1708 .next = kprobe_seq_next,
1709 .stop = kprobe_seq_stop,
1710 .show = show_kprobe_addr
1711};
1712
1713static int __kprobes kprobes_open(struct inode *inode, struct file *filp)
1714{
1715 return seq_open(filp, &kprobes_seq_ops);
1716}
1717
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001718static const struct file_operations debugfs_kprobes_operations = {
Srinivasa Ds346fd592007-02-20 13:57:54 -08001719 .open = kprobes_open,
1720 .read = seq_read,
1721 .llseek = seq_lseek,
1722 .release = seq_release,
1723};
1724
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001725/* Disable one kprobe */
1726int __kprobes disable_kprobe(struct kprobe *kp)
1727{
1728 int ret = 0;
1729 struct kprobe *p;
1730
1731 mutex_lock(&kprobe_mutex);
1732
1733 /* Check whether specified probe is valid. */
1734 p = __get_valid_kprobe(kp);
1735 if (unlikely(p == NULL)) {
1736 ret = -EINVAL;
1737 goto out;
1738 }
1739
1740 /* If the probe is already disabled (or gone), just return */
1741 if (kprobe_disabled(kp))
1742 goto out;
1743
1744 kp->flags |= KPROBE_FLAG_DISABLED;
1745 if (p != kp)
1746 /* When kp != p, p is always enabled. */
1747 try_to_disable_aggr_kprobe(p);
1748
1749 if (!kprobes_all_disarmed && kprobe_disabled(p))
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001750 disarm_kprobe(p);
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001751out:
1752 mutex_unlock(&kprobe_mutex);
1753 return ret;
1754}
1755EXPORT_SYMBOL_GPL(disable_kprobe);
1756
1757/* Enable one kprobe */
1758int __kprobes enable_kprobe(struct kprobe *kp)
1759{
1760 int ret = 0;
1761 struct kprobe *p;
1762
1763 mutex_lock(&kprobe_mutex);
1764
1765 /* Check whether specified probe is valid. */
1766 p = __get_valid_kprobe(kp);
1767 if (unlikely(p == NULL)) {
1768 ret = -EINVAL;
1769 goto out;
1770 }
1771
1772 if (kprobe_gone(kp)) {
1773 /* This kprobe has gone, we couldn't enable it. */
1774 ret = -EINVAL;
1775 goto out;
1776 }
1777
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001778 if (p != kp)
1779 kp->flags &= ~KPROBE_FLAG_DISABLED;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001780
1781 if (!kprobes_all_disarmed && kprobe_disabled(p)) {
1782 p->flags &= ~KPROBE_FLAG_DISABLED;
1783 arm_kprobe(p);
1784 }
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001785out:
1786 mutex_unlock(&kprobe_mutex);
1787 return ret;
1788}
1789EXPORT_SYMBOL_GPL(enable_kprobe);
1790
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001791static void __kprobes arm_all_kprobes(void)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001792{
1793 struct hlist_head *head;
1794 struct hlist_node *node;
1795 struct kprobe *p;
1796 unsigned int i;
1797
1798 mutex_lock(&kprobe_mutex);
1799
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001800 /* If kprobes are armed, just return */
1801 if (!kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001802 goto already_enabled;
1803
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001804 /* Arming kprobes doesn't optimize kprobe itself */
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001805 mutex_lock(&text_mutex);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001806 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1807 head = &kprobe_table[i];
1808 hlist_for_each_entry_rcu(p, node, head, hlist)
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001809 if (!kprobe_disabled(p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001810 __arm_kprobe(p);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001811 }
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001812 mutex_unlock(&text_mutex);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001813
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001814 kprobes_all_disarmed = false;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001815 printk(KERN_INFO "Kprobes globally enabled\n");
1816
1817already_enabled:
1818 mutex_unlock(&kprobe_mutex);
1819 return;
1820}
1821
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001822static void __kprobes disarm_all_kprobes(void)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001823{
1824 struct hlist_head *head;
1825 struct hlist_node *node;
1826 struct kprobe *p;
1827 unsigned int i;
1828
1829 mutex_lock(&kprobe_mutex);
1830
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001831 /* If kprobes are already disarmed, just return */
1832 if (kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001833 goto already_disabled;
1834
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001835 kprobes_all_disarmed = true;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001836 printk(KERN_INFO "Kprobes globally disabled\n");
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001837
1838 /*
1839 * Here we call get_online_cpus() for avoiding text_mutex deadlock,
1840 * because disarming may also unoptimize kprobes.
1841 */
1842 get_online_cpus();
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001843 mutex_lock(&text_mutex);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001844 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1845 head = &kprobe_table[i];
1846 hlist_for_each_entry_rcu(p, node, head, hlist) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001847 if (!arch_trampoline_kprobe(p) && !kprobe_disabled(p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001848 __disarm_kprobe(p);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001849 }
1850 }
1851
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001852 mutex_unlock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001853 put_online_cpus();
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001854 mutex_unlock(&kprobe_mutex);
1855 /* Allow all currently running kprobes to complete */
1856 synchronize_sched();
Christoph Hellwig74a0b572007-10-16 01:24:07 -07001857 return;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001858
1859already_disabled:
1860 mutex_unlock(&kprobe_mutex);
1861 return;
1862}
1863
1864/*
1865 * XXX: The debugfs bool file interface doesn't allow for callbacks
1866 * when the bool state is switched. We can reuse that facility when
1867 * available
1868 */
1869static ssize_t read_enabled_file_bool(struct file *file,
1870 char __user *user_buf, size_t count, loff_t *ppos)
1871{
1872 char buf[3];
1873
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001874 if (!kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001875 buf[0] = '1';
1876 else
1877 buf[0] = '0';
1878 buf[1] = '\n';
1879 buf[2] = 0x00;
1880 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
1881}
1882
1883static ssize_t write_enabled_file_bool(struct file *file,
1884 const char __user *user_buf, size_t count, loff_t *ppos)
1885{
1886 char buf[32];
1887 int buf_size;
1888
1889 buf_size = min(count, (sizeof(buf)-1));
1890 if (copy_from_user(buf, user_buf, buf_size))
1891 return -EFAULT;
1892
1893 switch (buf[0]) {
1894 case 'y':
1895 case 'Y':
1896 case '1':
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001897 arm_all_kprobes();
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001898 break;
1899 case 'n':
1900 case 'N':
1901 case '0':
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001902 disarm_all_kprobes();
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001903 break;
1904 }
1905
1906 return count;
1907}
1908
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001909static const struct file_operations fops_kp = {
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001910 .read = read_enabled_file_bool,
1911 .write = write_enabled_file_bool,
1912};
1913
Srinivasa Ds346fd592007-02-20 13:57:54 -08001914static int __kprobes debugfs_kprobe_init(void)
1915{
1916 struct dentry *dir, *file;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001917 unsigned int value = 1;
Srinivasa Ds346fd592007-02-20 13:57:54 -08001918
1919 dir = debugfs_create_dir("kprobes", NULL);
1920 if (!dir)
1921 return -ENOMEM;
1922
Randy Dunlape3869792007-05-08 00:27:01 -07001923 file = debugfs_create_file("list", 0444, dir, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -08001924 &debugfs_kprobes_operations);
1925 if (!file) {
1926 debugfs_remove(dir);
1927 return -ENOMEM;
1928 }
1929
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001930 file = debugfs_create_file("enabled", 0600, dir,
1931 &value, &fops_kp);
1932 if (!file) {
1933 debugfs_remove(dir);
1934 return -ENOMEM;
1935 }
1936
Srinivasa Ds346fd592007-02-20 13:57:54 -08001937 return 0;
1938}
1939
1940late_initcall(debugfs_kprobe_init);
1941#endif /* CONFIG_DEBUG_FS */
1942
1943module_init(init_kprobes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001945/* defined in arch/.../kernel/kprobes.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946EXPORT_SYMBOL_GPL(jprobe_return);