blob: f02a4311768b7e90b16f917fc26de6da9fff9cb2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Kernel Probes (KProbes)
3 * kernel/kprobes.c
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 *
19 * Copyright (C) IBM Corporation, 2002, 2004
20 *
21 * 2002-Oct Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel
22 * Probes initial implementation (includes suggestions from
23 * Rusty Russell).
24 * 2004-Aug Updated by Prasanna S Panchamukhi <prasanna@in.ibm.com> with
25 * hlists and exceptions notifier as suggested by Andi Kleen.
26 * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes
27 * interface to access function arguments.
28 * 2004-Sep Prasanna S Panchamukhi <prasanna@in.ibm.com> Changed Kprobes
29 * exceptions notifier to be first on the priority list.
Hien Nguyenb94cce92005-06-23 00:09:19 -070030 * 2005-May Hien Nguyen <hien@us.ibm.com>, Jim Keniston
31 * <jkenisto@us.ibm.com> and Prasanna S Panchamukhi
32 * <prasanna@in.ibm.com> added function-return probes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34#include <linux/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/hash.h>
36#include <linux/init.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080037#include <linux/slab.h>
Randy Dunlape3869792007-05-08 00:27:01 -070038#include <linux/stddef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070040#include <linux/moduleloader.h>
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -070041#include <linux/kallsyms.h>
Masami Hiramatsub4c6c342006-12-06 20:38:11 -080042#include <linux/freezer.h>
Srinivasa Ds346fd592007-02-20 13:57:54 -080043#include <linux/seq_file.h>
44#include <linux/debugfs.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070045#include <linux/kdebug.h>
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070046
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -070047#include <asm-generic/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/cacheflush.h>
49#include <asm/errno.h>
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070050#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#define KPROBE_HASH_BITS 6
53#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS)
54
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -070055
56/*
57 * Some oddball architectures like 64bit powerpc have function descriptors
58 * so this must be overridable.
59 */
60#ifndef kprobe_lookup_name
61#define kprobe_lookup_name(name, addr) \
62 addr = ((kprobe_opcode_t *)(kallsyms_lookup_name(name)))
63#endif
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static struct hlist_head kprobe_table[KPROBE_TABLE_SIZE];
Hien Nguyenb94cce92005-06-23 00:09:19 -070066static struct hlist_head kretprobe_inst_table[KPROBE_TABLE_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070068/* NOTE: change this value only with kprobe_mutex held */
69static bool kprobe_enabled;
70
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -080071DEFINE_MUTEX(kprobe_mutex); /* Protects kprobe_table */
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -080072DEFINE_SPINLOCK(kretprobe_lock); /* Protects kretprobe_inst_table */
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -080073static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Srinivasa Ds3d8d9962008-04-28 02:14:26 -070075/*
76 * Normally, functions that we'd want to prohibit kprobes in, are marked
77 * __kprobes. But, there are cases where such functions already belong to
78 * a different section (__sched for preempt_schedule)
79 *
80 * For such cases, we now have a blacklist
81 */
82struct kprobe_blackpoint kprobe_blacklist[] = {
83 {"preempt_schedule",},
84 {NULL} /* Terminator */
85};
86
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -080087#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070088/*
89 * kprobe->ainsn.insn points to the copy of the instruction to be
90 * single-stepped. x86_64, POWER4 and above have no-exec support and
91 * stepping on the instruction on a vmalloced/kmalloced/data page
92 * is a recipe for disaster
93 */
94#define INSNS_PER_PAGE (PAGE_SIZE/(MAX_INSN_SIZE * sizeof(kprobe_opcode_t)))
95
96struct kprobe_insn_page {
97 struct hlist_node hlist;
98 kprobe_opcode_t *insns; /* Page of instruction slots */
99 char slot_used[INSNS_PER_PAGE];
100 int nused;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800101 int ngarbage;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700102};
103
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800104enum kprobe_slot_state {
105 SLOT_CLEAN = 0,
106 SLOT_DIRTY = 1,
107 SLOT_USED = 2,
108};
109
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700110static struct hlist_head kprobe_insn_pages;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800111static int kprobe_garbage_slots;
112static int collect_garbage_slots(void);
113
114static int __kprobes check_safety(void)
115{
116 int ret = 0;
117#if defined(CONFIG_PREEMPT) && defined(CONFIG_PM)
118 ret = freeze_processes();
119 if (ret == 0) {
120 struct task_struct *p, *q;
121 do_each_thread(p, q) {
122 if (p != current && p->state == TASK_RUNNING &&
123 p->pid != 0) {
124 printk("Check failed: %s is running\n",p->comm);
125 ret = -1;
126 goto loop_end;
127 }
128 } while_each_thread(p, q);
129 }
130loop_end:
131 thaw_processes();
132#else
133 synchronize_sched();
134#endif
135 return ret;
136}
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700137
138/**
139 * get_insn_slot() - Find a slot on an executable page for an instruction.
140 * We allocate an executable page if there's no room on existing ones.
141 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700142kprobe_opcode_t __kprobes *get_insn_slot(void)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700143{
144 struct kprobe_insn_page *kip;
145 struct hlist_node *pos;
146
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700147 retry:
Christoph Hellwigb0bb5012007-05-08 00:34:11 -0700148 hlist_for_each_entry(kip, pos, &kprobe_insn_pages, hlist) {
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700149 if (kip->nused < INSNS_PER_PAGE) {
150 int i;
151 for (i = 0; i < INSNS_PER_PAGE; i++) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800152 if (kip->slot_used[i] == SLOT_CLEAN) {
153 kip->slot_used[i] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700154 kip->nused++;
155 return kip->insns + (i * MAX_INSN_SIZE);
156 }
157 }
158 /* Surprise! No unused slots. Fix kip->nused. */
159 kip->nused = INSNS_PER_PAGE;
160 }
161 }
162
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800163 /* If there are any garbage slots, collect it and try again. */
164 if (kprobe_garbage_slots && collect_garbage_slots() == 0) {
165 goto retry;
166 }
167 /* All out of space. Need to allocate a new page. Use slot 0. */
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700168 kip = kmalloc(sizeof(struct kprobe_insn_page), GFP_KERNEL);
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700169 if (!kip)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700170 return NULL;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700171
172 /*
173 * Use module_alloc so this page is within +/- 2GB of where the
174 * kernel image and loaded module images reside. This is required
175 * so x86_64 can correctly handle the %rip-relative fixups.
176 */
177 kip->insns = module_alloc(PAGE_SIZE);
178 if (!kip->insns) {
179 kfree(kip);
180 return NULL;
181 }
182 INIT_HLIST_NODE(&kip->hlist);
183 hlist_add_head(&kip->hlist, &kprobe_insn_pages);
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800184 memset(kip->slot_used, SLOT_CLEAN, INSNS_PER_PAGE);
185 kip->slot_used[0] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700186 kip->nused = 1;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800187 kip->ngarbage = 0;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700188 return kip->insns;
189}
190
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800191/* Return 1 if all garbages are collected, otherwise 0. */
192static int __kprobes collect_one_slot(struct kprobe_insn_page *kip, int idx)
193{
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800194 kip->slot_used[idx] = SLOT_CLEAN;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800195 kip->nused--;
196 if (kip->nused == 0) {
197 /*
198 * Page is no longer in use. Free it unless
199 * it's the last one. We keep the last one
200 * so as not to have to set it up again the
201 * next time somebody inserts a probe.
202 */
203 hlist_del(&kip->hlist);
204 if (hlist_empty(&kprobe_insn_pages)) {
205 INIT_HLIST_NODE(&kip->hlist);
206 hlist_add_head(&kip->hlist,
207 &kprobe_insn_pages);
208 } else {
209 module_free(NULL, kip->insns);
210 kfree(kip);
211 }
212 return 1;
213 }
214 return 0;
215}
216
217static int __kprobes collect_garbage_slots(void)
218{
219 struct kprobe_insn_page *kip;
220 struct hlist_node *pos, *next;
221
222 /* Ensure no-one is preepmted on the garbages */
223 if (check_safety() != 0)
224 return -EAGAIN;
225
Christoph Hellwigb0bb5012007-05-08 00:34:11 -0700226 hlist_for_each_entry_safe(kip, pos, next, &kprobe_insn_pages, hlist) {
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800227 int i;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800228 if (kip->ngarbage == 0)
229 continue;
230 kip->ngarbage = 0; /* we will collect all garbages */
231 for (i = 0; i < INSNS_PER_PAGE; i++) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800232 if (kip->slot_used[i] == SLOT_DIRTY &&
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800233 collect_one_slot(kip, i))
234 break;
235 }
236 }
237 kprobe_garbage_slots = 0;
238 return 0;
239}
240
241void __kprobes free_insn_slot(kprobe_opcode_t * slot, int dirty)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700242{
243 struct kprobe_insn_page *kip;
244 struct hlist_node *pos;
245
Christoph Hellwigb0bb5012007-05-08 00:34:11 -0700246 hlist_for_each_entry(kip, pos, &kprobe_insn_pages, hlist) {
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700247 if (kip->insns <= slot &&
248 slot < kip->insns + (INSNS_PER_PAGE * MAX_INSN_SIZE)) {
249 int i = (slot - kip->insns) / MAX_INSN_SIZE;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800250 if (dirty) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800251 kip->slot_used[i] = SLOT_DIRTY;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800252 kip->ngarbage++;
253 } else {
254 collect_one_slot(kip, i);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700255 }
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800256 break;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700257 }
258 }
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700259
260 if (dirty && ++kprobe_garbage_slots > INSNS_PER_PAGE)
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800261 collect_garbage_slots();
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700262}
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -0800263#endif
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700264
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800265/* We have preemption disabled.. so it is safe to use __ versions */
266static inline void set_kprobe_instance(struct kprobe *kp)
267{
268 __get_cpu_var(kprobe_instance) = kp;
269}
270
271static inline void reset_kprobe_instance(void)
272{
273 __get_cpu_var(kprobe_instance) = NULL;
274}
275
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800276/*
277 * This routine is called either:
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800278 * - under the kprobe_mutex - during kprobe_[un]register()
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800279 * OR
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800280 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800281 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700282struct kprobe __kprobes *get_kprobe(void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct hlist_head *head;
285 struct hlist_node *node;
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800286 struct kprobe *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800289 hlist_for_each_entry_rcu(p, node, head, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (p->addr == addr)
291 return p;
292 }
293 return NULL;
294}
295
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700296/*
297 * Aggregate handlers for multiple kprobes support - these handlers
298 * take care of invoking the individual kprobe handlers on p->list
299 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700300static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700301{
302 struct kprobe *kp;
303
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800304 list_for_each_entry_rcu(kp, &p->list, list) {
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700305 if (kp->pre_handler) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800306 set_kprobe_instance(kp);
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700307 if (kp->pre_handler(kp, regs))
308 return 1;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700309 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800310 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700311 }
312 return 0;
313}
314
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700315static void __kprobes aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
316 unsigned long flags)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700317{
318 struct kprobe *kp;
319
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800320 list_for_each_entry_rcu(kp, &p->list, list) {
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700321 if (kp->post_handler) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800322 set_kprobe_instance(kp);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700323 kp->post_handler(kp, regs, flags);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800324 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700325 }
326 }
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700327}
328
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700329static int __kprobes aggr_fault_handler(struct kprobe *p, struct pt_regs *regs,
330 int trapnr)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700331{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800332 struct kprobe *cur = __get_cpu_var(kprobe_instance);
333
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700334 /*
335 * if we faulted "during" the execution of a user specified
336 * probe handler, invoke just that probe's fault handler
337 */
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800338 if (cur && cur->fault_handler) {
339 if (cur->fault_handler(cur, regs, trapnr))
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700340 return 1;
341 }
342 return 0;
343}
344
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700345static int __kprobes aggr_break_handler(struct kprobe *p, struct pt_regs *regs)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700346{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800347 struct kprobe *cur = __get_cpu_var(kprobe_instance);
348 int ret = 0;
349
350 if (cur && cur->break_handler) {
351 if (cur->break_handler(cur, regs))
352 ret = 1;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700353 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800354 reset_kprobe_instance();
355 return ret;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700356}
357
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800358/* Walks the list and increments nmissed count for multiprobe case */
359void __kprobes kprobes_inc_nmissed_count(struct kprobe *p)
360{
361 struct kprobe *kp;
362 if (p->pre_handler != aggr_pre_handler) {
363 p->nmissed++;
364 } else {
365 list_for_each_entry_rcu(kp, &p->list, list)
366 kp->nmissed++;
367 }
368 return;
369}
370
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800371/* Called with kretprobe_lock held */
bibo,mao99219a32006-10-02 02:17:35 -0700372void __kprobes recycle_rp_inst(struct kretprobe_instance *ri,
373 struct hlist_head *head)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700374{
375 /* remove rp inst off the rprobe_inst_table */
376 hlist_del(&ri->hlist);
377 if (ri->rp) {
378 /* remove rp inst off the used list */
379 hlist_del(&ri->uflist);
380 /* put rp inst back onto the free list */
381 INIT_HLIST_NODE(&ri->uflist);
382 hlist_add_head(&ri->uflist, &ri->rp->free_instances);
383 } else
384 /* Unregistering */
bibo,mao99219a32006-10-02 02:17:35 -0700385 hlist_add_head(&ri->hlist, head);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700386}
387
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700388struct hlist_head __kprobes *kretprobe_inst_table_head(struct task_struct *tsk)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700389{
390 return &kretprobe_inst_table[hash_ptr(tsk, KPROBE_HASH_BITS)];
391}
392
Hien Nguyenb94cce92005-06-23 00:09:19 -0700393/*
bibo maoc6fd91f2006-03-26 01:38:20 -0800394 * This function is called from finish_task_switch when task tk becomes dead,
395 * so that we can recycle any function-return probe instances associated
396 * with this task. These left over instances represent probed functions
397 * that have been called but will never return.
Hien Nguyenb94cce92005-06-23 00:09:19 -0700398 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700399void __kprobes kprobe_flush_task(struct task_struct *tk)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700400{
bibo,mao62c27be2006-10-02 02:17:33 -0700401 struct kretprobe_instance *ri;
bibo,mao99219a32006-10-02 02:17:35 -0700402 struct hlist_head *head, empty_rp;
Rusty Lynch802eae72005-06-27 15:17:08 -0700403 struct hlist_node *node, *tmp;
Hien Nguyen0aa55e42005-06-23 00:09:26 -0700404 unsigned long flags = 0;
Rusty Lynch802eae72005-06-27 15:17:08 -0700405
bibo,mao99219a32006-10-02 02:17:35 -0700406 INIT_HLIST_HEAD(&empty_rp);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800407 spin_lock_irqsave(&kretprobe_lock, flags);
bibo,mao62c27be2006-10-02 02:17:33 -0700408 head = kretprobe_inst_table_head(tk);
409 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
410 if (ri->task == tk)
bibo,mao99219a32006-10-02 02:17:35 -0700411 recycle_rp_inst(ri, &empty_rp);
bibo,mao62c27be2006-10-02 02:17:33 -0700412 }
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800413 spin_unlock_irqrestore(&kretprobe_lock, flags);
bibo,mao99219a32006-10-02 02:17:35 -0700414
415 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
416 hlist_del(&ri->hlist);
417 kfree(ri);
418 }
Hien Nguyenb94cce92005-06-23 00:09:19 -0700419}
420
Hien Nguyenb94cce92005-06-23 00:09:19 -0700421static inline void free_rp_inst(struct kretprobe *rp)
422{
423 struct kretprobe_instance *ri;
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700424 struct hlist_node *pos, *next;
425
426 hlist_for_each_entry_safe(ri, pos, next, &rp->free_instances, uflist) {
Hien Nguyenb94cce92005-06-23 00:09:19 -0700427 hlist_del(&ri->uflist);
428 kfree(ri);
429 }
430}
431
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700432/*
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700433 * Keep all fields in the kprobe consistent
434 */
435static inline void copy_kprobe(struct kprobe *old_p, struct kprobe *p)
436{
437 memcpy(&p->opcode, &old_p->opcode, sizeof(kprobe_opcode_t));
438 memcpy(&p->ainsn, &old_p->ainsn, sizeof(struct arch_specific_insn));
439}
440
441/*
442* Add the new probe to old_p->list. Fail if this is the
443* second jprobe at the address - two jprobes can't coexist
444*/
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700445static int __kprobes add_new_kprobe(struct kprobe *old_p, struct kprobe *p)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700446{
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700447 if (p->break_handler) {
mao, bibo36721652006-06-26 00:25:22 -0700448 if (old_p->break_handler)
449 return -EEXIST;
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800450 list_add_tail_rcu(&p->list, &old_p->list);
mao, bibo36721652006-06-26 00:25:22 -0700451 old_p->break_handler = aggr_break_handler;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700452 } else
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800453 list_add_rcu(&p->list, &old_p->list);
mao, bibo36721652006-06-26 00:25:22 -0700454 if (p->post_handler && !old_p->post_handler)
455 old_p->post_handler = aggr_post_handler;
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700456 return 0;
457}
458
459/*
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700460 * Fill in the required fields of the "manager kprobe". Replace the
461 * earlier kprobe in the hlist with the manager kprobe
462 */
463static inline void add_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
464{
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700465 copy_kprobe(p, ap);
bibo, maoa9ad9652006-07-30 03:03:26 -0700466 flush_insn_slot(ap);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700467 ap->addr = p->addr;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700468 ap->pre_handler = aggr_pre_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700469 ap->fault_handler = aggr_fault_handler;
mao, bibo36721652006-06-26 00:25:22 -0700470 if (p->post_handler)
471 ap->post_handler = aggr_post_handler;
472 if (p->break_handler)
473 ap->break_handler = aggr_break_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700474
475 INIT_LIST_HEAD(&ap->list);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800476 list_add_rcu(&p->list, &ap->list);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700477
Keshavamurthy Anil Sadad0f32005-12-12 00:37:12 -0800478 hlist_replace_rcu(&p->hlist, &ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700479}
480
481/*
482 * This is the second or subsequent kprobe at the address - handle
483 * the intricacies
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700484 */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700485static int __kprobes register_aggr_kprobe(struct kprobe *old_p,
486 struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700487{
488 int ret = 0;
489 struct kprobe *ap;
490
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700491 if (old_p->pre_handler == aggr_pre_handler) {
492 copy_kprobe(old_p, p);
493 ret = add_new_kprobe(old_p, p);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700494 } else {
Keshavamurthy Anil Sa0d50062006-01-09 20:52:46 -0800495 ap = kzalloc(sizeof(struct kprobe), GFP_KERNEL);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700496 if (!ap)
497 return -ENOMEM;
498 add_aggr_kprobe(ap, old_p);
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -0700499 copy_kprobe(ap, p);
500 ret = add_new_kprobe(ap, p);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700501 }
502 return ret;
503}
504
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700505static int __kprobes in_kprobes_functions(unsigned long addr)
506{
Srinivasa Ds3d8d9962008-04-28 02:14:26 -0700507 struct kprobe_blackpoint *kb;
508
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700509 if (addr >= (unsigned long)__kprobes_text_start &&
510 addr < (unsigned long)__kprobes_text_end)
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700511 return -EINVAL;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -0700512 /*
513 * If there exists a kprobe_blacklist, verify and
514 * fail any probe registration in the prohibited area
515 */
516 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
517 if (kb->start_addr) {
518 if (addr >= kb->start_addr &&
519 addr < (kb->start_addr + kb->range))
520 return -EINVAL;
521 }
522 }
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700523 return 0;
524}
525
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -0800526/*
527 * If we have a symbol_name argument, look it up and add the offset field
528 * to it. This way, we can specify a relative address to a symbol.
529 */
530static kprobe_opcode_t __kprobes *kprobe_addr(struct kprobe *p)
531{
532 kprobe_opcode_t *addr = p->addr;
533 if (p->symbol_name) {
534 if (addr)
535 return NULL;
536 kprobe_lookup_name(p->symbol_name, addr);
537 }
538
539 if (!addr)
540 return NULL;
541 return (kprobe_opcode_t *)(((char *)addr) + p->offset);
542}
543
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800544static int __kprobes __register_kprobe(struct kprobe *p,
545 unsigned long called_from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 int ret = 0;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700548 struct kprobe *old_p;
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800549 struct module *probed_mod;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -0800550 kprobe_opcode_t *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -0800552 addr = kprobe_addr(p);
553 if (!addr)
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -0700554 return -EINVAL;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -0800555 p->addr = addr;
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -0700556
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700557 if (!kernel_text_address((unsigned long) p->addr) ||
558 in_kprobes_functions((unsigned long) p->addr))
Mao, Bibob3e55c72005-12-12 00:37:00 -0800559 return -EINVAL;
560
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800561 p->mod_refcounted = 0;
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700562
563 /*
564 * Check if are we probing a module.
565 */
566 probed_mod = module_text_address((unsigned long) p->addr);
567 if (probed_mod) {
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800568 struct module *calling_mod = module_text_address(called_from);
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700569 /*
570 * We must allow modules to probe themself and in this case
571 * avoid incrementing the module refcount, so as to allow
572 * unloading of self probing modules.
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800573 */
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700574 if (calling_mod && calling_mod != probed_mod) {
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800575 if (unlikely(!try_module_get(probed_mod)))
576 return -EINVAL;
577 p->mod_refcounted = 1;
578 } else
579 probed_mod = NULL;
580 }
Mao, Bibob3e55c72005-12-12 00:37:00 -0800581
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800582 p->nmissed = 0;
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800583 mutex_lock(&kprobe_mutex);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700584 old_p = get_kprobe(p->addr);
585 if (old_p) {
586 ret = register_aggr_kprobe(old_p, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 goto out;
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700590 ret = arch_prepare_kprobe(p);
591 if (ret)
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800592 goto out;
593
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700594 INIT_HLIST_NODE(&p->hlist);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800595 hlist_add_head_rcu(&p->hlist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
597
Christoph Hellwig74a0b572007-10-16 01:24:07 -0700598 if (kprobe_enabled)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -0700599 arch_arm_kprobe(p);
Christoph Hellwig74a0b572007-10-16 01:24:07 -0700600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601out:
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800602 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800603
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800604 if (ret && probed_mod)
605 module_put(probed_mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return ret;
607}
608
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800609int __kprobes register_kprobe(struct kprobe *p)
610{
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700611 return __register_kprobe(p, (unsigned long)__builtin_return_address(0));
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800612}
613
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700614void __kprobes unregister_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Mao, Bibob3e55c72005-12-12 00:37:00 -0800616 struct module *mod;
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800617 struct kprobe *old_p, *list_p;
618 int cleanup_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700619
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800620 mutex_lock(&kprobe_mutex);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -0700621 old_p = get_kprobe(p->addr);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800622 if (unlikely(!old_p)) {
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800623 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800624 return;
625 }
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800626 if (p != old_p) {
627 list_for_each_entry_rcu(list_p, &old_p->list, list)
628 if (list_p == p)
629 /* kprobe p is a valid probe */
630 goto valid_p;
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800631 mutex_unlock(&kprobe_mutex);
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800632 return;
633 }
634valid_p:
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700635 if (old_p == p ||
636 (old_p->pre_handler == aggr_pre_handler &&
637 p->list.next == &old_p->list && p->list.prev == &old_p->list)) {
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -0700638 /*
639 * Only probe on the hash list. Disarm only if kprobes are
640 * enabled - otherwise, the breakpoint would already have
641 * been removed. We save on flushing icache.
642 */
643 if (kprobe_enabled)
644 arch_disarm_kprobe(p);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800645 hlist_del_rcu(&old_p->hlist);
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800646 cleanup_p = 1;
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800647 } else {
648 list_del_rcu(&p->list);
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800649 cleanup_p = 0;
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800650 }
Mao, Bibob3e55c72005-12-12 00:37:00 -0800651
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -0800652 mutex_unlock(&kprobe_mutex);
Mao, Bibob3e55c72005-12-12 00:37:00 -0800653
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800654 synchronize_sched();
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700655 if (p->mod_refcounted) {
656 mod = module_text_address((unsigned long)p->addr);
657 if (mod)
658 module_put(mod);
659 }
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800660
661 if (cleanup_p) {
Keshavamurthy Anil Sf709b122006-01-09 20:52:44 -0800662 if (p != old_p) {
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800663 list_del_rcu(&p->list);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800664 kfree(old_p);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800665 }
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -0800666 arch_remove_kprobe(p);
mao, bibo36721652006-06-26 00:25:22 -0700667 } else {
668 mutex_lock(&kprobe_mutex);
669 if (p->break_handler)
670 old_p->break_handler = NULL;
671 if (p->post_handler){
672 list_for_each_entry_rcu(list_p, &old_p->list, list){
673 if (list_p->post_handler){
674 cleanup_p = 2;
675 break;
676 }
677 }
678 if (cleanup_p == 0)
679 old_p->post_handler = NULL;
680 }
681 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
685static struct notifier_block kprobe_exceptions_nb = {
686 .notifier_call = kprobe_exceptions_notify,
Anil S Keshavamurthy3d5631e2006-06-26 00:25:28 -0700687 .priority = 0x7fffffff /* we need to be notified first */
688};
689
Michael Ellerman3d7e3382007-07-19 01:48:11 -0700690unsigned long __weak arch_deref_entry_point(void *entry)
691{
692 return (unsigned long)entry;
693}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700695int __kprobes register_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Michael Ellerman3d7e3382007-07-19 01:48:11 -0700697 unsigned long addr = arch_deref_entry_point(jp->entry);
698
699 if (!kernel_text_address(addr))
700 return -EINVAL;
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /* Todo: Verify probepoint is a function entry point */
703 jp->kp.pre_handler = setjmp_pre_handler;
704 jp->kp.break_handler = longjmp_break_handler;
705
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800706 return __register_kprobe(&jp->kp,
707 (unsigned long)__builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700710void __kprobes unregister_jprobe(struct jprobe *jp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
712 unregister_kprobe(&jp->kp);
713}
714
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -0800715#ifdef CONFIG_KRETPROBES
Adrian Bunke65cefe2006-02-03 03:03:42 -0800716/*
717 * This kprobe pre_handler is registered with every kretprobe. When probe
718 * hits it will set up the return probe.
719 */
720static int __kprobes pre_handler_kretprobe(struct kprobe *p,
721 struct pt_regs *regs)
722{
723 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
724 unsigned long flags = 0;
725
726 /*TODO: consider to only swap the RA after the last pre_handler fired */
727 spin_lock_irqsave(&kretprobe_lock, flags);
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700728 if (!hlist_empty(&rp->free_instances)) {
729 struct kretprobe_instance *ri;
730
731 ri = hlist_entry(rp->free_instances.first,
732 struct kretprobe_instance, uflist);
733 ri->rp = rp;
734 ri->task = current;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -0800735
736 if (rp->entry_handler && rp->entry_handler(ri, regs)) {
737 spin_unlock_irqrestore(&kretprobe_lock, flags);
738 return 0;
739 }
740
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700741 arch_prepare_kretprobe(ri, regs);
742
743 /* XXX(hch): why is there no hlist_move_head? */
744 hlist_del(&ri->uflist);
745 hlist_add_head(&ri->uflist, &ri->rp->used_instances);
746 hlist_add_head(&ri->hlist, kretprobe_inst_table_head(ri->task));
747 } else
748 rp->nmissed++;
Adrian Bunke65cefe2006-02-03 03:03:42 -0800749 spin_unlock_irqrestore(&kretprobe_lock, flags);
750 return 0;
751}
752
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700753int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700754{
755 int ret = 0;
756 struct kretprobe_instance *inst;
757 int i;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -0800758 void *addr;
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700759
760 if (kretprobe_blacklist_size) {
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -0800761 addr = kprobe_addr(&rp->kp);
762 if (!addr)
763 return -EINVAL;
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700764
765 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
766 if (kretprobe_blacklist[i].addr == addr)
767 return -EINVAL;
768 }
769 }
Hien Nguyenb94cce92005-06-23 00:09:19 -0700770
771 rp->kp.pre_handler = pre_handler_kretprobe;
Ananth N Mavinakayanahalli7522a842006-04-20 02:43:11 -0700772 rp->kp.post_handler = NULL;
773 rp->kp.fault_handler = NULL;
774 rp->kp.break_handler = NULL;
Hien Nguyenb94cce92005-06-23 00:09:19 -0700775
776 /* Pre-allocate memory for max kretprobe instances */
777 if (rp->maxactive <= 0) {
778#ifdef CONFIG_PREEMPT
779 rp->maxactive = max(10, 2 * NR_CPUS);
780#else
781 rp->maxactive = NR_CPUS;
782#endif
783 }
784 INIT_HLIST_HEAD(&rp->used_instances);
785 INIT_HLIST_HEAD(&rp->free_instances);
786 for (i = 0; i < rp->maxactive; i++) {
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -0800787 inst = kmalloc(sizeof(struct kretprobe_instance) +
788 rp->data_size, GFP_KERNEL);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700789 if (inst == NULL) {
790 free_rp_inst(rp);
791 return -ENOMEM;
792 }
793 INIT_HLIST_NODE(&inst->uflist);
794 hlist_add_head(&inst->uflist, &rp->free_instances);
795 }
796
797 rp->nmissed = 0;
798 /* Establish function entry probe point */
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -0800799 if ((ret = __register_kprobe(&rp->kp,
800 (unsigned long)__builtin_return_address(0))) != 0)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700801 free_rp_inst(rp);
802 return ret;
803}
804
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -0800805#else /* CONFIG_KRETPROBES */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700806int __kprobes register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700807{
808 return -ENOSYS;
809}
810
Srinivasa Ds346fd592007-02-20 13:57:54 -0800811static int __kprobes pre_handler_kretprobe(struct kprobe *p,
812 struct pt_regs *regs)
813{
814 return 0;
815}
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -0800816#endif /* CONFIG_KRETPROBES */
Hien Nguyenb94cce92005-06-23 00:09:19 -0700817
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700818void __kprobes unregister_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -0700819{
820 unsigned long flags;
821 struct kretprobe_instance *ri;
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700822 struct hlist_node *pos, *next;
Hien Nguyenb94cce92005-06-23 00:09:19 -0700823
824 unregister_kprobe(&rp->kp);
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700825
Hien Nguyenb94cce92005-06-23 00:09:19 -0700826 /* No race here */
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800827 spin_lock_irqsave(&kretprobe_lock, flags);
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700828 hlist_for_each_entry_safe(ri, pos, next, &rp->used_instances, uflist) {
Hien Nguyenb94cce92005-06-23 00:09:19 -0700829 ri->rp = NULL;
830 hlist_del(&ri->uflist);
831 }
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800832 spin_unlock_irqrestore(&kretprobe_lock, flags);
Ananth N Mavinakayanahalli278ff952006-02-03 03:03:43 -0800833 free_rp_inst(rp);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700834}
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836static int __init init_kprobes(void)
837{
838 int i, err = 0;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -0700839 unsigned long offset = 0, size = 0;
840 char *modname, namebuf[128];
841 const char *symbol_name;
842 void *addr;
843 struct kprobe_blackpoint *kb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 /* FIXME allocate the probe table, currently defined statically */
846 /* initialize all list heads */
Hien Nguyenb94cce92005-06-23 00:09:19 -0700847 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 INIT_HLIST_HEAD(&kprobe_table[i]);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700849 INIT_HLIST_HEAD(&kretprobe_inst_table[i]);
850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Srinivasa Ds3d8d9962008-04-28 02:14:26 -0700852 /*
853 * Lookup and populate the kprobe_blacklist.
854 *
855 * Unlike the kretprobe blacklist, we'll need to determine
856 * the range of addresses that belong to the said functions,
857 * since a kprobe need not necessarily be at the beginning
858 * of a function.
859 */
860 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
861 kprobe_lookup_name(kb->name, addr);
862 if (!addr)
863 continue;
864
865 kb->start_addr = (unsigned long)addr;
866 symbol_name = kallsyms_lookup(kb->start_addr,
867 &size, &offset, &modname, namebuf);
868 if (!symbol_name)
869 kb->range = 0;
870 else
871 kb->range = size;
872 }
873
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700874 if (kretprobe_blacklist_size) {
875 /* lookup the function address from its name */
876 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
877 kprobe_lookup_name(kretprobe_blacklist[i].name,
878 kretprobe_blacklist[i].addr);
879 if (!kretprobe_blacklist[i].addr)
880 printk("kretprobe: lookup failed: %s\n",
881 kretprobe_blacklist[i].name);
882 }
883 }
884
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -0700885 /* By default, kprobes are enabled */
886 kprobe_enabled = true;
887
Rusty Lynch67729262005-07-05 18:54:50 -0700888 err = arch_init_kprobes();
Rusty Lynch802eae72005-06-27 15:17:08 -0700889 if (!err)
890 err = register_die_notifier(&kprobe_exceptions_nb);
891
Ananth N Mavinakayanahalli8c1c9352008-01-30 13:32:53 +0100892 if (!err)
893 init_test_probes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return err;
895}
896
Srinivasa Ds346fd592007-02-20 13:57:54 -0800897#ifdef CONFIG_DEBUG_FS
898static void __kprobes report_probe(struct seq_file *pi, struct kprobe *p,
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -0700899 const char *sym, int offset,char *modname)
Srinivasa Ds346fd592007-02-20 13:57:54 -0800900{
901 char *kprobe_type;
902
903 if (p->pre_handler == pre_handler_kretprobe)
904 kprobe_type = "r";
905 else if (p->pre_handler == setjmp_pre_handler)
906 kprobe_type = "j";
907 else
908 kprobe_type = "k";
909 if (sym)
910 seq_printf(pi, "%p %s %s+0x%x %s\n", p->addr, kprobe_type,
911 sym, offset, (modname ? modname : " "));
912 else
913 seq_printf(pi, "%p %s %p\n", p->addr, kprobe_type, p->addr);
914}
915
916static void __kprobes *kprobe_seq_start(struct seq_file *f, loff_t *pos)
917{
918 return (*pos < KPROBE_TABLE_SIZE) ? pos : NULL;
919}
920
921static void __kprobes *kprobe_seq_next(struct seq_file *f, void *v, loff_t *pos)
922{
923 (*pos)++;
924 if (*pos >= KPROBE_TABLE_SIZE)
925 return NULL;
926 return pos;
927}
928
929static void __kprobes kprobe_seq_stop(struct seq_file *f, void *v)
930{
931 /* Nothing to do */
932}
933
934static int __kprobes show_kprobe_addr(struct seq_file *pi, void *v)
935{
936 struct hlist_head *head;
937 struct hlist_node *node;
938 struct kprobe *p, *kp;
939 const char *sym = NULL;
940 unsigned int i = *(loff_t *) v;
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700941 unsigned long offset = 0;
Srinivasa Ds346fd592007-02-20 13:57:54 -0800942 char *modname, namebuf[128];
943
944 head = &kprobe_table[i];
945 preempt_disable();
946 hlist_for_each_entry_rcu(p, node, head, hlist) {
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700947 sym = kallsyms_lookup((unsigned long)p->addr, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -0800948 &offset, &modname, namebuf);
949 if (p->pre_handler == aggr_pre_handler) {
950 list_for_each_entry_rcu(kp, &p->list, list)
951 report_probe(pi, kp, sym, offset, modname);
952 } else
953 report_probe(pi, p, sym, offset, modname);
954 }
955 preempt_enable();
956 return 0;
957}
958
959static struct seq_operations kprobes_seq_ops = {
960 .start = kprobe_seq_start,
961 .next = kprobe_seq_next,
962 .stop = kprobe_seq_stop,
963 .show = show_kprobe_addr
964};
965
966static int __kprobes kprobes_open(struct inode *inode, struct file *filp)
967{
968 return seq_open(filp, &kprobes_seq_ops);
969}
970
971static struct file_operations debugfs_kprobes_operations = {
972 .open = kprobes_open,
973 .read = seq_read,
974 .llseek = seq_lseek,
975 .release = seq_release,
976};
977
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -0700978static void __kprobes enable_all_kprobes(void)
979{
980 struct hlist_head *head;
981 struct hlist_node *node;
982 struct kprobe *p;
983 unsigned int i;
984
985 mutex_lock(&kprobe_mutex);
986
987 /* If kprobes are already enabled, just return */
988 if (kprobe_enabled)
989 goto already_enabled;
990
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -0700991 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
992 head = &kprobe_table[i];
993 hlist_for_each_entry_rcu(p, node, head, hlist)
994 arch_arm_kprobe(p);
995 }
996
997 kprobe_enabled = true;
998 printk(KERN_INFO "Kprobes globally enabled\n");
999
1000already_enabled:
1001 mutex_unlock(&kprobe_mutex);
1002 return;
1003}
1004
1005static void __kprobes disable_all_kprobes(void)
1006{
1007 struct hlist_head *head;
1008 struct hlist_node *node;
1009 struct kprobe *p;
1010 unsigned int i;
1011
1012 mutex_lock(&kprobe_mutex);
1013
1014 /* If kprobes are already disabled, just return */
1015 if (!kprobe_enabled)
1016 goto already_disabled;
1017
1018 kprobe_enabled = false;
1019 printk(KERN_INFO "Kprobes globally disabled\n");
1020 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1021 head = &kprobe_table[i];
1022 hlist_for_each_entry_rcu(p, node, head, hlist) {
1023 if (!arch_trampoline_kprobe(p))
1024 arch_disarm_kprobe(p);
1025 }
1026 }
1027
1028 mutex_unlock(&kprobe_mutex);
1029 /* Allow all currently running kprobes to complete */
1030 synchronize_sched();
Christoph Hellwig74a0b572007-10-16 01:24:07 -07001031 return;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001032
1033already_disabled:
1034 mutex_unlock(&kprobe_mutex);
1035 return;
1036}
1037
1038/*
1039 * XXX: The debugfs bool file interface doesn't allow for callbacks
1040 * when the bool state is switched. We can reuse that facility when
1041 * available
1042 */
1043static ssize_t read_enabled_file_bool(struct file *file,
1044 char __user *user_buf, size_t count, loff_t *ppos)
1045{
1046 char buf[3];
1047
1048 if (kprobe_enabled)
1049 buf[0] = '1';
1050 else
1051 buf[0] = '0';
1052 buf[1] = '\n';
1053 buf[2] = 0x00;
1054 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
1055}
1056
1057static ssize_t write_enabled_file_bool(struct file *file,
1058 const char __user *user_buf, size_t count, loff_t *ppos)
1059{
1060 char buf[32];
1061 int buf_size;
1062
1063 buf_size = min(count, (sizeof(buf)-1));
1064 if (copy_from_user(buf, user_buf, buf_size))
1065 return -EFAULT;
1066
1067 switch (buf[0]) {
1068 case 'y':
1069 case 'Y':
1070 case '1':
1071 enable_all_kprobes();
1072 break;
1073 case 'n':
1074 case 'N':
1075 case '0':
1076 disable_all_kprobes();
1077 break;
1078 }
1079
1080 return count;
1081}
1082
1083static struct file_operations fops_kp = {
1084 .read = read_enabled_file_bool,
1085 .write = write_enabled_file_bool,
1086};
1087
Srinivasa Ds346fd592007-02-20 13:57:54 -08001088static int __kprobes debugfs_kprobe_init(void)
1089{
1090 struct dentry *dir, *file;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001091 unsigned int value = 1;
Srinivasa Ds346fd592007-02-20 13:57:54 -08001092
1093 dir = debugfs_create_dir("kprobes", NULL);
1094 if (!dir)
1095 return -ENOMEM;
1096
Randy Dunlape3869792007-05-08 00:27:01 -07001097 file = debugfs_create_file("list", 0444, dir, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -08001098 &debugfs_kprobes_operations);
1099 if (!file) {
1100 debugfs_remove(dir);
1101 return -ENOMEM;
1102 }
1103
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001104 file = debugfs_create_file("enabled", 0600, dir,
1105 &value, &fops_kp);
1106 if (!file) {
1107 debugfs_remove(dir);
1108 return -ENOMEM;
1109 }
1110
Srinivasa Ds346fd592007-02-20 13:57:54 -08001111 return 0;
1112}
1113
1114late_initcall(debugfs_kprobe_init);
1115#endif /* CONFIG_DEBUG_FS */
1116
1117module_init(init_kprobes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119EXPORT_SYMBOL_GPL(register_kprobe);
1120EXPORT_SYMBOL_GPL(unregister_kprobe);
1121EXPORT_SYMBOL_GPL(register_jprobe);
1122EXPORT_SYMBOL_GPL(unregister_jprobe);
Peter Chubbcd5bfea2007-08-10 13:01:10 -07001123#ifdef CONFIG_KPROBES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124EXPORT_SYMBOL_GPL(jprobe_return);
Peter Chubbcd5bfea2007-08-10 13:01:10 -07001125#endif
1126
1127#ifdef CONFIG_KPROBES
Hien Nguyenb94cce92005-06-23 00:09:19 -07001128EXPORT_SYMBOL_GPL(register_kretprobe);
1129EXPORT_SYMBOL_GPL(unregister_kretprobe);
Peter Chubbcd5bfea2007-08-10 13:01:10 -07001130#endif