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