blob: 6c86d67ed1a71aba7063b26c37afd6c7a40aa911 [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>
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -070045#include <asm-generic/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/cacheflush.h>
47#include <asm/errno.h>
48#include <asm/kdebug.h>
49
50#define KPROBE_HASH_BITS 6
51#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS)
52
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -070053
54/*
55 * Some oddball architectures like 64bit powerpc have function descriptors
56 * so this must be overridable.
57 */
58#ifndef kprobe_lookup_name
59#define kprobe_lookup_name(name, addr) \
60 addr = ((kprobe_opcode_t *)(kallsyms_lookup_name(name)))
61#endif
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static struct hlist_head kprobe_table[KPROBE_TABLE_SIZE];
Hien Nguyenb94cce92005-06-23 00:09:19 -070064static struct hlist_head kretprobe_inst_table[KPROBE_TABLE_SIZE];
Anil S Keshavamurthye6f47f92006-06-26 00:25:29 -070065static atomic_t kprobe_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -080067DEFINE_MUTEX(kprobe_mutex); /* Protects kprobe_table */
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -080068DEFINE_SPINLOCK(kretprobe_lock); /* Protects kretprobe_inst_table */
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -080069static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Anil S Keshavamurthye6f47f92006-06-26 00:25:29 -070071static struct notifier_block kprobe_page_fault_nb = {
72 .notifier_call = kprobe_exceptions_notify,
73 .priority = 0x7fffffff /* we need to notified first */
74};
75
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -080076#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070077/*
78 * kprobe->ainsn.insn points to the copy of the instruction to be
79 * single-stepped. x86_64, POWER4 and above have no-exec support and
80 * stepping on the instruction on a vmalloced/kmalloced/data page
81 * is a recipe for disaster
82 */
83#define INSNS_PER_PAGE (PAGE_SIZE/(MAX_INSN_SIZE * sizeof(kprobe_opcode_t)))
84
85struct kprobe_insn_page {
86 struct hlist_node hlist;
87 kprobe_opcode_t *insns; /* Page of instruction slots */
88 char slot_used[INSNS_PER_PAGE];
89 int nused;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -080090 int ngarbage;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070091};
92
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -080093enum kprobe_slot_state {
94 SLOT_CLEAN = 0,
95 SLOT_DIRTY = 1,
96 SLOT_USED = 2,
97};
98
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070099static struct hlist_head kprobe_insn_pages;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800100static int kprobe_garbage_slots;
101static int collect_garbage_slots(void);
102
103static int __kprobes check_safety(void)
104{
105 int ret = 0;
106#if defined(CONFIG_PREEMPT) && defined(CONFIG_PM)
107 ret = freeze_processes();
108 if (ret == 0) {
109 struct task_struct *p, *q;
110 do_each_thread(p, q) {
111 if (p != current && p->state == TASK_RUNNING &&
112 p->pid != 0) {
113 printk("Check failed: %s is running\n",p->comm);
114 ret = -1;
115 goto loop_end;
116 }
117 } while_each_thread(p, q);
118 }
119loop_end:
120 thaw_processes();
121#else
122 synchronize_sched();
123#endif
124 return ret;
125}
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700126
127/**
128 * get_insn_slot() - Find a slot on an executable page for an instruction.
129 * We allocate an executable page if there's no room on existing ones.
130 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700131kprobe_opcode_t __kprobes *get_insn_slot(void)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700132{
133 struct kprobe_insn_page *kip;
134 struct hlist_node *pos;
135
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800136 retry:
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700137 hlist_for_each(pos, &kprobe_insn_pages) {
138 kip = hlist_entry(pos, struct kprobe_insn_page, hlist);
139 if (kip->nused < INSNS_PER_PAGE) {
140 int i;
141 for (i = 0; i < INSNS_PER_PAGE; i++) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800142 if (kip->slot_used[i] == SLOT_CLEAN) {
143 kip->slot_used[i] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700144 kip->nused++;
145 return kip->insns + (i * MAX_INSN_SIZE);
146 }
147 }
148 /* Surprise! No unused slots. Fix kip->nused. */
149 kip->nused = INSNS_PER_PAGE;
150 }
151 }
152
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800153 /* If there are any garbage slots, collect it and try again. */
154 if (kprobe_garbage_slots && collect_garbage_slots() == 0) {
155 goto retry;
156 }
157 /* All out of space. Need to allocate a new page. Use slot 0. */
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700158 kip = kmalloc(sizeof(struct kprobe_insn_page), GFP_KERNEL);
159 if (!kip) {
160 return NULL;
161 }
162
163 /*
164 * Use module_alloc so this page is within +/- 2GB of where the
165 * kernel image and loaded module images reside. This is required
166 * so x86_64 can correctly handle the %rip-relative fixups.
167 */
168 kip->insns = module_alloc(PAGE_SIZE);
169 if (!kip->insns) {
170 kfree(kip);
171 return NULL;
172 }
173 INIT_HLIST_NODE(&kip->hlist);
174 hlist_add_head(&kip->hlist, &kprobe_insn_pages);
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800175 memset(kip->slot_used, SLOT_CLEAN, INSNS_PER_PAGE);
176 kip->slot_used[0] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700177 kip->nused = 1;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800178 kip->ngarbage = 0;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700179 return kip->insns;
180}
181
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800182/* Return 1 if all garbages are collected, otherwise 0. */
183static int __kprobes collect_one_slot(struct kprobe_insn_page *kip, int idx)
184{
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800185 kip->slot_used[idx] = SLOT_CLEAN;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800186 kip->nused--;
187 if (kip->nused == 0) {
188 /*
189 * Page is no longer in use. Free it unless
190 * it's the last one. We keep the last one
191 * so as not to have to set it up again the
192 * next time somebody inserts a probe.
193 */
194 hlist_del(&kip->hlist);
195 if (hlist_empty(&kprobe_insn_pages)) {
196 INIT_HLIST_NODE(&kip->hlist);
197 hlist_add_head(&kip->hlist,
198 &kprobe_insn_pages);
199 } else {
200 module_free(NULL, kip->insns);
201 kfree(kip);
202 }
203 return 1;
204 }
205 return 0;
206}
207
208static int __kprobes collect_garbage_slots(void)
209{
210 struct kprobe_insn_page *kip;
211 struct hlist_node *pos, *next;
212
213 /* Ensure no-one is preepmted on the garbages */
214 if (check_safety() != 0)
215 return -EAGAIN;
216
217 hlist_for_each_safe(pos, next, &kprobe_insn_pages) {
218 int i;
219 kip = hlist_entry(pos, struct kprobe_insn_page, hlist);
220 if (kip->ngarbage == 0)
221 continue;
222 kip->ngarbage = 0; /* we will collect all garbages */
223 for (i = 0; i < INSNS_PER_PAGE; i++) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800224 if (kip->slot_used[i] == SLOT_DIRTY &&
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800225 collect_one_slot(kip, i))
226 break;
227 }
228 }
229 kprobe_garbage_slots = 0;
230 return 0;
231}
232
233void __kprobes free_insn_slot(kprobe_opcode_t * slot, int dirty)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700234{
235 struct kprobe_insn_page *kip;
236 struct hlist_node *pos;
237
238 hlist_for_each(pos, &kprobe_insn_pages) {
239 kip = hlist_entry(pos, struct kprobe_insn_page, hlist);
240 if (kip->insns <= slot &&
241 slot < kip->insns + (INSNS_PER_PAGE * MAX_INSN_SIZE)) {
242 int i = (slot - kip->insns) / MAX_INSN_SIZE;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800243 if (dirty) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800244 kip->slot_used[i] = SLOT_DIRTY;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800245 kip->ngarbage++;
246 } else {
247 collect_one_slot(kip, i);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700248 }
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800249 break;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700250 }
251 }
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800252 if (dirty && (++kprobe_garbage_slots > INSNS_PER_PAGE)) {
253 collect_garbage_slots();
254 }
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700255}
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -0800256#endif
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700257
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800258/* We have preemption disabled.. so it is safe to use __ versions */
259static inline void set_kprobe_instance(struct kprobe *kp)
260{
261 __get_cpu_var(kprobe_instance) = kp;
262}
263
264static inline void reset_kprobe_instance(void)
265{
266 __get_cpu_var(kprobe_instance) = NULL;
267}
268
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800269/*
270 * This routine is called either:
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800271 * - under the kprobe_mutex - during kprobe_[un]register()
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800272 * OR
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800273 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800274 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700275struct kprobe __kprobes *get_kprobe(void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct hlist_head *head;
278 struct hlist_node *node;
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800279 struct kprobe *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800282 hlist_for_each_entry_rcu(p, node, head, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (p->addr == addr)
284 return p;
285 }
286 return NULL;
287}
288
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700289/*
290 * Aggregate handlers for multiple kprobes support - these handlers
291 * take care of invoking the individual kprobe handlers on p->list
292 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700293static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700294{
295 struct kprobe *kp;
296
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800297 list_for_each_entry_rcu(kp, &p->list, list) {
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700298 if (kp->pre_handler) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800299 set_kprobe_instance(kp);
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700300 if (kp->pre_handler(kp, regs))
301 return 1;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700302 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800303 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700304 }
305 return 0;
306}
307
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700308static void __kprobes aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
309 unsigned long flags)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700310{
311 struct kprobe *kp;
312
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800313 list_for_each_entry_rcu(kp, &p->list, list) {
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700314 if (kp->post_handler) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800315 set_kprobe_instance(kp);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700316 kp->post_handler(kp, regs, flags);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800317 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700318 }
319 }
320 return;
321}
322
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700323static int __kprobes aggr_fault_handler(struct kprobe *p, struct pt_regs *regs,
324 int trapnr)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700325{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800326 struct kprobe *cur = __get_cpu_var(kprobe_instance);
327
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700328 /*
329 * if we faulted "during" the execution of a user specified
330 * probe handler, invoke just that probe's fault handler
331 */
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800332 if (cur && cur->fault_handler) {
333 if (cur->fault_handler(cur, regs, trapnr))
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700334 return 1;
335 }
336 return 0;
337}
338
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700339static int __kprobes aggr_break_handler(struct kprobe *p, struct pt_regs *regs)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700340{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800341 struct kprobe *cur = __get_cpu_var(kprobe_instance);
342 int ret = 0;
343
344 if (cur && cur->break_handler) {
345 if (cur->break_handler(cur, regs))
346 ret = 1;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700347 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800348 reset_kprobe_instance();
349 return ret;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700350}
351
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800352/* Walks the list and increments nmissed count for multiprobe case */
353void __kprobes kprobes_inc_nmissed_count(struct kprobe *p)
354{
355 struct kprobe *kp;
356 if (p->pre_handler != aggr_pre_handler) {
357 p->nmissed++;
358 } else {
359 list_for_each_entry_rcu(kp, &p->list, list)
360 kp->nmissed++;
361 }
362 return;
363}
364
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800365/* Called with kretprobe_lock held */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700366struct kretprobe_instance __kprobes *get_free_rp_inst(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700367{
368 struct hlist_node *node;
369 struct kretprobe_instance *ri;
370 hlist_for_each_entry(ri, node, &rp->free_instances, uflist)
371 return ri;
372 return NULL;
373}
374
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800375/* Called with kretprobe_lock held */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700376static struct kretprobe_instance __kprobes *get_used_rp_inst(struct kretprobe
377 *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700378{
379 struct hlist_node *node;
380 struct kretprobe_instance *ri;
381 hlist_for_each_entry(ri, node, &rp->used_instances, uflist)
382 return ri;
383 return NULL;
384}
385
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800386/* Called with kretprobe_lock held */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700387void __kprobes add_rp_inst(struct kretprobe_instance *ri)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700388{
Hien Nguyenb94cce92005-06-23 00:09:19 -0700389 /*
390 * Remove rp inst off the free list -
391 * Add it back when probed function returns
392 */
393 hlist_del(&ri->uflist);
Rusty Lynch802eae72005-06-27 15:17:08 -0700394
Hien Nguyenb94cce92005-06-23 00:09:19 -0700395 /* Add rp inst onto table */
396 INIT_HLIST_NODE(&ri->hlist);
397 hlist_add_head(&ri->hlist,
Rusty Lynch802eae72005-06-27 15:17:08 -0700398 &kretprobe_inst_table[hash_ptr(ri->task, KPROBE_HASH_BITS)]);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700399
400 /* Also add this rp inst to the used list. */
401 INIT_HLIST_NODE(&ri->uflist);
402 hlist_add_head(&ri->uflist, &ri->rp->used_instances);
403}
404
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800405/* Called with kretprobe_lock held */
bibo,mao99219a32006-10-02 02:17:35 -0700406void __kprobes recycle_rp_inst(struct kretprobe_instance *ri,
407 struct hlist_head *head)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700408{
409 /* remove rp inst off the rprobe_inst_table */
410 hlist_del(&ri->hlist);
411 if (ri->rp) {
412 /* remove rp inst off the used list */
413 hlist_del(&ri->uflist);
414 /* put rp inst back onto the free list */
415 INIT_HLIST_NODE(&ri->uflist);
416 hlist_add_head(&ri->uflist, &ri->rp->free_instances);
417 } else
418 /* Unregistering */
bibo,mao99219a32006-10-02 02:17:35 -0700419 hlist_add_head(&ri->hlist, head);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700420}
421
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700422struct hlist_head __kprobes *kretprobe_inst_table_head(struct task_struct *tsk)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700423{
424 return &kretprobe_inst_table[hash_ptr(tsk, KPROBE_HASH_BITS)];
425}
426
Hien Nguyenb94cce92005-06-23 00:09:19 -0700427/*
bibo maoc6fd91f2006-03-26 01:38:20 -0800428 * This function is called from finish_task_switch when task tk becomes dead,
429 * so that we can recycle any function-return probe instances associated
430 * with this task. These left over instances represent probed functions
431 * that have been called but will never return.
Hien Nguyenb94cce92005-06-23 00:09:19 -0700432 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700433void __kprobes kprobe_flush_task(struct task_struct *tk)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700434{
bibo,mao62c27be2006-10-02 02:17:33 -0700435 struct kretprobe_instance *ri;
bibo,mao99219a32006-10-02 02:17:35 -0700436 struct hlist_head *head, empty_rp;
Rusty Lynch802eae72005-06-27 15:17:08 -0700437 struct hlist_node *node, *tmp;
Hien Nguyen0aa55e42005-06-23 00:09:26 -0700438 unsigned long flags = 0;
Rusty Lynch802eae72005-06-27 15:17:08 -0700439
bibo,mao99219a32006-10-02 02:17:35 -0700440 INIT_HLIST_HEAD(&empty_rp);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800441 spin_lock_irqsave(&kretprobe_lock, flags);
bibo,mao62c27be2006-10-02 02:17:33 -0700442 head = kretprobe_inst_table_head(tk);
443 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
444 if (ri->task == tk)
bibo,mao99219a32006-10-02 02:17:35 -0700445 recycle_rp_inst(ri, &empty_rp);
bibo,mao62c27be2006-10-02 02:17:33 -0700446 }
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800447 spin_unlock_irqrestore(&kretprobe_lock, flags);
bibo,mao99219a32006-10-02 02:17:35 -0700448
449 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
450 hlist_del(&ri->hlist);
451 kfree(ri);
452 }
Hien Nguyenb94cce92005-06-23 00:09:19 -0700453}
454
Hien Nguyenb94cce92005-06-23 00:09:19 -0700455static inline void free_rp_inst(struct kretprobe *rp)
456{
457 struct kretprobe_instance *ri;
458 while ((ri = get_free_rp_inst(rp)) != NULL) {
459 hlist_del(&ri->uflist);
460 kfree(ri);
461 }
462}
463
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700464/*
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700465 * Keep all fields in the kprobe consistent
466 */
467static inline void copy_kprobe(struct kprobe *old_p, struct kprobe *p)
468{
469 memcpy(&p->opcode, &old_p->opcode, sizeof(kprobe_opcode_t));
470 memcpy(&p->ainsn, &old_p->ainsn, sizeof(struct arch_specific_insn));
471}
472
473/*
474* Add the new probe to old_p->list. Fail if this is the
475* second jprobe at the address - two jprobes can't coexist
476*/
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700477static int __kprobes add_new_kprobe(struct kprobe *old_p, struct kprobe *p)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700478{
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700479 if (p->break_handler) {
mao, bibo36721652006-06-26 00:25:22 -0700480 if (old_p->break_handler)
481 return -EEXIST;
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800482 list_add_tail_rcu(&p->list, &old_p->list);
mao, bibo36721652006-06-26 00:25:22 -0700483 old_p->break_handler = aggr_break_handler;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700484 } else
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800485 list_add_rcu(&p->list, &old_p->list);
mao, bibo36721652006-06-26 00:25:22 -0700486 if (p->post_handler && !old_p->post_handler)
487 old_p->post_handler = aggr_post_handler;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700488 return 0;
489}
490
491/*
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700492 * Fill in the required fields of the "manager kprobe". Replace the
493 * earlier kprobe in the hlist with the manager kprobe
494 */
495static inline void add_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
496{
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700497 copy_kprobe(p, ap);
bibo, maoa9ad9652006-07-30 03:03:26 -0700498 flush_insn_slot(ap);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700499 ap->addr = p->addr;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700500 ap->pre_handler = aggr_pre_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700501 ap->fault_handler = aggr_fault_handler;
mao, bibo36721652006-06-26 00:25:22 -0700502 if (p->post_handler)
503 ap->post_handler = aggr_post_handler;
504 if (p->break_handler)
505 ap->break_handler = aggr_break_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700506
507 INIT_LIST_HEAD(&ap->list);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800508 list_add_rcu(&p->list, &ap->list);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700509
Keshavamurthy Anil Sadad0f32005-12-12 00:37:12 -0800510 hlist_replace_rcu(&p->hlist, &ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700511}
512
513/*
514 * This is the second or subsequent kprobe at the address - handle
515 * the intricacies
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700516 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700517static int __kprobes register_aggr_kprobe(struct kprobe *old_p,
518 struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700519{
520 int ret = 0;
521 struct kprobe *ap;
522
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700523 if (old_p->pre_handler == aggr_pre_handler) {
524 copy_kprobe(old_p, p);
525 ret = add_new_kprobe(old_p, p);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700526 } else {
Keshavamurthy Anil Sa0d50062006-01-09 20:52:46 -0800527 ap = kzalloc(sizeof(struct kprobe), GFP_KERNEL);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700528 if (!ap)
529 return -ENOMEM;
530 add_aggr_kprobe(ap, old_p);
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700531 copy_kprobe(ap, p);
532 ret = add_new_kprobe(ap, p);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700533 }
534 return ret;
535}
536
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700537static int __kprobes in_kprobes_functions(unsigned long addr)
538{
539 if (addr >= (unsigned long)__kprobes_text_start
540 && addr < (unsigned long)__kprobes_text_end)
541 return -EINVAL;
542 return 0;
543}
544
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800545static int __kprobes __register_kprobe(struct kprobe *p,
546 unsigned long called_from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 int ret = 0;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700549 struct kprobe *old_p;
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800550 struct module *probed_mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -0700552 /*
553 * If we have a symbol_name argument look it up,
554 * and add it to the address. That way the addr
555 * field can either be global or relative to a symbol.
556 */
557 if (p->symbol_name) {
558 if (p->addr)
559 return -EINVAL;
560 kprobe_lookup_name(p->symbol_name, p->addr);
561 }
562
563 if (!p->addr)
564 return -EINVAL;
565 p->addr = (kprobe_opcode_t *)(((char *)p->addr)+ p->offset);
566
Mao, Bibob3e55c72005-12-12 00:37:00 -0800567 if ((!kernel_text_address((unsigned long) p->addr)) ||
568 in_kprobes_functions((unsigned long) p->addr))
569 return -EINVAL;
570
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800571 p->mod_refcounted = 0;
572 /* Check are we probing a module */
573 if ((probed_mod = module_text_address((unsigned long) p->addr))) {
574 struct module *calling_mod = module_text_address(called_from);
575 /* We must allow modules to probe themself and
576 * in this case avoid incrementing the module refcount,
577 * so as to allow unloading of self probing modules.
578 */
579 if (calling_mod && (calling_mod != probed_mod)) {
580 if (unlikely(!try_module_get(probed_mod)))
581 return -EINVAL;
582 p->mod_refcounted = 1;
583 } else
584 probed_mod = NULL;
585 }
Mao, Bibob3e55c72005-12-12 00:37:00 -0800586
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800587 p->nmissed = 0;
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800588 mutex_lock(&kprobe_mutex);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700589 old_p = get_kprobe(p->addr);
590 if (old_p) {
591 ret = register_aggr_kprobe(old_p, p);
Anil S Keshavamurthye6f47f92006-06-26 00:25:29 -0700592 if (!ret)
593 atomic_inc(&kprobe_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 goto out;
595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800597 if ((ret = arch_prepare_kprobe(p)) != 0)
598 goto out;
599
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700600 INIT_HLIST_NODE(&p->hlist);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800601 hlist_add_head_rcu(&p->hlist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
603
Anil S Keshavamurthye6f47f92006-06-26 00:25:29 -0700604 if (atomic_add_return(1, &kprobe_count) == \
605 (ARCH_INACTIVE_KPROBE_COUNT + 1))
606 register_page_fault_notifier(&kprobe_page_fault_nb);
607
bibo,mao62c27be2006-10-02 02:17:33 -0700608 arch_arm_kprobe(p);
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610out:
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800611 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800612
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800613 if (ret && probed_mod)
614 module_put(probed_mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return ret;
616}
617
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800618int __kprobes register_kprobe(struct kprobe *p)
619{
620 return __register_kprobe(p,
621 (unsigned long)__builtin_return_address(0));
622}
623
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700624void __kprobes unregister_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Mao, Bibob3e55c72005-12-12 00:37:00 -0800626 struct module *mod;
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800627 struct kprobe *old_p, *list_p;
628 int cleanup_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700629
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800630 mutex_lock(&kprobe_mutex);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700631 old_p = get_kprobe(p->addr);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800632 if (unlikely(!old_p)) {
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800633 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800634 return;
635 }
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800636 if (p != old_p) {
637 list_for_each_entry_rcu(list_p, &old_p->list, list)
638 if (list_p == p)
639 /* kprobe p is a valid probe */
640 goto valid_p;
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800641 mutex_unlock(&kprobe_mutex);
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800642 return;
643 }
644valid_p:
645 if ((old_p == p) || ((old_p->pre_handler == aggr_pre_handler) &&
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800646 (p->list.next == &old_p->list) &&
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800647 (p->list.prev == &old_p->list))) {
648 /* Only probe on the hash list */
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800649 arch_disarm_kprobe(p);
650 hlist_del_rcu(&old_p->hlist);
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800651 cleanup_p = 1;
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800652 } else {
653 list_del_rcu(&p->list);
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800654 cleanup_p = 0;
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800655 }
Mao, Bibob3e55c72005-12-12 00:37:00 -0800656
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800657 mutex_unlock(&kprobe_mutex);
Mao, Bibob3e55c72005-12-12 00:37:00 -0800658
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800659 synchronize_sched();
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800660 if (p->mod_refcounted &&
661 (mod = module_text_address((unsigned long)p->addr)))
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800662 module_put(mod);
663
664 if (cleanup_p) {
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800665 if (p != old_p) {
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800666 list_del_rcu(&p->list);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800667 kfree(old_p);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800668 }
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -0800669 arch_remove_kprobe(p);
mao, bibo36721652006-06-26 00:25:22 -0700670 } else {
671 mutex_lock(&kprobe_mutex);
672 if (p->break_handler)
673 old_p->break_handler = NULL;
674 if (p->post_handler){
675 list_for_each_entry_rcu(list_p, &old_p->list, list){
676 if (list_p->post_handler){
677 cleanup_p = 2;
678 break;
679 }
680 }
681 if (cleanup_p == 0)
682 old_p->post_handler = NULL;
683 }
684 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800685 }
Anil S Keshavamurthye6f47f92006-06-26 00:25:29 -0700686
687 /* Call unregister_page_fault_notifier()
688 * if no probes are active
689 */
690 mutex_lock(&kprobe_mutex);
691 if (atomic_add_return(-1, &kprobe_count) == \
692 ARCH_INACTIVE_KPROBE_COUNT)
693 unregister_page_fault_notifier(&kprobe_page_fault_nb);
694 mutex_unlock(&kprobe_mutex);
695 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698static struct notifier_block kprobe_exceptions_nb = {
699 .notifier_call = kprobe_exceptions_notify,
Anil S Keshavamurthy3d5631e2006-06-26 00:25:28 -0700700 .priority = 0x7fffffff /* we need to be notified first */
701};
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700704int __kprobes register_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 /* Todo: Verify probepoint is a function entry point */
707 jp->kp.pre_handler = setjmp_pre_handler;
708 jp->kp.break_handler = longjmp_break_handler;
709
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800710 return __register_kprobe(&jp->kp,
711 (unsigned long)__builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700714void __kprobes unregister_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 unregister_kprobe(&jp->kp);
717}
718
Hien Nguyenb94cce92005-06-23 00:09:19 -0700719#ifdef ARCH_SUPPORTS_KRETPROBES
720
Adrian Bunke65cefe2006-02-03 03:03:42 -0800721/*
722 * This kprobe pre_handler is registered with every kretprobe. When probe
723 * hits it will set up the return probe.
724 */
725static int __kprobes pre_handler_kretprobe(struct kprobe *p,
726 struct pt_regs *regs)
727{
728 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
729 unsigned long flags = 0;
730
731 /*TODO: consider to only swap the RA after the last pre_handler fired */
732 spin_lock_irqsave(&kretprobe_lock, flags);
733 arch_prepare_kretprobe(rp, regs);
734 spin_unlock_irqrestore(&kretprobe_lock, flags);
735 return 0;
736}
737
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700738int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700739{
740 int ret = 0;
741 struct kretprobe_instance *inst;
742 int i;
743
744 rp->kp.pre_handler = pre_handler_kretprobe;
Ananth N Mavinakayanahalli7522a842006-04-20 02:43:11 -0700745 rp->kp.post_handler = NULL;
746 rp->kp.fault_handler = NULL;
747 rp->kp.break_handler = NULL;
Hien Nguyenb94cce92005-06-23 00:09:19 -0700748
749 /* Pre-allocate memory for max kretprobe instances */
750 if (rp->maxactive <= 0) {
751#ifdef CONFIG_PREEMPT
752 rp->maxactive = max(10, 2 * NR_CPUS);
753#else
754 rp->maxactive = NR_CPUS;
755#endif
756 }
757 INIT_HLIST_HEAD(&rp->used_instances);
758 INIT_HLIST_HEAD(&rp->free_instances);
759 for (i = 0; i < rp->maxactive; i++) {
760 inst = kmalloc(sizeof(struct kretprobe_instance), GFP_KERNEL);
761 if (inst == NULL) {
762 free_rp_inst(rp);
763 return -ENOMEM;
764 }
765 INIT_HLIST_NODE(&inst->uflist);
766 hlist_add_head(&inst->uflist, &rp->free_instances);
767 }
768
769 rp->nmissed = 0;
770 /* Establish function entry probe point */
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800771 if ((ret = __register_kprobe(&rp->kp,
772 (unsigned long)__builtin_return_address(0))) != 0)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700773 free_rp_inst(rp);
774 return ret;
775}
776
777#else /* ARCH_SUPPORTS_KRETPROBES */
778
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700779int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700780{
781 return -ENOSYS;
782}
783
Srinivasa Ds346fd592007-02-20 13:57:54 -0800784static int __kprobes pre_handler_kretprobe(struct kprobe *p,
785 struct pt_regs *regs)
786{
787 return 0;
788}
789
Hien Nguyenb94cce92005-06-23 00:09:19 -0700790#endif /* ARCH_SUPPORTS_KRETPROBES */
791
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700792void __kprobes unregister_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700793{
794 unsigned long flags;
795 struct kretprobe_instance *ri;
796
797 unregister_kprobe(&rp->kp);
798 /* No race here */
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800799 spin_lock_irqsave(&kretprobe_lock, flags);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700800 while ((ri = get_used_rp_inst(rp)) != NULL) {
801 ri->rp = NULL;
802 hlist_del(&ri->uflist);
803 }
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800804 spin_unlock_irqrestore(&kretprobe_lock, flags);
Ananth N Mavinakayanahalli278ff952006-02-03 03:03:43 -0800805 free_rp_inst(rp);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700806}
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808static int __init init_kprobes(void)
809{
810 int i, err = 0;
811
812 /* FIXME allocate the probe table, currently defined statically */
813 /* initialize all list heads */
Hien Nguyenb94cce92005-06-23 00:09:19 -0700814 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 INIT_HLIST_HEAD(&kprobe_table[i]);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700816 INIT_HLIST_HEAD(&kretprobe_inst_table[i]);
817 }
Anil S Keshavamurthye6f47f92006-06-26 00:25:29 -0700818 atomic_set(&kprobe_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Rusty Lynch67729262005-07-05 18:54:50 -0700820 err = arch_init_kprobes();
Rusty Lynch802eae72005-06-27 15:17:08 -0700821 if (!err)
822 err = register_die_notifier(&kprobe_exceptions_nb);
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return err;
825}
826
Srinivasa Ds346fd592007-02-20 13:57:54 -0800827#ifdef CONFIG_DEBUG_FS
828static void __kprobes report_probe(struct seq_file *pi, struct kprobe *p,
829 const char *sym, int offset,char *modname)
830{
831 char *kprobe_type;
832
833 if (p->pre_handler == pre_handler_kretprobe)
834 kprobe_type = "r";
835 else if (p->pre_handler == setjmp_pre_handler)
836 kprobe_type = "j";
837 else
838 kprobe_type = "k";
839 if (sym)
840 seq_printf(pi, "%p %s %s+0x%x %s\n", p->addr, kprobe_type,
841 sym, offset, (modname ? modname : " "));
842 else
843 seq_printf(pi, "%p %s %p\n", p->addr, kprobe_type, p->addr);
844}
845
846static void __kprobes *kprobe_seq_start(struct seq_file *f, loff_t *pos)
847{
848 return (*pos < KPROBE_TABLE_SIZE) ? pos : NULL;
849}
850
851static void __kprobes *kprobe_seq_next(struct seq_file *f, void *v, loff_t *pos)
852{
853 (*pos)++;
854 if (*pos >= KPROBE_TABLE_SIZE)
855 return NULL;
856 return pos;
857}
858
859static void __kprobes kprobe_seq_stop(struct seq_file *f, void *v)
860{
861 /* Nothing to do */
862}
863
864static int __kprobes show_kprobe_addr(struct seq_file *pi, void *v)
865{
866 struct hlist_head *head;
867 struct hlist_node *node;
868 struct kprobe *p, *kp;
869 const char *sym = NULL;
870 unsigned int i = *(loff_t *) v;
871 unsigned long size, offset = 0;
872 char *modname, namebuf[128];
873
874 head = &kprobe_table[i];
875 preempt_disable();
876 hlist_for_each_entry_rcu(p, node, head, hlist) {
877 sym = kallsyms_lookup((unsigned long)p->addr, &size,
878 &offset, &modname, namebuf);
879 if (p->pre_handler == aggr_pre_handler) {
880 list_for_each_entry_rcu(kp, &p->list, list)
881 report_probe(pi, kp, sym, offset, modname);
882 } else
883 report_probe(pi, p, sym, offset, modname);
884 }
885 preempt_enable();
886 return 0;
887}
888
889static struct seq_operations kprobes_seq_ops = {
890 .start = kprobe_seq_start,
891 .next = kprobe_seq_next,
892 .stop = kprobe_seq_stop,
893 .show = show_kprobe_addr
894};
895
896static int __kprobes kprobes_open(struct inode *inode, struct file *filp)
897{
898 return seq_open(filp, &kprobes_seq_ops);
899}
900
901static struct file_operations debugfs_kprobes_operations = {
902 .open = kprobes_open,
903 .read = seq_read,
904 .llseek = seq_lseek,
905 .release = seq_release,
906};
907
908static int __kprobes debugfs_kprobe_init(void)
909{
910 struct dentry *dir, *file;
911
912 dir = debugfs_create_dir("kprobes", NULL);
913 if (!dir)
914 return -ENOMEM;
915
Randy Dunlape3869792007-05-08 00:27:01 -0700916 file = debugfs_create_file("list", 0444, dir, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -0800917 &debugfs_kprobes_operations);
918 if (!file) {
919 debugfs_remove(dir);
920 return -ENOMEM;
921 }
922
923 return 0;
924}
925
926late_initcall(debugfs_kprobe_init);
927#endif /* CONFIG_DEBUG_FS */
928
929module_init(init_kprobes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931EXPORT_SYMBOL_GPL(register_kprobe);
932EXPORT_SYMBOL_GPL(unregister_kprobe);
933EXPORT_SYMBOL_GPL(register_jprobe);
934EXPORT_SYMBOL_GPL(unregister_jprobe);
935EXPORT_SYMBOL_GPL(jprobe_return);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700936EXPORT_SYMBOL_GPL(register_kretprobe);
937EXPORT_SYMBOL_GPL(unregister_kretprobe);