blob: 6dd5359e1f0e911103fcc935d8844d253a6ef073 [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 Mavinakayanahallibf8f6e52007-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 Mavinakayanahallibf8f6e52007-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 Mavinakayanahallibf8f6e52007-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 Mavinakayanahallibf8f6e52007-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) {
Masami Hiramatsu83ff56f2010-03-09 10:22:19 -0500262 long idx = ((long)slot - (long)kip->insns) /
263 (c->insn_size * sizeof(kprobe_opcode_t));
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500264 if (idx >= 0 && idx < slots_per_page(c)) {
265 WARN_ON(kip->slot_used[idx] != SLOT_USED);
266 if (dirty) {
267 kip->slot_used[idx] = SLOT_DIRTY;
268 kip->ngarbage++;
269 if (++c->nr_garbage > slots_per_page(c))
270 collect_garbage_slots(c);
271 } else
272 collect_one_slot(kip, idx);
273 return;
274 }
275 }
276 /* Could not free this slot. */
277 WARN_ON(1);
278}
279
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800280void __kprobes free_insn_slot(kprobe_opcode_t * slot, int dirty)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700281{
Masami Hiramatsu12941562009-01-06 14:41:50 -0800282 mutex_lock(&kprobe_insn_mutex);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500283 __free_insn_slot(&kprobe_insn_slots, slot, dirty);
Masami Hiramatsu12941562009-01-06 14:41:50 -0800284 mutex_unlock(&kprobe_insn_mutex);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700285}
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500286#ifdef CONFIG_OPTPROBES
287/* For optimized_kprobe buffer */
288static DEFINE_MUTEX(kprobe_optinsn_mutex); /* Protects kprobe_optinsn_slots */
289static struct kprobe_insn_cache kprobe_optinsn_slots = {
290 .pages = LIST_HEAD_INIT(kprobe_optinsn_slots.pages),
291 /* .insn_size is initialized later */
292 .nr_garbage = 0,
293};
294/* Get a slot for optimized_kprobe buffer */
295kprobe_opcode_t __kprobes *get_optinsn_slot(void)
296{
297 kprobe_opcode_t *ret = NULL;
298
299 mutex_lock(&kprobe_optinsn_mutex);
300 ret = __get_insn_slot(&kprobe_optinsn_slots);
301 mutex_unlock(&kprobe_optinsn_mutex);
302
303 return ret;
304}
305
306void __kprobes free_optinsn_slot(kprobe_opcode_t * slot, int dirty)
307{
308 mutex_lock(&kprobe_optinsn_mutex);
309 __free_insn_slot(&kprobe_optinsn_slots, slot, dirty);
310 mutex_unlock(&kprobe_optinsn_mutex);
311}
312#endif
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -0800313#endif
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700314
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800315/* We have preemption disabled.. so it is safe to use __ versions */
316static inline void set_kprobe_instance(struct kprobe *kp)
317{
318 __get_cpu_var(kprobe_instance) = kp;
319}
320
321static inline void reset_kprobe_instance(void)
322{
323 __get_cpu_var(kprobe_instance) = NULL;
324}
325
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800326/*
327 * This routine is called either:
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800328 * - under the kprobe_mutex - during kprobe_[un]register()
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800329 * OR
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800330 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800331 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700332struct kprobe __kprobes *get_kprobe(void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 struct hlist_head *head;
335 struct hlist_node *node;
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800336 struct kprobe *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800339 hlist_for_each_entry_rcu(p, node, head, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (p->addr == addr)
341 return p;
342 }
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return NULL;
345}
346
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500347static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs);
348
349/* Return true if the kprobe is an aggregator */
350static inline int kprobe_aggrprobe(struct kprobe *p)
351{
352 return p->pre_handler == aggr_pre_handler;
353}
354
355/*
356 * Keep all fields in the kprobe consistent
357 */
358static inline void copy_kprobe(struct kprobe *old_p, struct kprobe *p)
359{
360 memcpy(&p->opcode, &old_p->opcode, sizeof(kprobe_opcode_t));
361 memcpy(&p->ainsn, &old_p->ainsn, sizeof(struct arch_specific_insn));
362}
363
364#ifdef CONFIG_OPTPROBES
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500365/* NOTE: change this value only with kprobe_mutex held */
366static bool kprobes_allow_optimization;
367
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500368/*
369 * Call all pre_handler on the list, but ignores its return value.
370 * This must be called from arch-dep optimized caller.
371 */
372void __kprobes opt_pre_handler(struct kprobe *p, struct pt_regs *regs)
373{
374 struct kprobe *kp;
375
376 list_for_each_entry_rcu(kp, &p->list, list) {
377 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
378 set_kprobe_instance(kp);
379 kp->pre_handler(kp, regs);
380 }
381 reset_kprobe_instance();
382 }
383}
384
385/* Return true(!0) if the kprobe is ready for optimization. */
386static inline int kprobe_optready(struct kprobe *p)
387{
388 struct optimized_kprobe *op;
389
390 if (kprobe_aggrprobe(p)) {
391 op = container_of(p, struct optimized_kprobe, kp);
392 return arch_prepared_optinsn(&op->optinsn);
393 }
394
395 return 0;
396}
397
398/*
399 * Return an optimized kprobe whose optimizing code replaces
400 * instructions including addr (exclude breakpoint).
401 */
Namhyung Kim6376b222010-09-15 10:04:28 +0900402static struct kprobe *__kprobes get_optimized_kprobe(unsigned long addr)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500403{
404 int i;
405 struct kprobe *p = NULL;
406 struct optimized_kprobe *op;
407
408 /* Don't check i == 0, since that is a breakpoint case. */
409 for (i = 1; !p && i < MAX_OPTIMIZED_LENGTH; i++)
410 p = get_kprobe((void *)(addr - i));
411
412 if (p && kprobe_optready(p)) {
413 op = container_of(p, struct optimized_kprobe, kp);
414 if (arch_within_optimized_kprobe(op, addr))
415 return p;
416 }
417
418 return NULL;
419}
420
421/* Optimization staging list, protected by kprobe_mutex */
422static LIST_HEAD(optimizing_list);
423
424static void kprobe_optimizer(struct work_struct *work);
425static DECLARE_DELAYED_WORK(optimizing_work, kprobe_optimizer);
426#define OPTIMIZE_DELAY 5
427
428/* Kprobe jump optimizer */
429static __kprobes void kprobe_optimizer(struct work_struct *work)
430{
431 struct optimized_kprobe *op, *tmp;
432
433 /* Lock modules while optimizing kprobes */
434 mutex_lock(&module_mutex);
435 mutex_lock(&kprobe_mutex);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500436 if (kprobes_all_disarmed || !kprobes_allow_optimization)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500437 goto end;
438
439 /*
440 * Wait for quiesence period to ensure all running interrupts
441 * are done. Because optprobe may modify multiple instructions
442 * there is a chance that Nth instruction is interrupted. In that
443 * case, running interrupt can return to 2nd-Nth byte of jump
444 * instruction. This wait is for avoiding it.
445 */
446 synchronize_sched();
447
448 /*
449 * The optimization/unoptimization refers online_cpus via
450 * stop_machine() and cpu-hotplug modifies online_cpus.
451 * And same time, text_mutex will be held in cpu-hotplug and here.
452 * This combination can cause a deadlock (cpu-hotplug try to lock
453 * text_mutex but stop_machine can not be done because online_cpus
454 * has been changed)
455 * To avoid this deadlock, we need to call get_online_cpus()
456 * for preventing cpu-hotplug outside of text_mutex locking.
457 */
458 get_online_cpus();
459 mutex_lock(&text_mutex);
460 list_for_each_entry_safe(op, tmp, &optimizing_list, list) {
461 WARN_ON(kprobe_disabled(&op->kp));
462 if (arch_optimize_kprobe(op) < 0)
463 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
464 list_del_init(&op->list);
465 }
466 mutex_unlock(&text_mutex);
467 put_online_cpus();
468end:
469 mutex_unlock(&kprobe_mutex);
470 mutex_unlock(&module_mutex);
471}
472
473/* Optimize kprobe if p is ready to be optimized */
474static __kprobes void optimize_kprobe(struct kprobe *p)
475{
476 struct optimized_kprobe *op;
477
478 /* Check if the kprobe is disabled or not ready for optimization. */
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500479 if (!kprobe_optready(p) || !kprobes_allow_optimization ||
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500480 (kprobe_disabled(p) || kprobes_all_disarmed))
481 return;
482
483 /* Both of break_handler and post_handler are not supported. */
484 if (p->break_handler || p->post_handler)
485 return;
486
487 op = container_of(p, struct optimized_kprobe, kp);
488
489 /* Check there is no other kprobes at the optimized instructions */
490 if (arch_check_optimized_kprobe(op) < 0)
491 return;
492
493 /* Check if it is already optimized. */
494 if (op->kp.flags & KPROBE_FLAG_OPTIMIZED)
495 return;
496
497 op->kp.flags |= KPROBE_FLAG_OPTIMIZED;
498 list_add(&op->list, &optimizing_list);
499 if (!delayed_work_pending(&optimizing_work))
500 schedule_delayed_work(&optimizing_work, OPTIMIZE_DELAY);
501}
502
503/* Unoptimize a kprobe if p is optimized */
504static __kprobes void unoptimize_kprobe(struct kprobe *p)
505{
506 struct optimized_kprobe *op;
507
508 if ((p->flags & KPROBE_FLAG_OPTIMIZED) && kprobe_aggrprobe(p)) {
509 op = container_of(p, struct optimized_kprobe, kp);
510 if (!list_empty(&op->list))
511 /* Dequeue from the optimization queue */
512 list_del_init(&op->list);
513 else
514 /* Replace jump with break */
515 arch_unoptimize_kprobe(op);
516 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
517 }
518}
519
520/* Remove optimized instructions */
521static void __kprobes kill_optimized_kprobe(struct kprobe *p)
522{
523 struct optimized_kprobe *op;
524
525 op = container_of(p, struct optimized_kprobe, kp);
526 if (!list_empty(&op->list)) {
527 /* Dequeue from the optimization queue */
528 list_del_init(&op->list);
529 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
530 }
531 /* Don't unoptimize, because the target code will be freed. */
532 arch_remove_optimized_kprobe(op);
533}
534
535/* Try to prepare optimized instructions */
536static __kprobes void prepare_optimized_kprobe(struct kprobe *p)
537{
538 struct optimized_kprobe *op;
539
540 op = container_of(p, struct optimized_kprobe, kp);
541 arch_prepare_optimized_kprobe(op);
542}
543
544/* Free optimized instructions and optimized_kprobe */
545static __kprobes void free_aggr_kprobe(struct kprobe *p)
546{
547 struct optimized_kprobe *op;
548
549 op = container_of(p, struct optimized_kprobe, kp);
550 arch_remove_optimized_kprobe(op);
551 kfree(op);
552}
553
554/* Allocate new optimized_kprobe and try to prepare optimized instructions */
555static __kprobes struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
556{
557 struct optimized_kprobe *op;
558
559 op = kzalloc(sizeof(struct optimized_kprobe), GFP_KERNEL);
560 if (!op)
561 return NULL;
562
563 INIT_LIST_HEAD(&op->list);
564 op->kp.addr = p->addr;
565 arch_prepare_optimized_kprobe(op);
566
567 return &op->kp;
568}
569
570static void __kprobes init_aggr_kprobe(struct kprobe *ap, struct kprobe *p);
571
572/*
573 * Prepare an optimized_kprobe and optimize it
574 * NOTE: p must be a normal registered kprobe
575 */
576static __kprobes void try_to_optimize_kprobe(struct kprobe *p)
577{
578 struct kprobe *ap;
579 struct optimized_kprobe *op;
580
581 ap = alloc_aggr_kprobe(p);
582 if (!ap)
583 return;
584
585 op = container_of(ap, struct optimized_kprobe, kp);
586 if (!arch_prepared_optinsn(&op->optinsn)) {
587 /* If failed to setup optimizing, fallback to kprobe */
588 free_aggr_kprobe(ap);
589 return;
590 }
591
592 init_aggr_kprobe(ap, p);
593 optimize_kprobe(ap);
594}
595
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500596#ifdef CONFIG_SYSCTL
597static void __kprobes optimize_all_kprobes(void)
598{
599 struct hlist_head *head;
600 struct hlist_node *node;
601 struct kprobe *p;
602 unsigned int i;
603
604 /* If optimization is already allowed, just return */
605 if (kprobes_allow_optimization)
606 return;
607
608 kprobes_allow_optimization = true;
609 mutex_lock(&text_mutex);
610 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
611 head = &kprobe_table[i];
612 hlist_for_each_entry_rcu(p, node, head, hlist)
613 if (!kprobe_disabled(p))
614 optimize_kprobe(p);
615 }
616 mutex_unlock(&text_mutex);
617 printk(KERN_INFO "Kprobes globally optimized\n");
618}
619
620static void __kprobes unoptimize_all_kprobes(void)
621{
622 struct hlist_head *head;
623 struct hlist_node *node;
624 struct kprobe *p;
625 unsigned int i;
626
627 /* If optimization is already prohibited, just return */
628 if (!kprobes_allow_optimization)
629 return;
630
631 kprobes_allow_optimization = false;
632 printk(KERN_INFO "Kprobes globally unoptimized\n");
633 get_online_cpus(); /* For avoiding text_mutex deadlock */
634 mutex_lock(&text_mutex);
635 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
636 head = &kprobe_table[i];
637 hlist_for_each_entry_rcu(p, node, head, hlist) {
638 if (!kprobe_disabled(p))
639 unoptimize_kprobe(p);
640 }
641 }
642
643 mutex_unlock(&text_mutex);
644 put_online_cpus();
645 /* Allow all currently running kprobes to complete */
646 synchronize_sched();
647}
648
649int sysctl_kprobes_optimization;
650int proc_kprobes_optimization_handler(struct ctl_table *table, int write,
651 void __user *buffer, size_t *length,
652 loff_t *ppos)
653{
654 int ret;
655
656 mutex_lock(&kprobe_mutex);
657 sysctl_kprobes_optimization = kprobes_allow_optimization ? 1 : 0;
658 ret = proc_dointvec_minmax(table, write, buffer, length, ppos);
659
660 if (sysctl_kprobes_optimization)
661 optimize_all_kprobes();
662 else
663 unoptimize_all_kprobes();
664 mutex_unlock(&kprobe_mutex);
665
666 return ret;
667}
668#endif /* CONFIG_SYSCTL */
669
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500670static void __kprobes __arm_kprobe(struct kprobe *p)
671{
672 struct kprobe *old_p;
673
674 /* Check collision with other optimized kprobes */
675 old_p = get_optimized_kprobe((unsigned long)p->addr);
676 if (unlikely(old_p))
677 unoptimize_kprobe(old_p); /* Fallback to unoptimized kprobe */
678
679 arch_arm_kprobe(p);
680 optimize_kprobe(p); /* Try to optimize (add kprobe to a list) */
681}
682
683static void __kprobes __disarm_kprobe(struct kprobe *p)
684{
685 struct kprobe *old_p;
686
687 unoptimize_kprobe(p); /* Try to unoptimize */
688 arch_disarm_kprobe(p);
689
690 /* If another kprobe was blocked, optimize it. */
691 old_p = get_optimized_kprobe((unsigned long)p->addr);
692 if (unlikely(old_p))
693 optimize_kprobe(old_p);
694}
695
696#else /* !CONFIG_OPTPROBES */
697
698#define optimize_kprobe(p) do {} while (0)
699#define unoptimize_kprobe(p) do {} while (0)
700#define kill_optimized_kprobe(p) do {} while (0)
701#define prepare_optimized_kprobe(p) do {} while (0)
702#define try_to_optimize_kprobe(p) do {} while (0)
703#define __arm_kprobe(p) arch_arm_kprobe(p)
704#define __disarm_kprobe(p) arch_disarm_kprobe(p)
705
706static __kprobes void free_aggr_kprobe(struct kprobe *p)
707{
708 kfree(p);
709}
710
711static __kprobes struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
712{
713 return kzalloc(sizeof(struct kprobe), GFP_KERNEL);
714}
715#endif /* CONFIG_OPTPROBES */
716
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400717/* Arm a kprobe with text_mutex */
718static void __kprobes arm_kprobe(struct kprobe *kp)
719{
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500720 /*
721 * Here, since __arm_kprobe() doesn't use stop_machine(),
722 * this doesn't cause deadlock on text_mutex. So, we don't
723 * need get_online_cpus().
724 */
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400725 mutex_lock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500726 __arm_kprobe(kp);
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400727 mutex_unlock(&text_mutex);
728}
729
730/* Disarm a kprobe with text_mutex */
731static void __kprobes disarm_kprobe(struct kprobe *kp)
732{
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500733 get_online_cpus(); /* For avoiding text_mutex deadlock */
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400734 mutex_lock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500735 __disarm_kprobe(kp);
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400736 mutex_unlock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500737 put_online_cpus();
Masami Hiramatsu201517a2009-05-07 16:31:26 -0400738}
739
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700740/*
741 * Aggregate handlers for multiple kprobes support - these handlers
742 * take care of invoking the individual kprobe handlers on p->list
743 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700744static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700745{
746 struct kprobe *kp;
747
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800748 list_for_each_entry_rcu(kp, &p->list, list) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700749 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800750 set_kprobe_instance(kp);
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700751 if (kp->pre_handler(kp, regs))
752 return 1;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700753 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800754 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700755 }
756 return 0;
757}
758
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700759static void __kprobes aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
760 unsigned long flags)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700761{
762 struct kprobe *kp;
763
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800764 list_for_each_entry_rcu(kp, &p->list, list) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700765 if (kp->post_handler && likely(!kprobe_disabled(kp))) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800766 set_kprobe_instance(kp);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700767 kp->post_handler(kp, regs, flags);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800768 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700769 }
770 }
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700771}
772
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700773static int __kprobes aggr_fault_handler(struct kprobe *p, struct pt_regs *regs,
774 int trapnr)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700775{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800776 struct kprobe *cur = __get_cpu_var(kprobe_instance);
777
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700778 /*
779 * if we faulted "during" the execution of a user specified
780 * probe handler, invoke just that probe's fault handler
781 */
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800782 if (cur && cur->fault_handler) {
783 if (cur->fault_handler(cur, regs, trapnr))
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700784 return 1;
785 }
786 return 0;
787}
788
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700789static int __kprobes aggr_break_handler(struct kprobe *p, struct pt_regs *regs)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700790{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800791 struct kprobe *cur = __get_cpu_var(kprobe_instance);
792 int ret = 0;
793
794 if (cur && cur->break_handler) {
795 if (cur->break_handler(cur, regs))
796 ret = 1;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700797 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800798 reset_kprobe_instance();
799 return ret;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700800}
801
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800802/* Walks the list and increments nmissed count for multiprobe case */
803void __kprobes kprobes_inc_nmissed_count(struct kprobe *p)
804{
805 struct kprobe *kp;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500806 if (!kprobe_aggrprobe(p)) {
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800807 p->nmissed++;
808 } else {
809 list_for_each_entry_rcu(kp, &p->list, list)
810 kp->nmissed++;
811 }
812 return;
813}
814
bibo,mao99219a32006-10-02 02:17:35 -0700815void __kprobes recycle_rp_inst(struct kretprobe_instance *ri,
816 struct hlist_head *head)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700817{
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700818 struct kretprobe *rp = ri->rp;
819
Hien Nguyenb94cce92005-06-23 00:09:19 -0700820 /* remove rp inst off the rprobe_inst_table */
821 hlist_del(&ri->hlist);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700822 INIT_HLIST_NODE(&ri->hlist);
823 if (likely(rp)) {
824 spin_lock(&rp->lock);
825 hlist_add_head(&ri->hlist, &rp->free_instances);
826 spin_unlock(&rp->lock);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700827 } else
828 /* Unregistering */
bibo,mao99219a32006-10-02 02:17:35 -0700829 hlist_add_head(&ri->hlist, head);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700830}
831
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800832void __kprobes kretprobe_hash_lock(struct task_struct *tsk,
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700833 struct hlist_head **head, unsigned long *flags)
Namhyung Kim635c17c2010-09-15 10:04:30 +0900834__acquires(hlist_lock)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700835{
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700836 unsigned long hash = hash_ptr(tsk, KPROBE_HASH_BITS);
837 spinlock_t *hlist_lock;
838
839 *head = &kretprobe_inst_table[hash];
840 hlist_lock = kretprobe_table_lock_ptr(hash);
841 spin_lock_irqsave(hlist_lock, *flags);
842}
843
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800844static void __kprobes kretprobe_table_lock(unsigned long hash,
845 unsigned long *flags)
Namhyung Kim635c17c2010-09-15 10:04:30 +0900846__acquires(hlist_lock)
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700847{
848 spinlock_t *hlist_lock = kretprobe_table_lock_ptr(hash);
849 spin_lock_irqsave(hlist_lock, *flags);
850}
851
Masami Hiramatsu017c39b2009-01-06 14:41:51 -0800852void __kprobes kretprobe_hash_unlock(struct task_struct *tsk,
853 unsigned long *flags)
Namhyung Kim635c17c2010-09-15 10:04:30 +0900854__releases(hlist_lock)
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700855{
856 unsigned long hash = hash_ptr(tsk, KPROBE_HASH_BITS);
857 spinlock_t *hlist_lock;
858
859 hlist_lock = kretprobe_table_lock_ptr(hash);
860 spin_unlock_irqrestore(hlist_lock, *flags);
861}
862
Namhyung Kim6376b222010-09-15 10:04:28 +0900863static void __kprobes kretprobe_table_unlock(unsigned long hash,
864 unsigned long *flags)
Namhyung Kim635c17c2010-09-15 10:04:30 +0900865__releases(hlist_lock)
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700866{
867 spinlock_t *hlist_lock = kretprobe_table_lock_ptr(hash);
868 spin_unlock_irqrestore(hlist_lock, *flags);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700869}
870
Hien Nguyenb94cce92005-06-23 00:09:19 -0700871/*
bibo maoc6fd91f2006-03-26 01:38:20 -0800872 * This function is called from finish_task_switch when task tk becomes dead,
873 * so that we can recycle any function-return probe instances associated
874 * with this task. These left over instances represent probed functions
875 * that have been called but will never return.
Hien Nguyenb94cce92005-06-23 00:09:19 -0700876 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700877void __kprobes kprobe_flush_task(struct task_struct *tk)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700878{
bibo,mao62c27be2006-10-02 02:17:33 -0700879 struct kretprobe_instance *ri;
bibo,mao99219a32006-10-02 02:17:35 -0700880 struct hlist_head *head, empty_rp;
Rusty Lynch802eae72005-06-27 15:17:08 -0700881 struct hlist_node *node, *tmp;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700882 unsigned long hash, flags = 0;
Rusty Lynch802eae72005-06-27 15:17:08 -0700883
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700884 if (unlikely(!kprobes_initialized))
885 /* Early boot. kretprobe_table_locks not yet initialized. */
886 return;
887
888 hash = hash_ptr(tk, KPROBE_HASH_BITS);
889 head = &kretprobe_inst_table[hash];
890 kretprobe_table_lock(hash, &flags);
bibo,mao62c27be2006-10-02 02:17:33 -0700891 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
892 if (ri->task == tk)
bibo,mao99219a32006-10-02 02:17:35 -0700893 recycle_rp_inst(ri, &empty_rp);
bibo,mao62c27be2006-10-02 02:17:33 -0700894 }
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700895 kretprobe_table_unlock(hash, &flags);
896 INIT_HLIST_HEAD(&empty_rp);
bibo,mao99219a32006-10-02 02:17:35 -0700897 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
898 hlist_del(&ri->hlist);
899 kfree(ri);
900 }
Hien Nguyenb94cce92005-06-23 00:09:19 -0700901}
902
Hien Nguyenb94cce92005-06-23 00:09:19 -0700903static inline void free_rp_inst(struct kretprobe *rp)
904{
905 struct kretprobe_instance *ri;
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700906 struct hlist_node *pos, *next;
907
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700908 hlist_for_each_entry_safe(ri, pos, next, &rp->free_instances, hlist) {
909 hlist_del(&ri->hlist);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700910 kfree(ri);
911 }
912}
913
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700914static void __kprobes cleanup_rp_inst(struct kretprobe *rp)
915{
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700916 unsigned long flags, hash;
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700917 struct kretprobe_instance *ri;
918 struct hlist_node *pos, *next;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700919 struct hlist_head *head;
920
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700921 /* No race here */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700922 for (hash = 0; hash < KPROBE_TABLE_SIZE; hash++) {
923 kretprobe_table_lock(hash, &flags);
924 head = &kretprobe_inst_table[hash];
925 hlist_for_each_entry_safe(ri, pos, next, head, hlist) {
926 if (ri->rp == rp)
927 ri->rp = NULL;
928 }
929 kretprobe_table_unlock(hash, &flags);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700930 }
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700931 free_rp_inst(rp);
932}
933
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700934/*
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700935* Add the new probe to ap->list. Fail if this is the
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700936* second jprobe at the address - two jprobes can't coexist
937*/
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700938static int __kprobes add_new_kprobe(struct kprobe *ap, struct kprobe *p)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700939{
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700940 BUG_ON(kprobe_gone(ap) || kprobe_gone(p));
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500941
942 if (p->break_handler || p->post_handler)
943 unoptimize_kprobe(ap); /* Fall back to normal kprobe */
944
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700945 if (p->break_handler) {
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700946 if (ap->break_handler)
mao, bibo36721652006-06-26 00:25:22 -0700947 return -EEXIST;
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700948 list_add_tail_rcu(&p->list, &ap->list);
949 ap->break_handler = aggr_break_handler;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700950 } else
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700951 list_add_rcu(&p->list, &ap->list);
952 if (p->post_handler && !ap->post_handler)
953 ap->post_handler = aggr_post_handler;
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700954
955 if (kprobe_disabled(ap) && !kprobe_disabled(p)) {
956 ap->flags &= ~KPROBE_FLAG_DISABLED;
957 if (!kprobes_all_disarmed)
958 /* Arm the breakpoint again. */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500959 __arm_kprobe(ap);
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700960 }
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700961 return 0;
962}
963
964/*
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700965 * Fill in the required fields of the "manager kprobe". Replace the
966 * earlier kprobe in the hlist with the manager kprobe
967 */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500968static void __kprobes init_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700969{
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500970 /* Copy p's insn slot to ap */
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700971 copy_kprobe(p, ap);
bibo, maoa9ad9652006-07-30 03:03:26 -0700972 flush_insn_slot(ap);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700973 ap->addr = p->addr;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500974 ap->flags = p->flags & ~KPROBE_FLAG_OPTIMIZED;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700975 ap->pre_handler = aggr_pre_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700976 ap->fault_handler = aggr_fault_handler;
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800977 /* We don't care the kprobe which has gone. */
978 if (p->post_handler && !kprobe_gone(p))
mao, bibo36721652006-06-26 00:25:22 -0700979 ap->post_handler = aggr_post_handler;
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800980 if (p->break_handler && !kprobe_gone(p))
mao, bibo36721652006-06-26 00:25:22 -0700981 ap->break_handler = aggr_break_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700982
983 INIT_LIST_HEAD(&ap->list);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500984 INIT_HLIST_NODE(&ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700985
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500986 list_add_rcu(&p->list, &ap->list);
Keshavamurthy Anil Sadad0f32005-12-12 00:37:12 -0800987 hlist_replace_rcu(&p->hlist, &ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700988}
989
990/*
991 * This is the second or subsequent kprobe at the address - handle
992 * the intricacies
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700993 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700994static int __kprobes register_aggr_kprobe(struct kprobe *old_p,
995 struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700996{
997 int ret = 0;
Masami Hiramatsub918e5e2009-04-06 19:00:58 -0700998 struct kprobe *ap = old_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700999
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001000 if (!kprobe_aggrprobe(old_p)) {
1001 /* If old_p is not an aggr_kprobe, create new aggr_kprobe. */
1002 ap = alloc_aggr_kprobe(old_p);
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001003 if (!ap)
1004 return -ENOMEM;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001005 init_aggr_kprobe(ap, old_p);
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001006 }
1007
1008 if (kprobe_gone(ap)) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001009 /*
1010 * Attempting to insert new probe at the same location that
1011 * had a probe in the module vaddr area which already
1012 * freed. So, the instruction slot has already been
1013 * released. We need a new slot for the new probe.
1014 */
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001015 ret = arch_prepare_kprobe(ap);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001016 if (ret)
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001017 /*
1018 * Even if fail to allocate new slot, don't need to
1019 * free aggr_probe. It will be used next time, or
1020 * freed by unregister_kprobe.
1021 */
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001022 return ret;
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001023
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001024 /* Prepare optimized instructions if possible. */
1025 prepare_optimized_kprobe(ap);
1026
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001027 /*
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001028 * Clear gone flag to prevent allocating new slot again, and
1029 * set disabled flag because it is not armed yet.
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001030 */
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001031 ap->flags = (ap->flags & ~KPROBE_FLAG_GONE)
1032 | KPROBE_FLAG_DISABLED;
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001033 }
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001034
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001035 /* Copy ap's insn slot to p */
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001036 copy_kprobe(ap, p);
1037 return add_new_kprobe(ap, p);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001038}
1039
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001040/* Try to disable aggr_kprobe, and return 1 if succeeded.*/
1041static int __kprobes try_to_disable_aggr_kprobe(struct kprobe *p)
1042{
1043 struct kprobe *kp;
1044
1045 list_for_each_entry_rcu(kp, &p->list, list) {
1046 if (!kprobe_disabled(kp))
1047 /*
1048 * There is an active probe on the list.
1049 * We can't disable aggr_kprobe.
1050 */
1051 return 0;
1052 }
1053 p->flags |= KPROBE_FLAG_DISABLED;
1054 return 1;
1055}
1056
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001057static int __kprobes in_kprobes_functions(unsigned long addr)
1058{
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001059 struct kprobe_blackpoint *kb;
1060
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001061 if (addr >= (unsigned long)__kprobes_text_start &&
1062 addr < (unsigned long)__kprobes_text_end)
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001063 return -EINVAL;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001064 /*
1065 * If there exists a kprobe_blacklist, verify and
1066 * fail any probe registration in the prohibited area
1067 */
1068 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
1069 if (kb->start_addr) {
1070 if (addr >= kb->start_addr &&
1071 addr < (kb->start_addr + kb->range))
1072 return -EINVAL;
1073 }
1074 }
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001075 return 0;
1076}
1077
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001078/*
1079 * If we have a symbol_name argument, look it up and add the offset field
1080 * to it. This way, we can specify a relative address to a symbol.
1081 */
1082static kprobe_opcode_t __kprobes *kprobe_addr(struct kprobe *p)
1083{
1084 kprobe_opcode_t *addr = p->addr;
1085 if (p->symbol_name) {
1086 if (addr)
1087 return NULL;
1088 kprobe_lookup_name(p->symbol_name, addr);
1089 }
1090
1091 if (!addr)
1092 return NULL;
1093 return (kprobe_opcode_t *)(((char *)addr) + p->offset);
1094}
1095
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301096/* Check passed kprobe is valid and return kprobe in kprobe_table. */
1097static struct kprobe * __kprobes __get_valid_kprobe(struct kprobe *p)
1098{
1099 struct kprobe *old_p, *list_p;
1100
1101 old_p = get_kprobe(p->addr);
1102 if (unlikely(!old_p))
1103 return NULL;
1104
1105 if (p != old_p) {
1106 list_for_each_entry_rcu(list_p, &old_p->list, list)
1107 if (list_p == p)
1108 /* kprobe p is a valid probe */
1109 goto valid;
1110 return NULL;
1111 }
1112valid:
1113 return old_p;
1114}
1115
1116/* Return error if the kprobe is being re-registered */
1117static inline int check_kprobe_rereg(struct kprobe *p)
1118{
1119 int ret = 0;
1120 struct kprobe *old_p;
1121
1122 mutex_lock(&kprobe_mutex);
1123 old_p = __get_valid_kprobe(p);
1124 if (old_p)
1125 ret = -EINVAL;
1126 mutex_unlock(&kprobe_mutex);
1127 return ret;
1128}
1129
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001130int __kprobes register_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
1132 int ret = 0;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001133 struct kprobe *old_p;
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001134 struct module *probed_mod;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001135 kprobe_opcode_t *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001137 addr = kprobe_addr(p);
1138 if (!addr)
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -07001139 return -EINVAL;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001140 p->addr = addr;
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -07001141
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301142 ret = check_kprobe_rereg(p);
1143 if (ret)
1144 return ret;
1145
Masami Hiramatsua189d032008-11-12 13:26:51 -08001146 preempt_disable();
Masami Hiramatsuec30c5f2009-07-28 19:47:23 -04001147 if (!kernel_text_address((unsigned long) p->addr) ||
Masami Hiramatsu4554dbc2010-02-02 16:49:18 -05001148 in_kprobes_functions((unsigned long) p->addr) ||
1149 ftrace_text_reserved(p->addr, p->addr)) {
Masami Hiramatsua189d032008-11-12 13:26:51 -08001150 preempt_enable();
Mao, Bibob3e55c72005-12-12 00:37:00 -08001151 return -EINVAL;
Masami Hiramatsua189d032008-11-12 13:26:51 -08001152 }
Mao, Bibob3e55c72005-12-12 00:37:00 -08001153
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001154 /* User can pass only KPROBE_FLAG_DISABLED to register_kprobe */
1155 p->flags &= KPROBE_FLAG_DISABLED;
1156
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001157 /*
1158 * Check if are we probing a module.
1159 */
Masami Hiramatsua189d032008-11-12 13:26:51 -08001160 probed_mod = __module_text_address((unsigned long) p->addr);
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001161 if (probed_mod) {
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001162 /*
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001163 * We must hold a refcount of the probed module while updating
1164 * its code to prohibit unexpected unloading.
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001165 */
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001166 if (unlikely(!try_module_get(probed_mod))) {
1167 preempt_enable();
1168 return -EINVAL;
1169 }
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001170 /*
1171 * If the module freed .init.text, we couldn't insert
1172 * kprobes in there.
1173 */
1174 if (within_module_init((unsigned long)p->addr, probed_mod) &&
1175 probed_mod->state != MODULE_STATE_COMING) {
1176 module_put(probed_mod);
1177 preempt_enable();
1178 return -EINVAL;
1179 }
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001180 }
Masami Hiramatsua189d032008-11-12 13:26:51 -08001181 preempt_enable();
Mao, Bibob3e55c72005-12-12 00:37:00 -08001182
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001183 p->nmissed = 0;
Masami Hiramatsu98616682008-04-28 02:14:28 -07001184 INIT_LIST_HEAD(&p->list);
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -08001185 mutex_lock(&kprobe_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001186
1187 get_online_cpus(); /* For avoiding text_mutex deadlock. */
1188 mutex_lock(&text_mutex);
1189
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001190 old_p = get_kprobe(p->addr);
1191 if (old_p) {
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001192 /* Since this may unoptimize old_p, locking text_mutex. */
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001193 ret = register_aggr_kprobe(old_p, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 goto out;
1195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001197 ret = arch_prepare_kprobe(p);
1198 if (ret)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001199 goto out;
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001200
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001201 INIT_HLIST_NODE(&p->hlist);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001202 hlist_add_head_rcu(&p->hlist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
1204
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001205 if (!kprobes_all_disarmed && !kprobe_disabled(p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001206 __arm_kprobe(p);
Christoph Hellwig74a0b572007-10-16 01:24:07 -07001207
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001208 /* Try to optimize kprobe */
1209 try_to_optimize_kprobe(p);
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211out:
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001212 mutex_unlock(&text_mutex);
1213 put_online_cpus();
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -08001214 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001215
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001216 if (probed_mod)
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001217 module_put(probed_mod);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return ret;
1220}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001221EXPORT_SYMBOL_GPL(register_kprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Masami Hiramatsu98616682008-04-28 02:14:28 -07001223/*
1224 * Unregister a kprobe without a scheduler synchronization.
1225 */
1226static int __kprobes __unregister_kprobe_top(struct kprobe *p)
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001227{
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -08001228 struct kprobe *old_p, *list_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001229
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001230 old_p = __get_valid_kprobe(p);
1231 if (old_p == NULL)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001232 return -EINVAL;
1233
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001234 if (old_p == p ||
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001235 (kprobe_aggrprobe(old_p) &&
Masami Hiramatsu98616682008-04-28 02:14:28 -07001236 list_is_singular(&old_p->list))) {
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001237 /*
1238 * Only probe on the hash list. Disarm only if kprobes are
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001239 * enabled and not gone - otherwise, the breakpoint would
1240 * already have been removed. We save on flushing icache.
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001241 */
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001242 if (!kprobes_all_disarmed && !kprobe_disabled(old_p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001243 disarm_kprobe(old_p);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001244 hlist_del_rcu(&old_p->hlist);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001245 } else {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001246 if (p->break_handler && !kprobe_gone(p))
Masami Hiramatsu98616682008-04-28 02:14:28 -07001247 old_p->break_handler = NULL;
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001248 if (p->post_handler && !kprobe_gone(p)) {
Masami Hiramatsu98616682008-04-28 02:14:28 -07001249 list_for_each_entry_rcu(list_p, &old_p->list, list) {
1250 if ((list_p != p) && (list_p->post_handler))
1251 goto noclean;
1252 }
1253 old_p->post_handler = NULL;
1254 }
1255noclean:
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001256 list_del_rcu(&p->list);
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001257 if (!kprobe_disabled(old_p)) {
1258 try_to_disable_aggr_kprobe(old_p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001259 if (!kprobes_all_disarmed) {
1260 if (kprobe_disabled(old_p))
1261 disarm_kprobe(old_p);
1262 else
1263 /* Try to optimize this probe again */
1264 optimize_kprobe(old_p);
1265 }
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001266 }
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001267 }
Masami Hiramatsu98616682008-04-28 02:14:28 -07001268 return 0;
1269}
Mao, Bibob3e55c72005-12-12 00:37:00 -08001270
Masami Hiramatsu98616682008-04-28 02:14:28 -07001271static void __kprobes __unregister_kprobe_bottom(struct kprobe *p)
1272{
Masami Hiramatsu98616682008-04-28 02:14:28 -07001273 struct kprobe *old_p;
Mao, Bibob3e55c72005-12-12 00:37:00 -08001274
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001275 if (list_empty(&p->list))
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -08001276 arch_remove_kprobe(p);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001277 else if (list_is_singular(&p->list)) {
1278 /* "p" is the last child of an aggr_kprobe */
1279 old_p = list_entry(p->list.next, struct kprobe, list);
1280 list_del(&p->list);
1281 arch_remove_kprobe(old_p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001282 free_aggr_kprobe(old_p);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001286int __kprobes register_kprobes(struct kprobe **kps, int num)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001287{
1288 int i, ret = 0;
1289
1290 if (num <= 0)
1291 return -EINVAL;
1292 for (i = 0; i < num; i++) {
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001293 ret = register_kprobe(kps[i]);
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001294 if (ret < 0) {
1295 if (i > 0)
1296 unregister_kprobes(kps, i);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001297 break;
1298 }
1299 }
1300 return ret;
1301}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001302EXPORT_SYMBOL_GPL(register_kprobes);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001303
Masami Hiramatsu98616682008-04-28 02:14:28 -07001304void __kprobes unregister_kprobe(struct kprobe *p)
1305{
1306 unregister_kprobes(&p, 1);
1307}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001308EXPORT_SYMBOL_GPL(unregister_kprobe);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001309
Masami Hiramatsu98616682008-04-28 02:14:28 -07001310void __kprobes unregister_kprobes(struct kprobe **kps, int num)
1311{
1312 int i;
1313
1314 if (num <= 0)
1315 return;
1316 mutex_lock(&kprobe_mutex);
1317 for (i = 0; i < num; i++)
1318 if (__unregister_kprobe_top(kps[i]) < 0)
1319 kps[i]->addr = NULL;
1320 mutex_unlock(&kprobe_mutex);
1321
1322 synchronize_sched();
1323 for (i = 0; i < num; i++)
1324 if (kps[i]->addr)
1325 __unregister_kprobe_bottom(kps[i]);
1326}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001327EXPORT_SYMBOL_GPL(unregister_kprobes);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329static struct notifier_block kprobe_exceptions_nb = {
1330 .notifier_call = kprobe_exceptions_notify,
Anil S Keshavamurthy3d5631e2006-06-26 00:25:28 -07001331 .priority = 0x7fffffff /* we need to be notified first */
1332};
1333
Michael Ellerman3d7e3382007-07-19 01:48:11 -07001334unsigned long __weak arch_deref_entry_point(void *entry)
1335{
1336 return (unsigned long)entry;
1337}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001339int __kprobes register_jprobes(struct jprobe **jps, int num)
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001340{
1341 struct jprobe *jp;
1342 int ret = 0, i;
1343
1344 if (num <= 0)
1345 return -EINVAL;
1346 for (i = 0; i < num; i++) {
Namhyung Kim05662bd2010-09-15 10:04:27 +09001347 unsigned long addr, offset;
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001348 jp = jps[i];
1349 addr = arch_deref_entry_point(jp->entry);
1350
Namhyung Kim05662bd2010-09-15 10:04:27 +09001351 /* Verify probepoint is a function entry point */
1352 if (kallsyms_lookup_size_offset(addr, NULL, &offset) &&
1353 offset == 0) {
1354 jp->kp.pre_handler = setjmp_pre_handler;
1355 jp->kp.break_handler = longjmp_break_handler;
1356 ret = register_kprobe(&jp->kp);
1357 } else
1358 ret = -EINVAL;
Namhyung Kimedbaadb2010-09-15 10:04:26 +09001359
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001360 if (ret < 0) {
1361 if (i > 0)
1362 unregister_jprobes(jps, i);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001363 break;
1364 }
1365 }
1366 return ret;
1367}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001368EXPORT_SYMBOL_GPL(register_jprobes);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001369
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001370int __kprobes register_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001372 return register_jprobes(&jp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001374EXPORT_SYMBOL_GPL(register_jprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001376void __kprobes unregister_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001378 unregister_jprobes(&jp, 1);
1379}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001380EXPORT_SYMBOL_GPL(unregister_jprobe);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001381
Masami Hiramatsu26b31c12008-04-28 02:14:29 -07001382void __kprobes unregister_jprobes(struct jprobe **jps, int num)
1383{
1384 int i;
1385
1386 if (num <= 0)
1387 return;
1388 mutex_lock(&kprobe_mutex);
1389 for (i = 0; i < num; i++)
1390 if (__unregister_kprobe_top(&jps[i]->kp) < 0)
1391 jps[i]->kp.addr = NULL;
1392 mutex_unlock(&kprobe_mutex);
1393
1394 synchronize_sched();
1395 for (i = 0; i < num; i++) {
1396 if (jps[i]->kp.addr)
1397 __unregister_kprobe_bottom(&jps[i]->kp);
1398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001400EXPORT_SYMBOL_GPL(unregister_jprobes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001402#ifdef CONFIG_KRETPROBES
Adrian Bunke65cefe2006-02-03 03:03:42 -08001403/*
1404 * This kprobe pre_handler is registered with every kretprobe. When probe
1405 * hits it will set up the return probe.
1406 */
1407static int __kprobes pre_handler_kretprobe(struct kprobe *p,
1408 struct pt_regs *regs)
1409{
1410 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001411 unsigned long hash, flags = 0;
1412 struct kretprobe_instance *ri;
Adrian Bunke65cefe2006-02-03 03:03:42 -08001413
1414 /*TODO: consider to only swap the RA after the last pre_handler fired */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001415 hash = hash_ptr(current, KPROBE_HASH_BITS);
1416 spin_lock_irqsave(&rp->lock, flags);
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001417 if (!hlist_empty(&rp->free_instances)) {
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001418 ri = hlist_entry(rp->free_instances.first,
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001419 struct kretprobe_instance, hlist);
1420 hlist_del(&ri->hlist);
1421 spin_unlock_irqrestore(&rp->lock, flags);
1422
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001423 ri->rp = rp;
1424 ri->task = current;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001425
Ananth N Mavinakayanahallif02b8622009-03-18 17:06:21 +05301426 if (rp->entry_handler && rp->entry_handler(ri, regs))
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001427 return 0;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001428
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001429 arch_prepare_kretprobe(ri, regs);
1430
1431 /* XXX(hch): why is there no hlist_move_head? */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001432 INIT_HLIST_NODE(&ri->hlist);
1433 kretprobe_table_lock(hash, &flags);
1434 hlist_add_head(&ri->hlist, &kretprobe_inst_table[hash]);
1435 kretprobe_table_unlock(hash, &flags);
1436 } else {
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001437 rp->nmissed++;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001438 spin_unlock_irqrestore(&rp->lock, flags);
1439 }
Adrian Bunke65cefe2006-02-03 03:03:42 -08001440 return 0;
1441}
1442
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001443int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001444{
1445 int ret = 0;
1446 struct kretprobe_instance *inst;
1447 int i;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001448 void *addr;
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001449
1450 if (kretprobe_blacklist_size) {
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001451 addr = kprobe_addr(&rp->kp);
1452 if (!addr)
1453 return -EINVAL;
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001454
1455 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
1456 if (kretprobe_blacklist[i].addr == addr)
1457 return -EINVAL;
1458 }
1459 }
Hien Nguyenb94cce92005-06-23 00:09:19 -07001460
1461 rp->kp.pre_handler = pre_handler_kretprobe;
Ananth N Mavinakayanahalli7522a842006-04-20 02:43:11 -07001462 rp->kp.post_handler = NULL;
1463 rp->kp.fault_handler = NULL;
1464 rp->kp.break_handler = NULL;
Hien Nguyenb94cce92005-06-23 00:09:19 -07001465
1466 /* Pre-allocate memory for max kretprobe instances */
1467 if (rp->maxactive <= 0) {
1468#ifdef CONFIG_PREEMPT
Heiko Carstensc2ef6662009-12-21 13:02:24 +01001469 rp->maxactive = max_t(unsigned int, 10, 2*num_possible_cpus());
Hien Nguyenb94cce92005-06-23 00:09:19 -07001470#else
Ananth N Mavinakayanahalli4dae5602009-10-30 19:23:10 +05301471 rp->maxactive = num_possible_cpus();
Hien Nguyenb94cce92005-06-23 00:09:19 -07001472#endif
1473 }
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001474 spin_lock_init(&rp->lock);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001475 INIT_HLIST_HEAD(&rp->free_instances);
1476 for (i = 0; i < rp->maxactive; i++) {
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08001477 inst = kmalloc(sizeof(struct kretprobe_instance) +
1478 rp->data_size, GFP_KERNEL);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001479 if (inst == NULL) {
1480 free_rp_inst(rp);
1481 return -ENOMEM;
1482 }
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001483 INIT_HLIST_NODE(&inst->hlist);
1484 hlist_add_head(&inst->hlist, &rp->free_instances);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001485 }
1486
1487 rp->nmissed = 0;
1488 /* Establish function entry probe point */
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001489 ret = register_kprobe(&rp->kp);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001490 if (ret != 0)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001491 free_rp_inst(rp);
1492 return ret;
1493}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001494EXPORT_SYMBOL_GPL(register_kretprobe);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001495
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001496int __kprobes register_kretprobes(struct kretprobe **rps, int num)
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001497{
1498 int ret = 0, i;
1499
1500 if (num <= 0)
1501 return -EINVAL;
1502 for (i = 0; i < num; i++) {
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001503 ret = register_kretprobe(rps[i]);
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001504 if (ret < 0) {
1505 if (i > 0)
1506 unregister_kretprobes(rps, i);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001507 break;
1508 }
1509 }
1510 return ret;
1511}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001512EXPORT_SYMBOL_GPL(register_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001513
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001514void __kprobes unregister_kretprobe(struct kretprobe *rp)
1515{
1516 unregister_kretprobes(&rp, 1);
1517}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001518EXPORT_SYMBOL_GPL(unregister_kretprobe);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001519
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001520void __kprobes unregister_kretprobes(struct kretprobe **rps, int num)
1521{
1522 int i;
1523
1524 if (num <= 0)
1525 return;
1526 mutex_lock(&kprobe_mutex);
1527 for (i = 0; i < num; i++)
1528 if (__unregister_kprobe_top(&rps[i]->kp) < 0)
1529 rps[i]->kp.addr = NULL;
1530 mutex_unlock(&kprobe_mutex);
1531
1532 synchronize_sched();
1533 for (i = 0; i < num; i++) {
1534 if (rps[i]->kp.addr) {
1535 __unregister_kprobe_bottom(&rps[i]->kp);
1536 cleanup_rp_inst(rps[i]);
1537 }
1538 }
1539}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001540EXPORT_SYMBOL_GPL(unregister_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001541
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001542#else /* CONFIG_KRETPROBES */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001543int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001544{
1545 return -ENOSYS;
1546}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001547EXPORT_SYMBOL_GPL(register_kretprobe);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001548
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001549int __kprobes register_kretprobes(struct kretprobe **rps, int num)
1550{
1551 return -ENOSYS;
1552}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001553EXPORT_SYMBOL_GPL(register_kretprobes);
1554
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001555void __kprobes unregister_kretprobe(struct kretprobe *rp)
1556{
1557}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001558EXPORT_SYMBOL_GPL(unregister_kretprobe);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001559
1560void __kprobes unregister_kretprobes(struct kretprobe **rps, int num)
1561{
1562}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001563EXPORT_SYMBOL_GPL(unregister_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001564
Srinivasa Ds346fd592007-02-20 13:57:54 -08001565static int __kprobes pre_handler_kretprobe(struct kprobe *p,
1566 struct pt_regs *regs)
1567{
1568 return 0;
1569}
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07001570
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001571#endif /* CONFIG_KRETPROBES */
Hien Nguyenb94cce92005-06-23 00:09:19 -07001572
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001573/* Set the kprobe gone and remove its instruction buffer. */
1574static void __kprobes kill_kprobe(struct kprobe *p)
1575{
1576 struct kprobe *kp;
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001577
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001578 p->flags |= KPROBE_FLAG_GONE;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001579 if (kprobe_aggrprobe(p)) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001580 /*
1581 * If this is an aggr_kprobe, we have to list all the
1582 * chained probes and mark them GONE.
1583 */
1584 list_for_each_entry_rcu(kp, &p->list, list)
1585 kp->flags |= KPROBE_FLAG_GONE;
1586 p->post_handler = NULL;
1587 p->break_handler = NULL;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001588 kill_optimized_kprobe(p);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001589 }
1590 /*
1591 * Here, we can remove insn_slot safely, because no thread calls
1592 * the original probed function (which will be freed soon) any more.
1593 */
1594 arch_remove_kprobe(p);
1595}
1596
Masami Hiramatsuc0614822010-04-27 18:33:12 -04001597/* Disable one kprobe */
1598int __kprobes disable_kprobe(struct kprobe *kp)
1599{
1600 int ret = 0;
1601 struct kprobe *p;
1602
1603 mutex_lock(&kprobe_mutex);
1604
1605 /* Check whether specified probe is valid. */
1606 p = __get_valid_kprobe(kp);
1607 if (unlikely(p == NULL)) {
1608 ret = -EINVAL;
1609 goto out;
1610 }
1611
1612 /* If the probe is already disabled (or gone), just return */
1613 if (kprobe_disabled(kp))
1614 goto out;
1615
1616 kp->flags |= KPROBE_FLAG_DISABLED;
1617 if (p != kp)
1618 /* When kp != p, p is always enabled. */
1619 try_to_disable_aggr_kprobe(p);
1620
1621 if (!kprobes_all_disarmed && kprobe_disabled(p))
1622 disarm_kprobe(p);
1623out:
1624 mutex_unlock(&kprobe_mutex);
1625 return ret;
1626}
1627EXPORT_SYMBOL_GPL(disable_kprobe);
1628
1629/* Enable one kprobe */
1630int __kprobes enable_kprobe(struct kprobe *kp)
1631{
1632 int ret = 0;
1633 struct kprobe *p;
1634
1635 mutex_lock(&kprobe_mutex);
1636
1637 /* Check whether specified probe is valid. */
1638 p = __get_valid_kprobe(kp);
1639 if (unlikely(p == NULL)) {
1640 ret = -EINVAL;
1641 goto out;
1642 }
1643
1644 if (kprobe_gone(kp)) {
1645 /* This kprobe has gone, we couldn't enable it. */
1646 ret = -EINVAL;
1647 goto out;
1648 }
1649
1650 if (p != kp)
1651 kp->flags &= ~KPROBE_FLAG_DISABLED;
1652
1653 if (!kprobes_all_disarmed && kprobe_disabled(p)) {
1654 p->flags &= ~KPROBE_FLAG_DISABLED;
1655 arm_kprobe(p);
1656 }
1657out:
1658 mutex_unlock(&kprobe_mutex);
1659 return ret;
1660}
1661EXPORT_SYMBOL_GPL(enable_kprobe);
1662
Frederic Weisbecker24851d22009-08-26 23:38:30 +02001663void __kprobes dump_kprobe(struct kprobe *kp)
1664{
1665 printk(KERN_WARNING "Dumping kprobe:\n");
1666 printk(KERN_WARNING "Name: %s\nAddress: %p\nOffset: %x\n",
1667 kp->symbol_name, kp->addr, kp->offset);
1668}
1669
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001670/* Module notifier call back, checking kprobes on the module */
1671static int __kprobes kprobes_module_callback(struct notifier_block *nb,
1672 unsigned long val, void *data)
1673{
1674 struct module *mod = data;
1675 struct hlist_head *head;
1676 struct hlist_node *node;
1677 struct kprobe *p;
1678 unsigned int i;
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001679 int checkcore = (val == MODULE_STATE_GOING);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001680
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001681 if (val != MODULE_STATE_GOING && val != MODULE_STATE_LIVE)
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001682 return NOTIFY_DONE;
1683
1684 /*
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001685 * When MODULE_STATE_GOING was notified, both of module .text and
1686 * .init.text sections would be freed. When MODULE_STATE_LIVE was
1687 * notified, only .init.text section would be freed. We need to
1688 * disable kprobes which have been inserted in the sections.
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001689 */
1690 mutex_lock(&kprobe_mutex);
1691 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1692 head = &kprobe_table[i];
1693 hlist_for_each_entry_rcu(p, node, head, hlist)
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08001694 if (within_module_init((unsigned long)p->addr, mod) ||
1695 (checkcore &&
1696 within_module_core((unsigned long)p->addr, mod))) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001697 /*
1698 * The vaddr this probe is installed will soon
1699 * be vfreed buy not synced to disk. Hence,
1700 * disarming the breakpoint isn't needed.
1701 */
1702 kill_kprobe(p);
1703 }
1704 }
1705 mutex_unlock(&kprobe_mutex);
1706 return NOTIFY_DONE;
1707}
1708
1709static struct notifier_block kprobe_module_nb = {
1710 .notifier_call = kprobes_module_callback,
1711 .priority = 0
1712};
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714static int __init init_kprobes(void)
1715{
1716 int i, err = 0;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001717 unsigned long offset = 0, size = 0;
1718 char *modname, namebuf[128];
1719 const char *symbol_name;
1720 void *addr;
1721 struct kprobe_blackpoint *kb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 /* FIXME allocate the probe table, currently defined statically */
1724 /* initialize all list heads */
Hien Nguyenb94cce92005-06-23 00:09:19 -07001725 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 INIT_HLIST_HEAD(&kprobe_table[i]);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001727 INIT_HLIST_HEAD(&kretprobe_inst_table[i]);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001728 spin_lock_init(&(kretprobe_table_locks[i].lock));
Hien Nguyenb94cce92005-06-23 00:09:19 -07001729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001731 /*
1732 * Lookup and populate the kprobe_blacklist.
1733 *
1734 * Unlike the kretprobe blacklist, we'll need to determine
1735 * the range of addresses that belong to the said functions,
1736 * since a kprobe need not necessarily be at the beginning
1737 * of a function.
1738 */
1739 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
1740 kprobe_lookup_name(kb->name, addr);
1741 if (!addr)
1742 continue;
1743
1744 kb->start_addr = (unsigned long)addr;
1745 symbol_name = kallsyms_lookup(kb->start_addr,
1746 &size, &offset, &modname, namebuf);
1747 if (!symbol_name)
1748 kb->range = 0;
1749 else
1750 kb->range = size;
1751 }
1752
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001753 if (kretprobe_blacklist_size) {
1754 /* lookup the function address from its name */
1755 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
1756 kprobe_lookup_name(kretprobe_blacklist[i].name,
1757 kretprobe_blacklist[i].addr);
1758 if (!kretprobe_blacklist[i].addr)
1759 printk("kretprobe: lookup failed: %s\n",
1760 kretprobe_blacklist[i].name);
1761 }
1762 }
1763
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001764#if defined(CONFIG_OPTPROBES)
1765#if defined(__ARCH_WANT_KPROBES_INSN_SLOT)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001766 /* Init kprobe_optinsn_slots */
1767 kprobe_optinsn_slots.insn_size = MAX_OPTINSN_SIZE;
1768#endif
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001769 /* By default, kprobes can be optimized */
1770 kprobes_allow_optimization = true;
1771#endif
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001772
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001773 /* By default, kprobes are armed */
1774 kprobes_all_disarmed = false;
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001775
Rusty Lynch67729262005-07-05 18:54:50 -07001776 err = arch_init_kprobes();
Rusty Lynch802eae72005-06-27 15:17:08 -07001777 if (!err)
1778 err = register_die_notifier(&kprobe_exceptions_nb);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001779 if (!err)
1780 err = register_module_notifier(&kprobe_module_nb);
1781
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001782 kprobes_initialized = (err == 0);
Rusty Lynch802eae72005-06-27 15:17:08 -07001783
Ananth N Mavinakayanahalli8c1c9352008-01-30 13:32:53 +01001784 if (!err)
1785 init_test_probes();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 return err;
1787}
1788
Srinivasa Ds346fd592007-02-20 13:57:54 -08001789#ifdef CONFIG_DEBUG_FS
1790static void __kprobes report_probe(struct seq_file *pi, struct kprobe *p,
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001791 const char *sym, int offset, char *modname, struct kprobe *pp)
Srinivasa Ds346fd592007-02-20 13:57:54 -08001792{
1793 char *kprobe_type;
1794
1795 if (p->pre_handler == pre_handler_kretprobe)
1796 kprobe_type = "r";
1797 else if (p->pre_handler == setjmp_pre_handler)
1798 kprobe_type = "j";
1799 else
1800 kprobe_type = "k";
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001801
Srinivasa Ds346fd592007-02-20 13:57:54 -08001802 if (sym)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001803 seq_printf(pi, "%p %s %s+0x%x %s ",
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001804 p->addr, kprobe_type, sym, offset,
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001805 (modname ? modname : " "));
Srinivasa Ds346fd592007-02-20 13:57:54 -08001806 else
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001807 seq_printf(pi, "%p %s %p ",
1808 p->addr, kprobe_type, p->addr);
1809
1810 if (!pp)
1811 pp = p;
1812 seq_printf(pi, "%s%s%s\n",
1813 (kprobe_gone(p) ? "[GONE]" : ""),
1814 ((kprobe_disabled(p) && !kprobe_gone(p)) ? "[DISABLED]" : ""),
1815 (kprobe_optimized(pp) ? "[OPTIMIZED]" : ""));
Srinivasa Ds346fd592007-02-20 13:57:54 -08001816}
1817
1818static void __kprobes *kprobe_seq_start(struct seq_file *f, loff_t *pos)
1819{
1820 return (*pos < KPROBE_TABLE_SIZE) ? pos : NULL;
1821}
1822
1823static void __kprobes *kprobe_seq_next(struct seq_file *f, void *v, loff_t *pos)
1824{
1825 (*pos)++;
1826 if (*pos >= KPROBE_TABLE_SIZE)
1827 return NULL;
1828 return pos;
1829}
1830
1831static void __kprobes kprobe_seq_stop(struct seq_file *f, void *v)
1832{
1833 /* Nothing to do */
1834}
1835
1836static int __kprobes show_kprobe_addr(struct seq_file *pi, void *v)
1837{
1838 struct hlist_head *head;
1839 struct hlist_node *node;
1840 struct kprobe *p, *kp;
1841 const char *sym = NULL;
1842 unsigned int i = *(loff_t *) v;
Alexey Dobriyanffb45122007-05-08 00:28:41 -07001843 unsigned long offset = 0;
Srinivasa Ds346fd592007-02-20 13:57:54 -08001844 char *modname, namebuf[128];
1845
1846 head = &kprobe_table[i];
1847 preempt_disable();
1848 hlist_for_each_entry_rcu(p, node, head, hlist) {
Alexey Dobriyanffb45122007-05-08 00:28:41 -07001849 sym = kallsyms_lookup((unsigned long)p->addr, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -08001850 &offset, &modname, namebuf);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001851 if (kprobe_aggrprobe(p)) {
Srinivasa Ds346fd592007-02-20 13:57:54 -08001852 list_for_each_entry_rcu(kp, &p->list, list)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001853 report_probe(pi, kp, sym, offset, modname, p);
Srinivasa Ds346fd592007-02-20 13:57:54 -08001854 } else
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001855 report_probe(pi, p, sym, offset, modname, NULL);
Srinivasa Ds346fd592007-02-20 13:57:54 -08001856 }
1857 preempt_enable();
1858 return 0;
1859}
1860
James Morris88e9d342009-09-22 16:43:43 -07001861static const struct seq_operations kprobes_seq_ops = {
Srinivasa Ds346fd592007-02-20 13:57:54 -08001862 .start = kprobe_seq_start,
1863 .next = kprobe_seq_next,
1864 .stop = kprobe_seq_stop,
1865 .show = show_kprobe_addr
1866};
1867
1868static int __kprobes kprobes_open(struct inode *inode, struct file *filp)
1869{
1870 return seq_open(filp, &kprobes_seq_ops);
1871}
1872
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001873static const struct file_operations debugfs_kprobes_operations = {
Srinivasa Ds346fd592007-02-20 13:57:54 -08001874 .open = kprobes_open,
1875 .read = seq_read,
1876 .llseek = seq_lseek,
1877 .release = seq_release,
1878};
1879
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001880static void __kprobes arm_all_kprobes(void)
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001881{
1882 struct hlist_head *head;
1883 struct hlist_node *node;
1884 struct kprobe *p;
1885 unsigned int i;
1886
1887 mutex_lock(&kprobe_mutex);
1888
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001889 /* If kprobes are armed, just return */
1890 if (!kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001891 goto already_enabled;
1892
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001893 /* Arming kprobes doesn't optimize kprobe itself */
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001894 mutex_lock(&text_mutex);
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001895 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1896 head = &kprobe_table[i];
1897 hlist_for_each_entry_rcu(p, node, head, hlist)
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001898 if (!kprobe_disabled(p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001899 __arm_kprobe(p);
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001900 }
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001901 mutex_unlock(&text_mutex);
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001902
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001903 kprobes_all_disarmed = false;
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001904 printk(KERN_INFO "Kprobes globally enabled\n");
1905
1906already_enabled:
1907 mutex_unlock(&kprobe_mutex);
1908 return;
1909}
1910
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001911static void __kprobes disarm_all_kprobes(void)
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001912{
1913 struct hlist_head *head;
1914 struct hlist_node *node;
1915 struct kprobe *p;
1916 unsigned int i;
1917
1918 mutex_lock(&kprobe_mutex);
1919
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001920 /* If kprobes are already disarmed, just return */
1921 if (kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001922 goto already_disabled;
1923
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001924 kprobes_all_disarmed = true;
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001925 printk(KERN_INFO "Kprobes globally disabled\n");
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001926
1927 /*
1928 * Here we call get_online_cpus() for avoiding text_mutex deadlock,
1929 * because disarming may also unoptimize kprobes.
1930 */
1931 get_online_cpus();
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001932 mutex_lock(&text_mutex);
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001933 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1934 head = &kprobe_table[i];
1935 hlist_for_each_entry_rcu(p, node, head, hlist) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001936 if (!arch_trampoline_kprobe(p) && !kprobe_disabled(p))
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001937 __disarm_kprobe(p);
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001938 }
1939 }
1940
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -05001941 mutex_unlock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001942 put_online_cpus();
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001943 mutex_unlock(&kprobe_mutex);
1944 /* Allow all currently running kprobes to complete */
1945 synchronize_sched();
Christoph Hellwig74a0b572007-10-16 01:24:07 -07001946 return;
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001947
1948already_disabled:
1949 mutex_unlock(&kprobe_mutex);
1950 return;
1951}
1952
1953/*
1954 * XXX: The debugfs bool file interface doesn't allow for callbacks
1955 * when the bool state is switched. We can reuse that facility when
1956 * available
1957 */
1958static ssize_t read_enabled_file_bool(struct file *file,
1959 char __user *user_buf, size_t count, loff_t *ppos)
1960{
1961 char buf[3];
1962
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001963 if (!kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001964 buf[0] = '1';
1965 else
1966 buf[0] = '0';
1967 buf[1] = '\n';
1968 buf[2] = 0x00;
1969 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
1970}
1971
1972static ssize_t write_enabled_file_bool(struct file *file,
1973 const char __user *user_buf, size_t count, loff_t *ppos)
1974{
1975 char buf[32];
1976 int buf_size;
1977
1978 buf_size = min(count, (sizeof(buf)-1));
1979 if (copy_from_user(buf, user_buf, buf_size))
1980 return -EFAULT;
1981
1982 switch (buf[0]) {
1983 case 'y':
1984 case 'Y':
1985 case '1':
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001986 arm_all_kprobes();
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001987 break;
1988 case 'n':
1989 case 'N':
1990 case '0':
Masami Hiramatsue579abe2009-04-06 19:01:01 -07001991 disarm_all_kprobes();
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001992 break;
1993 }
1994
1995 return count;
1996}
1997
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001998static const struct file_operations fops_kp = {
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07001999 .read = read_enabled_file_bool,
2000 .write = write_enabled_file_bool,
2001};
2002
Srinivasa Ds346fd592007-02-20 13:57:54 -08002003static int __kprobes debugfs_kprobe_init(void)
2004{
2005 struct dentry *dir, *file;
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07002006 unsigned int value = 1;
Srinivasa Ds346fd592007-02-20 13:57:54 -08002007
2008 dir = debugfs_create_dir("kprobes", NULL);
2009 if (!dir)
2010 return -ENOMEM;
2011
Randy Dunlape3869792007-05-08 00:27:01 -07002012 file = debugfs_create_file("list", 0444, dir, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -08002013 &debugfs_kprobes_operations);
2014 if (!file) {
2015 debugfs_remove(dir);
2016 return -ENOMEM;
2017 }
2018
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -07002019 file = debugfs_create_file("enabled", 0600, dir,
2020 &value, &fops_kp);
2021 if (!file) {
2022 debugfs_remove(dir);
2023 return -ENOMEM;
2024 }
2025
Srinivasa Ds346fd592007-02-20 13:57:54 -08002026 return 0;
2027}
2028
2029late_initcall(debugfs_kprobe_init);
2030#endif /* CONFIG_DEBUG_FS */
2031
2032module_init(init_kprobes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002034/* defined in arch/.../kernel/kprobes.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035EXPORT_SYMBOL_GPL(jprobe_return);