blob: 5c6943354049409a6bf00979784b729bf6cd735f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Tom Zanussibac5fb92013-10-24 08:59:29 -05002
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -04003#ifndef _LINUX_TRACE_EVENT_H
4#define _LINUX_TRACE_EVENT_H
Steven Rostedt97f20252009-04-13 11:20:49 -04005
Steven Rostedt97f20252009-04-13 11:20:49 -04006#include <linux/ring_buffer.h>
Steven Rostedt16bb8eb2009-09-12 19:04:54 -04007#include <linux/trace_seq.h>
Steven Rostedtbe74b73a2009-05-26 20:25:22 +02008#include <linux/percpu.h>
Frederic Weisbecker20ab44252009-09-18 06:10:28 +02009#include <linux/hardirq.h>
Xiao Guangrong430ad5a2010-01-28 09:32:29 +080010#include <linux/perf_event.h>
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -040011#include <linux/tracepoint.h>
Steven Rostedt97f20252009-04-13 11:20:49 -040012
13struct trace_array;
Steven Rostedt (VMware)1c5eb442020-01-09 18:53:48 -050014struct array_buffer;
Steven Rostedt97f20252009-04-13 11:20:49 -040015struct tracer;
Steven Rostedt6d723732009-04-10 14:53:50 -040016struct dentry;
Alexei Starovoitov25415172015-03-25 12:49:20 -070017struct bpf_prog;
Steven Rostedt97f20252009-04-13 11:20:49 -040018
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040019const char *trace_print_flags_seq(struct trace_seq *p, const char *delim,
20 unsigned long flags,
21 const struct trace_print_flags *flag_array);
Steven Rostedtbe74b73a2009-05-26 20:25:22 +020022
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040023const char *trace_print_symbols_seq(struct trace_seq *p, unsigned long val,
24 const struct trace_print_flags *symbol_array);
Steven Rostedt0f4fc292009-05-20 19:21:47 -040025
liubo2fc1b6f2011-04-19 09:35:28 +080026#if BITS_PER_LONG == 32
Ross Zwislerd3213e82017-02-22 15:39:47 -080027const char *trace_print_flags_seq_u64(struct trace_seq *p, const char *delim,
28 unsigned long long flags,
29 const struct trace_print_flags_u64 *flag_array);
30
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040031const char *trace_print_symbols_seq_u64(struct trace_seq *p,
32 unsigned long long val,
33 const struct trace_print_flags_u64
liubo2fc1b6f2011-04-19 09:35:28 +080034 *symbol_array);
35#endif
36
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040037const char *trace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr,
38 unsigned int bitmask_size);
Steven Rostedt (Red Hat)4449bf92014-05-06 13:10:24 -040039
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040040const char *trace_print_hex_seq(struct trace_seq *p,
Daniel Borkmann2acae0d2017-01-25 02:28:16 +010041 const unsigned char *buf, int len,
Daniel Borkmann3898fac2017-02-02 17:09:54 +010042 bool concatenate);
Kei Tokunaga5a2e3992010-04-01 20:40:58 +090043
Steven Rostedt (Red Hat)645df982015-05-04 18:12:44 -040044const char *trace_print_array_seq(struct trace_seq *p,
Alex Bennéeac01ce12015-04-29 16:18:46 +010045 const void *buf, int count,
Dave Martin6ea22482015-01-28 12:48:53 +000046 size_t el_size);
47
Piotr Maziarzef56e042019-11-07 13:45:38 +010048const char *
49trace_print_hex_dump_seq(struct trace_seq *p, const char *prefix_str,
50 int prefix_type, int rowsize, int groupsize,
51 const void *buf, size_t len, bool ascii);
52
Li Zefanf71130d2013-02-21 10:32:38 +080053struct trace_iterator;
54struct trace_event;
55
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -040056int trace_raw_output_prep(struct trace_iterator *iter,
57 struct trace_event *event);
Li Zefanf71130d2013-02-21 10:32:38 +080058
Steven Rostedt97f20252009-04-13 11:20:49 -040059/*
60 * The trace entry - the most basic unit of tracing. This is what
61 * is printed in the end as a single line in the trace output, such as:
62 *
63 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
64 */
65struct trace_entry {
Steven Rostedt89ec0de2009-03-26 11:03:29 -040066 unsigned short type;
Steven Rostedt97f20252009-04-13 11:20:49 -040067 unsigned char flags;
68 unsigned char preempt_count;
69 int pid;
Steven Rostedt97f20252009-04-13 11:20:49 -040070};
71
Steven Rostedt (Red Hat)609a7402015-05-13 13:44:36 -040072#define TRACE_EVENT_TYPE_MAX \
Steven Rostedt89ec0de2009-03-26 11:03:29 -040073 ((1 << (sizeof(((struct trace_entry *)0)->type) * 8)) - 1)
74
Steven Rostedt97f20252009-04-13 11:20:49 -040075/*
76 * Trace iterator - used by printout routines who present trace
77 * results to users and which routines might sleep, etc:
78 */
79struct trace_iterator {
80 struct trace_array *tr;
81 struct tracer *trace;
Steven Rostedt (VMware)1c5eb442020-01-09 18:53:48 -050082 struct array_buffer *array_buffer;
Steven Rostedt97f20252009-04-13 11:20:49 -040083 void *private;
84 int cpu_file;
85 struct mutex mutex;
Steven Rostedt6d158a82012-06-27 20:46:14 -040086 struct ring_buffer_iter **buffer_iter;
Steven Rostedt112f38a72009-06-01 15:16:05 -040087 unsigned long iter_flags;
Steven Rostedt (VMware)ff895102020-03-17 17:32:23 -040088 void *temp; /* temp holder */
89 unsigned int temp_size;
Steven Rostedt97f20252009-04-13 11:20:49 -040090
Lai Jiangshanbc289ae2010-06-03 18:26:24 +080091 /* trace_seq for __print_flags() and __print_symbolic() etc. */
92 struct trace_seq tmp_seq;
93
Andrew Vagined5467d2013-08-02 21:16:43 +040094 cpumask_var_t started;
95
96 /* it's true when current open file is snapshot */
97 bool snapshot;
98
Steven Rostedt97f20252009-04-13 11:20:49 -040099 /* The below is zeroed out in pipe_read */
100 struct trace_seq seq;
101 struct trace_entry *ent;
Steven Rostedtbc21b472010-03-31 19:49:26 -0400102 unsigned long lost_events;
Steven Rostedta63ce5b2009-12-07 09:11:39 -0500103 int leftover;
Steven Rostedt4a9bd3f2011-07-14 16:36:53 -0400104 int ent_size;
Steven Rostedt97f20252009-04-13 11:20:49 -0400105 int cpu;
106 u64 ts;
107
Steven Rostedt97f20252009-04-13 11:20:49 -0400108 loff_t pos;
109 long idx;
110
Andrew Vagined5467d2013-08-02 21:16:43 +0400111 /* All new field here will be zeroed out in pipe_read */
Steven Rostedt97f20252009-04-13 11:20:49 -0400112};
113
David Sharp8be07092012-11-13 12:18:22 -0800114enum trace_iter_flags {
115 TRACE_FILE_LAT_FMT = 1,
116 TRACE_FILE_ANNOTATE = 2,
117 TRACE_FILE_TIME_IN_NS = 4,
118};
119
Steven Rostedt97f20252009-04-13 11:20:49 -0400120
121typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
Steven Rostedta9a57762010-04-22 18:46:14 -0400122 int flags, struct trace_event *event);
123
124struct trace_event_functions {
Steven Rostedt97f20252009-04-13 11:20:49 -0400125 trace_print_func trace;
126 trace_print_func raw;
127 trace_print_func hex;
128 trace_print_func binary;
129};
130
Steven Rostedta9a57762010-04-22 18:46:14 -0400131struct trace_event {
132 struct hlist_node node;
133 struct list_head list;
134 int type;
135 struct trace_event_functions *funcs;
136};
137
Steven Rostedt (Red Hat)9023c932015-05-05 09:39:12 -0400138extern int register_trace_event(struct trace_event *event);
139extern int unregister_trace_event(struct trace_event *event);
Steven Rostedt97f20252009-04-13 11:20:49 -0400140
141/* Return values for print_line callback */
142enum print_line_t {
143 TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */
144 TRACE_TYPE_HANDLED = 1,
145 TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */
146 TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */
147};
148
Steven Rostedt (VMware)af0009f2017-03-16 11:01:06 -0400149enum print_line_t trace_handle_return(struct trace_seq *s);
Steven Rostedt (Red Hat)19a7fe22014-11-12 10:29:54 -0500150
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200151void tracing_generic_entry_update(struct trace_entry *entry,
Cong Wang46710f32019-05-25 09:57:59 -0700152 unsigned short type,
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200153 unsigned long flags,
154 int pc);
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400155struct trace_event_file;
Steven Rostedtccb469a2012-08-02 10:32:10 -0400156
157struct ring_buffer_event *
Steven Rostedt (VMware)13292492019-12-13 13:58:57 -0500158trace_event_buffer_lock_reserve(struct trace_buffer **current_buffer,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400159 struct trace_event_file *trace_file,
Steven Rostedtccb469a2012-08-02 10:32:10 -0400160 int type, unsigned long len,
161 unsigned long flags, int pc);
Steven Rostedt97f20252009-04-13 11:20:49 -0400162
Joel Fernandesd914ba32017-06-26 19:01:55 -0700163#define TRACE_RECORD_CMDLINE BIT(0)
164#define TRACE_RECORD_TGID BIT(1)
165
166void tracing_record_taskinfo(struct task_struct *task, int flags);
167void tracing_record_taskinfo_sched_switch(struct task_struct *prev,
168 struct task_struct *next, int flags);
169
170void tracing_record_cmdline(struct task_struct *task);
171void tracing_record_tgid(struct task_struct *task);
Steven Rostedt97f20252009-04-13 11:20:49 -0400172
Steven Rostedt (Red Hat)892c5052015-05-05 14:18:11 -0400173int trace_output_call(struct trace_iterator *iter, char *name, char *fmt, ...);
Steven Rostedt1d6bae92012-08-09 19:16:14 -0400174
Li Zefan1f9963c2009-07-20 10:20:53 +0800175struct event_filter;
176
Steven Rostedt22392912010-04-21 12:27:06 -0400177enum trace_reg {
178 TRACE_REG_REGISTER,
179 TRACE_REG_UNREGISTER,
Jiri Olsa37d73992012-03-14 00:03:02 +0100180#ifdef CONFIG_PERF_EVENTS
Steven Rostedt22392912010-04-21 12:27:06 -0400181 TRACE_REG_PERF_REGISTER,
182 TRACE_REG_PERF_UNREGISTER,
Jiri Olsaceec0b62012-02-15 15:51:49 +0100183 TRACE_REG_PERF_OPEN,
184 TRACE_REG_PERF_CLOSE,
Peter Zijlstra466c81c2017-10-10 17:15:47 +0200185 /*
186 * These (ADD/DEL) use a 'boolean' return value, where 1 (true) means a
187 * custom action was taken and the default action is not to be
188 * performed.
189 */
Jiri Olsa489c75c2012-02-15 15:51:50 +0100190 TRACE_REG_PERF_ADD,
191 TRACE_REG_PERF_DEL,
Jiri Olsa37d73992012-03-14 00:03:02 +0100192#endif
Steven Rostedt22392912010-04-21 12:27:06 -0400193};
194
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400195struct trace_event_call;
Steven Rostedt22392912010-04-21 12:27:06 -0400196
Peter Zijlstra04ae87a2019-10-24 22:26:59 +0200197#define TRACE_FUNCTION_TYPE ((const char *)~0UL)
198
199struct trace_event_fields {
200 const char *type;
201 union {
202 struct {
203 const char *name;
204 const int size;
205 const int align;
206 const int is_signed;
207 const int filter_type;
208 };
209 int (*define_fields)(struct trace_event_call *);
210 };
211};
212
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400213struct trace_event_class {
Steven Rostedt (Red Hat)acd388f2015-03-31 14:37:12 -0400214 const char *system;
Steven Rostedt22392912010-04-21 12:27:06 -0400215 void *probe;
216#ifdef CONFIG_PERF_EVENTS
217 void *perf_probe;
218#endif
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400219 int (*reg)(struct trace_event_call *event,
Jiri Olsaceec0b62012-02-15 15:51:49 +0100220 enum trace_reg type, void *data);
Peter Zijlstra04ae87a2019-10-24 22:26:59 +0200221 struct trace_event_fields *fields_array;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400222 struct list_head *(*get_fields)(struct trace_event_call *);
Steven Rostedt2e33af02010-04-22 10:35:55 -0400223 struct list_head fields;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400224 int (*raw_init)(struct trace_event_call *);
Steven Rostedt8f082012010-04-20 10:47:33 -0400225};
226
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400227extern int trace_event_reg(struct trace_event_call *event,
Jiri Olsaceec0b62012-02-15 15:51:49 +0100228 enum trace_reg type, void *data);
Steven Rostedta1d0ce82010-06-08 11:22:06 -0400229
Steven Rostedt (Red Hat)3f795dc2015-05-05 13:18:46 -0400230struct trace_event_buffer {
Steven Rostedt (VMware)13292492019-12-13 13:58:57 -0500231 struct trace_buffer *buffer;
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400232 struct ring_buffer_event *event;
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400233 struct trace_event_file *trace_file;
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400234 void *entry;
235 unsigned long flags;
236 int pc;
Masami Hiramatsu8cfcf152020-01-11 01:05:31 +0900237 struct pt_regs *regs;
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400238};
239
Steven Rostedt (Red Hat)3f795dc2015-05-05 13:18:46 -0400240void *trace_event_buffer_reserve(struct trace_event_buffer *fbuffer,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400241 struct trace_event_file *trace_file,
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400242 unsigned long len);
243
Steven Rostedt (Red Hat)3f795dc2015-05-05 13:18:46 -0400244void trace_event_buffer_commit(struct trace_event_buffer *fbuffer);
Steven Rostedt3fd40d12012-08-09 22:42:57 -0400245
Steven Rostedt553552c2010-04-23 11:12:36 -0400246enum {
Steven Rostedt553552c2010-04-23 11:12:36 -0400247 TRACE_EVENT_FL_FILTERED_BIT,
Frederic Weisbecker61c32652010-11-18 01:39:17 +0100248 TRACE_EVENT_FL_CAP_ANY_BIT,
Li Zefan27b14b52011-11-01 09:09:35 +0800249 TRACE_EVENT_FL_NO_SET_FILTER_BIT,
Steven Rostedt9b637762012-05-10 15:55:43 -0400250 TRACE_EVENT_FL_IGNORE_ENABLE_BIT,
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400251 TRACE_EVENT_FL_TRACEPOINT_BIT,
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -0700252 TRACE_EVENT_FL_KPROBE_BIT,
Wang Nan04a22fa2015-07-01 02:13:50 +0000253 TRACE_EVENT_FL_UPROBE_BIT,
Steven Rostedt553552c2010-04-23 11:12:36 -0400254};
255
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400256/*
257 * Event flags:
258 * FILTERED - The event has a filter attached
259 * CAP_ANY - Any user can enable for perf
260 * NO_SET_FILTER - Set when filter has error and is to be ignored
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400261 * IGNORE_ENABLE - For trace internal events, do not enable with debugfs file
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400262 * TRACEPOINT - Event is a tracepoint
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -0700263 * KPROBE - Event is a kprobe
Wang Nan04a22fa2015-07-01 02:13:50 +0000264 * UPROBE - Event is a uprobe
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400265 */
Steven Rostedt553552c2010-04-23 11:12:36 -0400266enum {
Li Zefane870e9a2010-07-02 11:07:32 +0800267 TRACE_EVENT_FL_FILTERED = (1 << TRACE_EVENT_FL_FILTERED_BIT),
Frederic Weisbecker61c32652010-11-18 01:39:17 +0100268 TRACE_EVENT_FL_CAP_ANY = (1 << TRACE_EVENT_FL_CAP_ANY_BIT),
Li Zefan27b14b52011-11-01 09:09:35 +0800269 TRACE_EVENT_FL_NO_SET_FILTER = (1 << TRACE_EVENT_FL_NO_SET_FILTER_BIT),
Steven Rostedt9b637762012-05-10 15:55:43 -0400270 TRACE_EVENT_FL_IGNORE_ENABLE = (1 << TRACE_EVENT_FL_IGNORE_ENABLE_BIT),
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400271 TRACE_EVENT_FL_TRACEPOINT = (1 << TRACE_EVENT_FL_TRACEPOINT_BIT),
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -0700272 TRACE_EVENT_FL_KPROBE = (1 << TRACE_EVENT_FL_KPROBE_BIT),
Wang Nan04a22fa2015-07-01 02:13:50 +0000273 TRACE_EVENT_FL_UPROBE = (1 << TRACE_EVENT_FL_UPROBE_BIT),
Steven Rostedt553552c2010-04-23 11:12:36 -0400274};
275
Wang Nan04a22fa2015-07-01 02:13:50 +0000276#define TRACE_EVENT_FL_UKPROBE (TRACE_EVENT_FL_KPROBE | TRACE_EVENT_FL_UPROBE)
277
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400278struct trace_event_call {
Steven Rostedta59fd602009-04-10 13:52:20 -0400279 struct list_head list;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400280 struct trace_event_class *class;
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400281 union {
282 char *name;
283 /* Set TRACE_EVENT_FL_TRACEPOINT flag when using "tp" */
284 struct tracepoint *tp;
285 };
Steven Rostedt80decc72010-04-23 10:00:22 -0400286 struct trace_event event;
Steven Rostedt (Red Hat)0c564a52015-03-24 17:58:09 -0400287 char *print_fmt;
Li Zefan1f9963c2009-07-20 10:20:53 +0800288 struct event_filter *filter;
Steven Rostedt6d723732009-04-10 14:53:50 -0400289 void *mod;
Jason Baron69fd4f02009-08-10 16:52:44 -0400290 void *data;
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400291 /*
292 * bit 0: filter_active
293 * bit 1: allow trace by non root (cap any)
294 * bit 2: failed to apply filter
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400295 * bit 3: trace internal event (do not enable)
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400296 * bit 4: Event was enabled by module
Tom Zanussif306cc82013-10-24 08:34:17 -0500297 * bit 5: use call filter rather than file filter
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400298 * bit 6: Event is a tracepoint
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400299 */
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400300 int flags; /* static flags of different events */
301
302#ifdef CONFIG_PERF_EVENTS
303 int perf_refcount;
304 struct hlist_head __percpu *perf_events;
Yonghong Songe87c6bc2017-10-23 23:53:08 -0700305 struct bpf_prog_array __rcu *prog_array;
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100306
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400307 int (*perf_perm)(struct trace_event_call *,
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100308 struct perf_event *);
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400309#endif
310};
311
Yonghong Songe87c6bc2017-10-23 23:53:08 -0700312#ifdef CONFIG_PERF_EVENTS
313static inline bool bpf_prog_array_valid(struct trace_event_call *call)
314{
315 /*
316 * This inline function checks whether call->prog_array
317 * is valid or not. The function is called in various places,
318 * outside rcu_read_lock/unlock, as a heuristic to speed up execution.
319 *
320 * If this function returns true, and later call->prog_array
321 * becomes false inside rcu_read_lock/unlock region,
322 * we bail out then. If this function return false,
323 * there is a risk that we might miss a few events if the checking
324 * were delayed until inside rcu_read_lock/unlock region and
325 * call->prog_array happened to become non-NULL then.
326 *
327 * Here, READ_ONCE() is used instead of rcu_access_pointer().
328 * rcu_access_pointer() requires the actual definition of
329 * "struct bpf_prog_array" while READ_ONCE() only needs
330 * a declaration of the same type.
331 */
332 return !!READ_ONCE(call->prog_array);
333}
334#endif
335
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400336static inline const char *
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400337trace_event_name(struct trace_event_call *call)
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400338{
339 if (call->flags & TRACE_EVENT_FL_TRACEPOINT)
340 return call->tp ? call->tp->name : NULL;
341 else
342 return call->name;
343}
344
Cong Wang0aeb1de2019-05-25 09:58:01 -0700345static inline struct list_head *
346trace_get_fields(struct trace_event_call *event_call)
347{
348 if (!event_call->class->get_fields)
349 return &event_call->class->fields;
350 return event_call->class->get_fields(event_call);
351}
352
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400353struct trace_array;
Steven Rostedt (Red Hat)7967b3e2015-05-13 14:59:40 -0400354struct trace_subsystem_dir;
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400355
356enum {
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400357 EVENT_FILE_FL_ENABLED_BIT,
358 EVENT_FILE_FL_RECORDED_CMD_BIT,
Joel Fernandesd914ba32017-06-26 19:01:55 -0700359 EVENT_FILE_FL_RECORDED_TGID_BIT,
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400360 EVENT_FILE_FL_FILTERED_BIT,
361 EVENT_FILE_FL_NO_SET_FILTER_BIT,
362 EVENT_FILE_FL_SOFT_MODE_BIT,
363 EVENT_FILE_FL_SOFT_DISABLED_BIT,
364 EVENT_FILE_FL_TRIGGER_MODE_BIT,
365 EVENT_FILE_FL_TRIGGER_COND_BIT,
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400366 EVENT_FILE_FL_PID_FILTER_BIT,
Steven Rostedt (VMware)065e63f2017-08-31 17:03:47 -0400367 EVENT_FILE_FL_WAS_ENABLED_BIT,
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400368};
369
Tom Zanussie3e2a2c2020-01-29 12:59:22 -0600370extern struct trace_event_file *trace_get_event_file(const char *instance,
371 const char *system,
372 const char *event);
373extern void trace_put_event_file(struct trace_event_file *file);
374
Tom Zanussi86c54262020-01-29 12:59:24 -0600375#define MAX_DYNEVENT_CMD_LEN (2048)
376
377enum dynevent_type {
Tom Zanussi35ca5202020-01-29 12:59:25 -0600378 DYNEVENT_TYPE_SYNTH = 1,
Tom Zanussi2a588dd2020-01-29 12:59:29 -0600379 DYNEVENT_TYPE_KPROBE,
Tom Zanussi86c54262020-01-29 12:59:24 -0600380 DYNEVENT_TYPE_NONE,
381};
382
383struct dynevent_cmd;
384
385typedef int (*dynevent_create_fn_t)(struct dynevent_cmd *cmd);
386
387struct dynevent_cmd {
Tom Zanussi2b909272020-01-31 15:55:34 -0600388 struct seq_buf seq;
Tom Zanussi86c54262020-01-29 12:59:24 -0600389 const char *event_name;
Tom Zanussi86c54262020-01-29 12:59:24 -0600390 unsigned int n_fields;
391 enum dynevent_type type;
392 dynevent_create_fn_t run_command;
393 void *private_data;
394};
395
396extern int dynevent_create(struct dynevent_cmd *cmd);
397
Tom Zanussif5f6b252020-01-29 12:59:23 -0600398extern int synth_event_delete(const char *name);
399
Tom Zanussi35ca5202020-01-29 12:59:25 -0600400extern void synth_event_cmd_init(struct dynevent_cmd *cmd,
401 char *buf, int maxlen);
402
403extern int __synth_event_gen_cmd_start(struct dynevent_cmd *cmd,
404 const char *name,
405 struct module *mod, ...);
406
407#define synth_event_gen_cmd_start(cmd, name, mod, ...) \
408 __synth_event_gen_cmd_start(cmd, name, mod, ## __VA_ARGS__, NULL)
409
410struct synth_field_desc {
411 const char *type;
412 const char *name;
413};
414
415extern int synth_event_gen_cmd_array_start(struct dynevent_cmd *cmd,
416 const char *name,
417 struct module *mod,
418 struct synth_field_desc *fields,
419 unsigned int n_fields);
420extern int synth_event_create(const char *name,
421 struct synth_field_desc *fields,
422 unsigned int n_fields, struct module *mod);
423
424extern int synth_event_add_field(struct dynevent_cmd *cmd,
425 const char *type,
426 const char *name);
427extern int synth_event_add_field_str(struct dynevent_cmd *cmd,
428 const char *type_name);
429extern int synth_event_add_fields(struct dynevent_cmd *cmd,
430 struct synth_field_desc *fields,
431 unsigned int n_fields);
432
433#define synth_event_gen_cmd_end(cmd) \
434 dynevent_create(cmd)
435
Tom Zanussi8dcc53a2020-01-29 12:59:27 -0600436struct synth_event;
437
438struct synth_event_trace_state {
439 struct trace_event_buffer fbuffer;
440 struct synth_trace_event *entry;
441 struct trace_buffer *buffer;
442 struct synth_event *event;
443 unsigned int cur_field;
444 unsigned int n_u64;
Tom Zanussi72765312020-02-10 17:06:50 -0600445 bool disabled;
Tom Zanussi8dcc53a2020-01-29 12:59:27 -0600446 bool add_next;
447 bool add_name;
448};
449
450extern int synth_event_trace(struct trace_event_file *file,
451 unsigned int n_vals, ...);
452extern int synth_event_trace_array(struct trace_event_file *file, u64 *vals,
453 unsigned int n_vals);
454extern int synth_event_trace_start(struct trace_event_file *file,
455 struct synth_event_trace_state *trace_state);
456extern int synth_event_add_next_val(u64 val,
457 struct synth_event_trace_state *trace_state);
458extern int synth_event_add_val(const char *field_name, u64 val,
459 struct synth_event_trace_state *trace_state);
460extern int synth_event_trace_end(struct synth_event_trace_state *trace_state);
461
Tom Zanussi2a588dd2020-01-29 12:59:29 -0600462extern int kprobe_event_delete(const char *name);
463
464extern void kprobe_event_cmd_init(struct dynevent_cmd *cmd,
465 char *buf, int maxlen);
466
467#define kprobe_event_gen_cmd_start(cmd, name, loc, ...) \
468 __kprobe_event_gen_cmd_start(cmd, false, name, loc, ## __VA_ARGS__, NULL)
469
470#define kretprobe_event_gen_cmd_start(cmd, name, loc, ...) \
471 __kprobe_event_gen_cmd_start(cmd, true, name, loc, ## __VA_ARGS__, NULL)
472
473extern int __kprobe_event_gen_cmd_start(struct dynevent_cmd *cmd,
474 bool kretprobe,
475 const char *name,
476 const char *loc, ...);
477
478#define kprobe_event_add_fields(cmd, ...) \
479 __kprobe_event_add_fields(cmd, ## __VA_ARGS__, NULL)
480
481#define kprobe_event_add_field(cmd, field) \
482 __kprobe_event_add_fields(cmd, field, NULL)
483
484extern int __kprobe_event_add_fields(struct dynevent_cmd *cmd, ...);
485
486#define kprobe_event_gen_cmd_end(cmd) \
487 dynevent_create(cmd)
488
489#define kretprobe_event_gen_cmd_end(cmd) \
490 dynevent_create(cmd)
491
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400492/*
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400493 * Event file flags:
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400494 * ENABLED - The event is enabled
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400495 * RECORDED_CMD - The comms should be recorded at sched_switch
Joel Fernandesd914ba32017-06-26 19:01:55 -0700496 * RECORDED_TGID - The tgids should be recorded at sched_switch
Tom Zanussif306cc82013-10-24 08:34:17 -0500497 * FILTERED - The event has a filter attached
498 * NO_SET_FILTER - Set when filter has error and is to be ignored
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400499 * SOFT_MODE - The event is enabled/disabled by SOFT_DISABLED
500 * SOFT_DISABLED - When set, do not trace the event (even though its
501 * tracepoint may be enabled)
Tom Zanussi85f2b082013-10-24 08:59:24 -0500502 * TRIGGER_MODE - When set, invoke the triggers associated with the event
Tom Zanussibac5fb92013-10-24 08:59:29 -0500503 * TRIGGER_COND - When set, one or more triggers has an associated filter
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400504 * PID_FILTER - When set, the event is filtered based on pid
Steven Rostedt (VMware)065e63f2017-08-31 17:03:47 -0400505 * WAS_ENABLED - Set when enabled to know to clear trace on module removal
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400506 */
507enum {
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400508 EVENT_FILE_FL_ENABLED = (1 << EVENT_FILE_FL_ENABLED_BIT),
509 EVENT_FILE_FL_RECORDED_CMD = (1 << EVENT_FILE_FL_RECORDED_CMD_BIT),
Joel Fernandesd914ba32017-06-26 19:01:55 -0700510 EVENT_FILE_FL_RECORDED_TGID = (1 << EVENT_FILE_FL_RECORDED_TGID_BIT),
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400511 EVENT_FILE_FL_FILTERED = (1 << EVENT_FILE_FL_FILTERED_BIT),
512 EVENT_FILE_FL_NO_SET_FILTER = (1 << EVENT_FILE_FL_NO_SET_FILTER_BIT),
513 EVENT_FILE_FL_SOFT_MODE = (1 << EVENT_FILE_FL_SOFT_MODE_BIT),
514 EVENT_FILE_FL_SOFT_DISABLED = (1 << EVENT_FILE_FL_SOFT_DISABLED_BIT),
515 EVENT_FILE_FL_TRIGGER_MODE = (1 << EVENT_FILE_FL_TRIGGER_MODE_BIT),
516 EVENT_FILE_FL_TRIGGER_COND = (1 << EVENT_FILE_FL_TRIGGER_COND_BIT),
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400517 EVENT_FILE_FL_PID_FILTER = (1 << EVENT_FILE_FL_PID_FILTER_BIT),
Steven Rostedt (VMware)065e63f2017-08-31 17:03:47 -0400518 EVENT_FILE_FL_WAS_ENABLED = (1 << EVENT_FILE_FL_WAS_ENABLED_BIT),
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400519};
520
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400521struct trace_event_file {
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400522 struct list_head list;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400523 struct trace_event_call *event_call;
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800524 struct event_filter __rcu *filter;
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400525 struct dentry *dir;
526 struct trace_array *tr;
Steven Rostedt (Red Hat)7967b3e2015-05-13 14:59:40 -0400527 struct trace_subsystem_dir *system;
Tom Zanussi85f2b082013-10-24 08:59:24 -0500528 struct list_head triggers;
Steven Rostedt97f20252009-04-13 11:20:49 -0400529
Steven Rostedt553552c2010-04-23 11:12:36 -0400530 /*
531 * 32 bit flags:
Steven Rostedt (Red Hat)57d01ad2013-03-12 12:38:06 -0400532 * bit 0: enabled
533 * bit 1: enabled cmd record
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400534 * bit 2: enable/disable with the soft disable bit
535 * bit 3: soft disabled
Tom Zanussi85f2b082013-10-24 08:59:24 -0500536 * bit 4: trigger enabled
Steven Rostedt553552c2010-04-23 11:12:36 -0400537 *
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400538 * Note: The bits must be set atomically to prevent races
539 * from other writers. Reads of flags do not need to be in
540 * sync as they occur in critical sections. But the way flags
Steven Rostedtae63b31e2012-05-03 23:09:03 -0400541 * is currently used, these changes do not affect the code
Steven Rostedt1eaa4782010-05-14 10:19:13 -0400542 * except that when a change is made, it may have a slight
543 * delay in propagating the changes to other CPUs due to
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400544 * caching and such. Which is mostly OK ;-)
Steven Rostedt553552c2010-04-23 11:12:36 -0400545 */
Steven Rostedt (Red Hat)417944c2013-03-12 13:26:18 -0400546 unsigned long flags;
Masami Hiramatsu1cf4c072013-05-09 14:44:29 +0900547 atomic_t sm_ref; /* soft-mode reference counter */
Tom Zanussi85f2b082013-10-24 08:59:24 -0500548 atomic_t tm_ref; /* trigger-mode reference counter */
Steven Rostedt97f20252009-04-13 11:20:49 -0400549};
550
Frederic Weisbecker53cf810b2010-11-18 02:11:42 +0100551#define __TRACE_EVENT_FLAGS(name, value) \
552 static int __init trace_init_flags_##name(void) \
553 { \
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400554 event_##name.flags |= value; \
Frederic Weisbecker53cf810b2010-11-18 02:11:42 +0100555 return 0; \
556 } \
557 early_initcall(trace_init_flags_##name);
558
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100559#define __TRACE_EVENT_PERF_PERM(name, expr...) \
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400560 static int perf_perm_##name(struct trace_event_call *tp_event, \
Peter Zijlstrad5b5f392013-11-14 16:23:04 +0100561 struct perf_event *p_event) \
562 { \
563 return ({ expr; }); \
564 } \
565 static int __init trace_init_perf_perm_##name(void) \
566 { \
567 event_##name.perf_perm = &perf_perm_##name; \
568 return 0; \
569 } \
570 early_initcall(trace_init_perf_perm_##name);
571
Frederic Weisbecker97d5a222010-03-05 05:35:37 +0100572#define PERF_MAX_TRACE_SIZE 2048
Frederic Weisbecker20ab44252009-09-18 06:10:28 +0200573
Steven Rostedt16bb8eb2009-09-12 19:04:54 -0400574#define MAX_FILTER_STR_VAL 256 /* Should handle KSYM_SYMBOL_LEN */
Steven Rostedt97f20252009-04-13 11:20:49 -0400575
Tom Zanussi85f2b082013-10-24 08:59:24 -0500576enum event_trigger_type {
577 ETT_NONE = (0),
Tom Zanussi2a2df322013-10-24 08:59:25 -0500578 ETT_TRACE_ONOFF = (1 << 0),
Tom Zanussi93e31ff2013-10-24 08:59:26 -0500579 ETT_SNAPSHOT = (1 << 1),
Tom Zanussif21ecbb2013-10-24 08:59:27 -0500580 ETT_STACKTRACE = (1 << 2),
Tom Zanussi7862ad12013-10-24 08:59:28 -0500581 ETT_EVENT_ENABLE = (1 << 3),
Tom Zanussi7ef224d2016-03-03 12:54:42 -0600582 ETT_EVENT_HIST = (1 << 4),
Tom Zanussid0bad492016-03-03 12:54:55 -0600583 ETT_HIST_ENABLE = (1 << 5),
Tom Zanussi85f2b082013-10-24 08:59:24 -0500584};
585
Li Zefan6fb29152009-10-15 11:21:42 +0800586extern int filter_match_preds(struct event_filter *filter, void *rec);
Tom Zanussif306cc82013-10-24 08:34:17 -0500587
Tom Zanussi1ac4f512018-01-15 20:51:42 -0600588extern enum event_trigger_type
589event_triggers_call(struct trace_event_file *file, void *rec,
590 struct ring_buffer_event *event);
591extern void
592event_triggers_post_call(struct trace_event_file *file,
Steven Rostedt (VMware)c94e45b2018-05-07 16:02:14 -0400593 enum event_trigger_type tt);
Steven Rostedt97f20252009-04-13 11:20:49 -0400594
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400595bool trace_event_ignore_this_pid(struct trace_event_file *trace_file);
596
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500597/**
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400598 * trace_trigger_soft_disabled - do triggers and test if soft disabled
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500599 * @file: The file pointer of the event to test
600 *
601 * If any triggers without filters are attached to this event, they
602 * will be called here. If the event is soft disabled and has no
603 * triggers that require testing the fields, it will return true,
604 * otherwise false.
605 */
606static inline bool
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400607trace_trigger_soft_disabled(struct trace_event_file *file)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500608{
609 unsigned long eflags = file->flags;
610
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400611 if (!(eflags & EVENT_FILE_FL_TRIGGER_COND)) {
612 if (eflags & EVENT_FILE_FL_TRIGGER_MODE)
Tom Zanussi1ac4f512018-01-15 20:51:42 -0600613 event_triggers_call(file, NULL, NULL);
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400614 if (eflags & EVENT_FILE_FL_SOFT_DISABLED)
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500615 return true;
Steven Rostedt (Red Hat)3fdaf802015-09-25 12:58:44 -0400616 if (eflags & EVENT_FILE_FL_PID_FILTER)
617 return trace_event_ignore_this_pid(file);
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500618 }
619 return false;
620}
621
Wang Nan098d2162015-07-01 02:13:49 +0000622#ifdef CONFIG_BPF_EVENTS
Yonghong Songe87c6bc2017-10-23 23:53:08 -0700623unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx);
624int perf_event_attach_bpf_prog(struct perf_event *event, struct bpf_prog *prog);
625void perf_event_detach_bpf_prog(struct perf_event *event);
Yonghong Songf4e22982017-12-13 10:35:37 -0800626int perf_event_query_prog_array(struct perf_event *event, void __user *info);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700627int bpf_probe_register(struct bpf_raw_event_map *btp, struct bpf_prog *prog);
628int bpf_probe_unregister(struct bpf_raw_event_map *btp, struct bpf_prog *prog);
Matt Mullinsa38d1102018-12-12 16:42:37 -0800629struct bpf_raw_event_map *bpf_get_raw_tracepoint(const char *name);
630void bpf_put_raw_tracepoint(struct bpf_raw_event_map *btp);
Yonghong Song41bdc4b2018-05-24 11:21:09 -0700631int bpf_get_perf_event_info(const struct perf_event *event, u32 *prog_id,
632 u32 *fd_type, const char **buf,
633 u64 *probe_offset, u64 *probe_addr);
Alexei Starovoitov25415172015-03-25 12:49:20 -0700634#else
Yonghong Songe87c6bc2017-10-23 23:53:08 -0700635static inline unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx)
Alexei Starovoitov25415172015-03-25 12:49:20 -0700636{
637 return 1;
638}
Yonghong Songe87c6bc2017-10-23 23:53:08 -0700639
640static inline int
641perf_event_attach_bpf_prog(struct perf_event *event, struct bpf_prog *prog)
642{
643 return -EOPNOTSUPP;
644}
645
646static inline void perf_event_detach_bpf_prog(struct perf_event *event) { }
647
Yonghong Songf4e22982017-12-13 10:35:37 -0800648static inline int
649perf_event_query_prog_array(struct perf_event *event, void __user *info)
650{
651 return -EOPNOTSUPP;
652}
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700653static inline int bpf_probe_register(struct bpf_raw_event_map *btp, struct bpf_prog *p)
654{
655 return -EOPNOTSUPP;
656}
657static inline int bpf_probe_unregister(struct bpf_raw_event_map *btp, struct bpf_prog *p)
658{
659 return -EOPNOTSUPP;
660}
Matt Mullinsa38d1102018-12-12 16:42:37 -0800661static inline struct bpf_raw_event_map *bpf_get_raw_tracepoint(const char *name)
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700662{
663 return NULL;
664}
Matt Mullinsa38d1102018-12-12 16:42:37 -0800665static inline void bpf_put_raw_tracepoint(struct bpf_raw_event_map *btp)
666{
667}
Yonghong Song41bdc4b2018-05-24 11:21:09 -0700668static inline int bpf_get_perf_event_info(const struct perf_event *event,
669 u32 *prog_id, u32 *fd_type,
670 const char **buf, u64 *probe_offset,
671 u64 *probe_addr)
672{
673 return -EOPNOTSUPP;
674}
Alexei Starovoitov25415172015-03-25 12:49:20 -0700675#endif
676
Li Zefan43b51ea2009-08-07 10:33:22 +0800677enum {
678 FILTER_OTHER = 0,
679 FILTER_STATIC_STRING,
680 FILTER_DYN_STRING,
Li Zefan87a342f2009-08-07 10:33:43 +0800681 FILTER_PTR_STRING,
Jiri Olsa02aa3162012-02-15 15:51:53 +0100682 FILTER_TRACE_FN,
Steven Rostedt (Red Hat)e57cbaf2016-03-03 17:18:20 -0500683 FILTER_COMM,
684 FILTER_CPU,
Li Zefan43b51ea2009-08-07 10:33:22 +0800685};
686
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400687extern int trace_event_raw_init(struct trace_event_call *call);
688extern int trace_define_field(struct trace_event_call *call, const char *type,
Frederic Weisbeckeraeaeae12009-08-27 05:09:51 +0200689 const char *name, int offset, int size,
690 int is_signed, int filter_type);
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400691extern int trace_add_event_call(struct trace_event_call *call);
692extern int trace_remove_event_call(struct trace_event_call *call);
Alexei Starovoitov32bbe002016-04-06 18:43:28 -0700693extern int trace_event_get_offsets(struct trace_event_call *call);
Steven Rostedt97f20252009-04-13 11:20:49 -0400694
Steven Rostedt (Red Hat)d2802d02013-04-19 17:10:27 -0400695#define is_signed_type(type) (((type)(-1)) < (type)1)
Steven Rostedt97f20252009-04-13 11:20:49 -0400696
Denis Efremov595a4382019-07-04 20:21:10 +0300697int ftrace_set_clr_event(struct trace_array *tr, char *buf, int set);
Steven Rostedt4671c792009-05-08 16:27:41 -0400698int trace_set_clr_event(const char *system, const char *event, int set);
Divya Indi28879782019-11-20 11:08:38 -0800699int trace_array_set_clr_event(struct trace_array *tr, const char *system,
700 const char *event, bool enable);
Steven Rostedt97f20252009-04-13 11:20:49 -0400701/*
702 * The double __builtin_constant_p is because gcc will give us an error
703 * if we try to allocate the static variable to fmt if it is not a
704 * constant. Even with the outer if statement optimizing out.
705 */
706#define event_trace_printk(ip, fmt, args...) \
707do { \
708 __trace_printk_check_format(fmt, ##args); \
709 tracing_record_cmdline(current); \
710 if (__builtin_constant_p(fmt)) { \
711 static const char *trace_printk_fmt \
712 __attribute__((section("__trace_printk_fmt"))) = \
713 __builtin_constant_p(fmt) ? fmt : NULL; \
714 \
715 __trace_bprintk(ip, trace_printk_fmt, ##args); \
716 } else \
717 __trace_printk(ip, fmt, ##args); \
718} while (0)
719
Li Zefan07b139c2009-12-21 14:27:35 +0800720#ifdef CONFIG_PERF_EVENTS
Li Zefan6fb29152009-10-15 11:21:42 +0800721struct perf_event;
Frederic Weisbeckerc5306652010-03-03 07:16:16 +0100722
723DECLARE_PER_CPU(struct pt_regs, perf_trace_regs);
Josef Bacik9802d862017-12-11 11:36:48 -0500724DECLARE_PER_CPU(int, bpf_kprobe_override);
Frederic Weisbeckerc5306652010-03-03 07:16:16 +0100725
Peter Zijlstra1c024eca2010-05-19 14:02:22 +0200726extern int perf_trace_init(struct perf_event *event);
727extern void perf_trace_destroy(struct perf_event *event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200728extern int perf_trace_add(struct perf_event *event, int flags);
729extern void perf_trace_del(struct perf_event *event, int flags);
Song Liue12f03d2017-12-06 14:45:15 -0800730#ifdef CONFIG_KPROBE_EVENTS
731extern int perf_kprobe_init(struct perf_event *event, bool is_retprobe);
732extern void perf_kprobe_destroy(struct perf_event *event);
Yonghong Song41bdc4b2018-05-24 11:21:09 -0700733extern int bpf_get_kprobe_info(const struct perf_event *event,
734 u32 *fd_type, const char **symbol,
735 u64 *probe_offset, u64 *probe_addr,
736 bool perf_type_tracepoint);
Song Liue12f03d2017-12-06 14:45:15 -0800737#endif
Song Liu33ea4b22017-12-06 14:45:16 -0800738#ifdef CONFIG_UPROBE_EVENTS
Song Liua6ca88b2018-10-01 22:36:36 -0700739extern int perf_uprobe_init(struct perf_event *event,
740 unsigned long ref_ctr_offset, bool is_retprobe);
Song Liu33ea4b22017-12-06 14:45:16 -0800741extern void perf_uprobe_destroy(struct perf_event *event);
Yonghong Song41bdc4b2018-05-24 11:21:09 -0700742extern int bpf_get_uprobe_info(const struct perf_event *event,
743 u32 *fd_type, const char **filename,
744 u64 *probe_offset, bool perf_type_tracepoint);
Song Liu33ea4b22017-12-06 14:45:16 -0800745#endif
Peter Zijlstra1c024eca2010-05-19 14:02:22 +0200746extern int ftrace_profile_set_filter(struct perf_event *event, int event_id,
Li Zefan6fb29152009-10-15 11:21:42 +0800747 char *filter_str);
748extern void ftrace_profile_free_filter(struct perf_event *event);
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -0700749void perf_trace_buf_update(void *record, u16 type);
750void *perf_trace_buf_alloc(int size, struct pt_regs **regs, int *rctxp);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800751
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700752void bpf_trace_run1(struct bpf_prog *prog, u64 arg1);
753void bpf_trace_run2(struct bpf_prog *prog, u64 arg1, u64 arg2);
754void bpf_trace_run3(struct bpf_prog *prog, u64 arg1, u64 arg2,
755 u64 arg3);
756void bpf_trace_run4(struct bpf_prog *prog, u64 arg1, u64 arg2,
757 u64 arg3, u64 arg4);
758void bpf_trace_run5(struct bpf_prog *prog, u64 arg1, u64 arg2,
759 u64 arg3, u64 arg4, u64 arg5);
760void bpf_trace_run6(struct bpf_prog *prog, u64 arg1, u64 arg2,
761 u64 arg3, u64 arg4, u64 arg5, u64 arg6);
762void bpf_trace_run7(struct bpf_prog *prog, u64 arg1, u64 arg2,
763 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7);
764void bpf_trace_run8(struct bpf_prog *prog, u64 arg1, u64 arg2,
765 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
766 u64 arg8);
767void bpf_trace_run9(struct bpf_prog *prog, u64 arg1, u64 arg2,
768 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
769 u64 arg8, u64 arg9);
770void bpf_trace_run10(struct bpf_prog *prog, u64 arg1, u64 arg2,
771 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
772 u64 arg8, u64 arg9, u64 arg10);
773void bpf_trace_run11(struct bpf_prog *prog, u64 arg1, u64 arg2,
774 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
775 u64 arg8, u64 arg9, u64 arg10, u64 arg11);
776void bpf_trace_run12(struct bpf_prog *prog, u64 arg1, u64 arg2,
777 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
778 u64 arg8, u64 arg9, u64 arg10, u64 arg11, u64 arg12);
Alexei Starovoitov85b67bc2016-04-18 20:11:50 -0700779void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
780 struct trace_event_call *call, u64 count,
781 struct pt_regs *regs, struct hlist_head *head,
782 struct task_struct *task);
783
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800784static inline void
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -0700785perf_trace_buf_submit(void *raw_data, int size, int rctx, u16 type,
Andrew Vagine6dab5f2012-07-11 18:14:58 +0400786 u64 count, struct pt_regs *regs, void *head,
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +0200787 struct task_struct *task)
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800788{
Peter Zijlstra8fd0fbb2017-10-11 09:45:29 +0200789 perf_tp_event(type, count, raw_data, size, regs, head, rctx, task);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +0800790}
Yonghong Songe87c6bc2017-10-23 23:53:08 -0700791
Li Zefan6fb29152009-10-15 11:21:42 +0800792#endif
793
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400794#endif /* _LINUX_TRACE_EVENT_H */