public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kprobes: add kprobe_is_function_probed()
@ 2014-10-21 15:48 Jiri Kosina
  2014-10-21 16:43 ` Josh Poimboeuf
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Jiri Kosina @ 2014-10-21 15:48 UTC (permalink / raw)
  To: Masami Hiramatsu, Anil S Keshavamurthy,
	Ananth N Mavinakayanahalli
  Cc: linux-kernel, Josh Poimboeuf, Seth Jennings

Add a function that allows external users (such as live patching 
mechanisms) to check whether a given function (identified by symbol name) 
has a kprobe installed in it.

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
---
 include/linux/kprobes.h |  5 +++++
 kernel/kprobes.c        | 28 ++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h
index f7296e5..f760555 100644
--- a/include/linux/kprobes.h
+++ b/include/linux/kprobes.h
@@ -384,6 +384,7 @@ int disable_kprobe(struct kprobe *kp);
 int enable_kprobe(struct kprobe *kp);
 
 void dump_kprobe(struct kprobe *kp);
+bool kprobe_is_function_probed(const char *name);
 
 #else /* !CONFIG_KPROBES: */
 
@@ -459,6 +460,10 @@ static inline int enable_kprobe(struct kprobe *kp)
 {
 	return -ENOSYS;
 }
+static inline bool kprobe_is_function_probed(const char *name)
+{
+	return false;
+}
 #endif /* CONFIG_KPROBES */
 static inline int disable_kretprobe(struct kretprobe *rp)
 {
diff --git a/kernel/kprobes.c b/kernel/kprobes.c
index 3995f54..27e8ddb 100644
--- a/kernel/kprobes.c
+++ b/kernel/kprobes.c
@@ -2036,6 +2036,34 @@ void dump_kprobe(struct kprobe *kp)
 NOKPROBE_SYMBOL(dump_kprobe);
 
 /*
+ * Check whether a given symbol is a probed function
+ */
+bool kprobe_is_function_probed(const char *name)
+{
+	struct hlist_head *head;
+	struct kprobe *p, *kp;
+	const char *sym = NULL;
+	unsigned long offset = 0;
+	unsigned int i;
+	char *modname, namebuf[KSYM_NAME_LEN];
+
+	preempt_disable();
+	for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
+		head = &kprobe_table[i];
+		hlist_for_each_entry_rcu(p, head, hlist) {
+			sym = kallsyms_lookup((unsigned long)p->addr,
+					NULL, &offset, &modname,
+					namebuf);
+			if (!strcmp(sym, name))
+				return true;
+		}
+	}
+	preempt_enable();
+	return false;
+}
+EXPORT_SYMBOL_GPL(kprobe_is_function_probed);
+
+/*
  * Lookup and populate the kprobe_blacklist.
  *
  * Unlike the kretprobe blacklist, we'll need to determine
-- 
1.9.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2014-10-22 14:03 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-21 15:48 [PATCH] kprobes: add kprobe_is_function_probed() Jiri Kosina
2014-10-21 16:43 ` Josh Poimboeuf
2014-10-21 20:19   ` Jiri Kosina
2014-10-21 21:14     ` Josh Poimboeuf
2014-10-21 21:25       ` Jiri Kosina
2014-10-22  2:40         ` Josh Poimboeuf
2014-10-22 14:03           ` Seth Jennings
2014-10-21 16:48 ` Ananth N Mavinakayanahalli
2014-10-22  2:30 ` Masami Hiramatsu
2014-10-22  6:02   ` Jiri Kosina
2014-10-22  6:54     ` Masami Hiramatsu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox