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