]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/ftrace.h
ftrace: use dynamic patching for updating mcount calls
[mirror_ubuntu-jammy-kernel.git] / include / linux / ftrace.h
CommitLineData
16444a8a
ACM
1#ifndef _LINUX_FTRACE_H
2#define _LINUX_FTRACE_H
3
4#ifdef CONFIG_FTRACE
5
6#include <linux/linkage.h>
7
b0fc494f
SR
8extern int ftrace_enabled;
9extern int
10ftrace_enable_sysctl(struct ctl_table *table, int write,
11 struct file *filp, void __user *buffer, size_t *lenp,
12 loff_t *ppos);
13
16444a8a
ACM
14typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip);
15
16struct ftrace_ops {
17 ftrace_func_t func;
18 struct ftrace_ops *next;
19};
20
21/*
22 * The ftrace_ops must be a static and should also
23 * be read_mostly. These functions do modify read_mostly variables
24 * so use them sparely. Never free an ftrace_op or modify the
25 * next pointer after it has been registered. Even after unregistering
26 * it, the next pointer may still be used internally.
27 */
28int register_ftrace_function(struct ftrace_ops *ops);
29int unregister_ftrace_function(struct ftrace_ops *ops);
30void clear_ftrace_function(void);
31
32extern void ftrace_stub(unsigned long a0, unsigned long a1);
33extern void mcount(void);
34
35#else /* !CONFIG_FTRACE */
36# define register_ftrace_function(ops) do { } while (0)
37# define unregister_ftrace_function(ops) do { } while (0)
38# define clear_ftrace_function(ops) do { } while (0)
39#endif /* CONFIG_FTRACE */
352ad25a 40
3d083395
SR
41#ifdef CONFIG_DYNAMIC_FTRACE
42# define FTRACE_HASHBITS 10
43# define FTRACE_HASHSIZE (1<<FTRACE_HASHBITS)
44
3c1720f0
SR
45enum {
46 FTRACE_FL_FAILED = (1<<0),
47};
48
3d083395
SR
49struct dyn_ftrace {
50 struct hlist_node node;
51 unsigned long ip;
3c1720f0 52 unsigned long flags;
3d083395
SR
53};
54
55/* defined in arch */
3c1720f0
SR
56extern int ftrace_ip_converted(unsigned long ip);
57extern unsigned char *ftrace_nop_replace(void);
58extern unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr);
d61f82d0
SR
59extern int ftrace_dyn_arch_init(void *data);
60extern int ftrace_mcount_set(unsigned long *data);
3c1720f0
SR
61extern int ftrace_modify_code(unsigned long ip, unsigned char *old_code,
62 unsigned char *new_code);
d61f82d0
SR
63extern int ftrace_update_ftrace_func(ftrace_func_t func);
64extern void ftrace_caller(void);
65extern void ftrace_call(void);
66extern void mcount_call(void);
3d083395 67#endif
352ad25a
SR
68
69#ifdef CONFIG_FRAME_POINTER
70/* TODO: need to fix this for ARM */
71# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
72# define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1))
73# define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2))
74# define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3))
75# define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4))
76# define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5))
77#else
78# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
79# define CALLER_ADDR1 0UL
80# define CALLER_ADDR2 0UL
81# define CALLER_ADDR3 0UL
82# define CALLER_ADDR4 0UL
83# define CALLER_ADDR5 0UL
84#endif
85
81d68a96
SR
86#ifdef CONFIG_IRQSOFF_TRACER
87 extern void notrace time_hardirqs_on(unsigned long a0, unsigned long a1);
88 extern void notrace time_hardirqs_off(unsigned long a0, unsigned long a1);
89#else
90# define time_hardirqs_on(a0, a1) do { } while (0)
91# define time_hardirqs_off(a0, a1) do { } while (0)
92#endif
93
6cd8a4bb
SR
94#ifdef CONFIG_PREEMPT_TRACER
95 extern void notrace trace_preempt_on(unsigned long a0, unsigned long a1);
96 extern void notrace trace_preempt_off(unsigned long a0, unsigned long a1);
97#else
98# define trace_preempt_on(a0, a1) do { } while (0)
99# define trace_preempt_off(a0, a1) do { } while (0)
100#endif
101
16444a8a 102#endif /* _LINUX_FTRACE_H */