blob: 06c795b536c2b20db94a46de33e5834462a897d5 [file] [log] [blame]
Steven Rostedt97f20252009-04-13 11:20:49 -04001#ifndef _LINUX_FTRACE_EVENT_H
2#define _LINUX_FTRACE_EVENT_H
3
4#include <linux/trace_seq.h>
5#include <linux/ring_buffer.h>
Steven Rostedtbe74b73a2009-05-26 20:25:22 +02006#include <linux/percpu.h>
Steven Rostedt97f20252009-04-13 11:20:49 -04007
8struct trace_array;
9struct tracer;
Steven Rostedt6d723732009-04-10 14:53:50 -040010struct dentry;
Steven Rostedt97f20252009-04-13 11:20:49 -040011
Steven Rostedtbe74b73a2009-05-26 20:25:22 +020012DECLARE_PER_CPU(struct trace_seq, ftrace_event_seq);
13
14struct trace_print_flags {
15 unsigned long mask;
16 const char *name;
17};
18
19const char *ftrace_print_flags_seq(struct trace_seq *p, const char *delim,
20 unsigned long flags,
21 const struct trace_print_flags *flag_array);
22
Steven Rostedt0f4fc292009-05-20 19:21:47 -040023const char *ftrace_print_symbols_seq(struct trace_seq *p, unsigned long val,
24 const struct trace_print_flags *symbol_array);
25
Steven Rostedt97f20252009-04-13 11:20:49 -040026/*
27 * The trace entry - the most basic unit of tracing. This is what
28 * is printed in the end as a single line in the trace output, such as:
29 *
30 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
31 */
32struct trace_entry {
Steven Rostedt89ec0de2009-03-26 11:03:29 -040033 unsigned short type;
Steven Rostedt97f20252009-04-13 11:20:49 -040034 unsigned char flags;
35 unsigned char preempt_count;
36 int pid;
Steven Rostedt97f20252009-04-13 11:20:49 -040037};
38
Steven Rostedt89ec0de2009-03-26 11:03:29 -040039#define FTRACE_MAX_EVENT \
40 ((1 << (sizeof(((struct trace_entry *)0)->type) * 8)) - 1)
41
Steven Rostedt97f20252009-04-13 11:20:49 -040042/*
43 * Trace iterator - used by printout routines who present trace
44 * results to users and which routines might sleep, etc:
45 */
46struct trace_iterator {
47 struct trace_array *tr;
48 struct tracer *trace;
49 void *private;
50 int cpu_file;
51 struct mutex mutex;
52 struct ring_buffer_iter *buffer_iter[NR_CPUS];
Steven Rostedt112f38a72009-06-01 15:16:05 -040053 unsigned long iter_flags;
Steven Rostedt97f20252009-04-13 11:20:49 -040054
55 /* The below is zeroed out in pipe_read */
56 struct trace_seq seq;
57 struct trace_entry *ent;
58 int cpu;
59 u64 ts;
60
Steven Rostedt97f20252009-04-13 11:20:49 -040061 loff_t pos;
62 long idx;
63
64 cpumask_var_t started;
65};
66
67
68typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
69 int flags);
70struct trace_event {
71 struct hlist_node node;
Steven Rostedt060fa5c82009-04-24 12:20:52 -040072 struct list_head list;
Steven Rostedt97f20252009-04-13 11:20:49 -040073 int type;
74 trace_print_func trace;
75 trace_print_func raw;
76 trace_print_func hex;
77 trace_print_func binary;
78};
79
80extern int register_ftrace_event(struct trace_event *event);
81extern int unregister_ftrace_event(struct trace_event *event);
82
83/* Return values for print_line callback */
84enum print_line_t {
85 TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */
86 TRACE_TYPE_HANDLED = 1,
87 TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */
88 TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */
89};
90
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +020091void tracing_generic_entry_update(struct trace_entry *entry,
92 unsigned long flags,
93 int pc);
Steven Rostedt97f20252009-04-13 11:20:49 -040094struct ring_buffer_event *
Steven Rostedte77405a2009-09-02 14:17:06 -040095trace_current_buffer_lock_reserve(struct ring_buffer **current_buffer,
96 int type, unsigned long len,
Steven Rostedt97f20252009-04-13 11:20:49 -040097 unsigned long flags, int pc);
Steven Rostedte77405a2009-09-02 14:17:06 -040098void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
99 struct ring_buffer_event *event,
Steven Rostedt97f20252009-04-13 11:20:49 -0400100 unsigned long flags, int pc);
Steven Rostedte77405a2009-09-02 14:17:06 -0400101void trace_nowake_buffer_unlock_commit(struct ring_buffer *buffer,
102 struct ring_buffer_event *event,
Steven Rostedt97f20252009-04-13 11:20:49 -0400103 unsigned long flags, int pc);
Steven Rostedte77405a2009-09-02 14:17:06 -0400104void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
105 struct ring_buffer_event *event);
Steven Rostedt97f20252009-04-13 11:20:49 -0400106
107void tracing_record_cmdline(struct task_struct *tsk);
108
Li Zefan1f9963c2009-07-20 10:20:53 +0800109struct event_filter;
110
Steven Rostedt97f20252009-04-13 11:20:49 -0400111struct ftrace_event_call {
Steven Rostedta59fd602009-04-10 13:52:20 -0400112 struct list_head list;
Steven Rostedt97f20252009-04-13 11:20:49 -0400113 char *name;
114 char *system;
115 struct dentry *dir;
Steven Rostedt6d723732009-04-10 14:53:50 -0400116 struct trace_event *event;
Steven Rostedt97f20252009-04-13 11:20:49 -0400117 int enabled;
Jason Baron69fd4f02009-08-10 16:52:44 -0400118 int (*regfunc)(void *);
119 void (*unregfunc)(void *);
Steven Rostedt97f20252009-04-13 11:20:49 -0400120 int id;
121 int (*raw_init)(void);
Frederic Weisbeckere8f9f4d2009-08-11 17:42:52 +0200122 int (*show_format)(struct ftrace_event_call *call,
123 struct trace_seq *s);
Li Zefan14be96c2009-08-19 15:53:52 +0800124 int (*define_fields)(struct ftrace_event_call *);
Steven Rostedt97f20252009-04-13 11:20:49 -0400125 struct list_head fields;
Tom Zanussi30e673b2009-04-28 03:04:47 -0500126 int filter_active;
Li Zefan1f9963c2009-07-20 10:20:53 +0800127 struct event_filter *filter;
Steven Rostedt6d723732009-04-10 14:53:50 -0400128 void *mod;
Jason Baron69fd4f02009-08-10 16:52:44 -0400129 void *data;
Steven Rostedt97f20252009-04-13 11:20:49 -0400130
Peter Zijlstraaf6af302009-08-05 20:41:04 +0200131 atomic_t profile_count;
132 int (*profile_enable)(struct ftrace_event_call *);
133 void (*profile_disable)(struct ftrace_event_call *);
Steven Rostedt97f20252009-04-13 11:20:49 -0400134};
135
Tom Zanussi8b372562009-04-28 03:04:59 -0500136#define MAX_FILTER_PRED 32
Steven Rostedt97f20252009-04-13 11:20:49 -0400137#define MAX_FILTER_STR_VAL 128
138
Li Zefan2df75e42009-05-06 10:33:04 +0800139extern void destroy_preds(struct ftrace_event_call *call);
Steven Rostedt97f20252009-04-13 11:20:49 -0400140extern int filter_match_preds(struct ftrace_event_call *call, void *rec);
Steven Rostedte77405a2009-09-02 14:17:06 -0400141extern int filter_current_check_discard(struct ring_buffer *buffer,
142 struct ftrace_event_call *call,
Steven Rostedt97f20252009-04-13 11:20:49 -0400143 void *rec,
144 struct ring_buffer_event *event);
145
Li Zefan43b51ea2009-08-07 10:33:22 +0800146enum {
147 FILTER_OTHER = 0,
148 FILTER_STATIC_STRING,
149 FILTER_DYN_STRING,
Li Zefan87a342f2009-08-07 10:33:43 +0800150 FILTER_PTR_STRING,
Li Zefan43b51ea2009-08-07 10:33:22 +0800151};
152
Li Zefan540b7b82009-08-19 15:54:51 +0800153extern int trace_define_field(struct ftrace_event_call *call,
154 const char *type, const char *name,
Li Zefan43b51ea2009-08-07 10:33:22 +0800155 int offset, int size, int is_signed,
156 int filter_type);
Li Zefane647d6b2009-08-19 15:54:32 +0800157extern int trace_define_common_fields(struct ftrace_event_call *call);
Steven Rostedt97f20252009-04-13 11:20:49 -0400158
Tom Zanussia118e4d2009-04-28 03:04:53 -0500159#define is_signed_type(type) (((type)(-1)) < 0)
Steven Rostedt97f20252009-04-13 11:20:49 -0400160
Steven Rostedt4671c792009-05-08 16:27:41 -0400161int trace_set_clr_event(const char *system, const char *event, int set);
162
Steven Rostedt97f20252009-04-13 11:20:49 -0400163/*
164 * The double __builtin_constant_p is because gcc will give us an error
165 * if we try to allocate the static variable to fmt if it is not a
166 * constant. Even with the outer if statement optimizing out.
167 */
168#define event_trace_printk(ip, fmt, args...) \
169do { \
170 __trace_printk_check_format(fmt, ##args); \
171 tracing_record_cmdline(current); \
172 if (__builtin_constant_p(fmt)) { \
173 static const char *trace_printk_fmt \
174 __attribute__((section("__trace_printk_fmt"))) = \
175 __builtin_constant_p(fmt) ? fmt : NULL; \
176 \
177 __trace_bprintk(ip, trace_printk_fmt, ##args); \
178 } else \
179 __trace_printk(ip, fmt, ##args); \
180} while (0)
181
Steven Rostedt97f20252009-04-13 11:20:49 -0400182#endif /* _LINUX_FTRACE_EVENT_H */