aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kprobes.h
diff options
context:
space:
mode:
authorAnanth N Mavinakayanahalli <ananth@in.ibm.com>2007-05-08 03:28:27 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-08 14:15:08 -0400
commit0f95b7fc839bc3272b1bf2325d8748a649bd3534 (patch)
treec5cbf5eabc5b58867d7a8949c412163e37182542 /include/linux/kprobes.h
parent8f0c45cdf87dc9141e87b0ad2fc6fff216a95f79 (diff)
Kprobes: print details of kretprobe on assertion failure
In certain cases like when the real return address can't be found or when the number of tracked calls to a kretprobed function is less than the number of returns, we may not be able to find the correct return address after processing a kretprobe. Currently we just do a BUG_ON, but no information is provided about the actual failing kretprobe. Print out details of the kretprobe before calling BUG(). Signed-off-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com> Cc: Prasanna S Panchamukhi <prasanna@in.ibm.com> Cc: Jim Keniston <jkenisto@us.ibm.com> Cc: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> Cc: Maneesh Soni <maneesh@in.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/kprobes.h')
-rw-r--r--include/linux/kprobes.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h
index f26460700379..850ee871e353 100644
--- a/include/linux/kprobes.h
+++ b/include/linux/kprobes.h
@@ -157,6 +157,16 @@ struct kretprobe_instance {
157 struct task_struct *task; 157 struct task_struct *task;
158}; 158};
159 159
160static inline void kretprobe_assert(struct kretprobe_instance *ri,
161 unsigned long orig_ret_address, unsigned long trampoline_address)
162{
163 if (!orig_ret_address || (orig_ret_address == trampoline_address)) {
164 printk("kretprobe BUG!: Processing kretprobe %p @ %p\n",
165 ri->rp, ri->rp->kp.addr);
166 BUG();
167 }
168}
169
160extern spinlock_t kretprobe_lock; 170extern spinlock_t kretprobe_lock;
161extern struct mutex kprobe_mutex; 171extern struct mutex kprobe_mutex;
162extern int arch_prepare_kprobe(struct kprobe *p); 172extern int arch_prepare_kprobe(struct kprobe *p);