Merge tag 'leds_for_4.13' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszews...
[linux-2.6-block.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.
ad61dd30 75 * Changing those attribute flags after registering ftrace_ops will
f8b8be8a 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 149
b80f0f6c 150void ftrace_free_init_mem(void);
42c269c8 151#else
b80f0f6c 152static inline void ftrace_free_init_mem(void) { }
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) { }
b80f0f6c 269static inline void ftrace_free_init_mem(void) { }
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 288 loff_t *ppos);
5367278c 289
8aaf1ee7
SRV
290/* DO NOT MODIFY THIS VARIABLE DIRECTLY! */
291DECLARE_PER_CPU(int, disable_stack_tracer);
292
293/**
294 * stack_tracer_disable - temporarily disable the stack tracer
295 *
296 * There's a few locations (namely in RCU) where stack tracing
297 * cannot be executed. This function is used to disable stack
298 * tracing during those critical sections.
299 *
300 * This function must be called with preemption or interrupts
301 * disabled and stack_tracer_enable() must be called shortly after
302 * while preemption or interrupts are still disabled.
303 */
304static inline void stack_tracer_disable(void)
305{
306 /* Preemption or interupts must be disabled */
307 if (IS_ENABLED(CONFIG_PREEMPT_DEBUG))
308 WARN_ON_ONCE(!preempt_count() || !irqs_disabled());
309 this_cpu_inc(disable_stack_tracer);
310}
311
312/**
313 * stack_tracer_enable - re-enable the stack tracer
314 *
315 * After stack_tracer_disable() is called, stack_tracer_enable()
316 * must be called shortly afterward.
317 */
318static inline void stack_tracer_enable(void)
319{
320 if (IS_ENABLED(CONFIG_PREEMPT_DEBUG))
321 WARN_ON_ONCE(!preempt_count() || !irqs_disabled());
322 this_cpu_dec(disable_stack_tracer);
323}
5367278c
SRV
324#else
325static inline void stack_tracer_disable(void) { }
326static inline void stack_tracer_enable(void) { }
f38f1d2a
SR
327#endif
328
3d083395 329#ifdef CONFIG_DYNAMIC_FTRACE
31e88909 330
000ab691
SR
331int ftrace_arch_code_modify_prepare(void);
332int ftrace_arch_code_modify_post_process(void);
333
4fd3279b
SRRH
334struct dyn_ftrace;
335
02a392a0
SRRH
336enum ftrace_bug_type {
337 FTRACE_BUG_UNKNOWN,
338 FTRACE_BUG_INIT,
339 FTRACE_BUG_NOP,
340 FTRACE_BUG_CALL,
341 FTRACE_BUG_UPDATE,
342};
343extern enum ftrace_bug_type ftrace_bug_type;
344
b05086c7
SRRH
345/*
346 * Archs can set this to point to a variable that holds the value that was
347 * expected at the call site before calling ftrace_bug().
348 */
349extern const void *ftrace_expected;
350
4fd3279b 351void ftrace_bug(int err, struct dyn_ftrace *rec);
c88fd863 352
809dcf29
SR
353struct seq_file;
354
d88471cb 355extern int ftrace_text_reserved(const void *start, const void *end);
2cfa1978 356
ea701f11
SR
357extern int ftrace_nr_registered_ops(void);
358
aec0be2d
SRRH
359bool is_ftrace_trampoline(unsigned long addr);
360
08f6fba5
SR
361/*
362 * The dyn_ftrace record's flags field is split into two parts.
363 * the first part which is '0-FTRACE_REF_MAX' is a counter of
364 * the number of callbacks that have registered the function that
365 * the dyn_ftrace descriptor represents.
366 *
367 * The second part is a mask:
368 * ENABLED - the function is being traced
369 * REGS - the record wants the function to save regs
370 * REGS_EN - the function is set up to save regs.
f8b8be8a 371 * IPMODIFY - the record allows for the IP address to be changed.
b7ffffbb 372 * DISABLED - the record is not ready to be touched yet
08f6fba5
SR
373 *
374 * When a new ftrace_ops is registered and wants a function to save
375 * pt_regs, the rec->flag REGS is set. When the function has been
376 * set up to save regs, the REG_EN flag is set. Once a function
377 * starts saving regs it will do so until all ftrace_ops are removed
378 * from tracing that function.
379 */
3c1720f0 380enum {
79922b80 381 FTRACE_FL_ENABLED = (1UL << 31),
08f6fba5 382 FTRACE_FL_REGS = (1UL << 30),
79922b80
SRRH
383 FTRACE_FL_REGS_EN = (1UL << 29),
384 FTRACE_FL_TRAMP = (1UL << 28),
385 FTRACE_FL_TRAMP_EN = (1UL << 27),
f8b8be8a 386 FTRACE_FL_IPMODIFY = (1UL << 26),
b7ffffbb 387 FTRACE_FL_DISABLED = (1UL << 25),
3c1720f0
SR
388};
389
b7ffffbb
SRRH
390#define FTRACE_REF_MAX_SHIFT 25
391#define FTRACE_FL_BITS 7
cf2cb0b2
SRRH
392#define FTRACE_FL_MASKED_BITS ((1UL << FTRACE_FL_BITS) - 1)
393#define FTRACE_FL_MASK (FTRACE_FL_MASKED_BITS << FTRACE_REF_MAX_SHIFT)
394#define FTRACE_REF_MAX ((1UL << FTRACE_REF_MAX_SHIFT) - 1)
ed926f9b 395
0376bde1
SRRH
396#define ftrace_rec_count(rec) ((rec)->flags & ~FTRACE_FL_MASK)
397
3d083395 398struct dyn_ftrace {
a762782d 399 unsigned long ip; /* address of mcount call-site */
85ae32ae 400 unsigned long flags;
a762782d 401 struct dyn_arch_ftrace arch;
3d083395
SR
402};
403
e1c08bdd 404int ftrace_force_update(void);
647664ea
MH
405int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
406 int remove, int reset);
ac483c44 407int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
936e074b 408 int len, int reset);
ac483c44 409int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
936e074b
SR
410 int len, int reset);
411void ftrace_set_global_filter(unsigned char *buf, int len, int reset);
412void ftrace_set_global_notrace(unsigned char *buf, int len, int reset);
5500fa51 413void ftrace_free_filter(struct ftrace_ops *ops);
d032ae89 414void ftrace_ops_set_global_filter(struct ftrace_ops *ops);
e1c08bdd 415
c88fd863
SR
416enum {
417 FTRACE_UPDATE_CALLS = (1 << 0),
418 FTRACE_DISABLE_CALLS = (1 << 1),
419 FTRACE_UPDATE_TRACE_FUNC = (1 << 2),
420 FTRACE_START_FUNC_RET = (1 << 3),
421 FTRACE_STOP_FUNC_RET = (1 << 4),
422};
423
08f6fba5
SR
424/*
425 * The FTRACE_UPDATE_* enum is used to pass information back
426 * from the ftrace_update_record() and ftrace_test_record()
427 * functions. These are called by the code update routines
428 * to find out what is to be done for a given function.
429 *
430 * IGNORE - The function is already what we want it to be
431 * MAKE_CALL - Start tracing the function
432 * MODIFY_CALL - Stop saving regs for the function
08f6fba5
SR
433 * MAKE_NOP - Stop tracing the function
434 */
c88fd863
SR
435enum {
436 FTRACE_UPDATE_IGNORE,
437 FTRACE_UPDATE_MAKE_CALL,
08f6fba5 438 FTRACE_UPDATE_MODIFY_CALL,
c88fd863
SR
439 FTRACE_UPDATE_MAKE_NOP,
440};
441
fc13cb0c
SR
442enum {
443 FTRACE_ITER_FILTER = (1 << 0),
444 FTRACE_ITER_NOTRACE = (1 << 1),
445 FTRACE_ITER_PRINTALL = (1 << 2),
eee8ded1
SRV
446 FTRACE_ITER_DO_PROBES = (1 << 3),
447 FTRACE_ITER_PROBE = (1 << 4),
69a3083c 448 FTRACE_ITER_ENABLED = (1 << 5),
fc13cb0c
SR
449};
450
c88fd863
SR
451void arch_ftrace_update_code(int command);
452
453struct ftrace_rec_iter;
454
455struct ftrace_rec_iter *ftrace_rec_iter_start(void);
456struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter);
457struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter);
458
08d636b6
SR
459#define for_ftrace_rec_iter(iter) \
460 for (iter = ftrace_rec_iter_start(); \
461 iter; \
462 iter = ftrace_rec_iter_next(iter))
463
464
c88fd863
SR
465int ftrace_update_record(struct dyn_ftrace *rec, int enable);
466int ftrace_test_record(struct dyn_ftrace *rec, int enable);
467void ftrace_run_stop_machine(int command);
f0cf973a 468unsigned long ftrace_location(unsigned long ip);
04cf31a7 469unsigned long ftrace_location_range(unsigned long start, unsigned long end);
7413af1f
SRRH
470unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec);
471unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec);
c88fd863
SR
472
473extern ftrace_func_t ftrace_trace_function;
474
fc13cb0c
SR
475int ftrace_regex_open(struct ftrace_ops *ops, int flag,
476 struct inode *inode, struct file *file);
477ssize_t ftrace_filter_write(struct file *file, const char __user *ubuf,
478 size_t cnt, loff_t *ppos);
479ssize_t ftrace_notrace_write(struct file *file, const char __user *ubuf,
480 size_t cnt, loff_t *ppos);
fc13cb0c
SR
481int ftrace_regex_release(struct inode *inode, struct file *file);
482
2a85a37f
SR
483void __init
484ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable);
485
3d083395 486/* defined in arch */
3c1720f0 487extern int ftrace_ip_converted(unsigned long ip);
3a36cb11 488extern int ftrace_dyn_arch_init(void);
e4f5d544 489extern void ftrace_replace_code(int enable);
d61f82d0
SR
490extern int ftrace_update_ftrace_func(ftrace_func_t func);
491extern void ftrace_caller(void);
08f6fba5 492extern void ftrace_regs_caller(void);
d61f82d0 493extern void ftrace_call(void);
08f6fba5 494extern void ftrace_regs_call(void);
d61f82d0 495extern void mcount_call(void);
f0001207 496
8ed3e2cf
SR
497void ftrace_modify_all_code(int command);
498
f0001207
SL
499#ifndef FTRACE_ADDR
500#define FTRACE_ADDR ((unsigned long)ftrace_caller)
501#endif
08f6fba5 502
79922b80
SRRH
503#ifndef FTRACE_GRAPH_ADDR
504#define FTRACE_GRAPH_ADDR ((unsigned long)ftrace_graph_caller)
505#endif
506
08f6fba5 507#ifndef FTRACE_REGS_ADDR
06aeaaea 508#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
08f6fba5
SR
509# define FTRACE_REGS_ADDR ((unsigned long)ftrace_regs_caller)
510#else
511# define FTRACE_REGS_ADDR FTRACE_ADDR
512#endif
513#endif
514
646d7043
SRRH
515/*
516 * If an arch would like functions that are only traced
517 * by the function graph tracer to jump directly to its own
518 * trampoline, then they can define FTRACE_GRAPH_TRAMP_ADDR
519 * to be that address to jump to.
520 */
521#ifndef FTRACE_GRAPH_TRAMP_ADDR
522#define FTRACE_GRAPH_TRAMP_ADDR ((unsigned long) 0)
523#endif
524
fb52607a
FW
525#ifdef CONFIG_FUNCTION_GRAPH_TRACER
526extern void ftrace_graph_caller(void);
5a45cfe1
SR
527extern int ftrace_enable_ftrace_graph_caller(void);
528extern int ftrace_disable_ftrace_graph_caller(void);
529#else
530static inline int ftrace_enable_ftrace_graph_caller(void) { return 0; }
531static inline int ftrace_disable_ftrace_graph_caller(void) { return 0; }
e7d3737e 532#endif
ad90c0e3 533
31e88909 534/**
57794a9d 535 * ftrace_make_nop - convert code into nop
31e88909
SR
536 * @mod: module structure if called by module load initialization
537 * @rec: the mcount call site record
538 * @addr: the address that the call site should be calling
539 *
540 * This is a very sensitive operation and great care needs
541 * to be taken by the arch. The operation should carefully
542 * read the location, check to see if what is read is indeed
543 * what we expect it to be, and then on success of the compare,
544 * it should write to the location.
545 *
546 * The code segment at @rec->ip should be a caller to @addr
547 *
548 * Return must be:
549 * 0 on success
550 * -EFAULT on error reading the location
551 * -EINVAL on a failed compare of the contents
552 * -EPERM on error writing to the location
553 * Any other value will be considered a failure.
554 */
555extern int ftrace_make_nop(struct module *mod,
556 struct dyn_ftrace *rec, unsigned long addr);
a26a2a27 557
593eb8a2 558/**
31e88909
SR
559 * ftrace_make_call - convert a nop call site into a call to addr
560 * @rec: the mcount call site record
561 * @addr: the address that the call site should call
593eb8a2
SR
562 *
563 * This is a very sensitive operation and great care needs
564 * to be taken by the arch. The operation should carefully
565 * read the location, check to see if what is read is indeed
566 * what we expect it to be, and then on success of the compare,
567 * it should write to the location.
568 *
31e88909
SR
569 * The code segment at @rec->ip should be a nop
570 *
593eb8a2
SR
571 * Return must be:
572 * 0 on success
573 * -EFAULT on error reading the location
574 * -EINVAL on a failed compare of the contents
575 * -EPERM on error writing to the location
576 * Any other value will be considered a failure.
577 */
31e88909
SR
578extern int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr);
579
06aeaaea 580#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
08f6fba5
SR
581/**
582 * ftrace_modify_call - convert from one addr to another (no nop)
583 * @rec: the mcount call site record
584 * @old_addr: the address expected to be currently called to
585 * @addr: the address to change to
586 *
587 * This is a very sensitive operation and great care needs
588 * to be taken by the arch. The operation should carefully
589 * read the location, check to see if what is read is indeed
590 * what we expect it to be, and then on success of the compare,
591 * it should write to the location.
592 *
593 * The code segment at @rec->ip should be a caller to @old_addr
594 *
595 * Return must be:
596 * 0 on success
597 * -EFAULT on error reading the location
598 * -EINVAL on a failed compare of the contents
599 * -EPERM on error writing to the location
600 * Any other value will be considered a failure.
601 */
602extern int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
603 unsigned long addr);
604#else
605/* Should never be called */
606static inline int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
607 unsigned long addr)
608{
609 return -EINVAL;
610}
611#endif
612
31e88909
SR
613/* May be defined in arch */
614extern int ftrace_arch_read_dyn_info(char *buf, int size);
593eb8a2 615
ecea656d 616extern int skip_trace(unsigned long ip);
a949ae56 617extern void ftrace_module_init(struct module *mod);
7dcd182b 618extern void ftrace_module_enable(struct module *mod);
049fb9bd 619extern void ftrace_release_mod(struct module *mod);
ecea656d 620
c0719e5a
SR
621extern void ftrace_disable_daemon(void);
622extern void ftrace_enable_daemon(void);
4dc93676 623#else /* CONFIG_DYNAMIC_FTRACE */
4dbf6bc2
SR
624static inline int skip_trace(unsigned long ip) { return 0; }
625static inline int ftrace_force_update(void) { return 0; }
4dbf6bc2
SR
626static inline void ftrace_disable_daemon(void) { }
627static inline void ftrace_enable_daemon(void) { }
7dcd182b
JY
628static inline void ftrace_module_init(struct module *mod) { }
629static inline void ftrace_module_enable(struct module *mod) { }
630static inline void ftrace_release_mod(struct module *mod) { }
d88471cb 631static inline int ftrace_text_reserved(const void *start, const void *end)
2cfa1978
MH
632{
633 return 0;
634}
4dc93676
SR
635static inline unsigned long ftrace_location(unsigned long ip)
636{
637 return 0;
638}
fc13cb0c
SR
639
640/*
641 * Again users of functions that have ftrace_ops may not
642 * have them defined when ftrace is not enabled, but these
643 * functions may still be called. Use a macro instead of inline.
644 */
645#define ftrace_regex_open(ops, flag, inod, file) ({ -ENODEV; })
96de37b6 646#define ftrace_set_early_filter(ops, buf, enable) do { } while (0)
647664ea 647#define ftrace_set_filter_ip(ops, ip, remove, reset) ({ -ENODEV; })
5500fa51
JO
648#define ftrace_set_filter(ops, buf, len, reset) ({ -ENODEV; })
649#define ftrace_set_notrace(ops, buf, len, reset) ({ -ENODEV; })
650#define ftrace_free_filter(ops) do { } while (0)
d032ae89 651#define ftrace_ops_set_global_filter(ops) do { } while (0)
fc13cb0c
SR
652
653static inline ssize_t ftrace_filter_write(struct file *file, const char __user *ubuf,
654 size_t cnt, loff_t *ppos) { return -ENODEV; }
655static inline ssize_t ftrace_notrace_write(struct file *file, const char __user *ubuf,
656 size_t cnt, loff_t *ppos) { return -ENODEV; }
fc13cb0c
SR
657static inline int
658ftrace_regex_release(struct inode *inode, struct file *file) { return -ENODEV; }
aec0be2d
SRRH
659
660static inline bool is_ftrace_trampoline(unsigned long addr)
661{
662 return false;
663}
ecea656d 664#endif /* CONFIG_DYNAMIC_FTRACE */
352ad25a 665
aeaee8a2
IM
666/* totally disable ftrace - can not re-enable after this */
667void ftrace_kill(void);
668
f43fdad8
IM
669static inline void tracer_disable(void)
670{
606576ce 671#ifdef CONFIG_FUNCTION_TRACER
f43fdad8
IM
672 ftrace_enabled = 0;
673#endif
674}
675
37002735
HY
676/*
677 * Ftrace disable/restore without lock. Some synchronization mechanism
9bdeb7b5 678 * must be used to prevent ftrace_enabled to be changed between
37002735
HY
679 * disable/restore.
680 */
9bdeb7b5
HY
681static inline int __ftrace_enabled_save(void)
682{
606576ce 683#ifdef CONFIG_FUNCTION_TRACER
9bdeb7b5
HY
684 int saved_ftrace_enabled = ftrace_enabled;
685 ftrace_enabled = 0;
686 return saved_ftrace_enabled;
687#else
688 return 0;
689#endif
690}
691
692static inline void __ftrace_enabled_restore(int enabled)
693{
606576ce 694#ifdef CONFIG_FUNCTION_TRACER
9bdeb7b5
HY
695 ftrace_enabled = enabled;
696#endif
697}
698
eed542d6
AT
699/* All archs should have this, but we define it for consistency */
700#ifndef ftrace_return_address0
701# define ftrace_return_address0 __builtin_return_address(0)
702#endif
703
704/* Archs may use other ways for ADDR1 and beyond */
705#ifndef ftrace_return_address
c79a61f5 706# ifdef CONFIG_FRAME_POINTER
eed542d6 707# define ftrace_return_address(n) __builtin_return_address(n)
c79a61f5 708# else
eed542d6 709# define ftrace_return_address(n) 0UL
c79a61f5 710# endif
eed542d6
AT
711#endif
712
713#define CALLER_ADDR0 ((unsigned long)ftrace_return_address0)
714#define CALLER_ADDR1 ((unsigned long)ftrace_return_address(1))
715#define CALLER_ADDR2 ((unsigned long)ftrace_return_address(2))
716#define CALLER_ADDR3 ((unsigned long)ftrace_return_address(3))
717#define CALLER_ADDR4 ((unsigned long)ftrace_return_address(4))
718#define CALLER_ADDR5 ((unsigned long)ftrace_return_address(5))
719#define CALLER_ADDR6 ((unsigned long)ftrace_return_address(6))
352ad25a 720
f904f582
SAS
721static inline unsigned long get_lock_parent_ip(void)
722{
723 unsigned long addr = CALLER_ADDR0;
724
725 if (!in_lock_functions(addr))
726 return addr;
727 addr = CALLER_ADDR1;
728 if (!in_lock_functions(addr))
729 return addr;
730 return CALLER_ADDR2;
731}
732
81d68a96 733#ifdef CONFIG_IRQSOFF_TRACER
489f1396
IM
734 extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
735 extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
81d68a96 736#else
4dbf6bc2
SR
737 static inline void time_hardirqs_on(unsigned long a0, unsigned long a1) { }
738 static inline void time_hardirqs_off(unsigned long a0, unsigned long a1) { }
81d68a96
SR
739#endif
740
6cd8a4bb 741#ifdef CONFIG_PREEMPT_TRACER
489f1396
IM
742 extern void trace_preempt_on(unsigned long a0, unsigned long a1);
743 extern void trace_preempt_off(unsigned long a0, unsigned long a1);
6cd8a4bb 744#else
b02ee9a3
MB
745/*
746 * Use defines instead of static inlines because some arches will make code out
747 * of the CALLER_ADDR, when we really want these to be a real nop.
748 */
749# define trace_preempt_on(a0, a1) do { } while (0)
750# define trace_preempt_off(a0, a1) do { } while (0)
6cd8a4bb
SR
751#endif
752
68bf21aa
SR
753#ifdef CONFIG_FTRACE_MCOUNT_RECORD
754extern void ftrace_init(void);
755#else
756static inline void ftrace_init(void) { }
757#endif
758
287b6e68
FW
759/*
760 * Structure that defines an entry function trace.
a4a551b8
NK
761 * It's already packed but the attribute "packed" is needed
762 * to remove extra padding at the end.
287b6e68
FW
763 */
764struct ftrace_graph_ent {
765 unsigned long func; /* Current function */
766 int depth;
a4a551b8 767} __packed;
dd0e545f 768
caf4b323
FW
769/*
770 * Structure that defines a return function trace.
a4a551b8
NK
771 * It's already packed but the attribute "packed" is needed
772 * to remove extra padding at the end.
caf4b323 773 */
fb52607a 774struct ftrace_graph_ret {
caf4b323 775 unsigned long func; /* Current function */
0231022c
FW
776 /* Number of functions that overran the depth limit for current task */
777 unsigned long overrun;
a4a551b8
NK
778 unsigned long long calltime;
779 unsigned long long rettime;
287b6e68 780 int depth;
a4a551b8 781} __packed;
caf4b323 782
62b915f1
JO
783/* Type of the callback handlers for tracing function graph*/
784typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); /* return */
785typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); /* entry */
786
fb52607a 787#ifdef CONFIG_FUNCTION_GRAPH_TRACER
8b96f011 788
5ac9f622 789/* for init task */
f876d346 790#define INIT_FTRACE_GRAPH .ret_stack = NULL,
5ac9f622 791
712406a6
SR
792/*
793 * Stack of return addresses for functions
794 * of a thread.
795 * Used in struct thread_info
796 */
797struct ftrace_ret_stack {
798 unsigned long ret;
799 unsigned long func;
800 unsigned long long calltime;
8861dd30 801#ifdef CONFIG_FUNCTION_PROFILER
a2a16d6a 802 unsigned long long subtime;
8861dd30 803#endif
daa460a8 804#ifdef HAVE_FUNCTION_GRAPH_FP_TEST
71e308a2 805 unsigned long fp;
daa460a8 806#endif
9a7c348b
JP
807#ifdef HAVE_FUNCTION_GRAPH_RET_ADDR_PTR
808 unsigned long *retp;
809#endif
712406a6
SR
810};
811
812/*
813 * Primary handler of a function return.
814 * It relays on ftrace_return_to_handler.
815 * Defined in entry_32/64.S
816 */
817extern void return_to_handler(void);
818
819extern int
71e308a2 820ftrace_push_return_trace(unsigned long ret, unsigned long func, int *depth,
9a7c348b 821 unsigned long frame_pointer, unsigned long *retp);
712406a6 822
223918e3
JP
823unsigned long ftrace_graph_ret_addr(struct task_struct *task, int *idx,
824 unsigned long ret, unsigned long *retp);
825
8b96f011
FW
826/*
827 * Sometimes we don't want to trace a function with the function
828 * graph tracer but we want them to keep traced by the usual function
829 * tracer if the function graph tracer is not configured.
830 */
831#define __notrace_funcgraph notrace
832
29ad23b0 833#define FTRACE_NOTRACE_DEPTH 65536
f201ae23
FW
834#define FTRACE_RETFUNC_DEPTH 50
835#define FTRACE_RETSTACK_ALLOC_SIZE 32
287b6e68
FW
836extern int register_ftrace_graph(trace_func_graph_ret_t retfunc,
837 trace_func_graph_ent_t entryfunc);
838
1b2f121c 839extern bool ftrace_graph_is_dead(void);
14a866c5
SR
840extern void ftrace_graph_stop(void);
841
287b6e68
FW
842/* The current handlers in use */
843extern trace_func_graph_ret_t ftrace_graph_return;
844extern trace_func_graph_ent_t ftrace_graph_entry;
caf4b323 845
fb52607a 846extern void unregister_ftrace_graph(void);
f201ae23 847
fb52607a
FW
848extern void ftrace_graph_init_task(struct task_struct *t);
849extern void ftrace_graph_exit_task(struct task_struct *t);
868baf07 850extern void ftrace_graph_init_idle_task(struct task_struct *t, int cpu);
21a8c466
FW
851
852static inline int task_curr_ret_stack(struct task_struct *t)
853{
854 return t->curr_ret_stack;
855}
380c4b14
FW
856
857static inline void pause_graph_tracing(void)
858{
859 atomic_inc(&current->tracing_graph_pause);
860}
861
862static inline void unpause_graph_tracing(void)
863{
864 atomic_dec(&current->tracing_graph_pause);
865}
5ac9f622 866#else /* !CONFIG_FUNCTION_GRAPH_TRACER */
8b96f011
FW
867
868#define __notrace_funcgraph
5ac9f622 869#define INIT_FTRACE_GRAPH
8b96f011 870
fb52607a
FW
871static inline void ftrace_graph_init_task(struct task_struct *t) { }
872static inline void ftrace_graph_exit_task(struct task_struct *t) { }
868baf07 873static inline void ftrace_graph_init_idle_task(struct task_struct *t, int cpu) { }
21a8c466 874
62b915f1
JO
875static inline int register_ftrace_graph(trace_func_graph_ret_t retfunc,
876 trace_func_graph_ent_t entryfunc)
877{
878 return -1;
879}
880static inline void unregister_ftrace_graph(void) { }
881
21a8c466
FW
882static inline int task_curr_ret_stack(struct task_struct *tsk)
883{
884 return -1;
885}
380c4b14 886
223918e3
JP
887static inline unsigned long
888ftrace_graph_ret_addr(struct task_struct *task, int *idx, unsigned long ret,
889 unsigned long *retp)
890{
891 return ret;
892}
893
380c4b14
FW
894static inline void pause_graph_tracing(void) { }
895static inline void unpause_graph_tracing(void) { }
5ac9f622 896#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
caf4b323 897
ea4e2bc4 898#ifdef CONFIG_TRACING
ea4e2bc4
SR
899
900/* flags for current->trace */
901enum {
902 TSK_TRACE_FL_TRACE_BIT = 0,
903 TSK_TRACE_FL_GRAPH_BIT = 1,
904};
905enum {
906 TSK_TRACE_FL_TRACE = 1 << TSK_TRACE_FL_TRACE_BIT,
907 TSK_TRACE_FL_GRAPH = 1 << TSK_TRACE_FL_GRAPH_BIT,
908};
909
910static inline void set_tsk_trace_trace(struct task_struct *tsk)
911{
912 set_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
913}
914
915static inline void clear_tsk_trace_trace(struct task_struct *tsk)
916{
917 clear_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
918}
919
920static inline int test_tsk_trace_trace(struct task_struct *tsk)
921{
922 return tsk->trace & TSK_TRACE_FL_TRACE;
923}
924
925static inline void set_tsk_trace_graph(struct task_struct *tsk)
926{
927 set_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
928}
929
930static inline void clear_tsk_trace_graph(struct task_struct *tsk)
931{
932 clear_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
933}
934
935static inline int test_tsk_trace_graph(struct task_struct *tsk)
936{
937 return tsk->trace & TSK_TRACE_FL_GRAPH;
938}
939
cecbca96
FW
940enum ftrace_dump_mode;
941
942extern enum ftrace_dump_mode ftrace_dump_on_oops;
0daa2302 943extern int tracepoint_printk;
526211bc 944
de7edd31
SRRH
945extern void disable_trace_on_warning(void);
946extern int __disable_trace_on_warning;
947
261842b7
SR
948#ifdef CONFIG_PREEMPT
949#define INIT_TRACE_RECURSION .trace_recursion = 0,
950#endif
951
42391745
SRRH
952int tracepoint_printk_sysctl(struct ctl_table *table, int write,
953 void __user *buffer, size_t *lenp,
954 loff_t *ppos);
955
de7edd31
SRRH
956#else /* CONFIG_TRACING */
957static inline void disable_trace_on_warning(void) { }
ea4e2bc4
SR
958#endif /* CONFIG_TRACING */
959
261842b7
SR
960#ifndef INIT_TRACE_RECURSION
961#define INIT_TRACE_RECURSION
962#endif
b1818748 963
e7b8e675
MF
964#ifdef CONFIG_FTRACE_SYSCALLS
965
966unsigned long arch_syscall_addr(int nr);
967
968#endif /* CONFIG_FTRACE_SYSCALLS */
969
16444a8a 970#endif /* _LINUX_FTRACE_H */