Commit | Line | Data |
---|---|---|
2025cf9e | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
718c602d AH |
2 | /* |
3 | * auxtrace.h: AUX area trace support | |
4 | * Copyright (c) 2013-2015, Intel Corporation. | |
718c602d AH |
5 | */ |
6 | ||
7 | #ifndef __PERF_AUXTRACE_H | |
8 | #define __PERF_AUXTRACE_H | |
9 | ||
10 | #include <sys/types.h> | |
a43783ae | 11 | #include <errno.h> |
718c602d | 12 | #include <stdbool.h> |
9e0cc4fe | 13 | #include <stddef.h> |
ea49e01c | 14 | #include <stdio.h> // FILE |
e5027893 | 15 | #include <linux/list.h> |
718c602d AH |
16 | #include <linux/perf_event.h> |
17 | #include <linux/types.h> | |
c4d9d95f | 18 | #include <perf/cpumap.h> |
291ed51d | 19 | #include <asm/bitsperlong.h> |
91854f9a | 20 | #include <asm/barrier.h> |
718c602d | 21 | |
9e0cc4fe AH |
22 | union perf_event; |
23 | struct perf_session; | |
63503dba | 24 | struct evlist; |
853f37d7 | 25 | struct evsel; |
9e0cc4fe | 26 | struct perf_tool; |
a5830532 | 27 | struct mmap; |
bd23ac11 | 28 | struct perf_sample; |
f6986c95 | 29 | struct option; |
9e0cc4fe | 30 | struct record_opts; |
ea49e01c | 31 | struct perf_record_auxtrace_error; |
72932371 | 32 | struct perf_record_auxtrace_info; |
85ed4729 | 33 | struct events_stats; |
ad60ba0c | 34 | struct perf_pmu; |
718c602d | 35 | |
47729258 ACM |
36 | enum auxtrace_error_type { |
37 | PERF_AUXTRACE_ERROR_ITRACE = 1, | |
38 | PERF_AUXTRACE_ERROR_MAX | |
39 | }; | |
40 | ||
c3fcadf0 AH |
41 | /* Auxtrace records must have the same alignment as perf event records */ |
42 | #define PERF_AUXTRACE_RECORD_ALIGNMENT 8 | |
43 | ||
73f75fb1 AH |
44 | enum auxtrace_type { |
45 | PERF_AUXTRACE_UNKNOWN, | |
55ea4ab4 | 46 | PERF_AUXTRACE_INTEL_PT, |
d0170af7 | 47 | PERF_AUXTRACE_INTEL_BTS, |
a818c563 | 48 | PERF_AUXTRACE_CS_ETM, |
ffd3d18c | 49 | PERF_AUXTRACE_ARM_SPE, |
b96e6615 | 50 | PERF_AUXTRACE_S390_CPUMSF, |
057381a7 | 51 | PERF_AUXTRACE_HISI_PTT, |
73f75fb1 AH |
52 | }; |
53 | ||
f6986c95 AH |
54 | enum itrace_period_type { |
55 | PERF_ITRACE_PERIOD_INSTRUCTIONS, | |
56 | PERF_ITRACE_PERIOD_TICKS, | |
57 | PERF_ITRACE_PERIOD_NANOSECS, | |
58 | }; | |
59 | ||
cb971438 AH |
60 | #define AUXTRACE_ERR_FLG_OVERFLOW (1 << ('o' - 'a')) |
61 | #define AUXTRACE_ERR_FLG_DATA_LOST (1 << ('l' - 'a')) | |
62 | ||
935aac2d | 63 | #define AUXTRACE_LOG_FLG_ALL_PERF_EVTS (1 << ('a' - 'a')) |
a7fdd30a | 64 | #define AUXTRACE_LOG_FLG_ON_ERROR (1 << ('e' - 'a')) |
4b2b2c6a | 65 | #define AUXTRACE_LOG_FLG_USE_STDOUT (1 << ('o' - 'a')) |
935aac2d | 66 | |
f6986c95 AH |
67 | /** |
68 | * struct itrace_synth_opts - AUX area tracing synthesis options. | |
69 | * @set: indicates whether or not options have been set | |
4eb06815 | 70 | * @default_no_sample: Default to no sampling. |
f6986c95 AH |
71 | * @inject: indicates the event (not just the sample) must be fully synthesized |
72 | * because 'perf inject' will write it out | |
73 | * @instructions: whether to synthesize 'instructions' events | |
7e55b956 SG |
74 | * @cycles: whether to synthesize 'cycles' events |
75 | * (not fully accurate, since CYC packets are only emitted | |
76 | * together with other events, such as branches) | |
f6986c95 | 77 | * @branches: whether to synthesize 'branches' events |
53c76b0e | 78 | * @transactions: whether to synthesize events for transactions |
3bdafdff | 79 | * @ptwrites: whether to synthesize events for ptwrites |
70d110d7 | 80 | * @pwr_events: whether to synthesize power events |
181ebb5e AH |
81 | * @other_events: whether to synthesize other events recorded due to the use of |
82 | * aux_output | |
8ee9a9ab | 83 | * @intr_events: whether to synthesize interrupt events |
f6986c95 AH |
84 | * @errors: whether to synthesize decoder error events |
85 | * @dont_decode: whether to skip decoding entirely | |
86 | * @log: write a decoding log | |
87 | * @calls: limit branch samples to calls (can be combined with @returns) | |
88 | * @returns: limit branch samples to returns (can be combined with @calls) | |
89 | * @callchain: add callchain to 'instructions' events | |
1c5c25b3 | 90 | * @add_callchain: add callchain to existing event records |
50f73637 | 91 | * @thread_stack: feed branches to the thread_stack |
601897b5 | 92 | * @last_branch: add branch context to 'instruction' events |
ec90e42c | 93 | * @add_last_branch: add branch context to existing event records |
b6778fe1 | 94 | * @approx_ipc: approximate IPC |
9f74d770 TX |
95 | * @flc: whether to synthesize first level cache events |
96 | * @llc: whether to synthesize last level cache events | |
97 | * @tlb: whether to synthesize TLB events | |
98 | * @remote_access: whether to synthesize remote access events | |
014a771c | 99 | * @mem: whether to synthesize memory events |
18f49494 | 100 | * @timeless_decoding: prefer "timeless" decoding i.e. ignore timestamps |
26218331 | 101 | * @use_timestamp: use the timestamp trace as kernel time |
83d7f5f1 AH |
102 | * @vm_time_correlation: perform VM Time Correlation |
103 | * @vm_tm_corr_dry_run: VM Time Correlation dry-run | |
104 | * @vm_tm_corr_args: VM Time Correlation implementation-specific arguments | |
f6986c95 | 105 | * @callchain_sz: maximum callchain size |
601897b5 | 106 | * @last_branch_sz: branch context size |
f6986c95 AH |
107 | * @period: 'instructions' events period |
108 | * @period_type: 'instructions' events period type | |
d1706b39 | 109 | * @initial_skip: skip N events at the beginning. |
644e0840 | 110 | * @cpu_bitmap: CPUs for which to synthesize events, or NULL for all |
33526f36 AH |
111 | * @ptime_range: time intervals to trace or NULL |
112 | * @range_num: number of time intervals to trace | |
cb971438 AH |
113 | * @error_plus_flags: flags to affect what errors are reported |
114 | * @error_minus_flags: flags to affect what errors are reported | |
935aac2d AH |
115 | * @log_plus_flags: flags to affect what is logged |
116 | * @log_minus_flags: flags to affect what is logged | |
51971536 | 117 | * @quick: quicker (less detailed) decoding |
a7fdd30a | 118 | * @log_on_error_size: size of log to keep for outputting log only on errors |
f6986c95 AH |
119 | */ |
120 | struct itrace_synth_opts { | |
121 | bool set; | |
4eb06815 | 122 | bool default_no_sample; |
f6986c95 AH |
123 | bool inject; |
124 | bool instructions; | |
7e55b956 | 125 | bool cycles; |
f6986c95 | 126 | bool branches; |
53c76b0e | 127 | bool transactions; |
3bdafdff | 128 | bool ptwrites; |
70d110d7 | 129 | bool pwr_events; |
181ebb5e | 130 | bool other_events; |
8ee9a9ab | 131 | bool intr_events; |
f6986c95 AH |
132 | bool errors; |
133 | bool dont_decode; | |
134 | bool log; | |
135 | bool calls; | |
136 | bool returns; | |
137 | bool callchain; | |
1c5c25b3 | 138 | bool add_callchain; |
50f73637 | 139 | bool thread_stack; |
601897b5 | 140 | bool last_branch; |
ec90e42c | 141 | bool add_last_branch; |
b6778fe1 | 142 | bool approx_ipc; |
9f74d770 TX |
143 | bool flc; |
144 | bool llc; | |
145 | bool tlb; | |
146 | bool remote_access; | |
014a771c | 147 | bool mem; |
18f49494 | 148 | bool timeless_decoding; |
26218331 | 149 | bool use_timestamp; |
83d7f5f1 AH |
150 | bool vm_time_correlation; |
151 | bool vm_tm_corr_dry_run; | |
152 | char *vm_tm_corr_args; | |
f6986c95 | 153 | unsigned int callchain_sz; |
601897b5 | 154 | unsigned int last_branch_sz; |
f6986c95 AH |
155 | unsigned long long period; |
156 | enum itrace_period_type period_type; | |
d1706b39 | 157 | unsigned long initial_skip; |
644e0840 | 158 | unsigned long *cpu_bitmap; |
33526f36 AH |
159 | struct perf_time_interval *ptime_range; |
160 | int range_num; | |
cb971438 AH |
161 | unsigned int error_plus_flags; |
162 | unsigned int error_minus_flags; | |
935aac2d AH |
163 | unsigned int log_plus_flags; |
164 | unsigned int log_minus_flags; | |
51971536 | 165 | unsigned int quick; |
a7fdd30a | 166 | unsigned int log_on_error_size; |
f6986c95 AH |
167 | }; |
168 | ||
99fa2984 AH |
169 | /** |
170 | * struct auxtrace_index_entry - indexes a AUX area tracing event within a | |
171 | * perf.data file. | |
172 | * @file_offset: offset within the perf.data file | |
173 | * @sz: size of the event | |
174 | */ | |
175 | struct auxtrace_index_entry { | |
176 | u64 file_offset; | |
177 | u64 sz; | |
178 | }; | |
179 | ||
180 | #define PERF_AUXTRACE_INDEX_ENTRY_COUNT 256 | |
181 | ||
182 | /** | |
183 | * struct auxtrace_index - index of AUX area tracing events within a perf.data | |
184 | * file. | |
185 | * @list: linking a number of arrays of entries | |
186 | * @nr: number of entries | |
187 | * @entries: array of entries | |
188 | */ | |
189 | struct auxtrace_index { | |
190 | struct list_head list; | |
191 | size_t nr; | |
192 | struct auxtrace_index_entry entries[PERF_AUXTRACE_INDEX_ENTRY_COUNT]; | |
193 | }; | |
194 | ||
c446870d AH |
195 | /** |
196 | * struct auxtrace - session callbacks to allow AUX area data decoding. | |
197 | * @process_event: lets the decoder see all session events | |
b818ec61 | 198 | * @process_auxtrace_event: process a PERF_RECORD_AUXTRACE event |
ac2f445f AH |
199 | * @queue_data: queue an AUX sample or PERF_RECORD_AUXTRACE event for later |
200 | * processing | |
b04b8dd1 | 201 | * @dump_auxtrace_sample: dump AUX area sample data |
c446870d AH |
202 | * @flush_events: process any remaining data |
203 | * @free_events: free resources associated with event processing | |
204 | * @free: free resources associated with the session | |
205 | */ | |
206 | struct auxtrace { | |
207 | int (*process_event)(struct perf_session *session, | |
208 | union perf_event *event, | |
209 | struct perf_sample *sample, | |
30f29bae | 210 | const struct perf_tool *tool); |
73f75fb1 AH |
211 | int (*process_auxtrace_event)(struct perf_session *session, |
212 | union perf_event *event, | |
30f29bae | 213 | const struct perf_tool *tool); |
ac2f445f AH |
214 | int (*queue_data)(struct perf_session *session, |
215 | struct perf_sample *sample, union perf_event *event, | |
216 | u64 data_offset); | |
b04b8dd1 AH |
217 | void (*dump_auxtrace_sample)(struct perf_session *session, |
218 | struct perf_sample *sample); | |
c446870d | 219 | int (*flush_events)(struct perf_session *session, |
30f29bae | 220 | const struct perf_tool *tool); |
c446870d AH |
221 | void (*free_events)(struct perf_session *session); |
222 | void (*free)(struct perf_session *session); | |
853f37d7 AH |
223 | bool (*evsel_is_auxtrace)(struct perf_session *session, |
224 | struct evsel *evsel); | |
c446870d AH |
225 | }; |
226 | ||
e5027893 AH |
227 | /** |
228 | * struct auxtrace_buffer - a buffer containing AUX area tracing data. | |
229 | * @list: buffers are queued in a list held by struct auxtrace_queue | |
230 | * @size: size of the buffer in bytes | |
231 | * @pid: in per-thread mode, the pid this buffer is associated with | |
232 | * @tid: in per-thread mode, the tid this buffer is associated with | |
233 | * @cpu: in per-cpu mode, the cpu this buffer is associated with | |
234 | * @data: actual buffer data (can be null if the data has not been loaded) | |
235 | * @data_offset: file offset at which the buffer can be read | |
236 | * @mmap_addr: mmap address at which the buffer can be read | |
237 | * @mmap_size: size of the mmap at @mmap_addr | |
238 | * @data_needs_freeing: @data was malloc'd so free it when it is no longer | |
239 | * needed | |
240 | * @consecutive: the original data was split up and this buffer is consecutive | |
241 | * to the previous buffer | |
242 | * @offset: offset as determined by aux_head / aux_tail members of struct | |
243 | * perf_event_mmap_page | |
244 | * @reference: an implementation-specific reference determined when the data is | |
245 | * recorded | |
246 | * @buffer_nr: used to number each buffer | |
247 | * @use_size: implementation actually only uses this number of bytes | |
248 | * @use_data: implementation actually only uses data starting at this address | |
249 | */ | |
250 | struct auxtrace_buffer { | |
251 | struct list_head list; | |
252 | size_t size; | |
253 | pid_t pid; | |
254 | pid_t tid; | |
6d18804b | 255 | struct perf_cpu cpu; |
e5027893 AH |
256 | void *data; |
257 | off_t data_offset; | |
258 | void *mmap_addr; | |
259 | size_t mmap_size; | |
260 | bool data_needs_freeing; | |
261 | bool consecutive; | |
262 | u64 offset; | |
263 | u64 reference; | |
264 | u64 buffer_nr; | |
265 | size_t use_size; | |
266 | void *use_data; | |
267 | }; | |
268 | ||
269 | /** | |
270 | * struct auxtrace_queue - a queue of AUX area tracing data buffers. | |
271 | * @head: head of buffer list | |
272 | * @tid: in per-thread mode, the tid this queue is associated with | |
273 | * @cpu: in per-cpu mode, the cpu this queue is associated with | |
274 | * @set: %true once this queue has been dedicated to a specific thread or cpu | |
275 | * @priv: implementation-specific data | |
276 | */ | |
277 | struct auxtrace_queue { | |
278 | struct list_head head; | |
279 | pid_t tid; | |
280 | int cpu; | |
281 | bool set; | |
282 | void *priv; | |
283 | }; | |
284 | ||
285 | /** | |
286 | * struct auxtrace_queues - an array of AUX area tracing queues. | |
287 | * @queue_array: array of queues | |
288 | * @nr_queues: number of queues | |
289 | * @new_data: set whenever new data is queued | |
290 | * @populated: queues have been fully populated using the auxtrace_index | |
291 | * @next_buffer_nr: used to number each buffer | |
292 | */ | |
293 | struct auxtrace_queues { | |
294 | struct auxtrace_queue *queue_array; | |
295 | unsigned int nr_queues; | |
296 | bool new_data; | |
297 | bool populated; | |
298 | u64 next_buffer_nr; | |
299 | }; | |
300 | ||
f9397155 AH |
301 | /** |
302 | * struct auxtrace_heap_item - element of struct auxtrace_heap. | |
303 | * @queue_nr: queue number | |
304 | * @ordinal: value used for sorting (lowest ordinal is top of the heap) expected | |
305 | * to be a timestamp | |
306 | */ | |
307 | struct auxtrace_heap_item { | |
308 | unsigned int queue_nr; | |
309 | u64 ordinal; | |
310 | }; | |
311 | ||
312 | /** | |
313 | * struct auxtrace_heap - a heap suitable for sorting AUX area tracing queues. | |
314 | * @heap_array: the heap | |
315 | * @heap_cnt: the number of elements in the heap | |
316 | * @heap_sz: maximum number of elements (grows as needed) | |
317 | */ | |
318 | struct auxtrace_heap { | |
319 | struct auxtrace_heap_item *heap_array; | |
320 | unsigned int heap_cnt; | |
321 | unsigned int heap_sz; | |
322 | }; | |
323 | ||
718c602d AH |
324 | /** |
325 | * struct auxtrace_mmap - records an mmap of the auxtrace buffer. | |
326 | * @base: address of mapped area | |
327 | * @userpg: pointer to buffer's perf_event_mmap_page | |
328 | * @mask: %0 if @len is not a power of two, otherwise (@len - %1) | |
329 | * @len: size of mapped area | |
330 | * @prev: previous aux_head | |
331 | * @idx: index of this mmap | |
332 | * @tid: tid for a per-thread mmap (also set if there is only 1 tid on a per-cpu | |
333 | * mmap) otherwise %0 | |
334 | * @cpu: cpu number for a per-cpu mmap otherwise %-1 | |
335 | */ | |
336 | struct auxtrace_mmap { | |
337 | void *base; | |
338 | void *userpg; | |
339 | size_t mask; | |
340 | size_t len; | |
341 | u64 prev; | |
342 | int idx; | |
343 | pid_t tid; | |
344 | int cpu; | |
345 | }; | |
346 | ||
347 | /** | |
348 | * struct auxtrace_mmap_params - parameters to set up struct auxtrace_mmap. | |
349 | * @mask: %0 if @len is not a power of two, otherwise (@len - %1) | |
350 | * @offset: file offset of mapped area | |
351 | * @len: size of mapped area | |
352 | * @prot: mmap memory protection | |
353 | * @idx: index of this mmap | |
354 | * @tid: tid for a per-thread mmap (also set if there is only 1 tid on a per-cpu | |
355 | * mmap) otherwise %0 | |
d01508f2 AH |
356 | * @mmap_needed: set to %false for non-auxtrace events. This is needed because |
357 | * auxtrace mmapping is done in the same code path as non-auxtrace | |
358 | * mmapping but not every evsel that needs non-auxtrace mmapping | |
359 | * also needs auxtrace mmapping. | |
718c602d AH |
360 | * @cpu: cpu number for a per-cpu mmap otherwise %-1 |
361 | */ | |
362 | struct auxtrace_mmap_params { | |
363 | size_t mask; | |
364 | off_t offset; | |
365 | size_t len; | |
366 | int prot; | |
367 | int idx; | |
368 | pid_t tid; | |
d01508f2 | 369 | bool mmap_needed; |
6d18804b | 370 | struct perf_cpu cpu; |
718c602d AH |
371 | }; |
372 | ||
9e0cc4fe AH |
373 | /** |
374 | * struct auxtrace_record - callbacks for recording AUX area data. | |
375 | * @recording_options: validate and process recording options | |
376 | * @info_priv_size: return the size of the private data in auxtrace_info_event | |
377 | * @info_fill: fill-in the private data in auxtrace_info_event | |
378 | * @free: free this auxtrace record structure | |
d20031bb AH |
379 | * @snapshot_start: starting a snapshot |
380 | * @snapshot_finish: finishing a snapshot | |
381 | * @find_snapshot: find data to snapshot within auxtrace mmap | |
382 | * @parse_snapshot_options: parse snapshot options | |
9e0cc4fe AH |
383 | * @reference: provide a 64-bit reference number for auxtrace_event |
384 | * @read_finish: called after reading from an auxtrace mmap | |
b818ec61 | 385 | * @alignment: alignment (if any) for AUX area data |
f0bb7ee8 | 386 | * @default_aux_sample_size: default sample size for --aux sample option |
ad60ba0c AH |
387 | * @pmu: associated pmu |
388 | * @evlist: selected events list | |
9e0cc4fe AH |
389 | */ |
390 | struct auxtrace_record { | |
391 | int (*recording_options)(struct auxtrace_record *itr, | |
63503dba | 392 | struct evlist *evlist, |
9e0cc4fe | 393 | struct record_opts *opts); |
14a05e13 | 394 | size_t (*info_priv_size)(struct auxtrace_record *itr, |
63503dba | 395 | struct evlist *evlist); |
9e0cc4fe AH |
396 | int (*info_fill)(struct auxtrace_record *itr, |
397 | struct perf_session *session, | |
72932371 | 398 | struct perf_record_auxtrace_info *auxtrace_info, |
9e0cc4fe AH |
399 | size_t priv_size); |
400 | void (*free)(struct auxtrace_record *itr); | |
d20031bb AH |
401 | int (*snapshot_start)(struct auxtrace_record *itr); |
402 | int (*snapshot_finish)(struct auxtrace_record *itr); | |
403 | int (*find_snapshot)(struct auxtrace_record *itr, int idx, | |
404 | struct auxtrace_mmap *mm, unsigned char *data, | |
405 | u64 *head, u64 *old); | |
406 | int (*parse_snapshot_options)(struct auxtrace_record *itr, | |
407 | struct record_opts *opts, | |
408 | const char *str); | |
9e0cc4fe AH |
409 | u64 (*reference)(struct auxtrace_record *itr); |
410 | int (*read_finish)(struct auxtrace_record *itr, int idx); | |
83b2ea25 | 411 | unsigned int alignment; |
f0bb7ee8 | 412 | unsigned int default_aux_sample_size; |
ad60ba0c | 413 | struct evlist *evlist; |
9e0cc4fe AH |
414 | }; |
415 | ||
1b36c03e AH |
416 | /** |
417 | * struct addr_filter - address filter. | |
418 | * @list: list node | |
419 | * @range: true if it is a range filter | |
420 | * @start: true if action is 'filter' or 'start' | |
421 | * @action: 'filter', 'start' or 'stop' ('tracestop' is accepted but converted | |
422 | * to 'stop') | |
423 | * @sym_from: symbol name for the filter address | |
424 | * @sym_to: symbol name that determines the filter size | |
425 | * @sym_from_idx: selects n'th from symbols with the same name (0 means global | |
426 | * and less than 0 means symbol must be unique) | |
427 | * @sym_to_idx: same as @sym_from_idx but for @sym_to | |
428 | * @addr: filter address | |
429 | * @size: filter region size (for range filters) | |
430 | * @filename: DSO file name or NULL for the kernel | |
431 | * @str: allocated string that contains the other string members | |
432 | */ | |
433 | struct addr_filter { | |
434 | struct list_head list; | |
435 | bool range; | |
436 | bool start; | |
437 | const char *action; | |
438 | const char *sym_from; | |
439 | const char *sym_to; | |
440 | int sym_from_idx; | |
441 | int sym_to_idx; | |
442 | u64 addr; | |
443 | u64 size; | |
444 | const char *filename; | |
445 | char *str; | |
446 | }; | |
447 | ||
448 | /** | |
449 | * struct addr_filters - list of address filters. | |
450 | * @head: list of address filters | |
451 | * @cnt: number of address filters | |
452 | */ | |
453 | struct addr_filters { | |
454 | struct list_head head; | |
455 | int cnt; | |
456 | }; | |
457 | ||
f2a39fe8 ACM |
458 | struct auxtrace_cache; |
459 | ||
e31f0d01 AH |
460 | #ifdef HAVE_AUXTRACE_SUPPORT |
461 | ||
bbc49f12 LY |
462 | u64 compat_auxtrace_mmap__read_head(struct auxtrace_mmap *mm); |
463 | int compat_auxtrace_mmap__write_tail(struct auxtrace_mmap *mm, u64 tail); | |
464 | ||
465 | static inline u64 auxtrace_mmap__read_head(struct auxtrace_mmap *mm, | |
466 | int kernel_is_64_bit __maybe_unused) | |
718c602d AH |
467 | { |
468 | struct perf_event_mmap_page *pc = mm->userpg; | |
bbc49f12 LY |
469 | u64 head; |
470 | ||
471 | #if BITS_PER_LONG == 32 | |
472 | if (kernel_is_64_bit) | |
473 | return compat_auxtrace_mmap__read_head(mm); | |
474 | #endif | |
475 | head = READ_ONCE(pc->aux_head); | |
718c602d AH |
476 | |
477 | /* Ensure all reads are done after we read the head */ | |
bde1e7d9 | 478 | smp_rmb(); |
718c602d AH |
479 | return head; |
480 | } | |
481 | ||
bbc49f12 LY |
482 | static inline int auxtrace_mmap__write_tail(struct auxtrace_mmap *mm, u64 tail, |
483 | int kernel_is_64_bit __maybe_unused) | |
718c602d AH |
484 | { |
485 | struct perf_event_mmap_page *pc = mm->userpg; | |
718c602d | 486 | |
bbc49f12 LY |
487 | #if BITS_PER_LONG == 32 |
488 | if (kernel_is_64_bit) | |
489 | return compat_auxtrace_mmap__write_tail(mm, tail); | |
490 | #endif | |
718c602d | 491 | /* Ensure all reads are done before we write the tail out */ |
bde1e7d9 | 492 | smp_mb(); |
1ea3cb15 | 493 | WRITE_ONCE(pc->aux_tail, tail); |
bbc49f12 | 494 | return 0; |
718c602d AH |
495 | } |
496 | ||
497 | int auxtrace_mmap__mmap(struct auxtrace_mmap *mm, | |
498 | struct auxtrace_mmap_params *mp, | |
499 | void *userpg, int fd); | |
500 | void auxtrace_mmap__munmap(struct auxtrace_mmap *mm); | |
501 | void auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp, | |
502 | off_t auxtrace_offset, | |
503 | unsigned int auxtrace_pages, | |
504 | bool auxtrace_overwrite); | |
505 | void auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp, | |
d01508f2 | 506 | struct evlist *evlist, |
84bd5aba | 507 | struct evsel *evsel, int idx); |
718c602d | 508 | |
30f29bae | 509 | typedef int (*process_auxtrace_t)(const struct perf_tool *tool, |
a5830532 | 510 | struct mmap *map, |
9e0cc4fe AH |
511 | union perf_event *event, void *data1, |
512 | size_t len1, void *data2, size_t len2); | |
513 | ||
a5830532 | 514 | int auxtrace_mmap__read(struct mmap *map, struct auxtrace_record *itr, |
30f29bae | 515 | const struct perf_tool *tool, process_auxtrace_t fn); |
9e0cc4fe | 516 | |
a5830532 | 517 | int auxtrace_mmap__read_snapshot(struct mmap *map, |
d20031bb | 518 | struct auxtrace_record *itr, |
30f29bae | 519 | const struct perf_tool *tool, process_auxtrace_t fn, |
d20031bb AH |
520 | size_t snapshot_size); |
521 | ||
ee73fe99 | 522 | int auxtrace_queues__init_nr(struct auxtrace_queues *queues, int nr_queues); |
e5027893 AH |
523 | int auxtrace_queues__init(struct auxtrace_queues *queues); |
524 | int auxtrace_queues__add_event(struct auxtrace_queues *queues, | |
525 | struct perf_session *session, | |
526 | union perf_event *event, off_t data_offset, | |
527 | struct auxtrace_buffer **buffer_ptr); | |
ac2f445f AH |
528 | struct auxtrace_queue * |
529 | auxtrace_queues__sample_queue(struct auxtrace_queues *queues, | |
530 | struct perf_sample *sample, | |
531 | struct perf_session *session); | |
532 | int auxtrace_queues__add_sample(struct auxtrace_queues *queues, | |
533 | struct perf_session *session, | |
534 | struct perf_sample *sample, u64 data_offset, | |
535 | u64 reference); | |
e5027893 | 536 | void auxtrace_queues__free(struct auxtrace_queues *queues); |
99fa2984 AH |
537 | int auxtrace_queues__process_index(struct auxtrace_queues *queues, |
538 | struct perf_session *session); | |
ac2f445f AH |
539 | int auxtrace_queue_data(struct perf_session *session, bool samples, |
540 | bool events); | |
e5027893 AH |
541 | struct auxtrace_buffer *auxtrace_buffer__next(struct auxtrace_queue *queue, |
542 | struct auxtrace_buffer *buffer); | |
6aa3afc9 AH |
543 | void *auxtrace_buffer__get_data_rw(struct auxtrace_buffer *buffer, int fd, bool rw); |
544 | static inline void *auxtrace_buffer__get_data(struct auxtrace_buffer *buffer, int fd) | |
545 | { | |
546 | return auxtrace_buffer__get_data_rw(buffer, fd, false); | |
547 | } | |
e5027893 AH |
548 | void auxtrace_buffer__put_data(struct auxtrace_buffer *buffer); |
549 | void auxtrace_buffer__drop_data(struct auxtrace_buffer *buffer); | |
550 | void auxtrace_buffer__free(struct auxtrace_buffer *buffer); | |
f9397155 AH |
551 | |
552 | int auxtrace_heap__add(struct auxtrace_heap *heap, unsigned int queue_nr, | |
553 | u64 ordinal); | |
554 | void auxtrace_heap__pop(struct auxtrace_heap *heap); | |
555 | void auxtrace_heap__free(struct auxtrace_heap *heap); | |
556 | ||
c3278f02 AH |
557 | struct auxtrace_cache_entry { |
558 | struct hlist_node hash; | |
559 | u32 key; | |
560 | }; | |
561 | ||
562 | struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size, | |
563 | unsigned int limit_percent); | |
564 | void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache); | |
565 | void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c); | |
566 | void auxtrace_cache__free_entry(struct auxtrace_cache *c, void *entry); | |
567 | int auxtrace_cache__add(struct auxtrace_cache *c, u32 key, | |
568 | struct auxtrace_cache_entry *entry); | |
fd62c109 | 569 | void auxtrace_cache__remove(struct auxtrace_cache *c, u32 key); |
c3278f02 AH |
570 | void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key); |
571 | ||
63503dba | 572 | struct auxtrace_record *auxtrace_record__init(struct evlist *evlist, |
9e0cc4fe AH |
573 | int *err); |
574 | ||
d20031bb AH |
575 | int auxtrace_parse_snapshot_options(struct auxtrace_record *itr, |
576 | struct record_opts *opts, | |
577 | const char *str); | |
f0bb7ee8 AH |
578 | int auxtrace_parse_sample_options(struct auxtrace_record *itr, |
579 | struct evlist *evlist, | |
580 | struct record_opts *opts, const char *str); | |
8a0f49a7 | 581 | int auxtrace_parse_aux_action(struct evlist *evlist); |
9e0cc4fe | 582 | int auxtrace_record__options(struct auxtrace_record *itr, |
63503dba | 583 | struct evlist *evlist, |
9e0cc4fe | 584 | struct record_opts *opts); |
14a05e13 | 585 | size_t auxtrace_record__info_priv_size(struct auxtrace_record *itr, |
63503dba | 586 | struct evlist *evlist); |
9e0cc4fe AH |
587 | int auxtrace_record__info_fill(struct auxtrace_record *itr, |
588 | struct perf_session *session, | |
72932371 | 589 | struct perf_record_auxtrace_info *auxtrace_info, |
9e0cc4fe AH |
590 | size_t priv_size); |
591 | void auxtrace_record__free(struct auxtrace_record *itr); | |
d20031bb | 592 | int auxtrace_record__snapshot_start(struct auxtrace_record *itr); |
ce7b0e42 | 593 | int auxtrace_record__snapshot_finish(struct auxtrace_record *itr, bool on_exit); |
d20031bb AH |
594 | int auxtrace_record__find_snapshot(struct auxtrace_record *itr, int idx, |
595 | struct auxtrace_mmap *mm, | |
596 | unsigned char *data, u64 *head, u64 *old); | |
9e0cc4fe | 597 | u64 auxtrace_record__reference(struct auxtrace_record *itr); |
ad60ba0c | 598 | int auxtrace_record__read_finish(struct auxtrace_record *itr, int idx); |
9e0cc4fe | 599 | |
99fa2984 AH |
600 | int auxtrace_index__auxtrace_event(struct list_head *head, union perf_event *event, |
601 | off_t file_offset); | |
602 | int auxtrace_index__write(int fd, struct list_head *head); | |
603 | int auxtrace_index__process(int fd, u64 size, struct perf_session *session, | |
604 | bool needs_swap); | |
605 | void auxtrace_index__free(struct list_head *head); | |
606 | ||
7151c1d1 AH |
607 | void auxtrace_synth_guest_error(struct perf_record_auxtrace_error *auxtrace_error, int type, |
608 | int code, int cpu, pid_t pid, pid_t tid, u64 ip, | |
609 | const char *msg, u64 timestamp, | |
610 | pid_t machine_pid, int vcpu); | |
72932371 | 611 | void auxtrace_synth_error(struct perf_record_auxtrace_error *auxtrace_error, int type, |
85ed4729 | 612 | int code, int cpu, pid_t pid, pid_t tid, u64 ip, |
16bd4321 | 613 | const char *msg, u64 timestamp); |
85ed4729 | 614 | |
89f1688a JO |
615 | int perf_event__process_auxtrace_info(struct perf_session *session, |
616 | union perf_event *event); | |
7336555a JO |
617 | s64 perf_event__process_auxtrace(struct perf_session *session, |
618 | union perf_event *event); | |
89f1688a JO |
619 | int perf_event__process_auxtrace_error(struct perf_session *session, |
620 | union perf_event *event); | |
e621b8ff AH |
621 | int itrace_do_parse_synth_opts(struct itrace_synth_opts *synth_opts, |
622 | const char *str, int unset); | |
f6986c95 AH |
623 | int itrace_parse_synth_opts(const struct option *opt, const char *str, |
624 | int unset); | |
4eb06815 AK |
625 | void itrace_synth_opts__set_default(struct itrace_synth_opts *synth_opts, |
626 | bool no_sample); | |
9e0cc4fe | 627 | |
85ed4729 AH |
628 | size_t perf_event__fprintf_auxtrace_error(union perf_event *event, FILE *fp); |
629 | void perf_session__auxtrace_error_inc(struct perf_session *session, | |
630 | union perf_event *event); | |
631 | void events_stats__auxtrace_error_warn(const struct events_stats *stats); | |
632 | ||
1b36c03e AH |
633 | void addr_filters__init(struct addr_filters *filts); |
634 | void addr_filters__exit(struct addr_filters *filts); | |
635 | int addr_filters__parse_bare_filter(struct addr_filters *filts, | |
636 | const char *filter); | |
63503dba | 637 | int auxtrace_parse_filters(struct evlist *evlist); |
1b36c03e | 638 | |
f2a39fe8 | 639 | int auxtrace__process_event(struct perf_session *session, union perf_event *event, |
30f29bae | 640 | struct perf_sample *sample, const struct perf_tool *tool); |
b04b8dd1 AH |
641 | void auxtrace__dump_auxtrace_sample(struct perf_session *session, |
642 | struct perf_sample *sample); | |
30f29bae | 643 | int auxtrace__flush_events(struct perf_session *session, const struct perf_tool *tool); |
f2a39fe8 ACM |
644 | void auxtrace__free_events(struct perf_session *session); |
645 | void auxtrace__free(struct perf_session *session); | |
853f37d7 AH |
646 | bool auxtrace__evsel_is_auxtrace(struct perf_session *session, |
647 | struct evsel *evsel); | |
c446870d | 648 | |
c12e039d | 649 | #define ITRACE_HELP \ |
1e8f7869 | 650 | " i[period]: synthesize instructions events\n" \ |
7e55b956 | 651 | " y[period]: synthesize cycles events (same period as i)\n" \ |
35f5aa9c | 652 | " b: synthesize branches events\n" \ |
c12e039d AK |
653 | " c: synthesize branches events (calls only)\n" \ |
654 | " r: synthesize branches events (returns only)\n" \ | |
655 | " x: synthesize transactions events\n" \ | |
656 | " w: synthesize ptwrite events\n" \ | |
657 | " p: synthesize power events\n" \ | |
1e8f7869 AH |
658 | " o: synthesize other events recorded due to the use\n" \ |
659 | " of aux-output (refer to perf record)\n" \ | |
8ee9a9ab AH |
660 | " I: synthesize interrupt or similar (asynchronous) events\n" \ |
661 | " (e.g. Intel PT Event Trace)\n" \ | |
cb971438 AH |
662 | " e[flags]: synthesize error events\n" \ |
663 | " each flag must be preceded by + or -\n" \ | |
664 | " error flags are: o (overflow)\n" \ | |
665 | " l (data lost)\n" \ | |
935aac2d AH |
666 | " d[flags]: create a debug log\n" \ |
667 | " each flag must be preceded by + or -\n" \ | |
668 | " log flags are: a (all perf events)\n" \ | |
4b2b2c6a | 669 | " o (output to stdout)\n" \ |
9f74d770 TX |
670 | " f: synthesize first level cache events\n" \ |
671 | " m: synthesize last level cache events\n" \ | |
672 | " t: synthesize TLB events\n" \ | |
673 | " a: synthesize remote access events\n" \ | |
c12e039d | 674 | " g[len]: synthesize a call chain (use with i or x)\n" \ |
1e8f7869 | 675 | " G[len]: synthesize a call chain on existing event records\n" \ |
c12e039d | 676 | " l[len]: synthesize last branch entries (use with i or x)\n" \ |
1e8f7869 | 677 | " L[len]: synthesize last branch entries on existing event records\n" \ |
c12e039d | 678 | " sNUMBER: skip initial number of events\n" \ |
51971536 | 679 | " q: quicker (less detailed) decoding\n" \ |
b6778fe1 | 680 | " A: approximate IPC\n" \ |
cf14013b | 681 | " Z: prefer to ignore timestamps (so-called \"timeless\" decoding)\n" \ |
26218331 | 682 | " T: use the timestamp trace as kernel time\n" \ |
c12e039d | 683 | " PERIOD[ns|us|ms|i|t]: specify period to sample stream\n" \ |
7e55b956 | 684 | " concatenate multiple options. Default is iybxwpe or cewp\n" |
c12e039d | 685 | |
33526f36 AH |
686 | static inline |
687 | void itrace_synth_opts__set_time_range(struct itrace_synth_opts *opts, | |
688 | struct perf_time_interval *ptime_range, | |
689 | int range_num) | |
690 | { | |
691 | opts->ptime_range = ptime_range; | |
692 | opts->range_num = range_num; | |
693 | } | |
694 | ||
695 | static inline | |
696 | void itrace_synth_opts__clear_time_range(struct itrace_synth_opts *opts) | |
697 | { | |
698 | opts->ptime_range = NULL; | |
699 | opts->range_num = 0; | |
700 | } | |
c12e039d | 701 | |
e31f0d01 | 702 | #else |
b4209025 | 703 | #include "debug.h" |
e31f0d01 AH |
704 | |
705 | static inline struct auxtrace_record * | |
63503dba | 706 | auxtrace_record__init(struct evlist *evlist __maybe_unused, |
b8f8eb84 | 707 | int *err) |
e31f0d01 AH |
708 | { |
709 | *err = 0; | |
710 | return NULL; | |
711 | } | |
712 | ||
713 | static inline | |
714 | void auxtrace_record__free(struct auxtrace_record *itr __maybe_unused) | |
715 | { | |
716 | } | |
717 | ||
e31f0d01 AH |
718 | static inline |
719 | int auxtrace_record__options(struct auxtrace_record *itr __maybe_unused, | |
63503dba | 720 | struct evlist *evlist __maybe_unused, |
e31f0d01 AH |
721 | struct record_opts *opts __maybe_unused) |
722 | { | |
723 | return 0; | |
724 | } | |
725 | ||
04612968 ACM |
726 | static inline |
727 | int perf_event__process_auxtrace_info(struct perf_session *session __maybe_unused, | |
728 | union perf_event *event __maybe_unused) | |
729 | { | |
730 | return 0; | |
731 | } | |
732 | ||
733 | static inline | |
734 | s64 perf_event__process_auxtrace(struct perf_session *session __maybe_unused, | |
735 | union perf_event *event __maybe_unused) | |
736 | { | |
737 | return 0; | |
738 | } | |
739 | ||
740 | static inline | |
741 | int perf_event__process_auxtrace_error(struct perf_session *session __maybe_unused, | |
742 | union perf_event *event __maybe_unused) | |
743 | { | |
744 | return 0; | |
745 | } | |
e31f0d01 AH |
746 | |
747 | static inline | |
748 | void perf_session__auxtrace_error_inc(struct perf_session *session | |
749 | __maybe_unused, | |
750 | union perf_event *event | |
751 | __maybe_unused) | |
752 | { | |
753 | } | |
754 | ||
755 | static inline | |
756 | void events_stats__auxtrace_error_warn(const struct events_stats *stats | |
757 | __maybe_unused) | |
758 | { | |
759 | } | |
760 | ||
e621b8ff AH |
761 | static inline |
762 | int itrace_do_parse_synth_opts(struct itrace_synth_opts *synth_opts __maybe_unused, | |
763 | const char *str __maybe_unused, int unset __maybe_unused) | |
764 | { | |
765 | pr_err("AUX area tracing not supported\n"); | |
766 | return -EINVAL; | |
767 | } | |
768 | ||
e31f0d01 AH |
769 | static inline |
770 | int itrace_parse_synth_opts(const struct option *opt __maybe_unused, | |
771 | const char *str __maybe_unused, | |
772 | int unset __maybe_unused) | |
773 | { | |
774 | pr_err("AUX area tracing not supported\n"); | |
775 | return -EINVAL; | |
776 | } | |
777 | ||
2dd6d8a1 AH |
778 | static inline |
779 | int auxtrace_parse_snapshot_options(struct auxtrace_record *itr __maybe_unused, | |
780 | struct record_opts *opts __maybe_unused, | |
781 | const char *str) | |
f0bb7ee8 AH |
782 | { |
783 | if (!str) | |
784 | return 0; | |
785 | pr_err("AUX area tracing not supported\n"); | |
786 | return -EINVAL; | |
787 | } | |
788 | ||
789 | static inline | |
790 | int auxtrace_parse_sample_options(struct auxtrace_record *itr __maybe_unused, | |
791 | struct evlist *evlist __maybe_unused, | |
792 | struct record_opts *opts __maybe_unused, | |
793 | const char *str) | |
2dd6d8a1 AH |
794 | { |
795 | if (!str) | |
796 | return 0; | |
797 | pr_err("AUX area tracing not supported\n"); | |
798 | return -EINVAL; | |
799 | } | |
800 | ||
d58b3f7e | 801 | static inline |
8a0f49a7 | 802 | int auxtrace_parse_aux_action(struct evlist *evlist __maybe_unused) |
d58b3f7e | 803 | { |
8a0f49a7 AH |
804 | pr_err("AUX area tracing not supported\n"); |
805 | return -EINVAL; | |
d58b3f7e AH |
806 | } |
807 | ||
e31f0d01 AH |
808 | static inline |
809 | int auxtrace__process_event(struct perf_session *session __maybe_unused, | |
810 | union perf_event *event __maybe_unused, | |
811 | struct perf_sample *sample __maybe_unused, | |
30f29bae | 812 | const struct perf_tool *tool __maybe_unused) |
e31f0d01 AH |
813 | { |
814 | return 0; | |
815 | } | |
816 | ||
b04b8dd1 AH |
817 | static inline |
818 | void auxtrace__dump_auxtrace_sample(struct perf_session *session __maybe_unused, | |
819 | struct perf_sample *sample __maybe_unused) | |
820 | { | |
821 | } | |
822 | ||
e31f0d01 AH |
823 | static inline |
824 | int auxtrace__flush_events(struct perf_session *session __maybe_unused, | |
30f29bae | 825 | const struct perf_tool *tool __maybe_unused) |
e31f0d01 AH |
826 | { |
827 | return 0; | |
828 | } | |
829 | ||
830 | static inline | |
831 | void auxtrace__free_events(struct perf_session *session __maybe_unused) | |
832 | { | |
833 | } | |
834 | ||
835 | static inline | |
836 | void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache __maybe_unused) | |
837 | { | |
838 | } | |
839 | ||
840 | static inline | |
841 | void auxtrace__free(struct perf_session *session __maybe_unused) | |
842 | { | |
843 | } | |
844 | ||
845 | static inline | |
846 | int auxtrace_index__write(int fd __maybe_unused, | |
847 | struct list_head *head __maybe_unused) | |
848 | { | |
849 | return -EINVAL; | |
850 | } | |
851 | ||
852 | static inline | |
853 | int auxtrace_index__process(int fd __maybe_unused, | |
854 | u64 size __maybe_unused, | |
855 | struct perf_session *session __maybe_unused, | |
856 | bool needs_swap __maybe_unused) | |
857 | { | |
858 | return -EINVAL; | |
859 | } | |
860 | ||
861 | static inline | |
862 | void auxtrace_index__free(struct list_head *head __maybe_unused) | |
863 | { | |
864 | } | |
865 | ||
853f37d7 AH |
866 | static inline |
867 | bool auxtrace__evsel_is_auxtrace(struct perf_session *session __maybe_unused, | |
868 | struct evsel *evsel __maybe_unused) | |
869 | { | |
870 | return false; | |
871 | } | |
872 | ||
1b36c03e | 873 | static inline |
63503dba | 874 | int auxtrace_parse_filters(struct evlist *evlist __maybe_unused) |
1b36c03e AH |
875 | { |
876 | return 0; | |
877 | } | |
878 | ||
e31f0d01 AH |
879 | int auxtrace_mmap__mmap(struct auxtrace_mmap *mm, |
880 | struct auxtrace_mmap_params *mp, | |
881 | void *userpg, int fd); | |
882 | void auxtrace_mmap__munmap(struct auxtrace_mmap *mm); | |
883 | void auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp, | |
884 | off_t auxtrace_offset, | |
885 | unsigned int auxtrace_pages, | |
886 | bool auxtrace_overwrite); | |
887 | void auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp, | |
d01508f2 | 888 | struct evlist *evlist, |
84bd5aba | 889 | struct evsel *evsel, int idx); |
e31f0d01 | 890 | |
c12e039d AK |
891 | #define ITRACE_HELP "" |
892 | ||
33526f36 AH |
893 | static inline |
894 | void itrace_synth_opts__set_time_range(struct itrace_synth_opts *opts | |
895 | __maybe_unused, | |
896 | struct perf_time_interval *ptime_range | |
897 | __maybe_unused, | |
898 | int range_num __maybe_unused) | |
899 | { | |
900 | } | |
901 | ||
902 | static inline | |
903 | void itrace_synth_opts__clear_time_range(struct itrace_synth_opts *opts | |
904 | __maybe_unused) | |
905 | { | |
906 | } | |
907 | ||
e31f0d01 AH |
908 | #endif |
909 | ||
718c602d | 910 | #endif |