blob: 4ec5e67e18cfda40ad34a52187a3ff288682f6be [file] [log] [blame]
Steven Rostedt97f20252009-04-13 11:20:49 -04001#ifndef _LINUX_FTRACE_EVENT_H
2#define _LINUX_FTRACE_EVENT_H
3
Steven Rostedt97f20252009-04-13 11:20:49 -04004#include <linux/ring_buffer.h>
Steven Rostedt16bb8eb2009-09-12 19:04:54 -04005#include <linux/trace_seq.h>
Steven Rostedtbe74b732009-05-26 20:25:22 +02006#include <linux/percpu.h>
Frederic Weisbecker20ab4422009-09-18 06:10:28 +02007#include <linux/hardirq.h>
Steven Rostedt97f20252009-04-13 11:20:49 -04008
9struct trace_array;
10struct tracer;
Steven Rostedt6d723732009-04-10 14:53:50 -040011struct dentry;
Steven Rostedt97f20252009-04-13 11:20:49 -040012
Steven Rostedtbe74b732009-05-26 20:25:22 +020013DECLARE_PER_CPU(struct trace_seq, ftrace_event_seq);
14
15struct trace_print_flags {
16 unsigned long mask;
17 const char *name;
18};
19
20const char *ftrace_print_flags_seq(struct trace_seq *p, const char *delim,
21 unsigned long flags,
22 const struct trace_print_flags *flag_array);
23
Steven Rostedt0f4fc292009-05-20 19:21:47 -040024const char *ftrace_print_symbols_seq(struct trace_seq *p, unsigned long val,
25 const struct trace_print_flags *symbol_array);
26
Steven Rostedt97f20252009-04-13 11:20:49 -040027/*
28 * The trace entry - the most basic unit of tracing. This is what
29 * is printed in the end as a single line in the trace output, such as:
30 *
31 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
32 */
33struct trace_entry {
Steven Rostedt89ec0de2009-03-26 11:03:29 -040034 unsigned short type;
Steven Rostedt97f20252009-04-13 11:20:49 -040035 unsigned char flags;
36 unsigned char preempt_count;
37 int pid;
Steven Rostedt637e7e82009-09-11 13:55:35 -040038 int lock_depth;
Steven Rostedt97f20252009-04-13 11:20:49 -040039};
40
Steven Rostedt89ec0de2009-03-26 11:03:29 -040041#define FTRACE_MAX_EVENT \
42 ((1 << (sizeof(((struct trace_entry *)0)->type) * 8)) - 1)
43
Steven Rostedt97f20252009-04-13 11:20:49 -040044/*
45 * Trace iterator - used by printout routines who present trace
46 * results to users and which routines might sleep, etc:
47 */
48struct trace_iterator {
49 struct trace_array *tr;
50 struct tracer *trace;
51 void *private;
52 int cpu_file;
53 struct mutex mutex;
54 struct ring_buffer_iter *buffer_iter[NR_CPUS];
Steven Rostedt112f38a72009-06-01 15:16:05 -040055 unsigned long iter_flags;
Steven Rostedt97f20252009-04-13 11:20:49 -040056
57 /* The below is zeroed out in pipe_read */
58 struct trace_seq seq;
59 struct trace_entry *ent;
60 int cpu;
61 u64 ts;
62
Steven Rostedt97f20252009-04-13 11:20:49 -040063 loff_t pos;
64 long idx;
65
66 cpumask_var_t started;
67};
68
69
70typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
71 int flags);
72struct trace_event {
73 struct hlist_node node;
Steven Rostedt060fa5c82009-04-24 12:20:52 -040074 struct list_head list;
Steven Rostedt97f20252009-04-13 11:20:49 -040075 int type;
76 trace_print_func trace;
77 trace_print_func raw;
78 trace_print_func hex;
79 trace_print_func binary;
80};
81
82extern int register_ftrace_event(struct trace_event *event);
83extern int unregister_ftrace_event(struct trace_event *event);
84
85/* Return values for print_line callback */
86enum print_line_t {
87 TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */
88 TRACE_TYPE_HANDLED = 1,
89 TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */
90 TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */
91};
92
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +020093void tracing_generic_entry_update(struct trace_entry *entry,
94 unsigned long flags,
95 int pc);
Steven Rostedt97f20252009-04-13 11:20:49 -040096struct ring_buffer_event *
Steven Rostedte77405a2009-09-02 14:17:06 -040097trace_current_buffer_lock_reserve(struct ring_buffer **current_buffer,
98 int type, unsigned long len,
Steven Rostedt97f20252009-04-13 11:20:49 -040099 unsigned long flags, int pc);
Steven Rostedte77405a2009-09-02 14:17:06 -0400100void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
101 struct ring_buffer_event *event,
Steven Rostedt97f20252009-04-13 11:20:49 -0400102 unsigned long flags, int pc);
Steven Rostedte77405a2009-09-02 14:17:06 -0400103void trace_nowake_buffer_unlock_commit(struct ring_buffer *buffer,
104 struct ring_buffer_event *event,
Steven Rostedt97f20252009-04-13 11:20:49 -0400105 unsigned long flags, int pc);
Steven Rostedte77405a2009-09-02 14:17:06 -0400106void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
107 struct ring_buffer_event *event);
Steven Rostedt97f20252009-04-13 11:20:49 -0400108
109void tracing_record_cmdline(struct task_struct *tsk);
110
Li Zefan1f9963c2009-07-20 10:20:53 +0800111struct event_filter;
112
Steven Rostedt97f20252009-04-13 11:20:49 -0400113struct ftrace_event_call {
Steven Rostedta59fd602009-04-10 13:52:20 -0400114 struct list_head list;
Steven Rostedt97f20252009-04-13 11:20:49 -0400115 char *name;
116 char *system;
117 struct dentry *dir;
Steven Rostedt6d723732009-04-10 14:53:50 -0400118 struct trace_event *event;
Steven Rostedt97f20252009-04-13 11:20:49 -0400119 int enabled;
Jason Baron69fd4f02009-08-10 16:52:44 -0400120 int (*regfunc)(void *);
121 void (*unregfunc)(void *);
Steven Rostedt97f20252009-04-13 11:20:49 -0400122 int id;
123 int (*raw_init)(void);
Frederic Weisbeckere8f9f4d2009-08-11 17:42:52 +0200124 int (*show_format)(struct ftrace_event_call *call,
125 struct trace_seq *s);
Li Zefan14be96c2009-08-19 15:53:52 +0800126 int (*define_fields)(struct ftrace_event_call *);
Steven Rostedt97f20252009-04-13 11:20:49 -0400127 struct list_head fields;
Tom Zanussi30e673b2009-04-28 03:04:47 -0500128 int filter_active;
Li Zefan1f9963c2009-07-20 10:20:53 +0800129 struct event_filter *filter;
Steven Rostedt6d723732009-04-10 14:53:50 -0400130 void *mod;
Jason Baron69fd4f02009-08-10 16:52:44 -0400131 void *data;
Steven Rostedt97f20252009-04-13 11:20:49 -0400132
Peter Zijlstraaf6af302009-08-05 20:41:04 +0200133 atomic_t profile_count;
Frederic Weisbeckere5e25cf2009-09-18 00:54:43 +0200134 int (*profile_enable)(void);
135 void (*profile_disable)(void);
Steven Rostedt97f20252009-04-13 11:20:49 -0400136};
137
Frederic Weisbecker20ab4422009-09-18 06:10:28 +0200138#define FTRACE_MAX_PROFILE_SIZE 2048
139
140extern char *trace_profile_buf;
141extern char *trace_profile_buf_nmi;
142
Tom Zanussi8b372562009-04-28 03:04:59 -0500143#define MAX_FILTER_PRED 32
Steven Rostedt16bb8eb2009-09-12 19:04:54 -0400144#define MAX_FILTER_STR_VAL 256 /* Should handle KSYM_SYMBOL_LEN */
Steven Rostedt97f20252009-04-13 11:20:49 -0400145
Li Zefan2df75e42009-05-06 10:33:04 +0800146extern void destroy_preds(struct ftrace_event_call *call);
Steven Rostedt97f20252009-04-13 11:20:49 -0400147extern int filter_match_preds(struct ftrace_event_call *call, void *rec);
Steven Rostedte77405a2009-09-02 14:17:06 -0400148extern int filter_current_check_discard(struct ring_buffer *buffer,
149 struct ftrace_event_call *call,
Steven Rostedt97f20252009-04-13 11:20:49 -0400150 void *rec,
151 struct ring_buffer_event *event);
152
Li Zefan43b51ea2009-08-07 10:33:22 +0800153enum {
154 FILTER_OTHER = 0,
155 FILTER_STATIC_STRING,
156 FILTER_DYN_STRING,
Li Zefan87a342f2009-08-07 10:33:43 +0800157 FILTER_PTR_STRING,
Li Zefan43b51ea2009-08-07 10:33:22 +0800158};
159
Li Zefan540b7b82009-08-19 15:54:51 +0800160extern int trace_define_field(struct ftrace_event_call *call,
161 const char *type, const char *name,
Li Zefan43b51ea2009-08-07 10:33:22 +0800162 int offset, int size, int is_signed,
163 int filter_type);
Li Zefane647d6b2009-08-19 15:54:32 +0800164extern int trace_define_common_fields(struct ftrace_event_call *call);
Steven Rostedt97f20252009-04-13 11:20:49 -0400165
Tom Zanussia118e4d2009-04-28 03:04:53 -0500166#define is_signed_type(type) (((type)(-1)) < 0)
Steven Rostedt97f20252009-04-13 11:20:49 -0400167
Steven Rostedt4671c792009-05-08 16:27:41 -0400168int trace_set_clr_event(const char *system, const char *event, int set);
169
Steven Rostedt97f20252009-04-13 11:20:49 -0400170/*
171 * The double __builtin_constant_p is because gcc will give us an error
172 * if we try to allocate the static variable to fmt if it is not a
173 * constant. Even with the outer if statement optimizing out.
174 */
175#define event_trace_printk(ip, fmt, args...) \
176do { \
177 __trace_printk_check_format(fmt, ##args); \
178 tracing_record_cmdline(current); \
179 if (__builtin_constant_p(fmt)) { \
180 static const char *trace_printk_fmt \
181 __attribute__((section("__trace_printk_fmt"))) = \
182 __builtin_constant_p(fmt) ? fmt : NULL; \
183 \
184 __trace_bprintk(ip, trace_printk_fmt, ##args); \
185 } else \
186 __trace_printk(ip, fmt, ##args); \
187} while (0)
188
Steven Rostedt97f20252009-04-13 11:20:49 -0400189#endif /* _LINUX_FTRACE_EVENT_H */