blob: 1063c850dbab695046d973c5e91a9af499d15fee [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 Rostedtbe74b732009-05-26 20:25:22 +020018struct trace_print_flags {
19 unsigned long mask;
20 const char *name;
21};
22
liubo2fc1b6f2011-04-19 09:35:28 +080023struct trace_print_flags_u64 {
24 unsigned long long mask;
25 const char *name;
26};
27
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040028const char *trace_print_flags_seq(struct trace_seq *p, const char *delim,
29 unsigned long flags,
30 const struct trace_print_flags *flag_array);
Steven Rostedtbe74b732009-05-26 20:25:22 +020031
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040032const char *trace_print_symbols_seq(struct trace_seq *p, unsigned long val,
33 const struct trace_print_flags *symbol_array);
Steven Rostedt0f4fc292009-05-20 19:21:47 -040034
liubo2fc1b6f2011-04-19 09:35:28 +080035#if BITS_PER_LONG == 32
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040036const char *trace_print_symbols_seq_u64(struct trace_seq *p,
37 unsigned long long val,
38 const struct trace_print_flags_u64
liubo2fc1b6f2011-04-19 09:35:28 +080039 *symbol_array);
40#endif
41
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040042const char *trace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr,
43 unsigned int bitmask_size);
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -040044
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040045const char *trace_print_hex_seq(struct trace_seq *p,
46 const unsigned char *buf, int len);
Kei Tokunaga5a2e3992010-04-01 20:40:58 +090047
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040048const char *trace_print_array_seq(struct trace_seq *p,
Alex Bennéeac01ce12015-04-29 16:18:46 +010049 const void *buf, int count,
Dave Martin6ea22482015-01-28 12:48:53 +000050 size_t el_size);
51
Li Zefanf71130d2013-02-21 10:32:38 +080052struct trace_iterator;
53struct trace_event;
54
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -040055int trace_raw_output_prep(struct trace_iterator *iter,
56 struct trace_event *event);
Li Zefanf71130d2013-02-21 10:32:38 +080057
Steven Rostedt97f20252009-04-13 11:20:49 -040058/*
59 * The trace entry - the most basic unit of tracing. This is what
60 * is printed in the end as a single line in the trace output, such as:
61 *
62 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
63 */
64struct trace_entry {
Steven Rostedt89ec0de2009-03-26 11:03:29 -040065 unsigned short type;
Steven Rostedt97f20252009-04-13 11:20:49 -040066 unsigned char flags;
67 unsigned char preempt_count;
68 int pid;
Steven Rostedt97f20252009-04-13 11:20:49 -040069};
70
Steven Rostedt (Red Hat)609a7402015-05-13 13:44:36 -040071#define TRACE_EVENT_TYPE_MAX \
Steven Rostedt89ec0de2009-03-26 11:03:29 -040072 ((1 << (sizeof(((struct trace_entry *)0)->type) * 8)) - 1)
73
Steven Rostedt97f20252009-04-13 11:20:49 -040074/*
75 * Trace iterator - used by printout routines who present trace
76 * results to users and which routines might sleep, etc:
77 */
78struct trace_iterator {
79 struct trace_array *tr;
80 struct tracer *trace;
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -050081 struct trace_buffer *trace_buffer;
Steven Rostedt97f20252009-04-13 11:20:49 -040082 void *private;
83 int cpu_file;
84 struct mutex mutex;
Steven Rostedt6d158a82012-06-27 20:46:14 -040085 struct ring_buffer_iter **buffer_iter;
Steven Rostedt112f38a72009-06-01 15:16:05 -040086 unsigned long iter_flags;
Steven Rostedt97f20252009-04-13 11:20:49 -040087
Lai Jiangshanbc289ae2010-06-03 18:26:24 +080088 /* trace_seq for __print_flags() and __print_symbolic() etc. */
89 struct trace_seq tmp_seq;
90
Andrew Vagined5467d2013-08-02 21:16:43 +040091 cpumask_var_t started;
92
93 /* it's true when current open file is snapshot */
94 bool snapshot;
95
Steven Rostedt97f20252009-04-13 11:20:49 -040096 /* The below is zeroed out in pipe_read */
97 struct trace_seq seq;
98 struct trace_entry *ent;
Steven Rostedtbc21b472010-03-31 19:49:26 -040099 unsigned long lost_events;
Steven Rostedta63ce5b2009-12-07 09:11:39 -0500100 int leftover;
Steven Rostedt4a9bd3f2011-07-14 16:36:53 -0400101 int ent_size;
Steven Rostedt97f20252009-04-13 11:20:49 -0400102 int cpu;
103 u64 ts;
104
Steven Rostedt97f20252009-04-13 11:20:49 -0400105 loff_t pos;
106 long idx;
107
Andrew Vagined5467d2013-08-02 21:16:43 +0400108 /* All new field here will be zeroed out in pipe_read */
Steven Rostedt97f20252009-04-13 11:20:49 -0400109};
110
David Sharp8be07092012-11-13 12:18:22 -0800111enum trace_iter_flags {
112 TRACE_FILE_LAT_FMT = 1,
113 TRACE_FILE_ANNOTATE = 2,
114 TRACE_FILE_TIME_IN_NS = 4,
115};
116
Steven Rostedt97f20252009-04-13 11:20:49 -0400117
118typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
Steven Rostedta9a57762010-04-22 18:46:14 -0400119 int flags, struct trace_event *event);
120
121struct trace_event_functions {
Steven Rostedt97f20252009-04-13 11:20:49 -0400122 trace_print_func trace;
123 trace_print_func raw;
124 trace_print_func hex;
125 trace_print_func binary;
126};
127
Steven Rostedta9a57762010-04-22 18:46:14 -0400128struct trace_event {
129 struct hlist_node node;
130 struct list_head list;
131 int type;
132 struct trace_event_functions *funcs;
133};
134
Steven Rostedt (Red Hat)9023c932015-05-05 09:39:12 -0400135extern int register_trace_event(struct trace_event *event);
136extern int unregister_trace_event(struct trace_event *event);
Steven Rostedt97f20252009-04-13 11:20:49 -0400137
138/* Return values for print_line callback */
139enum print_line_t {
140 TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */
141 TRACE_TYPE_HANDLED = 1,
142 TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */
143 TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */
144};
145
Steven Rostedt (Red Hat)19a7fe22014-11-12 10:29:54 -0500146/*
147 * Several functions return TRACE_TYPE_PARTIAL_LINE if the trace_seq
148 * overflowed, and TRACE_TYPE_HANDLED otherwise. This helper function
149 * simplifies those functions and keeps them in sync.
150 */
151static inline enum print_line_t trace_handle_return(struct trace_seq *s)
152{
153 return trace_seq_has_overflowed(s) ?
154 TRACE_TYPE_PARTIAL_LINE : TRACE_TYPE_HANDLED;
155}
156
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200157void tracing_generic_entry_update(struct trace_entry *entry,
158 unsigned long flags,
159 int pc);
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400160struct trace_event_file;
Steven Rostedtccb469a2012-08-02 10:32:10 -0400161
162struct ring_buffer_event *
163trace_event_buffer_lock_reserve(struct ring_buffer **current_buffer,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400164 struct trace_event_file *trace_file,
Steven Rostedtccb469a2012-08-02 10:32:10 -0400165 int type, unsigned long len,
166 unsigned long flags, int pc);
Steven Rostedt97f20252009-04-13 11:20:49 -0400167struct ring_buffer_event *
Steven Rostedte77405a2009-09-02 14:17:06 -0400168trace_current_buffer_lock_reserve(struct ring_buffer **current_buffer,
169 int type, unsigned long len,
Steven Rostedt97f20252009-04-13 11:20:49 -0400170 unsigned long flags, int pc);
Steven Rostedte77405a2009-09-02 14:17:06 -0400171void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
172 struct ring_buffer_event *event,
Steven Rostedt97f20252009-04-13 11:20:49 -0400173 unsigned long flags, int pc);
Steven Rostedt0d5c6e12012-11-01 20:54:21 -0400174void trace_buffer_unlock_commit(struct ring_buffer *buffer,
175 struct ring_buffer_event *event,
176 unsigned long flags, int pc);
177void trace_buffer_unlock_commit_regs(struct ring_buffer *buffer,
178 struct ring_buffer_event *event,
179 unsigned long flags, int pc,
180 struct pt_regs *regs);
Steven Rostedte77405a2009-09-02 14:17:06 -0400181void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
182 struct ring_buffer_event *event);
Steven Rostedt97f20252009-04-13 11:20:49 -0400183
184void tracing_record_cmdline(struct task_struct *tsk);
185
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400186int trace_output_call(struct trace_iterator *iter, char *name, char *fmt, ...);
Steven Rostedt1d6bae92012-08-09 19:16:14 -0400187
Li Zefan1f9963c2009-07-20 10:20:53 +0800188struct event_filter;
189
Steven Rostedt22392912010-04-21 12:27:06 -0400190enum trace_reg {
191 TRACE_REG_REGISTER,
192 TRACE_REG_UNREGISTER,
Jiri Olsa37d73992012-03-14 00:03:02 +0100193#ifdef CONFIG_PERF_EVENTS
Steven Rostedt22392912010-04-21 12:27:06 -0400194 TRACE_REG_PERF_REGISTER,
195 TRACE_REG_PERF_UNREGISTER,
Jiri Olsaceec0b62012-02-15 15:51:49 +0100196 TRACE_REG_PERF_OPEN,
197 TRACE_REG_PERF_CLOSE,
Jiri Olsa489c75c2012-02-15 15:51:50 +0100198 TRACE_REG_PERF_ADD,
199 TRACE_REG_PERF_DEL,
Jiri Olsa37d73992012-03-14 00:03:02 +0100200#endif
Steven Rostedt22392912010-04-21 12:27:06 -0400201};
202
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400203struct trace_event_call;
Steven Rostedt22392912010-04-21 12:27:06 -0400204
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400205struct trace_event_class {
Steven Rostedt (Red Hat)acd388f2015-03-31 14:37:12 -0400206 const char *system;
Steven Rostedt22392912010-04-21 12:27:06 -0400207 void *probe;
208#ifdef CONFIG_PERF_EVENTS
209 void *perf_probe;
210#endif
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400211 int (*reg)(struct trace_event_call *event,
Jiri Olsaceec0b62012-02-15 15:51:49 +0100212 enum trace_reg type, void *data);
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400213 int (*define_fields)(struct trace_event_call *);
214 struct list_head *(*get_fields)(struct trace_event_call *);
Steven Rostedt2e33af02010-04-22 10:35:55 -0400215 struct list_head fields;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400216 int (*raw_init)(struct trace_event_call *);
Steven Rostedt8f082012010-04-20 10:47:33 -0400217};
218
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400219extern int trace_event_reg(struct trace_event_call *event,
Jiri Olsaceec0b62012-02-15 15:51:49 +0100220 enum trace_reg type, void *data);
Steven Rostedta1d0ce82010-06-08 11:22:06 -0400221
Steven Rostedt (Red Hat)3f795dc2015-05-05 13:18:46 -0400222struct trace_event_buffer {
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400223 struct ring_buffer *buffer;
224 struct ring_buffer_event *event;
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400225 struct trace_event_file *trace_file;
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400226 void *entry;
227 unsigned long flags;
228 int pc;
229};
230
Steven Rostedt (Red Hat)3f795dc2015-05-05 13:18:46 -0400231void *trace_event_buffer_reserve(struct trace_event_buffer *fbuffer,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400232 struct trace_event_file *trace_file,
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400233 unsigned long len);
234
Steven Rostedt (Red Hat)3f795dc2015-05-05 13:18:46 -0400235void trace_event_buffer_commit(struct trace_event_buffer *fbuffer);
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400236
Steven Rostedt553552c2010-04-23 11:12:36 -0400237enum {
Steven Rostedt553552c2010-04-23 11:12:36 -0400238 TRACE_EVENT_FL_FILTERED_BIT,
Frederic Weisbecker61c32652010-11-18 01:39:17 +0100239 TRACE_EVENT_FL_CAP_ANY_BIT,
Li Zefan27b14b52011-11-01 09:09:35 +0800240 TRACE_EVENT_FL_NO_SET_FILTER_BIT,
Steven Rostedt9b637762012-05-10 15:55:43 -0400241 TRACE_EVENT_FL_IGNORE_ENABLE_BIT,
Steven Rostedt (Red Hat)575380d2013-03-04 23:05:12 -0500242 TRACE_EVENT_FL_WAS_ENABLED_BIT,
Tom Zanussif306cc82013-10-24 08:34:17 -0500243 TRACE_EVENT_FL_USE_CALL_FILTER_BIT,
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400244 TRACE_EVENT_FL_TRACEPOINT_BIT,
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -0700245 TRACE_EVENT_FL_KPROBE_BIT,
Steven Rostedt553552c2010-04-23 11:12:36 -0400246};
247
Steven Rostedtae63b312012-05-03 23:09:03 -0400248/*
249 * Event flags:
250 * FILTERED - The event has a filter attached
251 * CAP_ANY - Any user can enable for perf
252 * NO_SET_FILTER - Set when filter has error and is to be ignored
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400253 * IGNORE_ENABLE - For trace internal events, do not enable with debugfs file
Steven Rostedt (Red Hat)575380d2013-03-04 23:05:12 -0500254 * WAS_ENABLED - Set and stays set when an event was ever enabled
255 * (used for module unloading, if a module event is enabled,
256 * it is best to clear the buffers that used it).
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400257 * USE_CALL_FILTER - For trace internal events, don't use file filter
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400258 * TRACEPOINT - Event is a tracepoint
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -0700259 * KPROBE - Event is a kprobe
Steven Rostedtae63b312012-05-03 23:09:03 -0400260 */
Steven Rostedt553552c2010-04-23 11:12:36 -0400261enum {
Li Zefane870e9a2010-07-02 11:07:32 +0800262 TRACE_EVENT_FL_FILTERED = (1 << TRACE_EVENT_FL_FILTERED_BIT),
Frederic Weisbecker61c32652010-11-18 01:39:17 +0100263 TRACE_EVENT_FL_CAP_ANY = (1 << TRACE_EVENT_FL_CAP_ANY_BIT),
Li Zefan27b14b52011-11-01 09:09:35 +0800264 TRACE_EVENT_FL_NO_SET_FILTER = (1 << TRACE_EVENT_FL_NO_SET_FILTER_BIT),
Steven Rostedt9b637762012-05-10 15:55:43 -0400265 TRACE_EVENT_FL_IGNORE_ENABLE = (1 << TRACE_EVENT_FL_IGNORE_ENABLE_BIT),
Steven Rostedt (Red Hat)575380d2013-03-04 23:05:12 -0500266 TRACE_EVENT_FL_WAS_ENABLED = (1 << TRACE_EVENT_FL_WAS_ENABLED_BIT),
Tom Zanussif306cc82013-10-24 08:34:17 -0500267 TRACE_EVENT_FL_USE_CALL_FILTER = (1 << TRACE_EVENT_FL_USE_CALL_FILTER_BIT),
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400268 TRACE_EVENT_FL_TRACEPOINT = (1 << TRACE_EVENT_FL_TRACEPOINT_BIT),
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -0700269 TRACE_EVENT_FL_KPROBE = (1 << TRACE_EVENT_FL_KPROBE_BIT),
Steven Rostedt553552c2010-04-23 11:12:36 -0400270};
271
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400272struct trace_event_call {
Steven Rostedta59fd602009-04-10 13:52:20 -0400273 struct list_head list;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400274 struct trace_event_class *class;
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400275 union {
276 char *name;
277 /* Set TRACE_EVENT_FL_TRACEPOINT flag when using "tp" */
278 struct tracepoint *tp;
279 };
Steven Rostedt80decc72010-04-23 10:00:22 -0400280 struct trace_event event;
Steven Rostedt (Red Hat)0c564a52015-03-24 17:58:09 -0400281 char *print_fmt;
Li Zefan1f9963c2009-07-20 10:20:53 +0800282 struct event_filter *filter;
Steven Rostedt6d723732009-04-10 14:53:50 -0400283 void *mod;
Jason Baron69fd4f02009-08-10 16:52:44 -0400284 void *data;
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400285 /*
286 * bit 0: filter_active
287 * bit 1: allow trace by non root (cap any)
288 * bit 2: failed to apply filter
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400289 * bit 3: trace internal event (do not enable)
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400290 * bit 4: Event was enabled by module
Tom Zanussif306cc82013-10-24 08:34:17 -0500291 * bit 5: use call filter rather than file filter
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400292 * bit 6: Event is a tracepoint
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400293 */
Steven Rostedtae63b312012-05-03 23:09:03 -0400294 int flags; /* static flags of different events */
295
296#ifdef CONFIG_PERF_EVENTS
297 int perf_refcount;
298 struct hlist_head __percpu *perf_events;
Alexei Starovoitov25415172015-03-25 12:49:20 -0700299 struct bpf_prog *prog;
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100300
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400301 int (*perf_perm)(struct trace_event_call *,
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100302 struct perf_event *);
Steven Rostedtae63b312012-05-03 23:09:03 -0400303#endif
304};
305
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400306static inline const char *
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400307trace_event_name(struct trace_event_call *call)
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400308{
309 if (call->flags & TRACE_EVENT_FL_TRACEPOINT)
310 return call->tp ? call->tp->name : NULL;
311 else
312 return call->name;
313}
314
Steven Rostedtae63b312012-05-03 23:09:03 -0400315struct trace_array;
Steven Rostedt (Red Hat)7967b3e2015-05-13 14:59:40 -0400316struct trace_subsystem_dir;
Steven Rostedtae63b312012-05-03 23:09:03 -0400317
318enum {
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400319 EVENT_FILE_FL_ENABLED_BIT,
320 EVENT_FILE_FL_RECORDED_CMD_BIT,
321 EVENT_FILE_FL_FILTERED_BIT,
322 EVENT_FILE_FL_NO_SET_FILTER_BIT,
323 EVENT_FILE_FL_SOFT_MODE_BIT,
324 EVENT_FILE_FL_SOFT_DISABLED_BIT,
325 EVENT_FILE_FL_TRIGGER_MODE_BIT,
326 EVENT_FILE_FL_TRIGGER_COND_BIT,
Steven Rostedtae63b312012-05-03 23:09:03 -0400327};
328
329/*
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400330 * Event file flags:
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400331 * ENABLED - The event is enabled
Steven Rostedtae63b312012-05-03 23:09:03 -0400332 * RECORDED_CMD - The comms should be recorded at sched_switch
Tom Zanussif306cc82013-10-24 08:34:17 -0500333 * FILTERED - The event has a filter attached
334 * NO_SET_FILTER - Set when filter has error and is to be ignored
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400335 * SOFT_MODE - The event is enabled/disabled by SOFT_DISABLED
336 * SOFT_DISABLED - When set, do not trace the event (even though its
337 * tracepoint may be enabled)
Tom Zanussi85f2b082013-10-24 08:59:24 -0500338 * TRIGGER_MODE - When set, invoke the triggers associated with the event
Tom Zanussibac5fb92013-10-24 08:59:29 -0500339 * TRIGGER_COND - When set, one or more triggers has an associated filter
Steven Rostedtae63b312012-05-03 23:09:03 -0400340 */
341enum {
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400342 EVENT_FILE_FL_ENABLED = (1 << EVENT_FILE_FL_ENABLED_BIT),
343 EVENT_FILE_FL_RECORDED_CMD = (1 << EVENT_FILE_FL_RECORDED_CMD_BIT),
344 EVENT_FILE_FL_FILTERED = (1 << EVENT_FILE_FL_FILTERED_BIT),
345 EVENT_FILE_FL_NO_SET_FILTER = (1 << EVENT_FILE_FL_NO_SET_FILTER_BIT),
346 EVENT_FILE_FL_SOFT_MODE = (1 << EVENT_FILE_FL_SOFT_MODE_BIT),
347 EVENT_FILE_FL_SOFT_DISABLED = (1 << EVENT_FILE_FL_SOFT_DISABLED_BIT),
348 EVENT_FILE_FL_TRIGGER_MODE = (1 << EVENT_FILE_FL_TRIGGER_MODE_BIT),
349 EVENT_FILE_FL_TRIGGER_COND = (1 << EVENT_FILE_FL_TRIGGER_COND_BIT),
Steven Rostedtae63b312012-05-03 23:09:03 -0400350};
351
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400352struct trace_event_file {
Steven Rostedtae63b312012-05-03 23:09:03 -0400353 struct list_head list;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400354 struct trace_event_call *event_call;
Tom Zanussif306cc82013-10-24 08:34:17 -0500355 struct event_filter *filter;
Steven Rostedtae63b312012-05-03 23:09:03 -0400356 struct dentry *dir;
357 struct trace_array *tr;
Steven Rostedt (Red Hat)7967b3e2015-05-13 14:59:40 -0400358 struct trace_subsystem_dir *system;
Tom Zanussi85f2b082013-10-24 08:59:24 -0500359 struct list_head triggers;
Steven Rostedt97f20252009-04-13 11:20:49 -0400360
Steven Rostedt553552c2010-04-23 11:12:36 -0400361 /*
362 * 32 bit flags:
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400363 * bit 0: enabled
364 * bit 1: enabled cmd record
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400365 * bit 2: enable/disable with the soft disable bit
366 * bit 3: soft disabled
Tom Zanussi85f2b082013-10-24 08:59:24 -0500367 * bit 4: trigger enabled
Steven Rostedt553552c2010-04-23 11:12:36 -0400368 *
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400369 * Note: The bits must be set atomically to prevent races
370 * from other writers. Reads of flags do not need to be in
371 * sync as they occur in critical sections. But the way flags
Steven Rostedtae63b312012-05-03 23:09:03 -0400372 * is currently used, these changes do not affect the code
Steven Rostedt1eaa4782010-05-14 10:19:13 -0400373 * except that when a change is made, it may have a slight
374 * delay in propagating the changes to other CPUs due to
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400375 * caching and such. Which is mostly OK ;-)
Steven Rostedt553552c2010-04-23 11:12:36 -0400376 */
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400377 unsigned long flags;
Masami Hiramatsu1cf4c072013-05-09 14:44:29 +0900378 atomic_t sm_ref; /* soft-mode reference counter */
Tom Zanussi85f2b082013-10-24 08:59:24 -0500379 atomic_t tm_ref; /* trigger-mode reference counter */
Steven Rostedt97f20252009-04-13 11:20:49 -0400380};
381
Frederic Weisbecker53cf810b2010-11-18 02:11:42 +0100382#define __TRACE_EVENT_FLAGS(name, value) \
383 static int __init trace_init_flags_##name(void) \
384 { \
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400385 event_##name.flags |= value; \
Frederic Weisbecker53cf810b2010-11-18 02:11:42 +0100386 return 0; \
387 } \
388 early_initcall(trace_init_flags_##name);
389
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100390#define __TRACE_EVENT_PERF_PERM(name, expr...) \
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400391 static int perf_perm_##name(struct trace_event_call *tp_event, \
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100392 struct perf_event *p_event) \
393 { \
394 return ({ expr; }); \
395 } \
396 static int __init trace_init_perf_perm_##name(void) \
397 { \
398 event_##name.perf_perm = &perf_perm_##name; \
399 return 0; \
400 } \
401 early_initcall(trace_init_perf_perm_##name);
402
Frederic Weisbecker97d5a222010-03-05 05:35:37 +0100403#define PERF_MAX_TRACE_SIZE 2048
Frederic Weisbecker20ab44252009-09-18 06:10:28 +0200404
Steven Rostedt16bb8eb2009-09-12 19:04:54 -0400405#define MAX_FILTER_STR_VAL 256 /* Should handle KSYM_SYMBOL_LEN */
Steven Rostedt97f20252009-04-13 11:20:49 -0400406
Tom Zanussi85f2b082013-10-24 08:59:24 -0500407enum event_trigger_type {
408 ETT_NONE = (0),
Tom Zanussi2a2df322013-10-24 08:59:25 -0500409 ETT_TRACE_ONOFF = (1 << 0),
Tom Zanussi93e31ff2013-10-24 08:59:26 -0500410 ETT_SNAPSHOT = (1 << 1),
Tom Zanussif21ecbb2013-10-24 08:59:27 -0500411 ETT_STACKTRACE = (1 << 2),
Tom Zanussi7862ad12013-10-24 08:59:28 -0500412 ETT_EVENT_ENABLE = (1 << 3),
Tom Zanussi85f2b082013-10-24 08:59:24 -0500413};
414
Li Zefan6fb29152009-10-15 11:21:42 +0800415extern int filter_match_preds(struct event_filter *filter, void *rec);
Tom Zanussif306cc82013-10-24 08:34:17 -0500416
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400417extern int filter_check_discard(struct trace_event_file *file, void *rec,
Tom Zanussif306cc82013-10-24 08:34:17 -0500418 struct ring_buffer *buffer,
419 struct ring_buffer_event *event);
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400420extern int call_filter_check_discard(struct trace_event_call *call, void *rec,
Tom Zanussif306cc82013-10-24 08:34:17 -0500421 struct ring_buffer *buffer,
422 struct ring_buffer_event *event);
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400423extern enum event_trigger_type event_triggers_call(struct trace_event_file *file,
Tom Zanussibac5fb92013-10-24 08:59:29 -0500424 void *rec);
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400425extern void event_triggers_post_call(struct trace_event_file *file,
Tom Zanussibac5fb92013-10-24 08:59:29 -0500426 enum event_trigger_type tt);
Steven Rostedt97f20252009-04-13 11:20:49 -0400427
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500428/**
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400429 * trace_trigger_soft_disabled - do triggers and test if soft disabled
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500430 * @file: The file pointer of the event to test
431 *
432 * If any triggers without filters are attached to this event, they
433 * will be called here. If the event is soft disabled and has no
434 * triggers that require testing the fields, it will return true,
435 * otherwise false.
436 */
437static inline bool
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400438trace_trigger_soft_disabled(struct trace_event_file *file)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500439{
440 unsigned long eflags = file->flags;
441
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400442 if (!(eflags & EVENT_FILE_FL_TRIGGER_COND)) {
443 if (eflags & EVENT_FILE_FL_TRIGGER_MODE)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500444 event_triggers_call(file, NULL);
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400445 if (eflags & EVENT_FILE_FL_SOFT_DISABLED)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500446 return true;
447 }
448 return false;
449}
450
451/*
452 * Helper function for event_trigger_unlock_commit{_regs}().
453 * If there are event triggers attached to this event that requires
454 * filtering against its fields, then they wil be called as the
455 * entry already holds the field information of the current event.
456 *
457 * It also checks if the event should be discarded or not.
458 * It is to be discarded if the event is soft disabled and the
459 * event was only recorded to process triggers, or if the event
460 * filter is active and this event did not match the filters.
461 *
462 * Returns true if the event is discarded, false otherwise.
463 */
464static inline bool
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400465__event_trigger_test_discard(struct trace_event_file *file,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500466 struct ring_buffer *buffer,
467 struct ring_buffer_event *event,
468 void *entry,
469 enum event_trigger_type *tt)
470{
471 unsigned long eflags = file->flags;
472
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400473 if (eflags & EVENT_FILE_FL_TRIGGER_COND)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500474 *tt = event_triggers_call(file, entry);
475
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400476 if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags))
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500477 ring_buffer_discard_commit(buffer, event);
478 else if (!filter_check_discard(file, entry, buffer, event))
479 return false;
480
481 return true;
482}
483
484/**
485 * event_trigger_unlock_commit - handle triggers and finish event commit
486 * @file: The file pointer assoctiated to the event
487 * @buffer: The ring buffer that the event is being written to
488 * @event: The event meta data in the ring buffer
489 * @entry: The event itself
490 * @irq_flags: The state of the interrupts at the start of the event
491 * @pc: The state of the preempt count at the start of the event.
492 *
493 * This is a helper function to handle triggers that require data
494 * from the event itself. It also tests the event against filters and
495 * if the event is soft disabled and should be discarded.
496 */
497static inline void
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400498event_trigger_unlock_commit(struct trace_event_file *file,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500499 struct ring_buffer *buffer,
500 struct ring_buffer_event *event,
501 void *entry, unsigned long irq_flags, int pc)
502{
503 enum event_trigger_type tt = ETT_NONE;
504
505 if (!__event_trigger_test_discard(file, buffer, event, entry, &tt))
506 trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
507
508 if (tt)
509 event_triggers_post_call(file, tt);
510}
511
512/**
513 * event_trigger_unlock_commit_regs - handle triggers and finish event commit
514 * @file: The file pointer assoctiated to the event
515 * @buffer: The ring buffer that the event is being written to
516 * @event: The event meta data in the ring buffer
517 * @entry: The event itself
518 * @irq_flags: The state of the interrupts at the start of the event
519 * @pc: The state of the preempt count at the start of the event.
520 *
521 * This is a helper function to handle triggers that require data
522 * from the event itself. It also tests the event against filters and
523 * if the event is soft disabled and should be discarded.
524 *
525 * Same as event_trigger_unlock_commit() but calls
526 * trace_buffer_unlock_commit_regs() instead of trace_buffer_unlock_commit().
527 */
528static inline void
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400529event_trigger_unlock_commit_regs(struct trace_event_file *file,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500530 struct ring_buffer *buffer,
531 struct ring_buffer_event *event,
532 void *entry, unsigned long irq_flags, int pc,
533 struct pt_regs *regs)
534{
535 enum event_trigger_type tt = ETT_NONE;
536
537 if (!__event_trigger_test_discard(file, buffer, event, entry, &tt))
538 trace_buffer_unlock_commit_regs(buffer, event,
539 irq_flags, pc, regs);
540
541 if (tt)
542 event_triggers_post_call(file, tt);
543}
544
Alexei Starovoitov25415172015-03-25 12:49:20 -0700545#ifdef CONFIG_BPF_SYSCALL
546unsigned int trace_call_bpf(struct bpf_prog *prog, void *ctx);
547#else
548static inline unsigned int trace_call_bpf(struct bpf_prog *prog, void *ctx)
549{
550 return 1;
551}
552#endif
553
Li Zefan43b51ea2009-08-07 10:33:22 +0800554enum {
555 FILTER_OTHER = 0,
556 FILTER_STATIC_STRING,
557 FILTER_DYN_STRING,
Li Zefan87a342f2009-08-07 10:33:43 +0800558 FILTER_PTR_STRING,
Jiri Olsa02aa3162012-02-15 15:51:53 +0100559 FILTER_TRACE_FN,
Li Zefan43b51ea2009-08-07 10:33:22 +0800560};
561
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400562extern int trace_event_raw_init(struct trace_event_call *call);
563extern int trace_define_field(struct trace_event_call *call, const char *type,
Frederic Weisbeckeraeaeae12009-08-27 05:09:51 +0200564 const char *name, int offset, int size,
565 int is_signed, int filter_type);
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400566extern int trace_add_event_call(struct trace_event_call *call);
567extern int trace_remove_event_call(struct trace_event_call *call);
Steven Rostedt97f20252009-04-13 11:20:49 -0400568
Steven Rostedt (Red Hat)d2802d02013-04-19 17:10:27 -0400569#define is_signed_type(type) (((type)(-1)) < (type)1)
Steven Rostedt97f20252009-04-13 11:20:49 -0400570
Steven Rostedt4671c792009-05-08 16:27:41 -0400571int trace_set_clr_event(const char *system, const char *event, int set);
572
Steven Rostedt97f20252009-04-13 11:20:49 -0400573/*
574 * The double __builtin_constant_p is because gcc will give us an error
575 * if we try to allocate the static variable to fmt if it is not a
576 * constant. Even with the outer if statement optimizing out.
577 */
578#define event_trace_printk(ip, fmt, args...) \
579do { \
580 __trace_printk_check_format(fmt, ##args); \
581 tracing_record_cmdline(current); \
582 if (__builtin_constant_p(fmt)) { \
583 static const char *trace_printk_fmt \
584 __attribute__((section("__trace_printk_fmt"))) = \
585 __builtin_constant_p(fmt) ? fmt : NULL; \
586 \
587 __trace_bprintk(ip, trace_printk_fmt, ##args); \
588 } else \
589 __trace_printk(ip, fmt, ##args); \
590} while (0)
591
Li Zefan07b139c2009-12-21 14:27:35 +0800592#ifdef CONFIG_PERF_EVENTS
Li Zefan6fb29152009-10-15 11:21:42 +0800593struct perf_event;
Frederic Weisbeckerc5306652010-03-03 07:16:16 +0100594
595DECLARE_PER_CPU(struct pt_regs, perf_trace_regs);
596
Peter Zijlstra1c024eca2010-05-19 14:02:22 +0200597extern int perf_trace_init(struct perf_event *event);
598extern void perf_trace_destroy(struct perf_event *event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200599extern int perf_trace_add(struct perf_event *event, int flags);
600extern void perf_trace_del(struct perf_event *event, int flags);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +0200601extern int ftrace_profile_set_filter(struct perf_event *event, int event_id,
Li Zefan6fb29152009-10-15 11:21:42 +0800602 char *filter_str);
603extern void ftrace_profile_free_filter(struct perf_event *event);
Peter Zijlstrab7e2ece2010-05-19 10:52:27 +0200604extern void *perf_trace_buf_prepare(int size, unsigned short type,
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +0100605 struct pt_regs **regs, int *rctxp);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800606
607static inline void
Frederic Weisbecker97d5a222010-03-05 05:35:37 +0100608perf_trace_buf_submit(void *raw_data, int size, int rctx, u64 addr,
Andrew Vagine6dab5f2012-07-11 18:14:58 +0400609 u64 count, struct pt_regs *regs, void *head,
610 struct task_struct *task)
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800611{
Andrew Vagine6dab5f2012-07-11 18:14:58 +0400612 perf_tp_event(addr, count, raw_data, size, regs, head, rctx, task);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800613}
Li Zefan6fb29152009-10-15 11:21:42 +0800614#endif
615
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400616#endif /* _LINUX_TRACE_EVENT_H */