2 #ifndef _LINUX_KERNEL_TRACE_H
3 #define _LINUX_KERNEL_TRACE_H
6 #include <linux/atomic.h>
7 #include <linux/sched.h>
8 #include <linux/clocksource.h>
9 #include <linux/ring_buffer.h>
10 #include <linux/mmiotrace.h>
11 #include <linux/tracepoint.h>
12 #include <linux/ftrace.h>
13 #include <linux/hw_breakpoint.h>
14 #include <linux/trace_seq.h>
15 #include <linux/ftrace_event.h>
16 #include <linux/compiler.h>
18 #ifdef CONFIG_FTRACE_SYSCALLS
19 #include <asm/unistd.h> /* For NR_SYSCALLS */
20 #include <asm/syscall.h> /* some archs define it here */
24 __TRACE_FIRST_TYPE
= 0,
46 #define __field(type, item) type item;
49 #define __field_struct(type, item) __field(type, item)
52 #define __field_desc(type, container, item)
55 #define __array(type, item, size) type item[size];
58 #define __array_desc(type, container, item, size)
60 #undef __dynamic_array
61 #define __dynamic_array(type, item) type item[];
64 #define F_STRUCT(args...) args
67 #define FTRACE_ENTRY(name, struct_name, id, tstruct, print, filter) \
68 struct struct_name { \
69 struct trace_entry ent; \
74 #define TP_ARGS(args...) args
76 #undef FTRACE_ENTRY_DUP
77 #define FTRACE_ENTRY_DUP(name, name_struct, id, tstruct, printk, filter)
79 #undef FTRACE_ENTRY_REG
80 #define FTRACE_ENTRY_REG(name, struct_name, id, tstruct, print, \
82 FTRACE_ENTRY(name, struct_name, id, PARAMS(tstruct), PARAMS(print), \
85 #include "trace_entries.h"
88 * syscalls are special, and need special handling, this is why
89 * they are not included in trace_entries.h
91 struct syscall_trace_enter
{
92 struct trace_entry ent
;
97 struct syscall_trace_exit
{
98 struct trace_entry ent
;
103 struct kprobe_trace_entry_head
{
104 struct trace_entry ent
;
108 struct kretprobe_trace_entry_head
{
109 struct trace_entry ent
;
111 unsigned long ret_ip
;
115 * trace_flag_type is an enumeration that holds different
116 * states when a trace occurs. These are:
117 * IRQS_OFF - interrupts were disabled
118 * IRQS_NOSUPPORT - arch does not support irqs_disabled_flags
119 * NEED_RESCHED - reschedule is requested
120 * HARDIRQ - inside an interrupt handler
121 * SOFTIRQ - inside a softirq handler
123 enum trace_flag_type
{
124 TRACE_FLAG_IRQS_OFF
= 0x01,
125 TRACE_FLAG_IRQS_NOSUPPORT
= 0x02,
126 TRACE_FLAG_NEED_RESCHED
= 0x04,
127 TRACE_FLAG_HARDIRQ
= 0x08,
128 TRACE_FLAG_SOFTIRQ
= 0x10,
129 TRACE_FLAG_PREEMPT_RESCHED
= 0x20,
132 #define TRACE_BUF_SIZE 1024
137 * The CPU trace array - it consists of thousands of trace entries
138 * plus some other descriptor data: (for example which task started
141 struct trace_array_cpu
{
143 void *buffer_page
; /* ring buffer spare */
145 unsigned long entries
;
146 unsigned long saved_latency
;
147 unsigned long critical_start
;
148 unsigned long critical_end
;
149 unsigned long critical_sequence
;
151 unsigned long policy
;
152 unsigned long rt_priority
;
153 unsigned long skipped_entries
;
154 cycle_t preempt_timestamp
;
157 char comm
[TASK_COMM_LEN
];
162 struct trace_buffer
{
163 struct trace_array
*tr
;
164 struct ring_buffer
*buffer
;
165 struct trace_array_cpu __percpu
*data
;
171 * The trace array - an array of per-CPU trace arrays. This is the
172 * highest level data structure that individual tracers deal with.
173 * They have on/off state as well:
176 struct list_head list
;
178 struct trace_buffer trace_buffer
;
179 #ifdef CONFIG_TRACER_MAX_TRACE
181 * The max_buffer is used to snapshot the trace when a maximum
182 * latency is reached, or when the user initiates a snapshot.
183 * Some tracers will use this to store a maximum trace while
184 * it continues examining live traces.
186 * The buffers for the max_buffer are set up the same as the trace_buffer
187 * When a snapshot is taken, the buffer of the max_buffer is swapped
188 * with the buffer of the trace_buffer and the buffers are reset for
189 * the trace_buffer so the tracing can continue.
191 struct trace_buffer max_buffer
;
192 bool allocated_snapshot
;
193 unsigned long max_latency
;
196 * max_lock is used to protect the swapping of buffers
197 * when taking a max snapshot. The buffers themselves are
198 * protected by per_cpu spinlocks. But the action of the swap
199 * needs its own lock.
201 * This is defined as a arch_spinlock_t in order to help
202 * with performance when lockdep debugging is enabled.
204 * It is also used in other places outside the update_max_tr
205 * so it needs to be defined outside of the
206 * CONFIG_TRACER_MAX_TRACE.
208 arch_spinlock_t max_lock
;
210 #ifdef CONFIG_FTRACE_SYSCALLS
211 int sys_refcount_enter
;
212 int sys_refcount_exit
;
213 struct ftrace_event_file __rcu
*enter_syscall_files
[NR_syscalls
];
214 struct ftrace_event_file __rcu
*exit_syscall_files
[NR_syscalls
];
218 struct tracer
*current_trace
;
220 raw_spinlock_t start_lock
;
222 struct dentry
*options
;
223 struct dentry
*percpu_dir
;
224 struct dentry
*event_dir
;
225 struct list_head systems
;
226 struct list_head events
;
227 cpumask_var_t tracing_cpumask
; /* only trace on set CPUs */
229 #ifdef CONFIG_FUNCTION_TRACER
230 struct ftrace_ops
*ops
;
231 /* function tracing enabled */
232 int function_enabled
;
237 TRACE_ARRAY_FL_GLOBAL
= (1 << 0)
240 extern struct list_head ftrace_trace_arrays
;
242 extern struct mutex trace_types_lock
;
244 extern int trace_array_get(struct trace_array
*tr
);
245 extern void trace_array_put(struct trace_array
*tr
);
248 * The global tracer (top) should be the first trace array added,
249 * but we check the flag anyway.
251 static inline struct trace_array
*top_trace_array(void)
253 struct trace_array
*tr
;
255 if (list_empty(&ftrace_trace_arrays
))
258 tr
= list_entry(ftrace_trace_arrays
.prev
,
260 WARN_ON(!(tr
->flags
& TRACE_ARRAY_FL_GLOBAL
));
264 #define FTRACE_CMP_TYPE(var, type) \
265 __builtin_types_compatible_p(typeof(var), type *)
268 #define IF_ASSIGN(var, entry, etype, id) \
269 if (FTRACE_CMP_TYPE(var, etype)) { \
270 var = (typeof(var))(entry); \
271 WARN_ON(id && (entry)->type != id); \
275 /* Will cause compile errors if type is not found. */
276 extern void __ftrace_bad_type(void);
279 * The trace_assign_type is a verifier that the entry type is
280 * the same as the type being assigned. To add new types simply
281 * add a line with the following format:
283 * IF_ASSIGN(var, ent, type, id);
285 * Where "type" is the trace type that includes the trace_entry
286 * as the "ent" item. And "id" is the trace identifier that is
287 * used in the trace_type enum.
289 * If the type can have more than one id, then use zero.
291 #define trace_assign_type(var, ent) \
293 IF_ASSIGN(var, ent, struct ftrace_entry, TRACE_FN); \
294 IF_ASSIGN(var, ent, struct ctx_switch_entry, 0); \
295 IF_ASSIGN(var, ent, struct stack_entry, TRACE_STACK); \
296 IF_ASSIGN(var, ent, struct userstack_entry, TRACE_USER_STACK);\
297 IF_ASSIGN(var, ent, struct print_entry, TRACE_PRINT); \
298 IF_ASSIGN(var, ent, struct bprint_entry, TRACE_BPRINT); \
299 IF_ASSIGN(var, ent, struct bputs_entry, TRACE_BPUTS); \
300 IF_ASSIGN(var, ent, struct trace_mmiotrace_rw, \
302 IF_ASSIGN(var, ent, struct trace_mmiotrace_map, \
304 IF_ASSIGN(var, ent, struct trace_branch, TRACE_BRANCH); \
305 IF_ASSIGN(var, ent, struct ftrace_graph_ent_entry, \
307 IF_ASSIGN(var, ent, struct ftrace_graph_ret_entry, \
309 __ftrace_bad_type(); \
313 * An option specific to a tracer. This is a boolean value.
314 * The bit is the bit index that sets its value on the
315 * flags value in struct tracer_flags.
318 const char *name
; /* Will appear on the trace_options file */
319 u32 bit
; /* Mask assigned in val field in tracer_flags */
323 * The set of specific options for a tracer. Your tracer
324 * have to set the initial value of the flags val.
326 struct tracer_flags
{
328 struct tracer_opt
*opts
;
331 /* Makes more easy to define a tracer opt */
332 #define TRACER_OPT(s, b) .name = #s, .bit = b
336 * struct tracer - a specific tracer and its callbacks to interact with debugfs
337 * @name: the name chosen to select it on the available_tracers file
338 * @init: called when one switches to this tracer (echo name > current_tracer)
339 * @reset: called when one switches to another tracer
340 * @start: called when tracing is unpaused (echo 1 > tracing_enabled)
341 * @stop: called when tracing is paused (echo 0 > tracing_enabled)
342 * @update_thresh: called when tracing_thresh is updated
343 * @open: called when the trace file is opened
344 * @pipe_open: called when the trace_pipe file is opened
345 * @close: called when the trace file is released
346 * @pipe_close: called when the trace_pipe file is released
347 * @read: override the default read callback on trace_pipe
348 * @splice_read: override the default splice_read callback on trace_pipe
349 * @selftest: selftest to run on boot (see trace_selftest.c)
350 * @print_headers: override the first lines that describe your columns
351 * @print_line: callback that prints a trace
352 * @set_flag: signals one of your private flags changed (trace_options file)
353 * @flags: your private flags
357 int (*init
)(struct trace_array
*tr
);
358 void (*reset
)(struct trace_array
*tr
);
359 void (*start
)(struct trace_array
*tr
);
360 void (*stop
)(struct trace_array
*tr
);
361 int (*update_thresh
)(struct trace_array
*tr
);
362 void (*open
)(struct trace_iterator
*iter
);
363 void (*pipe_open
)(struct trace_iterator
*iter
);
364 void (*close
)(struct trace_iterator
*iter
);
365 void (*pipe_close
)(struct trace_iterator
*iter
);
366 ssize_t (*read
)(struct trace_iterator
*iter
,
367 struct file
*filp
, char __user
*ubuf
,
368 size_t cnt
, loff_t
*ppos
);
369 ssize_t (*splice_read
)(struct trace_iterator
*iter
,
372 struct pipe_inode_info
*pipe
,
375 #ifdef CONFIG_FTRACE_STARTUP_TEST
376 int (*selftest
)(struct tracer
*trace
,
377 struct trace_array
*tr
);
379 void (*print_header
)(struct seq_file
*m
);
380 enum print_line_t (*print_line
)(struct trace_iterator
*iter
);
381 /* If you handled the flag setting, return 0 */
382 int (*set_flag
)(struct trace_array
*tr
,
383 u32 old_flags
, u32 bit
, int set
);
384 /* Return 0 if OK with change, else return non-zero */
385 int (*flag_changed
)(struct trace_array
*tr
,
388 struct tracer_flags
*flags
;
391 bool allow_instances
;
392 #ifdef CONFIG_TRACER_MAX_TRACE
398 /* Only current can touch trace_recursion */
401 * For function tracing recursion:
402 * The order of these bits are important.
404 * When function tracing occurs, the following steps are made:
405 * If arch does not support a ftrace feature:
406 * call internal function (uses INTERNAL bits) which calls...
407 * If callback is registered to the "global" list, the list
408 * function is called and recursion checks the GLOBAL bits.
409 * then this function calls...
410 * The function callback, which can use the FTRACE bits to
411 * check for recursion.
413 * Now if the arch does not suppport a feature, and it calls
414 * the global list function which calls the ftrace callback
415 * all three of these steps will do a recursion protection.
416 * There's no reason to do one if the previous caller already
417 * did. The recursion that we are protecting against will
418 * go through the same steps again.
420 * To prevent the multiple recursion checks, if a recursion
421 * bit is set that is higher than the MAX bit of the current
422 * check, then we know that the check was made by the previous
423 * caller, and we can skip the current check.
427 TRACE_BUFFER_NMI_BIT
,
428 TRACE_BUFFER_IRQ_BIT
,
429 TRACE_BUFFER_SIRQ_BIT
,
431 /* Start of function recursion bits */
433 TRACE_FTRACE_NMI_BIT
,
434 TRACE_FTRACE_IRQ_BIT
,
435 TRACE_FTRACE_SIRQ_BIT
,
437 /* INTERNAL_BITs must be greater than FTRACE_BITs */
439 TRACE_INTERNAL_NMI_BIT
,
440 TRACE_INTERNAL_IRQ_BIT
,
441 TRACE_INTERNAL_SIRQ_BIT
,
447 * Abuse of the trace_recursion.
448 * As we need a way to maintain state if we are tracing the function
449 * graph in irq because we want to trace a particular function that
450 * was called in irq context but we have irq tracing off. Since this
451 * can only be modified by current, we can reuse trace_recursion.
456 #define trace_recursion_set(bit) do { (current)->trace_recursion |= (1<<(bit)); } while (0)
457 #define trace_recursion_clear(bit) do { (current)->trace_recursion &= ~(1<<(bit)); } while (0)
458 #define trace_recursion_test(bit) ((current)->trace_recursion & (1<<(bit)))
460 #define TRACE_CONTEXT_BITS 4
462 #define TRACE_FTRACE_START TRACE_FTRACE_BIT
463 #define TRACE_FTRACE_MAX ((1 << (TRACE_FTRACE_START + TRACE_CONTEXT_BITS)) - 1)
465 #define TRACE_LIST_START TRACE_INTERNAL_BIT
466 #define TRACE_LIST_MAX ((1 << (TRACE_LIST_START + TRACE_CONTEXT_BITS)) - 1)
468 #define TRACE_CONTEXT_MASK TRACE_LIST_MAX
470 static __always_inline
int trace_get_context_bit(void)
474 if (in_interrupt()) {
488 static __always_inline
int trace_test_and_set_recursion(int start
, int max
)
490 unsigned int val
= current
->trace_recursion
;
493 /* A previous recursion check was made */
494 if ((val
& TRACE_CONTEXT_MASK
) > max
)
497 bit
= trace_get_context_bit() + start
;
498 if (unlikely(val
& (1 << bit
)))
502 current
->trace_recursion
= val
;
508 static __always_inline
void trace_clear_recursion(int bit
)
510 unsigned int val
= current
->trace_recursion
;
519 current
->trace_recursion
= val
;
522 static inline struct ring_buffer_iter
*
523 trace_buffer_iter(struct trace_iterator
*iter
, int cpu
)
525 if (iter
->buffer_iter
&& iter
->buffer_iter
[cpu
])
526 return iter
->buffer_iter
[cpu
];
530 int tracer_init(struct tracer
*t
, struct trace_array
*tr
);
531 int tracing_is_enabled(void);
532 void tracing_reset(struct trace_buffer
*buf
, int cpu
);
533 void tracing_reset_online_cpus(struct trace_buffer
*buf
);
534 void tracing_reset_current(int cpu
);
535 void tracing_reset_all_online_cpus(void);
536 int tracing_open_generic(struct inode
*inode
, struct file
*filp
);
537 bool tracing_is_disabled(void);
538 struct dentry
*trace_create_file(const char *name
,
540 struct dentry
*parent
,
542 const struct file_operations
*fops
);
544 struct dentry
*tracing_init_dentry_tr(struct trace_array
*tr
);
545 struct dentry
*tracing_init_dentry(void);
547 struct ring_buffer_event
;
549 struct ring_buffer_event
*
550 trace_buffer_lock_reserve(struct ring_buffer
*buffer
,
556 struct trace_entry
*tracing_get_trace_entry(struct trace_array
*tr
,
557 struct trace_array_cpu
*data
);
559 struct trace_entry
*trace_find_next_entry(struct trace_iterator
*iter
,
560 int *ent_cpu
, u64
*ent_ts
);
562 void __buffer_unlock_commit(struct ring_buffer
*buffer
,
563 struct ring_buffer_event
*event
);
565 int trace_empty(struct trace_iterator
*iter
);
567 void *trace_find_next_entry_inc(struct trace_iterator
*iter
);
569 void trace_init_global_iter(struct trace_iterator
*iter
);
571 void tracing_iter_reset(struct trace_iterator
*iter
, int cpu
);
573 void tracing_sched_switch_trace(struct trace_array
*tr
,
574 struct task_struct
*prev
,
575 struct task_struct
*next
,
576 unsigned long flags
, int pc
);
578 void tracing_sched_wakeup_trace(struct trace_array
*tr
,
579 struct task_struct
*wakee
,
580 struct task_struct
*cur
,
581 unsigned long flags
, int pc
);
582 void trace_function(struct trace_array
*tr
,
584 unsigned long parent_ip
,
585 unsigned long flags
, int pc
);
586 void trace_graph_function(struct trace_array
*tr
,
588 unsigned long parent_ip
,
589 unsigned long flags
, int pc
);
590 void trace_latency_header(struct seq_file
*m
);
591 void trace_default_header(struct seq_file
*m
);
592 void print_trace_header(struct seq_file
*m
, struct trace_iterator
*iter
);
593 int trace_empty(struct trace_iterator
*iter
);
595 void trace_graph_return(struct ftrace_graph_ret
*trace
);
596 int trace_graph_entry(struct ftrace_graph_ent
*trace
);
597 void set_graph_array(struct trace_array
*tr
);
599 void tracing_start_cmdline_record(void);
600 void tracing_stop_cmdline_record(void);
601 void tracing_sched_switch_assign_trace(struct trace_array
*tr
);
602 void tracing_stop_sched_switch_record(void);
603 void tracing_start_sched_switch_record(void);
604 int register_tracer(struct tracer
*type
);
605 int is_tracing_stopped(void);
607 loff_t
tracing_lseek(struct file
*file
, loff_t offset
, int whence
);
609 extern cpumask_var_t __read_mostly tracing_buffer_mask
;
611 #define for_each_tracing_cpu(cpu) \
612 for_each_cpu(cpu, tracing_buffer_mask)
614 extern unsigned long nsecs_to_usecs(unsigned long nsecs
);
616 extern unsigned long tracing_thresh
;
618 #ifdef CONFIG_TRACER_MAX_TRACE
619 void update_max_tr(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
);
620 void update_max_tr_single(struct trace_array
*tr
,
621 struct task_struct
*tsk
, int cpu
);
622 #endif /* CONFIG_TRACER_MAX_TRACE */
624 #ifdef CONFIG_STACKTRACE
625 void ftrace_trace_stack(struct ring_buffer
*buffer
, unsigned long flags
,
628 void ftrace_trace_stack_regs(struct ring_buffer
*buffer
, unsigned long flags
,
629 int skip
, int pc
, struct pt_regs
*regs
);
631 void ftrace_trace_userstack(struct ring_buffer
*buffer
, unsigned long flags
,
634 void __trace_stack(struct trace_array
*tr
, unsigned long flags
, int skip
,
637 static inline void ftrace_trace_stack(struct ring_buffer
*buffer
,
638 unsigned long flags
, int skip
, int pc
)
642 static inline void ftrace_trace_stack_regs(struct ring_buffer
*buffer
,
643 unsigned long flags
, int skip
,
644 int pc
, struct pt_regs
*regs
)
648 static inline void ftrace_trace_userstack(struct ring_buffer
*buffer
,
649 unsigned long flags
, int pc
)
653 static inline void __trace_stack(struct trace_array
*tr
, unsigned long flags
,
657 #endif /* CONFIG_STACKTRACE */
659 extern cycle_t
ftrace_now(int cpu
);
661 extern void trace_find_cmdline(int pid
, char comm
[]);
663 #ifdef CONFIG_DYNAMIC_FTRACE
664 extern unsigned long ftrace_update_tot_cnt
;
666 #define DYN_FTRACE_TEST_NAME trace_selftest_dynamic_test_func
667 extern int DYN_FTRACE_TEST_NAME(void);
668 #define DYN_FTRACE_TEST_NAME2 trace_selftest_dynamic_test_func2
669 extern int DYN_FTRACE_TEST_NAME2(void);
671 extern bool ring_buffer_expanded
;
672 extern bool tracing_selftest_disabled
;
673 DECLARE_PER_CPU(int, ftrace_cpu_disabled
);
675 #ifdef CONFIG_FTRACE_STARTUP_TEST
676 extern int trace_selftest_startup_function(struct tracer
*trace
,
677 struct trace_array
*tr
);
678 extern int trace_selftest_startup_function_graph(struct tracer
*trace
,
679 struct trace_array
*tr
);
680 extern int trace_selftest_startup_irqsoff(struct tracer
*trace
,
681 struct trace_array
*tr
);
682 extern int trace_selftest_startup_preemptoff(struct tracer
*trace
,
683 struct trace_array
*tr
);
684 extern int trace_selftest_startup_preemptirqsoff(struct tracer
*trace
,
685 struct trace_array
*tr
);
686 extern int trace_selftest_startup_wakeup(struct tracer
*trace
,
687 struct trace_array
*tr
);
688 extern int trace_selftest_startup_nop(struct tracer
*trace
,
689 struct trace_array
*tr
);
690 extern int trace_selftest_startup_sched_switch(struct tracer
*trace
,
691 struct trace_array
*tr
);
692 extern int trace_selftest_startup_branch(struct tracer
*trace
,
693 struct trace_array
*tr
);
695 * Tracer data references selftest functions that only occur
696 * on boot up. These can be __init functions. Thus, when selftests
697 * are enabled, then the tracers need to reference __init functions.
699 #define __tracer_data __refdata
701 /* Tracers are seldom changed. Optimize when selftests are disabled. */
702 #define __tracer_data __read_mostly
703 #endif /* CONFIG_FTRACE_STARTUP_TEST */
705 extern void *head_page(struct trace_array_cpu
*data
);
706 extern unsigned long long ns2usecs(cycle_t nsec
);
708 trace_vbprintk(unsigned long ip
, const char *fmt
, va_list args
);
710 trace_vprintk(unsigned long ip
, const char *fmt
, va_list args
);
712 trace_array_vprintk(struct trace_array
*tr
,
713 unsigned long ip
, const char *fmt
, va_list args
);
714 int trace_array_printk(struct trace_array
*tr
,
715 unsigned long ip
, const char *fmt
, ...);
716 int trace_array_printk_buf(struct ring_buffer
*buffer
,
717 unsigned long ip
, const char *fmt
, ...);
718 void trace_printk_seq(struct trace_seq
*s
);
719 enum print_line_t
print_trace_line(struct trace_iterator
*iter
);
721 extern unsigned long trace_flags
;
723 /* Standard output formatting function used for function return traces */
724 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
727 #define TRACE_GRAPH_PRINT_OVERRUN 0x1
728 #define TRACE_GRAPH_PRINT_CPU 0x2
729 #define TRACE_GRAPH_PRINT_OVERHEAD 0x4
730 #define TRACE_GRAPH_PRINT_PROC 0x8
731 #define TRACE_GRAPH_PRINT_DURATION 0x10
732 #define TRACE_GRAPH_PRINT_ABS_TIME 0x20
733 #define TRACE_GRAPH_PRINT_IRQS 0x40
734 #define TRACE_GRAPH_PRINT_TAIL 0x80
735 #define TRACE_GRAPH_PRINT_FILL_SHIFT 28
736 #define TRACE_GRAPH_PRINT_FILL_MASK (0x3 << TRACE_GRAPH_PRINT_FILL_SHIFT)
738 extern enum print_line_t
739 print_graph_function_flags(struct trace_iterator
*iter
, u32 flags
);
740 extern void print_graph_headers_flags(struct seq_file
*s
, u32 flags
);
741 extern enum print_line_t
742 trace_print_graph_duration(unsigned long long duration
, struct trace_seq
*s
);
743 extern void graph_trace_open(struct trace_iterator
*iter
);
744 extern void graph_trace_close(struct trace_iterator
*iter
);
745 extern int __trace_graph_entry(struct trace_array
*tr
,
746 struct ftrace_graph_ent
*trace
,
747 unsigned long flags
, int pc
);
748 extern void __trace_graph_return(struct trace_array
*tr
,
749 struct ftrace_graph_ret
*trace
,
750 unsigned long flags
, int pc
);
753 #ifdef CONFIG_DYNAMIC_FTRACE
754 /* TODO: make this variable */
755 #define FTRACE_GRAPH_MAX_FUNCS 32
756 extern int ftrace_graph_count
;
757 extern unsigned long ftrace_graph_funcs
[FTRACE_GRAPH_MAX_FUNCS
];
758 extern int ftrace_graph_notrace_count
;
759 extern unsigned long ftrace_graph_notrace_funcs
[FTRACE_GRAPH_MAX_FUNCS
];
761 static inline int ftrace_graph_addr(unsigned long addr
)
765 if (!ftrace_graph_count
)
768 for (i
= 0; i
< ftrace_graph_count
; i
++) {
769 if (addr
== ftrace_graph_funcs
[i
]) {
771 * If no irqs are to be traced, but a set_graph_function
772 * is set, and called by an interrupt handler, we still
776 trace_recursion_set(TRACE_IRQ_BIT
);
778 trace_recursion_clear(TRACE_IRQ_BIT
);
786 static inline int ftrace_graph_notrace_addr(unsigned long addr
)
790 if (!ftrace_graph_notrace_count
)
793 for (i
= 0; i
< ftrace_graph_notrace_count
; i
++) {
794 if (addr
== ftrace_graph_notrace_funcs
[i
])
801 static inline int ftrace_graph_addr(unsigned long addr
)
806 static inline int ftrace_graph_notrace_addr(unsigned long addr
)
810 #endif /* CONFIG_DYNAMIC_FTRACE */
811 #else /* CONFIG_FUNCTION_GRAPH_TRACER */
812 static inline enum print_line_t
813 print_graph_function_flags(struct trace_iterator
*iter
, u32 flags
)
815 return TRACE_TYPE_UNHANDLED
;
817 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
819 extern struct list_head ftrace_pids
;
821 #ifdef CONFIG_FUNCTION_TRACER
822 extern bool ftrace_filter_param __initdata
;
823 static inline int ftrace_trace_task(struct task_struct
*task
)
825 if (list_empty(&ftrace_pids
))
828 return test_tsk_trace_trace(task
);
830 extern int ftrace_is_dead(void);
831 int ftrace_create_function_files(struct trace_array
*tr
,
832 struct dentry
*parent
);
833 void ftrace_destroy_function_files(struct trace_array
*tr
);
834 void ftrace_init_global_array_ops(struct trace_array
*tr
);
835 void ftrace_init_array_ops(struct trace_array
*tr
, ftrace_func_t func
);
836 void ftrace_reset_array_ops(struct trace_array
*tr
);
837 int using_ftrace_ops_list_func(void);
839 static inline int ftrace_trace_task(struct task_struct
*task
)
843 static inline int ftrace_is_dead(void) { return 0; }
845 ftrace_create_function_files(struct trace_array
*tr
,
846 struct dentry
*parent
)
850 static inline void ftrace_destroy_function_files(struct trace_array
*tr
) { }
851 static inline __init
void
852 ftrace_init_global_array_ops(struct trace_array
*tr
) { }
853 static inline void ftrace_reset_array_ops(struct trace_array
*tr
) { }
854 /* ftace_func_t type is not defined, use macro instead of static inline */
855 #define ftrace_init_array_ops(tr, func) do { } while (0)
856 #endif /* CONFIG_FUNCTION_TRACER */
858 #if defined(CONFIG_FUNCTION_TRACER) && defined(CONFIG_DYNAMIC_FTRACE)
859 void ftrace_create_filter_files(struct ftrace_ops
*ops
,
860 struct dentry
*parent
);
861 void ftrace_destroy_filter_files(struct ftrace_ops
*ops
);
864 * The ops parameter passed in is usually undefined.
865 * This must be a macro.
867 #define ftrace_create_filter_files(ops, parent) do { } while (0)
868 #define ftrace_destroy_filter_files(ops) do { } while (0)
869 #endif /* CONFIG_FUNCTION_TRACER && CONFIG_DYNAMIC_FTRACE */
871 int ftrace_event_is_function(struct ftrace_event_call
*call
);
874 * struct trace_parser - servers for reading the user input separated by spaces
875 * @cont: set if the input is not complete - no final space char was found
876 * @buffer: holds the parsed user input
877 * @idx: user input length
880 struct trace_parser
{
887 static inline bool trace_parser_loaded(struct trace_parser
*parser
)
889 return (parser
->idx
!= 0);
892 static inline bool trace_parser_cont(struct trace_parser
*parser
)
897 static inline void trace_parser_clear(struct trace_parser
*parser
)
899 parser
->cont
= false;
903 extern int trace_parser_get_init(struct trace_parser
*parser
, int size
);
904 extern void trace_parser_put(struct trace_parser
*parser
);
905 extern int trace_get_user(struct trace_parser
*parser
, const char __user
*ubuf
,
906 size_t cnt
, loff_t
*ppos
);
909 * trace_iterator_flags is an enumeration that defines bit
910 * positions into trace_flags that controls the output.
912 * NOTE: These bits must match the trace_options array in
915 enum trace_iterator_flags
{
916 TRACE_ITER_PRINT_PARENT
= 0x01,
917 TRACE_ITER_SYM_OFFSET
= 0x02,
918 TRACE_ITER_SYM_ADDR
= 0x04,
919 TRACE_ITER_VERBOSE
= 0x08,
920 TRACE_ITER_RAW
= 0x10,
921 TRACE_ITER_HEX
= 0x20,
922 TRACE_ITER_BIN
= 0x40,
923 TRACE_ITER_BLOCK
= 0x80,
924 TRACE_ITER_STACKTRACE
= 0x100,
925 TRACE_ITER_PRINTK
= 0x200,
926 TRACE_ITER_PREEMPTONLY
= 0x400,
927 TRACE_ITER_BRANCH
= 0x800,
928 TRACE_ITER_ANNOTATE
= 0x1000,
929 TRACE_ITER_USERSTACKTRACE
= 0x2000,
930 TRACE_ITER_SYM_USEROBJ
= 0x4000,
931 TRACE_ITER_PRINTK_MSGONLY
= 0x8000,
932 TRACE_ITER_CONTEXT_INFO
= 0x10000, /* Print pid/cpu/time */
933 TRACE_ITER_LATENCY_FMT
= 0x20000,
934 TRACE_ITER_SLEEP_TIME
= 0x40000,
935 TRACE_ITER_GRAPH_TIME
= 0x80000,
936 TRACE_ITER_RECORD_CMD
= 0x100000,
937 TRACE_ITER_OVERWRITE
= 0x200000,
938 TRACE_ITER_STOP_ON_FREE
= 0x400000,
939 TRACE_ITER_IRQ_INFO
= 0x800000,
940 TRACE_ITER_MARKERS
= 0x1000000,
941 TRACE_ITER_FUNCTION
= 0x2000000,
945 * TRACE_ITER_SYM_MASK masks the options in trace_flags that
946 * control the output of kernel symbols.
948 #define TRACE_ITER_SYM_MASK \
949 (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR)
951 extern struct tracer nop_trace
;
953 #ifdef CONFIG_BRANCH_TRACER
954 extern int enable_branch_tracing(struct trace_array
*tr
);
955 extern void disable_branch_tracing(void);
956 static inline int trace_branch_enable(struct trace_array
*tr
)
958 if (trace_flags
& TRACE_ITER_BRANCH
)
959 return enable_branch_tracing(tr
);
962 static inline void trace_branch_disable(void)
964 /* due to races, always disable */
965 disable_branch_tracing();
968 static inline int trace_branch_enable(struct trace_array
*tr
)
972 static inline void trace_branch_disable(void)
975 #endif /* CONFIG_BRANCH_TRACER */
977 /* set ring buffers to default size if not already done so */
978 int tracing_update_buffers(void);
980 struct ftrace_event_field
{
981 struct list_head link
;
990 struct event_filter
{
991 int n_preds
; /* Number assigned */
992 int a_preds
; /* allocated */
993 struct filter_pred
*preds
;
994 struct filter_pred
*root
;
998 struct event_subsystem
{
999 struct list_head list
;
1001 struct event_filter
*filter
;
1005 struct ftrace_subsystem_dir
{
1006 struct list_head list
;
1007 struct event_subsystem
*subsystem
;
1008 struct trace_array
*tr
;
1009 struct dentry
*entry
;
1014 #define FILTER_PRED_INVALID ((unsigned short)-1)
1015 #define FILTER_PRED_IS_RIGHT (1 << 15)
1016 #define FILTER_PRED_FOLD (1 << 15)
1019 * The max preds is the size of unsigned short with
1020 * two flags at the MSBs. One bit is used for both the IS_RIGHT
1021 * and FOLD flags. The other is reserved.
1023 * 2^14 preds is way more than enough.
1025 #define MAX_FILTER_PRED 16384
1030 typedef int (*filter_pred_fn_t
) (struct filter_pred
*pred
, void *event
);
1032 typedef int (*regex_match_func
)(char *str
, struct regex
*r
, int len
);
1042 char pattern
[MAX_FILTER_STR_VAL
];
1045 regex_match_func match
;
1048 struct filter_pred
{
1049 filter_pred_fn_t fn
;
1052 unsigned short *ops
;
1053 struct ftrace_event_field
*field
;
1057 unsigned short index
;
1058 unsigned short parent
;
1059 unsigned short left
;
1060 unsigned short right
;
1063 extern enum regex_type
1064 filter_parse_regex(char *buff
, int len
, char **search
, int *not);
1065 extern void print_event_filter(struct ftrace_event_file
*file
,
1066 struct trace_seq
*s
);
1067 extern int apply_event_filter(struct ftrace_event_file
*file
,
1068 char *filter_string
);
1069 extern int apply_subsystem_event_filter(struct ftrace_subsystem_dir
*dir
,
1070 char *filter_string
);
1071 extern void print_subsystem_event_filter(struct event_subsystem
*system
,
1072 struct trace_seq
*s
);
1073 extern int filter_assign_type(const char *type
);
1074 extern int create_event_filter(struct ftrace_event_call
*call
,
1075 char *filter_str
, bool set_str
,
1076 struct event_filter
**filterp
);
1077 extern void free_event_filter(struct event_filter
*filter
);
1079 struct ftrace_event_field
*
1080 trace_find_event_field(struct ftrace_event_call
*call
, char *name
);
1082 extern void trace_event_enable_cmd_record(bool enable
);
1083 extern int event_trace_add_tracer(struct dentry
*parent
, struct trace_array
*tr
);
1084 extern int event_trace_del_tracer(struct trace_array
*tr
);
1086 extern struct ftrace_event_file
*find_event_file(struct trace_array
*tr
,
1090 static inline void *event_file_data(struct file
*filp
)
1092 return ACCESS_ONCE(file_inode(filp
)->i_private
);
1095 extern struct mutex event_mutex
;
1096 extern struct list_head ftrace_events
;
1098 extern const struct file_operations event_trigger_fops
;
1100 extern int register_trigger_cmds(void);
1101 extern void clear_event_triggers(struct trace_array
*tr
);
1103 struct event_trigger_data
{
1104 unsigned long count
;
1106 struct event_trigger_ops
*ops
;
1107 struct event_command
*cmd_ops
;
1108 struct event_filter __rcu
*filter
;
1111 struct list_head list
;
1115 * struct event_trigger_ops - callbacks for trace event triggers
1117 * The methods in this structure provide per-event trigger hooks for
1118 * various trigger operations.
1120 * All the methods below, except for @init() and @free(), must be
1123 * @func: The trigger 'probe' function called when the triggering
1124 * event occurs. The data passed into this callback is the data
1125 * that was supplied to the event_command @reg() function that
1126 * registered the trigger (see struct event_command).
1128 * @init: An optional initialization function called for the trigger
1129 * when the trigger is registered (via the event_command reg()
1130 * function). This can be used to perform per-trigger
1131 * initialization such as incrementing a per-trigger reference
1132 * count, for instance. This is usually implemented by the
1133 * generic utility function @event_trigger_init() (see
1134 * trace_event_triggers.c).
1136 * @free: An optional de-initialization function called for the
1137 * trigger when the trigger is unregistered (via the
1138 * event_command @reg() function). This can be used to perform
1139 * per-trigger de-initialization such as decrementing a
1140 * per-trigger reference count and freeing corresponding trigger
1141 * data, for instance. This is usually implemented by the
1142 * generic utility function @event_trigger_free() (see
1143 * trace_event_triggers.c).
1145 * @print: The callback function invoked to have the trigger print
1146 * itself. This is usually implemented by a wrapper function
1147 * that calls the generic utility function @event_trigger_print()
1148 * (see trace_event_triggers.c).
1150 struct event_trigger_ops
{
1151 void (*func
)(struct event_trigger_data
*data
);
1152 int (*init
)(struct event_trigger_ops
*ops
,
1153 struct event_trigger_data
*data
);
1154 void (*free
)(struct event_trigger_ops
*ops
,
1155 struct event_trigger_data
*data
);
1156 int (*print
)(struct seq_file
*m
,
1157 struct event_trigger_ops
*ops
,
1158 struct event_trigger_data
*data
);
1162 * struct event_command - callbacks and data members for event commands
1164 * Event commands are invoked by users by writing the command name
1165 * into the 'trigger' file associated with a trace event. The
1166 * parameters associated with a specific invocation of an event
1167 * command are used to create an event trigger instance, which is
1168 * added to the list of trigger instances associated with that trace
1169 * event. When the event is hit, the set of triggers associated with
1170 * that event is invoked.
1172 * The data members in this structure provide per-event command data
1173 * for various event commands.
1175 * All the data members below, except for @post_trigger, must be set
1176 * for each event command.
1178 * @name: The unique name that identifies the event command. This is
1179 * the name used when setting triggers via trigger files.
1181 * @trigger_type: A unique id that identifies the event command
1182 * 'type'. This value has two purposes, the first to ensure that
1183 * only one trigger of the same type can be set at a given time
1184 * for a particular event e.g. it doesn't make sense to have both
1185 * a traceon and traceoff trigger attached to a single event at
1186 * the same time, so traceon and traceoff have the same type
1187 * though they have different names. The @trigger_type value is
1188 * also used as a bit value for deferring the actual trigger
1189 * action until after the current event is finished. Some
1190 * commands need to do this if they themselves log to the trace
1191 * buffer (see the @post_trigger() member below). @trigger_type
1192 * values are defined by adding new values to the trigger_type
1193 * enum in include/linux/ftrace_event.h.
1195 * @post_trigger: A flag that says whether or not this command needs
1196 * to have its action delayed until after the current event has
1197 * been closed. Some triggers need to avoid being invoked while
1198 * an event is currently in the process of being logged, since
1199 * the trigger may itself log data into the trace buffer. Thus
1200 * we make sure the current event is committed before invoking
1201 * those triggers. To do that, the trigger invocation is split
1202 * in two - the first part checks the filter using the current
1203 * trace record; if a command has the @post_trigger flag set, it
1204 * sets a bit for itself in the return value, otherwise it
1205 * directly invokes the trigger. Once all commands have been
1206 * either invoked or set their return flag, the current record is
1207 * either committed or discarded. At that point, if any commands
1208 * have deferred their triggers, those commands are finally
1209 * invoked following the close of the current event. In other
1210 * words, if the event_trigger_ops @func() probe implementation
1211 * itself logs to the trace buffer, this flag should be set,
1212 * otherwise it can be left unspecified.
1214 * All the methods below, except for @set_filter(), must be
1217 * @func: The callback function responsible for parsing and
1218 * registering the trigger written to the 'trigger' file by the
1219 * user. It allocates the trigger instance and registers it with
1220 * the appropriate trace event. It makes use of the other
1221 * event_command callback functions to orchestrate this, and is
1222 * usually implemented by the generic utility function
1223 * @event_trigger_callback() (see trace_event_triggers.c).
1225 * @reg: Adds the trigger to the list of triggers associated with the
1226 * event, and enables the event trigger itself, after
1227 * initializing it (via the event_trigger_ops @init() function).
1228 * This is also where commands can use the @trigger_type value to
1229 * make the decision as to whether or not multiple instances of
1230 * the trigger should be allowed. This is usually implemented by
1231 * the generic utility function @register_trigger() (see
1232 * trace_event_triggers.c).
1234 * @unreg: Removes the trigger from the list of triggers associated
1235 * with the event, and disables the event trigger itself, after
1236 * initializing it (via the event_trigger_ops @free() function).
1237 * This is usually implemented by the generic utility function
1238 * @unregister_trigger() (see trace_event_triggers.c).
1240 * @set_filter: An optional function called to parse and set a filter
1241 * for the trigger. If no @set_filter() method is set for the
1242 * event command, filters set by the user for the command will be
1243 * ignored. This is usually implemented by the generic utility
1244 * function @set_trigger_filter() (see trace_event_triggers.c).
1246 * @get_trigger_ops: The callback function invoked to retrieve the
1247 * event_trigger_ops implementation associated with the command.
1249 struct event_command
{
1250 struct list_head list
;
1252 enum event_trigger_type trigger_type
;
1254 int (*func
)(struct event_command
*cmd_ops
,
1255 struct ftrace_event_file
*file
,
1256 char *glob
, char *cmd
, char *params
);
1257 int (*reg
)(char *glob
,
1258 struct event_trigger_ops
*ops
,
1259 struct event_trigger_data
*data
,
1260 struct ftrace_event_file
*file
);
1261 void (*unreg
)(char *glob
,
1262 struct event_trigger_ops
*ops
,
1263 struct event_trigger_data
*data
,
1264 struct ftrace_event_file
*file
);
1265 int (*set_filter
)(char *filter_str
,
1266 struct event_trigger_data
*data
,
1267 struct ftrace_event_file
*file
);
1268 struct event_trigger_ops
*(*get_trigger_ops
)(char *cmd
, char *param
);
1271 extern int trace_event_enable_disable(struct ftrace_event_file
*file
,
1272 int enable
, int soft_disable
);
1273 extern int tracing_alloc_snapshot(void);
1275 extern const char *__start___trace_bprintk_fmt
[];
1276 extern const char *__stop___trace_bprintk_fmt
[];
1278 extern const char *__start___tracepoint_str
[];
1279 extern const char *__stop___tracepoint_str
[];
1281 void trace_printk_init_buffers(void);
1282 void trace_printk_start_comm(void);
1283 int trace_keep_overwrite(struct tracer
*tracer
, u32 mask
, int set
);
1284 int set_tracer_flag(struct trace_array
*tr
, unsigned int mask
, int enabled
);
1287 * Normal trace_printk() and friends allocates special buffers
1288 * to do the manipulation, as well as saves the print formats
1289 * into sections to display. But the trace infrastructure wants
1290 * to use these without the added overhead at the price of being
1291 * a bit slower (used mainly for warnings, where we don't care
1292 * about performance). The internal_trace_puts() is for such
1295 #define internal_trace_puts(str) __trace_puts(_THIS_IP_, str, strlen(str))
1298 #define FTRACE_ENTRY(call, struct_name, id, tstruct, print, filter) \
1299 extern struct ftrace_event_call \
1300 __aligned(4) event_##call;
1301 #undef FTRACE_ENTRY_DUP
1302 #define FTRACE_ENTRY_DUP(call, struct_name, id, tstruct, print, filter) \
1303 FTRACE_ENTRY(call, struct_name, id, PARAMS(tstruct), PARAMS(print), \
1305 #include "trace_entries.h"
1307 #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_FUNCTION_TRACER)
1308 int perf_ftrace_event_register(struct ftrace_event_call
*call
,
1309 enum trace_reg type
, void *data
);
1311 #define perf_ftrace_event_register NULL
1314 #endif /* _LINUX_KERNEL_TRACE_H */