Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Tom Zanussi | bac5fb9 | 2013-10-24 08:59:29 -0500 | [diff] [blame] | 2 | |
Steven Rostedt (Red Hat) | 645df98 | 2015-05-04 18:12:44 -0400 | [diff] [blame] | 3 | #ifndef _LINUX_TRACE_EVENT_H |
| 4 | #define _LINUX_TRACE_EVENT_H |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 5 | |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 6 | #include <linux/ring_buffer.h> |
Steven Rostedt | 16bb8eb | 2009-09-12 19:04:54 -0400 | [diff] [blame] | 7 | #include <linux/trace_seq.h> |
Steven Rostedt | be74b73 | 2009-05-26 20:25:22 +0200 | [diff] [blame] | 8 | #include <linux/percpu.h> |
Frederic Weisbecker | 20ab4425 | 2009-09-18 06:10:28 +0200 | [diff] [blame] | 9 | #include <linux/hardirq.h> |
Xiao Guangrong | 430ad5a | 2010-01-28 09:32:29 +0800 | [diff] [blame] | 10 | #include <linux/perf_event.h> |
Mathieu Desnoyers | de7b297 | 2014-04-08 17:26:21 -0400 | [diff] [blame] | 11 | #include <linux/tracepoint.h> |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 12 | |
| 13 | struct trace_array; |
Steven Rostedt (Red Hat) | 12883ef | 2013-03-05 09:24:35 -0500 | [diff] [blame] | 14 | struct trace_buffer; |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 15 | struct tracer; |
Steven Rostedt | 6d72373 | 2009-04-10 14:53:50 -0400 | [diff] [blame] | 16 | struct dentry; |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 17 | struct bpf_prog; |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 18 | |
Steven Rostedt (Red Hat) | 645df98 | 2015-05-04 18:12:44 -0400 | [diff] [blame] | 19 | const char *trace_print_flags_seq(struct trace_seq *p, const char *delim, |
| 20 | unsigned long flags, |
| 21 | const struct trace_print_flags *flag_array); |
Steven Rostedt | be74b73 | 2009-05-26 20:25:22 +0200 | [diff] [blame] | 22 | |
Steven Rostedt (Red Hat) | 645df98 | 2015-05-04 18:12:44 -0400 | [diff] [blame] | 23 | const char *trace_print_symbols_seq(struct trace_seq *p, unsigned long val, |
| 24 | const struct trace_print_flags *symbol_array); |
Steven Rostedt | 0f4fc29 | 2009-05-20 19:21:47 -0400 | [diff] [blame] | 25 | |
liubo | 2fc1b6f | 2011-04-19 09:35:28 +0800 | [diff] [blame] | 26 | #if BITS_PER_LONG == 32 |
Ross Zwisler | d3213e8 | 2017-02-22 15:39:47 -0800 | [diff] [blame] | 27 | const char *trace_print_flags_seq_u64(struct trace_seq *p, const char *delim, |
| 28 | unsigned long long flags, |
| 29 | const struct trace_print_flags_u64 *flag_array); |
| 30 | |
Steven Rostedt (Red Hat) | 645df98 | 2015-05-04 18:12:44 -0400 | [diff] [blame] | 31 | const char *trace_print_symbols_seq_u64(struct trace_seq *p, |
| 32 | unsigned long long val, |
| 33 | const struct trace_print_flags_u64 |
liubo | 2fc1b6f | 2011-04-19 09:35:28 +0800 | [diff] [blame] | 34 | *symbol_array); |
| 35 | #endif |
| 36 | |
Steven Rostedt (Red Hat) | 645df98 | 2015-05-04 18:12:44 -0400 | [diff] [blame] | 37 | const char *trace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr, |
| 38 | unsigned int bitmask_size); |
Steven Rostedt (Red Hat) | 4449bf9 | 2014-05-06 13:10:24 -0400 | [diff] [blame] | 39 | |
Steven Rostedt (Red Hat) | 645df98 | 2015-05-04 18:12:44 -0400 | [diff] [blame] | 40 | const char *trace_print_hex_seq(struct trace_seq *p, |
Daniel Borkmann | 2acae0d | 2017-01-25 02:28:16 +0100 | [diff] [blame] | 41 | const unsigned char *buf, int len, |
Daniel Borkmann | 3898fac | 2017-02-02 17:09:54 +0100 | [diff] [blame] | 42 | bool concatenate); |
Kei Tokunaga | 5a2e399 | 2010-04-01 20:40:58 +0900 | [diff] [blame] | 43 | |
Steven Rostedt (Red Hat) | 645df98 | 2015-05-04 18:12:44 -0400 | [diff] [blame] | 44 | const char *trace_print_array_seq(struct trace_seq *p, |
Alex Bennée | ac01ce1 | 2015-04-29 16:18:46 +0100 | [diff] [blame] | 45 | const void *buf, int count, |
Dave Martin | 6ea2248 | 2015-01-28 12:48:53 +0000 | [diff] [blame] | 46 | size_t el_size); |
| 47 | |
Li Zefan | f71130d | 2013-02-21 10:32:38 +0800 | [diff] [blame] | 48 | struct trace_iterator; |
| 49 | struct trace_event; |
| 50 | |
Steven Rostedt (Red Hat) | 892c505 | 2015-05-05 14:18:11 -0400 | [diff] [blame] | 51 | int trace_raw_output_prep(struct trace_iterator *iter, |
| 52 | struct trace_event *event); |
Li Zefan | f71130d | 2013-02-21 10:32:38 +0800 | [diff] [blame] | 53 | |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 54 | /* |
| 55 | * The trace entry - the most basic unit of tracing. This is what |
| 56 | * is printed in the end as a single line in the trace output, such as: |
| 57 | * |
| 58 | * bash-15816 [01] 235.197585: idle_cpu <- irq_enter |
| 59 | */ |
| 60 | struct trace_entry { |
Steven Rostedt | 89ec0de | 2009-03-26 11:03:29 -0400 | [diff] [blame] | 61 | unsigned short type; |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 62 | unsigned char flags; |
| 63 | unsigned char preempt_count; |
| 64 | int pid; |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 65 | }; |
| 66 | |
Steven Rostedt (Red Hat) | 609a740 | 2015-05-13 13:44:36 -0400 | [diff] [blame] | 67 | #define TRACE_EVENT_TYPE_MAX \ |
Steven Rostedt | 89ec0de | 2009-03-26 11:03:29 -0400 | [diff] [blame] | 68 | ((1 << (sizeof(((struct trace_entry *)0)->type) * 8)) - 1) |
| 69 | |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 70 | /* |
| 71 | * Trace iterator - used by printout routines who present trace |
| 72 | * results to users and which routines might sleep, etc: |
| 73 | */ |
| 74 | struct trace_iterator { |
| 75 | struct trace_array *tr; |
| 76 | struct tracer *trace; |
Steven Rostedt (Red Hat) | 12883ef | 2013-03-05 09:24:35 -0500 | [diff] [blame] | 77 | struct trace_buffer *trace_buffer; |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 78 | void *private; |
| 79 | int cpu_file; |
| 80 | struct mutex mutex; |
Steven Rostedt | 6d158a8 | 2012-06-27 20:46:14 -0400 | [diff] [blame] | 81 | struct ring_buffer_iter **buffer_iter; |
Steven Rostedt | 112f38a7 | 2009-06-01 15:16:05 -0400 | [diff] [blame] | 82 | unsigned long iter_flags; |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 83 | |
Lai Jiangshan | bc289ae | 2010-06-03 18:26:24 +0800 | [diff] [blame] | 84 | /* trace_seq for __print_flags() and __print_symbolic() etc. */ |
| 85 | struct trace_seq tmp_seq; |
| 86 | |
Andrew Vagin | ed5467d | 2013-08-02 21:16:43 +0400 | [diff] [blame] | 87 | cpumask_var_t started; |
| 88 | |
| 89 | /* it's true when current open file is snapshot */ |
| 90 | bool snapshot; |
| 91 | |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 92 | /* The below is zeroed out in pipe_read */ |
| 93 | struct trace_seq seq; |
| 94 | struct trace_entry *ent; |
Steven Rostedt | bc21b47 | 2010-03-31 19:49:26 -0400 | [diff] [blame] | 95 | unsigned long lost_events; |
Steven Rostedt | a63ce5b | 2009-12-07 09:11:39 -0500 | [diff] [blame] | 96 | int leftover; |
Steven Rostedt | 4a9bd3f | 2011-07-14 16:36:53 -0400 | [diff] [blame] | 97 | int ent_size; |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 98 | int cpu; |
| 99 | u64 ts; |
| 100 | |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 101 | loff_t pos; |
| 102 | long idx; |
| 103 | |
Andrew Vagin | ed5467d | 2013-08-02 21:16:43 +0400 | [diff] [blame] | 104 | /* All new field here will be zeroed out in pipe_read */ |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 105 | }; |
| 106 | |
David Sharp | 8be0709 | 2012-11-13 12:18:22 -0800 | [diff] [blame] | 107 | enum trace_iter_flags { |
| 108 | TRACE_FILE_LAT_FMT = 1, |
| 109 | TRACE_FILE_ANNOTATE = 2, |
| 110 | TRACE_FILE_TIME_IN_NS = 4, |
| 111 | }; |
| 112 | |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 113 | |
| 114 | typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter, |
Steven Rostedt | a9a5776 | 2010-04-22 18:46:14 -0400 | [diff] [blame] | 115 | int flags, struct trace_event *event); |
| 116 | |
| 117 | struct trace_event_functions { |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 118 | trace_print_func trace; |
| 119 | trace_print_func raw; |
| 120 | trace_print_func hex; |
| 121 | trace_print_func binary; |
| 122 | }; |
| 123 | |
Steven Rostedt | a9a5776 | 2010-04-22 18:46:14 -0400 | [diff] [blame] | 124 | struct trace_event { |
| 125 | struct hlist_node node; |
| 126 | struct list_head list; |
| 127 | int type; |
| 128 | struct trace_event_functions *funcs; |
| 129 | }; |
| 130 | |
Steven Rostedt (Red Hat) | 9023c93 | 2015-05-05 09:39:12 -0400 | [diff] [blame] | 131 | extern int register_trace_event(struct trace_event *event); |
| 132 | extern int unregister_trace_event(struct trace_event *event); |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 133 | |
| 134 | /* Return values for print_line callback */ |
| 135 | enum print_line_t { |
| 136 | TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */ |
| 137 | TRACE_TYPE_HANDLED = 1, |
| 138 | TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */ |
| 139 | TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */ |
| 140 | }; |
| 141 | |
Steven Rostedt (VMware) | af0009f | 2017-03-16 11:01:06 -0400 | [diff] [blame] | 142 | enum print_line_t trace_handle_return(struct trace_seq *s); |
Steven Rostedt (Red Hat) | 19a7fe2 | 2014-11-12 10:29:54 -0500 | [diff] [blame] | 143 | |
Frederic Weisbecker | f413cdb | 2009-08-07 01:25:54 +0200 | [diff] [blame] | 144 | void tracing_generic_entry_update(struct trace_entry *entry, |
| 145 | unsigned long flags, |
| 146 | int pc); |
Steven Rostedt (Red Hat) | 7f1d2f8 | 2015-05-05 10:09:53 -0400 | [diff] [blame] | 147 | struct trace_event_file; |
Steven Rostedt | ccb469a | 2012-08-02 10:32:10 -0400 | [diff] [blame] | 148 | |
| 149 | struct ring_buffer_event * |
| 150 | trace_event_buffer_lock_reserve(struct ring_buffer **current_buffer, |
Steven Rostedt (Red Hat) | 7f1d2f8 | 2015-05-05 10:09:53 -0400 | [diff] [blame] | 151 | struct trace_event_file *trace_file, |
Steven Rostedt | ccb469a | 2012-08-02 10:32:10 -0400 | [diff] [blame] | 152 | int type, unsigned long len, |
| 153 | unsigned long flags, int pc); |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 154 | |
Joel Fernandes | d914ba3 | 2017-06-26 19:01:55 -0700 | [diff] [blame] | 155 | #define TRACE_RECORD_CMDLINE BIT(0) |
| 156 | #define TRACE_RECORD_TGID BIT(1) |
| 157 | |
| 158 | void tracing_record_taskinfo(struct task_struct *task, int flags); |
| 159 | void tracing_record_taskinfo_sched_switch(struct task_struct *prev, |
| 160 | struct task_struct *next, int flags); |
| 161 | |
| 162 | void tracing_record_cmdline(struct task_struct *task); |
| 163 | void tracing_record_tgid(struct task_struct *task); |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 164 | |
Steven Rostedt (Red Hat) | 892c505 | 2015-05-05 14:18:11 -0400 | [diff] [blame] | 165 | int trace_output_call(struct trace_iterator *iter, char *name, char *fmt, ...); |
Steven Rostedt | 1d6bae9 | 2012-08-09 19:16:14 -0400 | [diff] [blame] | 166 | |
Li Zefan | 1f9963c | 2009-07-20 10:20:53 +0800 | [diff] [blame] | 167 | struct event_filter; |
| 168 | |
Steven Rostedt | 2239291 | 2010-04-21 12:27:06 -0400 | [diff] [blame] | 169 | enum trace_reg { |
| 170 | TRACE_REG_REGISTER, |
| 171 | TRACE_REG_UNREGISTER, |
Jiri Olsa | 37d7399 | 2012-03-14 00:03:02 +0100 | [diff] [blame] | 172 | #ifdef CONFIG_PERF_EVENTS |
Steven Rostedt | 2239291 | 2010-04-21 12:27:06 -0400 | [diff] [blame] | 173 | TRACE_REG_PERF_REGISTER, |
| 174 | TRACE_REG_PERF_UNREGISTER, |
Jiri Olsa | ceec0b6 | 2012-02-15 15:51:49 +0100 | [diff] [blame] | 175 | TRACE_REG_PERF_OPEN, |
| 176 | TRACE_REG_PERF_CLOSE, |
Peter Zijlstra | 466c81c | 2017-10-10 17:15:47 +0200 | [diff] [blame] | 177 | /* |
| 178 | * These (ADD/DEL) use a 'boolean' return value, where 1 (true) means a |
| 179 | * custom action was taken and the default action is not to be |
| 180 | * performed. |
| 181 | */ |
Jiri Olsa | 489c75c | 2012-02-15 15:51:50 +0100 | [diff] [blame] | 182 | TRACE_REG_PERF_ADD, |
| 183 | TRACE_REG_PERF_DEL, |
Jiri Olsa | 37d7399 | 2012-03-14 00:03:02 +0100 | [diff] [blame] | 184 | #endif |
Steven Rostedt | 2239291 | 2010-04-21 12:27:06 -0400 | [diff] [blame] | 185 | }; |
| 186 | |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 187 | struct trace_event_call; |
Steven Rostedt | 2239291 | 2010-04-21 12:27:06 -0400 | [diff] [blame] | 188 | |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 189 | struct trace_event_class { |
Steven Rostedt (Red Hat) | acd388f | 2015-03-31 14:37:12 -0400 | [diff] [blame] | 190 | const char *system; |
Steven Rostedt | 2239291 | 2010-04-21 12:27:06 -0400 | [diff] [blame] | 191 | void *probe; |
| 192 | #ifdef CONFIG_PERF_EVENTS |
| 193 | void *perf_probe; |
| 194 | #endif |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 195 | int (*reg)(struct trace_event_call *event, |
Jiri Olsa | ceec0b6 | 2012-02-15 15:51:49 +0100 | [diff] [blame] | 196 | enum trace_reg type, void *data); |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 197 | int (*define_fields)(struct trace_event_call *); |
| 198 | struct list_head *(*get_fields)(struct trace_event_call *); |
Steven Rostedt | 2e33af0 | 2010-04-22 10:35:55 -0400 | [diff] [blame] | 199 | struct list_head fields; |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 200 | int (*raw_init)(struct trace_event_call *); |
Steven Rostedt | 8f08201 | 2010-04-20 10:47:33 -0400 | [diff] [blame] | 201 | }; |
| 202 | |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 203 | extern int trace_event_reg(struct trace_event_call *event, |
Jiri Olsa | ceec0b6 | 2012-02-15 15:51:49 +0100 | [diff] [blame] | 204 | enum trace_reg type, void *data); |
Steven Rostedt | a1d0ce8 | 2010-06-08 11:22:06 -0400 | [diff] [blame] | 205 | |
Steven Rostedt (Red Hat) | 3f795dc | 2015-05-05 13:18:46 -0400 | [diff] [blame] | 206 | struct trace_event_buffer { |
Steven Rostedt | 3fd40d1 | 2012-08-09 22:42:57 -0400 | [diff] [blame] | 207 | struct ring_buffer *buffer; |
| 208 | struct ring_buffer_event *event; |
Steven Rostedt (Red Hat) | 7f1d2f8 | 2015-05-05 10:09:53 -0400 | [diff] [blame] | 209 | struct trace_event_file *trace_file; |
Steven Rostedt | 3fd40d1 | 2012-08-09 22:42:57 -0400 | [diff] [blame] | 210 | void *entry; |
| 211 | unsigned long flags; |
| 212 | int pc; |
| 213 | }; |
| 214 | |
Steven Rostedt (Red Hat) | 3f795dc | 2015-05-05 13:18:46 -0400 | [diff] [blame] | 215 | void *trace_event_buffer_reserve(struct trace_event_buffer *fbuffer, |
Steven Rostedt (Red Hat) | 7f1d2f8 | 2015-05-05 10:09:53 -0400 | [diff] [blame] | 216 | struct trace_event_file *trace_file, |
Steven Rostedt | 3fd40d1 | 2012-08-09 22:42:57 -0400 | [diff] [blame] | 217 | unsigned long len); |
| 218 | |
Steven Rostedt (Red Hat) | 3f795dc | 2015-05-05 13:18:46 -0400 | [diff] [blame] | 219 | void trace_event_buffer_commit(struct trace_event_buffer *fbuffer); |
Steven Rostedt | 3fd40d1 | 2012-08-09 22:42:57 -0400 | [diff] [blame] | 220 | |
Steven Rostedt | 553552c | 2010-04-23 11:12:36 -0400 | [diff] [blame] | 221 | enum { |
Steven Rostedt | 553552c | 2010-04-23 11:12:36 -0400 | [diff] [blame] | 222 | TRACE_EVENT_FL_FILTERED_BIT, |
Frederic Weisbecker | 61c3265 | 2010-11-18 01:39:17 +0100 | [diff] [blame] | 223 | TRACE_EVENT_FL_CAP_ANY_BIT, |
Li Zefan | 27b14b5 | 2011-11-01 09:09:35 +0800 | [diff] [blame] | 224 | TRACE_EVENT_FL_NO_SET_FILTER_BIT, |
Steven Rostedt | 9b63776 | 2012-05-10 15:55:43 -0400 | [diff] [blame] | 225 | TRACE_EVENT_FL_IGNORE_ENABLE_BIT, |
Mathieu Desnoyers | de7b297 | 2014-04-08 17:26:21 -0400 | [diff] [blame] | 226 | TRACE_EVENT_FL_TRACEPOINT_BIT, |
Alexei Starovoitov | 72cbbc8 | 2015-03-25 12:49:19 -0700 | [diff] [blame] | 227 | TRACE_EVENT_FL_KPROBE_BIT, |
Wang Nan | 04a22fa | 2015-07-01 02:13:50 +0000 | [diff] [blame] | 228 | TRACE_EVENT_FL_UPROBE_BIT, |
Steven Rostedt | 553552c | 2010-04-23 11:12:36 -0400 | [diff] [blame] | 229 | }; |
| 230 | |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 231 | /* |
| 232 | * Event flags: |
| 233 | * FILTERED - The event has a filter attached |
| 234 | * CAP_ANY - Any user can enable for perf |
| 235 | * NO_SET_FILTER - Set when filter has error and is to be ignored |
Steven Rostedt (Red Hat) | 5d6ad96 | 2015-05-13 15:12:33 -0400 | [diff] [blame] | 236 | * IGNORE_ENABLE - For trace internal events, do not enable with debugfs file |
Mathieu Desnoyers | de7b297 | 2014-04-08 17:26:21 -0400 | [diff] [blame] | 237 | * TRACEPOINT - Event is a tracepoint |
Alexei Starovoitov | 72cbbc8 | 2015-03-25 12:49:19 -0700 | [diff] [blame] | 238 | * KPROBE - Event is a kprobe |
Wang Nan | 04a22fa | 2015-07-01 02:13:50 +0000 | [diff] [blame] | 239 | * UPROBE - Event is a uprobe |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 240 | */ |
Steven Rostedt | 553552c | 2010-04-23 11:12:36 -0400 | [diff] [blame] | 241 | enum { |
Li Zefan | e870e9a | 2010-07-02 11:07:32 +0800 | [diff] [blame] | 242 | TRACE_EVENT_FL_FILTERED = (1 << TRACE_EVENT_FL_FILTERED_BIT), |
Frederic Weisbecker | 61c3265 | 2010-11-18 01:39:17 +0100 | [diff] [blame] | 243 | TRACE_EVENT_FL_CAP_ANY = (1 << TRACE_EVENT_FL_CAP_ANY_BIT), |
Li Zefan | 27b14b5 | 2011-11-01 09:09:35 +0800 | [diff] [blame] | 244 | TRACE_EVENT_FL_NO_SET_FILTER = (1 << TRACE_EVENT_FL_NO_SET_FILTER_BIT), |
Steven Rostedt | 9b63776 | 2012-05-10 15:55:43 -0400 | [diff] [blame] | 245 | TRACE_EVENT_FL_IGNORE_ENABLE = (1 << TRACE_EVENT_FL_IGNORE_ENABLE_BIT), |
Mathieu Desnoyers | de7b297 | 2014-04-08 17:26:21 -0400 | [diff] [blame] | 246 | TRACE_EVENT_FL_TRACEPOINT = (1 << TRACE_EVENT_FL_TRACEPOINT_BIT), |
Alexei Starovoitov | 72cbbc8 | 2015-03-25 12:49:19 -0700 | [diff] [blame] | 247 | TRACE_EVENT_FL_KPROBE = (1 << TRACE_EVENT_FL_KPROBE_BIT), |
Wang Nan | 04a22fa | 2015-07-01 02:13:50 +0000 | [diff] [blame] | 248 | TRACE_EVENT_FL_UPROBE = (1 << TRACE_EVENT_FL_UPROBE_BIT), |
Steven Rostedt | 553552c | 2010-04-23 11:12:36 -0400 | [diff] [blame] | 249 | }; |
| 250 | |
Wang Nan | 04a22fa | 2015-07-01 02:13:50 +0000 | [diff] [blame] | 251 | #define TRACE_EVENT_FL_UKPROBE (TRACE_EVENT_FL_KPROBE | TRACE_EVENT_FL_UPROBE) |
| 252 | |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 253 | struct trace_event_call { |
Steven Rostedt | a59fd60 | 2009-04-10 13:52:20 -0400 | [diff] [blame] | 254 | struct list_head list; |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 255 | struct trace_event_class *class; |
Mathieu Desnoyers | de7b297 | 2014-04-08 17:26:21 -0400 | [diff] [blame] | 256 | union { |
| 257 | char *name; |
| 258 | /* Set TRACE_EVENT_FL_TRACEPOINT flag when using "tp" */ |
| 259 | struct tracepoint *tp; |
| 260 | }; |
Steven Rostedt | 80decc7 | 2010-04-23 10:00:22 -0400 | [diff] [blame] | 261 | struct trace_event event; |
Steven Rostedt (Red Hat) | 0c564a5 | 2015-03-24 17:58:09 -0400 | [diff] [blame] | 262 | char *print_fmt; |
Li Zefan | 1f9963c | 2009-07-20 10:20:53 +0800 | [diff] [blame] | 263 | struct event_filter *filter; |
Steven Rostedt | 6d72373 | 2009-04-10 14:53:50 -0400 | [diff] [blame] | 264 | void *mod; |
Jason Baron | 69fd4f0 | 2009-08-10 16:52:44 -0400 | [diff] [blame] | 265 | void *data; |
Steven Rostedt (Red Hat) | 57d01ad | 2013-03-12 12:38:06 -0400 | [diff] [blame] | 266 | /* |
| 267 | * bit 0: filter_active |
| 268 | * bit 1: allow trace by non root (cap any) |
| 269 | * bit 2: failed to apply filter |
Steven Rostedt (Red Hat) | 5d6ad96 | 2015-05-13 15:12:33 -0400 | [diff] [blame] | 270 | * bit 3: trace internal event (do not enable) |
Steven Rostedt (Red Hat) | 57d01ad | 2013-03-12 12:38:06 -0400 | [diff] [blame] | 271 | * bit 4: Event was enabled by module |
Tom Zanussi | f306cc8 | 2013-10-24 08:34:17 -0500 | [diff] [blame] | 272 | * bit 5: use call filter rather than file filter |
Mathieu Desnoyers | de7b297 | 2014-04-08 17:26:21 -0400 | [diff] [blame] | 273 | * bit 6: Event is a tracepoint |
Steven Rostedt (Red Hat) | 57d01ad | 2013-03-12 12:38:06 -0400 | [diff] [blame] | 274 | */ |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 275 | int flags; /* static flags of different events */ |
| 276 | |
| 277 | #ifdef CONFIG_PERF_EVENTS |
| 278 | int perf_refcount; |
| 279 | struct hlist_head __percpu *perf_events; |
Yonghong Song | e87c6bc | 2017-10-23 23:53:08 -0700 | [diff] [blame] | 280 | struct bpf_prog_array __rcu *prog_array; |
Peter Zijlstra | d5b5f39 | 2013-11-14 16:23:04 +0100 | [diff] [blame] | 281 | |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 282 | int (*perf_perm)(struct trace_event_call *, |
Peter Zijlstra | d5b5f39 | 2013-11-14 16:23:04 +0100 | [diff] [blame] | 283 | struct perf_event *); |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 284 | #endif |
| 285 | }; |
| 286 | |
Yonghong Song | e87c6bc | 2017-10-23 23:53:08 -0700 | [diff] [blame] | 287 | #ifdef CONFIG_PERF_EVENTS |
| 288 | static inline bool bpf_prog_array_valid(struct trace_event_call *call) |
| 289 | { |
| 290 | /* |
| 291 | * This inline function checks whether call->prog_array |
| 292 | * is valid or not. The function is called in various places, |
| 293 | * outside rcu_read_lock/unlock, as a heuristic to speed up execution. |
| 294 | * |
| 295 | * If this function returns true, and later call->prog_array |
| 296 | * becomes false inside rcu_read_lock/unlock region, |
| 297 | * we bail out then. If this function return false, |
| 298 | * there is a risk that we might miss a few events if the checking |
| 299 | * were delayed until inside rcu_read_lock/unlock region and |
| 300 | * call->prog_array happened to become non-NULL then. |
| 301 | * |
| 302 | * Here, READ_ONCE() is used instead of rcu_access_pointer(). |
| 303 | * rcu_access_pointer() requires the actual definition of |
| 304 | * "struct bpf_prog_array" while READ_ONCE() only needs |
| 305 | * a declaration of the same type. |
| 306 | */ |
| 307 | return !!READ_ONCE(call->prog_array); |
| 308 | } |
| 309 | #endif |
| 310 | |
Mathieu Desnoyers | de7b297 | 2014-04-08 17:26:21 -0400 | [diff] [blame] | 311 | static inline const char * |
Steven Rostedt (Red Hat) | 687fcc4 | 2015-05-13 14:20:14 -0400 | [diff] [blame] | 312 | trace_event_name(struct trace_event_call *call) |
Mathieu Desnoyers | de7b297 | 2014-04-08 17:26:21 -0400 | [diff] [blame] | 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 | |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 320 | struct trace_array; |
Steven Rostedt (Red Hat) | 7967b3e | 2015-05-13 14:59:40 -0400 | [diff] [blame] | 321 | struct trace_subsystem_dir; |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 322 | |
| 323 | enum { |
Steven Rostedt (Red Hat) | 5d6ad96 | 2015-05-13 15:12:33 -0400 | [diff] [blame] | 324 | EVENT_FILE_FL_ENABLED_BIT, |
| 325 | EVENT_FILE_FL_RECORDED_CMD_BIT, |
Joel Fernandes | d914ba3 | 2017-06-26 19:01:55 -0700 | [diff] [blame] | 326 | EVENT_FILE_FL_RECORDED_TGID_BIT, |
Steven Rostedt (Red Hat) | 5d6ad96 | 2015-05-13 15:12:33 -0400 | [diff] [blame] | 327 | EVENT_FILE_FL_FILTERED_BIT, |
| 328 | EVENT_FILE_FL_NO_SET_FILTER_BIT, |
| 329 | EVENT_FILE_FL_SOFT_MODE_BIT, |
| 330 | EVENT_FILE_FL_SOFT_DISABLED_BIT, |
| 331 | EVENT_FILE_FL_TRIGGER_MODE_BIT, |
| 332 | EVENT_FILE_FL_TRIGGER_COND_BIT, |
Steven Rostedt (Red Hat) | 3fdaf80 | 2015-09-25 12:58:44 -0400 | [diff] [blame] | 333 | EVENT_FILE_FL_PID_FILTER_BIT, |
Steven Rostedt (VMware) | 065e63f | 2017-08-31 17:03:47 -0400 | [diff] [blame] | 334 | EVENT_FILE_FL_WAS_ENABLED_BIT, |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 335 | }; |
| 336 | |
| 337 | /* |
Steven Rostedt (Red Hat) | 5d6ad96 | 2015-05-13 15:12:33 -0400 | [diff] [blame] | 338 | * Event file flags: |
Steven Rostedt (Red Hat) | 57d01ad | 2013-03-12 12:38:06 -0400 | [diff] [blame] | 339 | * ENABLED - The event is enabled |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 340 | * RECORDED_CMD - The comms should be recorded at sched_switch |
Joel Fernandes | d914ba3 | 2017-06-26 19:01:55 -0700 | [diff] [blame] | 341 | * RECORDED_TGID - The tgids should be recorded at sched_switch |
Tom Zanussi | f306cc8 | 2013-10-24 08:34:17 -0500 | [diff] [blame] | 342 | * FILTERED - The event has a filter attached |
| 343 | * NO_SET_FILTER - Set when filter has error and is to be ignored |
Steven Rostedt (Red Hat) | 417944c | 2013-03-12 13:26:18 -0400 | [diff] [blame] | 344 | * SOFT_MODE - The event is enabled/disabled by SOFT_DISABLED |
| 345 | * SOFT_DISABLED - When set, do not trace the event (even though its |
| 346 | * tracepoint may be enabled) |
Tom Zanussi | 85f2b08 | 2013-10-24 08:59:24 -0500 | [diff] [blame] | 347 | * TRIGGER_MODE - When set, invoke the triggers associated with the event |
Tom Zanussi | bac5fb9 | 2013-10-24 08:59:29 -0500 | [diff] [blame] | 348 | * TRIGGER_COND - When set, one or more triggers has an associated filter |
Steven Rostedt (Red Hat) | 3fdaf80 | 2015-09-25 12:58:44 -0400 | [diff] [blame] | 349 | * PID_FILTER - When set, the event is filtered based on pid |
Steven Rostedt (VMware) | 065e63f | 2017-08-31 17:03:47 -0400 | [diff] [blame] | 350 | * WAS_ENABLED - Set when enabled to know to clear trace on module removal |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 351 | */ |
| 352 | enum { |
Steven Rostedt (Red Hat) | 5d6ad96 | 2015-05-13 15:12:33 -0400 | [diff] [blame] | 353 | EVENT_FILE_FL_ENABLED = (1 << EVENT_FILE_FL_ENABLED_BIT), |
| 354 | EVENT_FILE_FL_RECORDED_CMD = (1 << EVENT_FILE_FL_RECORDED_CMD_BIT), |
Joel Fernandes | d914ba3 | 2017-06-26 19:01:55 -0700 | [diff] [blame] | 355 | EVENT_FILE_FL_RECORDED_TGID = (1 << EVENT_FILE_FL_RECORDED_TGID_BIT), |
Steven Rostedt (Red Hat) | 5d6ad96 | 2015-05-13 15:12:33 -0400 | [diff] [blame] | 356 | EVENT_FILE_FL_FILTERED = (1 << EVENT_FILE_FL_FILTERED_BIT), |
| 357 | EVENT_FILE_FL_NO_SET_FILTER = (1 << EVENT_FILE_FL_NO_SET_FILTER_BIT), |
| 358 | EVENT_FILE_FL_SOFT_MODE = (1 << EVENT_FILE_FL_SOFT_MODE_BIT), |
| 359 | EVENT_FILE_FL_SOFT_DISABLED = (1 << EVENT_FILE_FL_SOFT_DISABLED_BIT), |
| 360 | EVENT_FILE_FL_TRIGGER_MODE = (1 << EVENT_FILE_FL_TRIGGER_MODE_BIT), |
| 361 | EVENT_FILE_FL_TRIGGER_COND = (1 << EVENT_FILE_FL_TRIGGER_COND_BIT), |
Steven Rostedt (Red Hat) | 3fdaf80 | 2015-09-25 12:58:44 -0400 | [diff] [blame] | 362 | EVENT_FILE_FL_PID_FILTER = (1 << EVENT_FILE_FL_PID_FILTER_BIT), |
Steven Rostedt (VMware) | 065e63f | 2017-08-31 17:03:47 -0400 | [diff] [blame] | 363 | EVENT_FILE_FL_WAS_ENABLED = (1 << EVENT_FILE_FL_WAS_ENABLED_BIT), |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 364 | }; |
| 365 | |
Steven Rostedt (Red Hat) | 7f1d2f8 | 2015-05-05 10:09:53 -0400 | [diff] [blame] | 366 | struct trace_event_file { |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 367 | struct list_head list; |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 368 | struct trace_event_call *event_call; |
Chunyan Zhang | f86f418 | 2017-06-07 16:12:51 +0800 | [diff] [blame] | 369 | struct event_filter __rcu *filter; |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 370 | struct dentry *dir; |
| 371 | struct trace_array *tr; |
Steven Rostedt (Red Hat) | 7967b3e | 2015-05-13 14:59:40 -0400 | [diff] [blame] | 372 | struct trace_subsystem_dir *system; |
Tom Zanussi | 85f2b08 | 2013-10-24 08:59:24 -0500 | [diff] [blame] | 373 | struct list_head triggers; |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 374 | |
Steven Rostedt | 553552c | 2010-04-23 11:12:36 -0400 | [diff] [blame] | 375 | /* |
| 376 | * 32 bit flags: |
Steven Rostedt (Red Hat) | 57d01ad | 2013-03-12 12:38:06 -0400 | [diff] [blame] | 377 | * bit 0: enabled |
| 378 | * bit 1: enabled cmd record |
Steven Rostedt (Red Hat) | 417944c | 2013-03-12 13:26:18 -0400 | [diff] [blame] | 379 | * bit 2: enable/disable with the soft disable bit |
| 380 | * bit 3: soft disabled |
Tom Zanussi | 85f2b08 | 2013-10-24 08:59:24 -0500 | [diff] [blame] | 381 | * bit 4: trigger enabled |
Steven Rostedt | 553552c | 2010-04-23 11:12:36 -0400 | [diff] [blame] | 382 | * |
Steven Rostedt (Red Hat) | 417944c | 2013-03-12 13:26:18 -0400 | [diff] [blame] | 383 | * Note: The bits must be set atomically to prevent races |
| 384 | * from other writers. Reads of flags do not need to be in |
| 385 | * sync as they occur in critical sections. But the way flags |
Steven Rostedt | ae63b31e | 2012-05-03 23:09:03 -0400 | [diff] [blame] | 386 | * is currently used, these changes do not affect the code |
Steven Rostedt | 1eaa478 | 2010-05-14 10:19:13 -0400 | [diff] [blame] | 387 | * except that when a change is made, it may have a slight |
| 388 | * delay in propagating the changes to other CPUs due to |
Steven Rostedt (Red Hat) | 417944c | 2013-03-12 13:26:18 -0400 | [diff] [blame] | 389 | * caching and such. Which is mostly OK ;-) |
Steven Rostedt | 553552c | 2010-04-23 11:12:36 -0400 | [diff] [blame] | 390 | */ |
Steven Rostedt (Red Hat) | 417944c | 2013-03-12 13:26:18 -0400 | [diff] [blame] | 391 | unsigned long flags; |
Masami Hiramatsu | 1cf4c07 | 2013-05-09 14:44:29 +0900 | [diff] [blame] | 392 | atomic_t sm_ref; /* soft-mode reference counter */ |
Tom Zanussi | 85f2b08 | 2013-10-24 08:59:24 -0500 | [diff] [blame] | 393 | atomic_t tm_ref; /* trigger-mode reference counter */ |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 394 | }; |
| 395 | |
Frederic Weisbecker | 53cf810b | 2010-11-18 02:11:42 +0100 | [diff] [blame] | 396 | #define __TRACE_EVENT_FLAGS(name, value) \ |
| 397 | static int __init trace_init_flags_##name(void) \ |
| 398 | { \ |
Mathieu Desnoyers | de7b297 | 2014-04-08 17:26:21 -0400 | [diff] [blame] | 399 | event_##name.flags |= value; \ |
Frederic Weisbecker | 53cf810b | 2010-11-18 02:11:42 +0100 | [diff] [blame] | 400 | return 0; \ |
| 401 | } \ |
| 402 | early_initcall(trace_init_flags_##name); |
| 403 | |
Peter Zijlstra | d5b5f39 | 2013-11-14 16:23:04 +0100 | [diff] [blame] | 404 | #define __TRACE_EVENT_PERF_PERM(name, expr...) \ |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 405 | static int perf_perm_##name(struct trace_event_call *tp_event, \ |
Peter Zijlstra | d5b5f39 | 2013-11-14 16:23:04 +0100 | [diff] [blame] | 406 | struct perf_event *p_event) \ |
| 407 | { \ |
| 408 | return ({ expr; }); \ |
| 409 | } \ |
| 410 | static int __init trace_init_perf_perm_##name(void) \ |
| 411 | { \ |
| 412 | event_##name.perf_perm = &perf_perm_##name; \ |
| 413 | return 0; \ |
| 414 | } \ |
| 415 | early_initcall(trace_init_perf_perm_##name); |
| 416 | |
Frederic Weisbecker | 97d5a22 | 2010-03-05 05:35:37 +0100 | [diff] [blame] | 417 | #define PERF_MAX_TRACE_SIZE 2048 |
Frederic Weisbecker | 20ab4425 | 2009-09-18 06:10:28 +0200 | [diff] [blame] | 418 | |
Steven Rostedt | 16bb8eb | 2009-09-12 19:04:54 -0400 | [diff] [blame] | 419 | #define MAX_FILTER_STR_VAL 256 /* Should handle KSYM_SYMBOL_LEN */ |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 420 | |
Tom Zanussi | 85f2b08 | 2013-10-24 08:59:24 -0500 | [diff] [blame] | 421 | enum event_trigger_type { |
| 422 | ETT_NONE = (0), |
Tom Zanussi | 2a2df32 | 2013-10-24 08:59:25 -0500 | [diff] [blame] | 423 | ETT_TRACE_ONOFF = (1 << 0), |
Tom Zanussi | 93e31ff | 2013-10-24 08:59:26 -0500 | [diff] [blame] | 424 | ETT_SNAPSHOT = (1 << 1), |
Tom Zanussi | f21ecbb | 2013-10-24 08:59:27 -0500 | [diff] [blame] | 425 | ETT_STACKTRACE = (1 << 2), |
Tom Zanussi | 7862ad1 | 2013-10-24 08:59:28 -0500 | [diff] [blame] | 426 | ETT_EVENT_ENABLE = (1 << 3), |
Tom Zanussi | 7ef224d | 2016-03-03 12:54:42 -0600 | [diff] [blame] | 427 | ETT_EVENT_HIST = (1 << 4), |
Tom Zanussi | d0bad49 | 2016-03-03 12:54:55 -0600 | [diff] [blame] | 428 | ETT_HIST_ENABLE = (1 << 5), |
Tom Zanussi | 85f2b08 | 2013-10-24 08:59:24 -0500 | [diff] [blame] | 429 | }; |
| 430 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 431 | extern int filter_match_preds(struct event_filter *filter, void *rec); |
Tom Zanussi | f306cc8 | 2013-10-24 08:34:17 -0500 | [diff] [blame] | 432 | |
Steven Rostedt (Red Hat) | 7f1d2f8 | 2015-05-05 10:09:53 -0400 | [diff] [blame] | 433 | extern enum event_trigger_type event_triggers_call(struct trace_event_file *file, |
Tom Zanussi | bac5fb9 | 2013-10-24 08:59:29 -0500 | [diff] [blame] | 434 | void *rec); |
Steven Rostedt (Red Hat) | 7f1d2f8 | 2015-05-05 10:09:53 -0400 | [diff] [blame] | 435 | extern void event_triggers_post_call(struct trace_event_file *file, |
Tom Zanussi | c4a5923 | 2015-12-10 12:50:45 -0600 | [diff] [blame] | 436 | enum event_trigger_type tt, |
| 437 | void *rec); |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 438 | |
Steven Rostedt (Red Hat) | 3fdaf80 | 2015-09-25 12:58:44 -0400 | [diff] [blame] | 439 | bool trace_event_ignore_this_pid(struct trace_event_file *trace_file); |
| 440 | |
Steven Rostedt (Red Hat) | 13a1e4a | 2014-01-06 21:32:10 -0500 | [diff] [blame] | 441 | /** |
Steven Rostedt (Red Hat) | 09a5059 | 2015-05-13 15:21:25 -0400 | [diff] [blame] | 442 | * trace_trigger_soft_disabled - do triggers and test if soft disabled |
Steven Rostedt (Red Hat) | 13a1e4a | 2014-01-06 21:32:10 -0500 | [diff] [blame] | 443 | * @file: The file pointer of the event to test |
| 444 | * |
| 445 | * If any triggers without filters are attached to this event, they |
| 446 | * will be called here. If the event is soft disabled and has no |
| 447 | * triggers that require testing the fields, it will return true, |
| 448 | * otherwise false. |
| 449 | */ |
| 450 | static inline bool |
Steven Rostedt (Red Hat) | 09a5059 | 2015-05-13 15:21:25 -0400 | [diff] [blame] | 451 | trace_trigger_soft_disabled(struct trace_event_file *file) |
Steven Rostedt (Red Hat) | 13a1e4a | 2014-01-06 21:32:10 -0500 | [diff] [blame] | 452 | { |
| 453 | unsigned long eflags = file->flags; |
| 454 | |
Steven Rostedt (Red Hat) | 5d6ad96 | 2015-05-13 15:12:33 -0400 | [diff] [blame] | 455 | if (!(eflags & EVENT_FILE_FL_TRIGGER_COND)) { |
| 456 | if (eflags & EVENT_FILE_FL_TRIGGER_MODE) |
Steven Rostedt (Red Hat) | 13a1e4a | 2014-01-06 21:32:10 -0500 | [diff] [blame] | 457 | event_triggers_call(file, NULL); |
Steven Rostedt (Red Hat) | 5d6ad96 | 2015-05-13 15:12:33 -0400 | [diff] [blame] | 458 | if (eflags & EVENT_FILE_FL_SOFT_DISABLED) |
Steven Rostedt (Red Hat) | 13a1e4a | 2014-01-06 21:32:10 -0500 | [diff] [blame] | 459 | return true; |
Steven Rostedt (Red Hat) | 3fdaf80 | 2015-09-25 12:58:44 -0400 | [diff] [blame] | 460 | if (eflags & EVENT_FILE_FL_PID_FILTER) |
| 461 | return trace_event_ignore_this_pid(file); |
Steven Rostedt (Red Hat) | 13a1e4a | 2014-01-06 21:32:10 -0500 | [diff] [blame] | 462 | } |
| 463 | return false; |
| 464 | } |
| 465 | |
Wang Nan | 098d216 | 2015-07-01 02:13:49 +0000 | [diff] [blame] | 466 | #ifdef CONFIG_BPF_EVENTS |
Yonghong Song | e87c6bc | 2017-10-23 23:53:08 -0700 | [diff] [blame] | 467 | unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx); |
| 468 | int perf_event_attach_bpf_prog(struct perf_event *event, struct bpf_prog *prog); |
| 469 | void perf_event_detach_bpf_prog(struct perf_event *event); |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 470 | #else |
Yonghong Song | e87c6bc | 2017-10-23 23:53:08 -0700 | [diff] [blame] | 471 | static inline unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx) |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 472 | { |
| 473 | return 1; |
| 474 | } |
Yonghong Song | e87c6bc | 2017-10-23 23:53:08 -0700 | [diff] [blame] | 475 | |
| 476 | static inline int |
| 477 | perf_event_attach_bpf_prog(struct perf_event *event, struct bpf_prog *prog) |
| 478 | { |
| 479 | return -EOPNOTSUPP; |
| 480 | } |
| 481 | |
| 482 | static inline void perf_event_detach_bpf_prog(struct perf_event *event) { } |
| 483 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 484 | #endif |
| 485 | |
Li Zefan | 43b51ea | 2009-08-07 10:33:22 +0800 | [diff] [blame] | 486 | enum { |
| 487 | FILTER_OTHER = 0, |
| 488 | FILTER_STATIC_STRING, |
| 489 | FILTER_DYN_STRING, |
Li Zefan | 87a342f | 2009-08-07 10:33:43 +0800 | [diff] [blame] | 490 | FILTER_PTR_STRING, |
Jiri Olsa | 02aa316 | 2012-02-15 15:51:53 +0100 | [diff] [blame] | 491 | FILTER_TRACE_FN, |
Steven Rostedt (Red Hat) | e57cbaf | 2016-03-03 17:18:20 -0500 | [diff] [blame] | 492 | FILTER_COMM, |
| 493 | FILTER_CPU, |
Li Zefan | 43b51ea | 2009-08-07 10:33:22 +0800 | [diff] [blame] | 494 | }; |
| 495 | |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 496 | extern int trace_event_raw_init(struct trace_event_call *call); |
| 497 | extern int trace_define_field(struct trace_event_call *call, const char *type, |
Frederic Weisbecker | aeaeae1 | 2009-08-27 05:09:51 +0200 | [diff] [blame] | 498 | const char *name, int offset, int size, |
| 499 | int is_signed, int filter_type); |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 500 | extern int trace_add_event_call(struct trace_event_call *call); |
| 501 | extern int trace_remove_event_call(struct trace_event_call *call); |
Alexei Starovoitov | 32bbe00 | 2016-04-06 18:43:28 -0700 | [diff] [blame] | 502 | extern int trace_event_get_offsets(struct trace_event_call *call); |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 503 | |
Steven Rostedt (Red Hat) | d2802d0 | 2013-04-19 17:10:27 -0400 | [diff] [blame] | 504 | #define is_signed_type(type) (((type)(-1)) < (type)1) |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 505 | |
Steven Rostedt | 4671c79 | 2009-05-08 16:27:41 -0400 | [diff] [blame] | 506 | int trace_set_clr_event(const char *system, const char *event, int set); |
| 507 | |
Steven Rostedt | 97f2025 | 2009-04-13 11:20:49 -0400 | [diff] [blame] | 508 | /* |
| 509 | * The double __builtin_constant_p is because gcc will give us an error |
| 510 | * if we try to allocate the static variable to fmt if it is not a |
| 511 | * constant. Even with the outer if statement optimizing out. |
| 512 | */ |
| 513 | #define event_trace_printk(ip, fmt, args...) \ |
| 514 | do { \ |
| 515 | __trace_printk_check_format(fmt, ##args); \ |
| 516 | tracing_record_cmdline(current); \ |
| 517 | if (__builtin_constant_p(fmt)) { \ |
| 518 | static const char *trace_printk_fmt \ |
| 519 | __attribute__((section("__trace_printk_fmt"))) = \ |
| 520 | __builtin_constant_p(fmt) ? fmt : NULL; \ |
| 521 | \ |
| 522 | __trace_bprintk(ip, trace_printk_fmt, ##args); \ |
| 523 | } else \ |
| 524 | __trace_printk(ip, fmt, ##args); \ |
| 525 | } while (0) |
| 526 | |
Li Zefan | 07b139c | 2009-12-21 14:27:35 +0800 | [diff] [blame] | 527 | #ifdef CONFIG_PERF_EVENTS |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 528 | struct perf_event; |
Frederic Weisbecker | c530665 | 2010-03-03 07:16:16 +0100 | [diff] [blame] | 529 | |
| 530 | DECLARE_PER_CPU(struct pt_regs, perf_trace_regs); |
| 531 | |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 532 | extern int perf_trace_init(struct perf_event *event); |
| 533 | extern void perf_trace_destroy(struct perf_event *event); |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 534 | extern int perf_trace_add(struct perf_event *event, int flags); |
| 535 | extern void perf_trace_del(struct perf_event *event, int flags); |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 536 | extern int ftrace_profile_set_filter(struct perf_event *event, int event_id, |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 537 | char *filter_str); |
| 538 | extern void ftrace_profile_free_filter(struct perf_event *event); |
Alexei Starovoitov | 1e1dcd9 | 2016-04-06 18:43:24 -0700 | [diff] [blame] | 539 | void perf_trace_buf_update(void *record, u16 type); |
| 540 | void *perf_trace_buf_alloc(int size, struct pt_regs **regs, int *rctxp); |
Xiao Guangrong | 430ad5a | 2010-01-28 09:32:29 +0800 | [diff] [blame] | 541 | |
Alexei Starovoitov | 85b67bc | 2016-04-18 20:11:50 -0700 | [diff] [blame] | 542 | void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx, |
| 543 | struct trace_event_call *call, u64 count, |
| 544 | struct pt_regs *regs, struct hlist_head *head, |
| 545 | struct task_struct *task); |
| 546 | |
Xiao Guangrong | 430ad5a | 2010-01-28 09:32:29 +0800 | [diff] [blame] | 547 | static inline void |
Alexei Starovoitov | 1e1dcd9 | 2016-04-06 18:43:24 -0700 | [diff] [blame] | 548 | perf_trace_buf_submit(void *raw_data, int size, int rctx, u16 type, |
Andrew Vagin | e6dab5f | 2012-07-11 18:14:58 +0400 | [diff] [blame] | 549 | u64 count, struct pt_regs *regs, void *head, |
Peter Zijlstra | 8fd0fbb | 2017-10-11 09:45:29 +0200 | [diff] [blame] | 550 | struct task_struct *task) |
Xiao Guangrong | 430ad5a | 2010-01-28 09:32:29 +0800 | [diff] [blame] | 551 | { |
Peter Zijlstra | 8fd0fbb | 2017-10-11 09:45:29 +0200 | [diff] [blame] | 552 | perf_tp_event(type, count, raw_data, size, regs, head, rctx, task); |
Xiao Guangrong | 430ad5a | 2010-01-28 09:32:29 +0800 | [diff] [blame] | 553 | } |
Yonghong Song | e87c6bc | 2017-10-23 23:53:08 -0700 | [diff] [blame] | 554 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 555 | #endif |
| 556 | |
Steven Rostedt (Red Hat) | 2425bcb | 2015-05-05 11:45:27 -0400 | [diff] [blame] | 557 | #endif /* _LINUX_TRACE_EVENT_H */ |