Linux 6.10-rc4
[linux-block.git] / include / linux / kprobes.h
CommitLineData
1a59d1b8 1/* SPDX-License-Identifier: GPL-2.0-or-later */
1da177e4
LT
2#ifndef _LINUX_KPROBES_H
3#define _LINUX_KPROBES_H
4/*
5 * Kernel Probes (KProbes)
1da177e4 6 *
1da177e4
LT
7 * Copyright (C) IBM Corporation, 2002, 2004
8 *
9 * 2002-Oct Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel
10 * Probes initial implementation ( includes suggestions from
11 * Rusty Russell).
12 * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes
13 * interface to access function arguments.
b94cce92
HN
14 * 2005-May Hien Nguyen <hien@us.ibm.com> and Jim Keniston
15 * <jkenisto@us.ibm.com> and Prasanna S Panchamukhi
16 * <prasanna@in.ibm.com> added function-return probes.
1da177e4 17 */
7d134b2c 18#include <linux/compiler.h>
36dcd67a 19#include <linux/linkage.h>
1da177e4
LT
20#include <linux/list.h>
21#include <linux/notifier.h>
22#include <linux/smp.h>
187f1882 23#include <linux/bug.h>
e6584523 24#include <linux/percpu.h>
3516a460
AM
25#include <linux/spinlock.h>
26#include <linux/rcupdate.h>
7a7d1cf9 27#include <linux/mutex.h>
ae6aa16f 28#include <linux/ftrace.h>
4bbd9345 29#include <linux/objpool.h>
73f9b911 30#include <linux/rethook.h>
7d134b2c 31#include <asm/kprobes.h>
b94cce92 32
00d7c05a 33#ifdef CONFIG_KPROBES
1da177e4 34
ea32c65c
PP
35/* kprobe_status settings */
36#define KPROBE_HIT_ACTIVE 0x00000001
37#define KPROBE_HIT_SS 0x00000002
38#define KPROBE_REENTER 0x00000004
39#define KPROBE_HIT_SSDONE 0x00000008
40
223a76b2 41#else /* !CONFIG_KPROBES */
7d134b2c 42#include <asm-generic/kprobes.h>
dc19835d
MH
43typedef int kprobe_opcode_t;
44struct arch_specific_insn {
45 int dummy;
46};
dc19835d 47#endif /* CONFIG_KPROBES */
d0aaff97 48
1da177e4
LT
49struct kprobe;
50struct pt_regs;
b94cce92
HN
51struct kretprobe;
52struct kretprobe_instance;
1da177e4 53typedef int (*kprobe_pre_handler_t) (struct kprobe *, struct pt_regs *);
1da177e4
LT
54typedef void (*kprobe_post_handler_t) (struct kprobe *, struct pt_regs *,
55 unsigned long flags);
b94cce92
HN
56typedef int (*kretprobe_handler_t) (struct kretprobe_instance *,
57 struct pt_regs *);
58
1da177e4
LT
59struct kprobe {
60 struct hlist_node hlist;
61
64f562c6
AM
62 /* list of kprobes for multi-handler support */
63 struct list_head list;
64
ea32c65c
PP
65 /*count the number of times this probe was temporarily disarmed */
66 unsigned long nmissed;
67
1da177e4
LT
68 /* location of the probe point */
69 kprobe_opcode_t *addr;
70
3a872d89 71 /* Allow user to indicate symbol name of the probe point */
9b3af29b 72 const char *symbol_name;
3a872d89
AM
73
74 /* Offset into the symbol */
75 unsigned int offset;
76
1da177e4
LT
77 /* Called before addr is executed. */
78 kprobe_pre_handler_t pre_handler;
79
80 /* Called after addr is executed, unless... */
81 kprobe_post_handler_t post_handler;
82
1da177e4
LT
83 /* Saved opcode (which has been replaced with breakpoint) */
84 kprobe_opcode_t opcode;
85
86 /* copy of the original instruction */
87 struct arch_specific_insn ainsn;
e8386a0c 88
de5bd88d
MH
89 /*
90 * Indicates various status flags.
91 * Protected by kprobe_mutex after this kprobe is registered.
92 */
e8386a0c 93 u32 flags;
1da177e4
LT
94};
95
e8386a0c
MH
96/* Kprobe status flags */
97#define KPROBE_FLAG_GONE 1 /* breakpoint has already gone */
de5bd88d 98#define KPROBE_FLAG_DISABLED 2 /* probe is temporarily disabled */
afd66255
MH
99#define KPROBE_FLAG_OPTIMIZED 4 /*
100 * probe is really optimized.
101 * NOTE:
102 * this flag is only for optimized_kprobe.
103 */
ae6aa16f 104#define KPROBE_FLAG_FTRACE 8 /* probe is using ftrace */
bf7a87f1 105#define KPROBE_FLAG_ON_FUNC_ENTRY 16 /* probe is on the function entry */
e8386a0c 106
de5bd88d 107/* Has this kprobe gone ? */
29e8077a 108static inline bool kprobe_gone(struct kprobe *p)
e8386a0c
MH
109{
110 return p->flags & KPROBE_FLAG_GONE;
111}
112
de5bd88d 113/* Is this kprobe disabled ? */
29e8077a 114static inline bool kprobe_disabled(struct kprobe *p)
de5bd88d
MH
115{
116 return p->flags & (KPROBE_FLAG_DISABLED | KPROBE_FLAG_GONE);
117}
afd66255
MH
118
119/* Is this kprobe really running optimized path ? */
29e8077a 120static inline bool kprobe_optimized(struct kprobe *p)
afd66255
MH
121{
122 return p->flags & KPROBE_FLAG_OPTIMIZED;
123}
ae6aa16f
MH
124
125/* Is this kprobe uses ftrace ? */
29e8077a 126static inline bool kprobe_ftrace(struct kprobe *p)
ae6aa16f
MH
127{
128 return p->flags & KPROBE_FLAG_FTRACE;
129}
130
b94cce92
HN
131/*
132 * Function-return probe -
133 * Note:
134 * User needs to provide a handler function, and initialize maxactive.
135 * maxactive - The maximum number of instances of the probed function that
136 * can be active concurrently.
137 * nmissed - tracks the number of times the probed function's return was
138 * ignored, due to maxactive being too low.
139 *
140 */
d741bf41 141struct kretprobe_holder {
d839a656 142 struct kretprobe __rcu *rp;
4bbd9345 143 struct objpool_head pool;
d741bf41
PZ
144};
145
b94cce92
HN
146struct kretprobe {
147 struct kprobe kp;
148 kretprobe_handler_t handler;
f47cd9b5 149 kretprobe_handler_t entry_handler;
b94cce92
HN
150 int maxactive;
151 int nmissed;
f47cd9b5 152 size_t data_size;
73f9b911
MH
153#ifdef CONFIG_KRETPROBE_ON_RETHOOK
154 struct rethook *rh;
155#else
d741bf41 156 struct kretprobe_holder *rph;
73f9b911 157#endif
b94cce92
HN
158};
159
6bbfa441
MH
160#define KRETPROBE_MAX_DATA_SIZE 4096
161
b94cce92 162struct kretprobe_instance {
73f9b911
MH
163#ifdef CONFIG_KRETPROBE_ON_RETHOOK
164 struct rethook_node node;
165#else
4bbd9345 166 struct rcu_head rcu;
6e426e0f 167 struct llist_node llist;
d741bf41 168 struct kretprobe_holder *rph;
802eae7c 169 kprobe_opcode_t *ret_addr;
3ff9c075 170 void *fp;
73f9b911 171#endif
67a862a9 172 char data[];
b94cce92
HN
173};
174
f438d914
MH
175struct kretprobe_blackpoint {
176 const char *name;
177 void *addr;
178};
3d8d996e 179
376e2424
MH
180struct kprobe_blacklist_entry {
181 struct list_head list;
3d8d996e 182 unsigned long start_addr;
376e2424 183 unsigned long end_addr;
3d8d996e
SD
184};
185
dc19835d
MH
186#ifdef CONFIG_KPROBES
187DECLARE_PER_CPU(struct kprobe *, current_kprobe);
188DECLARE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
189
66ada2cc
MH
190extern void kprobe_busy_begin(void);
191extern void kprobe_busy_end(void);
192
dc19835d 193#ifdef CONFIG_KRETPROBES
73f9b911 194/* Check whether @p is used for implementing a trampoline. */
dc19835d 195extern int arch_trampoline_kprobe(struct kprobe *p);
66ada2cc 196
73f9b911
MH
197#ifdef CONFIG_KRETPROBE_ON_RETHOOK
198static nokprobe_inline struct kretprobe *get_kretprobe(struct kretprobe_instance *ri)
199{
a1461f1f
MHG
200 /* rethook::data is non-changed field, so that you can access it freely. */
201 return (struct kretprobe *)ri->node.rethook->data;
73f9b911
MH
202}
203static nokprobe_inline unsigned long get_kretprobe_retaddr(struct kretprobe_instance *ri)
204{
205 return ri->node.ret_addr;
206}
207#else
208extern void arch_prepare_kretprobe(struct kretprobe_instance *ri,
209 struct pt_regs *regs);
bf094cff
MH
210void arch_kretprobe_fixup_return(struct pt_regs *regs,
211 kprobe_opcode_t *correct_ret_addr);
212
adf8a61a 213void __kretprobe_trampoline(void);
96fed8ac
MH
214/*
215 * Since some architecture uses structured function pointer,
216 * use dereference_function_descriptor() to get real function address.
217 */
218static nokprobe_inline void *kretprobe_trampoline_addr(void)
219{
adf8a61a 220 return dereference_kernel_function_descriptor(__kretprobe_trampoline);
96fed8ac
MH
221}
222
66ada2cc
MH
223/* If the trampoline handler called from a kprobe, use this version */
224unsigned long __kretprobe_trampoline_handler(struct pt_regs *regs,
96fed8ac 225 void *frame_pointer);
66ada2cc
MH
226
227static nokprobe_inline
228unsigned long kretprobe_trampoline_handler(struct pt_regs *regs,
96fed8ac 229 void *frame_pointer)
66ada2cc
MH
230{
231 unsigned long ret;
232 /*
233 * Set a dummy kprobe for avoiding kretprobe recursion.
234 * Since kretprobe never runs in kprobe handler, no kprobe must
235 * be running at this point.
236 */
237 kprobe_busy_begin();
96fed8ac 238 ret = __kretprobe_trampoline_handler(regs, frame_pointer);
66ada2cc
MH
239 kprobe_busy_end();
240
241 return ret;
242}
243
d741bf41
PZ
244static nokprobe_inline struct kretprobe *get_kretprobe(struct kretprobe_instance *ri)
245{
d839a656 246 return rcu_dereference_check(ri->rph->rp, rcu_read_lock_any_held());
d741bf41
PZ
247}
248
73f9b911
MH
249static nokprobe_inline unsigned long get_kretprobe_retaddr(struct kretprobe_instance *ri)
250{
251 return (unsigned long)ri->ret_addr;
252}
253#endif /* CONFIG_KRETPROBE_ON_RETHOOK */
254
223a76b2 255#else /* !CONFIG_KRETPROBES */
dc19835d
MH
256static inline void arch_prepare_kretprobe(struct kretprobe *rp,
257 struct pt_regs *regs)
258{
259}
260static inline int arch_trampoline_kprobe(struct kprobe *p)
261{
262 return 0;
263}
264#endif /* CONFIG_KRETPROBES */
265
223a76b2
MH
266/* Markers of '_kprobe_blacklist' section */
267extern unsigned long __start_kprobe_blacklist[];
268extern unsigned long __stop_kprobe_blacklist[];
269
f438d914
MH
270extern struct kretprobe_blackpoint kretprobe_blacklist[];
271
8c1c9356
AM
272#ifdef CONFIG_KPROBES_SANITY_TEST
273extern int init_test_probes(void);
223a76b2 274#else /* !CONFIG_KPROBES_SANITY_TEST */
8c1c9356
AM
275static inline int init_test_probes(void)
276{
277 return 0;
278}
279#endif /* CONFIG_KPROBES_SANITY_TEST */
280
1da177e4 281extern int arch_prepare_kprobe(struct kprobe *p);
7e1048b1
RL
282extern void arch_arm_kprobe(struct kprobe *p);
283extern void arch_disarm_kprobe(struct kprobe *p);
6772926b 284extern int arch_init_kprobes(void);
bf8d5c52 285extern void kprobes_inc_nmissed_count(struct kprobe *p);
be8f2743 286extern bool arch_within_kprobe_blacklist(unsigned long addr);
fb1a59fa 287extern int arch_populate_kprobe_blacklist(void);
97c753e6 288extern int kprobe_on_func_entry(kprobe_opcode_t *addr, const char *sym, unsigned long offset);
1da177e4 289
e5779e8e 290extern bool within_kprobe_blacklist(unsigned long addr);
fb1a59fa
MH
291extern int kprobe_add_ksym_blacklist(unsigned long entry);
292extern int kprobe_add_area_blacklist(unsigned long start, unsigned long end);
e5779e8e 293
c802d64a
HC
294struct kprobe_insn_cache {
295 struct mutex mutex;
af96397d
HC
296 void *(*alloc)(void); /* allocate insn page */
297 void (*free)(void *); /* free insn page */
d002b8bc 298 const char *sym; /* symbol for insn pages */
c802d64a
HC
299 struct list_head pages; /* list of kprobe_insn_page */
300 size_t insn_size; /* size of instruction slot */
301 int nr_garbage;
302};
303
5b485629 304#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
c802d64a
HC
305extern kprobe_opcode_t *__get_insn_slot(struct kprobe_insn_cache *c);
306extern void __free_insn_slot(struct kprobe_insn_cache *c,
307 kprobe_opcode_t *slot, int dirty);
5b485629
MH
308/* sleep-less address checking routine */
309extern bool __is_insn_slot_addr(struct kprobe_insn_cache *c,
310 unsigned long addr);
c802d64a
HC
311
312#define DEFINE_INSN_CACHE_OPS(__name) \
313extern struct kprobe_insn_cache kprobe_##__name##_slots; \
314 \
315static inline kprobe_opcode_t *get_##__name##_slot(void) \
316{ \
317 return __get_insn_slot(&kprobe_##__name##_slots); \
318} \
319 \
320static inline void free_##__name##_slot(kprobe_opcode_t *slot, int dirty)\
321{ \
322 __free_insn_slot(&kprobe_##__name##_slots, slot, dirty); \
323} \
5b485629
MH
324 \
325static inline bool is_kprobe_##__name##_slot(unsigned long addr) \
326{ \
327 return __is_insn_slot_addr(&kprobe_##__name##_slots, addr); \
328}
d002b8bc
AH
329#define KPROBE_INSN_PAGE_SYM "kprobe_insn_page"
330#define KPROBE_OPTINSN_PAGE_SYM "kprobe_optinsn_page"
331int kprobe_cache_get_kallsym(struct kprobe_insn_cache *c, unsigned int *symnum,
332 unsigned long *value, char *type, char *sym);
223a76b2 333#else /* !__ARCH_WANT_KPROBES_INSN_SLOT */
5b485629
MH
334#define DEFINE_INSN_CACHE_OPS(__name) \
335static inline bool is_kprobe_##__name##_slot(unsigned long addr) \
336{ \
337 return 0; \
338}
339#endif
c802d64a
HC
340
341DEFINE_INSN_CACHE_OPS(insn);
342
afd66255
MH
343#ifdef CONFIG_OPTPROBES
344/*
345 * Internal structure for direct jump optimized probe
346 */
347struct optimized_kprobe {
348 struct kprobe kp;
349 struct list_head list; /* list for optimizing queue */
350 struct arch_optimized_insn optinsn;
351};
352
353/* Architecture dependent functions for direct jump optimization */
354extern int arch_prepared_optinsn(struct arch_optimized_insn *optinsn);
355extern int arch_check_optimized_kprobe(struct optimized_kprobe *op);
cbf6ab52
MH
356extern int arch_prepare_optimized_kprobe(struct optimized_kprobe *op,
357 struct kprobe *orig);
afd66255 358extern void arch_remove_optimized_kprobe(struct optimized_kprobe *op);
cd7ebe22 359extern void arch_optimize_kprobes(struct list_head *oplist);
f984ba4e
MH
360extern void arch_unoptimize_kprobes(struct list_head *oplist,
361 struct list_head *done_list);
afd66255 362extern void arch_unoptimize_kprobe(struct optimized_kprobe *op);
afd66255 363extern int arch_within_optimized_kprobe(struct optimized_kprobe *op,
c42421e2 364 kprobe_opcode_t *addr);
afd66255
MH
365
366extern void opt_pre_handler(struct kprobe *p, struct pt_regs *regs);
b2be84df 367
c802d64a
HC
368DEFINE_INSN_CACHE_OPS(optinsn);
369
30e7d894 370extern void wait_for_kprobe_optimizer(void);
868a6fc0 371bool optprobe_queued_unopt(struct optimized_kprobe *op);
f1c97a1b 372bool kprobe_disarmed(struct kprobe *p);
223a76b2 373#else /* !CONFIG_OPTPROBES */
30e7d894 374static inline void wait_for_kprobe_optimizer(void) { }
afd66255 375#endif /* CONFIG_OPTPROBES */
223a76b2 376
e7dbfe34 377#ifdef CONFIG_KPROBES_ON_FTRACE
ae6aa16f 378extern void kprobe_ftrace_handler(unsigned long ip, unsigned long parent_ip,
d19ad077 379 struct ftrace_ops *ops, struct ftrace_regs *fregs);
ae6aa16f 380extern int arch_prepare_kprobe_ftrace(struct kprobe *p);
1a7d0890
SB
381/* Set when ftrace has been killed: kprobes on ftrace must be disabled for safety */
382extern bool kprobe_ftrace_disabled __read_mostly;
383extern void kprobe_ftrace_kill(void);
02afb8d6
PA
384#else
385static inline int arch_prepare_kprobe_ftrace(struct kprobe *p)
386{
387 return -EINVAL;
388}
1a7d0890 389static inline void kprobe_ftrace_kill(void) {}
223a76b2 390#endif /* CONFIG_KPROBES_ON_FTRACE */
ae6aa16f 391
d217d545 392/* Get the kprobe at this addr (if any) - called with preemption disabled */
1da177e4
LT
393struct kprobe *get_kprobe(void *addr);
394
e6584523
AM
395/* kprobe_running() will just return the current_kprobe on this CPU */
396static inline struct kprobe *kprobe_running(void)
397{
223a76b2 398 return __this_cpu_read(current_kprobe);
e6584523
AM
399}
400
401static inline void reset_current_kprobe(void)
402{
b76834bc 403 __this_cpu_write(current_kprobe, NULL);
e6584523
AM
404}
405
406static inline struct kprobe_ctlblk *get_kprobe_ctlblk(void)
407{
bdffd893 408 return this_cpu_ptr(&kprobe_ctlblk);
e6584523
AM
409}
410
290e3070 411kprobe_opcode_t *kprobe_lookup_name(const char *name, unsigned int offset);
cc66bb91
PZ
412kprobe_opcode_t *arch_adjust_kprobe_addr(unsigned long addr, unsigned long offset, bool *on_func_entry);
413
1da177e4
LT
414int register_kprobe(struct kprobe *p);
415void unregister_kprobe(struct kprobe *p);
9861668f
MH
416int register_kprobes(struct kprobe **kps, int num);
417void unregister_kprobes(struct kprobe **kps, int num);
1da177e4 418
b94cce92
HN
419int register_kretprobe(struct kretprobe *rp);
420void unregister_kretprobe(struct kretprobe *rp);
4a296e07
MH
421int register_kretprobes(struct kretprobe **rps, int num);
422void unregister_kretprobes(struct kretprobe **rps, int num);
b94cce92 423
43994049 424#if defined(CONFIG_KRETPROBE_ON_RETHOOK) || !defined(CONFIG_KRETPROBES)
73f9b911
MH
425#define kprobe_flush_task(tk) do {} while (0)
426#else
b94cce92 427void kprobe_flush_task(struct task_struct *tk);
73f9b911 428#endif
8c1c9356 429
82d083ab
MH
430void kprobe_free_init_mem(void);
431
de5bd88d
MH
432int disable_kprobe(struct kprobe *kp);
433int enable_kprobe(struct kprobe *kp);
434
24851d24
FW
435void dump_kprobe(struct kprobe *kp);
436
ad3bc25a 437void *alloc_insn_page(void);
ad3bc25a 438
7ee3e97e
CL
439void *alloc_optinsn_page(void);
440void free_optinsn_page(void *page);
441
d002b8bc
AH
442int kprobe_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
443 char *sym);
444
445int arch_kprobe_get_kallsym(unsigned int *symnum, unsigned long *value,
446 char *type, char *sym);
abc28463
AB
447
448int kprobe_exceptions_notify(struct notifier_block *self,
449 unsigned long val, void *data);
450
b1801812 451#else /* !CONFIG_KPROBES: */
00d7c05a 452
b1801812
IM
453static inline int kprobe_fault_handler(struct pt_regs *regs, int trapnr)
454{
455 return 0;
456}
785656a4
AS
457static inline struct kprobe *get_kprobe(void *addr)
458{
459 return NULL;
460}
e6584523 461static inline struct kprobe *kprobe_running(void)
1da177e4 462{
e6584523 463 return NULL;
1da177e4 464}
ab51e15d
MH
465#define kprobe_busy_begin() do {} while (0)
466#define kprobe_busy_end() do {} while (0)
467
1da177e4
LT
468static inline int register_kprobe(struct kprobe *p)
469{
223a76b2 470 return -EOPNOTSUPP;
1da177e4 471}
9861668f
MH
472static inline int register_kprobes(struct kprobe **kps, int num)
473{
223a76b2 474 return -EOPNOTSUPP;
9861668f 475}
1da177e4
LT
476static inline void unregister_kprobe(struct kprobe *p)
477{
478}
9861668f
MH
479static inline void unregister_kprobes(struct kprobe **kps, int num)
480{
481}
b94cce92
HN
482static inline int register_kretprobe(struct kretprobe *rp)
483{
223a76b2 484 return -EOPNOTSUPP;
b94cce92 485}
4a296e07
MH
486static inline int register_kretprobes(struct kretprobe **rps, int num)
487{
223a76b2 488 return -EOPNOTSUPP;
4a296e07 489}
b94cce92
HN
490static inline void unregister_kretprobe(struct kretprobe *rp)
491{
492}
4a296e07
MH
493static inline void unregister_kretprobes(struct kretprobe **rps, int num)
494{
495}
b94cce92
HN
496static inline void kprobe_flush_task(struct task_struct *tk)
497{
498}
82d083ab
MH
499static inline void kprobe_free_init_mem(void)
500{
501}
1a7d0890
SB
502static inline void kprobe_ftrace_kill(void)
503{
504}
de5bd88d
MH
505static inline int disable_kprobe(struct kprobe *kp)
506{
223a76b2 507 return -EOPNOTSUPP;
de5bd88d
MH
508}
509static inline int enable_kprobe(struct kprobe *kp)
510{
223a76b2 511 return -EOPNOTSUPP;
de5bd88d 512}
fab94075
BP
513
514static inline bool within_kprobe_blacklist(unsigned long addr)
515{
516 return true;
517}
d002b8bc
AH
518static inline int kprobe_get_kallsym(unsigned int symnum, unsigned long *value,
519 char *type, char *sym)
520{
521 return -ERANGE;
522}
b1801812 523#endif /* CONFIG_KPROBES */
223a76b2 524
8f9b1528
MH
525static inline int disable_kretprobe(struct kretprobe *rp)
526{
527 return disable_kprobe(&rp->kp);
528}
529static inline int enable_kretprobe(struct kretprobe *rp)
530{
531 return enable_kprobe(&rp->kp);
532}
8f9b1528 533
5b485629
MH
534#ifndef CONFIG_KPROBES
535static inline bool is_kprobe_insn_slot(unsigned long addr)
536{
537 return false;
538}
223a76b2
MH
539#endif /* !CONFIG_KPROBES */
540
5b485629
MH
541#ifndef CONFIG_OPTPROBES
542static inline bool is_kprobe_optinsn_slot(unsigned long addr)
543{
544 return false;
545}
223a76b2 546#endif /* !CONFIG_OPTPROBES */
5b485629 547
03bac0df 548#ifdef CONFIG_KRETPROBES
73f9b911
MH
549#ifdef CONFIG_KRETPROBE_ON_RETHOOK
550static nokprobe_inline bool is_kretprobe_trampoline(unsigned long addr)
551{
552 return is_rethook_trampoline(addr);
553}
554
555static nokprobe_inline
556unsigned long kretprobe_find_ret_addr(struct task_struct *tsk, void *fp,
557 struct llist_node **cur)
558{
559 return rethook_find_ret_addr(tsk, (unsigned long)fp, cur);
560}
561#else
03bac0df
MH
562static nokprobe_inline bool is_kretprobe_trampoline(unsigned long addr)
563{
564 return (void *)addr == kretprobe_trampoline_addr();
565}
566
567unsigned long kretprobe_find_ret_addr(struct task_struct *tsk, void *fp,
568 struct llist_node **cur);
73f9b911 569#endif
03bac0df
MH
570#else
571static nokprobe_inline bool is_kretprobe_trampoline(unsigned long addr)
572{
573 return false;
574}
575
576static nokprobe_inline
577unsigned long kretprobe_find_ret_addr(struct task_struct *tsk, void *fp,
578 struct llist_node **cur)
579{
580 return 0;
581}
582#endif
583
b98cca44
AK
584/* Returns true if kprobes handled the fault */
585static nokprobe_inline bool kprobe_page_fault(struct pt_regs *regs,
586 unsigned int trap)
587{
dfc05b55 588 if (!IS_ENABLED(CONFIG_KPROBES))
b98cca44
AK
589 return false;
590 if (user_mode(regs))
591 return false;
592 /*
593 * To be potentially processing a kprobe fault and to be allowed
594 * to call kprobe_running(), we have to be non-preemptible.
595 */
596 if (preemptible())
597 return false;
598 if (!kprobe_running())
599 return false;
600 return kprobe_fault_handler(regs, trap);
601}
602
b1801812 603#endif /* _LINUX_KPROBES_H */