xref: /linux/include/linux/kprobes.h (revision 8c1c9356429741a82ff176d0f3400fb9e06b2a30)
11da177e4SLinus Torvalds #ifndef _LINUX_KPROBES_H
21da177e4SLinus Torvalds #define _LINUX_KPROBES_H
31da177e4SLinus Torvalds /*
41da177e4SLinus Torvalds  *  Kernel Probes (KProbes)
51da177e4SLinus Torvalds  *  include/linux/kprobes.h
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  * This program is free software; you can redistribute it and/or modify
81da177e4SLinus Torvalds  * it under the terms of the GNU General Public License as published by
91da177e4SLinus Torvalds  * the Free Software Foundation; either version 2 of the License, or
101da177e4SLinus Torvalds  * (at your option) any later version.
111da177e4SLinus Torvalds  *
121da177e4SLinus Torvalds  * This program is distributed in the hope that it will be useful,
131da177e4SLinus Torvalds  * but WITHOUT ANY WARRANTY; without even the implied warranty of
141da177e4SLinus Torvalds  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
151da177e4SLinus Torvalds  * GNU General Public License for more details.
161da177e4SLinus Torvalds  *
171da177e4SLinus Torvalds  * You should have received a copy of the GNU General Public License
181da177e4SLinus Torvalds  * along with this program; if not, write to the Free Software
191da177e4SLinus Torvalds  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
201da177e4SLinus Torvalds  *
211da177e4SLinus Torvalds  * Copyright (C) IBM Corporation, 2002, 2004
221da177e4SLinus Torvalds  *
231da177e4SLinus Torvalds  * 2002-Oct	Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel
241da177e4SLinus Torvalds  *		Probes initial implementation ( includes suggestions from
251da177e4SLinus Torvalds  *		Rusty Russell).
261da177e4SLinus Torvalds  * 2004-July	Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes
271da177e4SLinus Torvalds  *		interface to access function arguments.
28b94cce92SHien Nguyen  * 2005-May	Hien Nguyen <hien@us.ibm.com> and Jim Keniston
29b94cce92SHien Nguyen  *		<jkenisto@us.ibm.com>  and Prasanna S Panchamukhi
30b94cce92SHien Nguyen  *		<prasanna@in.ibm.com> added function-return probes.
311da177e4SLinus Torvalds  */
321da177e4SLinus Torvalds #include <linux/list.h>
331da177e4SLinus Torvalds #include <linux/notifier.h>
341da177e4SLinus Torvalds #include <linux/smp.h>
35e6584523SAnanth N Mavinakayanahalli #include <linux/percpu.h>
363516a460SAnanth N Mavinakayanahalli #include <linux/spinlock.h>
373516a460SAnanth N Mavinakayanahalli #include <linux/rcupdate.h>
387a7d1cf9SIngo Molnar #include <linux/mutex.h>
39b94cce92SHien Nguyen 
4000d7c05aSKeshavamurthy Anil S #ifdef CONFIG_KPROBES
411da177e4SLinus Torvalds #include <asm/kprobes.h>
421da177e4SLinus Torvalds 
43ea32c65cSPrasanna S Panchamukhi /* kprobe_status settings */
44ea32c65cSPrasanna S Panchamukhi #define KPROBE_HIT_ACTIVE	0x00000001
45ea32c65cSPrasanna S Panchamukhi #define KPROBE_HIT_SS		0x00000002
46ea32c65cSPrasanna S Panchamukhi #define KPROBE_REENTER		0x00000004
47ea32c65cSPrasanna S Panchamukhi #define KPROBE_HIT_SSDONE	0x00000008
48ea32c65cSPrasanna S Panchamukhi 
49d0aaff97SPrasanna S Panchamukhi /* Attach to insert probes on any functions which should be ignored*/
50d0aaff97SPrasanna S Panchamukhi #define __kprobes	__attribute__((__section__(".kprobes.text")))
51d0aaff97SPrasanna S Panchamukhi 
521da177e4SLinus Torvalds struct kprobe;
531da177e4SLinus Torvalds struct pt_regs;
54b94cce92SHien Nguyen struct kretprobe;
55b94cce92SHien Nguyen struct kretprobe_instance;
561da177e4SLinus Torvalds typedef int (*kprobe_pre_handler_t) (struct kprobe *, struct pt_regs *);
571da177e4SLinus Torvalds typedef int (*kprobe_break_handler_t) (struct kprobe *, struct pt_regs *);
581da177e4SLinus Torvalds typedef void (*kprobe_post_handler_t) (struct kprobe *, struct pt_regs *,
591da177e4SLinus Torvalds 				       unsigned long flags);
601da177e4SLinus Torvalds typedef int (*kprobe_fault_handler_t) (struct kprobe *, struct pt_regs *,
611da177e4SLinus Torvalds 				       int trapnr);
62b94cce92SHien Nguyen typedef int (*kretprobe_handler_t) (struct kretprobe_instance *,
63b94cce92SHien Nguyen 				    struct pt_regs *);
64b94cce92SHien Nguyen 
651da177e4SLinus Torvalds struct kprobe {
661da177e4SLinus Torvalds 	struct hlist_node hlist;
671da177e4SLinus Torvalds 
6864f562c6SAnanth N Mavinakayanahalli 	/* list of kprobes for multi-handler support */
6964f562c6SAnanth N Mavinakayanahalli 	struct list_head list;
7064f562c6SAnanth N Mavinakayanahalli 
71df019b1dSKeshavamurthy Anil S 	/* Indicates that the corresponding module has been ref counted */
72df019b1dSKeshavamurthy Anil S 	unsigned int mod_refcounted;
73df019b1dSKeshavamurthy Anil S 
74ea32c65cSPrasanna S Panchamukhi 	/*count the number of times this probe was temporarily disarmed */
75ea32c65cSPrasanna S Panchamukhi 	unsigned long nmissed;
76ea32c65cSPrasanna S Panchamukhi 
771da177e4SLinus Torvalds 	/* location of the probe point */
781da177e4SLinus Torvalds 	kprobe_opcode_t *addr;
791da177e4SLinus Torvalds 
803a872d89SAnanth N Mavinakayanahalli 	/* Allow user to indicate symbol name of the probe point */
819b3af29bSAnanth N Mavinakayanahalli 	const char *symbol_name;
823a872d89SAnanth N Mavinakayanahalli 
833a872d89SAnanth N Mavinakayanahalli 	/* Offset into the symbol */
843a872d89SAnanth N Mavinakayanahalli 	unsigned int offset;
853a872d89SAnanth N Mavinakayanahalli 
861da177e4SLinus Torvalds 	/* Called before addr is executed. */
871da177e4SLinus Torvalds 	kprobe_pre_handler_t pre_handler;
881da177e4SLinus Torvalds 
891da177e4SLinus Torvalds 	/* Called after addr is executed, unless... */
901da177e4SLinus Torvalds 	kprobe_post_handler_t post_handler;
911da177e4SLinus Torvalds 
921da177e4SLinus Torvalds 	/* ... called if executing addr causes a fault (eg. page fault).
931da177e4SLinus Torvalds 	 * Return 1 if it handled fault, otherwise kernel will see it. */
941da177e4SLinus Torvalds 	kprobe_fault_handler_t fault_handler;
951da177e4SLinus Torvalds 
961da177e4SLinus Torvalds 	/* ... called if breakpoint trap occurs in probe handler.
971da177e4SLinus Torvalds 	 * Return 1 if it handled break, otherwise kernel will see it. */
981da177e4SLinus Torvalds 	kprobe_break_handler_t break_handler;
991da177e4SLinus Torvalds 
1001da177e4SLinus Torvalds 	/* Saved opcode (which has been replaced with breakpoint) */
1011da177e4SLinus Torvalds 	kprobe_opcode_t opcode;
1021da177e4SLinus Torvalds 
1031da177e4SLinus Torvalds 	/* copy of the original instruction */
1041da177e4SLinus Torvalds 	struct arch_specific_insn ainsn;
1051da177e4SLinus Torvalds };
1061da177e4SLinus Torvalds 
1071da177e4SLinus Torvalds /*
1081da177e4SLinus Torvalds  * Special probe type that uses setjmp-longjmp type tricks to resume
1091da177e4SLinus Torvalds  * execution at a specified entry with a matching prototype corresponding
1101da177e4SLinus Torvalds  * to the probed function - a trick to enable arguments to become
1111da177e4SLinus Torvalds  * accessible seamlessly by probe handling logic.
1121da177e4SLinus Torvalds  * Note:
1131da177e4SLinus Torvalds  * Because of the way compilers allocate stack space for local variables
1141da177e4SLinus Torvalds  * etc upfront, regardless of sub-scopes within a function, this mirroring
1151da177e4SLinus Torvalds  * principle currently works only for probes placed on function entry points.
1161da177e4SLinus Torvalds  */
1171da177e4SLinus Torvalds struct jprobe {
1181da177e4SLinus Torvalds 	struct kprobe kp;
11981eae375SMichael Ellerman 	void *entry;	/* probe handling code to jump to */
1201da177e4SLinus Torvalds };
1211da177e4SLinus Torvalds 
1229e367d85SMichael Ellerman /* For backward compatibility with old code using JPROBE_ENTRY() */
1239e367d85SMichael Ellerman #define JPROBE_ENTRY(handler)	(handler)
1249e367d85SMichael Ellerman 
125e6584523SAnanth N Mavinakayanahalli DECLARE_PER_CPU(struct kprobe *, current_kprobe);
126e6584523SAnanth N Mavinakayanahalli DECLARE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
127e6584523SAnanth N Mavinakayanahalli 
128b94cce92SHien Nguyen #ifdef ARCH_SUPPORTS_KRETPROBES
1294c4308cbSChristoph Hellwig extern void arch_prepare_kretprobe(struct kretprobe_instance *ri,
1304c4308cbSChristoph Hellwig 				   struct pt_regs *regs);
131bf8f6e5bSAnanth N Mavinakayanahalli extern int arch_trampoline_kprobe(struct kprobe *p);
132b94cce92SHien Nguyen #else /* ARCH_SUPPORTS_KRETPROBES */
133b94cce92SHien Nguyen static inline void arch_prepare_kretprobe(struct kretprobe *rp,
134b94cce92SHien Nguyen 					struct pt_regs *regs)
135b94cce92SHien Nguyen {
136b94cce92SHien Nguyen }
137bf8f6e5bSAnanth N Mavinakayanahalli static inline int arch_trampoline_kprobe(struct kprobe *p)
138bf8f6e5bSAnanth N Mavinakayanahalli {
139bf8f6e5bSAnanth N Mavinakayanahalli 	return 0;
140bf8f6e5bSAnanth N Mavinakayanahalli }
141b94cce92SHien Nguyen #endif /* ARCH_SUPPORTS_KRETPROBES */
142b94cce92SHien Nguyen /*
143b94cce92SHien Nguyen  * Function-return probe -
144b94cce92SHien Nguyen  * Note:
145b94cce92SHien Nguyen  * User needs to provide a handler function, and initialize maxactive.
146b94cce92SHien Nguyen  * maxactive - The maximum number of instances of the probed function that
147b94cce92SHien Nguyen  * can be active concurrently.
148b94cce92SHien Nguyen  * nmissed - tracks the number of times the probed function's return was
149b94cce92SHien Nguyen  * ignored, due to maxactive being too low.
150b94cce92SHien Nguyen  *
151b94cce92SHien Nguyen  */
152b94cce92SHien Nguyen struct kretprobe {
153b94cce92SHien Nguyen 	struct kprobe kp;
154b94cce92SHien Nguyen 	kretprobe_handler_t handler;
155b94cce92SHien Nguyen 	int maxactive;
156b94cce92SHien Nguyen 	int nmissed;
157b94cce92SHien Nguyen 	struct hlist_head free_instances;
158b94cce92SHien Nguyen 	struct hlist_head used_instances;
159b94cce92SHien Nguyen };
160b94cce92SHien Nguyen 
161b94cce92SHien Nguyen struct kretprobe_instance {
162b94cce92SHien Nguyen 	struct hlist_node uflist; /* either on free list or used list */
163b94cce92SHien Nguyen 	struct hlist_node hlist;
164b94cce92SHien Nguyen 	struct kretprobe *rp;
165802eae7cSRusty Lynch 	kprobe_opcode_t *ret_addr;
166802eae7cSRusty Lynch 	struct task_struct *task;
167b94cce92SHien Nguyen };
168b94cce92SHien Nguyen 
169f438d914SMasami Hiramatsu struct kretprobe_blackpoint {
170f438d914SMasami Hiramatsu 	const char *name;
171f438d914SMasami Hiramatsu 	void *addr;
172f438d914SMasami Hiramatsu };
173f438d914SMasami Hiramatsu extern struct kretprobe_blackpoint kretprobe_blacklist[];
174f438d914SMasami Hiramatsu 
1750f95b7fcSAnanth N Mavinakayanahalli static inline void kretprobe_assert(struct kretprobe_instance *ri,
1760f95b7fcSAnanth N Mavinakayanahalli 	unsigned long orig_ret_address, unsigned long trampoline_address)
1770f95b7fcSAnanth N Mavinakayanahalli {
1780f95b7fcSAnanth N Mavinakayanahalli 	if (!orig_ret_address || (orig_ret_address == trampoline_address)) {
1790f95b7fcSAnanth N Mavinakayanahalli 		printk("kretprobe BUG!: Processing kretprobe %p @ %p\n",
1800f95b7fcSAnanth N Mavinakayanahalli 				ri->rp, ri->rp->kp.addr);
1810f95b7fcSAnanth N Mavinakayanahalli 		BUG();
1820f95b7fcSAnanth N Mavinakayanahalli 	}
1830f95b7fcSAnanth N Mavinakayanahalli }
1840f95b7fcSAnanth N Mavinakayanahalli 
185*8c1c9356SAnanth N Mavinakayanahalli #ifdef CONFIG_KPROBES_SANITY_TEST
186*8c1c9356SAnanth N Mavinakayanahalli extern int init_test_probes(void);
187*8c1c9356SAnanth N Mavinakayanahalli #else
188*8c1c9356SAnanth N Mavinakayanahalli static inline int init_test_probes(void)
189*8c1c9356SAnanth N Mavinakayanahalli {
190*8c1c9356SAnanth N Mavinakayanahalli 	return 0;
191*8c1c9356SAnanth N Mavinakayanahalli }
192*8c1c9356SAnanth N Mavinakayanahalli #endif /* CONFIG_KPROBES_SANITY_TEST */
193*8c1c9356SAnanth N Mavinakayanahalli 
1943516a460SAnanth N Mavinakayanahalli extern spinlock_t kretprobe_lock;
1957a7d1cf9SIngo Molnar extern struct mutex kprobe_mutex;
1961da177e4SLinus Torvalds extern int arch_prepare_kprobe(struct kprobe *p);
1977e1048b1SRusty Lynch extern void arch_arm_kprobe(struct kprobe *p);
1987e1048b1SRusty Lynch extern void arch_disarm_kprobe(struct kprobe *p);
1996772926bSRusty Lynch extern int arch_init_kprobes(void);
2001da177e4SLinus Torvalds extern void show_registers(struct pt_regs *regs);
2019ec4b1f3SAnanth N Mavinakayanahalli extern kprobe_opcode_t *get_insn_slot(void);
202b4c6c34aSMasami Hiramatsu extern void free_insn_slot(kprobe_opcode_t *slot, int dirty);
203bf8d5c52SKeshavamurthy Anil S extern void kprobes_inc_nmissed_count(struct kprobe *p);
2041da177e4SLinus Torvalds 
205d217d545SAnanth N Mavinakayanahalli /* Get the kprobe at this addr (if any) - called with preemption disabled */
2061da177e4SLinus Torvalds struct kprobe *get_kprobe(void *addr);
207b94cce92SHien Nguyen struct hlist_head * kretprobe_inst_table_head(struct task_struct *tsk);
2081da177e4SLinus Torvalds 
209e6584523SAnanth N Mavinakayanahalli /* kprobe_running() will just return the current_kprobe on this CPU */
210e6584523SAnanth N Mavinakayanahalli static inline struct kprobe *kprobe_running(void)
211e6584523SAnanth N Mavinakayanahalli {
212e6584523SAnanth N Mavinakayanahalli 	return (__get_cpu_var(current_kprobe));
213e6584523SAnanth N Mavinakayanahalli }
214e6584523SAnanth N Mavinakayanahalli 
215e6584523SAnanth N Mavinakayanahalli static inline void reset_current_kprobe(void)
216e6584523SAnanth N Mavinakayanahalli {
217e6584523SAnanth N Mavinakayanahalli 	__get_cpu_var(current_kprobe) = NULL;
218e6584523SAnanth N Mavinakayanahalli }
219e6584523SAnanth N Mavinakayanahalli 
220e6584523SAnanth N Mavinakayanahalli static inline struct kprobe_ctlblk *get_kprobe_ctlblk(void)
221e6584523SAnanth N Mavinakayanahalli {
222e6584523SAnanth N Mavinakayanahalli 	return (&__get_cpu_var(kprobe_ctlblk));
223e6584523SAnanth N Mavinakayanahalli }
224e6584523SAnanth N Mavinakayanahalli 
2251da177e4SLinus Torvalds int register_kprobe(struct kprobe *p);
2261da177e4SLinus Torvalds void unregister_kprobe(struct kprobe *p);
2271da177e4SLinus Torvalds int setjmp_pre_handler(struct kprobe *, struct pt_regs *);
2281da177e4SLinus Torvalds int longjmp_break_handler(struct kprobe *, struct pt_regs *);
2291da177e4SLinus Torvalds int register_jprobe(struct jprobe *p);
2301da177e4SLinus Torvalds void unregister_jprobe(struct jprobe *p);
2311da177e4SLinus Torvalds void jprobe_return(void);
2323d7e3382SMichael Ellerman unsigned long arch_deref_entry_point(void *);
2331da177e4SLinus Torvalds 
234b94cce92SHien Nguyen int register_kretprobe(struct kretprobe *rp);
235b94cce92SHien Nguyen void unregister_kretprobe(struct kretprobe *rp);
236b94cce92SHien Nguyen 
237b94cce92SHien Nguyen void kprobe_flush_task(struct task_struct *tk);
23899219a3fSbibo,mao void recycle_rp_inst(struct kretprobe_instance *ri, struct hlist_head *head);
239*8c1c9356SAnanth N Mavinakayanahalli 
240b94cce92SHien Nguyen #else /* CONFIG_KPROBES */
24100d7c05aSKeshavamurthy Anil S 
24200d7c05aSKeshavamurthy Anil S #define __kprobes	/**/
24300d7c05aSKeshavamurthy Anil S struct jprobe;
24400d7c05aSKeshavamurthy Anil S struct kretprobe;
24500d7c05aSKeshavamurthy Anil S 
246e6584523SAnanth N Mavinakayanahalli static inline struct kprobe *kprobe_running(void)
2471da177e4SLinus Torvalds {
248e6584523SAnanth N Mavinakayanahalli 	return NULL;
2491da177e4SLinus Torvalds }
2501da177e4SLinus Torvalds static inline int register_kprobe(struct kprobe *p)
2511da177e4SLinus Torvalds {
2521da177e4SLinus Torvalds 	return -ENOSYS;
2531da177e4SLinus Torvalds }
2541da177e4SLinus Torvalds static inline void unregister_kprobe(struct kprobe *p)
2551da177e4SLinus Torvalds {
2561da177e4SLinus Torvalds }
2571da177e4SLinus Torvalds static inline int register_jprobe(struct jprobe *p)
2581da177e4SLinus Torvalds {
2591da177e4SLinus Torvalds 	return -ENOSYS;
2601da177e4SLinus Torvalds }
2611da177e4SLinus Torvalds static inline void unregister_jprobe(struct jprobe *p)
2621da177e4SLinus Torvalds {
2631da177e4SLinus Torvalds }
2641da177e4SLinus Torvalds static inline void jprobe_return(void)
2651da177e4SLinus Torvalds {
2661da177e4SLinus Torvalds }
267b94cce92SHien Nguyen static inline int register_kretprobe(struct kretprobe *rp)
268b94cce92SHien Nguyen {
269b94cce92SHien Nguyen 	return -ENOSYS;
270b94cce92SHien Nguyen }
271b94cce92SHien Nguyen static inline void unregister_kretprobe(struct kretprobe *rp)
272b94cce92SHien Nguyen {
273b94cce92SHien Nguyen }
274b94cce92SHien Nguyen static inline void kprobe_flush_task(struct task_struct *tk)
275b94cce92SHien Nguyen {
276b94cce92SHien Nguyen }
277b94cce92SHien Nguyen #endif				/* CONFIG_KPROBES */
2781da177e4SLinus Torvalds #endif				/* _LINUX_KPROBES_H */
279