blob: 404603720650dac1abd528eb76923bc89be872ed [file] [log] [blame]
Tom Zanussibac5fb92013-10-24 08:59:29 -05001
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -04002#ifndef _LINUX_TRACE_EVENT_H
3#define _LINUX_TRACE_EVENT_H
Steven Rostedt97f20252009-04-13 11:20:49 -04004
Steven Rostedt97f20252009-04-13 11:20:49 -04005#include <linux/ring_buffer.h>
Steven Rostedt16bb8eb2009-09-12 19:04:54 -04006#include <linux/trace_seq.h>
Steven Rostedtbe74b732009-05-26 20:25:22 +02007#include <linux/percpu.h>
Frederic Weisbecker20ab44252009-09-18 06:10:28 +02008#include <linux/hardirq.h>
Xiao Guangrong430ad5a2010-01-28 09:32:29 +08009#include <linux/perf_event.h>
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -040010#include <linux/tracepoint.h>
Steven Rostedt97f20252009-04-13 11:20:49 -040011
12struct trace_array;
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -050013struct trace_buffer;
Steven Rostedt97f20252009-04-13 11:20:49 -040014struct tracer;
Steven Rostedt6d723732009-04-10 14:53:50 -040015struct dentry;
Alexei Starovoitov25415172015-03-25 12:49:20 -070016struct bpf_prog;
Steven Rostedt97f20252009-04-13 11:20:49 -040017
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040018const char *trace_print_flags_seq(struct trace_seq *p, const char *delim,
19 unsigned long flags,
20 const struct trace_print_flags *flag_array);
Steven Rostedtbe74b732009-05-26 20:25:22 +020021
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040022const char *trace_print_symbols_seq(struct trace_seq *p, unsigned long val,
23 const struct trace_print_flags *symbol_array);
Steven Rostedt0f4fc292009-05-20 19:21:47 -040024
liubo2fc1b6f2011-04-19 09:35:28 +080025#if BITS_PER_LONG == 32
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040026const char *trace_print_symbols_seq_u64(struct trace_seq *p,
27 unsigned long long val,
28 const struct trace_print_flags_u64
liubo2fc1b6f2011-04-19 09:35:28 +080029 *symbol_array);
30#endif
31
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040032const char *trace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr,
33 unsigned int bitmask_size);
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -040034
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040035const char *trace_print_hex_seq(struct trace_seq *p,
36 const unsigned char *buf, int len);
Kei Tokunaga5a2e3992010-04-01 20:40:58 +090037
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040038const char *trace_print_array_seq(struct trace_seq *p,
Alex Bennéeac01ce12015-04-29 16:18:46 +010039 const void *buf, int count,
Dave Martin6ea22482015-01-28 12:48:53 +000040 size_t el_size);
41
Li Zefanf71130d2013-02-21 10:32:38 +080042struct trace_iterator;
43struct trace_event;
44
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -040045int trace_raw_output_prep(struct trace_iterator *iter,
46 struct trace_event *event);
Li Zefanf71130d2013-02-21 10:32:38 +080047
Steven Rostedt97f20252009-04-13 11:20:49 -040048/*
49 * The trace entry - the most basic unit of tracing. This is what
50 * is printed in the end as a single line in the trace output, such as:
51 *
52 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
53 */
54struct trace_entry {
Steven Rostedt89ec0de2009-03-26 11:03:29 -040055 unsigned short type;
Steven Rostedt97f20252009-04-13 11:20:49 -040056 unsigned char flags;
57 unsigned char preempt_count;
58 int pid;
Steven Rostedt97f20252009-04-13 11:20:49 -040059};
60
Steven Rostedt (Red Hat)609a7402015-05-13 13:44:36 -040061#define TRACE_EVENT_TYPE_MAX \
Steven Rostedt89ec0de2009-03-26 11:03:29 -040062 ((1 << (sizeof(((struct trace_entry *)0)->type) * 8)) - 1)
63
Steven Rostedt97f20252009-04-13 11:20:49 -040064/*
65 * Trace iterator - used by printout routines who present trace
66 * results to users and which routines might sleep, etc:
67 */
68struct trace_iterator {
69 struct trace_array *tr;
70 struct tracer *trace;
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -050071 struct trace_buffer *trace_buffer;
Steven Rostedt97f20252009-04-13 11:20:49 -040072 void *private;
73 int cpu_file;
74 struct mutex mutex;
Steven Rostedt6d158a82012-06-27 20:46:14 -040075 struct ring_buffer_iter **buffer_iter;
Steven Rostedt112f38a72009-06-01 15:16:05 -040076 unsigned long iter_flags;
Steven Rostedt97f20252009-04-13 11:20:49 -040077
Lai Jiangshanbc289ae2010-06-03 18:26:24 +080078 /* trace_seq for __print_flags() and __print_symbolic() etc. */
79 struct trace_seq tmp_seq;
80
Andrew Vagined5467d2013-08-02 21:16:43 +040081 cpumask_var_t started;
82
83 /* it's true when current open file is snapshot */
84 bool snapshot;
85
Steven Rostedt97f20252009-04-13 11:20:49 -040086 /* The below is zeroed out in pipe_read */
87 struct trace_seq seq;
88 struct trace_entry *ent;
Steven Rostedtbc21b472010-03-31 19:49:26 -040089 unsigned long lost_events;
Steven Rostedta63ce5b2009-12-07 09:11:39 -050090 int leftover;
Steven Rostedt4a9bd3f2011-07-14 16:36:53 -040091 int ent_size;
Steven Rostedt97f20252009-04-13 11:20:49 -040092 int cpu;
93 u64 ts;
94
Steven Rostedt97f20252009-04-13 11:20:49 -040095 loff_t pos;
96 long idx;
97
Andrew Vagined5467d2013-08-02 21:16:43 +040098 /* All new field here will be zeroed out in pipe_read */
Steven Rostedt97f20252009-04-13 11:20:49 -040099};
100
David Sharp8be07092012-11-13 12:18:22 -0800101enum trace_iter_flags {
102 TRACE_FILE_LAT_FMT = 1,
103 TRACE_FILE_ANNOTATE = 2,
104 TRACE_FILE_TIME_IN_NS = 4,
105};
106
Steven Rostedt97f20252009-04-13 11:20:49 -0400107
108typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
Steven Rostedta9a57762010-04-22 18:46:14 -0400109 int flags, struct trace_event *event);
110
111struct trace_event_functions {
Steven Rostedt97f20252009-04-13 11:20:49 -0400112 trace_print_func trace;
113 trace_print_func raw;
114 trace_print_func hex;
115 trace_print_func binary;
116};
117
Steven Rostedta9a57762010-04-22 18:46:14 -0400118struct trace_event {
119 struct hlist_node node;
120 struct list_head list;
121 int type;
122 struct trace_event_functions *funcs;
123};
124
Steven Rostedt (Red Hat)9023c932015-05-05 09:39:12 -0400125extern int register_trace_event(struct trace_event *event);
126extern int unregister_trace_event(struct trace_event *event);
Steven Rostedt97f20252009-04-13 11:20:49 -0400127
128/* Return values for print_line callback */
129enum print_line_t {
130 TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */
131 TRACE_TYPE_HANDLED = 1,
132 TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */
133 TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */
134};
135
Steven Rostedt (Red Hat)19a7fe22014-11-12 10:29:54 -0500136/*
137 * Several functions return TRACE_TYPE_PARTIAL_LINE if the trace_seq
138 * overflowed, and TRACE_TYPE_HANDLED otherwise. This helper function
139 * simplifies those functions and keeps them in sync.
140 */
141static inline enum print_line_t trace_handle_return(struct trace_seq *s)
142{
143 return trace_seq_has_overflowed(s) ?
144 TRACE_TYPE_PARTIAL_LINE : TRACE_TYPE_HANDLED;
145}
146
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200147void tracing_generic_entry_update(struct trace_entry *entry,
148 unsigned long flags,
149 int pc);
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400150struct trace_event_file;
Steven Rostedtccb469a2012-08-02 10:32:10 -0400151
152struct ring_buffer_event *
153trace_event_buffer_lock_reserve(struct ring_buffer **current_buffer,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400154 struct trace_event_file *trace_file,
Steven Rostedtccb469a2012-08-02 10:32:10 -0400155 int type, unsigned long len,
156 unsigned long flags, int pc);
Steven Rostedt97f20252009-04-13 11:20:49 -0400157struct ring_buffer_event *
Steven Rostedte77405a2009-09-02 14:17:06 -0400158trace_current_buffer_lock_reserve(struct ring_buffer **current_buffer,
159 int type, unsigned long len,
Steven Rostedt97f20252009-04-13 11:20:49 -0400160 unsigned long flags, int pc);
Steven Rostedt (Red Hat)b7f0c952015-09-25 17:38:44 -0400161void trace_buffer_unlock_commit(struct trace_array *tr,
162 struct ring_buffer *buffer,
Steven Rostedt0d5c6e12012-11-01 20:54:21 -0400163 struct ring_buffer_event *event,
164 unsigned long flags, int pc);
Steven Rostedt (Red Hat)b7f0c952015-09-25 17:38:44 -0400165void trace_buffer_unlock_commit_regs(struct trace_array *tr,
166 struct ring_buffer *buffer,
Steven Rostedt0d5c6e12012-11-01 20:54:21 -0400167 struct ring_buffer_event *event,
168 unsigned long flags, int pc,
169 struct pt_regs *regs);
Steven Rostedte77405a2009-09-02 14:17:06 -0400170void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
171 struct ring_buffer_event *event);
Steven Rostedt97f20252009-04-13 11:20:49 -0400172
173void tracing_record_cmdline(struct task_struct *tsk);
174
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400175int trace_output_call(struct trace_iterator *iter, char *name, char *fmt, ...);
Steven Rostedt1d6bae92012-08-09 19:16:14 -0400176
Li Zefan1f9963c2009-07-20 10:20:53 +0800177struct event_filter;
178
Steven Rostedt22392912010-04-21 12:27:06 -0400179enum trace_reg {
180 TRACE_REG_REGISTER,
181 TRACE_REG_UNREGISTER,
Jiri Olsa37d73992012-03-14 00:03:02 +0100182#ifdef CONFIG_PERF_EVENTS
Steven Rostedt22392912010-04-21 12:27:06 -0400183 TRACE_REG_PERF_REGISTER,
184 TRACE_REG_PERF_UNREGISTER,
Jiri Olsaceec0b62012-02-15 15:51:49 +0100185 TRACE_REG_PERF_OPEN,
186 TRACE_REG_PERF_CLOSE,
Jiri Olsa489c75c2012-02-15 15:51:50 +0100187 TRACE_REG_PERF_ADD,
188 TRACE_REG_PERF_DEL,
Jiri Olsa37d73992012-03-14 00:03:02 +0100189#endif
Steven Rostedt22392912010-04-21 12:27:06 -0400190};
191
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400192struct trace_event_call;
Steven Rostedt22392912010-04-21 12:27:06 -0400193
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400194struct trace_event_class {
Steven Rostedt (Red Hat)acd388f2015-03-31 14:37:12 -0400195 const char *system;
Steven Rostedt22392912010-04-21 12:27:06 -0400196 void *probe;
197#ifdef CONFIG_PERF_EVENTS
198 void *perf_probe;
199#endif
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400200 int (*reg)(struct trace_event_call *event,
Jiri Olsaceec0b62012-02-15 15:51:49 +0100201 enum trace_reg type, void *data);
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400202 int (*define_fields)(struct trace_event_call *);
203 struct list_head *(*get_fields)(struct trace_event_call *);
Steven Rostedt2e33af02010-04-22 10:35:55 -0400204 struct list_head fields;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400205 int (*raw_init)(struct trace_event_call *);
Steven Rostedt8f082012010-04-20 10:47:33 -0400206};
207
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400208extern int trace_event_reg(struct trace_event_call *event,
Jiri Olsaceec0b62012-02-15 15:51:49 +0100209 enum trace_reg type, void *data);
Steven Rostedta1d0ce82010-06-08 11:22:06 -0400210
Steven Rostedt (Red Hat)3f795dc2015-05-05 13:18:46 -0400211struct trace_event_buffer {
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400212 struct ring_buffer *buffer;
213 struct ring_buffer_event *event;
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400214 struct trace_event_file *trace_file;
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400215 void *entry;
216 unsigned long flags;
217 int pc;
218};
219
Steven Rostedt (Red Hat)3f795dc2015-05-05 13:18:46 -0400220void *trace_event_buffer_reserve(struct trace_event_buffer *fbuffer,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400221 struct trace_event_file *trace_file,
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400222 unsigned long len);
223
Steven Rostedt (Red Hat)3f795dc2015-05-05 13:18:46 -0400224void trace_event_buffer_commit(struct trace_event_buffer *fbuffer);
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400225
Steven Rostedt553552c2010-04-23 11:12:36 -0400226enum {
Steven Rostedt553552c2010-04-23 11:12:36 -0400227 TRACE_EVENT_FL_FILTERED_BIT,
Frederic Weisbecker61c32652010-11-18 01:39:17 +0100228 TRACE_EVENT_FL_CAP_ANY_BIT,
Li Zefan27b14b52011-11-01 09:09:35 +0800229 TRACE_EVENT_FL_NO_SET_FILTER_BIT,
Steven Rostedt9b637762012-05-10 15:55:43 -0400230 TRACE_EVENT_FL_IGNORE_ENABLE_BIT,
Steven Rostedt (Red Hat)575380d2013-03-04 23:05:12 -0500231 TRACE_EVENT_FL_WAS_ENABLED_BIT,
Tom Zanussif306cc82013-10-24 08:34:17 -0500232 TRACE_EVENT_FL_USE_CALL_FILTER_BIT,
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400233 TRACE_EVENT_FL_TRACEPOINT_BIT,
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -0700234 TRACE_EVENT_FL_KPROBE_BIT,
Wang Nan04a22fa2015-07-01 02:13:50 +0000235 TRACE_EVENT_FL_UPROBE_BIT,
Steven Rostedt553552c2010-04-23 11:12:36 -0400236};
237
Steven Rostedtae63b312012-05-03 23:09:03 -0400238/*
239 * Event flags:
240 * FILTERED - The event has a filter attached
241 * CAP_ANY - Any user can enable for perf
242 * NO_SET_FILTER - Set when filter has error and is to be ignored
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400243 * IGNORE_ENABLE - For trace internal events, do not enable with debugfs file
Steven Rostedt (Red Hat)575380d2013-03-04 23:05:12 -0500244 * WAS_ENABLED - Set and stays set when an event was ever enabled
245 * (used for module unloading, if a module event is enabled,
246 * it is best to clear the buffers that used it).
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400247 * USE_CALL_FILTER - For trace internal events, don't use file filter
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400248 * TRACEPOINT - Event is a tracepoint
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -0700249 * KPROBE - Event is a kprobe
Wang Nan04a22fa2015-07-01 02:13:50 +0000250 * UPROBE - Event is a uprobe
Steven Rostedtae63b312012-05-03 23:09:03 -0400251 */
Steven Rostedt553552c2010-04-23 11:12:36 -0400252enum {
Li Zefane870e9a2010-07-02 11:07:32 +0800253 TRACE_EVENT_FL_FILTERED = (1 << TRACE_EVENT_FL_FILTERED_BIT),
Frederic Weisbecker61c32652010-11-18 01:39:17 +0100254 TRACE_EVENT_FL_CAP_ANY = (1 << TRACE_EVENT_FL_CAP_ANY_BIT),
Li Zefan27b14b52011-11-01 09:09:35 +0800255 TRACE_EVENT_FL_NO_SET_FILTER = (1 << TRACE_EVENT_FL_NO_SET_FILTER_BIT),
Steven Rostedt9b637762012-05-10 15:55:43 -0400256 TRACE_EVENT_FL_IGNORE_ENABLE = (1 << TRACE_EVENT_FL_IGNORE_ENABLE_BIT),
Steven Rostedt (Red Hat)575380d2013-03-04 23:05:12 -0500257 TRACE_EVENT_FL_WAS_ENABLED = (1 << TRACE_EVENT_FL_WAS_ENABLED_BIT),
Tom Zanussif306cc82013-10-24 08:34:17 -0500258 TRACE_EVENT_FL_USE_CALL_FILTER = (1 << TRACE_EVENT_FL_USE_CALL_FILTER_BIT),
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400259 TRACE_EVENT_FL_TRACEPOINT = (1 << TRACE_EVENT_FL_TRACEPOINT_BIT),
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -0700260 TRACE_EVENT_FL_KPROBE = (1 << TRACE_EVENT_FL_KPROBE_BIT),
Wang Nan04a22fa2015-07-01 02:13:50 +0000261 TRACE_EVENT_FL_UPROBE = (1 << TRACE_EVENT_FL_UPROBE_BIT),
Steven Rostedt553552c2010-04-23 11:12:36 -0400262};
263
Wang Nan04a22fa2015-07-01 02:13:50 +0000264#define TRACE_EVENT_FL_UKPROBE (TRACE_EVENT_FL_KPROBE | TRACE_EVENT_FL_UPROBE)
265
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400266struct trace_event_call {
Steven Rostedta59fd602009-04-10 13:52:20 -0400267 struct list_head list;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400268 struct trace_event_class *class;
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400269 union {
270 char *name;
271 /* Set TRACE_EVENT_FL_TRACEPOINT flag when using "tp" */
272 struct tracepoint *tp;
273 };
Steven Rostedt80decc72010-04-23 10:00:22 -0400274 struct trace_event event;
Steven Rostedt (Red Hat)0c564a52015-03-24 17:58:09 -0400275 char *print_fmt;
Li Zefan1f9963c2009-07-20 10:20:53 +0800276 struct event_filter *filter;
Steven Rostedt6d723732009-04-10 14:53:50 -0400277 void *mod;
Jason Baron69fd4f02009-08-10 16:52:44 -0400278 void *data;
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400279 /*
280 * bit 0: filter_active
281 * bit 1: allow trace by non root (cap any)
282 * bit 2: failed to apply filter
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400283 * bit 3: trace internal event (do not enable)
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400284 * bit 4: Event was enabled by module
Tom Zanussif306cc82013-10-24 08:34:17 -0500285 * bit 5: use call filter rather than file filter
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400286 * bit 6: Event is a tracepoint
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400287 */
Steven Rostedtae63b312012-05-03 23:09:03 -0400288 int flags; /* static flags of different events */
289
290#ifdef CONFIG_PERF_EVENTS
291 int perf_refcount;
292 struct hlist_head __percpu *perf_events;
Alexei Starovoitov25415172015-03-25 12:49:20 -0700293 struct bpf_prog *prog;
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100294
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400295 int (*perf_perm)(struct trace_event_call *,
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100296 struct perf_event *);
Steven Rostedtae63b312012-05-03 23:09:03 -0400297#endif
298};
299
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400300static inline const char *
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400301trace_event_name(struct trace_event_call *call)
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400302{
303 if (call->flags & TRACE_EVENT_FL_TRACEPOINT)
304 return call->tp ? call->tp->name : NULL;
305 else
306 return call->name;
307}
308
Steven Rostedtae63b312012-05-03 23:09:03 -0400309struct trace_array;
Steven Rostedt (Red Hat)7967b3e2015-05-13 14:59:40 -0400310struct trace_subsystem_dir;
Steven Rostedtae63b312012-05-03 23:09:03 -0400311
312enum {
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400313 EVENT_FILE_FL_ENABLED_BIT,
314 EVENT_FILE_FL_RECORDED_CMD_BIT,
315 EVENT_FILE_FL_FILTERED_BIT,
316 EVENT_FILE_FL_NO_SET_FILTER_BIT,
317 EVENT_FILE_FL_SOFT_MODE_BIT,
318 EVENT_FILE_FL_SOFT_DISABLED_BIT,
319 EVENT_FILE_FL_TRIGGER_MODE_BIT,
320 EVENT_FILE_FL_TRIGGER_COND_BIT,
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400321 EVENT_FILE_FL_PID_FILTER_BIT,
Steven Rostedtae63b312012-05-03 23:09:03 -0400322};
323
324/*
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400325 * Event file flags:
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400326 * ENABLED - The event is enabled
Steven Rostedtae63b312012-05-03 23:09:03 -0400327 * RECORDED_CMD - The comms should be recorded at sched_switch
Tom Zanussif306cc82013-10-24 08:34:17 -0500328 * FILTERED - The event has a filter attached
329 * NO_SET_FILTER - Set when filter has error and is to be ignored
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400330 * SOFT_MODE - The event is enabled/disabled by SOFT_DISABLED
331 * SOFT_DISABLED - When set, do not trace the event (even though its
332 * tracepoint may be enabled)
Tom Zanussi85f2b082013-10-24 08:59:24 -0500333 * TRIGGER_MODE - When set, invoke the triggers associated with the event
Tom Zanussibac5fb92013-10-24 08:59:29 -0500334 * TRIGGER_COND - When set, one or more triggers has an associated filter
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400335 * PID_FILTER - When set, the event is filtered based on pid
Steven Rostedtae63b312012-05-03 23:09:03 -0400336 */
337enum {
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400338 EVENT_FILE_FL_ENABLED = (1 << EVENT_FILE_FL_ENABLED_BIT),
339 EVENT_FILE_FL_RECORDED_CMD = (1 << EVENT_FILE_FL_RECORDED_CMD_BIT),
340 EVENT_FILE_FL_FILTERED = (1 << EVENT_FILE_FL_FILTERED_BIT),
341 EVENT_FILE_FL_NO_SET_FILTER = (1 << EVENT_FILE_FL_NO_SET_FILTER_BIT),
342 EVENT_FILE_FL_SOFT_MODE = (1 << EVENT_FILE_FL_SOFT_MODE_BIT),
343 EVENT_FILE_FL_SOFT_DISABLED = (1 << EVENT_FILE_FL_SOFT_DISABLED_BIT),
344 EVENT_FILE_FL_TRIGGER_MODE = (1 << EVENT_FILE_FL_TRIGGER_MODE_BIT),
345 EVENT_FILE_FL_TRIGGER_COND = (1 << EVENT_FILE_FL_TRIGGER_COND_BIT),
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400346 EVENT_FILE_FL_PID_FILTER = (1 << EVENT_FILE_FL_PID_FILTER_BIT),
Steven Rostedtae63b312012-05-03 23:09:03 -0400347};
348
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400349struct trace_event_file {
Steven Rostedtae63b312012-05-03 23:09:03 -0400350 struct list_head list;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400351 struct trace_event_call *event_call;
Tom Zanussif306cc82013-10-24 08:34:17 -0500352 struct event_filter *filter;
Steven Rostedtae63b312012-05-03 23:09:03 -0400353 struct dentry *dir;
354 struct trace_array *tr;
Steven Rostedt (Red Hat)7967b3e2015-05-13 14:59:40 -0400355 struct trace_subsystem_dir *system;
Tom Zanussi85f2b082013-10-24 08:59:24 -0500356 struct list_head triggers;
Steven Rostedt97f20252009-04-13 11:20:49 -0400357
Steven Rostedt553552c2010-04-23 11:12:36 -0400358 /*
359 * 32 bit flags:
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400360 * bit 0: enabled
361 * bit 1: enabled cmd record
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400362 * bit 2: enable/disable with the soft disable bit
363 * bit 3: soft disabled
Tom Zanussi85f2b082013-10-24 08:59:24 -0500364 * bit 4: trigger enabled
Steven Rostedt553552c2010-04-23 11:12:36 -0400365 *
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400366 * Note: The bits must be set atomically to prevent races
367 * from other writers. Reads of flags do not need to be in
368 * sync as they occur in critical sections. But the way flags
Steven Rostedtae63b312012-05-03 23:09:03 -0400369 * is currently used, these changes do not affect the code
Steven Rostedt1eaa4782010-05-14 10:19:13 -0400370 * except that when a change is made, it may have a slight
371 * delay in propagating the changes to other CPUs due to
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400372 * caching and such. Which is mostly OK ;-)
Steven Rostedt553552c2010-04-23 11:12:36 -0400373 */
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400374 unsigned long flags;
Masami Hiramatsu1cf4c072013-05-09 14:44:29 +0900375 atomic_t sm_ref; /* soft-mode reference counter */
Tom Zanussi85f2b082013-10-24 08:59:24 -0500376 atomic_t tm_ref; /* trigger-mode reference counter */
Steven Rostedt97f20252009-04-13 11:20:49 -0400377};
378
Frederic Weisbecker53cf810b2010-11-18 02:11:42 +0100379#define __TRACE_EVENT_FLAGS(name, value) \
380 static int __init trace_init_flags_##name(void) \
381 { \
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400382 event_##name.flags |= value; \
Frederic Weisbecker53cf810b2010-11-18 02:11:42 +0100383 return 0; \
384 } \
385 early_initcall(trace_init_flags_##name);
386
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100387#define __TRACE_EVENT_PERF_PERM(name, expr...) \
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400388 static int perf_perm_##name(struct trace_event_call *tp_event, \
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100389 struct perf_event *p_event) \
390 { \
391 return ({ expr; }); \
392 } \
393 static int __init trace_init_perf_perm_##name(void) \
394 { \
395 event_##name.perf_perm = &perf_perm_##name; \
396 return 0; \
397 } \
398 early_initcall(trace_init_perf_perm_##name);
399
Frederic Weisbecker97d5a222010-03-05 05:35:37 +0100400#define PERF_MAX_TRACE_SIZE 2048
Frederic Weisbecker20ab44252009-09-18 06:10:28 +0200401
Steven Rostedt16bb8eb2009-09-12 19:04:54 -0400402#define MAX_FILTER_STR_VAL 256 /* Should handle KSYM_SYMBOL_LEN */
Steven Rostedt97f20252009-04-13 11:20:49 -0400403
Tom Zanussi85f2b082013-10-24 08:59:24 -0500404enum event_trigger_type {
405 ETT_NONE = (0),
Tom Zanussi2a2df322013-10-24 08:59:25 -0500406 ETT_TRACE_ONOFF = (1 << 0),
Tom Zanussi93e31ff2013-10-24 08:59:26 -0500407 ETT_SNAPSHOT = (1 << 1),
Tom Zanussif21ecbb2013-10-24 08:59:27 -0500408 ETT_STACKTRACE = (1 << 2),
Tom Zanussi7862ad12013-10-24 08:59:28 -0500409 ETT_EVENT_ENABLE = (1 << 3),
Tom Zanussi7ef224d2016-03-03 12:54:42 -0600410 ETT_EVENT_HIST = (1 << 4),
Tom Zanussi85f2b082013-10-24 08:59:24 -0500411};
412
Li Zefan6fb29152009-10-15 11:21:42 +0800413extern int filter_match_preds(struct event_filter *filter, void *rec);
Tom Zanussif306cc82013-10-24 08:34:17 -0500414
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400415extern int filter_check_discard(struct trace_event_file *file, void *rec,
Tom Zanussif306cc82013-10-24 08:34:17 -0500416 struct ring_buffer *buffer,
417 struct ring_buffer_event *event);
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400418extern int call_filter_check_discard(struct trace_event_call *call, void *rec,
Tom Zanussif306cc82013-10-24 08:34:17 -0500419 struct ring_buffer *buffer,
420 struct ring_buffer_event *event);
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400421extern enum event_trigger_type event_triggers_call(struct trace_event_file *file,
Tom Zanussibac5fb92013-10-24 08:59:29 -0500422 void *rec);
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400423extern void event_triggers_post_call(struct trace_event_file *file,
Tom Zanussic4a59232015-12-10 12:50:45 -0600424 enum event_trigger_type tt,
425 void *rec);
Steven Rostedt97f20252009-04-13 11:20:49 -0400426
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400427bool trace_event_ignore_this_pid(struct trace_event_file *trace_file);
428
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500429/**
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400430 * trace_trigger_soft_disabled - do triggers and test if soft disabled
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500431 * @file: The file pointer of the event to test
432 *
433 * If any triggers without filters are attached to this event, they
434 * will be called here. If the event is soft disabled and has no
435 * triggers that require testing the fields, it will return true,
436 * otherwise false.
437 */
438static inline bool
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400439trace_trigger_soft_disabled(struct trace_event_file *file)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500440{
441 unsigned long eflags = file->flags;
442
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400443 if (!(eflags & EVENT_FILE_FL_TRIGGER_COND)) {
444 if (eflags & EVENT_FILE_FL_TRIGGER_MODE)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500445 event_triggers_call(file, NULL);
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400446 if (eflags & EVENT_FILE_FL_SOFT_DISABLED)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500447 return true;
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400448 if (eflags & EVENT_FILE_FL_PID_FILTER)
449 return trace_event_ignore_this_pid(file);
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500450 }
451 return false;
452}
453
454/*
455 * Helper function for event_trigger_unlock_commit{_regs}().
456 * If there are event triggers attached to this event that requires
457 * filtering against its fields, then they wil be called as the
458 * entry already holds the field information of the current event.
459 *
460 * It also checks if the event should be discarded or not.
461 * It is to be discarded if the event is soft disabled and the
462 * event was only recorded to process triggers, or if the event
463 * filter is active and this event did not match the filters.
464 *
465 * Returns true if the event is discarded, false otherwise.
466 */
467static inline bool
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400468__event_trigger_test_discard(struct trace_event_file *file,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500469 struct ring_buffer *buffer,
470 struct ring_buffer_event *event,
471 void *entry,
472 enum event_trigger_type *tt)
473{
474 unsigned long eflags = file->flags;
475
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400476 if (eflags & EVENT_FILE_FL_TRIGGER_COND)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500477 *tt = event_triggers_call(file, entry);
478
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400479 if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags))
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500480 ring_buffer_discard_commit(buffer, event);
481 else if (!filter_check_discard(file, entry, buffer, event))
482 return false;
483
484 return true;
485}
486
487/**
488 * event_trigger_unlock_commit - handle triggers and finish event commit
489 * @file: The file pointer assoctiated to the event
490 * @buffer: The ring buffer that the event is being written to
491 * @event: The event meta data in the ring buffer
492 * @entry: The event itself
493 * @irq_flags: The state of the interrupts at the start of the event
494 * @pc: The state of the preempt count at the start of the event.
495 *
496 * This is a helper function to handle triggers that require data
497 * from the event itself. It also tests the event against filters and
498 * if the event is soft disabled and should be discarded.
499 */
500static inline void
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400501event_trigger_unlock_commit(struct trace_event_file *file,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500502 struct ring_buffer *buffer,
503 struct ring_buffer_event *event,
504 void *entry, unsigned long irq_flags, int pc)
505{
506 enum event_trigger_type tt = ETT_NONE;
507
508 if (!__event_trigger_test_discard(file, buffer, event, entry, &tt))
Steven Rostedt (Red Hat)b7f0c952015-09-25 17:38:44 -0400509 trace_buffer_unlock_commit(file->tr, buffer, event, irq_flags, pc);
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500510
511 if (tt)
Tom Zanussic4a59232015-12-10 12:50:45 -0600512 event_triggers_post_call(file, tt, entry);
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500513}
514
515/**
516 * event_trigger_unlock_commit_regs - handle triggers and finish event commit
517 * @file: The file pointer assoctiated to the event
518 * @buffer: The ring buffer that the event is being written to
519 * @event: The event meta data in the ring buffer
520 * @entry: The event itself
521 * @irq_flags: The state of the interrupts at the start of the event
522 * @pc: The state of the preempt count at the start of the event.
523 *
524 * This is a helper function to handle triggers that require data
525 * from the event itself. It also tests the event against filters and
526 * if the event is soft disabled and should be discarded.
527 *
528 * Same as event_trigger_unlock_commit() but calls
529 * trace_buffer_unlock_commit_regs() instead of trace_buffer_unlock_commit().
530 */
531static inline void
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400532event_trigger_unlock_commit_regs(struct trace_event_file *file,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500533 struct ring_buffer *buffer,
534 struct ring_buffer_event *event,
535 void *entry, unsigned long irq_flags, int pc,
536 struct pt_regs *regs)
537{
538 enum event_trigger_type tt = ETT_NONE;
539
540 if (!__event_trigger_test_discard(file, buffer, event, entry, &tt))
Steven Rostedt (Red Hat)b7f0c952015-09-25 17:38:44 -0400541 trace_buffer_unlock_commit_regs(file->tr, buffer, event,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500542 irq_flags, pc, regs);
543
544 if (tt)
Tom Zanussic4a59232015-12-10 12:50:45 -0600545 event_triggers_post_call(file, tt, entry);
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500546}
547
Wang Nan098d2162015-07-01 02:13:49 +0000548#ifdef CONFIG_BPF_EVENTS
Alexei Starovoitov25415172015-03-25 12:49:20 -0700549unsigned int trace_call_bpf(struct bpf_prog *prog, void *ctx);
550#else
551static inline unsigned int trace_call_bpf(struct bpf_prog *prog, void *ctx)
552{
553 return 1;
554}
555#endif
556
Li Zefan43b51ea2009-08-07 10:33:22 +0800557enum {
558 FILTER_OTHER = 0,
559 FILTER_STATIC_STRING,
560 FILTER_DYN_STRING,
Li Zefan87a342f2009-08-07 10:33:43 +0800561 FILTER_PTR_STRING,
Jiri Olsa02aa3162012-02-15 15:51:53 +0100562 FILTER_TRACE_FN,
Steven Rostedt (Red Hat)e57cbaf2016-03-03 17:18:20 -0500563 FILTER_COMM,
564 FILTER_CPU,
Li Zefan43b51ea2009-08-07 10:33:22 +0800565};
566
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400567extern int trace_event_raw_init(struct trace_event_call *call);
568extern int trace_define_field(struct trace_event_call *call, const char *type,
Frederic Weisbeckeraeaeae12009-08-27 05:09:51 +0200569 const char *name, int offset, int size,
570 int is_signed, int filter_type);
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400571extern int trace_add_event_call(struct trace_event_call *call);
572extern int trace_remove_event_call(struct trace_event_call *call);
Steven Rostedt97f20252009-04-13 11:20:49 -0400573
Steven Rostedt (Red Hat)d2802d02013-04-19 17:10:27 -0400574#define is_signed_type(type) (((type)(-1)) < (type)1)
Steven Rostedt97f20252009-04-13 11:20:49 -0400575
Steven Rostedt4671c792009-05-08 16:27:41 -0400576int trace_set_clr_event(const char *system, const char *event, int set);
577
Steven Rostedt97f20252009-04-13 11:20:49 -0400578/*
579 * The double __builtin_constant_p is because gcc will give us an error
580 * if we try to allocate the static variable to fmt if it is not a
581 * constant. Even with the outer if statement optimizing out.
582 */
583#define event_trace_printk(ip, fmt, args...) \
584do { \
585 __trace_printk_check_format(fmt, ##args); \
586 tracing_record_cmdline(current); \
587 if (__builtin_constant_p(fmt)) { \
588 static const char *trace_printk_fmt \
589 __attribute__((section("__trace_printk_fmt"))) = \
590 __builtin_constant_p(fmt) ? fmt : NULL; \
591 \
592 __trace_bprintk(ip, trace_printk_fmt, ##args); \
593 } else \
594 __trace_printk(ip, fmt, ##args); \
595} while (0)
596
Li Zefan07b139c2009-12-21 14:27:35 +0800597#ifdef CONFIG_PERF_EVENTS
Li Zefan6fb29152009-10-15 11:21:42 +0800598struct perf_event;
Frederic Weisbeckerc5306652010-03-03 07:16:16 +0100599
600DECLARE_PER_CPU(struct pt_regs, perf_trace_regs);
601
Peter Zijlstra1c024eca2010-05-19 14:02:22 +0200602extern int perf_trace_init(struct perf_event *event);
603extern void perf_trace_destroy(struct perf_event *event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200604extern int perf_trace_add(struct perf_event *event, int flags);
605extern void perf_trace_del(struct perf_event *event, int flags);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +0200606extern int ftrace_profile_set_filter(struct perf_event *event, int event_id,
Li Zefan6fb29152009-10-15 11:21:42 +0800607 char *filter_str);
608extern void ftrace_profile_free_filter(struct perf_event *event);
Peter Zijlstrab7e2ece2010-05-19 10:52:27 +0200609extern void *perf_trace_buf_prepare(int size, unsigned short type,
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +0100610 struct pt_regs **regs, int *rctxp);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800611
612static inline void
Frederic Weisbecker97d5a222010-03-05 05:35:37 +0100613perf_trace_buf_submit(void *raw_data, int size, int rctx, u64 addr,
Andrew Vagine6dab5f2012-07-11 18:14:58 +0400614 u64 count, struct pt_regs *regs, void *head,
615 struct task_struct *task)
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800616{
Andrew Vagine6dab5f2012-07-11 18:14:58 +0400617 perf_tp_event(addr, count, raw_data, size, regs, head, rctx, task);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800618}
Li Zefan6fb29152009-10-15 11:21:42 +0800619#endif
620
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400621#endif /* _LINUX_TRACE_EVENT_H */