blob: 23755ba42abc456a06ffd663d0b3817570c1e7cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_KPROBES_H
2#define _LINUX_KPROBES_H
3/*
4 * Kernel Probes (KProbes)
5 * include/linux/kprobes.h
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 *
21 * Copyright (C) IBM Corporation, 2002, 2004
22 *
23 * 2002-Oct Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel
24 * Probes initial implementation ( includes suggestions from
25 * Rusty Russell).
26 * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes
27 * interface to access function arguments.
Hien Nguyenb94cce92005-06-23 00:09:19 -070028 * 2005-May Hien Nguyen <hien@us.ibm.com> and Jim Keniston
29 * <jkenisto@us.ibm.com> and Prasanna S Panchamukhi
30 * <prasanna@in.ibm.com> added function-return probes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
Ingo Molnar36dcd672008-07-29 12:00:59 +020032#include <linux/linkage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/list.h>
34#include <linux/notifier.h>
35#include <linux/smp.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -050036#include <linux/bug.h>
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -080037#include <linux/percpu.h>
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -080038#include <linux/spinlock.h>
39#include <linux/rcupdate.h>
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -080040#include <linux/mutex.h>
Masami Hiramatsuae6aa162012-06-05 19:28:32 +090041#include <linux/ftrace.h>
Hien Nguyenb94cce92005-06-23 00:09:19 -070042
Keshavamurthy Anil S00d7c052005-12-12 00:37:33 -080043#ifdef CONFIG_KPROBES
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/kprobes.h>
45
Prasanna S Panchamukhiea32c652005-06-23 00:09:36 -070046/* kprobe_status settings */
47#define KPROBE_HIT_ACTIVE 0x00000001
48#define KPROBE_HIT_SS 0x00000002
49#define KPROBE_REENTER 0x00000004
50#define KPROBE_HIT_SSDONE 0x00000008
51
Masami Hiramatsuae6aa162012-06-05 19:28:32 +090052/*
53 * If function tracer is enabled and the arch supports full
54 * passing of pt_regs to function tracing, then kprobes can
55 * optimize on top of function tracing.
56 */
57#if defined(CONFIG_FUNCTION_TRACER) && defined(ARCH_SUPPORTS_FTRACE_SAVE_REGS) \
58 && defined(ARCH_SUPPORTS_KPROBES_ON_FTRACE)
59# define KPROBES_CAN_USE_FTRACE
60#endif
61
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -070062/* Attach to insert probes on any functions which should be ignored*/
Steven Rostedtfe832a32009-09-15 23:51:31 -040063#define __kprobes __attribute__((__section__(".kprobes.text")))
Masami Hiramatsuae6aa162012-06-05 19:28:32 +090064
Masami Hiramatsudc198352009-01-29 14:25:08 -080065#else /* CONFIG_KPROBES */
66typedef int kprobe_opcode_t;
67struct arch_specific_insn {
68 int dummy;
69};
Steven Rostedtfe832a32009-09-15 23:51:31 -040070#define __kprobes
Masami Hiramatsuae6aa162012-06-05 19:28:32 +090071
Masami Hiramatsudc198352009-01-29 14:25:08 -080072#endif /* CONFIG_KPROBES */
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074struct kprobe;
75struct pt_regs;
Hien Nguyenb94cce92005-06-23 00:09:19 -070076struct kretprobe;
77struct kretprobe_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078typedef int (*kprobe_pre_handler_t) (struct kprobe *, struct pt_regs *);
79typedef int (*kprobe_break_handler_t) (struct kprobe *, struct pt_regs *);
80typedef void (*kprobe_post_handler_t) (struct kprobe *, struct pt_regs *,
81 unsigned long flags);
82typedef int (*kprobe_fault_handler_t) (struct kprobe *, struct pt_regs *,
83 int trapnr);
Hien Nguyenb94cce92005-06-23 00:09:19 -070084typedef int (*kretprobe_handler_t) (struct kretprobe_instance *,
85 struct pt_regs *);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087struct kprobe {
88 struct hlist_node hlist;
89
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -070090 /* list of kprobes for multi-handler support */
91 struct list_head list;
92
Prasanna S Panchamukhiea32c652005-06-23 00:09:36 -070093 /*count the number of times this probe was temporarily disarmed */
94 unsigned long nmissed;
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 /* location of the probe point */
97 kprobe_opcode_t *addr;
98
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -070099 /* Allow user to indicate symbol name of the probe point */
Ananth N Mavinakayanahalli9b3af292007-05-08 00:26:23 -0700100 const char *symbol_name;
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -0700101
102 /* Offset into the symbol */
103 unsigned int offset;
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* Called before addr is executed. */
106 kprobe_pre_handler_t pre_handler;
107
108 /* Called after addr is executed, unless... */
109 kprobe_post_handler_t post_handler;
110
Masami Hiramatsucc00e9c2009-04-06 19:01:00 -0700111 /*
112 * ... called if executing addr causes a fault (eg. page fault).
113 * Return 1 if it handled fault, otherwise kernel will see it.
114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 kprobe_fault_handler_t fault_handler;
116
Masami Hiramatsucc00e9c2009-04-06 19:01:00 -0700117 /*
118 * ... called if breakpoint trap occurs in probe handler.
119 * Return 1 if it handled break, otherwise kernel will see it.
120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 kprobe_break_handler_t break_handler;
122
123 /* Saved opcode (which has been replaced with breakpoint) */
124 kprobe_opcode_t opcode;
125
126 /* copy of the original instruction */
127 struct arch_specific_insn ainsn;
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800128
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700129 /*
130 * Indicates various status flags.
131 * Protected by kprobe_mutex after this kprobe is registered.
132 */
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800133 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134};
135
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800136/* Kprobe status flags */
137#define KPROBE_FLAG_GONE 1 /* breakpoint has already gone */
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700138#define KPROBE_FLAG_DISABLED 2 /* probe is temporarily disabled */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500139#define KPROBE_FLAG_OPTIMIZED 4 /*
140 * probe is really optimized.
141 * NOTE:
142 * this flag is only for optimized_kprobe.
143 */
Masami Hiramatsuae6aa162012-06-05 19:28:32 +0900144#define KPROBE_FLAG_FTRACE 8 /* probe is using ftrace */
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800145
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700146/* Has this kprobe gone ? */
Masami Hiramatsue8386a02009-01-06 14:41:52 -0800147static inline int kprobe_gone(struct kprobe *p)
148{
149 return p->flags & KPROBE_FLAG_GONE;
150}
151
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700152/* Is this kprobe disabled ? */
153static inline int kprobe_disabled(struct kprobe *p)
154{
155 return p->flags & (KPROBE_FLAG_DISABLED | KPROBE_FLAG_GONE);
156}
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500157
158/* Is this kprobe really running optimized path ? */
159static inline int kprobe_optimized(struct kprobe *p)
160{
161 return p->flags & KPROBE_FLAG_OPTIMIZED;
162}
Masami Hiramatsuae6aa162012-06-05 19:28:32 +0900163
164/* Is this kprobe uses ftrace ? */
165static inline int kprobe_ftrace(struct kprobe *p)
166{
167 return p->flags & KPROBE_FLAG_FTRACE;
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
171 * Special probe type that uses setjmp-longjmp type tricks to resume
172 * execution at a specified entry with a matching prototype corresponding
173 * to the probed function - a trick to enable arguments to become
174 * accessible seamlessly by probe handling logic.
175 * Note:
176 * Because of the way compilers allocate stack space for local variables
177 * etc upfront, regardless of sub-scopes within a function, this mirroring
178 * principle currently works only for probes placed on function entry points.
179 */
180struct jprobe {
181 struct kprobe kp;
Michael Ellerman81eae372007-07-19 01:48:09 -0700182 void *entry; /* probe handling code to jump to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183};
184
Michael Ellerman9e367d82007-07-19 01:48:10 -0700185/* For backward compatibility with old code using JPROBE_ENTRY() */
186#define JPROBE_ENTRY(handler) (handler)
187
Hien Nguyenb94cce92005-06-23 00:09:19 -0700188/*
189 * Function-return probe -
190 * Note:
191 * User needs to provide a handler function, and initialize maxactive.
192 * maxactive - The maximum number of instances of the probed function that
193 * can be active concurrently.
194 * nmissed - tracks the number of times the probed function's return was
195 * ignored, due to maxactive being too low.
196 *
197 */
198struct kretprobe {
199 struct kprobe kp;
200 kretprobe_handler_t handler;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -0800201 kretprobe_handler_t entry_handler;
Hien Nguyenb94cce92005-06-23 00:09:19 -0700202 int maxactive;
203 int nmissed;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -0800204 size_t data_size;
Hien Nguyenb94cce92005-06-23 00:09:19 -0700205 struct hlist_head free_instances;
Thomas Gleixnerec4846082009-07-25 16:09:17 +0200206 raw_spinlock_t lock;
Hien Nguyenb94cce92005-06-23 00:09:19 -0700207};
208
209struct kretprobe_instance {
Hien Nguyenb94cce92005-06-23 00:09:19 -0700210 struct hlist_node hlist;
211 struct kretprobe *rp;
Rusty Lynch802eae72005-06-27 15:17:08 -0700212 kprobe_opcode_t *ret_addr;
213 struct task_struct *task;
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -0800214 char data[0];
Hien Nguyenb94cce92005-06-23 00:09:19 -0700215};
216
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700217struct kretprobe_blackpoint {
218 const char *name;
219 void *addr;
220};
Srinivasa Ds3d8d9962008-04-28 02:14:26 -0700221
222struct kprobe_blackpoint {
223 const char *name;
224 unsigned long start_addr;
225 unsigned long range;
226};
227
Masami Hiramatsudc198352009-01-29 14:25:08 -0800228#ifdef CONFIG_KPROBES
229DECLARE_PER_CPU(struct kprobe *, current_kprobe);
230DECLARE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
231
Ingo Molnarb1801812009-02-20 22:42:57 +0100232/*
233 * For #ifdef avoidance:
234 */
235static inline int kprobes_built_in(void)
236{
237 return 1;
238}
239
Masami Hiramatsudc198352009-01-29 14:25:08 -0800240#ifdef CONFIG_KRETPROBES
241extern void arch_prepare_kretprobe(struct kretprobe_instance *ri,
242 struct pt_regs *regs);
243extern int arch_trampoline_kprobe(struct kprobe *p);
244#else /* CONFIG_KRETPROBES */
245static inline void arch_prepare_kretprobe(struct kretprobe *rp,
246 struct pt_regs *regs)
247{
248}
249static inline int arch_trampoline_kprobe(struct kprobe *p)
250{
251 return 0;
252}
253#endif /* CONFIG_KRETPROBES */
254
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700255extern struct kretprobe_blackpoint kretprobe_blacklist[];
256
Ananth N Mavinakayanahalli0f95b7f2007-05-08 00:28:27 -0700257static inline void kretprobe_assert(struct kretprobe_instance *ri,
258 unsigned long orig_ret_address, unsigned long trampoline_address)
259{
260 if (!orig_ret_address || (orig_ret_address == trampoline_address)) {
261 printk("kretprobe BUG!: Processing kretprobe %p @ %p\n",
262 ri->rp, ri->rp->kp.addr);
263 BUG();
264 }
265}
266
Ananth N Mavinakayanahalli8c1c9352008-01-30 13:32:53 +0100267#ifdef CONFIG_KPROBES_SANITY_TEST
268extern int init_test_probes(void);
269#else
270static inline int init_test_probes(void)
271{
272 return 0;
273}
274#endif /* CONFIG_KPROBES_SANITY_TEST */
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276extern int arch_prepare_kprobe(struct kprobe *p);
Rusty Lynch7e1048b2005-06-23 00:09:25 -0700277extern void arch_arm_kprobe(struct kprobe *p);
278extern void arch_disarm_kprobe(struct kprobe *p);
Rusty Lynch67729262005-07-05 18:54:50 -0700279extern int arch_init_kprobes(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280extern void show_registers(struct pt_regs *regs);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700281extern kprobe_opcode_t *get_insn_slot(void);
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800282extern void free_insn_slot(kprobe_opcode_t *slot, int dirty);
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800283extern void kprobes_inc_nmissed_count(struct kprobe *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500285#ifdef CONFIG_OPTPROBES
286/*
287 * Internal structure for direct jump optimized probe
288 */
289struct optimized_kprobe {
290 struct kprobe kp;
291 struct list_head list; /* list for optimizing queue */
292 struct arch_optimized_insn optinsn;
293};
294
295/* Architecture dependent functions for direct jump optimization */
296extern int arch_prepared_optinsn(struct arch_optimized_insn *optinsn);
297extern int arch_check_optimized_kprobe(struct optimized_kprobe *op);
298extern int arch_prepare_optimized_kprobe(struct optimized_kprobe *op);
299extern void arch_remove_optimized_kprobe(struct optimized_kprobe *op);
Masami Hiramatsucd7ebe22010-12-03 18:54:28 +0900300extern void arch_optimize_kprobes(struct list_head *oplist);
Masami Hiramatsuf984ba42010-12-03 18:54:34 +0900301extern void arch_unoptimize_kprobes(struct list_head *oplist,
302 struct list_head *done_list);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500303extern void arch_unoptimize_kprobe(struct optimized_kprobe *op);
304extern kprobe_opcode_t *get_optinsn_slot(void);
305extern void free_optinsn_slot(kprobe_opcode_t *slot, int dirty);
306extern int arch_within_optimized_kprobe(struct optimized_kprobe *op,
307 unsigned long addr);
308
309extern void opt_pre_handler(struct kprobe *p, struct pt_regs *regs);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500310
311#ifdef CONFIG_SYSCTL
312extern int sysctl_kprobes_optimization;
313extern int proc_kprobes_optimization_handler(struct ctl_table *table,
314 int write, void __user *buffer,
315 size_t *length, loff_t *ppos);
316#endif
317
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500318#endif /* CONFIG_OPTPROBES */
Masami Hiramatsuae6aa162012-06-05 19:28:32 +0900319#ifdef KPROBES_CAN_USE_FTRACE
320extern void kprobe_ftrace_handler(unsigned long ip, unsigned long parent_ip,
Masami Hiramatsue5253892012-06-05 19:28:38 +0900321 struct ftrace_ops *ops, struct pt_regs *regs);
Masami Hiramatsuae6aa162012-06-05 19:28:32 +0900322extern int arch_prepare_kprobe_ftrace(struct kprobe *p);
323#endif
324
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500325
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800326/* Get the kprobe at this addr (if any) - called with preemption disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327struct kprobe *get_kprobe(void *addr);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700328void kretprobe_hash_lock(struct task_struct *tsk,
329 struct hlist_head **head, unsigned long *flags);
330void kretprobe_hash_unlock(struct task_struct *tsk, unsigned long *flags);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700331struct hlist_head * kretprobe_inst_table_head(struct task_struct *tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800333/* kprobe_running() will just return the current_kprobe on this CPU */
334static inline struct kprobe *kprobe_running(void)
335{
Christoph Lameterb76834b2010-12-06 11:16:25 -0600336 return (__this_cpu_read(current_kprobe));
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800337}
338
339static inline void reset_current_kprobe(void)
340{
Christoph Lameterb76834b2010-12-06 11:16:25 -0600341 __this_cpu_write(current_kprobe, NULL);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800342}
343
344static inline struct kprobe_ctlblk *get_kprobe_ctlblk(void)
345{
346 return (&__get_cpu_var(kprobe_ctlblk));
347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349int register_kprobe(struct kprobe *p);
350void unregister_kprobe(struct kprobe *p);
Masami Hiramatsu98616682008-04-28 02:14:28 -0700351int register_kprobes(struct kprobe **kps, int num);
352void unregister_kprobes(struct kprobe **kps, int num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353int setjmp_pre_handler(struct kprobe *, struct pt_regs *);
354int longjmp_break_handler(struct kprobe *, struct pt_regs *);
355int register_jprobe(struct jprobe *p);
356void unregister_jprobe(struct jprobe *p);
Masami Hiramatsu26b31c12008-04-28 02:14:29 -0700357int register_jprobes(struct jprobe **jps, int num);
358void unregister_jprobes(struct jprobe **jps, int num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359void jprobe_return(void);
Michael Ellerman3d7e3382007-07-19 01:48:11 -0700360unsigned long arch_deref_entry_point(void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Hien Nguyenb94cce92005-06-23 00:09:19 -0700362int register_kretprobe(struct kretprobe *rp);
363void unregister_kretprobe(struct kretprobe *rp);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700364int register_kretprobes(struct kretprobe **rps, int num);
365void unregister_kretprobes(struct kretprobe **rps, int num);
Hien Nguyenb94cce92005-06-23 00:09:19 -0700366
Hien Nguyenb94cce92005-06-23 00:09:19 -0700367void kprobe_flush_task(struct task_struct *tk);
bibo,mao99219a32006-10-02 02:17:35 -0700368void recycle_rp_inst(struct kretprobe_instance *ri, struct hlist_head *head);
Ananth N Mavinakayanahalli8c1c9352008-01-30 13:32:53 +0100369
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700370int disable_kprobe(struct kprobe *kp);
371int enable_kprobe(struct kprobe *kp);
372
Frederic Weisbecker24851d22009-08-26 23:38:30 +0200373void dump_kprobe(struct kprobe *kp);
374
Ingo Molnarb1801812009-02-20 22:42:57 +0100375#else /* !CONFIG_KPROBES: */
Keshavamurthy Anil S00d7c052005-12-12 00:37:33 -0800376
Ingo Molnarb1801812009-02-20 22:42:57 +0100377static inline int kprobes_built_in(void)
378{
379 return 0;
380}
381static inline int kprobe_fault_handler(struct pt_regs *regs, int trapnr)
382{
383 return 0;
384}
Abhishek Sagar785656a2008-06-21 23:47:39 +0530385static inline struct kprobe *get_kprobe(void *addr)
386{
387 return NULL;
388}
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800389static inline struct kprobe *kprobe_running(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800391 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393static inline int register_kprobe(struct kprobe *p)
394{
395 return -ENOSYS;
396}
Masami Hiramatsu98616682008-04-28 02:14:28 -0700397static inline int register_kprobes(struct kprobe **kps, int num)
398{
399 return -ENOSYS;
400}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401static inline void unregister_kprobe(struct kprobe *p)
402{
403}
Masami Hiramatsu98616682008-04-28 02:14:28 -0700404static inline void unregister_kprobes(struct kprobe **kps, int num)
405{
406}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407static inline int register_jprobe(struct jprobe *p)
408{
409 return -ENOSYS;
410}
Masami Hiramatsu26b31c12008-04-28 02:14:29 -0700411static inline int register_jprobes(struct jprobe **jps, int num)
412{
413 return -ENOSYS;
414}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static inline void unregister_jprobe(struct jprobe *p)
416{
417}
Masami Hiramatsu26b31c12008-04-28 02:14:29 -0700418static inline void unregister_jprobes(struct jprobe **jps, int num)
419{
420}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421static inline void jprobe_return(void)
422{
423}
Hien Nguyenb94cce92005-06-23 00:09:19 -0700424static inline int register_kretprobe(struct kretprobe *rp)
425{
426 return -ENOSYS;
427}
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700428static inline int register_kretprobes(struct kretprobe **rps, int num)
429{
430 return -ENOSYS;
431}
Hien Nguyenb94cce92005-06-23 00:09:19 -0700432static inline void unregister_kretprobe(struct kretprobe *rp)
433{
434}
Masami Hiramatsu4a296e02008-04-28 02:14:29 -0700435static inline void unregister_kretprobes(struct kretprobe **rps, int num)
436{
437}
Hien Nguyenb94cce92005-06-23 00:09:19 -0700438static inline void kprobe_flush_task(struct task_struct *tk)
439{
440}
Masami Hiramatsude5bd882009-04-06 19:01:02 -0700441static inline int disable_kprobe(struct kprobe *kp)
442{
443 return -ENOSYS;
444}
445static inline int enable_kprobe(struct kprobe *kp)
446{
447 return -ENOSYS;
448}
Ingo Molnarb1801812009-02-20 22:42:57 +0100449#endif /* CONFIG_KPROBES */
Masami Hiramatsu8f9b1522009-04-06 19:01:02 -0700450static inline int disable_kretprobe(struct kretprobe *rp)
451{
452 return disable_kprobe(&rp->kp);
453}
454static inline int enable_kretprobe(struct kretprobe *rp)
455{
456 return enable_kprobe(&rp->kp);
457}
458static inline int disable_jprobe(struct jprobe *jp)
459{
460 return disable_kprobe(&jp->kp);
461}
462static inline int enable_jprobe(struct jprobe *jp)
463{
464 return enable_kprobe(&jp->kp);
465}
466
Ingo Molnarb1801812009-02-20 22:42:57 +0100467#endif /* _LINUX_KPROBES_H */