Merge tag 'perf-tools-for-v6.4-3-2023-05-06' of git://git.kernel.org/pub/scm/linux...
[linux-block.git] / include / linux / trace_events.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
bac5fb97 2
645df987
SRRH
3#ifndef _LINUX_TRACE_EVENT_H
4#define _LINUX_TRACE_EVENT_H
97f20251 5
97f20251 6#include <linux/ring_buffer.h>
16bb8eb1 7#include <linux/trace_seq.h>
be74b73a 8#include <linux/percpu.h>
20ab4425 9#include <linux/hardirq.h>
430ad5a6 10#include <linux/perf_event.h>
de7b2973 11#include <linux/tracepoint.h>
97f20251
SR
12
13struct trace_array;
1c5eb448 14struct array_buffer;
97f20251 15struct tracer;
6d723736 16struct dentry;
2541517c 17struct bpf_prog;
0dcac272 18union bpf_attr;
97f20251 19
645df987
SRRH
20const char *trace_print_flags_seq(struct trace_seq *p, const char *delim,
21 unsigned long flags,
22 const struct trace_print_flags *flag_array);
be74b73a 23
645df987
SRRH
24const char *trace_print_symbols_seq(struct trace_seq *p, unsigned long val,
25 const struct trace_print_flags *symbol_array);
0f4fc29d 26
2fc1b6f0 27#if BITS_PER_LONG == 32
d3213e8f
RZ
28const char *trace_print_flags_seq_u64(struct trace_seq *p, const char *delim,
29 unsigned long long flags,
30 const struct trace_print_flags_u64 *flag_array);
31
645df987
SRRH
32const char *trace_print_symbols_seq_u64(struct trace_seq *p,
33 unsigned long long val,
34 const struct trace_print_flags_u64
2fc1b6f0 35 *symbol_array);
36#endif
37
645df987
SRRH
38const char *trace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr,
39 unsigned int bitmask_size);
4449bf92 40
645df987 41const char *trace_print_hex_seq(struct trace_seq *p,
2acae0d5 42 const unsigned char *buf, int len,
3898fac1 43 bool concatenate);
5a2e3995 44
645df987 45const char *trace_print_array_seq(struct trace_seq *p,
ac01ce14 46 const void *buf, int count,
6ea22486
DM
47 size_t el_size);
48
ef56e047
PM
49const char *
50trace_print_hex_dump_seq(struct trace_seq *p, const char *prefix_str,
51 int prefix_type, int rowsize, int groupsize,
52 const void *buf, size_t len, bool ascii);
53
f71130de
LZ
54struct trace_iterator;
55struct trace_event;
56
892c505a
SRRH
57int trace_raw_output_prep(struct trace_iterator *iter,
58 struct trace_event *event);
efbbdaa2
MH
59extern __printf(2, 3)
60void trace_event_printf(struct trace_iterator *iter, const char *fmt, ...);
f71130de 61
97f20251
SR
62/*
63 * The trace entry - the most basic unit of tracing. This is what
64 * is printed in the end as a single line in the trace output, such as:
65 *
66 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
67 */
68struct trace_entry {
89ec0dee 69 unsigned short type;
97f20251
SR
70 unsigned char flags;
71 unsigned char preempt_count;
72 int pid;
97f20251
SR
73};
74
609a7404 75#define TRACE_EVENT_TYPE_MAX \
89ec0dee
SR
76 ((1 << (sizeof(((struct trace_entry *)0)->type) * 8)) - 1)
77
97f20251
SR
78/*
79 * Trace iterator - used by printout routines who present trace
80 * results to users and which routines might sleep, etc:
81 */
82struct trace_iterator {
83 struct trace_array *tr;
84 struct tracer *trace;
1c5eb448 85 struct array_buffer *array_buffer;
97f20251
SR
86 void *private;
87 int cpu_file;
88 struct mutex mutex;
6d158a81 89 struct ring_buffer_iter **buffer_iter;
112f38a7 90 unsigned long iter_flags;
ff895103
SRV
91 void *temp; /* temp holder */
92 unsigned int temp_size;
efbbdaa2
MH
93 char *fmt; /* modified format holder */
94 unsigned int fmt_size;
f3ddb74a 95 long wait_index;
97f20251 96
bc289ae9
LJ
97 /* trace_seq for __print_flags() and __print_symbolic() etc. */
98 struct trace_seq tmp_seq;
99
ed5467da
AV
100 cpumask_var_t started;
101
102 /* it's true when current open file is snapshot */
103 bool snapshot;
104
97f20251
SR
105 /* The below is zeroed out in pipe_read */
106 struct trace_seq seq;
107 struct trace_entry *ent;
bc21b478 108 unsigned long lost_events;
a63ce5b3 109 int leftover;
4a9bd3f1 110 int ent_size;
97f20251
SR
111 int cpu;
112 u64 ts;
113
97f20251
SR
114 loff_t pos;
115 long idx;
116
ed5467da 117 /* All new field here will be zeroed out in pipe_read */
97f20251
SR
118};
119
8be0709f
DS
120enum trace_iter_flags {
121 TRACE_FILE_LAT_FMT = 1,
122 TRACE_FILE_ANNOTATE = 2,
123 TRACE_FILE_TIME_IN_NS = 4,
124};
125
97f20251
SR
126
127typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
a9a57763
SR
128 int flags, struct trace_event *event);
129
130struct trace_event_functions {
97f20251
SR
131 trace_print_func trace;
132 trace_print_func raw;
133 trace_print_func hex;
134 trace_print_func binary;
135};
136
a9a57763
SR
137struct trace_event {
138 struct hlist_node node;
a9a57763
SR
139 int type;
140 struct trace_event_functions *funcs;
141};
142
9023c930
SRRH
143extern int register_trace_event(struct trace_event *event);
144extern int unregister_trace_event(struct trace_event *event);
97f20251
SR
145
146/* Return values for print_line callback */
147enum print_line_t {
148 TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */
149 TRACE_TYPE_HANDLED = 1,
150 TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */
151 TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */
152};
153
af0009fc 154enum print_line_t trace_handle_return(struct trace_seq *s);
19a7fe20 155
36590c50
SAS
156static inline void tracing_generic_entry_update(struct trace_entry *entry,
157 unsigned short type,
158 unsigned int trace_ctx)
159{
36590c50 160 entry->preempt_count = trace_ctx & 0xff;
58177084 161 entry->pid = current->pid;
36590c50
SAS
162 entry->type = type;
163 entry->flags = trace_ctx >> 16;
164}
165
0c02006e
SAS
166unsigned int tracing_gen_ctx_irq_test(unsigned int irqs_status);
167
168enum trace_flag_type {
169 TRACE_FLAG_IRQS_OFF = 0x01,
170 TRACE_FLAG_IRQS_NOSUPPORT = 0x02,
171 TRACE_FLAG_NEED_RESCHED = 0x04,
172 TRACE_FLAG_HARDIRQ = 0x08,
173 TRACE_FLAG_SOFTIRQ = 0x10,
174 TRACE_FLAG_PREEMPT_RESCHED = 0x20,
175 TRACE_FLAG_NMI = 0x40,
289e7b0f 176 TRACE_FLAG_BH_OFF = 0x80,
0c02006e
SAS
177};
178
179#ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
180static inline unsigned int tracing_gen_ctx_flags(unsigned long irqflags)
181{
182 unsigned int irq_status = irqs_disabled_flags(irqflags) ?
183 TRACE_FLAG_IRQS_OFF : 0;
184 return tracing_gen_ctx_irq_test(irq_status);
185}
186static inline unsigned int tracing_gen_ctx(void)
187{
188 unsigned long irqflags;
189
190 local_save_flags(irqflags);
191 return tracing_gen_ctx_flags(irqflags);
192}
193#else
194
195static inline unsigned int tracing_gen_ctx_flags(unsigned long irqflags)
196{
197 return tracing_gen_ctx_irq_test(TRACE_FLAG_IRQS_NOSUPPORT);
198}
199static inline unsigned int tracing_gen_ctx(void)
200{
201 return tracing_gen_ctx_irq_test(TRACE_FLAG_IRQS_NOSUPPORT);
202}
203#endif
204
205static inline unsigned int tracing_gen_ctx_dec(void)
206{
207 unsigned int trace_ctx;
208
209 trace_ctx = tracing_gen_ctx();
210 /*
f2cc020d 211 * Subtract one from the preemption counter if preemption is enabled,
0c02006e
SAS
212 * see trace_event_buffer_reserve()for details.
213 */
214 if (IS_ENABLED(CONFIG_PREEMPTION))
215 trace_ctx--;
216 return trace_ctx;
217}
36590c50 218
7f1d2f82 219struct trace_event_file;
ccb469a1
SR
220
221struct ring_buffer_event *
13292494 222trace_event_buffer_lock_reserve(struct trace_buffer **current_buffer,
7f1d2f82 223 struct trace_event_file *trace_file,
ccb469a1 224 int type, unsigned long len,
36590c50 225 unsigned int trace_ctx);
97f20251 226
d914ba37
JF
227#define TRACE_RECORD_CMDLINE BIT(0)
228#define TRACE_RECORD_TGID BIT(1)
229
230void tracing_record_taskinfo(struct task_struct *task, int flags);
231void tracing_record_taskinfo_sched_switch(struct task_struct *prev,
232 struct task_struct *next, int flags);
233
234void tracing_record_cmdline(struct task_struct *task);
235void tracing_record_tgid(struct task_struct *task);
97f20251 236
bfd5a5e8
DH
237int trace_output_call(struct trace_iterator *iter, char *name, char *fmt, ...)
238 __printf(3, 4);
1d6bae96 239
1f9963cb
LZ
240struct event_filter;
241
2239291a
SR
242enum trace_reg {
243 TRACE_REG_REGISTER,
244 TRACE_REG_UNREGISTER,
37d73998 245#ifdef CONFIG_PERF_EVENTS
2239291a
SR
246 TRACE_REG_PERF_REGISTER,
247 TRACE_REG_PERF_UNREGISTER,
ceec0b6f
JO
248 TRACE_REG_PERF_OPEN,
249 TRACE_REG_PERF_CLOSE,
466c81c4
PZ
250 /*
251 * These (ADD/DEL) use a 'boolean' return value, where 1 (true) means a
252 * custom action was taken and the default action is not to be
253 * performed.
254 */
489c75c3
JO
255 TRACE_REG_PERF_ADD,
256 TRACE_REG_PERF_DEL,
37d73998 257#endif
2239291a
SR
258};
259
2425bcb9 260struct trace_event_call;
2239291a 261
04ae87a5
PZ
262#define TRACE_FUNCTION_TYPE ((const char *)~0UL)
263
264struct trace_event_fields {
265 const char *type;
266 union {
267 struct {
268 const char *name;
269 const int size;
270 const int align;
271 const int is_signed;
272 const int filter_type;
b6c7abd1 273 const int len;
04ae87a5
PZ
274 };
275 int (*define_fields)(struct trace_event_call *);
276 };
277};
278
2425bcb9 279struct trace_event_class {
acd388fd 280 const char *system;
2239291a
SR
281 void *probe;
282#ifdef CONFIG_PERF_EVENTS
283 void *perf_probe;
284#endif
2425bcb9 285 int (*reg)(struct trace_event_call *event,
ceec0b6f 286 enum trace_reg type, void *data);
04ae87a5 287 struct trace_event_fields *fields_array;
2425bcb9 288 struct list_head *(*get_fields)(struct trace_event_call *);
2e33af02 289 struct list_head fields;
2425bcb9 290 int (*raw_init)(struct trace_event_call *);
8f082018
SR
291};
292
2425bcb9 293extern int trace_event_reg(struct trace_event_call *event,
ceec0b6f 294 enum trace_reg type, void *data);
a1d0ce82 295
3f795dcf 296struct trace_event_buffer {
13292494 297 struct trace_buffer *buffer;
3fd40d1e 298 struct ring_buffer_event *event;
7f1d2f82 299 struct trace_event_file *trace_file;
3fd40d1e 300 void *entry;
36590c50 301 unsigned int trace_ctx;
8cfcf155 302 struct pt_regs *regs;
3fd40d1e
SR
303};
304
3f795dcf 305void *trace_event_buffer_reserve(struct trace_event_buffer *fbuffer,
7f1d2f82 306 struct trace_event_file *trace_file,
3fd40d1e
SR
307 unsigned long len);
308
3f795dcf 309void trace_event_buffer_commit(struct trace_event_buffer *fbuffer);
3fd40d1e 310
553552ce 311enum {
553552ce 312 TRACE_EVENT_FL_FILTERED_BIT,
61c32659 313 TRACE_EVENT_FL_CAP_ANY_BIT,
27b14b56 314 TRACE_EVENT_FL_NO_SET_FILTER_BIT,
9b63776f 315 TRACE_EVENT_FL_IGNORE_ENABLE_BIT,
de7b2973 316 TRACE_EVENT_FL_TRACEPOINT_BIT,
8b0e6c74 317 TRACE_EVENT_FL_DYNAMIC_BIT,
72cbbc89 318 TRACE_EVENT_FL_KPROBE_BIT,
04a22fae 319 TRACE_EVENT_FL_UPROBE_BIT,
7491e2c4 320 TRACE_EVENT_FL_EPROBE_BIT,
3a73333f 321 TRACE_EVENT_FL_CUSTOM_BIT,
553552ce
SR
322};
323
ae63b31e
SR
324/*
325 * Event flags:
326 * FILTERED - The event has a filter attached
327 * CAP_ANY - Any user can enable for perf
328 * NO_SET_FILTER - Set when filter has error and is to be ignored
5d6ad960 329 * IGNORE_ENABLE - For trace internal events, do not enable with debugfs file
de7b2973 330 * TRACEPOINT - Event is a tracepoint
8b0e6c74 331 * DYNAMIC - Event is a dynamic event (created at run time)
72cbbc89 332 * KPROBE - Event is a kprobe
04a22fae 333 * UPROBE - Event is a uprobe
7491e2c4 334 * EPROBE - Event is an event probe
3a73333f
SRG
335 * CUSTOM - Event is a custom event (to be attached to an exsiting tracepoint)
336 * This is set when the custom event has not been attached
337 * to a tracepoint yet, then it is cleared when it is.
ae63b31e 338 */
553552ce 339enum {
e870e9a1 340 TRACE_EVENT_FL_FILTERED = (1 << TRACE_EVENT_FL_FILTERED_BIT),
61c32659 341 TRACE_EVENT_FL_CAP_ANY = (1 << TRACE_EVENT_FL_CAP_ANY_BIT),
27b14b56 342 TRACE_EVENT_FL_NO_SET_FILTER = (1 << TRACE_EVENT_FL_NO_SET_FILTER_BIT),
9b63776f 343 TRACE_EVENT_FL_IGNORE_ENABLE = (1 << TRACE_EVENT_FL_IGNORE_ENABLE_BIT),
de7b2973 344 TRACE_EVENT_FL_TRACEPOINT = (1 << TRACE_EVENT_FL_TRACEPOINT_BIT),
8b0e6c74 345 TRACE_EVENT_FL_DYNAMIC = (1 << TRACE_EVENT_FL_DYNAMIC_BIT),
72cbbc89 346 TRACE_EVENT_FL_KPROBE = (1 << TRACE_EVENT_FL_KPROBE_BIT),
04a22fae 347 TRACE_EVENT_FL_UPROBE = (1 << TRACE_EVENT_FL_UPROBE_BIT),
7491e2c4 348 TRACE_EVENT_FL_EPROBE = (1 << TRACE_EVENT_FL_EPROBE_BIT),
3a73333f 349 TRACE_EVENT_FL_CUSTOM = (1 << TRACE_EVENT_FL_CUSTOM_BIT),
553552ce
SR
350};
351
04a22fae
WN
352#define TRACE_EVENT_FL_UKPROBE (TRACE_EVENT_FL_KPROBE | TRACE_EVENT_FL_UPROBE)
353
2425bcb9 354struct trace_event_call {
a59fd602 355 struct list_head list;
2425bcb9 356 struct trace_event_class *class;
de7b2973
MD
357 union {
358 char *name;
359 /* Set TRACE_EVENT_FL_TRACEPOINT flag when using "tp" */
360 struct tracepoint *tp;
361 };
80decc70 362 struct trace_event event;
0c564a53 363 char *print_fmt;
1f9963cb 364 struct event_filter *filter;
1d18538e
SRV
365 /*
366 * Static events can disappear with modules,
367 * where as dynamic ones need their own ref count.
368 */
369 union {
370 void *module;
371 atomic_t refcnt;
372 };
69fd4f0e 373 void *data;
f9f34447
SRV
374
375 /* See the TRACE_EVENT_FL_* flags above */
ae63b31e
SR
376 int flags; /* static flags of different events */
377
378#ifdef CONFIG_PERF_EVENTS
379 int perf_refcount;
380 struct hlist_head __percpu *perf_events;
e87c6bc3 381 struct bpf_prog_array __rcu *prog_array;
d5b5f391 382
2425bcb9 383 int (*perf_perm)(struct trace_event_call *,
d5b5f391 384 struct perf_event *);
ae63b31e
SR
385#endif
386};
387
1d18538e
SRV
388#ifdef CONFIG_DYNAMIC_EVENTS
389bool trace_event_dyn_try_get_ref(struct trace_event_call *call);
390void trace_event_dyn_put_ref(struct trace_event_call *call);
391bool trace_event_dyn_busy(struct trace_event_call *call);
392#else
393static inline bool trace_event_dyn_try_get_ref(struct trace_event_call *call)
394{
395 /* Without DYNAMIC_EVENTS configured, nothing should be calling this */
396 return false;
397}
398static inline void trace_event_dyn_put_ref(struct trace_event_call *call)
399{
400}
401static inline bool trace_event_dyn_busy(struct trace_event_call *call)
402{
403 /* Nothing should call this without DYNAIMIC_EVENTS configured. */
404 return true;
405}
406#endif
407
408static inline bool trace_event_try_get_ref(struct trace_event_call *call)
409{
410 if (call->flags & TRACE_EVENT_FL_DYNAMIC)
411 return trace_event_dyn_try_get_ref(call);
412 else
413 return try_module_get(call->module);
414}
415
416static inline void trace_event_put_ref(struct trace_event_call *call)
417{
418 if (call->flags & TRACE_EVENT_FL_DYNAMIC)
419 trace_event_dyn_put_ref(call);
420 else
421 module_put(call->module);
422}
423
e87c6bc3
YS
424#ifdef CONFIG_PERF_EVENTS
425static inline bool bpf_prog_array_valid(struct trace_event_call *call)
426{
427 /*
428 * This inline function checks whether call->prog_array
429 * is valid or not. The function is called in various places,
430 * outside rcu_read_lock/unlock, as a heuristic to speed up execution.
431 *
432 * If this function returns true, and later call->prog_array
433 * becomes false inside rcu_read_lock/unlock region,
434 * we bail out then. If this function return false,
435 * there is a risk that we might miss a few events if the checking
436 * were delayed until inside rcu_read_lock/unlock region and
437 * call->prog_array happened to become non-NULL then.
438 *
439 * Here, READ_ONCE() is used instead of rcu_access_pointer().
440 * rcu_access_pointer() requires the actual definition of
441 * "struct bpf_prog_array" while READ_ONCE() only needs
442 * a declaration of the same type.
443 */
444 return !!READ_ONCE(call->prog_array);
445}
446#endif
447
de7b2973 448static inline const char *
687fcc4a 449trace_event_name(struct trace_event_call *call)
de7b2973 450{
3a73333f
SRG
451 if (call->flags & TRACE_EVENT_FL_CUSTOM)
452 return call->name;
453 else if (call->flags & TRACE_EVENT_FL_TRACEPOINT)
de7b2973
MD
454 return call->tp ? call->tp->name : NULL;
455 else
456 return call->name;
457}
458
0aeb1def
CW
459static inline struct list_head *
460trace_get_fields(struct trace_event_call *event_call)
461{
462 if (!event_call->class->get_fields)
463 return &event_call->class->fields;
464 return event_call->class->get_fields(event_call);
465}
466
7967b3e0 467struct trace_subsystem_dir;
ae63b31e
SR
468
469enum {
5d6ad960
SRRH
470 EVENT_FILE_FL_ENABLED_BIT,
471 EVENT_FILE_FL_RECORDED_CMD_BIT,
d914ba37 472 EVENT_FILE_FL_RECORDED_TGID_BIT,
5d6ad960
SRRH
473 EVENT_FILE_FL_FILTERED_BIT,
474 EVENT_FILE_FL_NO_SET_FILTER_BIT,
475 EVENT_FILE_FL_SOFT_MODE_BIT,
476 EVENT_FILE_FL_SOFT_DISABLED_BIT,
477 EVENT_FILE_FL_TRIGGER_MODE_BIT,
478 EVENT_FILE_FL_TRIGGER_COND_BIT,
3fdaf80f 479 EVENT_FILE_FL_PID_FILTER_BIT,
065e63f9 480 EVENT_FILE_FL_WAS_ENABLED_BIT,
ae63b31e
SR
481};
482
e3e2a2cc
TZ
483extern struct trace_event_file *trace_get_event_file(const char *instance,
484 const char *system,
485 const char *event);
486extern void trace_put_event_file(struct trace_event_file *file);
487
86c5426b
TZ
488#define MAX_DYNEVENT_CMD_LEN (2048)
489
490enum dynevent_type {
35ca5207 491 DYNEVENT_TYPE_SYNTH = 1,
2a588dd1 492 DYNEVENT_TYPE_KPROBE,
86c5426b
TZ
493 DYNEVENT_TYPE_NONE,
494};
495
496struct dynevent_cmd;
497
498typedef int (*dynevent_create_fn_t)(struct dynevent_cmd *cmd);
499
500struct dynevent_cmd {
2b90927c 501 struct seq_buf seq;
86c5426b 502 const char *event_name;
86c5426b
TZ
503 unsigned int n_fields;
504 enum dynevent_type type;
505 dynevent_create_fn_t run_command;
506 void *private_data;
507};
508
509extern int dynevent_create(struct dynevent_cmd *cmd);
510
f5f6b255
TZ
511extern int synth_event_delete(const char *name);
512
35ca5207
TZ
513extern void synth_event_cmd_init(struct dynevent_cmd *cmd,
514 char *buf, int maxlen);
515
516extern int __synth_event_gen_cmd_start(struct dynevent_cmd *cmd,
517 const char *name,
518 struct module *mod, ...);
519
520#define synth_event_gen_cmd_start(cmd, name, mod, ...) \
521 __synth_event_gen_cmd_start(cmd, name, mod, ## __VA_ARGS__, NULL)
522
523struct synth_field_desc {
524 const char *type;
525 const char *name;
526};
527
528extern int synth_event_gen_cmd_array_start(struct dynevent_cmd *cmd,
529 const char *name,
530 struct module *mod,
531 struct synth_field_desc *fields,
532 unsigned int n_fields);
533extern int synth_event_create(const char *name,
534 struct synth_field_desc *fields,
535 unsigned int n_fields, struct module *mod);
536
537extern int synth_event_add_field(struct dynevent_cmd *cmd,
538 const char *type,
539 const char *name);
540extern int synth_event_add_field_str(struct dynevent_cmd *cmd,
541 const char *type_name);
542extern int synth_event_add_fields(struct dynevent_cmd *cmd,
543 struct synth_field_desc *fields,
544 unsigned int n_fields);
545
546#define synth_event_gen_cmd_end(cmd) \
547 dynevent_create(cmd)
548
8dcc53ad
TZ
549struct synth_event;
550
551struct synth_event_trace_state {
552 struct trace_event_buffer fbuffer;
553 struct synth_trace_event *entry;
554 struct trace_buffer *buffer;
555 struct synth_event *event;
556 unsigned int cur_field;
557 unsigned int n_u64;
7276531d 558 bool disabled;
8dcc53ad
TZ
559 bool add_next;
560 bool add_name;
561};
562
563extern int synth_event_trace(struct trace_event_file *file,
564 unsigned int n_vals, ...);
565extern int synth_event_trace_array(struct trace_event_file *file, u64 *vals,
566 unsigned int n_vals);
567extern int synth_event_trace_start(struct trace_event_file *file,
568 struct synth_event_trace_state *trace_state);
569extern int synth_event_add_next_val(u64 val,
570 struct synth_event_trace_state *trace_state);
571extern int synth_event_add_val(const char *field_name, u64 val,
572 struct synth_event_trace_state *trace_state);
573extern int synth_event_trace_end(struct synth_event_trace_state *trace_state);
574
2a588dd1
TZ
575extern int kprobe_event_delete(const char *name);
576
577extern void kprobe_event_cmd_init(struct dynevent_cmd *cmd,
578 char *buf, int maxlen);
579
580#define kprobe_event_gen_cmd_start(cmd, name, loc, ...) \
581 __kprobe_event_gen_cmd_start(cmd, false, name, loc, ## __VA_ARGS__, NULL)
582
583#define kretprobe_event_gen_cmd_start(cmd, name, loc, ...) \
584 __kprobe_event_gen_cmd_start(cmd, true, name, loc, ## __VA_ARGS__, NULL)
585
586extern int __kprobe_event_gen_cmd_start(struct dynevent_cmd *cmd,
587 bool kretprobe,
588 const char *name,
589 const char *loc, ...);
590
591#define kprobe_event_add_fields(cmd, ...) \
592 __kprobe_event_add_fields(cmd, ## __VA_ARGS__, NULL)
593
594#define kprobe_event_add_field(cmd, field) \
595 __kprobe_event_add_fields(cmd, field, NULL)
596
597extern int __kprobe_event_add_fields(struct dynevent_cmd *cmd, ...);
598
599#define kprobe_event_gen_cmd_end(cmd) \
600 dynevent_create(cmd)
601
602#define kretprobe_event_gen_cmd_end(cmd) \
603 dynevent_create(cmd)
604
ae63b31e 605/*
5d6ad960 606 * Event file flags:
57d01ad0 607 * ENABLED - The event is enabled
ae63b31e 608 * RECORDED_CMD - The comms should be recorded at sched_switch
d914ba37 609 * RECORDED_TGID - The tgids should be recorded at sched_switch
f306cc82
TZ
610 * FILTERED - The event has a filter attached
611 * NO_SET_FILTER - Set when filter has error and is to be ignored
417944c4
SRRH
612 * SOFT_MODE - The event is enabled/disabled by SOFT_DISABLED
613 * SOFT_DISABLED - When set, do not trace the event (even though its
614 * tracepoint may be enabled)
85f2b082 615 * TRIGGER_MODE - When set, invoke the triggers associated with the event
bac5fb97 616 * TRIGGER_COND - When set, one or more triggers has an associated filter
3fdaf80f 617 * PID_FILTER - When set, the event is filtered based on pid
065e63f9 618 * WAS_ENABLED - Set when enabled to know to clear trace on module removal
ae63b31e
SR
619 */
620enum {
5d6ad960
SRRH
621 EVENT_FILE_FL_ENABLED = (1 << EVENT_FILE_FL_ENABLED_BIT),
622 EVENT_FILE_FL_RECORDED_CMD = (1 << EVENT_FILE_FL_RECORDED_CMD_BIT),
d914ba37 623 EVENT_FILE_FL_RECORDED_TGID = (1 << EVENT_FILE_FL_RECORDED_TGID_BIT),
5d6ad960
SRRH
624 EVENT_FILE_FL_FILTERED = (1 << EVENT_FILE_FL_FILTERED_BIT),
625 EVENT_FILE_FL_NO_SET_FILTER = (1 << EVENT_FILE_FL_NO_SET_FILTER_BIT),
626 EVENT_FILE_FL_SOFT_MODE = (1 << EVENT_FILE_FL_SOFT_MODE_BIT),
627 EVENT_FILE_FL_SOFT_DISABLED = (1 << EVENT_FILE_FL_SOFT_DISABLED_BIT),
628 EVENT_FILE_FL_TRIGGER_MODE = (1 << EVENT_FILE_FL_TRIGGER_MODE_BIT),
629 EVENT_FILE_FL_TRIGGER_COND = (1 << EVENT_FILE_FL_TRIGGER_COND_BIT),
3fdaf80f 630 EVENT_FILE_FL_PID_FILTER = (1 << EVENT_FILE_FL_PID_FILTER_BIT),
065e63f9 631 EVENT_FILE_FL_WAS_ENABLED = (1 << EVENT_FILE_FL_WAS_ENABLED_BIT),
ae63b31e
SR
632};
633
7f1d2f82 634struct trace_event_file {
ae63b31e 635 struct list_head list;
2425bcb9 636 struct trace_event_call *event_call;
f86f4180 637 struct event_filter __rcu *filter;
ae63b31e
SR
638 struct dentry *dir;
639 struct trace_array *tr;
7967b3e0 640 struct trace_subsystem_dir *system;
85f2b082 641 struct list_head triggers;
97f20251 642
553552ce
SR
643 /*
644 * 32 bit flags:
57d01ad0
SRRH
645 * bit 0: enabled
646 * bit 1: enabled cmd record
417944c4
SRRH
647 * bit 2: enable/disable with the soft disable bit
648 * bit 3: soft disabled
85f2b082 649 * bit 4: trigger enabled
553552ce 650 *
417944c4
SRRH
651 * Note: The bits must be set atomically to prevent races
652 * from other writers. Reads of flags do not need to be in
653 * sync as they occur in critical sections. But the way flags
ae63b31e 654 * is currently used, these changes do not affect the code
1eaa4787
SR
655 * except that when a change is made, it may have a slight
656 * delay in propagating the changes to other CPUs due to
417944c4 657 * caching and such. Which is mostly OK ;-)
553552ce 658 */
417944c4 659 unsigned long flags;
1cf4c073 660 atomic_t sm_ref; /* soft-mode reference counter */
85f2b082 661 atomic_t tm_ref; /* trigger-mode reference counter */
97f20251
SR
662};
663
53cf810b
FW
664#define __TRACE_EVENT_FLAGS(name, value) \
665 static int __init trace_init_flags_##name(void) \
666 { \
de7b2973 667 event_##name.flags |= value; \
53cf810b
FW
668 return 0; \
669 } \
670 early_initcall(trace_init_flags_##name);
671
d5b5f391 672#define __TRACE_EVENT_PERF_PERM(name, expr...) \
2425bcb9 673 static int perf_perm_##name(struct trace_event_call *tp_event, \
d5b5f391
PZ
674 struct perf_event *p_event) \
675 { \
676 return ({ expr; }); \
677 } \
678 static int __init trace_init_perf_perm_##name(void) \
679 { \
680 event_##name.perf_perm = &perf_perm_##name; \
681 return 0; \
682 } \
683 early_initcall(trace_init_perf_perm_##name);
684
e531e90b 685#define PERF_MAX_TRACE_SIZE 8192
20ab4425 686
938aa33f 687#define MAX_FILTER_STR_VAL 256U /* Should handle KSYM_SYMBOL_LEN */
97f20251 688
85f2b082
TZ
689enum event_trigger_type {
690 ETT_NONE = (0),
2a2df321 691 ETT_TRACE_ONOFF = (1 << 0),
93e31ffb 692 ETT_SNAPSHOT = (1 << 1),
f21ecbb3 693 ETT_STACKTRACE = (1 << 2),
7862ad18 694 ETT_EVENT_ENABLE = (1 << 3),
7ef224d1 695 ETT_EVENT_HIST = (1 << 4),
d0bad49b 696 ETT_HIST_ENABLE = (1 << 5),
7491e2c4 697 ETT_EVENT_EPROBE = (1 << 6),
85f2b082
TZ
698};
699
6fb2915d 700extern int filter_match_preds(struct event_filter *filter, void *rec);
f306cc82 701
1ac4f51c 702extern enum event_trigger_type
b47e3302
SRV
703event_triggers_call(struct trace_event_file *file,
704 struct trace_buffer *buffer, void *rec,
1ac4f51c
TZ
705 struct ring_buffer_event *event);
706extern void
707event_triggers_post_call(struct trace_event_file *file,
c94e45bc 708 enum event_trigger_type tt);
97f20251 709
3fdaf80f
SRRH
710bool trace_event_ignore_this_pid(struct trace_event_file *trace_file);
711
bc82c38a
CL
712bool __trace_trigger_soft_disabled(struct trace_event_file *file);
713
13a1e4ae 714/**
09a5059a 715 * trace_trigger_soft_disabled - do triggers and test if soft disabled
13a1e4ae
SRRH
716 * @file: The file pointer of the event to test
717 *
718 * If any triggers without filters are attached to this event, they
719 * will be called here. If the event is soft disabled and has no
720 * triggers that require testing the fields, it will return true,
721 * otherwise false.
722 */
bc82c38a 723static __always_inline bool
09a5059a 724trace_trigger_soft_disabled(struct trace_event_file *file)
13a1e4ae
SRRH
725{
726 unsigned long eflags = file->flags;
727
bc82c38a
CL
728 if (likely(!(eflags & (EVENT_FILE_FL_TRIGGER_MODE |
729 EVENT_FILE_FL_SOFT_DISABLED |
730 EVENT_FILE_FL_PID_FILTER))))
731 return false;
732
733 if (likely(eflags & EVENT_FILE_FL_TRIGGER_COND))
734 return false;
735
736 return __trace_trigger_soft_disabled(file);
13a1e4ae
SRRH
737}
738
098d2164 739#ifdef CONFIG_BPF_EVENTS
e87c6bc3 740unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx);
82e6b1ee 741int perf_event_attach_bpf_prog(struct perf_event *event, struct bpf_prog *prog, u64 bpf_cookie);
e87c6bc3 742void perf_event_detach_bpf_prog(struct perf_event *event);
f4e2298e 743int perf_event_query_prog_array(struct perf_event *event, void __user *info);
c4f6699d
AS
744int bpf_probe_register(struct bpf_raw_event_map *btp, struct bpf_prog *prog);
745int bpf_probe_unregister(struct bpf_raw_event_map *btp, struct bpf_prog *prog);
a38d1107
MM
746struct bpf_raw_event_map *bpf_get_raw_tracepoint(const char *name);
747void bpf_put_raw_tracepoint(struct bpf_raw_event_map *btp);
41bdc4b4
YS
748int bpf_get_perf_event_info(const struct perf_event *event, u32 *prog_id,
749 u32 *fd_type, const char **buf,
750 u64 *probe_offset, u64 *probe_addr);
0dcac272 751int bpf_kprobe_multi_link_attach(const union bpf_attr *attr, struct bpf_prog *prog);
2541517c 752#else
e87c6bc3 753static inline unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx)
2541517c
AS
754{
755 return 1;
756}
e87c6bc3
YS
757
758static inline int
82e6b1ee 759perf_event_attach_bpf_prog(struct perf_event *event, struct bpf_prog *prog, u64 bpf_cookie)
e87c6bc3
YS
760{
761 return -EOPNOTSUPP;
762}
763
764static inline void perf_event_detach_bpf_prog(struct perf_event *event) { }
765
f4e2298e
YS
766static inline int
767perf_event_query_prog_array(struct perf_event *event, void __user *info)
768{
769 return -EOPNOTSUPP;
770}
c4f6699d
AS
771static inline int bpf_probe_register(struct bpf_raw_event_map *btp, struct bpf_prog *p)
772{
773 return -EOPNOTSUPP;
774}
775static inline int bpf_probe_unregister(struct bpf_raw_event_map *btp, struct bpf_prog *p)
776{
777 return -EOPNOTSUPP;
778}
a38d1107 779static inline struct bpf_raw_event_map *bpf_get_raw_tracepoint(const char *name)
c4f6699d
AS
780{
781 return NULL;
782}
a38d1107
MM
783static inline void bpf_put_raw_tracepoint(struct bpf_raw_event_map *btp)
784{
785}
41bdc4b4
YS
786static inline int bpf_get_perf_event_info(const struct perf_event *event,
787 u32 *prog_id, u32 *fd_type,
788 const char **buf, u64 *probe_offset,
789 u64 *probe_addr)
790{
791 return -EOPNOTSUPP;
792}
0dcac272
JO
793static inline int
794bpf_kprobe_multi_link_attach(const union bpf_attr *attr, struct bpf_prog *prog)
795{
796 return -EOPNOTSUPP;
797}
2541517c
AS
798#endif
799
43b51ead
LZ
800enum {
801 FILTER_OTHER = 0,
802 FILTER_STATIC_STRING,
803 FILTER_DYN_STRING,
05770dd0 804 FILTER_RDYN_STRING,
87a342f5 805 FILTER_PTR_STRING,
02aa3162 806 FILTER_TRACE_FN,
e57cbaf0
SRRH
807 FILTER_COMM,
808 FILTER_CPU,
43b51ead
LZ
809};
810
2425bcb9
SRRH
811extern int trace_event_raw_init(struct trace_event_call *call);
812extern int trace_define_field(struct trace_event_call *call, const char *type,
aeaeae11
FW
813 const char *name, int offset, int size,
814 int is_signed, int filter_type);
2425bcb9
SRRH
815extern int trace_add_event_call(struct trace_event_call *call);
816extern int trace_remove_event_call(struct trace_event_call *call);
32bbe007 817extern int trace_event_get_offsets(struct trace_event_call *call);
97f20251 818
595a438c 819int ftrace_set_clr_event(struct trace_array *tr, char *buf, int set);
4671c794 820int trace_set_clr_event(const char *system, const char *event, int set);
28879787
DI
821int trace_array_set_clr_event(struct trace_array *tr, const char *system,
822 const char *event, bool enable);
97f20251
SR
823/*
824 * The double __builtin_constant_p is because gcc will give us an error
825 * if we try to allocate the static variable to fmt if it is not a
826 * constant. Even with the outer if statement optimizing out.
827 */
828#define event_trace_printk(ip, fmt, args...) \
829do { \
830 __trace_printk_check_format(fmt, ##args); \
831 tracing_record_cmdline(current); \
832 if (__builtin_constant_p(fmt)) { \
833 static const char *trace_printk_fmt \
33def849 834 __section("__trace_printk_fmt") = \
97f20251
SR
835 __builtin_constant_p(fmt) ? fmt : NULL; \
836 \
837 __trace_bprintk(ip, trace_printk_fmt, ##args); \
838 } else \
839 __trace_printk(ip, fmt, ##args); \
840} while (0)
841
07b139c8 842#ifdef CONFIG_PERF_EVENTS
6fb2915d 843struct perf_event;
c530665c
FW
844
845DECLARE_PER_CPU(struct pt_regs, perf_trace_regs);
9802d865 846DECLARE_PER_CPU(int, bpf_kprobe_override);
c530665c 847
1c024eca
PZ
848extern int perf_trace_init(struct perf_event *event);
849extern void perf_trace_destroy(struct perf_event *event);
a4eaf7f1
PZ
850extern int perf_trace_add(struct perf_event *event, int flags);
851extern void perf_trace_del(struct perf_event *event, int flags);
e12f03d7
SL
852#ifdef CONFIG_KPROBE_EVENTS
853extern int perf_kprobe_init(struct perf_event *event, bool is_retprobe);
854extern void perf_kprobe_destroy(struct perf_event *event);
41bdc4b4
YS
855extern int bpf_get_kprobe_info(const struct perf_event *event,
856 u32 *fd_type, const char **symbol,
857 u64 *probe_offset, u64 *probe_addr,
858 bool perf_type_tracepoint);
e12f03d7 859#endif
33ea4b24 860#ifdef CONFIG_UPROBE_EVENTS
a6ca88b2
SL
861extern int perf_uprobe_init(struct perf_event *event,
862 unsigned long ref_ctr_offset, bool is_retprobe);
33ea4b24 863extern void perf_uprobe_destroy(struct perf_event *event);
41bdc4b4
YS
864extern int bpf_get_uprobe_info(const struct perf_event *event,
865 u32 *fd_type, const char **filename,
866 u64 *probe_offset, bool perf_type_tracepoint);
33ea4b24 867#endif
1c024eca 868extern int ftrace_profile_set_filter(struct perf_event *event, int event_id,
6fb2915d
LZ
869 char *filter_str);
870extern void ftrace_profile_free_filter(struct perf_event *event);
1e1dcd93
AS
871void perf_trace_buf_update(void *record, u16 type);
872void *perf_trace_buf_alloc(int size, struct pt_regs **regs, int *rctxp);
430ad5a6 873
82e6b1ee 874int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog, u64 bpf_cookie);
b89fbfbb
AN
875void perf_event_free_bpf_prog(struct perf_event *event);
876
c4f6699d
AS
877void bpf_trace_run1(struct bpf_prog *prog, u64 arg1);
878void bpf_trace_run2(struct bpf_prog *prog, u64 arg1, u64 arg2);
879void bpf_trace_run3(struct bpf_prog *prog, u64 arg1, u64 arg2,
880 u64 arg3);
881void bpf_trace_run4(struct bpf_prog *prog, u64 arg1, u64 arg2,
882 u64 arg3, u64 arg4);
883void bpf_trace_run5(struct bpf_prog *prog, u64 arg1, u64 arg2,
884 u64 arg3, u64 arg4, u64 arg5);
885void bpf_trace_run6(struct bpf_prog *prog, u64 arg1, u64 arg2,
886 u64 arg3, u64 arg4, u64 arg5, u64 arg6);
887void bpf_trace_run7(struct bpf_prog *prog, u64 arg1, u64 arg2,
888 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7);
889void bpf_trace_run8(struct bpf_prog *prog, u64 arg1, u64 arg2,
890 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
891 u64 arg8);
892void bpf_trace_run9(struct bpf_prog *prog, u64 arg1, u64 arg2,
893 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
894 u64 arg8, u64 arg9);
895void bpf_trace_run10(struct bpf_prog *prog, u64 arg1, u64 arg2,
896 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
897 u64 arg8, u64 arg9, u64 arg10);
898void bpf_trace_run11(struct bpf_prog *prog, u64 arg1, u64 arg2,
899 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
900 u64 arg8, u64 arg9, u64 arg10, u64 arg11);
901void bpf_trace_run12(struct bpf_prog *prog, u64 arg1, u64 arg2,
902 u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7,
903 u64 arg8, u64 arg9, u64 arg10, u64 arg11, u64 arg12);
85b67bcb
AS
904void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
905 struct trace_event_call *call, u64 count,
906 struct pt_regs *regs, struct hlist_head *head,
907 struct task_struct *task);
908
430ad5a6 909static inline void
1e1dcd93 910perf_trace_buf_submit(void *raw_data, int size, int rctx, u16 type,
e6dab5ff 911 u64 count, struct pt_regs *regs, void *head,
8fd0fbbe 912 struct task_struct *task)
430ad5a6 913{
8fd0fbbe 914 perf_tp_event(type, count, raw_data, size, regs, head, rctx, task);
430ad5a6 915}
e87c6bc3 916
6fb2915d
LZ
917#endif
918
0563231f
SRG
919#define TRACE_EVENT_STR_MAX 512
920
921/*
922 * gcc warns that you can not use a va_list in an inlined
923 * function. But lets me make it into a macro :-/
924 */
925#define __trace_event_vstr_len(fmt, va) \
926({ \
927 va_list __ap; \
928 int __ret; \
929 \
930 va_copy(__ap, *(va)); \
931 __ret = vsnprintf(NULL, 0, fmt, __ap) + 1; \
932 va_end(__ap); \
933 \
934 min(__ret, TRACE_EVENT_STR_MAX); \
935})
936
2425bcb9 937#endif /* _LINUX_TRACE_EVENT_H */
3a73333f
SRG
938
939/*
940 * Note: we keep the TRACE_CUSTOM_EVENT outside the include file ifdef protection.
941 * This is due to the way trace custom events work. If a file includes two
942 * trace event headers under one "CREATE_CUSTOM_TRACE_EVENTS" the first include
943 * will override the TRACE_CUSTOM_EVENT and break the second include.
944 */
945
946#ifndef TRACE_CUSTOM_EVENT
947
948#define DECLARE_CUSTOM_EVENT_CLASS(name, proto, args, tstruct, assign, print)
949#define DEFINE_CUSTOM_EVENT(template, name, proto, args)
950#define TRACE_CUSTOM_EVENT(name, proto, args, struct, assign, print)
951
952#endif /* ifdef TRACE_CUSTOM_EVENT (see note above) */