xref: /linux/include/linux/kprobes.h (revision 8f9b15286a8ea49e997e845d02d357ed33ebd090)
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  */
3236dcd67aSIngo Molnar #include <linux/linkage.h>
331da177e4SLinus Torvalds #include <linux/list.h>
341da177e4SLinus Torvalds #include <linux/notifier.h>
351da177e4SLinus Torvalds #include <linux/smp.h>
36e6584523SAnanth N Mavinakayanahalli #include <linux/percpu.h>
373516a460SAnanth N Mavinakayanahalli #include <linux/spinlock.h>
383516a460SAnanth N Mavinakayanahalli #include <linux/rcupdate.h>
397a7d1cf9SIngo Molnar #include <linux/mutex.h>
40b94cce92SHien Nguyen 
4100d7c05aSKeshavamurthy Anil S #ifdef CONFIG_KPROBES
421da177e4SLinus Torvalds #include <asm/kprobes.h>
431da177e4SLinus Torvalds 
44ea32c65cSPrasanna S Panchamukhi /* kprobe_status settings */
45ea32c65cSPrasanna S Panchamukhi #define KPROBE_HIT_ACTIVE	0x00000001
46ea32c65cSPrasanna S Panchamukhi #define KPROBE_HIT_SS		0x00000002
47ea32c65cSPrasanna S Panchamukhi #define KPROBE_REENTER		0x00000004
48ea32c65cSPrasanna S Panchamukhi #define KPROBE_HIT_SSDONE	0x00000008
49ea32c65cSPrasanna S Panchamukhi 
50d0aaff97SPrasanna S Panchamukhi /* Attach to insert probes on any functions which should be ignored*/
5136dcd67aSIngo Molnar #define __kprobes	__attribute__((__section__(".kprobes.text"))) notrace
52dc19835dSMasami Hiramatsu #else /* CONFIG_KPROBES */
53dc19835dSMasami Hiramatsu typedef int kprobe_opcode_t;
54dc19835dSMasami Hiramatsu struct arch_specific_insn {
55dc19835dSMasami Hiramatsu 	int dummy;
56dc19835dSMasami Hiramatsu };
57dc19835dSMasami Hiramatsu #define __kprobes	notrace
58dc19835dSMasami Hiramatsu #endif /* CONFIG_KPROBES */
59d0aaff97SPrasanna S Panchamukhi 
601da177e4SLinus Torvalds struct kprobe;
611da177e4SLinus Torvalds struct pt_regs;
62b94cce92SHien Nguyen struct kretprobe;
63b94cce92SHien Nguyen struct kretprobe_instance;
641da177e4SLinus Torvalds typedef int (*kprobe_pre_handler_t) (struct kprobe *, struct pt_regs *);
651da177e4SLinus Torvalds typedef int (*kprobe_break_handler_t) (struct kprobe *, struct pt_regs *);
661da177e4SLinus Torvalds typedef void (*kprobe_post_handler_t) (struct kprobe *, struct pt_regs *,
671da177e4SLinus Torvalds 				       unsigned long flags);
681da177e4SLinus Torvalds typedef int (*kprobe_fault_handler_t) (struct kprobe *, struct pt_regs *,
691da177e4SLinus Torvalds 				       int trapnr);
70b94cce92SHien Nguyen typedef int (*kretprobe_handler_t) (struct kretprobe_instance *,
71b94cce92SHien Nguyen 				    struct pt_regs *);
72b94cce92SHien Nguyen 
731da177e4SLinus Torvalds struct kprobe {
741da177e4SLinus Torvalds 	struct hlist_node hlist;
751da177e4SLinus Torvalds 
7664f562c6SAnanth N Mavinakayanahalli 	/* list of kprobes for multi-handler support */
7764f562c6SAnanth N Mavinakayanahalli 	struct list_head list;
7864f562c6SAnanth N Mavinakayanahalli 
79ea32c65cSPrasanna S Panchamukhi 	/*count the number of times this probe was temporarily disarmed */
80ea32c65cSPrasanna S Panchamukhi 	unsigned long nmissed;
81ea32c65cSPrasanna S Panchamukhi 
821da177e4SLinus Torvalds 	/* location of the probe point */
831da177e4SLinus Torvalds 	kprobe_opcode_t *addr;
841da177e4SLinus Torvalds 
853a872d89SAnanth N Mavinakayanahalli 	/* Allow user to indicate symbol name of the probe point */
869b3af29bSAnanth N Mavinakayanahalli 	const char *symbol_name;
873a872d89SAnanth N Mavinakayanahalli 
883a872d89SAnanth N Mavinakayanahalli 	/* Offset into the symbol */
893a872d89SAnanth N Mavinakayanahalli 	unsigned int offset;
903a872d89SAnanth N Mavinakayanahalli 
911da177e4SLinus Torvalds 	/* Called before addr is executed. */
921da177e4SLinus Torvalds 	kprobe_pre_handler_t pre_handler;
931da177e4SLinus Torvalds 
941da177e4SLinus Torvalds 	/* Called after addr is executed, unless... */
951da177e4SLinus Torvalds 	kprobe_post_handler_t post_handler;
961da177e4SLinus Torvalds 
97cc00e9cfSMasami Hiramatsu 	/*
98cc00e9cfSMasami Hiramatsu 	 * ... called if executing addr causes a fault (eg. page fault).
99cc00e9cfSMasami Hiramatsu 	 * Return 1 if it handled fault, otherwise kernel will see it.
100cc00e9cfSMasami Hiramatsu 	 */
1011da177e4SLinus Torvalds 	kprobe_fault_handler_t fault_handler;
1021da177e4SLinus Torvalds 
103cc00e9cfSMasami Hiramatsu 	/*
104cc00e9cfSMasami Hiramatsu 	 * ... called if breakpoint trap occurs in probe handler.
105cc00e9cfSMasami Hiramatsu 	 * Return 1 if it handled break, otherwise kernel will see it.
106cc00e9cfSMasami Hiramatsu 	 */
1071da177e4SLinus Torvalds 	kprobe_break_handler_t break_handler;
1081da177e4SLinus Torvalds 
1091da177e4SLinus Torvalds 	/* Saved opcode (which has been replaced with breakpoint) */
1101da177e4SLinus Torvalds 	kprobe_opcode_t opcode;
1111da177e4SLinus Torvalds 
1121da177e4SLinus Torvalds 	/* copy of the original instruction */
1131da177e4SLinus Torvalds 	struct arch_specific_insn ainsn;
114e8386a0cSMasami Hiramatsu 
115de5bd88dSMasami Hiramatsu 	/*
116de5bd88dSMasami Hiramatsu 	 * Indicates various status flags.
117de5bd88dSMasami Hiramatsu 	 * Protected by kprobe_mutex after this kprobe is registered.
118de5bd88dSMasami Hiramatsu 	 */
119e8386a0cSMasami Hiramatsu 	u32 flags;
1201da177e4SLinus Torvalds };
1211da177e4SLinus Torvalds 
122e8386a0cSMasami Hiramatsu /* Kprobe status flags */
123e8386a0cSMasami Hiramatsu #define KPROBE_FLAG_GONE	1 /* breakpoint has already gone */
124de5bd88dSMasami Hiramatsu #define KPROBE_FLAG_DISABLED	2 /* probe is temporarily disabled */
125e8386a0cSMasami Hiramatsu 
126de5bd88dSMasami Hiramatsu /* Has this kprobe gone ? */
127e8386a0cSMasami Hiramatsu static inline int kprobe_gone(struct kprobe *p)
128e8386a0cSMasami Hiramatsu {
129e8386a0cSMasami Hiramatsu 	return p->flags & KPROBE_FLAG_GONE;
130e8386a0cSMasami Hiramatsu }
131e8386a0cSMasami Hiramatsu 
132de5bd88dSMasami Hiramatsu /* Is this kprobe disabled ? */
133de5bd88dSMasami Hiramatsu static inline int kprobe_disabled(struct kprobe *p)
134de5bd88dSMasami Hiramatsu {
135de5bd88dSMasami Hiramatsu 	return p->flags & (KPROBE_FLAG_DISABLED | KPROBE_FLAG_GONE);
136de5bd88dSMasami Hiramatsu }
1371da177e4SLinus Torvalds /*
1381da177e4SLinus Torvalds  * Special probe type that uses setjmp-longjmp type tricks to resume
1391da177e4SLinus Torvalds  * execution at a specified entry with a matching prototype corresponding
1401da177e4SLinus Torvalds  * to the probed function - a trick to enable arguments to become
1411da177e4SLinus Torvalds  * accessible seamlessly by probe handling logic.
1421da177e4SLinus Torvalds  * Note:
1431da177e4SLinus Torvalds  * Because of the way compilers allocate stack space for local variables
1441da177e4SLinus Torvalds  * etc upfront, regardless of sub-scopes within a function, this mirroring
1451da177e4SLinus Torvalds  * principle currently works only for probes placed on function entry points.
1461da177e4SLinus Torvalds  */
1471da177e4SLinus Torvalds struct jprobe {
1481da177e4SLinus Torvalds 	struct kprobe kp;
14981eae375SMichael Ellerman 	void *entry;	/* probe handling code to jump to */
1501da177e4SLinus Torvalds };
1511da177e4SLinus Torvalds 
1529e367d85SMichael Ellerman /* For backward compatibility with old code using JPROBE_ENTRY() */
1539e367d85SMichael Ellerman #define JPROBE_ENTRY(handler)	(handler)
1549e367d85SMichael Ellerman 
155b94cce92SHien Nguyen /*
156b94cce92SHien Nguyen  * Function-return probe -
157b94cce92SHien Nguyen  * Note:
158b94cce92SHien Nguyen  * User needs to provide a handler function, and initialize maxactive.
159b94cce92SHien Nguyen  * maxactive - The maximum number of instances of the probed function that
160b94cce92SHien Nguyen  * can be active concurrently.
161b94cce92SHien Nguyen  * nmissed - tracks the number of times the probed function's return was
162b94cce92SHien Nguyen  * ignored, due to maxactive being too low.
163b94cce92SHien Nguyen  *
164b94cce92SHien Nguyen  */
165b94cce92SHien Nguyen struct kretprobe {
166b94cce92SHien Nguyen 	struct kprobe kp;
167b94cce92SHien Nguyen 	kretprobe_handler_t handler;
168f47cd9b5SAbhishek Sagar 	kretprobe_handler_t entry_handler;
169b94cce92SHien Nguyen 	int maxactive;
170b94cce92SHien Nguyen 	int nmissed;
171f47cd9b5SAbhishek Sagar 	size_t data_size;
172b94cce92SHien Nguyen 	struct hlist_head free_instances;
173ef53d9c5SSrinivasa D S 	spinlock_t lock;
174b94cce92SHien Nguyen };
175b94cce92SHien Nguyen 
176b94cce92SHien Nguyen struct kretprobe_instance {
177b94cce92SHien Nguyen 	struct hlist_node hlist;
178b94cce92SHien Nguyen 	struct kretprobe *rp;
179802eae7cSRusty Lynch 	kprobe_opcode_t *ret_addr;
180802eae7cSRusty Lynch 	struct task_struct *task;
181f47cd9b5SAbhishek Sagar 	char data[0];
182b94cce92SHien Nguyen };
183b94cce92SHien Nguyen 
184f438d914SMasami Hiramatsu struct kretprobe_blackpoint {
185f438d914SMasami Hiramatsu 	const char *name;
186f438d914SMasami Hiramatsu 	void *addr;
187f438d914SMasami Hiramatsu };
1883d8d996eSSrinivasa Ds 
1893d8d996eSSrinivasa Ds struct kprobe_blackpoint {
1903d8d996eSSrinivasa Ds 	const char *name;
1913d8d996eSSrinivasa Ds 	unsigned long start_addr;
1923d8d996eSSrinivasa Ds 	unsigned long range;
1933d8d996eSSrinivasa Ds };
1943d8d996eSSrinivasa Ds 
195dc19835dSMasami Hiramatsu #ifdef CONFIG_KPROBES
196dc19835dSMasami Hiramatsu DECLARE_PER_CPU(struct kprobe *, current_kprobe);
197dc19835dSMasami Hiramatsu DECLARE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
198dc19835dSMasami Hiramatsu 
199b1801812SIngo Molnar /*
200b1801812SIngo Molnar  * For #ifdef avoidance:
201b1801812SIngo Molnar  */
202b1801812SIngo Molnar static inline int kprobes_built_in(void)
203b1801812SIngo Molnar {
204b1801812SIngo Molnar 	return 1;
205b1801812SIngo Molnar }
206b1801812SIngo Molnar 
207dc19835dSMasami Hiramatsu #ifdef CONFIG_KRETPROBES
208dc19835dSMasami Hiramatsu extern void arch_prepare_kretprobe(struct kretprobe_instance *ri,
209dc19835dSMasami Hiramatsu 				   struct pt_regs *regs);
210dc19835dSMasami Hiramatsu extern int arch_trampoline_kprobe(struct kprobe *p);
211dc19835dSMasami Hiramatsu #else /* CONFIG_KRETPROBES */
212dc19835dSMasami Hiramatsu static inline void arch_prepare_kretprobe(struct kretprobe *rp,
213dc19835dSMasami Hiramatsu 					struct pt_regs *regs)
214dc19835dSMasami Hiramatsu {
215dc19835dSMasami Hiramatsu }
216dc19835dSMasami Hiramatsu static inline int arch_trampoline_kprobe(struct kprobe *p)
217dc19835dSMasami Hiramatsu {
218dc19835dSMasami Hiramatsu 	return 0;
219dc19835dSMasami Hiramatsu }
220dc19835dSMasami Hiramatsu #endif /* CONFIG_KRETPROBES */
221dc19835dSMasami Hiramatsu 
222f438d914SMasami Hiramatsu extern struct kretprobe_blackpoint kretprobe_blacklist[];
223f438d914SMasami Hiramatsu 
2240f95b7fcSAnanth N Mavinakayanahalli static inline void kretprobe_assert(struct kretprobe_instance *ri,
2250f95b7fcSAnanth N Mavinakayanahalli 	unsigned long orig_ret_address, unsigned long trampoline_address)
2260f95b7fcSAnanth N Mavinakayanahalli {
2270f95b7fcSAnanth N Mavinakayanahalli 	if (!orig_ret_address || (orig_ret_address == trampoline_address)) {
2280f95b7fcSAnanth N Mavinakayanahalli 		printk("kretprobe BUG!: Processing kretprobe %p @ %p\n",
2290f95b7fcSAnanth N Mavinakayanahalli 				ri->rp, ri->rp->kp.addr);
2300f95b7fcSAnanth N Mavinakayanahalli 		BUG();
2310f95b7fcSAnanth N Mavinakayanahalli 	}
2320f95b7fcSAnanth N Mavinakayanahalli }
2330f95b7fcSAnanth N Mavinakayanahalli 
2348c1c9356SAnanth N Mavinakayanahalli #ifdef CONFIG_KPROBES_SANITY_TEST
2358c1c9356SAnanth N Mavinakayanahalli extern int init_test_probes(void);
2368c1c9356SAnanth N Mavinakayanahalli #else
2378c1c9356SAnanth N Mavinakayanahalli static inline int init_test_probes(void)
2388c1c9356SAnanth N Mavinakayanahalli {
2398c1c9356SAnanth N Mavinakayanahalli 	return 0;
2408c1c9356SAnanth N Mavinakayanahalli }
2418c1c9356SAnanth N Mavinakayanahalli #endif /* CONFIG_KPROBES_SANITY_TEST */
2428c1c9356SAnanth N Mavinakayanahalli 
2431da177e4SLinus Torvalds extern int arch_prepare_kprobe(struct kprobe *p);
2447e1048b1SRusty Lynch extern void arch_arm_kprobe(struct kprobe *p);
2457e1048b1SRusty Lynch extern void arch_disarm_kprobe(struct kprobe *p);
2466772926bSRusty Lynch extern int arch_init_kprobes(void);
2471da177e4SLinus Torvalds extern void show_registers(struct pt_regs *regs);
2489ec4b1f3SAnanth N Mavinakayanahalli extern kprobe_opcode_t *get_insn_slot(void);
249b4c6c34aSMasami Hiramatsu extern void free_insn_slot(kprobe_opcode_t *slot, int dirty);
250bf8d5c52SKeshavamurthy Anil S extern void kprobes_inc_nmissed_count(struct kprobe *p);
2511da177e4SLinus Torvalds 
252d217d545SAnanth N Mavinakayanahalli /* Get the kprobe at this addr (if any) - called with preemption disabled */
2531da177e4SLinus Torvalds struct kprobe *get_kprobe(void *addr);
254ef53d9c5SSrinivasa D S void kretprobe_hash_lock(struct task_struct *tsk,
255ef53d9c5SSrinivasa D S 			 struct hlist_head **head, unsigned long *flags);
256ef53d9c5SSrinivasa D S void kretprobe_hash_unlock(struct task_struct *tsk, unsigned long *flags);
257b94cce92SHien Nguyen struct hlist_head * kretprobe_inst_table_head(struct task_struct *tsk);
2581da177e4SLinus Torvalds 
259e6584523SAnanth N Mavinakayanahalli /* kprobe_running() will just return the current_kprobe on this CPU */
260e6584523SAnanth N Mavinakayanahalli static inline struct kprobe *kprobe_running(void)
261e6584523SAnanth N Mavinakayanahalli {
262e6584523SAnanth N Mavinakayanahalli 	return (__get_cpu_var(current_kprobe));
263e6584523SAnanth N Mavinakayanahalli }
264e6584523SAnanth N Mavinakayanahalli 
265e6584523SAnanth N Mavinakayanahalli static inline void reset_current_kprobe(void)
266e6584523SAnanth N Mavinakayanahalli {
267e6584523SAnanth N Mavinakayanahalli 	__get_cpu_var(current_kprobe) = NULL;
268e6584523SAnanth N Mavinakayanahalli }
269e6584523SAnanth N Mavinakayanahalli 
270e6584523SAnanth N Mavinakayanahalli static inline struct kprobe_ctlblk *get_kprobe_ctlblk(void)
271e6584523SAnanth N Mavinakayanahalli {
272e6584523SAnanth N Mavinakayanahalli 	return (&__get_cpu_var(kprobe_ctlblk));
273e6584523SAnanth N Mavinakayanahalli }
274e6584523SAnanth N Mavinakayanahalli 
2751da177e4SLinus Torvalds int register_kprobe(struct kprobe *p);
2761da177e4SLinus Torvalds void unregister_kprobe(struct kprobe *p);
2779861668fSMasami Hiramatsu int register_kprobes(struct kprobe **kps, int num);
2789861668fSMasami Hiramatsu void unregister_kprobes(struct kprobe **kps, int num);
2791da177e4SLinus Torvalds int setjmp_pre_handler(struct kprobe *, struct pt_regs *);
2801da177e4SLinus Torvalds int longjmp_break_handler(struct kprobe *, struct pt_regs *);
2811da177e4SLinus Torvalds int register_jprobe(struct jprobe *p);
2821da177e4SLinus Torvalds void unregister_jprobe(struct jprobe *p);
28326b31c19SMasami Hiramatsu int register_jprobes(struct jprobe **jps, int num);
28426b31c19SMasami Hiramatsu void unregister_jprobes(struct jprobe **jps, int num);
2851da177e4SLinus Torvalds void jprobe_return(void);
2863d7e3382SMichael Ellerman unsigned long arch_deref_entry_point(void *);
2871da177e4SLinus Torvalds 
288b94cce92SHien Nguyen int register_kretprobe(struct kretprobe *rp);
289b94cce92SHien Nguyen void unregister_kretprobe(struct kretprobe *rp);
2904a296e07SMasami Hiramatsu int register_kretprobes(struct kretprobe **rps, int num);
2914a296e07SMasami Hiramatsu void unregister_kretprobes(struct kretprobe **rps, int num);
292b94cce92SHien Nguyen 
293b94cce92SHien Nguyen void kprobe_flush_task(struct task_struct *tk);
29499219a3fSbibo,mao void recycle_rp_inst(struct kretprobe_instance *ri, struct hlist_head *head);
2958c1c9356SAnanth N Mavinakayanahalli 
296de5bd88dSMasami Hiramatsu int disable_kprobe(struct kprobe *kp);
297de5bd88dSMasami Hiramatsu int enable_kprobe(struct kprobe *kp);
298de5bd88dSMasami Hiramatsu 
299b1801812SIngo Molnar #else /* !CONFIG_KPROBES: */
30000d7c05aSKeshavamurthy Anil S 
301b1801812SIngo Molnar static inline int kprobes_built_in(void)
302b1801812SIngo Molnar {
303b1801812SIngo Molnar 	return 0;
304b1801812SIngo Molnar }
305b1801812SIngo Molnar static inline int kprobe_fault_handler(struct pt_regs *regs, int trapnr)
306b1801812SIngo Molnar {
307b1801812SIngo Molnar 	return 0;
308b1801812SIngo Molnar }
309785656a4SAbhishek Sagar static inline struct kprobe *get_kprobe(void *addr)
310785656a4SAbhishek Sagar {
311785656a4SAbhishek Sagar 	return NULL;
312785656a4SAbhishek Sagar }
313e6584523SAnanth N Mavinakayanahalli static inline struct kprobe *kprobe_running(void)
3141da177e4SLinus Torvalds {
315e6584523SAnanth N Mavinakayanahalli 	return NULL;
3161da177e4SLinus Torvalds }
3171da177e4SLinus Torvalds static inline int register_kprobe(struct kprobe *p)
3181da177e4SLinus Torvalds {
3191da177e4SLinus Torvalds 	return -ENOSYS;
3201da177e4SLinus Torvalds }
3219861668fSMasami Hiramatsu static inline int register_kprobes(struct kprobe **kps, int num)
3229861668fSMasami Hiramatsu {
3239861668fSMasami Hiramatsu 	return -ENOSYS;
3249861668fSMasami Hiramatsu }
3251da177e4SLinus Torvalds static inline void unregister_kprobe(struct kprobe *p)
3261da177e4SLinus Torvalds {
3271da177e4SLinus Torvalds }
3289861668fSMasami Hiramatsu static inline void unregister_kprobes(struct kprobe **kps, int num)
3299861668fSMasami Hiramatsu {
3309861668fSMasami Hiramatsu }
3311da177e4SLinus Torvalds static inline int register_jprobe(struct jprobe *p)
3321da177e4SLinus Torvalds {
3331da177e4SLinus Torvalds 	return -ENOSYS;
3341da177e4SLinus Torvalds }
33526b31c19SMasami Hiramatsu static inline int register_jprobes(struct jprobe **jps, int num)
33626b31c19SMasami Hiramatsu {
33726b31c19SMasami Hiramatsu 	return -ENOSYS;
33826b31c19SMasami Hiramatsu }
3391da177e4SLinus Torvalds static inline void unregister_jprobe(struct jprobe *p)
3401da177e4SLinus Torvalds {
3411da177e4SLinus Torvalds }
34226b31c19SMasami Hiramatsu static inline void unregister_jprobes(struct jprobe **jps, int num)
34326b31c19SMasami Hiramatsu {
34426b31c19SMasami Hiramatsu }
3451da177e4SLinus Torvalds static inline void jprobe_return(void)
3461da177e4SLinus Torvalds {
3471da177e4SLinus Torvalds }
348b94cce92SHien Nguyen static inline int register_kretprobe(struct kretprobe *rp)
349b94cce92SHien Nguyen {
350b94cce92SHien Nguyen 	return -ENOSYS;
351b94cce92SHien Nguyen }
3524a296e07SMasami Hiramatsu static inline int register_kretprobes(struct kretprobe **rps, int num)
3534a296e07SMasami Hiramatsu {
3544a296e07SMasami Hiramatsu 	return -ENOSYS;
3554a296e07SMasami Hiramatsu }
356b94cce92SHien Nguyen static inline void unregister_kretprobe(struct kretprobe *rp)
357b94cce92SHien Nguyen {
358b94cce92SHien Nguyen }
3594a296e07SMasami Hiramatsu static inline void unregister_kretprobes(struct kretprobe **rps, int num)
3604a296e07SMasami Hiramatsu {
3614a296e07SMasami Hiramatsu }
362b94cce92SHien Nguyen static inline void kprobe_flush_task(struct task_struct *tk)
363b94cce92SHien Nguyen {
364b94cce92SHien Nguyen }
365de5bd88dSMasami Hiramatsu static inline int disable_kprobe(struct kprobe *kp)
366de5bd88dSMasami Hiramatsu {
367de5bd88dSMasami Hiramatsu 	return -ENOSYS;
368de5bd88dSMasami Hiramatsu }
369de5bd88dSMasami Hiramatsu static inline int enable_kprobe(struct kprobe *kp)
370de5bd88dSMasami Hiramatsu {
371de5bd88dSMasami Hiramatsu 	return -ENOSYS;
372de5bd88dSMasami Hiramatsu }
373b94cce92SHien Nguyen #endif /* CONFIG_KPROBES */
374*8f9b1528SMasami Hiramatsu static inline int disable_kretprobe(struct kretprobe *rp)
375*8f9b1528SMasami Hiramatsu {
376*8f9b1528SMasami Hiramatsu 	return disable_kprobe(&rp->kp);
377*8f9b1528SMasami Hiramatsu }
378*8f9b1528SMasami Hiramatsu static inline int enable_kretprobe(struct kretprobe *rp)
379*8f9b1528SMasami Hiramatsu {
380*8f9b1528SMasami Hiramatsu 	return enable_kprobe(&rp->kp);
381*8f9b1528SMasami Hiramatsu }
382*8f9b1528SMasami Hiramatsu static inline int disable_jprobe(struct jprobe *jp)
383*8f9b1528SMasami Hiramatsu {
384*8f9b1528SMasami Hiramatsu 	return disable_kprobe(&jp->kp);
385*8f9b1528SMasami Hiramatsu }
386*8f9b1528SMasami Hiramatsu static inline int enable_jprobe(struct jprobe *jp)
387*8f9b1528SMasami Hiramatsu {
388*8f9b1528SMasami Hiramatsu 	return enable_kprobe(&jp->kp);
389*8f9b1528SMasami Hiramatsu }
390*8f9b1528SMasami Hiramatsu 
3911da177e4SLinus Torvalds #endif /* _LINUX_KPROBES_H */
392