]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/ftrace.h
Merge branches 'tracing/ftrace' and 'tracing/urgent' into tracing/core
[mirror_ubuntu-bionic-kernel.git] / include / linux / ftrace.h
CommitLineData
16444a8a
ACM
1#ifndef _LINUX_FTRACE_H
2#define _LINUX_FTRACE_H
3
16444a8a 4#include <linux/linkage.h>
d49dbf33 5#include <linux/fs.h>
eb7fa935 6#include <linux/ktime.h>
d13744cd
FW
7#include <linux/init.h>
8#include <linux/types.h>
5601020f 9#include <linux/kallsyms.h>
16444a8a 10
606576ce 11#ifdef CONFIG_FUNCTION_TRACER
3e1932ad 12
b0fc494f
SR
13extern int ftrace_enabled;
14extern int
15ftrace_enable_sysctl(struct ctl_table *table, int write,
16 struct file *filp, void __user *buffer, size_t *lenp,
17 loff_t *ppos);
18
16444a8a
ACM
19typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip);
20
21struct ftrace_ops {
22 ftrace_func_t func;
23 struct ftrace_ops *next;
24};
25
60a7ecf4
SR
26extern int function_trace_stop;
27
28/**
29 * ftrace_stop - stop function tracer.
30 *
31 * A quick way to stop the function tracer. Note this an on off switch,
32 * it is not something that is recursive like preempt_disable.
33 * This does not disable the calling of mcount, it only stops the
34 * calling of functions from mcount.
35 */
36static inline void ftrace_stop(void)
37{
38 function_trace_stop = 1;
39}
40
41/**
42 * ftrace_start - start the function tracer.
43 *
44 * This function is the inverse of ftrace_stop. This does not enable
45 * the function tracing if the function tracer is disabled. This only
46 * sets the function tracer flag to continue calling the functions
47 * from mcount.
48 */
49static inline void ftrace_start(void)
50{
51 function_trace_stop = 0;
52}
53
16444a8a
ACM
54/*
55 * The ftrace_ops must be a static and should also
56 * be read_mostly. These functions do modify read_mostly variables
57 * so use them sparely. Never free an ftrace_op or modify the
58 * next pointer after it has been registered. Even after unregistering
59 * it, the next pointer may still be used internally.
60 */
61int register_ftrace_function(struct ftrace_ops *ops);
62int unregister_ftrace_function(struct ftrace_ops *ops);
63void clear_ftrace_function(void);
64
65extern void ftrace_stub(unsigned long a0, unsigned long a1);
16444a8a 66
606576ce 67#else /* !CONFIG_FUNCTION_TRACER */
16444a8a
ACM
68# define register_ftrace_function(ops) do { } while (0)
69# define unregister_ftrace_function(ops) do { } while (0)
70# define clear_ftrace_function(ops) do { } while (0)
81adbdc0 71static inline void ftrace_kill(void) { }
60a7ecf4
SR
72static inline void ftrace_stop(void) { }
73static inline void ftrace_start(void) { }
606576ce 74#endif /* CONFIG_FUNCTION_TRACER */
352ad25a 75
3d083395 76#ifdef CONFIG_DYNAMIC_FTRACE
3c1720f0 77enum {
37ad5084
SR
78 FTRACE_FL_FREE = (1 << 0),
79 FTRACE_FL_FAILED = (1 << 1),
80 FTRACE_FL_FILTER = (1 << 2),
81 FTRACE_FL_ENABLED = (1 << 3),
41c52c0d 82 FTRACE_FL_NOTRACE = (1 << 4),
0eb96701 83 FTRACE_FL_CONVERTED = (1 << 5),
ecea656d 84 FTRACE_FL_FROZEN = (1 << 6),
3c1720f0
SR
85};
86
3d083395 87struct dyn_ftrace {
08f5ac90
SR
88 struct list_head list;
89 unsigned long ip; /* address of mcount call-site */
90 unsigned long flags;
3d083395
SR
91};
92
e1c08bdd 93int ftrace_force_update(void);
77a2b37d 94void ftrace_set_filter(unsigned char *buf, int len, int reset);
e1c08bdd 95
3d083395 96/* defined in arch */
3c1720f0
SR
97extern int ftrace_ip_converted(unsigned long ip);
98extern unsigned char *ftrace_nop_replace(void);
99extern unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr);
d61f82d0 100extern int ftrace_dyn_arch_init(void *data);
d61f82d0
SR
101extern int ftrace_update_ftrace_func(ftrace_func_t func);
102extern void ftrace_caller(void);
103extern void ftrace_call(void);
104extern void mcount_call(void);
ad90c0e3 105
a26a2a27
SR
106/* May be defined in arch */
107extern int ftrace_arch_read_dyn_info(char *buf, int size);
108
593eb8a2
SR
109/**
110 * ftrace_modify_code - modify code segment
111 * @ip: the address of the code segment
112 * @old_code: the contents of what is expected to be there
113 * @new_code: the code to patch in
114 *
115 * This is a very sensitive operation and great care needs
116 * to be taken by the arch. The operation should carefully
117 * read the location, check to see if what is read is indeed
118 * what we expect it to be, and then on success of the compare,
119 * it should write to the location.
120 *
121 * Return must be:
122 * 0 on success
123 * -EFAULT on error reading the location
124 * -EINVAL on a failed compare of the contents
125 * -EPERM on error writing to the location
126 * Any other value will be considered a failure.
127 */
128extern int ftrace_modify_code(unsigned long ip, unsigned char *old_code,
129 unsigned char *new_code);
130
ecea656d
AS
131extern int skip_trace(unsigned long ip);
132
c0719e5a
SR
133extern void ftrace_release(void *start, unsigned long size);
134
135extern void ftrace_disable_daemon(void);
136extern void ftrace_enable_daemon(void);
e1c08bdd 137#else
ecea656d 138# define skip_trace(ip) ({ 0; })
aeaee8a2
IM
139# define ftrace_force_update() ({ 0; })
140# define ftrace_set_filter(buf, len, reset) do { } while (0)
ad90c0e3
SR
141# define ftrace_disable_daemon() do { } while (0)
142# define ftrace_enable_daemon() do { } while (0)
c0719e5a 143static inline void ftrace_release(void *start, unsigned long size) { }
ecea656d 144#endif /* CONFIG_DYNAMIC_FTRACE */
352ad25a 145
aeaee8a2
IM
146/* totally disable ftrace - can not re-enable after this */
147void ftrace_kill(void);
148
f43fdad8
IM
149static inline void tracer_disable(void)
150{
606576ce 151#ifdef CONFIG_FUNCTION_TRACER
f43fdad8
IM
152 ftrace_enabled = 0;
153#endif
154}
155
37002735
HY
156/*
157 * Ftrace disable/restore without lock. Some synchronization mechanism
9bdeb7b5 158 * must be used to prevent ftrace_enabled to be changed between
37002735
HY
159 * disable/restore.
160 */
9bdeb7b5
HY
161static inline int __ftrace_enabled_save(void)
162{
606576ce 163#ifdef CONFIG_FUNCTION_TRACER
9bdeb7b5
HY
164 int saved_ftrace_enabled = ftrace_enabled;
165 ftrace_enabled = 0;
166 return saved_ftrace_enabled;
167#else
168 return 0;
169#endif
170}
171
172static inline void __ftrace_enabled_restore(int enabled)
173{
606576ce 174#ifdef CONFIG_FUNCTION_TRACER
9bdeb7b5
HY
175 ftrace_enabled = enabled;
176#endif
177}
178
352ad25a
SR
179#ifdef CONFIG_FRAME_POINTER
180/* TODO: need to fix this for ARM */
181# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
182# define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1))
183# define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2))
184# define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3))
185# define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4))
186# define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5))
86387f7e 187# define CALLER_ADDR6 ((unsigned long)__builtin_return_address(6))
352ad25a
SR
188#else
189# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
190# define CALLER_ADDR1 0UL
191# define CALLER_ADDR2 0UL
192# define CALLER_ADDR3 0UL
193# define CALLER_ADDR4 0UL
194# define CALLER_ADDR5 0UL
86387f7e 195# define CALLER_ADDR6 0UL
352ad25a
SR
196#endif
197
81d68a96 198#ifdef CONFIG_IRQSOFF_TRACER
489f1396
IM
199 extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
200 extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
81d68a96
SR
201#else
202# define time_hardirqs_on(a0, a1) do { } while (0)
203# define time_hardirqs_off(a0, a1) do { } while (0)
204#endif
205
6cd8a4bb 206#ifdef CONFIG_PREEMPT_TRACER
489f1396
IM
207 extern void trace_preempt_on(unsigned long a0, unsigned long a1);
208 extern void trace_preempt_off(unsigned long a0, unsigned long a1);
6cd8a4bb
SR
209#else
210# define trace_preempt_on(a0, a1) do { } while (0)
211# define trace_preempt_off(a0, a1) do { } while (0)
212#endif
213
b1829d27 214#ifdef CONFIG_TRACING
944ac425
SR
215extern int ftrace_dump_on_oops;
216
0f048701
SR
217extern void tracing_start(void);
218extern void tracing_stop(void);
219
74f4e369
IM
220extern void
221ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3);
2f2c99db
SR
222
223/**
224 * ftrace_printk - printf formatting in the ftrace buffer
225 * @fmt: the printf format for printing
226 *
227 * Note: __ftrace_printk is an internal function for ftrace_printk and
228 * the @ip is passed in via the ftrace_printk macro.
229 *
230 * This function allows a kernel developer to debug fast path sections
231 * that printk is not appropriate for. By scattering in various
232 * printk like tracing in the code, a developer can quickly see
233 * where problems are occurring.
234 *
235 * This is intended as a debugging tool for the developer only.
236 * Please refrain from leaving ftrace_printks scattered around in
237 * your code.
238 */
239# define ftrace_printk(fmt...) __ftrace_printk(_THIS_IP_, fmt)
dd0e545f
SR
240extern int
241__ftrace_printk(unsigned long ip, const char *fmt, ...)
242 __attribute__ ((format (printf, 2, 3)));
3f5a54e3 243extern void ftrace_dump(void);
74f4e369
IM
244#else
245static inline void
246ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) { }
dd0e545f 247static inline int
7b928c23
IM
248ftrace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 0)));
249
0f048701
SR
250static inline void tracing_start(void) { }
251static inline void tracing_stop(void) { }
7b928c23
IM
252static inline int
253ftrace_printk(const char *fmt, ...)
dd0e545f
SR
254{
255 return 0;
256}
3f5a54e3 257static inline void ftrace_dump(void) { }
74f4e369
IM
258#endif
259
68bf21aa
SR
260#ifdef CONFIG_FTRACE_MCOUNT_RECORD
261extern void ftrace_init(void);
90d595fe 262extern void ftrace_init_module(unsigned long *start, unsigned long *end);
68bf21aa
SR
263#else
264static inline void ftrace_init(void) { }
90d595fe
SR
265static inline void
266ftrace_init_module(unsigned long *start, unsigned long *end) { }
68bf21aa
SR
267#endif
268
dd0e545f 269
71566a0d
FW
270/*
271 * Structure which defines the trace of an initcall.
272 * You don't have to fill the func field since it is
273 * only used internally by the tracer.
274 */
d13744cd
FW
275struct boot_trace {
276 pid_t caller;
ca538f6b 277 char func[KSYM_NAME_LEN];
d13744cd 278 int result;
ca538f6b 279 unsigned long long duration; /* usecs */
cb5ab742
FW
280 ktime_t calltime;
281 ktime_t rettime;
d13744cd
FW
282};
283
284#ifdef CONFIG_BOOT_TRACER
71566a0d 285/* Append the trace on the ring-buffer */
5601020f 286extern void trace_boot(struct boot_trace *it, initcall_t fn);
71566a0d
FW
287
288/* Tells the tracer that smp_pre_initcall is finished.
289 * So we can start the tracing
290 */
d13744cd 291extern void start_boot_trace(void);
71566a0d
FW
292
293/* Resume the tracing of other necessary events
294 * such as sched switches
295 */
296extern void enable_boot_trace(void);
297
298/* Suspend this tracing. Actually, only sched_switches tracing have
299 * to be suspended. Initcalls doesn't need it.)
300 */
301extern void disable_boot_trace(void);
d13744cd 302#else
5601020f 303static inline void trace_boot(struct boot_trace *it, initcall_t fn) { }
d13744cd 304static inline void start_boot_trace(void) { }
71566a0d
FW
305static inline void enable_boot_trace(void) { }
306static inline void disable_boot_trace(void) { }
d13744cd
FW
307#endif
308
309
310
16444a8a 311#endif /* _LINUX_FTRACE_H */