]>
Commit | Line | Data |
---|---|---|
f8a95309 ACM |
1 | /* |
2 | * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <[email protected]> | |
3 | * | |
4 | * Parts came from builtin-{top,stat,record}.c, see those files for further | |
5 | * copyright notes. | |
6 | * | |
7 | * Released under the GPL v2. (and only v2, not any later version) | |
8 | */ | |
9 | ||
936be503 | 10 | #include <byteswap.h> |
a43783ae | 11 | #include <errno.h> |
fd20e811 | 12 | #include <inttypes.h> |
0f6a3015 | 13 | #include <linux/bitops.h> |
2157f6ee | 14 | #include <api/fs/fs.h> |
4605eab3 | 15 | #include <api/fs/tracing_path.h> |
4e319027 RR |
16 | #include <traceevent/event-parse.h> |
17 | #include <linux/hw_breakpoint.h> | |
18 | #include <linux/perf_event.h> | |
0353631a | 19 | #include <linux/compiler.h> |
8dd2a131 | 20 | #include <linux/err.h> |
86a5e0c2 | 21 | #include <sys/ioctl.h> |
bec19672 | 22 | #include <sys/resource.h> |
2157f6ee ACM |
23 | #include <sys/types.h> |
24 | #include <dirent.h> | |
4e319027 | 25 | #include "asm/bug.h" |
8f651eae | 26 | #include "callchain.h" |
f14d5707 | 27 | #include "cgroup.h" |
5ab8c689 | 28 | #include "event.h" |
69aad6f1 | 29 | #include "evsel.h" |
70082dd9 | 30 | #include "evlist.h" |
69aad6f1 | 31 | #include "util.h" |
86bd5e86 | 32 | #include "cpumap.h" |
fd78260b | 33 | #include "thread_map.h" |
12864b31 | 34 | #include "target.h" |
26d33022 | 35 | #include "perf_regs.h" |
e3e1a54f | 36 | #include "debug.h" |
97978b3e | 37 | #include "trace-event.h" |
a9a3a4d9 | 38 | #include "stat.h" |
f9d8adb3 | 39 | #include "memswap.h" |
ac12f676 | 40 | #include "util/parse-branch-options.h" |
69aad6f1 | 41 | |
3d689ed6 ACM |
42 | #include "sane_ctype.h" |
43 | ||
9a831b3a | 44 | struct perf_missing_features perf_missing_features; |
594ac61a | 45 | |
814c8c38 PZ |
46 | static clockid_t clockid; |
47 | ||
ce8ccff5 ACM |
48 | static int perf_evsel__no_extra_init(struct perf_evsel *evsel __maybe_unused) |
49 | { | |
50 | return 0; | |
51 | } | |
52 | ||
10213e2f JO |
53 | void __weak test_attr__ready(void) { } |
54 | ||
ce8ccff5 ACM |
55 | static void perf_evsel__no_extra_fini(struct perf_evsel *evsel __maybe_unused) |
56 | { | |
57 | } | |
58 | ||
59 | static struct { | |
60 | size_t size; | |
61 | int (*init)(struct perf_evsel *evsel); | |
62 | void (*fini)(struct perf_evsel *evsel); | |
63 | } perf_evsel__object = { | |
64 | .size = sizeof(struct perf_evsel), | |
65 | .init = perf_evsel__no_extra_init, | |
66 | .fini = perf_evsel__no_extra_fini, | |
67 | }; | |
68 | ||
69 | int perf_evsel__object_config(size_t object_size, | |
70 | int (*init)(struct perf_evsel *evsel), | |
71 | void (*fini)(struct perf_evsel *evsel)) | |
72 | { | |
73 | ||
74 | if (object_size == 0) | |
75 | goto set_methods; | |
76 | ||
77 | if (perf_evsel__object.size > object_size) | |
78 | return -EINVAL; | |
79 | ||
80 | perf_evsel__object.size = object_size; | |
81 | ||
82 | set_methods: | |
83 | if (init != NULL) | |
84 | perf_evsel__object.init = init; | |
85 | ||
86 | if (fini != NULL) | |
87 | perf_evsel__object.fini = fini; | |
88 | ||
89 | return 0; | |
90 | } | |
91 | ||
c52b12ed ACM |
92 | #define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y)) |
93 | ||
75562573 | 94 | int __perf_evsel__sample_size(u64 sample_type) |
c2a70653 ACM |
95 | { |
96 | u64 mask = sample_type & PERF_SAMPLE_MASK; | |
97 | int size = 0; | |
98 | int i; | |
99 | ||
100 | for (i = 0; i < 64; i++) { | |
101 | if (mask & (1ULL << i)) | |
102 | size++; | |
103 | } | |
104 | ||
105 | size *= sizeof(u64); | |
106 | ||
107 | return size; | |
108 | } | |
109 | ||
75562573 AH |
110 | /** |
111 | * __perf_evsel__calc_id_pos - calculate id_pos. | |
112 | * @sample_type: sample type | |
113 | * | |
114 | * This function returns the position of the event id (PERF_SAMPLE_ID or | |
115 | * PERF_SAMPLE_IDENTIFIER) in a sample event i.e. in the array of struct | |
116 | * sample_event. | |
117 | */ | |
118 | static int __perf_evsel__calc_id_pos(u64 sample_type) | |
119 | { | |
120 | int idx = 0; | |
121 | ||
122 | if (sample_type & PERF_SAMPLE_IDENTIFIER) | |
123 | return 0; | |
124 | ||
125 | if (!(sample_type & PERF_SAMPLE_ID)) | |
126 | return -1; | |
127 | ||
128 | if (sample_type & PERF_SAMPLE_IP) | |
129 | idx += 1; | |
130 | ||
131 | if (sample_type & PERF_SAMPLE_TID) | |
132 | idx += 1; | |
133 | ||
134 | if (sample_type & PERF_SAMPLE_TIME) | |
135 | idx += 1; | |
136 | ||
137 | if (sample_type & PERF_SAMPLE_ADDR) | |
138 | idx += 1; | |
139 | ||
140 | return idx; | |
141 | } | |
142 | ||
143 | /** | |
144 | * __perf_evsel__calc_is_pos - calculate is_pos. | |
145 | * @sample_type: sample type | |
146 | * | |
147 | * This function returns the position (counting backwards) of the event id | |
148 | * (PERF_SAMPLE_ID or PERF_SAMPLE_IDENTIFIER) in a non-sample event i.e. if | |
149 | * sample_id_all is used there is an id sample appended to non-sample events. | |
150 | */ | |
151 | static int __perf_evsel__calc_is_pos(u64 sample_type) | |
152 | { | |
153 | int idx = 1; | |
154 | ||
155 | if (sample_type & PERF_SAMPLE_IDENTIFIER) | |
156 | return 1; | |
157 | ||
158 | if (!(sample_type & PERF_SAMPLE_ID)) | |
159 | return -1; | |
160 | ||
161 | if (sample_type & PERF_SAMPLE_CPU) | |
162 | idx += 1; | |
163 | ||
164 | if (sample_type & PERF_SAMPLE_STREAM_ID) | |
165 | idx += 1; | |
166 | ||
167 | return idx; | |
168 | } | |
169 | ||
170 | void perf_evsel__calc_id_pos(struct perf_evsel *evsel) | |
171 | { | |
172 | evsel->id_pos = __perf_evsel__calc_id_pos(evsel->attr.sample_type); | |
173 | evsel->is_pos = __perf_evsel__calc_is_pos(evsel->attr.sample_type); | |
174 | } | |
175 | ||
7be5ebe8 ACM |
176 | void __perf_evsel__set_sample_bit(struct perf_evsel *evsel, |
177 | enum perf_event_sample_format bit) | |
178 | { | |
179 | if (!(evsel->attr.sample_type & bit)) { | |
180 | evsel->attr.sample_type |= bit; | |
181 | evsel->sample_size += sizeof(u64); | |
75562573 | 182 | perf_evsel__calc_id_pos(evsel); |
7be5ebe8 ACM |
183 | } |
184 | } | |
185 | ||
186 | void __perf_evsel__reset_sample_bit(struct perf_evsel *evsel, | |
187 | enum perf_event_sample_format bit) | |
188 | { | |
189 | if (evsel->attr.sample_type & bit) { | |
190 | evsel->attr.sample_type &= ~bit; | |
191 | evsel->sample_size -= sizeof(u64); | |
75562573 | 192 | perf_evsel__calc_id_pos(evsel); |
7be5ebe8 ACM |
193 | } |
194 | } | |
195 | ||
75562573 AH |
196 | void perf_evsel__set_sample_id(struct perf_evsel *evsel, |
197 | bool can_sample_identifier) | |
7a5a5ca5 | 198 | { |
75562573 AH |
199 | if (can_sample_identifier) { |
200 | perf_evsel__reset_sample_bit(evsel, ID); | |
201 | perf_evsel__set_sample_bit(evsel, IDENTIFIER); | |
202 | } else { | |
203 | perf_evsel__set_sample_bit(evsel, ID); | |
204 | } | |
7a5a5ca5 ACM |
205 | evsel->attr.read_format |= PERF_FORMAT_ID; |
206 | } | |
207 | ||
5496bc0c ACM |
208 | /** |
209 | * perf_evsel__is_function_event - Return whether given evsel is a function | |
210 | * trace event | |
211 | * | |
212 | * @evsel - evsel selector to be tested | |
213 | * | |
214 | * Return %true if event is function trace event | |
215 | */ | |
216 | bool perf_evsel__is_function_event(struct perf_evsel *evsel) | |
217 | { | |
218 | #define FUNCTION_EVENT "ftrace:function" | |
219 | ||
220 | return evsel->name && | |
221 | !strncmp(FUNCTION_EVENT, evsel->name, sizeof(FUNCTION_EVENT)); | |
222 | ||
223 | #undef FUNCTION_EVENT | |
224 | } | |
225 | ||
ef1d1af2 ACM |
226 | void perf_evsel__init(struct perf_evsel *evsel, |
227 | struct perf_event_attr *attr, int idx) | |
228 | { | |
229 | evsel->idx = idx; | |
60b0896c | 230 | evsel->tracking = !idx; |
ef1d1af2 | 231 | evsel->attr = *attr; |
2cfda562 | 232 | evsel->leader = evsel; |
410136f5 SE |
233 | evsel->unit = ""; |
234 | evsel->scale = 1.0; | |
2fda5ada | 235 | evsel->max_events = ULONG_MAX; |
d49e4695 | 236 | evsel->evlist = NULL; |
1f45b1d4 | 237 | evsel->bpf_fd = -1; |
ef1d1af2 | 238 | INIT_LIST_HEAD(&evsel->node); |
930a2e29 | 239 | INIT_LIST_HEAD(&evsel->config_terms); |
ce8ccff5 | 240 | perf_evsel__object.init(evsel); |
bde09467 | 241 | evsel->sample_size = __perf_evsel__sample_size(attr->sample_type); |
75562573 | 242 | perf_evsel__calc_id_pos(evsel); |
15bfd2cc | 243 | evsel->cmdline_group_boundary = false; |
37932c18 | 244 | evsel->metric_expr = NULL; |
96284814 | 245 | evsel->metric_name = NULL; |
37932c18 AK |
246 | evsel->metric_events = NULL; |
247 | evsel->collect_stat = false; | |
8c5421c0 | 248 | evsel->pmu_name = NULL; |
ef1d1af2 ACM |
249 | } |
250 | ||
ef503831 | 251 | struct perf_evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx) |
69aad6f1 | 252 | { |
ce8ccff5 | 253 | struct perf_evsel *evsel = zalloc(perf_evsel__object.size); |
69aad6f1 | 254 | |
fd8d2702 HT |
255 | if (!evsel) |
256 | return NULL; | |
257 | perf_evsel__init(evsel, attr, idx); | |
69aad6f1 | 258 | |
03e0a7df | 259 | if (perf_evsel__is_bpf_output(evsel)) { |
d37ba880 WN |
260 | evsel->attr.sample_type |= (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | |
261 | PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD), | |
03e0a7df WN |
262 | evsel->attr.sample_period = 1; |
263 | } | |
264 | ||
0aa802a7 JO |
265 | if (perf_evsel__is_clock(evsel)) { |
266 | /* | |
267 | * The evsel->unit points to static alias->unit | |
268 | * so it's ok to use static string in here. | |
269 | */ | |
270 | static const char *unit = "msec"; | |
271 | ||
272 | evsel->unit = unit; | |
273 | evsel->scale = 1e-6; | |
274 | } | |
275 | ||
69aad6f1 ACM |
276 | return evsel; |
277 | } | |
278 | ||
f1e52f14 ACM |
279 | static bool perf_event_can_profile_kernel(void) |
280 | { | |
281 | return geteuid() == 0 || perf_event_paranoid() == -1; | |
282 | } | |
283 | ||
30269dc1 | 284 | struct perf_evsel *perf_evsel__new_cycles(bool precise) |
7c48dcfd ACM |
285 | { |
286 | struct perf_event_attr attr = { | |
287 | .type = PERF_TYPE_HARDWARE, | |
288 | .config = PERF_COUNT_HW_CPU_CYCLES, | |
f1e52f14 | 289 | .exclude_kernel = !perf_event_can_profile_kernel(), |
7c48dcfd ACM |
290 | }; |
291 | struct perf_evsel *evsel; | |
292 | ||
293 | event_attr_init(&attr); | |
30269dc1 ACM |
294 | |
295 | if (!precise) | |
296 | goto new_event; | |
7a1ac110 ACM |
297 | /* |
298 | * Unnamed union member, not supported as struct member named | |
299 | * initializer in older compilers such as gcc 4.4.7 | |
300 | * | |
301 | * Just for probing the precise_ip: | |
302 | */ | |
303 | attr.sample_period = 1; | |
7c48dcfd ACM |
304 | |
305 | perf_event_attr__set_max_precise_ip(&attr); | |
7a1ac110 ACM |
306 | /* |
307 | * Now let the usual logic to set up the perf_event_attr defaults | |
308 | * to kick in when we return and before perf_evsel__open() is called. | |
309 | */ | |
310 | attr.sample_period = 0; | |
30269dc1 | 311 | new_event: |
7c48dcfd ACM |
312 | evsel = perf_evsel__new(&attr); |
313 | if (evsel == NULL) | |
314 | goto out; | |
315 | ||
316 | /* use asprintf() because free(evsel) assumes name is allocated */ | |
ede5626d ACM |
317 | if (asprintf(&evsel->name, "cycles%s%s%.*s", |
318 | (attr.precise_ip || attr.exclude_kernel) ? ":" : "", | |
319 | attr.exclude_kernel ? "u" : "", | |
320 | attr.precise_ip ? attr.precise_ip + 1 : 0, "ppp") < 0) | |
7c48dcfd ACM |
321 | goto error_free; |
322 | out: | |
323 | return evsel; | |
324 | error_free: | |
325 | perf_evsel__delete(evsel); | |
326 | evsel = NULL; | |
327 | goto out; | |
328 | } | |
329 | ||
8dd2a131 JO |
330 | /* |
331 | * Returns pointer with encoded error via <linux/err.h> interface. | |
332 | */ | |
ef503831 | 333 | struct perf_evsel *perf_evsel__newtp_idx(const char *sys, const char *name, int idx) |
efd2b924 | 334 | { |
ce8ccff5 | 335 | struct perf_evsel *evsel = zalloc(perf_evsel__object.size); |
8dd2a131 | 336 | int err = -ENOMEM; |
efd2b924 | 337 | |
8dd2a131 JO |
338 | if (evsel == NULL) { |
339 | goto out_err; | |
340 | } else { | |
efd2b924 | 341 | struct perf_event_attr attr = { |
0b80f8b3 ACM |
342 | .type = PERF_TYPE_TRACEPOINT, |
343 | .sample_type = (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | | |
344 | PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD), | |
efd2b924 ACM |
345 | }; |
346 | ||
e48ffe2b ACM |
347 | if (asprintf(&evsel->name, "%s:%s", sys, name) < 0) |
348 | goto out_free; | |
349 | ||
97978b3e | 350 | evsel->tp_format = trace_event__tp_format(sys, name); |
8dd2a131 JO |
351 | if (IS_ERR(evsel->tp_format)) { |
352 | err = PTR_ERR(evsel->tp_format); | |
efd2b924 | 353 | goto out_free; |
8dd2a131 | 354 | } |
efd2b924 | 355 | |
0b80f8b3 | 356 | event_attr_init(&attr); |
efd2b924 | 357 | attr.config = evsel->tp_format->id; |
0b80f8b3 | 358 | attr.sample_period = 1; |
efd2b924 | 359 | perf_evsel__init(evsel, &attr, idx); |
efd2b924 ACM |
360 | } |
361 | ||
362 | return evsel; | |
363 | ||
364 | out_free: | |
74cf249d | 365 | zfree(&evsel->name); |
efd2b924 | 366 | free(evsel); |
8dd2a131 JO |
367 | out_err: |
368 | return ERR_PTR(err); | |
efd2b924 ACM |
369 | } |
370 | ||
8ad7013b | 371 | const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX] = { |
c410431c ACM |
372 | "cycles", |
373 | "instructions", | |
374 | "cache-references", | |
375 | "cache-misses", | |
376 | "branches", | |
377 | "branch-misses", | |
378 | "bus-cycles", | |
379 | "stalled-cycles-frontend", | |
380 | "stalled-cycles-backend", | |
381 | "ref-cycles", | |
382 | }; | |
383 | ||
dd4f5223 | 384 | static const char *__perf_evsel__hw_name(u64 config) |
c410431c ACM |
385 | { |
386 | if (config < PERF_COUNT_HW_MAX && perf_evsel__hw_names[config]) | |
387 | return perf_evsel__hw_names[config]; | |
388 | ||
389 | return "unknown-hardware"; | |
390 | } | |
391 | ||
27f18617 | 392 | static int perf_evsel__add_modifiers(struct perf_evsel *evsel, char *bf, size_t size) |
c410431c | 393 | { |
27f18617 | 394 | int colon = 0, r = 0; |
c410431c | 395 | struct perf_event_attr *attr = &evsel->attr; |
c410431c ACM |
396 | bool exclude_guest_default = false; |
397 | ||
398 | #define MOD_PRINT(context, mod) do { \ | |
399 | if (!attr->exclude_##context) { \ | |
27f18617 | 400 | if (!colon) colon = ++r; \ |
c410431c ACM |
401 | r += scnprintf(bf + r, size - r, "%c", mod); \ |
402 | } } while(0) | |
403 | ||
404 | if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) { | |
405 | MOD_PRINT(kernel, 'k'); | |
406 | MOD_PRINT(user, 'u'); | |
407 | MOD_PRINT(hv, 'h'); | |
408 | exclude_guest_default = true; | |
409 | } | |
410 | ||
411 | if (attr->precise_ip) { | |
412 | if (!colon) | |
27f18617 | 413 | colon = ++r; |
c410431c ACM |
414 | r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp"); |
415 | exclude_guest_default = true; | |
416 | } | |
417 | ||
418 | if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) { | |
419 | MOD_PRINT(host, 'H'); | |
420 | MOD_PRINT(guest, 'G'); | |
421 | } | |
422 | #undef MOD_PRINT | |
423 | if (colon) | |
27f18617 | 424 | bf[colon - 1] = ':'; |
c410431c ACM |
425 | return r; |
426 | } | |
427 | ||
27f18617 ACM |
428 | static int perf_evsel__hw_name(struct perf_evsel *evsel, char *bf, size_t size) |
429 | { | |
430 | int r = scnprintf(bf, size, "%s", __perf_evsel__hw_name(evsel->attr.config)); | |
431 | return r + perf_evsel__add_modifiers(evsel, bf + r, size - r); | |
432 | } | |
433 | ||
8ad7013b | 434 | const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX] = { |
335c2f5d ACM |
435 | "cpu-clock", |
436 | "task-clock", | |
437 | "page-faults", | |
438 | "context-switches", | |
8ad7013b | 439 | "cpu-migrations", |
335c2f5d ACM |
440 | "minor-faults", |
441 | "major-faults", | |
442 | "alignment-faults", | |
443 | "emulation-faults", | |
d22d1a2a | 444 | "dummy", |
335c2f5d ACM |
445 | }; |
446 | ||
dd4f5223 | 447 | static const char *__perf_evsel__sw_name(u64 config) |
335c2f5d ACM |
448 | { |
449 | if (config < PERF_COUNT_SW_MAX && perf_evsel__sw_names[config]) | |
450 | return perf_evsel__sw_names[config]; | |
451 | return "unknown-software"; | |
452 | } | |
453 | ||
454 | static int perf_evsel__sw_name(struct perf_evsel *evsel, char *bf, size_t size) | |
455 | { | |
456 | int r = scnprintf(bf, size, "%s", __perf_evsel__sw_name(evsel->attr.config)); | |
457 | return r + perf_evsel__add_modifiers(evsel, bf + r, size - r); | |
458 | } | |
459 | ||
287e74aa JO |
460 | static int __perf_evsel__bp_name(char *bf, size_t size, u64 addr, u64 type) |
461 | { | |
462 | int r; | |
463 | ||
464 | r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr); | |
465 | ||
466 | if (type & HW_BREAKPOINT_R) | |
467 | r += scnprintf(bf + r, size - r, "r"); | |
468 | ||
469 | if (type & HW_BREAKPOINT_W) | |
470 | r += scnprintf(bf + r, size - r, "w"); | |
471 | ||
472 | if (type & HW_BREAKPOINT_X) | |
473 | r += scnprintf(bf + r, size - r, "x"); | |
474 | ||
475 | return r; | |
476 | } | |
477 | ||
478 | static int perf_evsel__bp_name(struct perf_evsel *evsel, char *bf, size_t size) | |
479 | { | |
480 | struct perf_event_attr *attr = &evsel->attr; | |
481 | int r = __perf_evsel__bp_name(bf, size, attr->bp_addr, attr->bp_type); | |
482 | return r + perf_evsel__add_modifiers(evsel, bf + r, size - r); | |
483 | } | |
484 | ||
0b668bc9 ACM |
485 | const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX] |
486 | [PERF_EVSEL__MAX_ALIASES] = { | |
487 | { "L1-dcache", "l1-d", "l1d", "L1-data", }, | |
488 | { "L1-icache", "l1-i", "l1i", "L1-instruction", }, | |
489 | { "LLC", "L2", }, | |
490 | { "dTLB", "d-tlb", "Data-TLB", }, | |
491 | { "iTLB", "i-tlb", "Instruction-TLB", }, | |
492 | { "branch", "branches", "bpu", "btb", "bpc", }, | |
493 | { "node", }, | |
494 | }; | |
495 | ||
496 | const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX] | |
497 | [PERF_EVSEL__MAX_ALIASES] = { | |
498 | { "load", "loads", "read", }, | |
499 | { "store", "stores", "write", }, | |
500 | { "prefetch", "prefetches", "speculative-read", "speculative-load", }, | |
501 | }; | |
502 | ||
503 | const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX] | |
504 | [PERF_EVSEL__MAX_ALIASES] = { | |
505 | { "refs", "Reference", "ops", "access", }, | |
506 | { "misses", "miss", }, | |
507 | }; | |
508 | ||
509 | #define C(x) PERF_COUNT_HW_CACHE_##x | |
510 | #define CACHE_READ (1 << C(OP_READ)) | |
511 | #define CACHE_WRITE (1 << C(OP_WRITE)) | |
512 | #define CACHE_PREFETCH (1 << C(OP_PREFETCH)) | |
513 | #define COP(x) (1 << x) | |
514 | ||
515 | /* | |
516 | * cache operartion stat | |
517 | * L1I : Read and prefetch only | |
518 | * ITLB and BPU : Read-only | |
519 | */ | |
520 | static unsigned long perf_evsel__hw_cache_stat[C(MAX)] = { | |
521 | [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH), | |
522 | [C(L1I)] = (CACHE_READ | CACHE_PREFETCH), | |
523 | [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH), | |
524 | [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH), | |
525 | [C(ITLB)] = (CACHE_READ), | |
526 | [C(BPU)] = (CACHE_READ), | |
527 | [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH), | |
528 | }; | |
529 | ||
530 | bool perf_evsel__is_cache_op_valid(u8 type, u8 op) | |
531 | { | |
532 | if (perf_evsel__hw_cache_stat[type] & COP(op)) | |
533 | return true; /* valid */ | |
534 | else | |
535 | return false; /* invalid */ | |
536 | } | |
537 | ||
538 | int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result, | |
539 | char *bf, size_t size) | |
540 | { | |
541 | if (result) { | |
542 | return scnprintf(bf, size, "%s-%s-%s", perf_evsel__hw_cache[type][0], | |
543 | perf_evsel__hw_cache_op[op][0], | |
544 | perf_evsel__hw_cache_result[result][0]); | |
545 | } | |
546 | ||
547 | return scnprintf(bf, size, "%s-%s", perf_evsel__hw_cache[type][0], | |
548 | perf_evsel__hw_cache_op[op][1]); | |
549 | } | |
550 | ||
dd4f5223 | 551 | static int __perf_evsel__hw_cache_name(u64 config, char *bf, size_t size) |
0b668bc9 ACM |
552 | { |
553 | u8 op, result, type = (config >> 0) & 0xff; | |
554 | const char *err = "unknown-ext-hardware-cache-type"; | |
555 | ||
c53412ee | 556 | if (type >= PERF_COUNT_HW_CACHE_MAX) |
0b668bc9 ACM |
557 | goto out_err; |
558 | ||
559 | op = (config >> 8) & 0xff; | |
560 | err = "unknown-ext-hardware-cache-op"; | |
c53412ee | 561 | if (op >= PERF_COUNT_HW_CACHE_OP_MAX) |
0b668bc9 ACM |
562 | goto out_err; |
563 | ||
564 | result = (config >> 16) & 0xff; | |
565 | err = "unknown-ext-hardware-cache-result"; | |
c53412ee | 566 | if (result >= PERF_COUNT_HW_CACHE_RESULT_MAX) |
0b668bc9 ACM |
567 | goto out_err; |
568 | ||
569 | err = "invalid-cache"; | |
570 | if (!perf_evsel__is_cache_op_valid(type, op)) | |
571 | goto out_err; | |
572 | ||
573 | return __perf_evsel__hw_cache_type_op_res_name(type, op, result, bf, size); | |
574 | out_err: | |
575 | return scnprintf(bf, size, "%s", err); | |
576 | } | |
577 | ||
578 | static int perf_evsel__hw_cache_name(struct perf_evsel *evsel, char *bf, size_t size) | |
579 | { | |
580 | int ret = __perf_evsel__hw_cache_name(evsel->attr.config, bf, size); | |
581 | return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret); | |
582 | } | |
583 | ||
6eef3d9c ACM |
584 | static int perf_evsel__raw_name(struct perf_evsel *evsel, char *bf, size_t size) |
585 | { | |
586 | int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->attr.config); | |
587 | return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret); | |
588 | } | |
589 | ||
7289f83c | 590 | const char *perf_evsel__name(struct perf_evsel *evsel) |
a4460836 | 591 | { |
7289f83c | 592 | char bf[128]; |
a4460836 | 593 | |
7289f83c ACM |
594 | if (evsel->name) |
595 | return evsel->name; | |
c410431c ACM |
596 | |
597 | switch (evsel->attr.type) { | |
598 | case PERF_TYPE_RAW: | |
6eef3d9c | 599 | perf_evsel__raw_name(evsel, bf, sizeof(bf)); |
c410431c ACM |
600 | break; |
601 | ||
602 | case PERF_TYPE_HARDWARE: | |
7289f83c | 603 | perf_evsel__hw_name(evsel, bf, sizeof(bf)); |
c410431c | 604 | break; |
0b668bc9 ACM |
605 | |
606 | case PERF_TYPE_HW_CACHE: | |
7289f83c | 607 | perf_evsel__hw_cache_name(evsel, bf, sizeof(bf)); |
0b668bc9 ACM |
608 | break; |
609 | ||
335c2f5d | 610 | case PERF_TYPE_SOFTWARE: |
7289f83c | 611 | perf_evsel__sw_name(evsel, bf, sizeof(bf)); |
335c2f5d ACM |
612 | break; |
613 | ||
a4460836 | 614 | case PERF_TYPE_TRACEPOINT: |
7289f83c | 615 | scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint"); |
a4460836 ACM |
616 | break; |
617 | ||
287e74aa JO |
618 | case PERF_TYPE_BREAKPOINT: |
619 | perf_evsel__bp_name(evsel, bf, sizeof(bf)); | |
620 | break; | |
621 | ||
c410431c | 622 | default: |
ca1b1457 RR |
623 | scnprintf(bf, sizeof(bf), "unknown attr type: %d", |
624 | evsel->attr.type); | |
a4460836 | 625 | break; |
c410431c ACM |
626 | } |
627 | ||
7289f83c ACM |
628 | evsel->name = strdup(bf); |
629 | ||
630 | return evsel->name ?: "unknown"; | |
c410431c ACM |
631 | } |
632 | ||
717e263f NK |
633 | const char *perf_evsel__group_name(struct perf_evsel *evsel) |
634 | { | |
635 | return evsel->group_name ?: "anon group"; | |
636 | } | |
637 | ||
8ef278bb JO |
638 | /* |
639 | * Returns the group details for the specified leader, | |
640 | * with following rules. | |
641 | * | |
642 | * For record -e '{cycles,instructions}' | |
643 | * 'anon group { cycles:u, instructions:u }' | |
644 | * | |
645 | * For record -e 'cycles,instructions' and report --group | |
646 | * 'cycles:u, instructions:u' | |
647 | */ | |
717e263f NK |
648 | int perf_evsel__group_desc(struct perf_evsel *evsel, char *buf, size_t size) |
649 | { | |
8ef278bb | 650 | int ret = 0; |
717e263f NK |
651 | struct perf_evsel *pos; |
652 | const char *group_name = perf_evsel__group_name(evsel); | |
653 | ||
8ef278bb JO |
654 | if (!evsel->forced_leader) |
655 | ret = scnprintf(buf, size, "%s { ", group_name); | |
717e263f | 656 | |
8ef278bb | 657 | ret += scnprintf(buf + ret, size - ret, "%s", |
717e263f NK |
658 | perf_evsel__name(evsel)); |
659 | ||
660 | for_each_group_member(pos, evsel) | |
661 | ret += scnprintf(buf + ret, size - ret, ", %s", | |
662 | perf_evsel__name(pos)); | |
663 | ||
8ef278bb JO |
664 | if (!evsel->forced_leader) |
665 | ret += scnprintf(buf + ret, size - ret, " }"); | |
717e263f NK |
666 | |
667 | return ret; | |
668 | } | |
669 | ||
1688c2fd ACM |
670 | static void __perf_evsel__config_callchain(struct perf_evsel *evsel, |
671 | struct record_opts *opts, | |
672 | struct callchain_param *param) | |
6bedfab6 JO |
673 | { |
674 | bool function = perf_evsel__is_function_event(evsel); | |
675 | struct perf_event_attr *attr = &evsel->attr; | |
676 | ||
677 | perf_evsel__set_sample_bit(evsel, CALLCHAIN); | |
678 | ||
792d48b4 ACM |
679 | attr->sample_max_stack = param->max_stack; |
680 | ||
c3a6a8c4 | 681 | if (param->record_mode == CALLCHAIN_LBR) { |
aad2b21c KL |
682 | if (!opts->branch_stack) { |
683 | if (attr->exclude_user) { | |
684 | pr_warning("LBR callstack option is only available " | |
685 | "to get user callchain information. " | |
686 | "Falling back to framepointers.\n"); | |
687 | } else { | |
688 | perf_evsel__set_sample_bit(evsel, BRANCH_STACK); | |
689 | attr->branch_sample_type = PERF_SAMPLE_BRANCH_USER | | |
bd0f8895 AK |
690 | PERF_SAMPLE_BRANCH_CALL_STACK | |
691 | PERF_SAMPLE_BRANCH_NO_CYCLES | | |
692 | PERF_SAMPLE_BRANCH_NO_FLAGS; | |
aad2b21c KL |
693 | } |
694 | } else | |
695 | pr_warning("Cannot use LBR callstack with branch stack. " | |
696 | "Falling back to framepointers.\n"); | |
697 | } | |
698 | ||
c3a6a8c4 | 699 | if (param->record_mode == CALLCHAIN_DWARF) { |
6bedfab6 JO |
700 | if (!function) { |
701 | perf_evsel__set_sample_bit(evsel, REGS_USER); | |
702 | perf_evsel__set_sample_bit(evsel, STACK_USER); | |
84c41742 | 703 | attr->sample_regs_user |= PERF_REGS_MASK; |
c3a6a8c4 | 704 | attr->sample_stack_user = param->dump_size; |
6bedfab6 JO |
705 | attr->exclude_callchain_user = 1; |
706 | } else { | |
707 | pr_info("Cannot use DWARF unwind for function trace event," | |
708 | " falling back to framepointers.\n"); | |
709 | } | |
710 | } | |
711 | ||
712 | if (function) { | |
713 | pr_info("Disabling user space callchains for function trace event.\n"); | |
714 | attr->exclude_callchain_user = 1; | |
715 | } | |
716 | } | |
717 | ||
1688c2fd ACM |
718 | void perf_evsel__config_callchain(struct perf_evsel *evsel, |
719 | struct record_opts *opts, | |
720 | struct callchain_param *param) | |
721 | { | |
722 | if (param->enabled) | |
723 | return __perf_evsel__config_callchain(evsel, opts, param); | |
724 | } | |
725 | ||
d457c963 KL |
726 | static void |
727 | perf_evsel__reset_callgraph(struct perf_evsel *evsel, | |
728 | struct callchain_param *param) | |
729 | { | |
730 | struct perf_event_attr *attr = &evsel->attr; | |
731 | ||
732 | perf_evsel__reset_sample_bit(evsel, CALLCHAIN); | |
733 | if (param->record_mode == CALLCHAIN_LBR) { | |
734 | perf_evsel__reset_sample_bit(evsel, BRANCH_STACK); | |
735 | attr->branch_sample_type &= ~(PERF_SAMPLE_BRANCH_USER | | |
736 | PERF_SAMPLE_BRANCH_CALL_STACK); | |
737 | } | |
738 | if (param->record_mode == CALLCHAIN_DWARF) { | |
739 | perf_evsel__reset_sample_bit(evsel, REGS_USER); | |
740 | perf_evsel__reset_sample_bit(evsel, STACK_USER); | |
741 | } | |
742 | } | |
743 | ||
744 | static void apply_config_terms(struct perf_evsel *evsel, | |
0d3dcc0e | 745 | struct record_opts *opts, bool track) |
930a2e29 JO |
746 | { |
747 | struct perf_evsel_config_term *term; | |
32067712 KL |
748 | struct list_head *config_terms = &evsel->config_terms; |
749 | struct perf_event_attr *attr = &evsel->attr; | |
249d98e5 ACM |
750 | /* callgraph default */ |
751 | struct callchain_param param = { | |
752 | .record_mode = callchain_param.record_mode, | |
753 | }; | |
d457c963 | 754 | u32 dump_size = 0; |
792d48b4 ACM |
755 | int max_stack = 0; |
756 | const char *callgraph_buf = NULL; | |
d457c963 | 757 | |
930a2e29 JO |
758 | list_for_each_entry(term, config_terms, list) { |
759 | switch (term->type) { | |
ee4c7588 | 760 | case PERF_EVSEL__CONFIG_TERM_PERIOD: |
c2f1cead AK |
761 | if (!(term->weak && opts->user_interval != ULLONG_MAX)) { |
762 | attr->sample_period = term->val.period; | |
763 | attr->freq = 0; | |
49c0ae80 | 764 | perf_evsel__reset_sample_bit(evsel, PERIOD); |
c2f1cead | 765 | } |
32067712 | 766 | break; |
09af2a55 | 767 | case PERF_EVSEL__CONFIG_TERM_FREQ: |
c2f1cead AK |
768 | if (!(term->weak && opts->user_freq != UINT_MAX)) { |
769 | attr->sample_freq = term->val.freq; | |
770 | attr->freq = 1; | |
49c0ae80 | 771 | perf_evsel__set_sample_bit(evsel, PERIOD); |
c2f1cead | 772 | } |
09af2a55 | 773 | break; |
32067712 KL |
774 | case PERF_EVSEL__CONFIG_TERM_TIME: |
775 | if (term->val.time) | |
776 | perf_evsel__set_sample_bit(evsel, TIME); | |
777 | else | |
778 | perf_evsel__reset_sample_bit(evsel, TIME); | |
779 | break; | |
d457c963 KL |
780 | case PERF_EVSEL__CONFIG_TERM_CALLGRAPH: |
781 | callgraph_buf = term->val.callgraph; | |
782 | break; | |
ac12f676 AK |
783 | case PERF_EVSEL__CONFIG_TERM_BRANCH: |
784 | if (term->val.branch && strcmp(term->val.branch, "no")) { | |
785 | perf_evsel__set_sample_bit(evsel, BRANCH_STACK); | |
786 | parse_branch_str(term->val.branch, | |
787 | &attr->branch_sample_type); | |
788 | } else | |
789 | perf_evsel__reset_sample_bit(evsel, BRANCH_STACK); | |
790 | break; | |
d457c963 KL |
791 | case PERF_EVSEL__CONFIG_TERM_STACK_USER: |
792 | dump_size = term->val.stack_user; | |
793 | break; | |
792d48b4 ACM |
794 | case PERF_EVSEL__CONFIG_TERM_MAX_STACK: |
795 | max_stack = term->val.max_stack; | |
796 | break; | |
2fda5ada ACM |
797 | case PERF_EVSEL__CONFIG_TERM_MAX_EVENTS: |
798 | evsel->max_events = term->val.max_events; | |
799 | break; | |
374ce938 WN |
800 | case PERF_EVSEL__CONFIG_TERM_INHERIT: |
801 | /* | |
802 | * attr->inherit should has already been set by | |
803 | * perf_evsel__config. If user explicitly set | |
804 | * inherit using config terms, override global | |
805 | * opt->no_inherit setting. | |
806 | */ | |
807 | attr->inherit = term->val.inherit ? 1 : 0; | |
808 | break; | |
626a6b78 WN |
809 | case PERF_EVSEL__CONFIG_TERM_OVERWRITE: |
810 | attr->write_backward = term->val.overwrite ? 1 : 0; | |
811 | break; | |
d0565132 | 812 | case PERF_EVSEL__CONFIG_TERM_DRV_CFG: |
2178790b | 813 | break; |
930a2e29 JO |
814 | default: |
815 | break; | |
816 | } | |
817 | } | |
d457c963 KL |
818 | |
819 | /* User explicitly set per-event callgraph, clear the old setting and reset. */ | |
792d48b4 | 820 | if ((callgraph_buf != NULL) || (dump_size > 0) || max_stack) { |
0d3dcc0e ACM |
821 | bool sample_address = false; |
822 | ||
792d48b4 ACM |
823 | if (max_stack) { |
824 | param.max_stack = max_stack; | |
825 | if (callgraph_buf == NULL) | |
826 | callgraph_buf = "fp"; | |
827 | } | |
d457c963 KL |
828 | |
829 | /* parse callgraph parameters */ | |
830 | if (callgraph_buf != NULL) { | |
f9db0d0f KL |
831 | if (!strcmp(callgraph_buf, "no")) { |
832 | param.enabled = false; | |
833 | param.record_mode = CALLCHAIN_NONE; | |
834 | } else { | |
835 | param.enabled = true; | |
836 | if (parse_callchain_record(callgraph_buf, ¶m)) { | |
837 | pr_err("per-event callgraph setting for %s failed. " | |
838 | "Apply callgraph global setting for it\n", | |
839 | evsel->name); | |
840 | return; | |
841 | } | |
0d3dcc0e ACM |
842 | if (param.record_mode == CALLCHAIN_DWARF) |
843 | sample_address = true; | |
d457c963 KL |
844 | } |
845 | } | |
846 | if (dump_size > 0) { | |
847 | dump_size = round_up(dump_size, sizeof(u64)); | |
848 | param.dump_size = dump_size; | |
849 | } | |
850 | ||
851 | /* If global callgraph set, clear it */ | |
852 | if (callchain_param.enabled) | |
853 | perf_evsel__reset_callgraph(evsel, &callchain_param); | |
854 | ||
855 | /* set perf-event callgraph */ | |
0d3dcc0e ACM |
856 | if (param.enabled) { |
857 | if (sample_address) { | |
858 | perf_evsel__set_sample_bit(evsel, ADDR); | |
859 | perf_evsel__set_sample_bit(evsel, DATA_SRC); | |
860 | evsel->attr.mmap_data = track; | |
861 | } | |
01e0d50c | 862 | perf_evsel__config_callchain(evsel, opts, ¶m); |
0d3dcc0e | 863 | } |
d457c963 | 864 | } |
930a2e29 JO |
865 | } |
866 | ||
95035c5e KL |
867 | static bool is_dummy_event(struct perf_evsel *evsel) |
868 | { | |
869 | return (evsel->attr.type == PERF_TYPE_SOFTWARE) && | |
870 | (evsel->attr.config == PERF_COUNT_SW_DUMMY); | |
871 | } | |
872 | ||
774cb499 JO |
873 | /* |
874 | * The enable_on_exec/disabled value strategy: | |
875 | * | |
876 | * 1) For any type of traced program: | |
877 | * - all independent events and group leaders are disabled | |
878 | * - all group members are enabled | |
879 | * | |
880 | * Group members are ruled by group leaders. They need to | |
881 | * be enabled, because the group scheduling relies on that. | |
882 | * | |
883 | * 2) For traced programs executed by perf: | |
884 | * - all independent events and group leaders have | |
885 | * enable_on_exec set | |
886 | * - we don't specifically enable or disable any event during | |
887 | * the record command | |
888 | * | |
889 | * Independent events and group leaders are initially disabled | |
890 | * and get enabled by exec. Group members are ruled by group | |
891 | * leaders as stated in 1). | |
892 | * | |
893 | * 3) For traced programs attached by perf (pid/tid): | |
894 | * - we specifically enable or disable all events during | |
895 | * the record command | |
896 | * | |
897 | * When attaching events to already running traced we | |
898 | * enable/disable events specifically, as there's no | |
899 | * initial traced exec call. | |
900 | */ | |
e68ae9cf ACM |
901 | void perf_evsel__config(struct perf_evsel *evsel, struct record_opts *opts, |
902 | struct callchain_param *callchain) | |
0f82ebc4 | 903 | { |
3c176311 | 904 | struct perf_evsel *leader = evsel->leader; |
0f82ebc4 | 905 | struct perf_event_attr *attr = &evsel->attr; |
60b0896c | 906 | int track = evsel->tracking; |
3aa5939d | 907 | bool per_cpu = opts->target.default_per_cpu && !opts->target.per_thread; |
0f82ebc4 | 908 | |
594ac61a | 909 | attr->sample_id_all = perf_missing_features.sample_id_all ? 0 : 1; |
0f82ebc4 | 910 | attr->inherit = !opts->no_inherit; |
626a6b78 | 911 | attr->write_backward = opts->overwrite ? 1 : 0; |
0f82ebc4 | 912 | |
7be5ebe8 ACM |
913 | perf_evsel__set_sample_bit(evsel, IP); |
914 | perf_evsel__set_sample_bit(evsel, TID); | |
0f82ebc4 | 915 | |
3c176311 JO |
916 | if (evsel->sample_read) { |
917 | perf_evsel__set_sample_bit(evsel, READ); | |
918 | ||
919 | /* | |
920 | * We need ID even in case of single event, because | |
921 | * PERF_SAMPLE_READ process ID specific data. | |
922 | */ | |
75562573 | 923 | perf_evsel__set_sample_id(evsel, false); |
3c176311 JO |
924 | |
925 | /* | |
926 | * Apply group format only if we belong to group | |
927 | * with more than one members. | |
928 | */ | |
929 | if (leader->nr_members > 1) { | |
930 | attr->read_format |= PERF_FORMAT_GROUP; | |
931 | attr->inherit = 0; | |
932 | } | |
933 | } | |
934 | ||
0f82ebc4 | 935 | /* |
17314e23 | 936 | * We default some events to have a default interval. But keep |
0f82ebc4 ACM |
937 | * it a weak assumption overridable by the user. |
938 | */ | |
17314e23 | 939 | if (!attr->sample_period || (opts->user_freq != UINT_MAX || |
0f82ebc4 ACM |
940 | opts->user_interval != ULLONG_MAX)) { |
941 | if (opts->freq) { | |
7be5ebe8 | 942 | perf_evsel__set_sample_bit(evsel, PERIOD); |
0f82ebc4 ACM |
943 | attr->freq = 1; |
944 | attr->sample_freq = opts->freq; | |
945 | } else { | |
946 | attr->sample_period = opts->default_interval; | |
947 | } | |
948 | } | |
949 | ||
3c176311 JO |
950 | /* |
951 | * Disable sampling for all group members other | |
952 | * than leader in case leader 'leads' the sampling. | |
953 | */ | |
954 | if ((leader != evsel) && leader->sample_read) { | |
e9add8ba JO |
955 | attr->freq = 0; |
956 | attr->sample_freq = 0; | |
957 | attr->sample_period = 0; | |
958 | attr->write_backward = 0; | |
3c176311 JO |
959 | } |
960 | ||
0f82ebc4 ACM |
961 | if (opts->no_samples) |
962 | attr->sample_freq = 0; | |
963 | ||
a17f0697 JO |
964 | if (opts->inherit_stat) { |
965 | evsel->attr.read_format |= | |
966 | PERF_FORMAT_TOTAL_TIME_ENABLED | | |
967 | PERF_FORMAT_TOTAL_TIME_RUNNING | | |
968 | PERF_FORMAT_ID; | |
0f82ebc4 | 969 | attr->inherit_stat = 1; |
a17f0697 | 970 | } |
0f82ebc4 ACM |
971 | |
972 | if (opts->sample_address) { | |
7be5ebe8 | 973 | perf_evsel__set_sample_bit(evsel, ADDR); |
0f82ebc4 ACM |
974 | attr->mmap_data = track; |
975 | } | |
976 | ||
f140373b JO |
977 | /* |
978 | * We don't allow user space callchains for function trace | |
979 | * event, due to issues with page faults while tracing page | |
980 | * fault handler and its overall trickiness nature. | |
981 | */ | |
982 | if (perf_evsel__is_function_event(evsel)) | |
983 | evsel->attr.exclude_callchain_user = 1; | |
984 | ||
e68ae9cf | 985 | if (callchain && callchain->enabled && !evsel->no_aux_samples) |
01e0d50c | 986 | perf_evsel__config_callchain(evsel, opts, callchain); |
26d33022 | 987 | |
6a21c0b5 | 988 | if (opts->sample_intr_regs) { |
bcc84ec6 | 989 | attr->sample_regs_intr = opts->sample_intr_regs; |
6a21c0b5 SE |
990 | perf_evsel__set_sample_bit(evsel, REGS_INTR); |
991 | } | |
992 | ||
84c41742 AK |
993 | if (opts->sample_user_regs) { |
994 | attr->sample_regs_user |= opts->sample_user_regs; | |
995 | perf_evsel__set_sample_bit(evsel, REGS_USER); | |
996 | } | |
997 | ||
b6f35ed7 | 998 | if (target__has_cpu(&opts->target) || opts->sample_cpu) |
7be5ebe8 | 999 | perf_evsel__set_sample_bit(evsel, CPU); |
0f82ebc4 | 1000 | |
8affc2b8 | 1001 | /* |
bd1a0be5 | 1002 | * When the user explicitly disabled time don't force it here. |
8affc2b8 AK |
1003 | */ |
1004 | if (opts->sample_time && | |
1005 | (!perf_missing_features.sample_id_all && | |
3abebc55 AH |
1006 | (!opts->no_inherit || target__has_cpu(&opts->target) || per_cpu || |
1007 | opts->sample_time_set))) | |
7be5ebe8 | 1008 | perf_evsel__set_sample_bit(evsel, TIME); |
0f82ebc4 | 1009 | |
6ff1ce76 | 1010 | if (opts->raw_samples && !evsel->no_aux_samples) { |
7be5ebe8 ACM |
1011 | perf_evsel__set_sample_bit(evsel, TIME); |
1012 | perf_evsel__set_sample_bit(evsel, RAW); | |
1013 | perf_evsel__set_sample_bit(evsel, CPU); | |
0f82ebc4 ACM |
1014 | } |
1015 | ||
ccf49bfc | 1016 | if (opts->sample_address) |
1e7ed5ec | 1017 | perf_evsel__set_sample_bit(evsel, DATA_SRC); |
ccf49bfc | 1018 | |
3b0a5daa KL |
1019 | if (opts->sample_phys_addr) |
1020 | perf_evsel__set_sample_bit(evsel, PHYS_ADDR); | |
1021 | ||
509051ea | 1022 | if (opts->no_buffering) { |
0f82ebc4 ACM |
1023 | attr->watermark = 0; |
1024 | attr->wakeup_events = 1; | |
1025 | } | |
6ff1ce76 | 1026 | if (opts->branch_stack && !evsel->no_aux_samples) { |
7be5ebe8 | 1027 | perf_evsel__set_sample_bit(evsel, BRANCH_STACK); |
bdfebd84 RAV |
1028 | attr->branch_sample_type = opts->branch_stack; |
1029 | } | |
0f82ebc4 | 1030 | |
05484298 | 1031 | if (opts->sample_weight) |
1e7ed5ec | 1032 | perf_evsel__set_sample_bit(evsel, WEIGHT); |
05484298 | 1033 | |
62e503b7 | 1034 | attr->task = track; |
5c5e854b | 1035 | attr->mmap = track; |
a5a5ba72 | 1036 | attr->mmap2 = track && !perf_missing_features.mmap2; |
5c5e854b | 1037 | attr->comm = track; |
0f82ebc4 | 1038 | |
f3b3614a HB |
1039 | if (opts->record_namespaces) |
1040 | attr->namespaces = track; | |
1041 | ||
b757bb09 AH |
1042 | if (opts->record_switch_events) |
1043 | attr->context_switch = track; | |
1044 | ||
475eeab9 | 1045 | if (opts->sample_transaction) |
1e7ed5ec | 1046 | perf_evsel__set_sample_bit(evsel, TRANSACTION); |
475eeab9 | 1047 | |
85c273d2 AK |
1048 | if (opts->running_time) { |
1049 | evsel->attr.read_format |= | |
1050 | PERF_FORMAT_TOTAL_TIME_ENABLED | | |
1051 | PERF_FORMAT_TOTAL_TIME_RUNNING; | |
1052 | } | |
1053 | ||
774cb499 JO |
1054 | /* |
1055 | * XXX see the function comment above | |
1056 | * | |
1057 | * Disabling only independent events or group leaders, | |
1058 | * keeping group members enabled. | |
1059 | */ | |
823254ed | 1060 | if (perf_evsel__is_group_leader(evsel)) |
774cb499 JO |
1061 | attr->disabled = 1; |
1062 | ||
1063 | /* | |
1064 | * Setting enable_on_exec for independent events and | |
1065 | * group leaders for traced executed by perf. | |
1066 | */ | |
6619a53e AK |
1067 | if (target__none(&opts->target) && perf_evsel__is_group_leader(evsel) && |
1068 | !opts->initial_delay) | |
0f82ebc4 | 1069 | attr->enable_on_exec = 1; |
2afd2bcf AH |
1070 | |
1071 | if (evsel->immediate) { | |
1072 | attr->disabled = 0; | |
1073 | attr->enable_on_exec = 0; | |
1074 | } | |
814c8c38 PZ |
1075 | |
1076 | clockid = opts->clockid; | |
1077 | if (opts->use_clockid) { | |
1078 | attr->use_clockid = 1; | |
1079 | attr->clockid = opts->clockid; | |
1080 | } | |
930a2e29 | 1081 | |
7f94af7a JO |
1082 | if (evsel->precise_max) |
1083 | perf_event_attr__set_max_precise_ip(attr); | |
1084 | ||
85723885 JO |
1085 | if (opts->all_user) { |
1086 | attr->exclude_kernel = 1; | |
1087 | attr->exclude_user = 0; | |
1088 | } | |
1089 | ||
1090 | if (opts->all_kernel) { | |
1091 | attr->exclude_kernel = 0; | |
1092 | attr->exclude_user = 1; | |
1093 | } | |
1094 | ||
fb50c09e | 1095 | if (evsel->own_cpus || evsel->unit) |
4ab8455f JO |
1096 | evsel->attr.read_format |= PERF_FORMAT_ID; |
1097 | ||
930a2e29 JO |
1098 | /* |
1099 | * Apply event specific term settings, | |
1100 | * it overloads any global configuration. | |
1101 | */ | |
0d3dcc0e | 1102 | apply_config_terms(evsel, opts, track); |
a359c17a JO |
1103 | |
1104 | evsel->ignore_missing_thread = opts->ignore_missing_thread; | |
f290aa1f JO |
1105 | |
1106 | /* The --period option takes the precedence. */ | |
1107 | if (opts->period_set) { | |
1108 | if (opts->period) | |
1109 | perf_evsel__set_sample_bit(evsel, PERIOD); | |
1110 | else | |
1111 | perf_evsel__reset_sample_bit(evsel, PERIOD); | |
1112 | } | |
95035c5e KL |
1113 | |
1114 | /* | |
1115 | * For initial_delay, a dummy event is added implicitly. | |
1116 | * The software event will trigger -EOPNOTSUPP error out, | |
1117 | * if BRANCH_STACK bit is set. | |
1118 | */ | |
1119 | if (opts->initial_delay && is_dummy_event(evsel)) | |
1120 | perf_evsel__reset_sample_bit(evsel, BRANCH_STACK); | |
0f82ebc4 ACM |
1121 | } |
1122 | ||
8885846f | 1123 | static int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads) |
69aad6f1 | 1124 | { |
bf8e8f4b AH |
1125 | if (evsel->system_wide) |
1126 | nthreads = 1; | |
1127 | ||
69aad6f1 | 1128 | evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int)); |
4af4c955 DA |
1129 | |
1130 | if (evsel->fd) { | |
18ef15c6 | 1131 | int cpu, thread; |
4af4c955 DA |
1132 | for (cpu = 0; cpu < ncpus; cpu++) { |
1133 | for (thread = 0; thread < nthreads; thread++) { | |
1134 | FD(evsel, cpu, thread) = -1; | |
1135 | } | |
1136 | } | |
1137 | } | |
1138 | ||
69aad6f1 ACM |
1139 | return evsel->fd != NULL ? 0 : -ENOMEM; |
1140 | } | |
1141 | ||
475fb533 | 1142 | static int perf_evsel__run_ioctl(struct perf_evsel *evsel, |
e2407bef | 1143 | int ioc, void *arg) |
745cefc5 ACM |
1144 | { |
1145 | int cpu, thread; | |
1146 | ||
475fb533 AK |
1147 | for (cpu = 0; cpu < xyarray__max_x(evsel->fd); cpu++) { |
1148 | for (thread = 0; thread < xyarray__max_y(evsel->fd); thread++) { | |
745cefc5 | 1149 | int fd = FD(evsel, cpu, thread), |
e2407bef | 1150 | err = ioctl(fd, ioc, arg); |
745cefc5 ACM |
1151 | |
1152 | if (err) | |
1153 | return err; | |
1154 | } | |
1155 | } | |
1156 | ||
1157 | return 0; | |
1158 | } | |
1159 | ||
475fb533 | 1160 | int perf_evsel__apply_filter(struct perf_evsel *evsel, const char *filter) |
e2407bef | 1161 | { |
475fb533 | 1162 | return perf_evsel__run_ioctl(evsel, |
e2407bef AK |
1163 | PERF_EVENT_IOC_SET_FILTER, |
1164 | (void *)filter); | |
1165 | } | |
1166 | ||
12467ae4 ACM |
1167 | int perf_evsel__set_filter(struct perf_evsel *evsel, const char *filter) |
1168 | { | |
1169 | char *new_filter = strdup(filter); | |
1170 | ||
1171 | if (new_filter != NULL) { | |
1172 | free(evsel->filter); | |
1173 | evsel->filter = new_filter; | |
1174 | return 0; | |
1175 | } | |
1176 | ||
1177 | return -1; | |
1178 | } | |
1179 | ||
3541c034 MP |
1180 | static int perf_evsel__append_filter(struct perf_evsel *evsel, |
1181 | const char *fmt, const char *filter) | |
64ec84f5 ACM |
1182 | { |
1183 | char *new_filter; | |
1184 | ||
1185 | if (evsel->filter == NULL) | |
1186 | return perf_evsel__set_filter(evsel, filter); | |
1187 | ||
b15d0a4c | 1188 | if (asprintf(&new_filter, fmt, evsel->filter, filter) > 0) { |
64ec84f5 ACM |
1189 | free(evsel->filter); |
1190 | evsel->filter = new_filter; | |
1191 | return 0; | |
1192 | } | |
1193 | ||
1194 | return -1; | |
1195 | } | |
1196 | ||
3541c034 MP |
1197 | int perf_evsel__append_tp_filter(struct perf_evsel *evsel, const char *filter) |
1198 | { | |
1199 | return perf_evsel__append_filter(evsel, "(%s) && (%s)", filter); | |
1200 | } | |
1201 | ||
1e857484 MP |
1202 | int perf_evsel__append_addr_filter(struct perf_evsel *evsel, const char *filter) |
1203 | { | |
1204 | return perf_evsel__append_filter(evsel, "%s,%s", filter); | |
1205 | } | |
1206 | ||
5cd95fc3 | 1207 | int perf_evsel__enable(struct perf_evsel *evsel) |
e2407bef | 1208 | { |
b7e8452b ACM |
1209 | int err = perf_evsel__run_ioctl(evsel, PERF_EVENT_IOC_ENABLE, 0); |
1210 | ||
1211 | if (!err) | |
1212 | evsel->disabled = false; | |
1213 | ||
1214 | return err; | |
e2407bef AK |
1215 | } |
1216 | ||
e98a4cbb JO |
1217 | int perf_evsel__disable(struct perf_evsel *evsel) |
1218 | { | |
b7e8452b ACM |
1219 | int err = perf_evsel__run_ioctl(evsel, PERF_EVENT_IOC_DISABLE, 0); |
1220 | /* | |
1221 | * We mark it disabled here so that tools that disable a event can | |
1222 | * ignore events after they disable it. I.e. the ring buffer may have | |
1223 | * already a few more events queued up before the kernel got the stop | |
1224 | * request. | |
1225 | */ | |
1226 | if (!err) | |
1227 | evsel->disabled = true; | |
1228 | ||
1229 | return err; | |
e98a4cbb JO |
1230 | } |
1231 | ||
70db7533 ACM |
1232 | int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads) |
1233 | { | |
8d9cbd8f VG |
1234 | if (ncpus == 0 || nthreads == 0) |
1235 | return 0; | |
1236 | ||
bf8e8f4b AH |
1237 | if (evsel->system_wide) |
1238 | nthreads = 1; | |
1239 | ||
a91e5431 ACM |
1240 | evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id)); |
1241 | if (evsel->sample_id == NULL) | |
1242 | return -ENOMEM; | |
1243 | ||
1244 | evsel->id = zalloc(ncpus * nthreads * sizeof(u64)); | |
1245 | if (evsel->id == NULL) { | |
1246 | xyarray__delete(evsel->sample_id); | |
1247 | evsel->sample_id = NULL; | |
1248 | return -ENOMEM; | |
1249 | } | |
1250 | ||
1251 | return 0; | |
70db7533 ACM |
1252 | } |
1253 | ||
8885846f | 1254 | static void perf_evsel__free_fd(struct perf_evsel *evsel) |
69aad6f1 ACM |
1255 | { |
1256 | xyarray__delete(evsel->fd); | |
1257 | evsel->fd = NULL; | |
1258 | } | |
1259 | ||
8885846f | 1260 | static void perf_evsel__free_id(struct perf_evsel *evsel) |
70db7533 | 1261 | { |
a91e5431 ACM |
1262 | xyarray__delete(evsel->sample_id); |
1263 | evsel->sample_id = NULL; | |
04662523 | 1264 | zfree(&evsel->id); |
70db7533 ACM |
1265 | } |
1266 | ||
930a2e29 JO |
1267 | static void perf_evsel__free_config_terms(struct perf_evsel *evsel) |
1268 | { | |
1269 | struct perf_evsel_config_term *term, *h; | |
1270 | ||
1271 | list_for_each_entry_safe(term, h, &evsel->config_terms, list) { | |
1272 | list_del(&term->list); | |
1273 | free(term); | |
1274 | } | |
1275 | } | |
1276 | ||
475fb533 | 1277 | void perf_evsel__close_fd(struct perf_evsel *evsel) |
c52b12ed ACM |
1278 | { |
1279 | int cpu, thread; | |
1280 | ||
475fb533 AK |
1281 | for (cpu = 0; cpu < xyarray__max_x(evsel->fd); cpu++) |
1282 | for (thread = 0; thread < xyarray__max_y(evsel->fd); ++thread) { | |
c52b12ed ACM |
1283 | close(FD(evsel, cpu, thread)); |
1284 | FD(evsel, cpu, thread) = -1; | |
1285 | } | |
1286 | } | |
1287 | ||
ef1d1af2 | 1288 | void perf_evsel__exit(struct perf_evsel *evsel) |
69aad6f1 ACM |
1289 | { |
1290 | assert(list_empty(&evsel->node)); | |
d49e4695 | 1291 | assert(evsel->evlist == NULL); |
736b05a0 NK |
1292 | perf_evsel__free_fd(evsel); |
1293 | perf_evsel__free_id(evsel); | |
930a2e29 | 1294 | perf_evsel__free_config_terms(evsel); |
a53b6460 | 1295 | cgroup__put(evsel->cgrp); |
f30a79b0 | 1296 | cpu_map__put(evsel->cpus); |
fce4d296 | 1297 | cpu_map__put(evsel->own_cpus); |
578e91ec | 1298 | thread_map__put(evsel->threads); |
597e48c1 | 1299 | zfree(&evsel->group_name); |
597e48c1 | 1300 | zfree(&evsel->name); |
ce8ccff5 | 1301 | perf_evsel__object.fini(evsel); |
ef1d1af2 ACM |
1302 | } |
1303 | ||
1304 | void perf_evsel__delete(struct perf_evsel *evsel) | |
1305 | { | |
1306 | perf_evsel__exit(evsel); | |
69aad6f1 ACM |
1307 | free(evsel); |
1308 | } | |
c52b12ed | 1309 | |
a6fa0038 | 1310 | void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu, int thread, |
857a94a2 | 1311 | struct perf_counts_values *count) |
c7a79c47 SE |
1312 | { |
1313 | struct perf_counts_values tmp; | |
1314 | ||
1315 | if (!evsel->prev_raw_counts) | |
1316 | return; | |
1317 | ||
1318 | if (cpu == -1) { | |
1319 | tmp = evsel->prev_raw_counts->aggr; | |
1320 | evsel->prev_raw_counts->aggr = *count; | |
1321 | } else { | |
a6fa0038 JO |
1322 | tmp = *perf_counts(evsel->prev_raw_counts, cpu, thread); |
1323 | *perf_counts(evsel->prev_raw_counts, cpu, thread) = *count; | |
c7a79c47 SE |
1324 | } |
1325 | ||
1326 | count->val = count->val - tmp.val; | |
1327 | count->ena = count->ena - tmp.ena; | |
1328 | count->run = count->run - tmp.run; | |
1329 | } | |
1330 | ||
13112bbf JO |
1331 | void perf_counts_values__scale(struct perf_counts_values *count, |
1332 | bool scale, s8 *pscaled) | |
1333 | { | |
1334 | s8 scaled = 0; | |
1335 | ||
1336 | if (scale) { | |
1337 | if (count->run == 0) { | |
1338 | scaled = -1; | |
1339 | count->val = 0; | |
1340 | } else if (count->run < count->ena) { | |
1341 | scaled = 1; | |
1342 | count->val = (u64)((double) count->val * count->ena / count->run + 0.5); | |
1343 | } | |
1344 | } else | |
1345 | count->ena = count->run = 0; | |
1346 | ||
1347 | if (pscaled) | |
1348 | *pscaled = scaled; | |
1349 | } | |
1350 | ||
de63403b JO |
1351 | static int perf_evsel__read_size(struct perf_evsel *evsel) |
1352 | { | |
1353 | u64 read_format = evsel->attr.read_format; | |
1354 | int entry = sizeof(u64); /* value */ | |
1355 | int size = 0; | |
1356 | int nr = 1; | |
1357 | ||
1358 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) | |
1359 | size += sizeof(u64); | |
1360 | ||
1361 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) | |
1362 | size += sizeof(u64); | |
1363 | ||
1364 | if (read_format & PERF_FORMAT_ID) | |
1365 | entry += sizeof(u64); | |
1366 | ||
1367 | if (read_format & PERF_FORMAT_GROUP) { | |
1368 | nr = evsel->nr_members; | |
1369 | size += sizeof(u64); | |
1370 | } | |
1371 | ||
1372 | size += entry * nr; | |
1373 | return size; | |
1374 | } | |
1375 | ||
f99f4719 JO |
1376 | int perf_evsel__read(struct perf_evsel *evsel, int cpu, int thread, |
1377 | struct perf_counts_values *count) | |
1378 | { | |
de63403b JO |
1379 | size_t size = perf_evsel__read_size(evsel); |
1380 | ||
f99f4719 JO |
1381 | memset(count, 0, sizeof(*count)); |
1382 | ||
1383 | if (FD(evsel, cpu, thread) < 0) | |
1384 | return -EINVAL; | |
1385 | ||
de63403b | 1386 | if (readn(FD(evsel, cpu, thread), count->values, size) <= 0) |
f99f4719 JO |
1387 | return -errno; |
1388 | ||
1389 | return 0; | |
1390 | } | |
1391 | ||
f7794d52 JO |
1392 | static int |
1393 | perf_evsel__read_one(struct perf_evsel *evsel, int cpu, int thread) | |
1394 | { | |
1395 | struct perf_counts_values *count = perf_counts(evsel->counts, cpu, thread); | |
1396 | ||
1397 | return perf_evsel__read(evsel, cpu, thread, count); | |
1398 | } | |
1399 | ||
1400 | static void | |
1401 | perf_evsel__set_count(struct perf_evsel *counter, int cpu, int thread, | |
1402 | u64 val, u64 ena, u64 run) | |
1403 | { | |
1404 | struct perf_counts_values *count; | |
1405 | ||
1406 | count = perf_counts(counter->counts, cpu, thread); | |
1407 | ||
1408 | count->val = val; | |
1409 | count->ena = ena; | |
1410 | count->run = run; | |
82bf311e | 1411 | count->loaded = true; |
f7794d52 JO |
1412 | } |
1413 | ||
1414 | static int | |
1415 | perf_evsel__process_group_data(struct perf_evsel *leader, | |
1416 | int cpu, int thread, u64 *data) | |
1417 | { | |
1418 | u64 read_format = leader->attr.read_format; | |
1419 | struct sample_read_value *v; | |
1420 | u64 nr, ena = 0, run = 0, i; | |
1421 | ||
1422 | nr = *data++; | |
1423 | ||
1424 | if (nr != (u64) leader->nr_members) | |
1425 | return -EINVAL; | |
1426 | ||
1427 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) | |
1428 | ena = *data++; | |
1429 | ||
1430 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) | |
1431 | run = *data++; | |
1432 | ||
1433 | v = (struct sample_read_value *) data; | |
1434 | ||
1435 | perf_evsel__set_count(leader, cpu, thread, | |
1436 | v[0].value, ena, run); | |
1437 | ||
1438 | for (i = 1; i < nr; i++) { | |
1439 | struct perf_evsel *counter; | |
1440 | ||
1441 | counter = perf_evlist__id2evsel(leader->evlist, v[i].id); | |
1442 | if (!counter) | |
1443 | return -EINVAL; | |
1444 | ||
1445 | perf_evsel__set_count(counter, cpu, thread, | |
1446 | v[i].value, ena, run); | |
1447 | } | |
1448 | ||
1449 | return 0; | |
1450 | } | |
1451 | ||
1452 | static int | |
1453 | perf_evsel__read_group(struct perf_evsel *leader, int cpu, int thread) | |
1454 | { | |
82806c3a | 1455 | struct perf_stat_evsel *ps = leader->stats; |
f7794d52 JO |
1456 | u64 read_format = leader->attr.read_format; |
1457 | int size = perf_evsel__read_size(leader); | |
1458 | u64 *data = ps->group_data; | |
1459 | ||
1460 | if (!(read_format & PERF_FORMAT_ID)) | |
1461 | return -EINVAL; | |
1462 | ||
1463 | if (!perf_evsel__is_group_leader(leader)) | |
1464 | return -EINVAL; | |
1465 | ||
1466 | if (!data) { | |
1467 | data = zalloc(size); | |
1468 | if (!data) | |
1469 | return -ENOMEM; | |
1470 | ||
1471 | ps->group_data = data; | |
1472 | } | |
1473 | ||
1474 | if (FD(leader, cpu, thread) < 0) | |
1475 | return -EINVAL; | |
1476 | ||
1477 | if (readn(FD(leader, cpu, thread), data, size) <= 0) | |
1478 | return -errno; | |
1479 | ||
1480 | return perf_evsel__process_group_data(leader, cpu, thread, data); | |
1481 | } | |
1482 | ||
1483 | int perf_evsel__read_counter(struct perf_evsel *evsel, int cpu, int thread) | |
1484 | { | |
1485 | u64 read_format = evsel->attr.read_format; | |
1486 | ||
1487 | if (read_format & PERF_FORMAT_GROUP) | |
1488 | return perf_evsel__read_group(evsel, cpu, thread); | |
1489 | else | |
1490 | return perf_evsel__read_one(evsel, cpu, thread); | |
1491 | } | |
1492 | ||
c52b12ed ACM |
1493 | int __perf_evsel__read_on_cpu(struct perf_evsel *evsel, |
1494 | int cpu, int thread, bool scale) | |
1495 | { | |
1496 | struct perf_counts_values count; | |
1497 | size_t nv = scale ? 3 : 1; | |
1498 | ||
1499 | if (FD(evsel, cpu, thread) < 0) | |
1500 | return -EINVAL; | |
1501 | ||
a6fa0038 | 1502 | if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1, thread + 1) < 0) |
4eed11d5 ACM |
1503 | return -ENOMEM; |
1504 | ||
db49a717 | 1505 | if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0) |
c52b12ed ACM |
1506 | return -errno; |
1507 | ||
a6fa0038 | 1508 | perf_evsel__compute_deltas(evsel, cpu, thread, &count); |
13112bbf | 1509 | perf_counts_values__scale(&count, scale, NULL); |
a6fa0038 | 1510 | *perf_counts(evsel->counts, cpu, thread) = count; |
c52b12ed ACM |
1511 | return 0; |
1512 | } | |
1513 | ||
6a4bb04c JO |
1514 | static int get_group_fd(struct perf_evsel *evsel, int cpu, int thread) |
1515 | { | |
1516 | struct perf_evsel *leader = evsel->leader; | |
1517 | int fd; | |
1518 | ||
823254ed | 1519 | if (perf_evsel__is_group_leader(evsel)) |
6a4bb04c JO |
1520 | return -1; |
1521 | ||
1522 | /* | |
1523 | * Leader must be already processed/open, | |
1524 | * if not it's a bug. | |
1525 | */ | |
1526 | BUG_ON(!leader->fd); | |
1527 | ||
1528 | fd = FD(leader, cpu, thread); | |
1529 | BUG_ON(fd == -1); | |
1530 | ||
1531 | return fd; | |
1532 | } | |
1533 | ||
2c5e8c52 PZ |
1534 | struct bit_names { |
1535 | int bit; | |
1536 | const char *name; | |
1537 | }; | |
1538 | ||
1539 | static void __p_bits(char *buf, size_t size, u64 value, struct bit_names *bits) | |
1540 | { | |
1541 | bool first_bit = true; | |
1542 | int i = 0; | |
1543 | ||
1544 | do { | |
1545 | if (value & bits[i].bit) { | |
1546 | buf += scnprintf(buf, size, "%s%s", first_bit ? "" : "|", bits[i].name); | |
1547 | first_bit = false; | |
1548 | } | |
1549 | } while (bits[++i].name != NULL); | |
1550 | } | |
1551 | ||
1552 | static void __p_sample_type(char *buf, size_t size, u64 value) | |
1553 | { | |
1554 | #define bit_name(n) { PERF_SAMPLE_##n, #n } | |
1555 | struct bit_names bits[] = { | |
1556 | bit_name(IP), bit_name(TID), bit_name(TIME), bit_name(ADDR), | |
1557 | bit_name(READ), bit_name(CALLCHAIN), bit_name(ID), bit_name(CPU), | |
1558 | bit_name(PERIOD), bit_name(STREAM_ID), bit_name(RAW), | |
1559 | bit_name(BRANCH_STACK), bit_name(REGS_USER), bit_name(STACK_USER), | |
84422592 | 1560 | bit_name(IDENTIFIER), bit_name(REGS_INTR), bit_name(DATA_SRC), |
3b0a5daa | 1561 | bit_name(WEIGHT), bit_name(PHYS_ADDR), |
2c5e8c52 PZ |
1562 | { .name = NULL, } |
1563 | }; | |
1564 | #undef bit_name | |
1565 | __p_bits(buf, size, value, bits); | |
1566 | } | |
1567 | ||
a213b92e ACM |
1568 | static void __p_branch_sample_type(char *buf, size_t size, u64 value) |
1569 | { | |
1570 | #define bit_name(n) { PERF_SAMPLE_BRANCH_##n, #n } | |
1571 | struct bit_names bits[] = { | |
1572 | bit_name(USER), bit_name(KERNEL), bit_name(HV), bit_name(ANY), | |
1573 | bit_name(ANY_CALL), bit_name(ANY_RETURN), bit_name(IND_CALL), | |
1574 | bit_name(ABORT_TX), bit_name(IN_TX), bit_name(NO_TX), | |
1575 | bit_name(COND), bit_name(CALL_STACK), bit_name(IND_JUMP), | |
1576 | bit_name(CALL), bit_name(NO_FLAGS), bit_name(NO_CYCLES), | |
1577 | { .name = NULL, } | |
1578 | }; | |
1579 | #undef bit_name | |
1580 | __p_bits(buf, size, value, bits); | |
1581 | } | |
1582 | ||
2c5e8c52 PZ |
1583 | static void __p_read_format(char *buf, size_t size, u64 value) |
1584 | { | |
1585 | #define bit_name(n) { PERF_FORMAT_##n, #n } | |
1586 | struct bit_names bits[] = { | |
1587 | bit_name(TOTAL_TIME_ENABLED), bit_name(TOTAL_TIME_RUNNING), | |
1588 | bit_name(ID), bit_name(GROUP), | |
1589 | { .name = NULL, } | |
1590 | }; | |
1591 | #undef bit_name | |
1592 | __p_bits(buf, size, value, bits); | |
1593 | } | |
1594 | ||
1595 | #define BUF_SIZE 1024 | |
1596 | ||
7310aed7 | 1597 | #define p_hex(val) snprintf(buf, BUF_SIZE, "%#"PRIx64, (uint64_t)(val)) |
2c5e8c52 PZ |
1598 | #define p_unsigned(val) snprintf(buf, BUF_SIZE, "%"PRIu64, (uint64_t)(val)) |
1599 | #define p_signed(val) snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)(val)) | |
1600 | #define p_sample_type(val) __p_sample_type(buf, BUF_SIZE, val) | |
a213b92e | 1601 | #define p_branch_sample_type(val) __p_branch_sample_type(buf, BUF_SIZE, val) |
2c5e8c52 PZ |
1602 | #define p_read_format(val) __p_read_format(buf, BUF_SIZE, val) |
1603 | ||
1604 | #define PRINT_ATTRn(_n, _f, _p) \ | |
1605 | do { \ | |
1606 | if (attr->_f) { \ | |
1607 | _p(attr->_f); \ | |
1608 | ret += attr__fprintf(fp, _n, buf, priv);\ | |
1609 | } \ | |
1610 | } while (0) | |
1611 | ||
1612 | #define PRINT_ATTRf(_f, _p) PRINT_ATTRn(#_f, _f, _p) | |
1613 | ||
1614 | int perf_event_attr__fprintf(FILE *fp, struct perf_event_attr *attr, | |
1615 | attr__fprintf_f attr__fprintf, void *priv) | |
1616 | { | |
1617 | char buf[BUF_SIZE]; | |
1618 | int ret = 0; | |
1619 | ||
1620 | PRINT_ATTRf(type, p_unsigned); | |
1621 | PRINT_ATTRf(size, p_unsigned); | |
1622 | PRINT_ATTRf(config, p_hex); | |
1623 | PRINT_ATTRn("{ sample_period, sample_freq }", sample_period, p_unsigned); | |
1624 | PRINT_ATTRf(sample_type, p_sample_type); | |
1625 | PRINT_ATTRf(read_format, p_read_format); | |
1626 | ||
1627 | PRINT_ATTRf(disabled, p_unsigned); | |
1628 | PRINT_ATTRf(inherit, p_unsigned); | |
1629 | PRINT_ATTRf(pinned, p_unsigned); | |
1630 | PRINT_ATTRf(exclusive, p_unsigned); | |
1631 | PRINT_ATTRf(exclude_user, p_unsigned); | |
1632 | PRINT_ATTRf(exclude_kernel, p_unsigned); | |
1633 | PRINT_ATTRf(exclude_hv, p_unsigned); | |
1634 | PRINT_ATTRf(exclude_idle, p_unsigned); | |
1635 | PRINT_ATTRf(mmap, p_unsigned); | |
1636 | PRINT_ATTRf(comm, p_unsigned); | |
1637 | PRINT_ATTRf(freq, p_unsigned); | |
1638 | PRINT_ATTRf(inherit_stat, p_unsigned); | |
1639 | PRINT_ATTRf(enable_on_exec, p_unsigned); | |
1640 | PRINT_ATTRf(task, p_unsigned); | |
1641 | PRINT_ATTRf(watermark, p_unsigned); | |
1642 | PRINT_ATTRf(precise_ip, p_unsigned); | |
1643 | PRINT_ATTRf(mmap_data, p_unsigned); | |
1644 | PRINT_ATTRf(sample_id_all, p_unsigned); | |
1645 | PRINT_ATTRf(exclude_host, p_unsigned); | |
1646 | PRINT_ATTRf(exclude_guest, p_unsigned); | |
1647 | PRINT_ATTRf(exclude_callchain_kernel, p_unsigned); | |
1648 | PRINT_ATTRf(exclude_callchain_user, p_unsigned); | |
1649 | PRINT_ATTRf(mmap2, p_unsigned); | |
1650 | PRINT_ATTRf(comm_exec, p_unsigned); | |
1651 | PRINT_ATTRf(use_clockid, p_unsigned); | |
0286039f | 1652 | PRINT_ATTRf(context_switch, p_unsigned); |
0a241ef4 | 1653 | PRINT_ATTRf(write_backward, p_unsigned); |
db9fc765 | 1654 | PRINT_ATTRf(namespaces, p_unsigned); |
2c5e8c52 PZ |
1655 | |
1656 | PRINT_ATTRn("{ wakeup_events, wakeup_watermark }", wakeup_events, p_unsigned); | |
1657 | PRINT_ATTRf(bp_type, p_unsigned); | |
1658 | PRINT_ATTRn("{ bp_addr, config1 }", bp_addr, p_hex); | |
1659 | PRINT_ATTRn("{ bp_len, config2 }", bp_len, p_hex); | |
a213b92e | 1660 | PRINT_ATTRf(branch_sample_type, p_branch_sample_type); |
2c5e8c52 PZ |
1661 | PRINT_ATTRf(sample_regs_user, p_hex); |
1662 | PRINT_ATTRf(sample_stack_user, p_unsigned); | |
1663 | PRINT_ATTRf(clockid, p_signed); | |
1664 | PRINT_ATTRf(sample_regs_intr, p_hex); | |
70d73de4 | 1665 | PRINT_ATTRf(aux_watermark, p_unsigned); |
792d48b4 | 1666 | PRINT_ATTRf(sample_max_stack, p_unsigned); |
e3e1a54f AH |
1667 | |
1668 | return ret; | |
1669 | } | |
1670 | ||
2c5e8c52 | 1671 | static int __open_attr__fprintf(FILE *fp, const char *name, const char *val, |
0353631a | 1672 | void *priv __maybe_unused) |
2c5e8c52 PZ |
1673 | { |
1674 | return fprintf(fp, " %-32s %s\n", name, val); | |
1675 | } | |
1676 | ||
ca800068 MZ |
1677 | static void perf_evsel__remove_fd(struct perf_evsel *pos, |
1678 | int nr_cpus, int nr_threads, | |
1679 | int thread_idx) | |
1680 | { | |
1681 | for (int cpu = 0; cpu < nr_cpus; cpu++) | |
1682 | for (int thread = thread_idx; thread < nr_threads - 1; thread++) | |
1683 | FD(pos, cpu, thread) = FD(pos, cpu, thread + 1); | |
1684 | } | |
1685 | ||
1686 | static int update_fds(struct perf_evsel *evsel, | |
1687 | int nr_cpus, int cpu_idx, | |
1688 | int nr_threads, int thread_idx) | |
1689 | { | |
1690 | struct perf_evsel *pos; | |
1691 | ||
1692 | if (cpu_idx >= nr_cpus || thread_idx >= nr_threads) | |
1693 | return -EINVAL; | |
1694 | ||
1695 | evlist__for_each_entry(evsel->evlist, pos) { | |
1696 | nr_cpus = pos != evsel ? nr_cpus : cpu_idx; | |
1697 | ||
1698 | perf_evsel__remove_fd(pos, nr_cpus, nr_threads, thread_idx); | |
1699 | ||
1700 | /* | |
1701 | * Since fds for next evsel has not been created, | |
1702 | * there is no need to iterate whole event list. | |
1703 | */ | |
1704 | if (pos == evsel) | |
1705 | break; | |
1706 | } | |
1707 | return 0; | |
1708 | } | |
1709 | ||
a359c17a | 1710 | static bool ignore_missing_thread(struct perf_evsel *evsel, |
ca800068 | 1711 | int nr_cpus, int cpu, |
a359c17a JO |
1712 | struct thread_map *threads, |
1713 | int thread, int err) | |
1714 | { | |
ca800068 MZ |
1715 | pid_t ignore_pid = thread_map__pid(threads, thread); |
1716 | ||
a359c17a JO |
1717 | if (!evsel->ignore_missing_thread) |
1718 | return false; | |
1719 | ||
1720 | /* The system wide setup does not work with threads. */ | |
1721 | if (evsel->system_wide) | |
1722 | return false; | |
1723 | ||
1724 | /* The -ESRCH is perf event syscall errno for pid's not found. */ | |
1725 | if (err != -ESRCH) | |
1726 | return false; | |
1727 | ||
1728 | /* If there's only one thread, let it fail. */ | |
1729 | if (threads->nr == 1) | |
1730 | return false; | |
1731 | ||
ca800068 MZ |
1732 | /* |
1733 | * We should remove fd for missing_thread first | |
1734 | * because thread_map__remove() will decrease threads->nr. | |
1735 | */ | |
1736 | if (update_fds(evsel, nr_cpus, cpu, threads->nr, thread)) | |
1737 | return false; | |
1738 | ||
a359c17a JO |
1739 | if (thread_map__remove(threads, thread)) |
1740 | return false; | |
1741 | ||
1742 | pr_warning("WARNING: Ignored open failure for pid %d\n", | |
ca800068 | 1743 | ignore_pid); |
a359c17a JO |
1744 | return true; |
1745 | } | |
1746 | ||
c24ae6d9 ACM |
1747 | int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus, |
1748 | struct thread_map *threads) | |
48290609 | 1749 | { |
bf8e8f4b | 1750 | int cpu, thread, nthreads; |
57480d2c | 1751 | unsigned long flags = PERF_FLAG_FD_CLOEXEC; |
727ab04e | 1752 | int pid = -1, err; |
bec19672 | 1753 | enum { NO_CHANGE, SET_TO_MAX, INCREASED_MAX } set_rlimit = NO_CHANGE; |
48290609 | 1754 | |
32a951b4 ACM |
1755 | if (perf_missing_features.write_backward && evsel->attr.write_backward) |
1756 | return -EINVAL; | |
1757 | ||
c24ae6d9 ACM |
1758 | if (cpus == NULL) { |
1759 | static struct cpu_map *empty_cpu_map; | |
1760 | ||
1761 | if (empty_cpu_map == NULL) { | |
1762 | empty_cpu_map = cpu_map__dummy_new(); | |
1763 | if (empty_cpu_map == NULL) | |
1764 | return -ENOMEM; | |
1765 | } | |
1766 | ||
1767 | cpus = empty_cpu_map; | |
1768 | } | |
1769 | ||
1770 | if (threads == NULL) { | |
1771 | static struct thread_map *empty_thread_map; | |
1772 | ||
1773 | if (empty_thread_map == NULL) { | |
1774 | empty_thread_map = thread_map__new_by_tid(-1); | |
1775 | if (empty_thread_map == NULL) | |
1776 | return -ENOMEM; | |
1777 | } | |
1778 | ||
1779 | threads = empty_thread_map; | |
1780 | } | |
1781 | ||
bf8e8f4b AH |
1782 | if (evsel->system_wide) |
1783 | nthreads = 1; | |
1784 | else | |
1785 | nthreads = threads->nr; | |
1786 | ||
0252208e | 1787 | if (evsel->fd == NULL && |
bf8e8f4b | 1788 | perf_evsel__alloc_fd(evsel, cpus->nr, nthreads) < 0) |
727ab04e | 1789 | return -ENOMEM; |
4eed11d5 | 1790 | |
023695d9 | 1791 | if (evsel->cgrp) { |
57480d2c | 1792 | flags |= PERF_FLAG_PID_CGROUP; |
023695d9 SE |
1793 | pid = evsel->cgrp->fd; |
1794 | } | |
1795 | ||
594ac61a | 1796 | fallback_missing_features: |
814c8c38 PZ |
1797 | if (perf_missing_features.clockid_wrong) |
1798 | evsel->attr.clockid = CLOCK_MONOTONIC; /* should always work */ | |
1799 | if (perf_missing_features.clockid) { | |
1800 | evsel->attr.use_clockid = 0; | |
1801 | evsel->attr.clockid = 0; | |
1802 | } | |
57480d2c YD |
1803 | if (perf_missing_features.cloexec) |
1804 | flags &= ~(unsigned long)PERF_FLAG_FD_CLOEXEC; | |
5c5e854b SE |
1805 | if (perf_missing_features.mmap2) |
1806 | evsel->attr.mmap2 = 0; | |
594ac61a ACM |
1807 | if (perf_missing_features.exclude_guest) |
1808 | evsel->attr.exclude_guest = evsel->attr.exclude_host = 0; | |
bd0f8895 AK |
1809 | if (perf_missing_features.lbr_flags) |
1810 | evsel->attr.branch_sample_type &= ~(PERF_SAMPLE_BRANCH_NO_FLAGS | | |
1811 | PERF_SAMPLE_BRANCH_NO_CYCLES); | |
82bf311e JO |
1812 | if (perf_missing_features.group_read && evsel->attr.inherit) |
1813 | evsel->attr.read_format &= ~(PERF_FORMAT_GROUP|PERF_FORMAT_ID); | |
594ac61a ACM |
1814 | retry_sample_id: |
1815 | if (perf_missing_features.sample_id_all) | |
1816 | evsel->attr.sample_id_all = 0; | |
1817 | ||
2c5e8c52 PZ |
1818 | if (verbose >= 2) { |
1819 | fprintf(stderr, "%.60s\n", graph_dotted_line); | |
1820 | fprintf(stderr, "perf_event_attr:\n"); | |
1821 | perf_event_attr__fprintf(stderr, &evsel->attr, __open_attr__fprintf, NULL); | |
1822 | fprintf(stderr, "%.60s\n", graph_dotted_line); | |
1823 | } | |
e3e1a54f | 1824 | |
86bd5e86 | 1825 | for (cpu = 0; cpu < cpus->nr; cpu++) { |
9d04f178 | 1826 | |
bf8e8f4b | 1827 | for (thread = 0; thread < nthreads; thread++) { |
83c2e4f3 | 1828 | int fd, group_fd; |
023695d9 | 1829 | |
bf8e8f4b | 1830 | if (!evsel->cgrp && !evsel->system_wide) |
e13798c7 | 1831 | pid = thread_map__pid(threads, thread); |
023695d9 | 1832 | |
6a4bb04c | 1833 | group_fd = get_group_fd(evsel, cpu, thread); |
bec19672 | 1834 | retry_open: |
7b4b82bc | 1835 | pr_debug2("sys_perf_event_open: pid %d cpu %d group_fd %d flags %#lx", |
e3e1a54f AH |
1836 | pid, cpus->map[cpu], group_fd, flags); |
1837 | ||
10213e2f JO |
1838 | test_attr__ready(); |
1839 | ||
83c2e4f3 JO |
1840 | fd = sys_perf_event_open(&evsel->attr, pid, cpus->map[cpu], |
1841 | group_fd, flags); | |
1842 | ||
1843 | FD(evsel, cpu, thread) = fd; | |
1844 | ||
1845 | if (fd < 0) { | |
727ab04e | 1846 | err = -errno; |
a359c17a | 1847 | |
ca800068 | 1848 | if (ignore_missing_thread(evsel, cpus->nr, cpu, threads, thread, err)) { |
a359c17a JO |
1849 | /* |
1850 | * We just removed 1 thread, so take a step | |
1851 | * back on thread index and lower the upper | |
1852 | * nthreads limit. | |
1853 | */ | |
1854 | nthreads--; | |
1855 | thread--; | |
1856 | ||
1857 | /* ... and pretend like nothing have happened. */ | |
1858 | err = 0; | |
1859 | continue; | |
1860 | } | |
1861 | ||
7b4b82bc | 1862 | pr_debug2("\nsys_perf_event_open failed, error %d\n", |
f852fd62 | 1863 | err); |
594ac61a | 1864 | goto try_fallback; |
727ab04e | 1865 | } |
1f45b1d4 | 1866 | |
83c2e4f3 | 1867 | pr_debug2(" = %d\n", fd); |
7b4b82bc | 1868 | |
1f45b1d4 | 1869 | if (evsel->bpf_fd >= 0) { |
83c2e4f3 | 1870 | int evt_fd = fd; |
1f45b1d4 WN |
1871 | int bpf_fd = evsel->bpf_fd; |
1872 | ||
1873 | err = ioctl(evt_fd, | |
1874 | PERF_EVENT_IOC_SET_BPF, | |
1875 | bpf_fd); | |
1876 | if (err && errno != EEXIST) { | |
1877 | pr_err("failed to attach bpf fd %d: %s\n", | |
1878 | bpf_fd, strerror(errno)); | |
1879 | err = -EINVAL; | |
1880 | goto out_close; | |
1881 | } | |
1882 | } | |
1883 | ||
bec19672 | 1884 | set_rlimit = NO_CHANGE; |
814c8c38 PZ |
1885 | |
1886 | /* | |
1887 | * If we succeeded but had to kill clockid, fail and | |
1888 | * have perf_evsel__open_strerror() print us a nice | |
1889 | * error. | |
1890 | */ | |
1891 | if (perf_missing_features.clockid || | |
1892 | perf_missing_features.clockid_wrong) { | |
1893 | err = -EINVAL; | |
1894 | goto out_close; | |
1895 | } | |
0252208e | 1896 | } |
48290609 ACM |
1897 | } |
1898 | ||
1899 | return 0; | |
1900 | ||
594ac61a | 1901 | try_fallback: |
bec19672 AK |
1902 | /* |
1903 | * perf stat needs between 5 and 22 fds per CPU. When we run out | |
1904 | * of them try to increase the limits. | |
1905 | */ | |
1906 | if (err == -EMFILE && set_rlimit < INCREASED_MAX) { | |
1907 | struct rlimit l; | |
1908 | int old_errno = errno; | |
1909 | ||
1910 | if (getrlimit(RLIMIT_NOFILE, &l) == 0) { | |
1911 | if (set_rlimit == NO_CHANGE) | |
1912 | l.rlim_cur = l.rlim_max; | |
1913 | else { | |
1914 | l.rlim_cur = l.rlim_max + 1000; | |
1915 | l.rlim_max = l.rlim_cur; | |
1916 | } | |
1917 | if (setrlimit(RLIMIT_NOFILE, &l) == 0) { | |
1918 | set_rlimit++; | |
1919 | errno = old_errno; | |
1920 | goto retry_open; | |
1921 | } | |
1922 | } | |
1923 | errno = old_errno; | |
1924 | } | |
1925 | ||
594ac61a ACM |
1926 | if (err != -EINVAL || cpu > 0 || thread > 0) |
1927 | goto out_close; | |
1928 | ||
814c8c38 PZ |
1929 | /* |
1930 | * Must probe features in the order they were added to the | |
1931 | * perf_event_attr interface. | |
1932 | */ | |
7da36e94 ACM |
1933 | if (!perf_missing_features.write_backward && evsel->attr.write_backward) { |
1934 | perf_missing_features.write_backward = true; | |
2b04e0f8 | 1935 | pr_debug2("switching off write_backward\n"); |
32a951b4 | 1936 | goto out_close; |
7da36e94 | 1937 | } else if (!perf_missing_features.clockid_wrong && evsel->attr.use_clockid) { |
814c8c38 | 1938 | perf_missing_features.clockid_wrong = true; |
2b04e0f8 | 1939 | pr_debug2("switching off clockid\n"); |
814c8c38 PZ |
1940 | goto fallback_missing_features; |
1941 | } else if (!perf_missing_features.clockid && evsel->attr.use_clockid) { | |
1942 | perf_missing_features.clockid = true; | |
2b04e0f8 | 1943 | pr_debug2("switching off use_clockid\n"); |
814c8c38 PZ |
1944 | goto fallback_missing_features; |
1945 | } else if (!perf_missing_features.cloexec && (flags & PERF_FLAG_FD_CLOEXEC)) { | |
57480d2c | 1946 | perf_missing_features.cloexec = true; |
2b04e0f8 | 1947 | pr_debug2("switching off cloexec flag\n"); |
57480d2c YD |
1948 | goto fallback_missing_features; |
1949 | } else if (!perf_missing_features.mmap2 && evsel->attr.mmap2) { | |
5c5e854b | 1950 | perf_missing_features.mmap2 = true; |
2b04e0f8 | 1951 | pr_debug2("switching off mmap2\n"); |
5c5e854b SE |
1952 | goto fallback_missing_features; |
1953 | } else if (!perf_missing_features.exclude_guest && | |
1954 | (evsel->attr.exclude_guest || evsel->attr.exclude_host)) { | |
594ac61a | 1955 | perf_missing_features.exclude_guest = true; |
2b04e0f8 | 1956 | pr_debug2("switching off exclude_guest, exclude_host\n"); |
594ac61a ACM |
1957 | goto fallback_missing_features; |
1958 | } else if (!perf_missing_features.sample_id_all) { | |
1959 | perf_missing_features.sample_id_all = true; | |
2b04e0f8 | 1960 | pr_debug2("switching off sample_id_all\n"); |
594ac61a | 1961 | goto retry_sample_id; |
bd0f8895 AK |
1962 | } else if (!perf_missing_features.lbr_flags && |
1963 | (evsel->attr.branch_sample_type & | |
1964 | (PERF_SAMPLE_BRANCH_NO_CYCLES | | |
1965 | PERF_SAMPLE_BRANCH_NO_FLAGS))) { | |
1966 | perf_missing_features.lbr_flags = true; | |
2b04e0f8 | 1967 | pr_debug2("switching off branch sample type no (cycles/flags)\n"); |
bd0f8895 | 1968 | goto fallback_missing_features; |
82bf311e JO |
1969 | } else if (!perf_missing_features.group_read && |
1970 | evsel->attr.inherit && | |
121f325f KL |
1971 | (evsel->attr.read_format & PERF_FORMAT_GROUP) && |
1972 | perf_evsel__is_group_leader(evsel)) { | |
82bf311e JO |
1973 | perf_missing_features.group_read = true; |
1974 | pr_debug2("switching off group read\n"); | |
1975 | goto fallback_missing_features; | |
594ac61a | 1976 | } |
48290609 | 1977 | out_close: |
ab6c79b8 JY |
1978 | if (err) |
1979 | threads->err_thread = thread; | |
1980 | ||
0252208e ACM |
1981 | do { |
1982 | while (--thread >= 0) { | |
1983 | close(FD(evsel, cpu, thread)); | |
1984 | FD(evsel, cpu, thread) = -1; | |
1985 | } | |
bf8e8f4b | 1986 | thread = nthreads; |
0252208e | 1987 | } while (--cpu >= 0); |
727ab04e ACM |
1988 | return err; |
1989 | } | |
1990 | ||
475fb533 | 1991 | void perf_evsel__close(struct perf_evsel *evsel) |
727ab04e ACM |
1992 | { |
1993 | if (evsel->fd == NULL) | |
1994 | return; | |
1995 | ||
475fb533 | 1996 | perf_evsel__close_fd(evsel); |
727ab04e | 1997 | perf_evsel__free_fd(evsel); |
48290609 ACM |
1998 | } |
1999 | ||
f08199d3 | 2000 | int perf_evsel__open_per_cpu(struct perf_evsel *evsel, |
6a4bb04c | 2001 | struct cpu_map *cpus) |
48290609 | 2002 | { |
c24ae6d9 | 2003 | return perf_evsel__open(evsel, cpus, NULL); |
0252208e | 2004 | } |
48290609 | 2005 | |
f08199d3 | 2006 | int perf_evsel__open_per_thread(struct perf_evsel *evsel, |
6a4bb04c | 2007 | struct thread_map *threads) |
0252208e | 2008 | { |
c24ae6d9 | 2009 | return perf_evsel__open(evsel, NULL, threads); |
48290609 | 2010 | } |
70082dd9 | 2011 | |
0807d2d8 ACM |
2012 | static int perf_evsel__parse_id_sample(const struct perf_evsel *evsel, |
2013 | const union perf_event *event, | |
2014 | struct perf_sample *sample) | |
d0dd74e8 | 2015 | { |
0807d2d8 | 2016 | u64 type = evsel->attr.sample_type; |
d0dd74e8 | 2017 | const u64 *array = event->sample.array; |
0807d2d8 | 2018 | bool swapped = evsel->needs_swap; |
37073f9e | 2019 | union u64_swap u; |
d0dd74e8 ACM |
2020 | |
2021 | array += ((event->header.size - | |
2022 | sizeof(event->header)) / sizeof(u64)) - 1; | |
2023 | ||
75562573 AH |
2024 | if (type & PERF_SAMPLE_IDENTIFIER) { |
2025 | sample->id = *array; | |
2026 | array--; | |
2027 | } | |
2028 | ||
d0dd74e8 | 2029 | if (type & PERF_SAMPLE_CPU) { |
37073f9e JO |
2030 | u.val64 = *array; |
2031 | if (swapped) { | |
2032 | /* undo swap of u64, then swap on individual u32s */ | |
2033 | u.val64 = bswap_64(u.val64); | |
2034 | u.val32[0] = bswap_32(u.val32[0]); | |
2035 | } | |
2036 | ||
2037 | sample->cpu = u.val32[0]; | |
d0dd74e8 ACM |
2038 | array--; |
2039 | } | |
2040 | ||
2041 | if (type & PERF_SAMPLE_STREAM_ID) { | |
2042 | sample->stream_id = *array; | |
2043 | array--; | |
2044 | } | |
2045 | ||
2046 | if (type & PERF_SAMPLE_ID) { | |
2047 | sample->id = *array; | |
2048 | array--; | |
2049 | } | |
2050 | ||
2051 | if (type & PERF_SAMPLE_TIME) { | |
2052 | sample->time = *array; | |
2053 | array--; | |
2054 | } | |
2055 | ||
2056 | if (type & PERF_SAMPLE_TID) { | |
37073f9e JO |
2057 | u.val64 = *array; |
2058 | if (swapped) { | |
2059 | /* undo swap of u64, then swap on individual u32s */ | |
2060 | u.val64 = bswap_64(u.val64); | |
2061 | u.val32[0] = bswap_32(u.val32[0]); | |
2062 | u.val32[1] = bswap_32(u.val32[1]); | |
2063 | } | |
2064 | ||
2065 | sample->pid = u.val32[0]; | |
2066 | sample->tid = u.val32[1]; | |
dd44bc6b | 2067 | array--; |
d0dd74e8 ACM |
2068 | } |
2069 | ||
2070 | return 0; | |
2071 | } | |
2072 | ||
03b6ea9b AH |
2073 | static inline bool overflow(const void *endp, u16 max_size, const void *offset, |
2074 | u64 size) | |
98e1da90 | 2075 | { |
03b6ea9b AH |
2076 | return size > max_size || offset + size > endp; |
2077 | } | |
98e1da90 | 2078 | |
03b6ea9b AH |
2079 | #define OVERFLOW_CHECK(offset, size, max_size) \ |
2080 | do { \ | |
2081 | if (overflow(endp, (max_size), (offset), (size))) \ | |
2082 | return -EFAULT; \ | |
2083 | } while (0) | |
98e1da90 | 2084 | |
03b6ea9b AH |
2085 | #define OVERFLOW_CHECK_u64(offset) \ |
2086 | OVERFLOW_CHECK(offset, sizeof(u64), sizeof(u64)) | |
98e1da90 | 2087 | |
01468120 JO |
2088 | static int |
2089 | perf_event__check_size(union perf_event *event, unsigned int sample_size) | |
2090 | { | |
2091 | /* | |
2092 | * The evsel's sample_size is based on PERF_SAMPLE_MASK which includes | |
2093 | * up to PERF_SAMPLE_PERIOD. After that overflow() must be used to | |
2094 | * check the format does not go past the end of the event. | |
2095 | */ | |
2096 | if (sample_size + sizeof(event->header) > event->header.size) | |
2097 | return -EFAULT; | |
2098 | ||
2099 | return 0; | |
2100 | } | |
2101 | ||
a3f698fe | 2102 | int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event, |
0807d2d8 | 2103 | struct perf_sample *data) |
d0dd74e8 | 2104 | { |
a3f698fe | 2105 | u64 type = evsel->attr.sample_type; |
0807d2d8 | 2106 | bool swapped = evsel->needs_swap; |
d0dd74e8 | 2107 | const u64 *array; |
03b6ea9b AH |
2108 | u16 max_size = event->header.size; |
2109 | const void *endp = (void *)event + max_size; | |
2110 | u64 sz; | |
d0dd74e8 | 2111 | |
936be503 DA |
2112 | /* |
2113 | * used for cross-endian analysis. See git commit 65014ab3 | |
2114 | * for why this goofiness is needed. | |
2115 | */ | |
6a11f92e | 2116 | union u64_swap u; |
936be503 | 2117 | |
f3bda2c9 | 2118 | memset(data, 0, sizeof(*data)); |
d0dd74e8 ACM |
2119 | data->cpu = data->pid = data->tid = -1; |
2120 | data->stream_id = data->id = data->time = -1ULL; | |
bc529086 | 2121 | data->period = evsel->attr.sample_period; |
473398a2 | 2122 | data->cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; |
28a0b398 | 2123 | data->misc = event->header.misc; |
3ad31d8a JO |
2124 | data->id = -1ULL; |
2125 | data->data_src = PERF_MEM_DATA_SRC_NONE; | |
d0dd74e8 ACM |
2126 | |
2127 | if (event->header.type != PERF_RECORD_SAMPLE) { | |
a3f698fe | 2128 | if (!evsel->attr.sample_id_all) |
d0dd74e8 | 2129 | return 0; |
0807d2d8 | 2130 | return perf_evsel__parse_id_sample(evsel, event, data); |
d0dd74e8 ACM |
2131 | } |
2132 | ||
2133 | array = event->sample.array; | |
2134 | ||
01468120 | 2135 | if (perf_event__check_size(event, evsel->sample_size)) |
a2854124 FW |
2136 | return -EFAULT; |
2137 | ||
75562573 AH |
2138 | if (type & PERF_SAMPLE_IDENTIFIER) { |
2139 | data->id = *array; | |
2140 | array++; | |
2141 | } | |
2142 | ||
d0dd74e8 | 2143 | if (type & PERF_SAMPLE_IP) { |
ef89325f | 2144 | data->ip = *array; |
d0dd74e8 ACM |
2145 | array++; |
2146 | } | |
2147 | ||
2148 | if (type & PERF_SAMPLE_TID) { | |
936be503 DA |
2149 | u.val64 = *array; |
2150 | if (swapped) { | |
2151 | /* undo swap of u64, then swap on individual u32s */ | |
2152 | u.val64 = bswap_64(u.val64); | |
2153 | u.val32[0] = bswap_32(u.val32[0]); | |
2154 | u.val32[1] = bswap_32(u.val32[1]); | |
2155 | } | |
2156 | ||
2157 | data->pid = u.val32[0]; | |
2158 | data->tid = u.val32[1]; | |
d0dd74e8 ACM |
2159 | array++; |
2160 | } | |
2161 | ||
2162 | if (type & PERF_SAMPLE_TIME) { | |
2163 | data->time = *array; | |
2164 | array++; | |
2165 | } | |
2166 | ||
2167 | if (type & PERF_SAMPLE_ADDR) { | |
2168 | data->addr = *array; | |
2169 | array++; | |
2170 | } | |
2171 | ||
d0dd74e8 ACM |
2172 | if (type & PERF_SAMPLE_ID) { |
2173 | data->id = *array; | |
2174 | array++; | |
2175 | } | |
2176 | ||
2177 | if (type & PERF_SAMPLE_STREAM_ID) { | |
2178 | data->stream_id = *array; | |
2179 | array++; | |
2180 | } | |
2181 | ||
2182 | if (type & PERF_SAMPLE_CPU) { | |
936be503 DA |
2183 | |
2184 | u.val64 = *array; | |
2185 | if (swapped) { | |
2186 | /* undo swap of u64, then swap on individual u32s */ | |
2187 | u.val64 = bswap_64(u.val64); | |
2188 | u.val32[0] = bswap_32(u.val32[0]); | |
2189 | } | |
2190 | ||
2191 | data->cpu = u.val32[0]; | |
d0dd74e8 ACM |
2192 | array++; |
2193 | } | |
2194 | ||
2195 | if (type & PERF_SAMPLE_PERIOD) { | |
2196 | data->period = *array; | |
2197 | array++; | |
2198 | } | |
2199 | ||
2200 | if (type & PERF_SAMPLE_READ) { | |
9ede473c JO |
2201 | u64 read_format = evsel->attr.read_format; |
2202 | ||
03b6ea9b | 2203 | OVERFLOW_CHECK_u64(array); |
9ede473c JO |
2204 | if (read_format & PERF_FORMAT_GROUP) |
2205 | data->read.group.nr = *array; | |
2206 | else | |
2207 | data->read.one.value = *array; | |
2208 | ||
2209 | array++; | |
2210 | ||
2211 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) { | |
03b6ea9b | 2212 | OVERFLOW_CHECK_u64(array); |
9ede473c JO |
2213 | data->read.time_enabled = *array; |
2214 | array++; | |
2215 | } | |
2216 | ||
2217 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) { | |
03b6ea9b | 2218 | OVERFLOW_CHECK_u64(array); |
9ede473c JO |
2219 | data->read.time_running = *array; |
2220 | array++; | |
2221 | } | |
2222 | ||
2223 | /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */ | |
2224 | if (read_format & PERF_FORMAT_GROUP) { | |
03b6ea9b AH |
2225 | const u64 max_group_nr = UINT64_MAX / |
2226 | sizeof(struct sample_read_value); | |
2227 | ||
2228 | if (data->read.group.nr > max_group_nr) | |
2229 | return -EFAULT; | |
2230 | sz = data->read.group.nr * | |
2231 | sizeof(struct sample_read_value); | |
2232 | OVERFLOW_CHECK(array, sz, max_size); | |
2233 | data->read.group.values = | |
2234 | (struct sample_read_value *)array; | |
2235 | array = (void *)array + sz; | |
9ede473c | 2236 | } else { |
03b6ea9b | 2237 | OVERFLOW_CHECK_u64(array); |
9ede473c JO |
2238 | data->read.one.id = *array; |
2239 | array++; | |
2240 | } | |
d0dd74e8 ACM |
2241 | } |
2242 | ||
27de9b2b | 2243 | if (evsel__has_callchain(evsel)) { |
03b6ea9b | 2244 | const u64 max_callchain_nr = UINT64_MAX / sizeof(u64); |
98e1da90 | 2245 | |
03b6ea9b AH |
2246 | OVERFLOW_CHECK_u64(array); |
2247 | data->callchain = (struct ip_callchain *)array++; | |
2248 | if (data->callchain->nr > max_callchain_nr) | |
98e1da90 | 2249 | return -EFAULT; |
03b6ea9b AH |
2250 | sz = data->callchain->nr * sizeof(u64); |
2251 | OVERFLOW_CHECK(array, sz, max_size); | |
2252 | array = (void *)array + sz; | |
d0dd74e8 ACM |
2253 | } |
2254 | ||
2255 | if (type & PERF_SAMPLE_RAW) { | |
03b6ea9b | 2256 | OVERFLOW_CHECK_u64(array); |
936be503 | 2257 | u.val64 = *array; |
f9d8adb3 JO |
2258 | |
2259 | /* | |
2260 | * Undo swap of u64, then swap on individual u32s, | |
2261 | * get the size of the raw area and undo all of the | |
2262 | * swap. The pevent interface handles endianity by | |
2263 | * itself. | |
2264 | */ | |
2265 | if (swapped) { | |
936be503 DA |
2266 | u.val64 = bswap_64(u.val64); |
2267 | u.val32[0] = bswap_32(u.val32[0]); | |
2268 | u.val32[1] = bswap_32(u.val32[1]); | |
2269 | } | |
936be503 | 2270 | data->raw_size = u.val32[0]; |
f9d8adb3 JO |
2271 | |
2272 | /* | |
2273 | * The raw data is aligned on 64bits including the | |
2274 | * u32 size, so it's safe to use mem_bswap_64. | |
2275 | */ | |
2276 | if (swapped) | |
2277 | mem_bswap_64((void *) array, data->raw_size); | |
2278 | ||
03b6ea9b | 2279 | array = (void *)array + sizeof(u32); |
98e1da90 | 2280 | |
03b6ea9b AH |
2281 | OVERFLOW_CHECK(array, data->raw_size, max_size); |
2282 | data->raw_data = (void *)array; | |
2283 | array = (void *)array + data->raw_size; | |
d0dd74e8 ACM |
2284 | } |
2285 | ||
b5387528 | 2286 | if (type & PERF_SAMPLE_BRANCH_STACK) { |
03b6ea9b AH |
2287 | const u64 max_branch_nr = UINT64_MAX / |
2288 | sizeof(struct branch_entry); | |
b5387528 | 2289 | |
03b6ea9b AH |
2290 | OVERFLOW_CHECK_u64(array); |
2291 | data->branch_stack = (struct branch_stack *)array++; | |
b5387528 | 2292 | |
03b6ea9b AH |
2293 | if (data->branch_stack->nr > max_branch_nr) |
2294 | return -EFAULT; | |
b5387528 | 2295 | sz = data->branch_stack->nr * sizeof(struct branch_entry); |
03b6ea9b AH |
2296 | OVERFLOW_CHECK(array, sz, max_size); |
2297 | array = (void *)array + sz; | |
b5387528 | 2298 | } |
0f6a3015 JO |
2299 | |
2300 | if (type & PERF_SAMPLE_REGS_USER) { | |
03b6ea9b | 2301 | OVERFLOW_CHECK_u64(array); |
5b95a4a3 AH |
2302 | data->user_regs.abi = *array; |
2303 | array++; | |
0f6a3015 | 2304 | |
5b95a4a3 | 2305 | if (data->user_regs.abi) { |
352ea45a | 2306 | u64 mask = evsel->attr.sample_regs_user; |
03b6ea9b | 2307 | |
352ea45a | 2308 | sz = hweight_long(mask) * sizeof(u64); |
03b6ea9b | 2309 | OVERFLOW_CHECK(array, sz, max_size); |
352ea45a | 2310 | data->user_regs.mask = mask; |
0f6a3015 | 2311 | data->user_regs.regs = (u64 *)array; |
03b6ea9b | 2312 | array = (void *)array + sz; |
0f6a3015 JO |
2313 | } |
2314 | } | |
2315 | ||
2316 | if (type & PERF_SAMPLE_STACK_USER) { | |
03b6ea9b AH |
2317 | OVERFLOW_CHECK_u64(array); |
2318 | sz = *array++; | |
0f6a3015 JO |
2319 | |
2320 | data->user_stack.offset = ((char *)(array - 1) | |
2321 | - (char *) event); | |
2322 | ||
03b6ea9b | 2323 | if (!sz) { |
0f6a3015 JO |
2324 | data->user_stack.size = 0; |
2325 | } else { | |
03b6ea9b | 2326 | OVERFLOW_CHECK(array, sz, max_size); |
0f6a3015 | 2327 | data->user_stack.data = (char *)array; |
03b6ea9b AH |
2328 | array = (void *)array + sz; |
2329 | OVERFLOW_CHECK_u64(array); | |
54bd2692 | 2330 | data->user_stack.size = *array++; |
a65cb4b9 JO |
2331 | if (WARN_ONCE(data->user_stack.size > sz, |
2332 | "user stack dump failure\n")) | |
2333 | return -EFAULT; | |
0f6a3015 JO |
2334 | } |
2335 | } | |
2336 | ||
05484298 | 2337 | if (type & PERF_SAMPLE_WEIGHT) { |
03b6ea9b | 2338 | OVERFLOW_CHECK_u64(array); |
05484298 AK |
2339 | data->weight = *array; |
2340 | array++; | |
2341 | } | |
2342 | ||
98a3b32c | 2343 | if (type & PERF_SAMPLE_DATA_SRC) { |
03b6ea9b | 2344 | OVERFLOW_CHECK_u64(array); |
98a3b32c SE |
2345 | data->data_src = *array; |
2346 | array++; | |
2347 | } | |
2348 | ||
475eeab9 | 2349 | if (type & PERF_SAMPLE_TRANSACTION) { |
87b95524 | 2350 | OVERFLOW_CHECK_u64(array); |
475eeab9 AK |
2351 | data->transaction = *array; |
2352 | array++; | |
2353 | } | |
2354 | ||
6a21c0b5 SE |
2355 | data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE; |
2356 | if (type & PERF_SAMPLE_REGS_INTR) { | |
2357 | OVERFLOW_CHECK_u64(array); | |
2358 | data->intr_regs.abi = *array; | |
2359 | array++; | |
2360 | ||
2361 | if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) { | |
2362 | u64 mask = evsel->attr.sample_regs_intr; | |
2363 | ||
2364 | sz = hweight_long(mask) * sizeof(u64); | |
2365 | OVERFLOW_CHECK(array, sz, max_size); | |
2366 | data->intr_regs.mask = mask; | |
2367 | data->intr_regs.regs = (u64 *)array; | |
2368 | array = (void *)array + sz; | |
2369 | } | |
2370 | } | |
2371 | ||
3b0a5daa KL |
2372 | data->phys_addr = 0; |
2373 | if (type & PERF_SAMPLE_PHYS_ADDR) { | |
2374 | data->phys_addr = *array; | |
2375 | array++; | |
2376 | } | |
2377 | ||
d0dd74e8 ACM |
2378 | return 0; |
2379 | } | |
74eec26f | 2380 | |
01468120 JO |
2381 | int perf_evsel__parse_sample_timestamp(struct perf_evsel *evsel, |
2382 | union perf_event *event, | |
2383 | u64 *timestamp) | |
2384 | { | |
2385 | u64 type = evsel->attr.sample_type; | |
2386 | const u64 *array; | |
2387 | ||
2388 | if (!(type & PERF_SAMPLE_TIME)) | |
2389 | return -1; | |
2390 | ||
2391 | if (event->header.type != PERF_RECORD_SAMPLE) { | |
2392 | struct perf_sample data = { | |
2393 | .time = -1ULL, | |
2394 | }; | |
2395 | ||
2396 | if (!evsel->attr.sample_id_all) | |
2397 | return -1; | |
2398 | if (perf_evsel__parse_id_sample(evsel, event, &data)) | |
2399 | return -1; | |
2400 | ||
2401 | *timestamp = data.time; | |
2402 | return 0; | |
2403 | } | |
2404 | ||
2405 | array = event->sample.array; | |
2406 | ||
2407 | if (perf_event__check_size(event, evsel->sample_size)) | |
2408 | return -EFAULT; | |
2409 | ||
2410 | if (type & PERF_SAMPLE_IDENTIFIER) | |
2411 | array++; | |
2412 | ||
2413 | if (type & PERF_SAMPLE_IP) | |
2414 | array++; | |
2415 | ||
2416 | if (type & PERF_SAMPLE_TID) | |
2417 | array++; | |
2418 | ||
2419 | if (type & PERF_SAMPLE_TIME) | |
2420 | *timestamp = *array; | |
2421 | ||
2422 | return 0; | |
2423 | } | |
2424 | ||
b1cf6f65 | 2425 | size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type, |
352ea45a | 2426 | u64 read_format) |
b1cf6f65 AH |
2427 | { |
2428 | size_t sz, result = sizeof(struct sample_event); | |
2429 | ||
2430 | if (type & PERF_SAMPLE_IDENTIFIER) | |
2431 | result += sizeof(u64); | |
2432 | ||
2433 | if (type & PERF_SAMPLE_IP) | |
2434 | result += sizeof(u64); | |
2435 | ||
2436 | if (type & PERF_SAMPLE_TID) | |
2437 | result += sizeof(u64); | |
2438 | ||
2439 | if (type & PERF_SAMPLE_TIME) | |
2440 | result += sizeof(u64); | |
2441 | ||
2442 | if (type & PERF_SAMPLE_ADDR) | |
2443 | result += sizeof(u64); | |
2444 | ||
2445 | if (type & PERF_SAMPLE_ID) | |
2446 | result += sizeof(u64); | |
2447 | ||
2448 | if (type & PERF_SAMPLE_STREAM_ID) | |
2449 | result += sizeof(u64); | |
2450 | ||
2451 | if (type & PERF_SAMPLE_CPU) | |
2452 | result += sizeof(u64); | |
2453 | ||
2454 | if (type & PERF_SAMPLE_PERIOD) | |
2455 | result += sizeof(u64); | |
2456 | ||
2457 | if (type & PERF_SAMPLE_READ) { | |
2458 | result += sizeof(u64); | |
2459 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) | |
2460 | result += sizeof(u64); | |
2461 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) | |
2462 | result += sizeof(u64); | |
2463 | /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */ | |
2464 | if (read_format & PERF_FORMAT_GROUP) { | |
2465 | sz = sample->read.group.nr * | |
2466 | sizeof(struct sample_read_value); | |
2467 | result += sz; | |
2468 | } else { | |
2469 | result += sizeof(u64); | |
2470 | } | |
2471 | } | |
2472 | ||
2473 | if (type & PERF_SAMPLE_CALLCHAIN) { | |
2474 | sz = (sample->callchain->nr + 1) * sizeof(u64); | |
2475 | result += sz; | |
2476 | } | |
2477 | ||
2478 | if (type & PERF_SAMPLE_RAW) { | |
2479 | result += sizeof(u32); | |
2480 | result += sample->raw_size; | |
2481 | } | |
2482 | ||
2483 | if (type & PERF_SAMPLE_BRANCH_STACK) { | |
2484 | sz = sample->branch_stack->nr * sizeof(struct branch_entry); | |
2485 | sz += sizeof(u64); | |
2486 | result += sz; | |
2487 | } | |
2488 | ||
2489 | if (type & PERF_SAMPLE_REGS_USER) { | |
2490 | if (sample->user_regs.abi) { | |
2491 | result += sizeof(u64); | |
352ea45a | 2492 | sz = hweight_long(sample->user_regs.mask) * sizeof(u64); |
b1cf6f65 AH |
2493 | result += sz; |
2494 | } else { | |
2495 | result += sizeof(u64); | |
2496 | } | |
2497 | } | |
2498 | ||
2499 | if (type & PERF_SAMPLE_STACK_USER) { | |
2500 | sz = sample->user_stack.size; | |
2501 | result += sizeof(u64); | |
2502 | if (sz) { | |
2503 | result += sz; | |
2504 | result += sizeof(u64); | |
2505 | } | |
2506 | } | |
2507 | ||
2508 | if (type & PERF_SAMPLE_WEIGHT) | |
2509 | result += sizeof(u64); | |
2510 | ||
2511 | if (type & PERF_SAMPLE_DATA_SRC) | |
2512 | result += sizeof(u64); | |
2513 | ||
42d88910 AH |
2514 | if (type & PERF_SAMPLE_TRANSACTION) |
2515 | result += sizeof(u64); | |
2516 | ||
6a21c0b5 SE |
2517 | if (type & PERF_SAMPLE_REGS_INTR) { |
2518 | if (sample->intr_regs.abi) { | |
2519 | result += sizeof(u64); | |
2520 | sz = hweight_long(sample->intr_regs.mask) * sizeof(u64); | |
2521 | result += sz; | |
2522 | } else { | |
2523 | result += sizeof(u64); | |
2524 | } | |
2525 | } | |
2526 | ||
3b0a5daa KL |
2527 | if (type & PERF_SAMPLE_PHYS_ADDR) |
2528 | result += sizeof(u64); | |
2529 | ||
b1cf6f65 AH |
2530 | return result; |
2531 | } | |
2532 | ||
74eec26f | 2533 | int perf_event__synthesize_sample(union perf_event *event, u64 type, |
352ea45a | 2534 | u64 read_format, |
936f1f30 | 2535 | const struct perf_sample *sample) |
74eec26f AV |
2536 | { |
2537 | u64 *array; | |
d03f2170 | 2538 | size_t sz; |
74eec26f AV |
2539 | /* |
2540 | * used for cross-endian analysis. See git commit 65014ab3 | |
2541 | * for why this goofiness is needed. | |
2542 | */ | |
6a11f92e | 2543 | union u64_swap u; |
74eec26f AV |
2544 | |
2545 | array = event->sample.array; | |
2546 | ||
75562573 AH |
2547 | if (type & PERF_SAMPLE_IDENTIFIER) { |
2548 | *array = sample->id; | |
2549 | array++; | |
2550 | } | |
2551 | ||
74eec26f | 2552 | if (type & PERF_SAMPLE_IP) { |
ef89325f | 2553 | *array = sample->ip; |
74eec26f AV |
2554 | array++; |
2555 | } | |
2556 | ||
2557 | if (type & PERF_SAMPLE_TID) { | |
2558 | u.val32[0] = sample->pid; | |
2559 | u.val32[1] = sample->tid; | |
74eec26f AV |
2560 | *array = u.val64; |
2561 | array++; | |
2562 | } | |
2563 | ||
2564 | if (type & PERF_SAMPLE_TIME) { | |
2565 | *array = sample->time; | |
2566 | array++; | |
2567 | } | |
2568 | ||
2569 | if (type & PERF_SAMPLE_ADDR) { | |
2570 | *array = sample->addr; | |
2571 | array++; | |
2572 | } | |
2573 | ||
2574 | if (type & PERF_SAMPLE_ID) { | |
2575 | *array = sample->id; | |
2576 | array++; | |
2577 | } | |
2578 | ||
2579 | if (type & PERF_SAMPLE_STREAM_ID) { | |
2580 | *array = sample->stream_id; | |
2581 | array++; | |
2582 | } | |
2583 | ||
2584 | if (type & PERF_SAMPLE_CPU) { | |
2585 | u.val32[0] = sample->cpu; | |
59a87fda | 2586 | u.val32[1] = 0; |
74eec26f AV |
2587 | *array = u.val64; |
2588 | array++; | |
2589 | } | |
2590 | ||
2591 | if (type & PERF_SAMPLE_PERIOD) { | |
2592 | *array = sample->period; | |
2593 | array++; | |
2594 | } | |
2595 | ||
d03f2170 AH |
2596 | if (type & PERF_SAMPLE_READ) { |
2597 | if (read_format & PERF_FORMAT_GROUP) | |
2598 | *array = sample->read.group.nr; | |
2599 | else | |
2600 | *array = sample->read.one.value; | |
2601 | array++; | |
2602 | ||
2603 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) { | |
2604 | *array = sample->read.time_enabled; | |
2605 | array++; | |
2606 | } | |
2607 | ||
2608 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) { | |
2609 | *array = sample->read.time_running; | |
2610 | array++; | |
2611 | } | |
2612 | ||
2613 | /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */ | |
2614 | if (read_format & PERF_FORMAT_GROUP) { | |
2615 | sz = sample->read.group.nr * | |
2616 | sizeof(struct sample_read_value); | |
2617 | memcpy(array, sample->read.group.values, sz); | |
2618 | array = (void *)array + sz; | |
2619 | } else { | |
2620 | *array = sample->read.one.id; | |
2621 | array++; | |
2622 | } | |
2623 | } | |
2624 | ||
2625 | if (type & PERF_SAMPLE_CALLCHAIN) { | |
2626 | sz = (sample->callchain->nr + 1) * sizeof(u64); | |
2627 | memcpy(array, sample->callchain, sz); | |
2628 | array = (void *)array + sz; | |
2629 | } | |
2630 | ||
2631 | if (type & PERF_SAMPLE_RAW) { | |
2632 | u.val32[0] = sample->raw_size; | |
d03f2170 AH |
2633 | *array = u.val64; |
2634 | array = (void *)array + sizeof(u32); | |
2635 | ||
2636 | memcpy(array, sample->raw_data, sample->raw_size); | |
2637 | array = (void *)array + sample->raw_size; | |
2638 | } | |
2639 | ||
2640 | if (type & PERF_SAMPLE_BRANCH_STACK) { | |
2641 | sz = sample->branch_stack->nr * sizeof(struct branch_entry); | |
2642 | sz += sizeof(u64); | |
2643 | memcpy(array, sample->branch_stack, sz); | |
2644 | array = (void *)array + sz; | |
2645 | } | |
2646 | ||
2647 | if (type & PERF_SAMPLE_REGS_USER) { | |
2648 | if (sample->user_regs.abi) { | |
2649 | *array++ = sample->user_regs.abi; | |
352ea45a | 2650 | sz = hweight_long(sample->user_regs.mask) * sizeof(u64); |
d03f2170 AH |
2651 | memcpy(array, sample->user_regs.regs, sz); |
2652 | array = (void *)array + sz; | |
2653 | } else { | |
2654 | *array++ = 0; | |
2655 | } | |
2656 | } | |
2657 | ||
2658 | if (type & PERF_SAMPLE_STACK_USER) { | |
2659 | sz = sample->user_stack.size; | |
2660 | *array++ = sz; | |
2661 | if (sz) { | |
2662 | memcpy(array, sample->user_stack.data, sz); | |
2663 | array = (void *)array + sz; | |
2664 | *array++ = sz; | |
2665 | } | |
2666 | } | |
2667 | ||
2668 | if (type & PERF_SAMPLE_WEIGHT) { | |
2669 | *array = sample->weight; | |
2670 | array++; | |
2671 | } | |
2672 | ||
2673 | if (type & PERF_SAMPLE_DATA_SRC) { | |
2674 | *array = sample->data_src; | |
2675 | array++; | |
2676 | } | |
2677 | ||
42d88910 AH |
2678 | if (type & PERF_SAMPLE_TRANSACTION) { |
2679 | *array = sample->transaction; | |
2680 | array++; | |
2681 | } | |
2682 | ||
6a21c0b5 SE |
2683 | if (type & PERF_SAMPLE_REGS_INTR) { |
2684 | if (sample->intr_regs.abi) { | |
2685 | *array++ = sample->intr_regs.abi; | |
2686 | sz = hweight_long(sample->intr_regs.mask) * sizeof(u64); | |
2687 | memcpy(array, sample->intr_regs.regs, sz); | |
2688 | array = (void *)array + sz; | |
2689 | } else { | |
2690 | *array++ = 0; | |
2691 | } | |
2692 | } | |
2693 | ||
3b0a5daa KL |
2694 | if (type & PERF_SAMPLE_PHYS_ADDR) { |
2695 | *array = sample->phys_addr; | |
2696 | array++; | |
2697 | } | |
2698 | ||
74eec26f AV |
2699 | return 0; |
2700 | } | |
5555ded4 | 2701 | |
2c92f982 | 2702 | struct tep_format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name) |
efd2b924 | 2703 | { |
af85cd19 | 2704 | return tep_find_field(evsel->tp_format, name); |
efd2b924 ACM |
2705 | } |
2706 | ||
5d2074ea | 2707 | void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample, |
5555ded4 ACM |
2708 | const char *name) |
2709 | { | |
2c92f982 | 2710 | struct tep_format_field *field = perf_evsel__field(evsel, name); |
5555ded4 ACM |
2711 | int offset; |
2712 | ||
efd2b924 ACM |
2713 | if (!field) |
2714 | return NULL; | |
5555ded4 ACM |
2715 | |
2716 | offset = field->offset; | |
2717 | ||
bb39ccb2 | 2718 | if (field->flags & TEP_FIELD_IS_DYNAMIC) { |
5555ded4 ACM |
2719 | offset = *(int *)(sample->raw_data + field->offset); |
2720 | offset &= 0xffff; | |
2721 | } | |
2722 | ||
2723 | return sample->raw_data + offset; | |
2724 | } | |
2725 | ||
2c92f982 | 2726 | u64 format_field__intval(struct tep_format_field *field, struct perf_sample *sample, |
90525176 | 2727 | bool needs_swap) |
5555ded4 | 2728 | { |
e6b6f679 | 2729 | u64 value; |
90525176 | 2730 | void *ptr = sample->raw_data + field->offset; |
5555ded4 | 2731 | |
e6b6f679 ACM |
2732 | switch (field->size) { |
2733 | case 1: | |
2734 | return *(u8 *)ptr; | |
2735 | case 2: | |
2736 | value = *(u16 *)ptr; | |
2737 | break; | |
2738 | case 4: | |
2739 | value = *(u32 *)ptr; | |
2740 | break; | |
2741 | case 8: | |
e94eedab | 2742 | memcpy(&value, ptr, sizeof(u64)); |
e6b6f679 ACM |
2743 | break; |
2744 | default: | |
2745 | return 0; | |
2746 | } | |
2747 | ||
90525176 | 2748 | if (!needs_swap) |
e6b6f679 ACM |
2749 | return value; |
2750 | ||
2751 | switch (field->size) { | |
2752 | case 2: | |
2753 | return bswap_16(value); | |
2754 | case 4: | |
2755 | return bswap_32(value); | |
2756 | case 8: | |
2757 | return bswap_64(value); | |
2758 | default: | |
2759 | return 0; | |
2760 | } | |
2761 | ||
2762 | return 0; | |
5555ded4 | 2763 | } |
0698aedd | 2764 | |
90525176 ACM |
2765 | u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample, |
2766 | const char *name) | |
2767 | { | |
2c92f982 | 2768 | struct tep_format_field *field = perf_evsel__field(evsel, name); |
90525176 ACM |
2769 | |
2770 | if (!field) | |
2771 | return 0; | |
2772 | ||
2773 | return field ? format_field__intval(field, sample, evsel->needs_swap) : 0; | |
2774 | } | |
2775 | ||
c0a54341 ACM |
2776 | bool perf_evsel__fallback(struct perf_evsel *evsel, int err, |
2777 | char *msg, size_t msgsize) | |
2778 | { | |
08094828 ACM |
2779 | int paranoid; |
2780 | ||
2b821cce | 2781 | if ((err == ENOENT || err == ENXIO || err == ENODEV) && |
c0a54341 ACM |
2782 | evsel->attr.type == PERF_TYPE_HARDWARE && |
2783 | evsel->attr.config == PERF_COUNT_HW_CPU_CYCLES) { | |
2784 | /* | |
2785 | * If it's cycles then fall back to hrtimer based | |
2786 | * cpu-clock-tick sw counter, which is always available even if | |
2787 | * no PMU support. | |
2788 | * | |
2789 | * PPC returns ENXIO until 2.6.37 (behavior changed with commit | |
2790 | * b0a873e). | |
2791 | */ | |
2792 | scnprintf(msg, msgsize, "%s", | |
2793 | "The cycles event is not supported, trying to fall back to cpu-clock-ticks"); | |
2794 | ||
2795 | evsel->attr.type = PERF_TYPE_SOFTWARE; | |
2796 | evsel->attr.config = PERF_COUNT_SW_CPU_CLOCK; | |
2797 | ||
04662523 | 2798 | zfree(&evsel->name); |
08094828 ACM |
2799 | return true; |
2800 | } else if (err == EACCES && !evsel->attr.exclude_kernel && | |
2801 | (paranoid = perf_event_paranoid()) > 1) { | |
2802 | const char *name = perf_evsel__name(evsel); | |
2803 | char *new_name; | |
129193bb | 2804 | const char *sep = ":"; |
08094828 | 2805 | |
129193bb JO |
2806 | /* Is there already the separator in the name. */ |
2807 | if (strchr(name, '/') || | |
2808 | strchr(name, ':')) | |
2809 | sep = ""; | |
2810 | ||
2811 | if (asprintf(&new_name, "%s%su", name, sep) < 0) | |
08094828 ACM |
2812 | return false; |
2813 | ||
2814 | if (evsel->name) | |
2815 | free(evsel->name); | |
2816 | evsel->name = new_name; | |
2817 | scnprintf(msg, msgsize, | |
2818 | "kernel.perf_event_paranoid=%d, trying to fall back to excluding kernel samples", paranoid); | |
2819 | evsel->attr.exclude_kernel = 1; | |
2820 | ||
c0a54341 ACM |
2821 | return true; |
2822 | } | |
2823 | ||
2824 | return false; | |
2825 | } | |
56e52e85 | 2826 | |
2157f6ee ACM |
2827 | static bool find_process(const char *name) |
2828 | { | |
2829 | size_t len = strlen(name); | |
2830 | DIR *dir; | |
2831 | struct dirent *d; | |
2832 | int ret = -1; | |
2833 | ||
2834 | dir = opendir(procfs__mountpoint()); | |
2835 | if (!dir) | |
2836 | return false; | |
2837 | ||
2838 | /* Walk through the directory. */ | |
2839 | while (ret && (d = readdir(dir)) != NULL) { | |
2840 | char path[PATH_MAX]; | |
2841 | char *data; | |
2842 | size_t size; | |
2843 | ||
2844 | if ((d->d_type != DT_DIR) || | |
2845 | !strcmp(".", d->d_name) || | |
2846 | !strcmp("..", d->d_name)) | |
2847 | continue; | |
2848 | ||
2849 | scnprintf(path, sizeof(path), "%s/%s/comm", | |
2850 | procfs__mountpoint(), d->d_name); | |
2851 | ||
2852 | if (filename__read_str(path, &data, &size)) | |
2853 | continue; | |
2854 | ||
2855 | ret = strncmp(name, data, len); | |
2856 | free(data); | |
2857 | } | |
2858 | ||
2859 | closedir(dir); | |
2860 | return ret ? false : true; | |
2861 | } | |
2862 | ||
602ad878 | 2863 | int perf_evsel__open_strerror(struct perf_evsel *evsel, struct target *target, |
56e52e85 ACM |
2864 | int err, char *msg, size_t size) |
2865 | { | |
6e81c74c | 2866 | char sbuf[STRERR_BUFSIZE]; |
32ccb130 | 2867 | int printed = 0; |
6e81c74c | 2868 | |
56e52e85 ACM |
2869 | switch (err) { |
2870 | case EPERM: | |
2871 | case EACCES: | |
32ccb130 JY |
2872 | if (err == EPERM) |
2873 | printed = scnprintf(msg, size, | |
2874 | "No permission to enable %s event.\n\n", | |
2875 | perf_evsel__name(evsel)); | |
2876 | ||
2877 | return scnprintf(msg + printed, size - printed, | |
3379e0c3 BH |
2878 | "You may not have permission to collect %sstats.\n\n" |
2879 | "Consider tweaking /proc/sys/kernel/perf_event_paranoid,\n" | |
2880 | "which controls use of the performance events system by\n" | |
2881 | "unprivileged users (without CAP_SYS_ADMIN).\n\n" | |
7d173913 | 2882 | "The current value is %d:\n\n" |
3379e0c3 | 2883 | " -1: Allow use of (almost) all events by all users\n" |
ac0bb6b7 KK |
2884 | " Ignore mlock limit after perf_event_mlock_kb without CAP_IPC_LOCK\n" |
2885 | ">= 0: Disallow ftrace function tracepoint by users without CAP_SYS_ADMIN\n" | |
2886 | " Disallow raw tracepoint access by users without CAP_SYS_ADMIN\n" | |
3379e0c3 | 2887 | ">= 1: Disallow CPU event access by users without CAP_SYS_ADMIN\n" |
d6195a6a ACM |
2888 | ">= 2: Disallow kernel profiling by users without CAP_SYS_ADMIN\n\n" |
2889 | "To make this setting permanent, edit /etc/sysctl.conf too, e.g.:\n\n" | |
2890 | " kernel.perf_event_paranoid = -1\n" , | |
7d173913 ACM |
2891 | target->system_wide ? "system-wide " : "", |
2892 | perf_event_paranoid()); | |
56e52e85 ACM |
2893 | case ENOENT: |
2894 | return scnprintf(msg, size, "The %s event is not supported.", | |
2895 | perf_evsel__name(evsel)); | |
2896 | case EMFILE: | |
2897 | return scnprintf(msg, size, "%s", | |
2898 | "Too many events are opened.\n" | |
18ffdfe8 JO |
2899 | "Probably the maximum number of open file descriptors has been reached.\n" |
2900 | "Hint: Try again after reducing the number of events.\n" | |
2901 | "Hint: Try increasing the limit with 'ulimit -n <limit>'"); | |
de46d526 | 2902 | case ENOMEM: |
27de9b2b | 2903 | if (evsel__has_callchain(evsel) && |
de46d526 ACM |
2904 | access("/proc/sys/kernel/perf_event_max_stack", F_OK) == 0) |
2905 | return scnprintf(msg, size, | |
2906 | "Not enough memory to setup event with callchain.\n" | |
2907 | "Hint: Try tweaking /proc/sys/kernel/perf_event_max_stack\n" | |
029c75e5 | 2908 | "Hint: Current value: %d", sysctl__max_stack()); |
de46d526 | 2909 | break; |
56e52e85 ACM |
2910 | case ENODEV: |
2911 | if (target->cpu_list) | |
2912 | return scnprintf(msg, size, "%s", | |
81d64f46 | 2913 | "No such device - did you specify an out-of-range profile CPU?"); |
56e52e85 ACM |
2914 | break; |
2915 | case EOPNOTSUPP: | |
dc89e75a | 2916 | if (evsel->attr.sample_period != 0) |
114bc191 KP |
2917 | return scnprintf(msg, size, |
2918 | "%s: PMU Hardware doesn't support sampling/overflow-interrupts. Try 'perf stat'", | |
2919 | perf_evsel__name(evsel)); | |
56e52e85 ACM |
2920 | if (evsel->attr.precise_ip) |
2921 | return scnprintf(msg, size, "%s", | |
2922 | "\'precise\' request may not be supported. Try removing 'p' modifier."); | |
2923 | #if defined(__i386__) || defined(__x86_64__) | |
2924 | if (evsel->attr.type == PERF_TYPE_HARDWARE) | |
2925 | return scnprintf(msg, size, "%s", | |
ccbb6afe | 2926 | "No hardware sampling interrupt available.\n"); |
56e52e85 ACM |
2927 | #endif |
2928 | break; | |
63914aca JO |
2929 | case EBUSY: |
2930 | if (find_process("oprofiled")) | |
2931 | return scnprintf(msg, size, | |
2932 | "The PMU counters are busy/taken by another profiler.\n" | |
2933 | "We found oprofile daemon running, please stop it and try again."); | |
2934 | break; | |
814c8c38 | 2935 | case EINVAL: |
32a951b4 | 2936 | if (evsel->attr.write_backward && perf_missing_features.write_backward) |
7da36e94 | 2937 | return scnprintf(msg, size, "Reading from overwrite event is not supported by this kernel."); |
814c8c38 PZ |
2938 | if (perf_missing_features.clockid) |
2939 | return scnprintf(msg, size, "clockid feature not supported."); | |
2940 | if (perf_missing_features.clockid_wrong) | |
2941 | return scnprintf(msg, size, "wrong clockid (%d).", clockid); | |
2942 | break; | |
56e52e85 ACM |
2943 | default: |
2944 | break; | |
2945 | } | |
2946 | ||
2947 | return scnprintf(msg, size, | |
6e81c74c | 2948 | "The sys_perf_event_open() syscall returned with %d (%s) for event (%s).\n" |
ec394845 | 2949 | "/bin/dmesg | grep -i perf may provide additional information.\n", |
c8b5f2c9 | 2950 | err, str_error_r(err, sbuf, sizeof(sbuf)), |
6e81c74c | 2951 | perf_evsel__name(evsel)); |
56e52e85 | 2952 | } |
f4e47f9f | 2953 | |
5449f13c | 2954 | struct perf_env *perf_evsel__env(struct perf_evsel *evsel) |
69fb09f6 | 2955 | { |
5449f13c ACM |
2956 | if (evsel && evsel->evlist) |
2957 | return evsel->evlist->env; | |
69fb09f6 JY |
2958 | return NULL; |
2959 | } | |
650d6220 JO |
2960 | |
2961 | static int store_evsel_ids(struct perf_evsel *evsel, struct perf_evlist *evlist) | |
2962 | { | |
2963 | int cpu, thread; | |
2964 | ||
2965 | for (cpu = 0; cpu < xyarray__max_x(evsel->fd); cpu++) { | |
2966 | for (thread = 0; thread < xyarray__max_y(evsel->fd); | |
2967 | thread++) { | |
2968 | int fd = FD(evsel, cpu, thread); | |
2969 | ||
2970 | if (perf_evlist__id_add_fd(evlist, evsel, | |
2971 | cpu, thread, fd) < 0) | |
2972 | return -1; | |
2973 | } | |
2974 | } | |
2975 | ||
2976 | return 0; | |
2977 | } | |
2978 | ||
2979 | int perf_evsel__store_ids(struct perf_evsel *evsel, struct perf_evlist *evlist) | |
2980 | { | |
2981 | struct cpu_map *cpus = evsel->cpus; | |
2982 | struct thread_map *threads = evsel->threads; | |
2983 | ||
2984 | if (perf_evsel__alloc_id(evsel, cpus->nr, threads->nr)) | |
2985 | return -ENOMEM; | |
2986 | ||
2987 | return store_evsel_ids(evsel, evlist); | |
2988 | } |