]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/linux/trace_events.h
Merge tag 'armsoc-cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[mirror_ubuntu-eoan-kernel.git] / include / linux / trace_events.h
CommitLineData
bac5fb97 1
645df987
SRRH
2#ifndef _LINUX_TRACE_EVENT_H
3#define _LINUX_TRACE_EVENT_H
97f20251 4
97f20251 5#include <linux/ring_buffer.h>
16bb8eb1 6#include <linux/trace_seq.h>
be74b73a 7#include <linux/percpu.h>
20ab4425 8#include <linux/hardirq.h>
430ad5a6 9#include <linux/perf_event.h>
de7b2973 10#include <linux/tracepoint.h>
97f20251
SR
11
12struct trace_array;
12883efb 13struct trace_buffer;
97f20251 14struct tracer;
6d723736 15struct dentry;
2541517c 16struct bpf_prog;
97f20251 17
be74b73a
SR
18struct trace_print_flags {
19 unsigned long mask;
20 const char *name;
21};
22
2fc1b6f0 23struct trace_print_flags_u64 {
24 unsigned long long mask;
25 const char *name;
26};
27
645df987
SRRH
28const char *trace_print_flags_seq(struct trace_seq *p, const char *delim,
29 unsigned long flags,
30 const struct trace_print_flags *flag_array);
be74b73a 31
645df987
SRRH
32const char *trace_print_symbols_seq(struct trace_seq *p, unsigned long val,
33 const struct trace_print_flags *symbol_array);
0f4fc29d 34
2fc1b6f0 35#if BITS_PER_LONG == 32
645df987
SRRH
36const char *trace_print_symbols_seq_u64(struct trace_seq *p,
37 unsigned long long val,
38 const struct trace_print_flags_u64
2fc1b6f0 39 *symbol_array);
40#endif
41
645df987
SRRH
42const char *trace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr,
43 unsigned int bitmask_size);
4449bf92 44
645df987
SRRH
45const char *trace_print_hex_seq(struct trace_seq *p,
46 const unsigned char *buf, int len);
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
f71130de
LZ
52struct trace_iterator;
53struct trace_event;
54
892c505a
SRRH
55int trace_raw_output_prep(struct trace_iterator *iter,
56 struct trace_event *event);
f71130de 57
97f20251
SR
58/*
59 * The trace entry - the most basic unit of tracing. This is what
60 * is printed in the end as a single line in the trace output, such as:
61 *
62 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
63 */
64struct trace_entry {
89ec0dee 65 unsigned short type;
97f20251
SR
66 unsigned char flags;
67 unsigned char preempt_count;
68 int pid;
97f20251
SR
69};
70
609a7404 71#define TRACE_EVENT_TYPE_MAX \
89ec0dee
SR
72 ((1 << (sizeof(((struct trace_entry *)0)->type) * 8)) - 1)
73
97f20251
SR
74/*
75 * Trace iterator - used by printout routines who present trace
76 * results to users and which routines might sleep, etc:
77 */
78struct trace_iterator {
79 struct trace_array *tr;
80 struct tracer *trace;
12883efb 81 struct trace_buffer *trace_buffer;
97f20251
SR
82 void *private;
83 int cpu_file;
84 struct mutex mutex;
6d158a81 85 struct ring_buffer_iter **buffer_iter;
112f38a7 86 unsigned long iter_flags;
97f20251 87
bc289ae9
LJ
88 /* trace_seq for __print_flags() and __print_symbolic() etc. */
89 struct trace_seq tmp_seq;
90
ed5467da
AV
91 cpumask_var_t started;
92
93 /* it's true when current open file is snapshot */
94 bool snapshot;
95
97f20251
SR
96 /* The below is zeroed out in pipe_read */
97 struct trace_seq seq;
98 struct trace_entry *ent;
bc21b478 99 unsigned long lost_events;
a63ce5b3 100 int leftover;
4a9bd3f1 101 int ent_size;
97f20251
SR
102 int cpu;
103 u64 ts;
104
97f20251
SR
105 loff_t pos;
106 long idx;
107
ed5467da 108 /* All new field here will be zeroed out in pipe_read */
97f20251
SR
109};
110
8be0709f
DS
111enum trace_iter_flags {
112 TRACE_FILE_LAT_FMT = 1,
113 TRACE_FILE_ANNOTATE = 2,
114 TRACE_FILE_TIME_IN_NS = 4,
115};
116
97f20251
SR
117
118typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
a9a57763
SR
119 int flags, struct trace_event *event);
120
121struct trace_event_functions {
97f20251
SR
122 trace_print_func trace;
123 trace_print_func raw;
124 trace_print_func hex;
125 trace_print_func binary;
126};
127
a9a57763
SR
128struct trace_event {
129 struct hlist_node node;
130 struct list_head list;
131 int type;
132 struct trace_event_functions *funcs;
133};
134
9023c930
SRRH
135extern int register_trace_event(struct trace_event *event);
136extern int unregister_trace_event(struct trace_event *event);
97f20251
SR
137
138/* Return values for print_line callback */
139enum print_line_t {
140 TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */
141 TRACE_TYPE_HANDLED = 1,
142 TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */
143 TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */
144};
145
19a7fe20
SRRH
146/*
147 * Several functions return TRACE_TYPE_PARTIAL_LINE if the trace_seq
148 * overflowed, and TRACE_TYPE_HANDLED otherwise. This helper function
149 * simplifies those functions and keeps them in sync.
150 */
151static inline enum print_line_t trace_handle_return(struct trace_seq *s)
152{
153 return trace_seq_has_overflowed(s) ?
154 TRACE_TYPE_PARTIAL_LINE : TRACE_TYPE_HANDLED;
155}
156
f413cdb8
FW
157void tracing_generic_entry_update(struct trace_entry *entry,
158 unsigned long flags,
159 int pc);
7f1d2f82 160struct trace_event_file;
ccb469a1
SR
161
162struct ring_buffer_event *
163trace_event_buffer_lock_reserve(struct ring_buffer **current_buffer,
7f1d2f82 164 struct trace_event_file *trace_file,
ccb469a1
SR
165 int type, unsigned long len,
166 unsigned long flags, int pc);
97f20251 167struct ring_buffer_event *
e77405ad
SR
168trace_current_buffer_lock_reserve(struct ring_buffer **current_buffer,
169 int type, unsigned long len,
97f20251 170 unsigned long flags, int pc);
e77405ad
SR
171void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
172 struct ring_buffer_event *event,
97f20251 173 unsigned long flags, int pc);
0d5c6e1c
SR
174void trace_buffer_unlock_commit(struct ring_buffer *buffer,
175 struct ring_buffer_event *event,
176 unsigned long flags, int pc);
177void trace_buffer_unlock_commit_regs(struct ring_buffer *buffer,
178 struct ring_buffer_event *event,
179 unsigned long flags, int pc,
180 struct pt_regs *regs);
e77405ad
SR
181void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
182 struct ring_buffer_event *event);
97f20251
SR
183
184void tracing_record_cmdline(struct task_struct *tsk);
185
892c505a 186int trace_output_call(struct trace_iterator *iter, char *name, char *fmt, ...);
1d6bae96 187
1f9963cb
LZ
188struct event_filter;
189
2239291a
SR
190enum trace_reg {
191 TRACE_REG_REGISTER,
192 TRACE_REG_UNREGISTER,
37d73998 193#ifdef CONFIG_PERF_EVENTS
2239291a
SR
194 TRACE_REG_PERF_REGISTER,
195 TRACE_REG_PERF_UNREGISTER,
ceec0b6f
JO
196 TRACE_REG_PERF_OPEN,
197 TRACE_REG_PERF_CLOSE,
489c75c3
JO
198 TRACE_REG_PERF_ADD,
199 TRACE_REG_PERF_DEL,
37d73998 200#endif
2239291a
SR
201};
202
2425bcb9 203struct trace_event_call;
2239291a 204
2425bcb9 205struct trace_event_class {
acd388fd 206 const char *system;
2239291a
SR
207 void *probe;
208#ifdef CONFIG_PERF_EVENTS
209 void *perf_probe;
210#endif
2425bcb9 211 int (*reg)(struct trace_event_call *event,
ceec0b6f 212 enum trace_reg type, void *data);
2425bcb9
SRRH
213 int (*define_fields)(struct trace_event_call *);
214 struct list_head *(*get_fields)(struct trace_event_call *);
2e33af02 215 struct list_head fields;
2425bcb9 216 int (*raw_init)(struct trace_event_call *);
8f082018
SR
217};
218
2425bcb9 219extern int trace_event_reg(struct trace_event_call *event,
ceec0b6f 220 enum trace_reg type, void *data);
a1d0ce82 221
3f795dcf 222struct trace_event_buffer {
3fd40d1e
SR
223 struct ring_buffer *buffer;
224 struct ring_buffer_event *event;
7f1d2f82 225 struct trace_event_file *trace_file;
3fd40d1e
SR
226 void *entry;
227 unsigned long flags;
228 int pc;
229};
230
3f795dcf 231void *trace_event_buffer_reserve(struct trace_event_buffer *fbuffer,
7f1d2f82 232 struct trace_event_file *trace_file,
3fd40d1e
SR
233 unsigned long len);
234
3f795dcf 235void trace_event_buffer_commit(struct trace_event_buffer *fbuffer);
3fd40d1e 236
553552ce 237enum {
553552ce 238 TRACE_EVENT_FL_FILTERED_BIT,
61c32659 239 TRACE_EVENT_FL_CAP_ANY_BIT,
27b14b56 240 TRACE_EVENT_FL_NO_SET_FILTER_BIT,
9b63776f 241 TRACE_EVENT_FL_IGNORE_ENABLE_BIT,
575380da 242 TRACE_EVENT_FL_WAS_ENABLED_BIT,
f306cc82 243 TRACE_EVENT_FL_USE_CALL_FILTER_BIT,
de7b2973 244 TRACE_EVENT_FL_TRACEPOINT_BIT,
72cbbc89 245 TRACE_EVENT_FL_KPROBE_BIT,
04a22fae 246 TRACE_EVENT_FL_UPROBE_BIT,
553552ce
SR
247};
248
ae63b31e
SR
249/*
250 * Event flags:
251 * FILTERED - The event has a filter attached
252 * CAP_ANY - Any user can enable for perf
253 * NO_SET_FILTER - Set when filter has error and is to be ignored
5d6ad960 254 * IGNORE_ENABLE - For trace internal events, do not enable with debugfs file
575380da
SRRH
255 * WAS_ENABLED - Set and stays set when an event was ever enabled
256 * (used for module unloading, if a module event is enabled,
257 * it is best to clear the buffers that used it).
5d6ad960 258 * USE_CALL_FILTER - For trace internal events, don't use file filter
de7b2973 259 * TRACEPOINT - Event is a tracepoint
72cbbc89 260 * KPROBE - Event is a kprobe
04a22fae 261 * UPROBE - Event is a uprobe
ae63b31e 262 */
553552ce 263enum {
e870e9a1 264 TRACE_EVENT_FL_FILTERED = (1 << TRACE_EVENT_FL_FILTERED_BIT),
61c32659 265 TRACE_EVENT_FL_CAP_ANY = (1 << TRACE_EVENT_FL_CAP_ANY_BIT),
27b14b56 266 TRACE_EVENT_FL_NO_SET_FILTER = (1 << TRACE_EVENT_FL_NO_SET_FILTER_BIT),
9b63776f 267 TRACE_EVENT_FL_IGNORE_ENABLE = (1 << TRACE_EVENT_FL_IGNORE_ENABLE_BIT),
575380da 268 TRACE_EVENT_FL_WAS_ENABLED = (1 << TRACE_EVENT_FL_WAS_ENABLED_BIT),
f306cc82 269 TRACE_EVENT_FL_USE_CALL_FILTER = (1 << TRACE_EVENT_FL_USE_CALL_FILTER_BIT),
de7b2973 270 TRACE_EVENT_FL_TRACEPOINT = (1 << TRACE_EVENT_FL_TRACEPOINT_BIT),
72cbbc89 271 TRACE_EVENT_FL_KPROBE = (1 << TRACE_EVENT_FL_KPROBE_BIT),
04a22fae 272 TRACE_EVENT_FL_UPROBE = (1 << TRACE_EVENT_FL_UPROBE_BIT),
553552ce
SR
273};
274
04a22fae
WN
275#define TRACE_EVENT_FL_UKPROBE (TRACE_EVENT_FL_KPROBE | TRACE_EVENT_FL_UPROBE)
276
2425bcb9 277struct trace_event_call {
a59fd602 278 struct list_head list;
2425bcb9 279 struct trace_event_class *class;
de7b2973
MD
280 union {
281 char *name;
282 /* Set TRACE_EVENT_FL_TRACEPOINT flag when using "tp" */
283 struct tracepoint *tp;
284 };
80decc70 285 struct trace_event event;
0c564a53 286 char *print_fmt;
1f9963cb 287 struct event_filter *filter;
6d723736 288 void *mod;
69fd4f0e 289 void *data;
57d01ad0
SRRH
290 /*
291 * bit 0: filter_active
292 * bit 1: allow trace by non root (cap any)
293 * bit 2: failed to apply filter
5d6ad960 294 * bit 3: trace internal event (do not enable)
57d01ad0 295 * bit 4: Event was enabled by module
f306cc82 296 * bit 5: use call filter rather than file filter
de7b2973 297 * bit 6: Event is a tracepoint
57d01ad0 298 */
ae63b31e
SR
299 int flags; /* static flags of different events */
300
301#ifdef CONFIG_PERF_EVENTS
302 int perf_refcount;
303 struct hlist_head __percpu *perf_events;
2541517c 304 struct bpf_prog *prog;
d5b5f391 305
2425bcb9 306 int (*perf_perm)(struct trace_event_call *,
d5b5f391 307 struct perf_event *);
ae63b31e
SR
308#endif
309};
310
de7b2973 311static inline const char *
687fcc4a 312trace_event_name(struct trace_event_call *call)
de7b2973
MD
313{
314 if (call->flags & TRACE_EVENT_FL_TRACEPOINT)
315 return call->tp ? call->tp->name : NULL;
316 else
317 return call->name;
318}
319
ae63b31e 320struct trace_array;
7967b3e0 321struct trace_subsystem_dir;
ae63b31e
SR
322
323enum {
5d6ad960
SRRH
324 EVENT_FILE_FL_ENABLED_BIT,
325 EVENT_FILE_FL_RECORDED_CMD_BIT,
326 EVENT_FILE_FL_FILTERED_BIT,
327 EVENT_FILE_FL_NO_SET_FILTER_BIT,
328 EVENT_FILE_FL_SOFT_MODE_BIT,
329 EVENT_FILE_FL_SOFT_DISABLED_BIT,
330 EVENT_FILE_FL_TRIGGER_MODE_BIT,
331 EVENT_FILE_FL_TRIGGER_COND_BIT,
ae63b31e
SR
332};
333
334/*
5d6ad960 335 * Event file flags:
57d01ad0 336 * ENABLED - The event is enabled
ae63b31e 337 * RECORDED_CMD - The comms should be recorded at sched_switch
f306cc82
TZ
338 * FILTERED - The event has a filter attached
339 * NO_SET_FILTER - Set when filter has error and is to be ignored
417944c4
SRRH
340 * SOFT_MODE - The event is enabled/disabled by SOFT_DISABLED
341 * SOFT_DISABLED - When set, do not trace the event (even though its
342 * tracepoint may be enabled)
85f2b082 343 * TRIGGER_MODE - When set, invoke the triggers associated with the event
bac5fb97 344 * TRIGGER_COND - When set, one or more triggers has an associated filter
ae63b31e
SR
345 */
346enum {
5d6ad960
SRRH
347 EVENT_FILE_FL_ENABLED = (1 << EVENT_FILE_FL_ENABLED_BIT),
348 EVENT_FILE_FL_RECORDED_CMD = (1 << EVENT_FILE_FL_RECORDED_CMD_BIT),
349 EVENT_FILE_FL_FILTERED = (1 << EVENT_FILE_FL_FILTERED_BIT),
350 EVENT_FILE_FL_NO_SET_FILTER = (1 << EVENT_FILE_FL_NO_SET_FILTER_BIT),
351 EVENT_FILE_FL_SOFT_MODE = (1 << EVENT_FILE_FL_SOFT_MODE_BIT),
352 EVENT_FILE_FL_SOFT_DISABLED = (1 << EVENT_FILE_FL_SOFT_DISABLED_BIT),
353 EVENT_FILE_FL_TRIGGER_MODE = (1 << EVENT_FILE_FL_TRIGGER_MODE_BIT),
354 EVENT_FILE_FL_TRIGGER_COND = (1 << EVENT_FILE_FL_TRIGGER_COND_BIT),
ae63b31e
SR
355};
356
7f1d2f82 357struct trace_event_file {
ae63b31e 358 struct list_head list;
2425bcb9 359 struct trace_event_call *event_call;
f306cc82 360 struct event_filter *filter;
ae63b31e
SR
361 struct dentry *dir;
362 struct trace_array *tr;
7967b3e0 363 struct trace_subsystem_dir *system;
85f2b082 364 struct list_head triggers;
97f20251 365
553552ce
SR
366 /*
367 * 32 bit flags:
57d01ad0
SRRH
368 * bit 0: enabled
369 * bit 1: enabled cmd record
417944c4
SRRH
370 * bit 2: enable/disable with the soft disable bit
371 * bit 3: soft disabled
85f2b082 372 * bit 4: trigger enabled
553552ce 373 *
417944c4
SRRH
374 * Note: The bits must be set atomically to prevent races
375 * from other writers. Reads of flags do not need to be in
376 * sync as they occur in critical sections. But the way flags
ae63b31e 377 * is currently used, these changes do not affect the code
1eaa4787
SR
378 * except that when a change is made, it may have a slight
379 * delay in propagating the changes to other CPUs due to
417944c4 380 * caching and such. Which is mostly OK ;-)
553552ce 381 */
417944c4 382 unsigned long flags;
1cf4c073 383 atomic_t sm_ref; /* soft-mode reference counter */
85f2b082 384 atomic_t tm_ref; /* trigger-mode reference counter */
97f20251
SR
385};
386
53cf810b
FW
387#define __TRACE_EVENT_FLAGS(name, value) \
388 static int __init trace_init_flags_##name(void) \
389 { \
de7b2973 390 event_##name.flags |= value; \
53cf810b
FW
391 return 0; \
392 } \
393 early_initcall(trace_init_flags_##name);
394
d5b5f391 395#define __TRACE_EVENT_PERF_PERM(name, expr...) \
2425bcb9 396 static int perf_perm_##name(struct trace_event_call *tp_event, \
d5b5f391
PZ
397 struct perf_event *p_event) \
398 { \
399 return ({ expr; }); \
400 } \
401 static int __init trace_init_perf_perm_##name(void) \
402 { \
403 event_##name.perf_perm = &perf_perm_##name; \
404 return 0; \
405 } \
406 early_initcall(trace_init_perf_perm_##name);
407
97d5a220 408#define PERF_MAX_TRACE_SIZE 2048
20ab4425 409
16bb8eb1 410#define MAX_FILTER_STR_VAL 256 /* Should handle KSYM_SYMBOL_LEN */
97f20251 411
85f2b082
TZ
412enum event_trigger_type {
413 ETT_NONE = (0),
2a2df321 414 ETT_TRACE_ONOFF = (1 << 0),
93e31ffb 415 ETT_SNAPSHOT = (1 << 1),
f21ecbb3 416 ETT_STACKTRACE = (1 << 2),
7862ad18 417 ETT_EVENT_ENABLE = (1 << 3),
85f2b082
TZ
418};
419
6fb2915d 420extern int filter_match_preds(struct event_filter *filter, void *rec);
f306cc82 421
7f1d2f82 422extern int filter_check_discard(struct trace_event_file *file, void *rec,
f306cc82
TZ
423 struct ring_buffer *buffer,
424 struct ring_buffer_event *event);
2425bcb9 425extern int call_filter_check_discard(struct trace_event_call *call, void *rec,
f306cc82
TZ
426 struct ring_buffer *buffer,
427 struct ring_buffer_event *event);
7f1d2f82 428extern enum event_trigger_type event_triggers_call(struct trace_event_file *file,
bac5fb97 429 void *rec);
7f1d2f82 430extern void event_triggers_post_call(struct trace_event_file *file,
bac5fb97 431 enum event_trigger_type tt);
97f20251 432
13a1e4ae 433/**
09a5059a 434 * trace_trigger_soft_disabled - do triggers and test if soft disabled
13a1e4ae
SRRH
435 * @file: The file pointer of the event to test
436 *
437 * If any triggers without filters are attached to this event, they
438 * will be called here. If the event is soft disabled and has no
439 * triggers that require testing the fields, it will return true,
440 * otherwise false.
441 */
442static inline bool
09a5059a 443trace_trigger_soft_disabled(struct trace_event_file *file)
13a1e4ae
SRRH
444{
445 unsigned long eflags = file->flags;
446
5d6ad960
SRRH
447 if (!(eflags & EVENT_FILE_FL_TRIGGER_COND)) {
448 if (eflags & EVENT_FILE_FL_TRIGGER_MODE)
13a1e4ae 449 event_triggers_call(file, NULL);
5d6ad960 450 if (eflags & EVENT_FILE_FL_SOFT_DISABLED)
13a1e4ae
SRRH
451 return true;
452 }
453 return false;
454}
455
456/*
457 * Helper function for event_trigger_unlock_commit{_regs}().
458 * If there are event triggers attached to this event that requires
459 * filtering against its fields, then they wil be called as the
460 * entry already holds the field information of the current event.
461 *
462 * It also checks if the event should be discarded or not.
463 * It is to be discarded if the event is soft disabled and the
464 * event was only recorded to process triggers, or if the event
465 * filter is active and this event did not match the filters.
466 *
467 * Returns true if the event is discarded, false otherwise.
468 */
469static inline bool
7f1d2f82 470__event_trigger_test_discard(struct trace_event_file *file,
13a1e4ae
SRRH
471 struct ring_buffer *buffer,
472 struct ring_buffer_event *event,
473 void *entry,
474 enum event_trigger_type *tt)
475{
476 unsigned long eflags = file->flags;
477
5d6ad960 478 if (eflags & EVENT_FILE_FL_TRIGGER_COND)
13a1e4ae
SRRH
479 *tt = event_triggers_call(file, entry);
480
5d6ad960 481 if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags))
13a1e4ae
SRRH
482 ring_buffer_discard_commit(buffer, event);
483 else if (!filter_check_discard(file, entry, buffer, event))
484 return false;
485
486 return true;
487}
488
489/**
490 * event_trigger_unlock_commit - handle triggers and finish event commit
491 * @file: The file pointer assoctiated to the event
492 * @buffer: The ring buffer that the event is being written to
493 * @event: The event meta data in the ring buffer
494 * @entry: The event itself
495 * @irq_flags: The state of the interrupts at the start of the event
496 * @pc: The state of the preempt count at the start of the event.
497 *
498 * This is a helper function to handle triggers that require data
499 * from the event itself. It also tests the event against filters and
500 * if the event is soft disabled and should be discarded.
501 */
502static inline void
7f1d2f82 503event_trigger_unlock_commit(struct trace_event_file *file,
13a1e4ae
SRRH
504 struct ring_buffer *buffer,
505 struct ring_buffer_event *event,
506 void *entry, unsigned long irq_flags, int pc)
507{
508 enum event_trigger_type tt = ETT_NONE;
509
510 if (!__event_trigger_test_discard(file, buffer, event, entry, &tt))
511 trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
512
513 if (tt)
514 event_triggers_post_call(file, tt);
515}
516
517/**
518 * event_trigger_unlock_commit_regs - handle triggers and finish event commit
519 * @file: The file pointer assoctiated to the event
520 * @buffer: The ring buffer that the event is being written to
521 * @event: The event meta data in the ring buffer
522 * @entry: The event itself
523 * @irq_flags: The state of the interrupts at the start of the event
524 * @pc: The state of the preempt count at the start of the event.
525 *
526 * This is a helper function to handle triggers that require data
527 * from the event itself. It also tests the event against filters and
528 * if the event is soft disabled and should be discarded.
529 *
530 * Same as event_trigger_unlock_commit() but calls
531 * trace_buffer_unlock_commit_regs() instead of trace_buffer_unlock_commit().
532 */
533static inline void
7f1d2f82 534event_trigger_unlock_commit_regs(struct trace_event_file *file,
13a1e4ae
SRRH
535 struct ring_buffer *buffer,
536 struct ring_buffer_event *event,
537 void *entry, unsigned long irq_flags, int pc,
538 struct pt_regs *regs)
539{
540 enum event_trigger_type tt = ETT_NONE;
541
542 if (!__event_trigger_test_discard(file, buffer, event, entry, &tt))
543 trace_buffer_unlock_commit_regs(buffer, event,
544 irq_flags, pc, regs);
545
546 if (tt)
547 event_triggers_post_call(file, tt);
548}
549
098d2164 550#ifdef CONFIG_BPF_EVENTS
2541517c
AS
551unsigned int trace_call_bpf(struct bpf_prog *prog, void *ctx);
552#else
553static inline unsigned int trace_call_bpf(struct bpf_prog *prog, void *ctx)
554{
555 return 1;
556}
557#endif
558
43b51ead
LZ
559enum {
560 FILTER_OTHER = 0,
561 FILTER_STATIC_STRING,
562 FILTER_DYN_STRING,
87a342f5 563 FILTER_PTR_STRING,
02aa3162 564 FILTER_TRACE_FN,
43b51ead
LZ
565};
566
2425bcb9
SRRH
567extern int trace_event_raw_init(struct trace_event_call *call);
568extern int trace_define_field(struct trace_event_call *call, const char *type,
aeaeae11
FW
569 const char *name, int offset, int size,
570 int is_signed, int filter_type);
2425bcb9
SRRH
571extern int trace_add_event_call(struct trace_event_call *call);
572extern int trace_remove_event_call(struct trace_event_call *call);
97f20251 573
d2802d07 574#define is_signed_type(type) (((type)(-1)) < (type)1)
97f20251 575
4671c794
SR
576int trace_set_clr_event(const char *system, const char *event, int set);
577
97f20251
SR
578/*
579 * The double __builtin_constant_p is because gcc will give us an error
580 * if we try to allocate the static variable to fmt if it is not a
581 * constant. Even with the outer if statement optimizing out.
582 */
583#define event_trace_printk(ip, fmt, args...) \
584do { \
585 __trace_printk_check_format(fmt, ##args); \
586 tracing_record_cmdline(current); \
587 if (__builtin_constant_p(fmt)) { \
588 static const char *trace_printk_fmt \
589 __attribute__((section("__trace_printk_fmt"))) = \
590 __builtin_constant_p(fmt) ? fmt : NULL; \
591 \
592 __trace_bprintk(ip, trace_printk_fmt, ##args); \
593 } else \
594 __trace_printk(ip, fmt, ##args); \
595} while (0)
596
07b139c8 597#ifdef CONFIG_PERF_EVENTS
6fb2915d 598struct perf_event;
c530665c
FW
599
600DECLARE_PER_CPU(struct pt_regs, perf_trace_regs);
601
1c024eca
PZ
602extern int perf_trace_init(struct perf_event *event);
603extern void perf_trace_destroy(struct perf_event *event);
a4eaf7f1
PZ
604extern int perf_trace_add(struct perf_event *event, int flags);
605extern void perf_trace_del(struct perf_event *event, int flags);
1c024eca 606extern int ftrace_profile_set_filter(struct perf_event *event, int event_id,
6fb2915d
LZ
607 char *filter_str);
608extern void ftrace_profile_free_filter(struct perf_event *event);
b7e2ecef 609extern void *perf_trace_buf_prepare(int size, unsigned short type,
86038c5e 610 struct pt_regs **regs, int *rctxp);
430ad5a6
XG
611
612static inline void
97d5a220 613perf_trace_buf_submit(void *raw_data, int size, int rctx, u64 addr,
e6dab5ff
AV
614 u64 count, struct pt_regs *regs, void *head,
615 struct task_struct *task)
430ad5a6 616{
e6dab5ff 617 perf_tp_event(addr, count, raw_data, size, regs, head, rctx, task);
430ad5a6 618}
6fb2915d
LZ
619#endif
620
2425bcb9 621#endif /* _LINUX_TRACE_EVENT_H */