]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/ftrace.h
ftrace: Create separate t_func_next() to simplify the function / hash logic
[mirror_ubuntu-bionic-kernel.git] / include / linux / ftrace.h
CommitLineData
9849ed4d
MF
1/*
2 * Ftrace header. For implementation details beyond the random comments
3 * scattered below, see: Documentation/trace/ftrace-design.txt
4 */
5
16444a8a
ACM
6#ifndef _LINUX_FTRACE_H
7#define _LINUX_FTRACE_H
8
0012693a 9#include <linux/trace_clock.h>
5601020f 10#include <linux/kallsyms.h>
0012693a 11#include <linux/linkage.h>
ea4e2bc4 12#include <linux/bitops.h>
a1e2e31d 13#include <linux/ptrace.h>
0012693a 14#include <linux/ktime.h>
21a8c466 15#include <linux/sched.h>
0012693a
FW
16#include <linux/types.h>
17#include <linux/init.h>
18#include <linux/fs.h>
16444a8a 19
c79a61f5
UKK
20#include <asm/ftrace.h>
21
2f5f6ad9
SR
22/*
23 * If the arch supports passing the variable contents of
24 * function_trace_op as the third parameter back from the
25 * mcount call, then the arch should define this as 1.
26 */
27#ifndef ARCH_SUPPORTS_FTRACE_OPS
28#define ARCH_SUPPORTS_FTRACE_OPS 0
29#endif
30
ccf3672d
SR
31/*
32 * If the arch's mcount caller does not support all of ftrace's
33 * features, then it must call an indirect function that
34 * does. Or at least does enough to prevent any unwelcomed side effects.
35 */
7544256a 36#if !ARCH_SUPPORTS_FTRACE_OPS
ccf3672d
SR
37# define FTRACE_FORCE_LIST_FUNC 1
38#else
39# define FTRACE_FORCE_LIST_FUNC 0
40#endif
41
5f893b26
SRRH
42/* Main tracing buffer and events set up */
43#ifdef CONFIG_TRACING
44void trace_init(void);
e725c731 45void early_trace_init(void);
5f893b26
SRRH
46#else
47static inline void trace_init(void) { }
e725c731 48static inline void early_trace_init(void) { }
5f893b26 49#endif
ccf3672d 50
de477254 51struct module;
04da85b8
SR
52struct ftrace_hash;
53
606576ce 54#ifdef CONFIG_FUNCTION_TRACER
3e1932ad 55
b0fc494f
SR
56extern int ftrace_enabled;
57extern int
58ftrace_enable_sysctl(struct ctl_table *table, int write,
8d65af78 59 void __user *buffer, size_t *lenp,
b0fc494f
SR
60 loff_t *ppos);
61
2f5f6ad9
SR
62struct ftrace_ops;
63
64typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip,
a1e2e31d 65 struct ftrace_ops *op, struct pt_regs *regs);
16444a8a 66
87354059
SRRH
67ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops);
68
e248491a
JO
69/*
70 * FTRACE_OPS_FL_* bits denote the state of ftrace_ops struct and are
71 * set in the flags member.
f8b8be8a
MH
72 * CONTROL, SAVE_REGS, SAVE_REGS_IF_SUPPORTED, RECURSION_SAFE, STUB and
73 * IPMODIFY are a kind of attribute flags which can be set only before
74 * registering the ftrace_ops, and can not be modified while registered.
75 * Changing those attribute flags after regsitering ftrace_ops will
76 * cause unexpected results.
e248491a
JO
77 *
78 * ENABLED - set/unset when ftrace_ops is registered/unregistered
e248491a
JO
79 * DYNAMIC - set when ftrace_ops is registered to denote dynamically
80 * allocated ftrace_ops which need special care
ba27f2bc
SRRH
81 * PER_CPU - set manualy by ftrace_ops user to denote the ftrace_ops
82 * could be controlled by following calls:
e248491a
JO
83 * ftrace_function_local_enable
84 * ftrace_function_local_disable
08f6fba5
SR
85 * SAVE_REGS - The ftrace_ops wants regs saved at each function called
86 * and passed to the callback. If this flag is set, but the
87 * architecture does not support passing regs
06aeaaea 88 * (CONFIG_DYNAMIC_FTRACE_WITH_REGS is not defined), then the
08f6fba5
SR
89 * ftrace_ops will fail to register, unless the next flag
90 * is set.
91 * SAVE_REGS_IF_SUPPORTED - This is the same as SAVE_REGS, but if the
92 * handler can handle an arch that does not save regs
93 * (the handler tests if regs == NULL), then it can set
94 * this flag instead. It will not fail registering the ftrace_ops
95 * but, the regs field will be NULL if the arch does not support
96 * passing regs to the handler.
97 * Note, if this flag is set, the SAVE_REGS flag will automatically
98 * get set upon registering the ftrace_ops, if the arch supports it.
4740974a
SR
99 * RECURSION_SAFE - The ftrace_ops can set this to tell the ftrace infrastructure
100 * that the call back has its own recursion protection. If it does
101 * not set this, then the ftrace infrastructure will add recursion
102 * protection for the caller.
395b97a3 103 * STUB - The ftrace_ops is just a place holder.
f04f24fb
MH
104 * INITIALIZED - The ftrace_ops has already been initialized (first use time
105 * register_ftrace_function() is called, it will initialized the ops)
591dffda 106 * DELETED - The ops are being deleted, do not let them be registered again.
e1effa01
SRRH
107 * ADDING - The ops is in the process of being added.
108 * REMOVING - The ops is in the process of being removed.
109 * MODIFYING - The ops is in the process of changing its filter functions.
f3bea491
SRRH
110 * ALLOC_TRAMP - A dynamic trampoline was allocated by the core code.
111 * The arch specific code sets this flag when it allocated a
112 * trampoline. This lets the arch know that it can update the
113 * trampoline in case the callback function changes.
114 * The ftrace_ops trampoline can be set by the ftrace users, and
115 * in such cases the arch must not modify it. Only the arch ftrace
116 * core code should set this flag.
f8b8be8a
MH
117 * IPMODIFY - The ops can modify the IP register. This can only be set with
118 * SAVE_REGS. If another ops with this flag set is already registered
119 * for any of the functions that this ops will be registered for, then
120 * this ops will fail to register or set_filter_ip.
e3eea140 121 * PID - Is affected by set_ftrace_pid (allows filtering on those pids)
e248491a 122 */
b848914c 123enum {
08f6fba5 124 FTRACE_OPS_FL_ENABLED = 1 << 0,
4104d326 125 FTRACE_OPS_FL_DYNAMIC = 1 << 1,
ba27f2bc 126 FTRACE_OPS_FL_PER_CPU = 1 << 2,
4104d326
SRRH
127 FTRACE_OPS_FL_SAVE_REGS = 1 << 3,
128 FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED = 1 << 4,
129 FTRACE_OPS_FL_RECURSION_SAFE = 1 << 5,
130 FTRACE_OPS_FL_STUB = 1 << 6,
131 FTRACE_OPS_FL_INITIALIZED = 1 << 7,
132 FTRACE_OPS_FL_DELETED = 1 << 8,
e1effa01
SRRH
133 FTRACE_OPS_FL_ADDING = 1 << 9,
134 FTRACE_OPS_FL_REMOVING = 1 << 10,
135 FTRACE_OPS_FL_MODIFYING = 1 << 11,
f3bea491 136 FTRACE_OPS_FL_ALLOC_TRAMP = 1 << 12,
f8b8be8a 137 FTRACE_OPS_FL_IPMODIFY = 1 << 13,
e3eea140 138 FTRACE_OPS_FL_PID = 1 << 14,
ba27f2bc 139 FTRACE_OPS_FL_RCU = 1 << 15,
b848914c
SR
140};
141
33b7f99c
SRRH
142#ifdef CONFIG_DYNAMIC_FTRACE
143/* The hash used to know what functions callbacks trace */
144struct ftrace_ops_hash {
145 struct ftrace_hash *notrace_hash;
146 struct ftrace_hash *filter_hash;
147 struct mutex regex_lock;
148};
42c269c8
SRV
149
150void ftrace_free_mem(void *start, void *end);
151#else
152static inline void ftrace_free_mem(void *start, void *end) { }
33b7f99c
SRRH
153#endif
154
b7e00a6c 155/*
ba27f2bc
SRRH
156 * Note, ftrace_ops can be referenced outside of RCU protection, unless
157 * the RCU flag is set. If ftrace_ops is allocated and not part of kernel
158 * core data, the unregistering of it will perform a scheduling on all CPUs
159 * to make sure that there are no more users. Depending on the load of the
160 * system that may take a bit of time.
b7e00a6c
SRRH
161 *
162 * Any private data added must also take care not to be freed and if private
163 * data is added to a ftrace_ops that is in core code, the user of the
164 * ftrace_ops must perform a schedule_on_each_cpu() before freeing it.
165 */
16444a8a 166struct ftrace_ops {
f45948e8
SR
167 ftrace_func_t func;
168 struct ftrace_ops *next;
b848914c 169 unsigned long flags;
b7e00a6c 170 void *private;
e3eea140 171 ftrace_func_t saved_func;
79922b80 172 int __percpu *disabled;
f45948e8 173#ifdef CONFIG_DYNAMIC_FTRACE
33b7f99c
SRRH
174 struct ftrace_ops_hash local_hash;
175 struct ftrace_ops_hash *func_hash;
fef5aeee 176 struct ftrace_ops_hash old_hash;
79922b80 177 unsigned long trampoline;
aec0be2d 178 unsigned long trampoline_size;
f45948e8 179#endif
16444a8a
ACM
180};
181
e7d3737e
FW
182/*
183 * Type of the current tracing.
184 */
185enum ftrace_tracing_type_t {
186 FTRACE_TYPE_ENTER = 0, /* Hook the call of the function */
187 FTRACE_TYPE_RETURN, /* Hook the return of the function */
188};
189
190/* Current tracing type, default is FTRACE_TYPE_ENTER */
191extern enum ftrace_tracing_type_t ftrace_tracing_type;
192
16444a8a
ACM
193/*
194 * The ftrace_ops must be a static and should also
195 * be read_mostly. These functions do modify read_mostly variables
196 * so use them sparely. Never free an ftrace_op or modify the
197 * next pointer after it has been registered. Even after unregistering
198 * it, the next pointer may still be used internally.
199 */
200int register_ftrace_function(struct ftrace_ops *ops);
201int unregister_ftrace_function(struct ftrace_ops *ops);
202void clear_ftrace_function(void);
203
e248491a 204/**
ba27f2bc 205 * ftrace_function_local_enable - enable ftrace_ops on current cpu
e248491a
JO
206 *
207 * This function enables tracing on current cpu by decreasing
208 * the per cpu control variable.
209 * It must be called with preemption disabled and only on ftrace_ops
ba27f2bc 210 * registered with FTRACE_OPS_FL_PER_CPU. If called without preemption
e248491a
JO
211 * disabled, this_cpu_ptr will complain when CONFIG_DEBUG_PREEMPT is enabled.
212 */
213static inline void ftrace_function_local_enable(struct ftrace_ops *ops)
214{
ba27f2bc 215 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
e248491a
JO
216 return;
217
218 (*this_cpu_ptr(ops->disabled))--;
219}
220
221/**
ba27f2bc 222 * ftrace_function_local_disable - disable ftrace_ops on current cpu
e248491a 223 *
ba27f2bc 224 * This function disables tracing on current cpu by increasing
e248491a
JO
225 * the per cpu control variable.
226 * It must be called with preemption disabled and only on ftrace_ops
ba27f2bc 227 * registered with FTRACE_OPS_FL_PER_CPU. If called without preemption
e248491a
JO
228 * disabled, this_cpu_ptr will complain when CONFIG_DEBUG_PREEMPT is enabled.
229 */
230static inline void ftrace_function_local_disable(struct ftrace_ops *ops)
231{
ba27f2bc 232 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
e248491a
JO
233 return;
234
235 (*this_cpu_ptr(ops->disabled))++;
236}
237
238/**
239 * ftrace_function_local_disabled - returns ftrace_ops disabled value
240 * on current cpu
241 *
242 * This function returns value of ftrace_ops::disabled on current cpu.
243 * It must be called with preemption disabled and only on ftrace_ops
ba27f2bc 244 * registered with FTRACE_OPS_FL_PER_CPU. If called without preemption
e248491a
JO
245 * disabled, this_cpu_ptr will complain when CONFIG_DEBUG_PREEMPT is enabled.
246 */
247static inline int ftrace_function_local_disabled(struct ftrace_ops *ops)
248{
ba27f2bc 249 WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU));
e248491a
JO
250 return *this_cpu_ptr(ops->disabled);
251}
252
a1e2e31d
SR
253extern void ftrace_stub(unsigned long a0, unsigned long a1,
254 struct ftrace_ops *op, struct pt_regs *regs);
16444a8a 255
606576ce 256#else /* !CONFIG_FUNCTION_TRACER */
4dbf6bc2
SR
257/*
258 * (un)register_ftrace_function must be a macro since the ops parameter
259 * must not be evaluated.
260 */
261#define register_ftrace_function(ops) ({ 0; })
262#define unregister_ftrace_function(ops) ({ 0; })
ea701f11
SR
263static inline int ftrace_nr_registered_ops(void)
264{
265 return 0;
266}
4dbf6bc2 267static inline void clear_ftrace_function(void) { }
81adbdc0 268static inline void ftrace_kill(void) { }
42c269c8 269static inline void ftrace_free_mem(void *start, void *end) { }
606576ce 270#endif /* CONFIG_FUNCTION_TRACER */
352ad25a 271
f38f1d2a 272#ifdef CONFIG_STACK_TRACER
bb99d8cc
AT
273
274#define STACK_TRACE_ENTRIES 500
275
276struct stack_trace;
277
278extern unsigned stack_trace_index[];
279extern struct stack_trace stack_trace_max;
280extern unsigned long stack_trace_max_size;
d332736d 281extern arch_spinlock_t stack_trace_max_lock;
bb99d8cc 282
f38f1d2a 283extern int stack_tracer_enabled;
bb99d8cc 284void stack_trace_print(void);
f38f1d2a
SR
285int
286stack_trace_sysctl(struct ctl_table *table, int write,
8d65af78 287 void __user *buffer, size_t *lenp,
f38f1d2a
SR
288 loff_t *ppos);
289#endif
290
f6180773
SR
291struct ftrace_func_command {
292 struct list_head list;
293 char *name;
43dd61c9
SR
294 int (*func)(struct ftrace_hash *hash,
295 char *func, char *cmd,
f6180773
SR
296 char *params, int enable);
297};
298
3d083395 299#ifdef CONFIG_DYNAMIC_FTRACE
31e88909 300
000ab691
SR
301int ftrace_arch_code_modify_prepare(void);
302int ftrace_arch_code_modify_post_process(void);
303
4fd3279b
SRRH
304struct dyn_ftrace;
305
02a392a0
SRRH
306enum ftrace_bug_type {
307 FTRACE_BUG_UNKNOWN,
308 FTRACE_BUG_INIT,
309 FTRACE_BUG_NOP,
310 FTRACE_BUG_CALL,
311 FTRACE_BUG_UPDATE,
312};
313extern enum ftrace_bug_type ftrace_bug_type;
314
b05086c7
SRRH
315/*
316 * Archs can set this to point to a variable that holds the value that was
317 * expected at the call site before calling ftrace_bug().
318 */
319extern const void *ftrace_expected;
320
4fd3279b 321void ftrace_bug(int err, struct dyn_ftrace *rec);
c88fd863 322
809dcf29
SR
323struct seq_file;
324
b6887d79 325struct ftrace_probe_ops {
59df055f
SR
326 void (*func)(unsigned long ip,
327 unsigned long parent_ip,
328 void **data);
e67efb93
SRRH
329 int (*init)(struct ftrace_probe_ops *ops,
330 unsigned long ip, void **data);
331 void (*free)(struct ftrace_probe_ops *ops,
332 unsigned long ip, void **data);
809dcf29
SR
333 int (*print)(struct seq_file *m,
334 unsigned long ip,
b6887d79 335 struct ftrace_probe_ops *ops,
809dcf29 336 void *data);
59df055f
SR
337};
338
339extern int
b6887d79 340register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
341 void *data);
342extern void
b6887d79 343unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
344 void *data);
345extern void
b6887d79
SR
346unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops);
347extern void unregister_ftrace_function_probe_all(char *glob);
59df055f 348
d88471cb 349extern int ftrace_text_reserved(const void *start, const void *end);
2cfa1978 350
ea701f11
SR
351extern int ftrace_nr_registered_ops(void);
352
aec0be2d
SRRH
353bool is_ftrace_trampoline(unsigned long addr);
354
08f6fba5
SR
355/*
356 * The dyn_ftrace record's flags field is split into two parts.
357 * the first part which is '0-FTRACE_REF_MAX' is a counter of
358 * the number of callbacks that have registered the function that
359 * the dyn_ftrace descriptor represents.
360 *
361 * The second part is a mask:
362 * ENABLED - the function is being traced
363 * REGS - the record wants the function to save regs
364 * REGS_EN - the function is set up to save regs.
f8b8be8a 365 * IPMODIFY - the record allows for the IP address to be changed.
b7ffffbb 366 * DISABLED - the record is not ready to be touched yet
08f6fba5
SR
367 *
368 * When a new ftrace_ops is registered and wants a function to save
369 * pt_regs, the rec->flag REGS is set. When the function has been
370 * set up to save regs, the REG_EN flag is set. Once a function
371 * starts saving regs it will do so until all ftrace_ops are removed
372 * from tracing that function.
373 */
3c1720f0 374enum {
79922b80 375 FTRACE_FL_ENABLED = (1UL << 31),
08f6fba5 376 FTRACE_FL_REGS = (1UL << 30),
79922b80
SRRH
377 FTRACE_FL_REGS_EN = (1UL << 29),
378 FTRACE_FL_TRAMP = (1UL << 28),
379 FTRACE_FL_TRAMP_EN = (1UL << 27),
f8b8be8a 380 FTRACE_FL_IPMODIFY = (1UL << 26),
b7ffffbb 381 FTRACE_FL_DISABLED = (1UL << 25),
3c1720f0
SR
382};
383
b7ffffbb
SRRH
384#define FTRACE_REF_MAX_SHIFT 25
385#define FTRACE_FL_BITS 7
cf2cb0b2
SRRH
386#define FTRACE_FL_MASKED_BITS ((1UL << FTRACE_FL_BITS) - 1)
387#define FTRACE_FL_MASK (FTRACE_FL_MASKED_BITS << FTRACE_REF_MAX_SHIFT)
388#define FTRACE_REF_MAX ((1UL << FTRACE_REF_MAX_SHIFT) - 1)
ed926f9b 389
0376bde1
SRRH
390#define ftrace_rec_count(rec) ((rec)->flags & ~FTRACE_FL_MASK)
391
3d083395 392struct dyn_ftrace {
a762782d 393 unsigned long ip; /* address of mcount call-site */
85ae32ae 394 unsigned long flags;
a762782d 395 struct dyn_arch_ftrace arch;
3d083395
SR
396};
397
e1c08bdd 398int ftrace_force_update(void);
647664ea
MH
399int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
400 int remove, int reset);
ac483c44 401int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
936e074b 402 int len, int reset);
ac483c44 403int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
936e074b
SR
404 int len, int reset);
405void ftrace_set_global_filter(unsigned char *buf, int len, int reset);
406void ftrace_set_global_notrace(unsigned char *buf, int len, int reset);
5500fa51 407void ftrace_free_filter(struct ftrace_ops *ops);
d032ae89 408void ftrace_ops_set_global_filter(struct ftrace_ops *ops);
e1c08bdd 409
f6180773
SR
410int register_ftrace_command(struct ftrace_func_command *cmd);
411int unregister_ftrace_command(struct ftrace_func_command *cmd);
412
c88fd863
SR
413enum {
414 FTRACE_UPDATE_CALLS = (1 << 0),
415 FTRACE_DISABLE_CALLS = (1 << 1),
416 FTRACE_UPDATE_TRACE_FUNC = (1 << 2),
417 FTRACE_START_FUNC_RET = (1 << 3),
418 FTRACE_STOP_FUNC_RET = (1 << 4),
419};
420
08f6fba5
SR
421/*
422 * The FTRACE_UPDATE_* enum is used to pass information back
423 * from the ftrace_update_record() and ftrace_test_record()
424 * functions. These are called by the code update routines
425 * to find out what is to be done for a given function.
426 *
427 * IGNORE - The function is already what we want it to be
428 * MAKE_CALL - Start tracing the function
429 * MODIFY_CALL - Stop saving regs for the function
08f6fba5
SR
430 * MAKE_NOP - Stop tracing the function
431 */
c88fd863
SR
432enum {
433 FTRACE_UPDATE_IGNORE,
434 FTRACE_UPDATE_MAKE_CALL,
08f6fba5 435 FTRACE_UPDATE_MODIFY_CALL,
c88fd863
SR
436 FTRACE_UPDATE_MAKE_NOP,
437};
438
fc13cb0c
SR
439enum {
440 FTRACE_ITER_FILTER = (1 << 0),
441 FTRACE_ITER_NOTRACE = (1 << 1),
442 FTRACE_ITER_PRINTALL = (1 << 2),
69a3083c
SR
443 FTRACE_ITER_DO_HASH = (1 << 3),
444 FTRACE_ITER_HASH = (1 << 4),
445 FTRACE_ITER_ENABLED = (1 << 5),
fc13cb0c
SR
446};
447
c88fd863
SR
448void arch_ftrace_update_code(int command);
449
450struct ftrace_rec_iter;
451
452struct ftrace_rec_iter *ftrace_rec_iter_start(void);
453struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter);
454struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter);
455
08d636b6
SR
456#define for_ftrace_rec_iter(iter) \
457 for (iter = ftrace_rec_iter_start(); \
458 iter; \
459 iter = ftrace_rec_iter_next(iter))
460
461
c88fd863
SR
462int ftrace_update_record(struct dyn_ftrace *rec, int enable);
463int ftrace_test_record(struct dyn_ftrace *rec, int enable);
464void ftrace_run_stop_machine(int command);
f0cf973a 465unsigned long ftrace_location(unsigned long ip);
04cf31a7 466unsigned long ftrace_location_range(unsigned long start, unsigned long end);
7413af1f
SRRH
467unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec);
468unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec);
c88fd863
SR
469
470extern ftrace_func_t ftrace_trace_function;
471
fc13cb0c
SR
472int ftrace_regex_open(struct ftrace_ops *ops, int flag,
473 struct inode *inode, struct file *file);
474ssize_t ftrace_filter_write(struct file *file, const char __user *ubuf,
475 size_t cnt, loff_t *ppos);
476ssize_t ftrace_notrace_write(struct file *file, const char __user *ubuf,
477 size_t cnt, loff_t *ppos);
fc13cb0c
SR
478int ftrace_regex_release(struct inode *inode, struct file *file);
479
2a85a37f
SR
480void __init
481ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable);
482
3d083395 483/* defined in arch */
3c1720f0 484extern int ftrace_ip_converted(unsigned long ip);
3a36cb11 485extern int ftrace_dyn_arch_init(void);
e4f5d544 486extern void ftrace_replace_code(int enable);
d61f82d0
SR
487extern int ftrace_update_ftrace_func(ftrace_func_t func);
488extern void ftrace_caller(void);
08f6fba5 489extern void ftrace_regs_caller(void);
d61f82d0 490extern void ftrace_call(void);
08f6fba5 491extern void ftrace_regs_call(void);
d61f82d0 492extern void mcount_call(void);
f0001207 493
8ed3e2cf
SR
494void ftrace_modify_all_code(int command);
495
f0001207
SL
496#ifndef FTRACE_ADDR
497#define FTRACE_ADDR ((unsigned long)ftrace_caller)
498#endif
08f6fba5 499
79922b80
SRRH
500#ifndef FTRACE_GRAPH_ADDR
501#define FTRACE_GRAPH_ADDR ((unsigned long)ftrace_graph_caller)
502#endif
503
08f6fba5 504#ifndef FTRACE_REGS_ADDR
06aeaaea 505#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
08f6fba5
SR
506# define FTRACE_REGS_ADDR ((unsigned long)ftrace_regs_caller)
507#else
508# define FTRACE_REGS_ADDR FTRACE_ADDR
509#endif
510#endif
511
646d7043
SRRH
512/*
513 * If an arch would like functions that are only traced
514 * by the function graph tracer to jump directly to its own
515 * trampoline, then they can define FTRACE_GRAPH_TRAMP_ADDR
516 * to be that address to jump to.
517 */
518#ifndef FTRACE_GRAPH_TRAMP_ADDR
519#define FTRACE_GRAPH_TRAMP_ADDR ((unsigned long) 0)
520#endif
521
fb52607a
FW
522#ifdef CONFIG_FUNCTION_GRAPH_TRACER
523extern void ftrace_graph_caller(void);
5a45cfe1
SR
524extern int ftrace_enable_ftrace_graph_caller(void);
525extern int ftrace_disable_ftrace_graph_caller(void);
526#else
527static inline int ftrace_enable_ftrace_graph_caller(void) { return 0; }
528static inline int ftrace_disable_ftrace_graph_caller(void) { return 0; }
e7d3737e 529#endif
ad90c0e3 530
31e88909 531/**
57794a9d 532 * ftrace_make_nop - convert code into nop
31e88909
SR
533 * @mod: module structure if called by module load initialization
534 * @rec: the mcount call site record
535 * @addr: the address that the call site should be calling
536 *
537 * This is a very sensitive operation and great care needs
538 * to be taken by the arch. The operation should carefully
539 * read the location, check to see if what is read is indeed
540 * what we expect it to be, and then on success of the compare,
541 * it should write to the location.
542 *
543 * The code segment at @rec->ip should be a caller to @addr
544 *
545 * Return must be:
546 * 0 on success
547 * -EFAULT on error reading the location
548 * -EINVAL on a failed compare of the contents
549 * -EPERM on error writing to the location
550 * Any other value will be considered a failure.
551 */
552extern int ftrace_make_nop(struct module *mod,
553 struct dyn_ftrace *rec, unsigned long addr);
a26a2a27 554
593eb8a2 555/**
31e88909
SR
556 * ftrace_make_call - convert a nop call site into a call to addr
557 * @rec: the mcount call site record
558 * @addr: the address that the call site should call
593eb8a2
SR
559 *
560 * This is a very sensitive operation and great care needs
561 * to be taken by the arch. The operation should carefully
562 * read the location, check to see if what is read is indeed
563 * what we expect it to be, and then on success of the compare,
564 * it should write to the location.
565 *
31e88909
SR
566 * The code segment at @rec->ip should be a nop
567 *
593eb8a2
SR
568 * Return must be:
569 * 0 on success
570 * -EFAULT on error reading the location
571 * -EINVAL on a failed compare of the contents
572 * -EPERM on error writing to the location
573 * Any other value will be considered a failure.
574 */
31e88909
SR
575extern int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr);
576
06aeaaea 577#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
08f6fba5
SR
578/**
579 * ftrace_modify_call - convert from one addr to another (no nop)
580 * @rec: the mcount call site record
581 * @old_addr: the address expected to be currently called to
582 * @addr: the address to change to
583 *
584 * This is a very sensitive operation and great care needs
585 * to be taken by the arch. The operation should carefully
586 * read the location, check to see if what is read is indeed
587 * what we expect it to be, and then on success of the compare,
588 * it should write to the location.
589 *
590 * The code segment at @rec->ip should be a caller to @old_addr
591 *
592 * Return must be:
593 * 0 on success
594 * -EFAULT on error reading the location
595 * -EINVAL on a failed compare of the contents
596 * -EPERM on error writing to the location
597 * Any other value will be considered a failure.
598 */
599extern int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
600 unsigned long addr);
601#else
602/* Should never be called */
603static inline int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
604 unsigned long addr)
605{
606 return -EINVAL;
607}
608#endif
609
31e88909
SR
610/* May be defined in arch */
611extern int ftrace_arch_read_dyn_info(char *buf, int size);
593eb8a2 612
ecea656d 613extern int skip_trace(unsigned long ip);
a949ae56 614extern void ftrace_module_init(struct module *mod);
7dcd182b 615extern void ftrace_module_enable(struct module *mod);
049fb9bd 616extern void ftrace_release_mod(struct module *mod);
ecea656d 617
c0719e5a
SR
618extern void ftrace_disable_daemon(void);
619extern void ftrace_enable_daemon(void);
4dc93676 620#else /* CONFIG_DYNAMIC_FTRACE */
4dbf6bc2
SR
621static inline int skip_trace(unsigned long ip) { return 0; }
622static inline int ftrace_force_update(void) { return 0; }
4dbf6bc2
SR
623static inline void ftrace_disable_daemon(void) { }
624static inline void ftrace_enable_daemon(void) { }
7dcd182b
JY
625static inline void ftrace_module_init(struct module *mod) { }
626static inline void ftrace_module_enable(struct module *mod) { }
627static inline void ftrace_release_mod(struct module *mod) { }
38de93ab 628static inline __init int register_ftrace_command(struct ftrace_func_command *cmd)
f6180773 629{
97d0bb8d 630 return -EINVAL;
f6180773 631}
38de93ab 632static inline __init int unregister_ftrace_command(char *cmd_name)
f6180773 633{
97d0bb8d 634 return -EINVAL;
f6180773 635}
d88471cb 636static inline int ftrace_text_reserved(const void *start, const void *end)
2cfa1978
MH
637{
638 return 0;
639}
4dc93676
SR
640static inline unsigned long ftrace_location(unsigned long ip)
641{
642 return 0;
643}
fc13cb0c
SR
644
645/*
646 * Again users of functions that have ftrace_ops may not
647 * have them defined when ftrace is not enabled, but these
648 * functions may still be called. Use a macro instead of inline.
649 */
650#define ftrace_regex_open(ops, flag, inod, file) ({ -ENODEV; })
96de37b6 651#define ftrace_set_early_filter(ops, buf, enable) do { } while (0)
647664ea 652#define ftrace_set_filter_ip(ops, ip, remove, reset) ({ -ENODEV; })
5500fa51
JO
653#define ftrace_set_filter(ops, buf, len, reset) ({ -ENODEV; })
654#define ftrace_set_notrace(ops, buf, len, reset) ({ -ENODEV; })
655#define ftrace_free_filter(ops) do { } while (0)
d032ae89 656#define ftrace_ops_set_global_filter(ops) do { } while (0)
fc13cb0c
SR
657
658static inline ssize_t ftrace_filter_write(struct file *file, const char __user *ubuf,
659 size_t cnt, loff_t *ppos) { return -ENODEV; }
660static inline ssize_t ftrace_notrace_write(struct file *file, const char __user *ubuf,
661 size_t cnt, loff_t *ppos) { return -ENODEV; }
fc13cb0c
SR
662static inline int
663ftrace_regex_release(struct inode *inode, struct file *file) { return -ENODEV; }
aec0be2d
SRRH
664
665static inline bool is_ftrace_trampoline(unsigned long addr)
666{
667 return false;
668}
ecea656d 669#endif /* CONFIG_DYNAMIC_FTRACE */
352ad25a 670
aeaee8a2
IM
671/* totally disable ftrace - can not re-enable after this */
672void ftrace_kill(void);
673
f43fdad8
IM
674static inline void tracer_disable(void)
675{
606576ce 676#ifdef CONFIG_FUNCTION_TRACER
f43fdad8
IM
677 ftrace_enabled = 0;
678#endif
679}
680
37002735
HY
681/*
682 * Ftrace disable/restore without lock. Some synchronization mechanism
9bdeb7b5 683 * must be used to prevent ftrace_enabled to be changed between
37002735
HY
684 * disable/restore.
685 */
9bdeb7b5
HY
686static inline int __ftrace_enabled_save(void)
687{
606576ce 688#ifdef CONFIG_FUNCTION_TRACER
9bdeb7b5
HY
689 int saved_ftrace_enabled = ftrace_enabled;
690 ftrace_enabled = 0;
691 return saved_ftrace_enabled;
692#else
693 return 0;
694#endif
695}
696
697static inline void __ftrace_enabled_restore(int enabled)
698{
606576ce 699#ifdef CONFIG_FUNCTION_TRACER
9bdeb7b5
HY
700 ftrace_enabled = enabled;
701#endif
702}
703
eed542d6
AT
704/* All archs should have this, but we define it for consistency */
705#ifndef ftrace_return_address0
706# define ftrace_return_address0 __builtin_return_address(0)
707#endif
708
709/* Archs may use other ways for ADDR1 and beyond */
710#ifndef ftrace_return_address
c79a61f5 711# ifdef CONFIG_FRAME_POINTER
eed542d6 712# define ftrace_return_address(n) __builtin_return_address(n)
c79a61f5 713# else
eed542d6 714# define ftrace_return_address(n) 0UL
c79a61f5 715# endif
eed542d6
AT
716#endif
717
718#define CALLER_ADDR0 ((unsigned long)ftrace_return_address0)
719#define CALLER_ADDR1 ((unsigned long)ftrace_return_address(1))
720#define CALLER_ADDR2 ((unsigned long)ftrace_return_address(2))
721#define CALLER_ADDR3 ((unsigned long)ftrace_return_address(3))
722#define CALLER_ADDR4 ((unsigned long)ftrace_return_address(4))
723#define CALLER_ADDR5 ((unsigned long)ftrace_return_address(5))
724#define CALLER_ADDR6 ((unsigned long)ftrace_return_address(6))
352ad25a 725
f904f582
SAS
726static inline unsigned long get_lock_parent_ip(void)
727{
728 unsigned long addr = CALLER_ADDR0;
729
730 if (!in_lock_functions(addr))
731 return addr;
732 addr = CALLER_ADDR1;
733 if (!in_lock_functions(addr))
734 return addr;
735 return CALLER_ADDR2;
736}
737
81d68a96 738#ifdef CONFIG_IRQSOFF_TRACER
489f1396
IM
739 extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
740 extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
81d68a96 741#else
4dbf6bc2
SR
742 static inline void time_hardirqs_on(unsigned long a0, unsigned long a1) { }
743 static inline void time_hardirqs_off(unsigned long a0, unsigned long a1) { }
81d68a96
SR
744#endif
745
6cd8a4bb 746#ifdef CONFIG_PREEMPT_TRACER
489f1396
IM
747 extern void trace_preempt_on(unsigned long a0, unsigned long a1);
748 extern void trace_preempt_off(unsigned long a0, unsigned long a1);
6cd8a4bb 749#else
b02ee9a3
MB
750/*
751 * Use defines instead of static inlines because some arches will make code out
752 * of the CALLER_ADDR, when we really want these to be a real nop.
753 */
754# define trace_preempt_on(a0, a1) do { } while (0)
755# define trace_preempt_off(a0, a1) do { } while (0)
6cd8a4bb
SR
756#endif
757
68bf21aa
SR
758#ifdef CONFIG_FTRACE_MCOUNT_RECORD
759extern void ftrace_init(void);
760#else
761static inline void ftrace_init(void) { }
762#endif
763
287b6e68
FW
764/*
765 * Structure that defines an entry function trace.
a4a551b8
NK
766 * It's already packed but the attribute "packed" is needed
767 * to remove extra padding at the end.
287b6e68
FW
768 */
769struct ftrace_graph_ent {
770 unsigned long func; /* Current function */
771 int depth;
a4a551b8 772} __packed;
dd0e545f 773
caf4b323
FW
774/*
775 * Structure that defines a return function trace.
a4a551b8
NK
776 * It's already packed but the attribute "packed" is needed
777 * to remove extra padding at the end.
caf4b323 778 */
fb52607a 779struct ftrace_graph_ret {
caf4b323 780 unsigned long func; /* Current function */
0231022c
FW
781 /* Number of functions that overran the depth limit for current task */
782 unsigned long overrun;
a4a551b8
NK
783 unsigned long long calltime;
784 unsigned long long rettime;
287b6e68 785 int depth;
a4a551b8 786} __packed;
caf4b323 787
62b915f1
JO
788/* Type of the callback handlers for tracing function graph*/
789typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); /* return */
790typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); /* entry */
791
fb52607a 792#ifdef CONFIG_FUNCTION_GRAPH_TRACER
8b96f011 793
5ac9f622 794/* for init task */
f876d346 795#define INIT_FTRACE_GRAPH .ret_stack = NULL,
5ac9f622 796
712406a6
SR
797/*
798 * Stack of return addresses for functions
799 * of a thread.
800 * Used in struct thread_info
801 */
802struct ftrace_ret_stack {
803 unsigned long ret;
804 unsigned long func;
805 unsigned long long calltime;
8861dd30 806#ifdef CONFIG_FUNCTION_PROFILER
a2a16d6a 807 unsigned long long subtime;
8861dd30 808#endif
daa460a8 809#ifdef HAVE_FUNCTION_GRAPH_FP_TEST
71e308a2 810 unsigned long fp;
daa460a8 811#endif
9a7c348b
JP
812#ifdef HAVE_FUNCTION_GRAPH_RET_ADDR_PTR
813 unsigned long *retp;
814#endif
712406a6
SR
815};
816
817/*
818 * Primary handler of a function return.
819 * It relays on ftrace_return_to_handler.
820 * Defined in entry_32/64.S
821 */
822extern void return_to_handler(void);
823
824extern int
71e308a2 825ftrace_push_return_trace(unsigned long ret, unsigned long func, int *depth,
9a7c348b 826 unsigned long frame_pointer, unsigned long *retp);
712406a6 827
223918e3
JP
828unsigned long ftrace_graph_ret_addr(struct task_struct *task, int *idx,
829 unsigned long ret, unsigned long *retp);
830
8b96f011
FW
831/*
832 * Sometimes we don't want to trace a function with the function
833 * graph tracer but we want them to keep traced by the usual function
834 * tracer if the function graph tracer is not configured.
835 */
836#define __notrace_funcgraph notrace
837
29ad23b0 838#define FTRACE_NOTRACE_DEPTH 65536
f201ae23
FW
839#define FTRACE_RETFUNC_DEPTH 50
840#define FTRACE_RETSTACK_ALLOC_SIZE 32
287b6e68
FW
841extern int register_ftrace_graph(trace_func_graph_ret_t retfunc,
842 trace_func_graph_ent_t entryfunc);
843
1b2f121c 844extern bool ftrace_graph_is_dead(void);
14a866c5
SR
845extern void ftrace_graph_stop(void);
846
287b6e68
FW
847/* The current handlers in use */
848extern trace_func_graph_ret_t ftrace_graph_return;
849extern trace_func_graph_ent_t ftrace_graph_entry;
caf4b323 850
fb52607a 851extern void unregister_ftrace_graph(void);
f201ae23 852
fb52607a
FW
853extern void ftrace_graph_init_task(struct task_struct *t);
854extern void ftrace_graph_exit_task(struct task_struct *t);
868baf07 855extern void ftrace_graph_init_idle_task(struct task_struct *t, int cpu);
21a8c466
FW
856
857static inline int task_curr_ret_stack(struct task_struct *t)
858{
859 return t->curr_ret_stack;
860}
380c4b14
FW
861
862static inline void pause_graph_tracing(void)
863{
864 atomic_inc(&current->tracing_graph_pause);
865}
866
867static inline void unpause_graph_tracing(void)
868{
869 atomic_dec(&current->tracing_graph_pause);
870}
5ac9f622 871#else /* !CONFIG_FUNCTION_GRAPH_TRACER */
8b96f011
FW
872
873#define __notrace_funcgraph
5ac9f622 874#define INIT_FTRACE_GRAPH
8b96f011 875
fb52607a
FW
876static inline void ftrace_graph_init_task(struct task_struct *t) { }
877static inline void ftrace_graph_exit_task(struct task_struct *t) { }
868baf07 878static inline void ftrace_graph_init_idle_task(struct task_struct *t, int cpu) { }
21a8c466 879
62b915f1
JO
880static inline int register_ftrace_graph(trace_func_graph_ret_t retfunc,
881 trace_func_graph_ent_t entryfunc)
882{
883 return -1;
884}
885static inline void unregister_ftrace_graph(void) { }
886
21a8c466
FW
887static inline int task_curr_ret_stack(struct task_struct *tsk)
888{
889 return -1;
890}
380c4b14 891
223918e3
JP
892static inline unsigned long
893ftrace_graph_ret_addr(struct task_struct *task, int *idx, unsigned long ret,
894 unsigned long *retp)
895{
896 return ret;
897}
898
380c4b14
FW
899static inline void pause_graph_tracing(void) { }
900static inline void unpause_graph_tracing(void) { }
5ac9f622 901#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
caf4b323 902
ea4e2bc4 903#ifdef CONFIG_TRACING
ea4e2bc4
SR
904
905/* flags for current->trace */
906enum {
907 TSK_TRACE_FL_TRACE_BIT = 0,
908 TSK_TRACE_FL_GRAPH_BIT = 1,
909};
910enum {
911 TSK_TRACE_FL_TRACE = 1 << TSK_TRACE_FL_TRACE_BIT,
912 TSK_TRACE_FL_GRAPH = 1 << TSK_TRACE_FL_GRAPH_BIT,
913};
914
915static inline void set_tsk_trace_trace(struct task_struct *tsk)
916{
917 set_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
918}
919
920static inline void clear_tsk_trace_trace(struct task_struct *tsk)
921{
922 clear_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
923}
924
925static inline int test_tsk_trace_trace(struct task_struct *tsk)
926{
927 return tsk->trace & TSK_TRACE_FL_TRACE;
928}
929
930static inline void set_tsk_trace_graph(struct task_struct *tsk)
931{
932 set_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
933}
934
935static inline void clear_tsk_trace_graph(struct task_struct *tsk)
936{
937 clear_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
938}
939
940static inline int test_tsk_trace_graph(struct task_struct *tsk)
941{
942 return tsk->trace & TSK_TRACE_FL_GRAPH;
943}
944
cecbca96
FW
945enum ftrace_dump_mode;
946
947extern enum ftrace_dump_mode ftrace_dump_on_oops;
0daa2302 948extern int tracepoint_printk;
526211bc 949
de7edd31
SRRH
950extern void disable_trace_on_warning(void);
951extern int __disable_trace_on_warning;
952
261842b7
SR
953#ifdef CONFIG_PREEMPT
954#define INIT_TRACE_RECURSION .trace_recursion = 0,
955#endif
956
42391745
SRRH
957int tracepoint_printk_sysctl(struct ctl_table *table, int write,
958 void __user *buffer, size_t *lenp,
959 loff_t *ppos);
960
de7edd31
SRRH
961#else /* CONFIG_TRACING */
962static inline void disable_trace_on_warning(void) { }
ea4e2bc4
SR
963#endif /* CONFIG_TRACING */
964
261842b7
SR
965#ifndef INIT_TRACE_RECURSION
966#define INIT_TRACE_RECURSION
967#endif
b1818748 968
e7b8e675
MF
969#ifdef CONFIG_FTRACE_SYSCALLS
970
971unsigned long arch_syscall_addr(int nr);
972
973#endif /* CONFIG_FTRACE_SYSCALLS */
974
16444a8a 975#endif /* _LINUX_FTRACE_H */