[PATCH] kprobes: cleanup include/asm/kprobes.h
[deliverable/linux.git] / kernel / kprobes.c
CommitLineData
1da177e4
LT
1/*
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.
b94cce92
HN
30 * 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.
1da177e4
LT
33 */
34#include <linux/kprobes.h>
1da177e4
LT
35#include <linux/hash.h>
36#include <linux/init.h>
4e57b681 37#include <linux/slab.h>
1da177e4 38#include <linux/module.h>
9ec4b1f3 39#include <linux/moduleloader.h>
d0aaff97 40#include <asm-generic/sections.h>
1da177e4
LT
41#include <asm/cacheflush.h>
42#include <asm/errno.h>
43#include <asm/kdebug.h>
44
45#define KPROBE_HASH_BITS 6
46#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS)
47
48static struct hlist_head kprobe_table[KPROBE_TABLE_SIZE];
b94cce92 49static struct hlist_head kretprobe_inst_table[KPROBE_TABLE_SIZE];
1da177e4 50
3516a460
AM
51static DEFINE_SPINLOCK(kprobe_lock); /* Protects kprobe_table */
52DEFINE_SPINLOCK(kretprobe_lock); /* Protects kretprobe_inst_table */
e6584523 53static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
1da177e4 54
2d14e39d 55#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
9ec4b1f3
AM
56/*
57 * kprobe->ainsn.insn points to the copy of the instruction to be
58 * single-stepped. x86_64, POWER4 and above have no-exec support and
59 * stepping on the instruction on a vmalloced/kmalloced/data page
60 * is a recipe for disaster
61 */
62#define INSNS_PER_PAGE (PAGE_SIZE/(MAX_INSN_SIZE * sizeof(kprobe_opcode_t)))
63
64struct kprobe_insn_page {
65 struct hlist_node hlist;
66 kprobe_opcode_t *insns; /* Page of instruction slots */
67 char slot_used[INSNS_PER_PAGE];
68 int nused;
69};
70
71static struct hlist_head kprobe_insn_pages;
72
73/**
74 * get_insn_slot() - Find a slot on an executable page for an instruction.
75 * We allocate an executable page if there's no room on existing ones.
76 */
d0aaff97 77kprobe_opcode_t __kprobes *get_insn_slot(void)
9ec4b1f3
AM
78{
79 struct kprobe_insn_page *kip;
80 struct hlist_node *pos;
81
82 hlist_for_each(pos, &kprobe_insn_pages) {
83 kip = hlist_entry(pos, struct kprobe_insn_page, hlist);
84 if (kip->nused < INSNS_PER_PAGE) {
85 int i;
86 for (i = 0; i < INSNS_PER_PAGE; i++) {
87 if (!kip->slot_used[i]) {
88 kip->slot_used[i] = 1;
89 kip->nused++;
90 return kip->insns + (i * MAX_INSN_SIZE);
91 }
92 }
93 /* Surprise! No unused slots. Fix kip->nused. */
94 kip->nused = INSNS_PER_PAGE;
95 }
96 }
97
98 /* All out of space. Need to allocate a new page. Use slot 0.*/
99 kip = kmalloc(sizeof(struct kprobe_insn_page), GFP_KERNEL);
100 if (!kip) {
101 return NULL;
102 }
103
104 /*
105 * Use module_alloc so this page is within +/- 2GB of where the
106 * kernel image and loaded module images reside. This is required
107 * so x86_64 can correctly handle the %rip-relative fixups.
108 */
109 kip->insns = module_alloc(PAGE_SIZE);
110 if (!kip->insns) {
111 kfree(kip);
112 return NULL;
113 }
114 INIT_HLIST_NODE(&kip->hlist);
115 hlist_add_head(&kip->hlist, &kprobe_insn_pages);
116 memset(kip->slot_used, 0, INSNS_PER_PAGE);
117 kip->slot_used[0] = 1;
118 kip->nused = 1;
119 return kip->insns;
120}
121
d0aaff97 122void __kprobes free_insn_slot(kprobe_opcode_t *slot)
9ec4b1f3
AM
123{
124 struct kprobe_insn_page *kip;
125 struct hlist_node *pos;
126
127 hlist_for_each(pos, &kprobe_insn_pages) {
128 kip = hlist_entry(pos, struct kprobe_insn_page, hlist);
129 if (kip->insns <= slot &&
130 slot < kip->insns + (INSNS_PER_PAGE * MAX_INSN_SIZE)) {
131 int i = (slot - kip->insns) / MAX_INSN_SIZE;
132 kip->slot_used[i] = 0;
133 kip->nused--;
134 if (kip->nused == 0) {
135 /*
136 * Page is no longer in use. Free it unless
137 * it's the last one. We keep the last one
138 * so as not to have to set it up again the
139 * next time somebody inserts a probe.
140 */
141 hlist_del(&kip->hlist);
142 if (hlist_empty(&kprobe_insn_pages)) {
143 INIT_HLIST_NODE(&kip->hlist);
144 hlist_add_head(&kip->hlist,
145 &kprobe_insn_pages);
146 } else {
147 module_free(NULL, kip->insns);
148 kfree(kip);
149 }
150 }
151 return;
152 }
153 }
154}
2d14e39d 155#endif
9ec4b1f3 156
e6584523
AM
157/* We have preemption disabled.. so it is safe to use __ versions */
158static inline void set_kprobe_instance(struct kprobe *kp)
159{
160 __get_cpu_var(kprobe_instance) = kp;
161}
162
163static inline void reset_kprobe_instance(void)
164{
165 __get_cpu_var(kprobe_instance) = NULL;
166}
167
3516a460
AM
168/*
169 * This routine is called either:
170 * - under the kprobe_lock spinlock - during kprobe_[un]register()
171 * OR
d217d545 172 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
3516a460 173 */
d0aaff97 174struct kprobe __kprobes *get_kprobe(void *addr)
1da177e4
LT
175{
176 struct hlist_head *head;
177 struct hlist_node *node;
3516a460 178 struct kprobe *p;
1da177e4
LT
179
180 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
3516a460 181 hlist_for_each_entry_rcu(p, node, head, hlist) {
1da177e4
LT
182 if (p->addr == addr)
183 return p;
184 }
185 return NULL;
186}
187
64f562c6
AM
188/*
189 * Aggregate handlers for multiple kprobes support - these handlers
190 * take care of invoking the individual kprobe handlers on p->list
191 */
d0aaff97 192static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
64f562c6
AM
193{
194 struct kprobe *kp;
195
3516a460 196 list_for_each_entry_rcu(kp, &p->list, list) {
64f562c6 197 if (kp->pre_handler) {
e6584523 198 set_kprobe_instance(kp);
8b0914ea
PP
199 if (kp->pre_handler(kp, regs))
200 return 1;
64f562c6 201 }
e6584523 202 reset_kprobe_instance();
64f562c6
AM
203 }
204 return 0;
205}
206
d0aaff97
PP
207static void __kprobes aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
208 unsigned long flags)
64f562c6
AM
209{
210 struct kprobe *kp;
211
3516a460 212 list_for_each_entry_rcu(kp, &p->list, list) {
64f562c6 213 if (kp->post_handler) {
e6584523 214 set_kprobe_instance(kp);
64f562c6 215 kp->post_handler(kp, regs, flags);
e6584523 216 reset_kprobe_instance();
64f562c6
AM
217 }
218 }
219 return;
220}
221
d0aaff97
PP
222static int __kprobes aggr_fault_handler(struct kprobe *p, struct pt_regs *regs,
223 int trapnr)
64f562c6 224{
e6584523
AM
225 struct kprobe *cur = __get_cpu_var(kprobe_instance);
226
64f562c6
AM
227 /*
228 * if we faulted "during" the execution of a user specified
229 * probe handler, invoke just that probe's fault handler
230 */
e6584523
AM
231 if (cur && cur->fault_handler) {
232 if (cur->fault_handler(cur, regs, trapnr))
64f562c6
AM
233 return 1;
234 }
235 return 0;
236}
237
d0aaff97 238static int __kprobes aggr_break_handler(struct kprobe *p, struct pt_regs *regs)
8b0914ea 239{
e6584523
AM
240 struct kprobe *cur = __get_cpu_var(kprobe_instance);
241 int ret = 0;
242
243 if (cur && cur->break_handler) {
244 if (cur->break_handler(cur, regs))
245 ret = 1;
8b0914ea 246 }
e6584523
AM
247 reset_kprobe_instance();
248 return ret;
8b0914ea
PP
249}
250
bf8d5c52
KA
251/* Walks the list and increments nmissed count for multiprobe case */
252void __kprobes kprobes_inc_nmissed_count(struct kprobe *p)
253{
254 struct kprobe *kp;
255 if (p->pre_handler != aggr_pre_handler) {
256 p->nmissed++;
257 } else {
258 list_for_each_entry_rcu(kp, &p->list, list)
259 kp->nmissed++;
260 }
261 return;
262}
263
3516a460 264/* Called with kretprobe_lock held */
d0aaff97 265struct kretprobe_instance __kprobes *get_free_rp_inst(struct kretprobe *rp)
b94cce92
HN
266{
267 struct hlist_node *node;
268 struct kretprobe_instance *ri;
269 hlist_for_each_entry(ri, node, &rp->free_instances, uflist)
270 return ri;
271 return NULL;
272}
273
3516a460 274/* Called with kretprobe_lock held */
d0aaff97
PP
275static struct kretprobe_instance __kprobes *get_used_rp_inst(struct kretprobe
276 *rp)
b94cce92
HN
277{
278 struct hlist_node *node;
279 struct kretprobe_instance *ri;
280 hlist_for_each_entry(ri, node, &rp->used_instances, uflist)
281 return ri;
282 return NULL;
283}
284
3516a460 285/* Called with kretprobe_lock held */
d0aaff97 286void __kprobes add_rp_inst(struct kretprobe_instance *ri)
b94cce92 287{
b94cce92
HN
288 /*
289 * Remove rp inst off the free list -
290 * Add it back when probed function returns
291 */
292 hlist_del(&ri->uflist);
802eae7c 293
b94cce92
HN
294 /* Add rp inst onto table */
295 INIT_HLIST_NODE(&ri->hlist);
296 hlist_add_head(&ri->hlist,
802eae7c 297 &kretprobe_inst_table[hash_ptr(ri->task, KPROBE_HASH_BITS)]);
b94cce92
HN
298
299 /* Also add this rp inst to the used list. */
300 INIT_HLIST_NODE(&ri->uflist);
301 hlist_add_head(&ri->uflist, &ri->rp->used_instances);
302}
303
3516a460 304/* Called with kretprobe_lock held */
d0aaff97 305void __kprobes recycle_rp_inst(struct kretprobe_instance *ri)
b94cce92
HN
306{
307 /* remove rp inst off the rprobe_inst_table */
308 hlist_del(&ri->hlist);
309 if (ri->rp) {
310 /* remove rp inst off the used list */
311 hlist_del(&ri->uflist);
312 /* put rp inst back onto the free list */
313 INIT_HLIST_NODE(&ri->uflist);
314 hlist_add_head(&ri->uflist, &ri->rp->free_instances);
315 } else
316 /* Unregistering */
317 kfree(ri);
318}
319
d0aaff97 320struct hlist_head __kprobes *kretprobe_inst_table_head(struct task_struct *tsk)
b94cce92
HN
321{
322 return &kretprobe_inst_table[hash_ptr(tsk, KPROBE_HASH_BITS)];
323}
324
b94cce92 325/*
802eae7c
RL
326 * This function is called from exit_thread or flush_thread when task tk's
327 * stack is being recycled so that we can recycle any function-return probe
328 * instances associated with this task. These left over instances represent
329 * probed functions that have been called but will never return.
b94cce92 330 */
d0aaff97 331void __kprobes kprobe_flush_task(struct task_struct *tk)
b94cce92 332{
802eae7c
RL
333 struct kretprobe_instance *ri;
334 struct hlist_head *head;
335 struct hlist_node *node, *tmp;
0aa55e4d 336 unsigned long flags = 0;
802eae7c 337
3516a460 338 spin_lock_irqsave(&kretprobe_lock, flags);
802eae7c
RL
339 head = kretprobe_inst_table_head(current);
340 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
341 if (ri->task == tk)
342 recycle_rp_inst(ri);
343 }
3516a460 344 spin_unlock_irqrestore(&kretprobe_lock, flags);
b94cce92
HN
345}
346
347/*
348 * This kprobe pre_handler is registered with every kretprobe. When probe
349 * hits it will set up the return probe.
350 */
d0aaff97
PP
351static int __kprobes pre_handler_kretprobe(struct kprobe *p,
352 struct pt_regs *regs)
b94cce92
HN
353{
354 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
3516a460 355 unsigned long flags = 0;
b94cce92
HN
356
357 /*TODO: consider to only swap the RA after the last pre_handler fired */
3516a460 358 spin_lock_irqsave(&kretprobe_lock, flags);
b94cce92 359 arch_prepare_kretprobe(rp, regs);
3516a460 360 spin_unlock_irqrestore(&kretprobe_lock, flags);
b94cce92
HN
361 return 0;
362}
363
364static inline void free_rp_inst(struct kretprobe *rp)
365{
366 struct kretprobe_instance *ri;
367 while ((ri = get_free_rp_inst(rp)) != NULL) {
368 hlist_del(&ri->uflist);
369 kfree(ri);
370 }
371}
372
8b0914ea
PP
373/*
374 * Keep all fields in the kprobe consistent
375 */
376static inline void copy_kprobe(struct kprobe *old_p, struct kprobe *p)
377{
378 memcpy(&p->opcode, &old_p->opcode, sizeof(kprobe_opcode_t));
379 memcpy(&p->ainsn, &old_p->ainsn, sizeof(struct arch_specific_insn));
380}
381
382/*
383* Add the new probe to old_p->list. Fail if this is the
384* second jprobe at the address - two jprobes can't coexist
385*/
d0aaff97 386static int __kprobes add_new_kprobe(struct kprobe *old_p, struct kprobe *p)
8b0914ea
PP
387{
388 struct kprobe *kp;
389
390 if (p->break_handler) {
3516a460 391 list_for_each_entry_rcu(kp, &old_p->list, list) {
8b0914ea
PP
392 if (kp->break_handler)
393 return -EEXIST;
394 }
3516a460 395 list_add_tail_rcu(&p->list, &old_p->list);
8b0914ea 396 } else
3516a460 397 list_add_rcu(&p->list, &old_p->list);
8b0914ea
PP
398 return 0;
399}
400
64f562c6
AM
401/*
402 * Fill in the required fields of the "manager kprobe". Replace the
403 * earlier kprobe in the hlist with the manager kprobe
404 */
405static inline void add_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
406{
8b0914ea 407 copy_kprobe(p, ap);
64f562c6 408 ap->addr = p->addr;
64f562c6
AM
409 ap->pre_handler = aggr_pre_handler;
410 ap->post_handler = aggr_post_handler;
411 ap->fault_handler = aggr_fault_handler;
8b0914ea 412 ap->break_handler = aggr_break_handler;
64f562c6
AM
413
414 INIT_LIST_HEAD(&ap->list);
3516a460 415 list_add_rcu(&p->list, &ap->list);
64f562c6 416
adad0f33 417 hlist_replace_rcu(&p->hlist, &ap->hlist);
64f562c6
AM
418}
419
420/*
421 * This is the second or subsequent kprobe at the address - handle
422 * the intricacies
3516a460 423 * TODO: Move kcalloc outside the spin_lock
64f562c6 424 */
d0aaff97
PP
425static int __kprobes register_aggr_kprobe(struct kprobe *old_p,
426 struct kprobe *p)
64f562c6
AM
427{
428 int ret = 0;
429 struct kprobe *ap;
430
8b0914ea
PP
431 if (old_p->pre_handler == aggr_pre_handler) {
432 copy_kprobe(old_p, p);
433 ret = add_new_kprobe(old_p, p);
64f562c6
AM
434 } else {
435 ap = kcalloc(1, sizeof(struct kprobe), GFP_ATOMIC);
436 if (!ap)
437 return -ENOMEM;
438 add_aggr_kprobe(ap, old_p);
8b0914ea
PP
439 copy_kprobe(ap, p);
440 ret = add_new_kprobe(ap, p);
64f562c6
AM
441 }
442 return ret;
443}
444
445/* kprobe removal house-keeping routines */
446static inline void cleanup_kprobe(struct kprobe *p, unsigned long flags)
447{
7e1048b1 448 arch_disarm_kprobe(p);
3516a460 449 hlist_del_rcu(&p->hlist);
64f562c6
AM
450 spin_unlock_irqrestore(&kprobe_lock, flags);
451 arch_remove_kprobe(p);
452}
453
454static inline void cleanup_aggr_kprobe(struct kprobe *old_p,
455 struct kprobe *p, unsigned long flags)
456{
3516a460
AM
457 list_del_rcu(&p->list);
458 if (list_empty(&old_p->list))
64f562c6 459 cleanup_kprobe(old_p, flags);
3516a460 460 else
64f562c6
AM
461 spin_unlock_irqrestore(&kprobe_lock, flags);
462}
463
d0aaff97
PP
464static int __kprobes in_kprobes_functions(unsigned long addr)
465{
466 if (addr >= (unsigned long)__kprobes_text_start
467 && addr < (unsigned long)__kprobes_text_end)
468 return -EINVAL;
469 return 0;
470}
471
472int __kprobes register_kprobe(struct kprobe *p)
1da177e4
LT
473{
474 int ret = 0;
475 unsigned long flags = 0;
64f562c6 476 struct kprobe *old_p;
b3e55c72
MB
477 struct module *mod;
478
479 if ((!kernel_text_address((unsigned long) p->addr)) ||
480 in_kprobes_functions((unsigned long) p->addr))
481 return -EINVAL;
482
483 if ((mod = module_text_address((unsigned long) p->addr)) &&
484 (unlikely(!try_module_get(mod))))
485 return -EINVAL;
1da177e4 486
d0aaff97 487 if ((ret = arch_prepare_kprobe(p)) != 0)
1da177e4 488 goto rm_kprobe;
d0aaff97 489
3516a460 490 p->nmissed = 0;
1da177e4 491 spin_lock_irqsave(&kprobe_lock, flags);
64f562c6
AM
492 old_p = get_kprobe(p->addr);
493 if (old_p) {
494 ret = register_aggr_kprobe(old_p, p);
1da177e4
LT
495 goto out;
496 }
1da177e4 497
64f562c6
AM
498 arch_copy_kprobe(p);
499 INIT_HLIST_NODE(&p->hlist);
3516a460 500 hlist_add_head_rcu(&p->hlist,
1da177e4
LT
501 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
502
7e1048b1
RL
503 arch_arm_kprobe(p);
504
1da177e4
LT
505out:
506 spin_unlock_irqrestore(&kprobe_lock, flags);
507rm_kprobe:
508 if (ret == -EEXIST)
509 arch_remove_kprobe(p);
b3e55c72
MB
510 if (ret && mod)
511 module_put(mod);
1da177e4
LT
512 return ret;
513}
514
d0aaff97 515void __kprobes unregister_kprobe(struct kprobe *p)
1da177e4
LT
516{
517 unsigned long flags;
64f562c6 518 struct kprobe *old_p;
b3e55c72 519 struct module *mod;
64f562c6 520
1da177e4 521 spin_lock_irqsave(&kprobe_lock, flags);
64f562c6
AM
522 old_p = get_kprobe(p->addr);
523 if (old_p) {
3516a460 524 /* cleanup_*_kprobe() does the spin_unlock_irqrestore */
64f562c6
AM
525 if (old_p->pre_handler == aggr_pre_handler)
526 cleanup_aggr_kprobe(old_p, p, flags);
527 else
528 cleanup_kprobe(p, flags);
3516a460
AM
529
530 synchronize_sched();
b3e55c72
MB
531
532 if ((mod = module_text_address((unsigned long)p->addr)))
533 module_put(mod);
534
3516a460
AM
535 if (old_p->pre_handler == aggr_pre_handler &&
536 list_empty(&old_p->list))
537 kfree(old_p);
64f562c6 538 } else
04dea5f9 539 spin_unlock_irqrestore(&kprobe_lock, flags);
1da177e4
LT
540}
541
542static struct notifier_block kprobe_exceptions_nb = {
543 .notifier_call = kprobe_exceptions_notify,
544 .priority = 0x7fffffff /* we need to notified first */
545};
546
d0aaff97 547int __kprobes register_jprobe(struct jprobe *jp)
1da177e4
LT
548{
549 /* Todo: Verify probepoint is a function entry point */
550 jp->kp.pre_handler = setjmp_pre_handler;
551 jp->kp.break_handler = longjmp_break_handler;
552
553 return register_kprobe(&jp->kp);
554}
555
d0aaff97 556void __kprobes unregister_jprobe(struct jprobe *jp)
1da177e4
LT
557{
558 unregister_kprobe(&jp->kp);
559}
560
b94cce92
HN
561#ifdef ARCH_SUPPORTS_KRETPROBES
562
d0aaff97 563int __kprobes register_kretprobe(struct kretprobe *rp)
b94cce92
HN
564{
565 int ret = 0;
566 struct kretprobe_instance *inst;
567 int i;
568
569 rp->kp.pre_handler = pre_handler_kretprobe;
570
571 /* Pre-allocate memory for max kretprobe instances */
572 if (rp->maxactive <= 0) {
573#ifdef CONFIG_PREEMPT
574 rp->maxactive = max(10, 2 * NR_CPUS);
575#else
576 rp->maxactive = NR_CPUS;
577#endif
578 }
579 INIT_HLIST_HEAD(&rp->used_instances);
580 INIT_HLIST_HEAD(&rp->free_instances);
581 for (i = 0; i < rp->maxactive; i++) {
582 inst = kmalloc(sizeof(struct kretprobe_instance), GFP_KERNEL);
583 if (inst == NULL) {
584 free_rp_inst(rp);
585 return -ENOMEM;
586 }
587 INIT_HLIST_NODE(&inst->uflist);
588 hlist_add_head(&inst->uflist, &rp->free_instances);
589 }
590
591 rp->nmissed = 0;
592 /* Establish function entry probe point */
593 if ((ret = register_kprobe(&rp->kp)) != 0)
594 free_rp_inst(rp);
595 return ret;
596}
597
598#else /* ARCH_SUPPORTS_KRETPROBES */
599
d0aaff97 600int __kprobes register_kretprobe(struct kretprobe *rp)
b94cce92
HN
601{
602 return -ENOSYS;
603}
604
605#endif /* ARCH_SUPPORTS_KRETPROBES */
606
d0aaff97 607void __kprobes unregister_kretprobe(struct kretprobe *rp)
b94cce92
HN
608{
609 unsigned long flags;
610 struct kretprobe_instance *ri;
611
612 unregister_kprobe(&rp->kp);
613 /* No race here */
3516a460 614 spin_lock_irqsave(&kretprobe_lock, flags);
b94cce92
HN
615 free_rp_inst(rp);
616 while ((ri = get_used_rp_inst(rp)) != NULL) {
617 ri->rp = NULL;
618 hlist_del(&ri->uflist);
619 }
3516a460 620 spin_unlock_irqrestore(&kretprobe_lock, flags);
b94cce92
HN
621}
622
1da177e4
LT
623static int __init init_kprobes(void)
624{
625 int i, err = 0;
626
627 /* FIXME allocate the probe table, currently defined statically */
628 /* initialize all list heads */
b94cce92 629 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1da177e4 630 INIT_HLIST_HEAD(&kprobe_table[i]);
b94cce92
HN
631 INIT_HLIST_HEAD(&kretprobe_inst_table[i]);
632 }
1da177e4 633
6772926b 634 err = arch_init_kprobes();
802eae7c
RL
635 if (!err)
636 err = register_die_notifier(&kprobe_exceptions_nb);
637
1da177e4
LT
638 return err;
639}
640
641__initcall(init_kprobes);
642
643EXPORT_SYMBOL_GPL(register_kprobe);
644EXPORT_SYMBOL_GPL(unregister_kprobe);
645EXPORT_SYMBOL_GPL(register_jprobe);
646EXPORT_SYMBOL_GPL(unregister_jprobe);
647EXPORT_SYMBOL_GPL(jprobe_return);
b94cce92
HN
648EXPORT_SYMBOL_GPL(register_kretprobe);
649EXPORT_SYMBOL_GPL(unregister_kretprobe);
650
This page took 0.153505 seconds and 5 git commands to generate.