evlist.c 37.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2 3 4 5 6 7
/*
 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
 *
 * Parts came from builtin-{top,stat,record}.c, see those files for further
 * copyright notes.
 */
8
#include <api/fs/fs.h>
9
#include <errno.h>
10
#include <inttypes.h>
11
#include <poll.h>
12
#include "cpumap.h"
13
#include "util/mmap.h"
14
#include "thread_map.h"
15
#include "target.h"
16 17
#include "evlist.h"
#include "evsel.h"
A
Adrian Hunter 已提交
18
#include "debug.h"
19
#include "units.h"
20
#include <internal/lib.h> // page_size
21
#include "affinity.h"
22
#include "../perf.h"
23
#include "asm/bug.h"
24
#include "bpf-event.h"
25
#include "util/string2.h"
26
#include "util/perf_api_probe.h"
27
#include <signal.h>
28
#include <unistd.h>
29
#include <sched.h>
30
#include <stdlib.h>
31

32
#include "parse-events.h"
33
#include <subcmd/parse-options.h>
34

35
#include <fcntl.h>
36
#include <sys/ioctl.h>
37 38
#include <sys/mman.h>

39 40
#include <linux/bitops.h>
#include <linux/hash.h>
41
#include <linux/log2.h>
42
#include <linux/err.h>
43
#include <linux/string.h>
44
#include <linux/zalloc.h>
45
#include <perf/evlist.h>
46
#include <perf/evsel.h>
47
#include <perf/cpumap.h>
48
#include <perf/mmap.h>
49

50 51
#include <internal/xyarray.h>

52 53 54 55
#ifdef LACKS_SIGQUEUE_PROTOTYPE
int sigqueue(pid_t pid, int sig, const union sigval value);
#endif

56
#define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
57
#define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y)
58

59 60
void evlist__init(struct evlist *evlist, struct perf_cpu_map *cpus,
		  struct perf_thread_map *threads)
61
{
62
	perf_evlist__init(&evlist->core);
63
	perf_evlist__set_maps(&evlist->core, cpus, threads);
64
	evlist->workload.pid = -1;
65
	evlist->bkw_mmap_state = BKW_MMAP_NOTREADY;
66 67
}

68
struct evlist *evlist__new(void)
69
{
70
	struct evlist *evlist = zalloc(sizeof(*evlist));
71

72
	if (evlist != NULL)
73
		evlist__init(evlist, NULL, NULL);
74 75 76 77

	return evlist;
}

78
struct evlist *perf_evlist__new_default(void)
79
{
80
	struct evlist *evlist = evlist__new();
81 82

	if (evlist && perf_evlist__add_default(evlist)) {
83
		evlist__delete(evlist);
84 85 86 87 88 89
		evlist = NULL;
	}

	return evlist;
}

90
struct evlist *perf_evlist__new_dummy(void)
91
{
92
	struct evlist *evlist = evlist__new();
93 94

	if (evlist && perf_evlist__add_dummy(evlist)) {
95
		evlist__delete(evlist);
96 97 98 99 100 101
		evlist = NULL;
	}

	return evlist;
}

102 103 104 105 106 107 108
/**
 * perf_evlist__set_id_pos - set the positions of event ids.
 * @evlist: selected event list
 *
 * Events with compatible sample types all have the same id_pos
 * and is_pos.  For convenience, put a copy on evlist.
 */
109
void perf_evlist__set_id_pos(struct evlist *evlist)
110
{
111
	struct evsel *first = evlist__first(evlist);
112 113 114 115 116

	evlist->id_pos = first->id_pos;
	evlist->is_pos = first->is_pos;
}

117
static void perf_evlist__update_id_pos(struct evlist *evlist)
118
{
119
	struct evsel *evsel;
120

121
	evlist__for_each_entry(evlist, evsel)
122
		evsel__calc_id_pos(evsel);
123 124 125 126

	perf_evlist__set_id_pos(evlist);
}

127
static void evlist__purge(struct evlist *evlist)
128
{
129
	struct evsel *pos, *n;
130

131
	evlist__for_each_entry_safe(evlist, n, pos) {
132
		list_del_init(&pos->core.node);
133
		pos->evlist = NULL;
134
		evsel__delete(pos);
135 136
	}

137
	evlist->core.nr_entries = 0;
138 139
}

140
void evlist__exit(struct evlist *evlist)
141
{
142
	zfree(&evlist->mmap);
143
	zfree(&evlist->overwrite_mmap);
J
Jiri Olsa 已提交
144
	perf_evlist__exit(&evlist->core);
145 146
}

147
void evlist__delete(struct evlist *evlist)
148
{
149 150 151
	if (evlist == NULL)
		return;

152
	evlist__munmap(evlist);
153
	evlist__close(evlist);
154
	evlist__purge(evlist);
155
	evlist__exit(evlist);
156 157 158
	free(evlist);
}

159
void evlist__add(struct evlist *evlist, struct evsel *entry)
160
{
161
	entry->evlist = evlist;
162
	entry->idx = evlist->core.nr_entries;
163
	entry->tracking = !entry->idx;
164

165 166 167
	perf_evlist__add(&evlist->core, &entry->core);

	if (evlist->core.nr_entries == 1)
168
		perf_evlist__set_id_pos(evlist);
169 170
}

171
void evlist__remove(struct evlist *evlist, struct evsel *evsel)
172 173
{
	evsel->evlist = NULL;
174
	perf_evlist__remove(&evlist->core, &evsel->core);
175 176
}

177
void perf_evlist__splice_list_tail(struct evlist *evlist,
178
				   struct list_head *list)
179
{
180
	struct evsel *evsel, *temp;
181

182
	__evlist__for_each_entry_safe(list, temp, evsel) {
183
		list_del_init(&evsel->core.node);
184
		evlist__add(evlist, evsel);
185
	}
186 187
}

188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
int __evlist__set_tracepoints_handlers(struct evlist *evlist,
				       const struct evsel_str_handler *assocs, size_t nr_assocs)
{
	struct evsel *evsel;
	size_t i;
	int err;

	for (i = 0; i < nr_assocs; i++) {
		// Adding a handler for an event not in this evlist, just ignore it.
		evsel = perf_evlist__find_tracepoint_by_name(evlist, assocs[i].name);
		if (evsel == NULL)
			continue;

		err = -EEXIST;
		if (evsel->handler != NULL)
			goto out;
		evsel->handler = assocs[i].handler;
	}

	err = 0;
out:
	return err;
}

212 213
void __perf_evlist__set_leader(struct list_head *list)
{
214
	struct evsel *evsel, *leader;
215

216 217
	leader = list_entry(list->next, struct evsel, core.node);
	evsel = list_entry(list->prev, struct evsel, core.node);
218

219
	leader->core.nr_members = evsel->idx - leader->idx + 1;
220

221
	__evlist__for_each_entry(list, evsel) {
222
		evsel->leader = leader;
223 224 225
	}
}

226
void perf_evlist__set_leader(struct evlist *evlist)
227
{
228 229
	if (evlist->core.nr_entries) {
		evlist->nr_groups = evlist->core.nr_entries > 1 ? 1 : 0;
230
		__perf_evlist__set_leader(&evlist->core.entries);
231
	}
232 233
}

234
int __perf_evlist__add_default(struct evlist *evlist, bool precise)
235
{
236
	struct evsel *evsel = evsel__new_cycles(precise);
237

238
	if (evsel == NULL)
239
		return -ENOMEM;
240

241
	evlist__add(evlist, evsel);
242 243
	return 0;
}
244

245
int perf_evlist__add_dummy(struct evlist *evlist)
246 247 248 249 250 251
{
	struct perf_event_attr attr = {
		.type	= PERF_TYPE_SOFTWARE,
		.config = PERF_COUNT_SW_DUMMY,
		.size	= sizeof(attr), /* to capture ABI version */
	};
252
	struct evsel *evsel = evsel__new_idx(&attr, evlist->core.nr_entries);
253 254 255 256

	if (evsel == NULL)
		return -ENOMEM;

257
	evlist__add(evlist, evsel);
258 259 260
	return 0;
}

261
static int evlist__add_attrs(struct evlist *evlist,
262
				  struct perf_event_attr *attrs, size_t nr_attrs)
263
{
264
	struct evsel *evsel, *n;
265 266 267 268
	LIST_HEAD(head);
	size_t i;

	for (i = 0; i < nr_attrs; i++) {
269
		evsel = evsel__new_idx(attrs + i, evlist->core.nr_entries + i);
270 271
		if (evsel == NULL)
			goto out_delete_partial_list;
272
		list_add_tail(&evsel->core.node, &head);
273 274
	}

275
	perf_evlist__splice_list_tail(evlist, &head);
276 277 278 279

	return 0;

out_delete_partial_list:
280
	__evlist__for_each_entry_safe(&head, n, evsel)
281
		evsel__delete(evsel);
282 283 284
	return -1;
}

285
int __perf_evlist__add_default_attrs(struct evlist *evlist,
286 287 288 289 290 291 292
				     struct perf_event_attr *attrs, size_t nr_attrs)
{
	size_t i;

	for (i = 0; i < nr_attrs; i++)
		event_attr_init(attrs + i);

293
	return evlist__add_attrs(evlist, attrs, nr_attrs);
294 295
}

296
struct evsel *
297
perf_evlist__find_tracepoint_by_id(struct evlist *evlist, int id)
298
{
299
	struct evsel *evsel;
300

301
	evlist__for_each_entry(evlist, evsel) {
302 303
		if (evsel->core.attr.type   == PERF_TYPE_TRACEPOINT &&
		    (int)evsel->core.attr.config == id)
304 305 306 307 308 309
			return evsel;
	}

	return NULL;
}

310
struct evsel *
311
perf_evlist__find_tracepoint_by_name(struct evlist *evlist,
312 313
				     const char *name)
{
314
	struct evsel *evsel;
315

316
	evlist__for_each_entry(evlist, evsel) {
317
		if ((evsel->core.attr.type == PERF_TYPE_TRACEPOINT) &&
318 319 320 321 322 323 324
		    (strcmp(evsel->name, name) == 0))
			return evsel;
	}

	return NULL;
}

325
int perf_evlist__add_newtp(struct evlist *evlist,
326 327
			   const char *sys, const char *name, void *handler)
{
328
	struct evsel *evsel = evsel__newtp(sys, name);
329

330
	if (IS_ERR(evsel))
331 332
		return -1;

333
	evsel->handler = handler;
334
	evlist__add(evlist, evsel);
335 336 337
	return 0;
}

338
static int perf_evlist__nr_threads(struct evlist *evlist,
339
				   struct evsel *evsel)
340
{
341
	if (evsel->core.system_wide)
342 343
		return 1;
	else
344
		return perf_thread_map__nr(evlist->core.threads);
345 346
}

347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
void evlist__cpu_iter_start(struct evlist *evlist)
{
	struct evsel *pos;

	/*
	 * Reset the per evsel cpu_iter. This is needed because
	 * each evsel's cpumap may have a different index space,
	 * and some operations need the index to modify
	 * the FD xyarray (e.g. open, close)
	 */
	evlist__for_each_entry(evlist, pos)
		pos->cpu_iter = 0;
}

bool evsel__cpu_iter_skip_no_inc(struct evsel *ev, int cpu)
{
	if (ev->cpu_iter >= ev->core.cpus->nr)
		return true;
	if (cpu >= 0 && ev->core.cpus->map[ev->cpu_iter] != cpu)
		return true;
	return false;
}

bool evsel__cpu_iter_skip(struct evsel *ev, int cpu)
{
	if (!evsel__cpu_iter_skip_no_inc(ev, cpu)) {
		ev->cpu_iter++;
		return false;
	}
	return true;
}

379
void evlist__disable(struct evlist *evlist)
380
{
381
	struct evsel *pos;
382
	struct affinity affinity;
383 384
	int cpu, i, imm = 0;
	bool has_imm = false;
385

386 387 388
	if (affinity__setup(&affinity) < 0)
		return;

389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
	/* Disable 'immediate' events last */
	for (imm = 0; imm <= 1; imm++) {
		evlist__for_each_cpu(evlist, i, cpu) {
			affinity__set(&affinity, cpu);

			evlist__for_each_entry(evlist, pos) {
				if (evsel__cpu_iter_skip(pos, cpu))
					continue;
				if (pos->disabled || !evsel__is_group_leader(pos) || !pos->core.fd)
					continue;
				if (pos->immediate)
					has_imm = true;
				if (pos->immediate != imm)
					continue;
				evsel__disable_cpu(pos, pos->cpu_iter - 1);
			}
405
		}
406 407
		if (!has_imm)
			break;
408
	}
409

410
	affinity__cleanup(&affinity);
411
	evlist__for_each_entry(evlist, pos) {
412
		if (!evsel__is_group_leader(pos) || !pos->core.fd)
413
			continue;
414
		pos->disabled = true;
415
	}
416 417

	evlist->enabled = false;
418 419
}

420
void evlist__enable(struct evlist *evlist)
421
{
422
	struct evsel *pos;
423 424
	struct affinity affinity;
	int cpu, i;
425

426 427 428 429 430 431 432 433 434
	if (affinity__setup(&affinity) < 0)
		return;

	evlist__for_each_cpu(evlist, i, cpu) {
		affinity__set(&affinity, cpu);

		evlist__for_each_entry(evlist, pos) {
			if (evsel__cpu_iter_skip(pos, cpu))
				continue;
435
			if (!evsel__is_group_leader(pos) || !pos->core.fd)
436 437 438 439 440
				continue;
			evsel__enable_cpu(pos, pos->cpu_iter - 1);
		}
	}
	affinity__cleanup(&affinity);
441
	evlist__for_each_entry(evlist, pos) {
442
		if (!evsel__is_group_leader(pos) || !pos->core.fd)
443
			continue;
444
		pos->disabled = false;
445
	}
446 447 448 449

	evlist->enabled = true;
}

450
void perf_evlist__toggle_enable(struct evlist *evlist)
451
{
452
	(evlist->enabled ? evlist__disable : evlist__enable)(evlist);
453 454
}

455
static int perf_evlist__enable_event_cpu(struct evlist *evlist,
456
					 struct evsel *evsel, int cpu)
457
{
458
	int thread;
459 460
	int nr_threads = perf_evlist__nr_threads(evlist, evsel);

461
	if (!evsel->core.fd)
462 463 464
		return -EINVAL;

	for (thread = 0; thread < nr_threads; thread++) {
465
		int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0);
466 467 468 469 470 471
		if (err)
			return err;
	}
	return 0;
}

472
static int perf_evlist__enable_event_thread(struct evlist *evlist,
473
					    struct evsel *evsel,
474 475
					    int thread)
{
476
	int cpu;
477
	int nr_cpus = perf_cpu_map__nr(evlist->core.cpus);
478

479
	if (!evsel->core.fd)
480 481 482
		return -EINVAL;

	for (cpu = 0; cpu < nr_cpus; cpu++) {
483
		int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0);
484 485 486 487 488 489
		if (err)
			return err;
	}
	return 0;
}

490
int perf_evlist__enable_event_idx(struct evlist *evlist,
491
				  struct evsel *evsel, int idx)
492
{
493
	bool per_cpu_mmaps = !perf_cpu_map__empty(evlist->core.cpus);
494 495 496 497 498 499 500

	if (per_cpu_mmaps)
		return perf_evlist__enable_event_cpu(evlist, evsel, idx);
	else
		return perf_evlist__enable_event_thread(evlist, evsel, idx);
}

501
int evlist__add_pollfd(struct evlist *evlist, int fd)
502
{
503
	return perf_evlist__add_pollfd(&evlist->core, fd, NULL, POLLIN);
504 505
}

506
int evlist__filter_pollfd(struct evlist *evlist, short revents_and_mask)
507
{
508
	return perf_evlist__filter_pollfd(&evlist->core, revents_and_mask);
509 510
}

511
int evlist__poll(struct evlist *evlist, int timeout)
512
{
513
	return perf_evlist__poll(&evlist->core, timeout);
514 515
}

516
struct perf_sample_id *perf_evlist__id2sid(struct evlist *evlist, u64 id)
517 518 519 520 521 522
{
	struct hlist_head *head;
	struct perf_sample_id *sid;
	int hash;

	hash = hash_64(id, PERF_EVLIST__HLIST_BITS);
523
	head = &evlist->core.heads[hash];
524

525
	hlist_for_each_entry(sid, head, node)
526
		if (sid->id == id)
527 528 529 530 531
			return sid;

	return NULL;
}

532
struct evsel *perf_evlist__id2evsel(struct evlist *evlist, u64 id)
533 534 535
{
	struct perf_sample_id *sid;

536
	if (evlist->core.nr_entries == 1 || !id)
537
		return evlist__first(evlist);
538 539 540

	sid = perf_evlist__id2sid(evlist, id);
	if (sid)
541
		return container_of(sid->evsel, struct evsel, core);
542 543

	if (!perf_evlist__sample_id_all(evlist))
544
		return evlist__first(evlist);
545

546 547
	return NULL;
}
548

549
struct evsel *perf_evlist__id2evsel_strict(struct evlist *evlist,
550 551 552 553 554 555 556 557 558
						u64 id)
{
	struct perf_sample_id *sid;

	if (!id)
		return NULL;

	sid = perf_evlist__id2sid(evlist, id);
	if (sid)
559
		return container_of(sid->evsel, struct evsel, core);
560 561 562 563

	return NULL;
}

564
static int perf_evlist__event2id(struct evlist *evlist,
565 566
				 union perf_event *event, u64 *id)
{
567
	const __u64 *array = event->sample.array;
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
	ssize_t n;

	n = (event->header.size - sizeof(event->header)) >> 3;

	if (event->header.type == PERF_RECORD_SAMPLE) {
		if (evlist->id_pos >= n)
			return -1;
		*id = array[evlist->id_pos];
	} else {
		if (evlist->is_pos > n)
			return -1;
		n -= evlist->is_pos;
		*id = array[n];
	}
	return 0;
}

585
struct evsel *perf_evlist__event2evsel(struct evlist *evlist,
J
Jiri Olsa 已提交
586
					    union perf_event *event)
587
{
588
	struct evsel *first = evlist__first(evlist);
589 590 591 592 593
	struct hlist_head *head;
	struct perf_sample_id *sid;
	int hash;
	u64 id;

594
	if (evlist->core.nr_entries == 1)
595 596
		return first;

597
	if (!first->core.attr.sample_id_all &&
598 599
	    event->header.type != PERF_RECORD_SAMPLE)
		return first;
600 601 602 603 604 605

	if (perf_evlist__event2id(evlist, event, &id))
		return NULL;

	/* Synthesized events have an id of zero */
	if (!id)
606
		return first;
607 608

	hash = hash_64(id, PERF_EVLIST__HLIST_BITS);
609
	head = &evlist->core.heads[hash];
610 611 612

	hlist_for_each_entry(sid, head, node) {
		if (sid->id == id)
613
			return container_of(sid->evsel, struct evsel, core);
614 615 616 617
	}
	return NULL;
}

618
static int perf_evlist__set_paused(struct evlist *evlist, bool value)
W
Wang Nan 已提交
619 620 621
{
	int i;

622
	if (!evlist->overwrite_mmap)
623 624
		return 0;

625
	for (i = 0; i < evlist->core.nr_mmaps; i++) {
626
		int fd = evlist->overwrite_mmap[i].core.fd;
W
Wang Nan 已提交
627 628 629 630 631 632 633 634 635 636 637
		int err;

		if (fd < 0)
			continue;
		err = ioctl(fd, PERF_EVENT_IOC_PAUSE_OUTPUT, value ? 1 : 0);
		if (err)
			return err;
	}
	return 0;
}

638
static int perf_evlist__pause(struct evlist *evlist)
W
Wang Nan 已提交
639 640 641 642
{
	return perf_evlist__set_paused(evlist, true);
}

643
static int perf_evlist__resume(struct evlist *evlist)
W
Wang Nan 已提交
644 645 646 647
{
	return perf_evlist__set_paused(evlist, false);
}

648
static void evlist__munmap_nofree(struct evlist *evlist)
649
{
650
	int i;
651

652
	if (evlist->mmap)
653
		for (i = 0; i < evlist->core.nr_mmaps; i++)
654
			perf_mmap__munmap(&evlist->mmap[i].core);
655

656
	if (evlist->overwrite_mmap)
657
		for (i = 0; i < evlist->core.nr_mmaps; i++)
658
			perf_mmap__munmap(&evlist->overwrite_mmap[i].core);
659
}
660

661
void evlist__munmap(struct evlist *evlist)
662
{
663
	evlist__munmap_nofree(evlist);
664
	zfree(&evlist->mmap);
665
	zfree(&evlist->overwrite_mmap);
666 667
}

668 669 670 671 672 673 674
static void perf_mmap__unmap_cb(struct perf_mmap *map)
{
	struct mmap *m = container_of(map, struct mmap, core);

	mmap__munmap(m);
}

675 676
static struct mmap *evlist__alloc_mmap(struct evlist *evlist,
				       bool overwrite)
677
{
W
Wang Nan 已提交
678
	int i;
679
	struct mmap *map;
W
Wang Nan 已提交
680

681
	map = zalloc(evlist->core.nr_mmaps * sizeof(struct mmap));
682 683
	if (!map)
		return NULL;
684

685
	for (i = 0; i < evlist->core.nr_mmaps; i++) {
686 687
		struct perf_mmap *prev = i ? &map[i - 1].core : NULL;

688 689
		/*
		 * When the perf_mmap() call is made we grab one refcount, plus
690
		 * one extra to let perf_mmap__consume() get the last
691 692 693 694 695 696
		 * events after all real references (perf_mmap__get()) are
		 * dropped.
		 *
		 * Each PERF_EVENT_IOC_SET_OUTPUT points to this mmap and
		 * thus does perf_mmap__get() on it.
		 */
697
		perf_mmap__init(&map[i].core, prev, overwrite, perf_mmap__unmap_cb);
698
	}
699

700
	return map;
701 702
}

703 704 705 706 707 708 709 710 711 712 713
static void
perf_evlist__mmap_cb_idx(struct perf_evlist *_evlist,
			 struct perf_mmap_param *_mp,
			 int idx, bool per_cpu)
{
	struct evlist *evlist = container_of(_evlist, struct evlist, core);
	struct mmap_params *mp = container_of(_mp, struct mmap_params, core);

	auxtrace_mmap_params__set_idx(&mp->auxtrace_mp, evlist, idx, per_cpu);
}

714 715 716 717
static struct perf_mmap*
perf_evlist__mmap_cb_get(struct perf_evlist *_evlist, bool overwrite, int idx)
{
	struct evlist *evlist = container_of(_evlist, struct evlist, core);
718
	struct mmap *maps;
719

720
	maps = overwrite ? evlist->overwrite_mmap : evlist->mmap;
721

722 723 724 725
	if (!maps) {
		maps = evlist__alloc_mmap(evlist, overwrite);
		if (!maps)
			return NULL;
726

727
		if (overwrite) {
728 729 730
			evlist->overwrite_mmap = maps;
			if (evlist->bkw_mmap_state == BKW_MMAP_NOTREADY)
				perf_evlist__toggle_bkw_mmap(evlist, BKW_MMAP_RUNNING);
731 732
		} else {
			evlist->mmap = maps;
733 734 735 736 737 738
		}
	}

	return &maps[idx].core;
}

739 740 741 742 743 744 745 746 747 748
static int
perf_evlist__mmap_cb_mmap(struct perf_mmap *_map, struct perf_mmap_param *_mp,
			  int output, int cpu)
{
	struct mmap *map = container_of(_map, struct mmap, core);
	struct mmap_params *mp = container_of(_mp, struct mmap_params, core);

	return mmap__mmap(map, mp, output, cpu);
}

749
unsigned long perf_event_mlock_kb_in_pages(void)
750
{
751 752
	unsigned long pages;
	int max;
753

754 755 756 757 758 759 760 761 762 763
	if (sysctl__read_int("kernel/perf_event_mlock_kb", &max) < 0) {
		/*
		 * Pick a once upon a time good value, i.e. things look
		 * strange since we can't read a sysctl value, but lets not
		 * die yet...
		 */
		max = 512;
	} else {
		max -= (page_size / 1024);
	}
764

765 766 767 768 769 770 771
	pages = (max * 1024) / page_size;
	if (!is_power_of_2(pages))
		pages = rounddown_pow_of_two(pages);

	return pages;
}

772
size_t evlist__mmap_size(unsigned long pages)
773 774 775 776
{
	if (pages == UINT_MAX)
		pages = perf_event_mlock_kb_in_pages();
	else if (!is_power_of_2(pages))
777 778 779 780 781
		return 0;

	return (pages + 1) * page_size;
}

782 783
static long parse_pages_arg(const char *str, unsigned long min,
			    unsigned long max)
784
{
785
	unsigned long pages, val;
786 787 788 789 790 791 792
	static struct parse_tag tags[] = {
		{ .tag  = 'B', .mult = 1       },
		{ .tag  = 'K', .mult = 1 << 10 },
		{ .tag  = 'M', .mult = 1 << 20 },
		{ .tag  = 'G', .mult = 1 << 30 },
		{ .tag  = 0 },
	};
793

794
	if (str == NULL)
795
		return -EINVAL;
796

797
	val = parse_tag_value(str, tags);
798
	if (val != (unsigned long) -1) {
799 800 801 802 803 804
		/* we got file size value */
		pages = PERF_ALIGN(val, page_size) / page_size;
	} else {
		/* we got pages count value */
		char *eptr;
		pages = strtoul(str, &eptr, 10);
805 806
		if (*eptr != '\0')
			return -EINVAL;
807 808
	}

809
	if (pages == 0 && min == 0) {
810
		/* leave number of pages at 0 */
811
	} else if (!is_power_of_2(pages)) {
812 813
		char buf[100];

814
		/* round pages up to next power of 2 */
815
		pages = roundup_pow_of_two(pages);
816 817
		if (!pages)
			return -EINVAL;
818 819 820 821

		unit_number__scnprintf(buf, sizeof(buf), pages * page_size);
		pr_info("rounding mmap pages size to %s (%lu pages)\n",
			buf, pages);
822 823
	}

824 825 826 827 828 829
	if (pages > max)
		return -EINVAL;

	return pages;
}

830
int __perf_evlist__parse_mmap_pages(unsigned int *mmap_pages, const char *str)
831 832 833 834
{
	unsigned long max = UINT_MAX;
	long pages;

A
Adrian Hunter 已提交
835
	if (max > SIZE_MAX / page_size)
836 837 838 839 840
		max = SIZE_MAX / page_size;

	pages = parse_pages_arg(str, 1, max);
	if (pages < 0) {
		pr_err("Invalid argument for --mmap_pages/-m\n");
841 842 843 844 845 846 847
		return -1;
	}

	*mmap_pages = pages;
	return 0;
}

848 849 850 851 852 853
int perf_evlist__parse_mmap_pages(const struct option *opt, const char *str,
				  int unset __maybe_unused)
{
	return __perf_evlist__parse_mmap_pages(opt->value, str);
}

854
/**
855
 * evlist__mmap_ex - Create mmaps to receive events.
856 857 858
 * @evlist: list of events
 * @pages: map length in pages
 * @overwrite: overwrite older events?
859 860
 * @auxtrace_pages - auxtrace map length in pages
 * @auxtrace_overwrite - overwrite older auxtrace data?
861
 *
862
 * If @overwrite is %false the user needs to signal event consumption using
863
 * perf_mmap__write_tail().  Using evlist__mmap_read() does this
864
 * automatically.
865
 *
866 867 868
 * Similarly, if @auxtrace_overwrite is %false the user needs to signal data
 * consumption using auxtrace_mmap__write_tail().
 *
869
 * Return: %0 on success, negative error code otherwise.
870
 */
871
int evlist__mmap_ex(struct evlist *evlist, unsigned int pages,
872
			 unsigned int auxtrace_pages,
873 874
			 bool auxtrace_overwrite, int nr_cblocks, int affinity, int flush,
			 int comp_level)
875
{
W
Wang Nan 已提交
876 877 878 879 880
	/*
	 * Delay setting mp.prot: set it before calling perf_mmap__mmap.
	 * Its value is decided by evsel's write_backward.
	 * So &mp should not be passed through const pointer.
	 */
J
Jiri Olsa 已提交
881 882 883 884 885 886
	struct mmap_params mp = {
		.nr_cblocks	= nr_cblocks,
		.affinity	= affinity,
		.flush		= flush,
		.comp_level	= comp_level
	};
887
	struct perf_evlist_mmap_ops ops = {
888 889 890
		.idx  = perf_evlist__mmap_cb_idx,
		.get  = perf_evlist__mmap_cb_get,
		.mmap = perf_evlist__mmap_cb_mmap,
891
	};
892

893 894
	evlist->core.mmap_len = evlist__mmap_size(pages);
	pr_debug("mmap size %zuB\n", evlist->core.mmap_len);
895

896
	auxtrace_mmap_params__init(&mp.auxtrace_mp, evlist->core.mmap_len,
897 898
				   auxtrace_pages, auxtrace_overwrite);

899
	return perf_evlist__mmap_ops(&evlist->core, &ops, &mp.core);
900
}
901

902
int evlist__mmap(struct evlist *evlist, unsigned int pages)
903
{
904
	return evlist__mmap_ex(evlist, pages, 0, false, 0, PERF_AFFINITY_SYS, 1, 0);
905 906
}

907
int perf_evlist__create_maps(struct evlist *evlist, struct target *target)
908
{
909
	bool all_threads = (target->per_thread && target->system_wide);
910
	struct perf_cpu_map *cpus;
911
	struct perf_thread_map *threads;
912

913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
	/*
	 * If specify '-a' and '--per-thread' to perf record, perf record
	 * will override '--per-thread'. target->per_thread = false and
	 * target->system_wide = true.
	 *
	 * If specify '--per-thread' only to perf record,
	 * target->per_thread = true and target->system_wide = false.
	 *
	 * So target->per_thread && target->system_wide is false.
	 * For perf record, thread_map__new_str doesn't call
	 * thread_map__new_all_cpus. That will keep perf record's
	 * current behavior.
	 *
	 * For perf stat, it allows the case that target->per_thread and
	 * target->system_wide are all true. It means to collect system-wide
	 * per-thread data. thread_map__new_str will call
	 * thread_map__new_all_cpus to enumerate all threads.
	 */
931
	threads = thread_map__new_str(target->pid, target->tid, target->uid,
932
				      all_threads);
933

934
	if (!threads)
935 936
		return -1;

937
	if (target__uses_dummy_map(target))
938
		cpus = perf_cpu_map__dummy_new();
939
	else
940
		cpus = perf_cpu_map__new(target->cpu_list);
941

942
	if (!cpus)
943 944
		goto out_delete_threads;

945
	evlist->core.has_user_cpus = !!target->cpu_list;
946

947
	perf_evlist__set_maps(&evlist->core, cpus, threads);
948 949

	return 0;
950 951

out_delete_threads:
952
	perf_thread_map__put(threads);
953 954 955
	return -1;
}

956
void __perf_evlist__set_sample_bit(struct evlist *evlist,
957 958
				   enum perf_event_sample_format bit)
{
959
	struct evsel *evsel;
960

961
	evlist__for_each_entry(evlist, evsel)
962
		__evsel__set_sample_bit(evsel, bit);
963 964
}

965
void __perf_evlist__reset_sample_bit(struct evlist *evlist,
966 967
				     enum perf_event_sample_format bit)
{
968
	struct evsel *evsel;
969

970
	evlist__for_each_entry(evlist, evsel)
971
		__evsel__reset_sample_bit(evsel, bit);
972 973
}

974
int perf_evlist__apply_filters(struct evlist *evlist, struct evsel **err_evsel)
975
{
976
	struct evsel *evsel;
977
	int err = 0;
978

979
	evlist__for_each_entry(evlist, evsel) {
980
		if (evsel->filter == NULL)
981
			continue;
982

983 984 985 986
		/*
		 * filters only work for tracepoint event, which doesn't have cpu limit.
		 * So evlist and evsel should always be same.
		 */
987
		err = perf_evsel__apply_filter(&evsel->core, evsel->filter);
988 989
		if (err) {
			*err_evsel = evsel;
990
			break;
991
		}
992 993
	}

994 995 996
	return err;
}

997
int perf_evlist__set_tp_filter(struct evlist *evlist, const char *filter)
998
{
999
	struct evsel *evsel;
1000 1001
	int err = 0;

1002 1003 1004
	if (filter == NULL)
		return -1;

1005
	evlist__for_each_entry(evlist, evsel) {
1006
		if (evsel->core.attr.type != PERF_TYPE_TRACEPOINT)
1007 1008
			continue;

1009
		err = evsel__set_filter(evsel, filter);
1010 1011 1012 1013 1014
		if (err)
			break;
	}

	return err;
1015
}
1016

1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
int perf_evlist__append_tp_filter(struct evlist *evlist, const char *filter)
{
	struct evsel *evsel;
	int err = 0;

	if (filter == NULL)
		return -1;

	evlist__for_each_entry(evlist, evsel) {
		if (evsel->core.attr.type != PERF_TYPE_TRACEPOINT)
			continue;

1029
		err = evsel__append_tp_filter(evsel, filter);
1030 1031 1032 1033 1034 1035 1036
		if (err)
			break;
	}

	return err;
}

1037
char *asprintf__tp_filter_pids(size_t npids, pid_t *pids)
1038 1039
{
	char *filter;
1040
	size_t i;
1041

1042 1043 1044
	for (i = 0; i < npids; ++i) {
		if (i == 0) {
			if (asprintf(&filter, "common_pid != %d", pids[i]) < 0)
1045
				return NULL;
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
		} else {
			char *tmp;

			if (asprintf(&tmp, "%s && common_pid != %d", filter, pids[i]) < 0)
				goto out_free;

			free(filter);
			filter = tmp;
		}
	}
1056

1057
	return filter;
1058
out_free:
1059 1060 1061 1062 1063 1064 1065 1066 1067
	free(filter);
	return NULL;
}

int perf_evlist__set_tp_filter_pids(struct evlist *evlist, size_t npids, pid_t *pids)
{
	char *filter = asprintf__tp_filter_pids(npids, pids);
	int ret = perf_evlist__set_tp_filter(evlist, filter);

1068 1069 1070 1071
	free(filter);
	return ret;
}

1072
int perf_evlist__set_tp_filter_pid(struct evlist *evlist, pid_t pid)
1073
{
1074
	return perf_evlist__set_tp_filter_pids(evlist, 1, &pid);
1075 1076
}

1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
int perf_evlist__append_tp_filter_pids(struct evlist *evlist, size_t npids, pid_t *pids)
{
	char *filter = asprintf__tp_filter_pids(npids, pids);
	int ret = perf_evlist__append_tp_filter(evlist, filter);

	free(filter);
	return ret;
}

int perf_evlist__append_tp_filter_pid(struct evlist *evlist, pid_t pid)
{
	return perf_evlist__append_tp_filter_pids(evlist, 1, &pid);
}

1091
bool perf_evlist__valid_sample_type(struct evlist *evlist)
1092
{
1093
	struct evsel *pos;
1094

1095
	if (evlist->core.nr_entries == 1)
1096 1097 1098 1099 1100
		return true;

	if (evlist->id_pos < 0 || evlist->is_pos < 0)
		return false;

1101
	evlist__for_each_entry(evlist, pos) {
1102 1103
		if (pos->id_pos != evlist->id_pos ||
		    pos->is_pos != evlist->is_pos)
1104
			return false;
1105 1106
	}

1107
	return true;
1108 1109
}

1110
u64 __perf_evlist__combined_sample_type(struct evlist *evlist)
1111
{
1112
	struct evsel *evsel;
1113 1114 1115 1116

	if (evlist->combined_sample_type)
		return evlist->combined_sample_type;

1117
	evlist__for_each_entry(evlist, evsel)
1118
		evlist->combined_sample_type |= evsel->core.attr.sample_type;
1119 1120 1121 1122

	return evlist->combined_sample_type;
}

1123
u64 perf_evlist__combined_sample_type(struct evlist *evlist)
1124 1125 1126
{
	evlist->combined_sample_type = 0;
	return __perf_evlist__combined_sample_type(evlist);
1127 1128
}

1129
u64 perf_evlist__combined_branch_type(struct evlist *evlist)
1130
{
1131
	struct evsel *evsel;
1132 1133
	u64 branch_type = 0;

1134
	evlist__for_each_entry(evlist, evsel)
1135
		branch_type |= evsel->core.attr.branch_sample_type;
1136 1137 1138
	return branch_type;
}

1139
bool perf_evlist__valid_read_format(struct evlist *evlist)
1140
{
1141
	struct evsel *first = evlist__first(evlist), *pos = first;
1142 1143
	u64 read_format = first->core.attr.read_format;
	u64 sample_type = first->core.attr.sample_type;
1144

1145
	evlist__for_each_entry(evlist, pos) {
1146 1147 1148 1149
		if (read_format != pos->core.attr.read_format) {
			pr_debug("Read format differs %#" PRIx64 " vs %#" PRIx64 "\n",
				 read_format, (u64)pos->core.attr.read_format);
		}
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
	}

	/* PERF_SAMPLE_READ imples PERF_FORMAT_ID. */
	if ((sample_type & PERF_SAMPLE_READ) &&
	    !(read_format & PERF_FORMAT_ID)) {
		return false;
	}

	return true;
}

1161
u16 perf_evlist__id_hdr_size(struct evlist *evlist)
1162
{
1163
	struct evsel *first = evlist__first(evlist);
1164 1165 1166 1167
	struct perf_sample *data;
	u64 sample_type;
	u16 size = 0;

1168
	if (!first->core.attr.sample_id_all)
1169 1170
		goto out;

1171
	sample_type = first->core.attr.sample_type;
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186

	if (sample_type & PERF_SAMPLE_TID)
		size += sizeof(data->tid) * 2;

       if (sample_type & PERF_SAMPLE_TIME)
		size += sizeof(data->time);

	if (sample_type & PERF_SAMPLE_ID)
		size += sizeof(data->id);

	if (sample_type & PERF_SAMPLE_STREAM_ID)
		size += sizeof(data->stream_id);

	if (sample_type & PERF_SAMPLE_CPU)
		size += sizeof(data->cpu) * 2;
1187 1188 1189

	if (sample_type & PERF_SAMPLE_IDENTIFIER)
		size += sizeof(data->id);
1190 1191 1192 1193
out:
	return size;
}

1194
bool perf_evlist__valid_sample_id_all(struct evlist *evlist)
1195
{
1196
	struct evsel *first = evlist__first(evlist), *pos = first;
1197

1198
	evlist__for_each_entry_continue(evlist, pos) {
1199
		if (first->core.attr.sample_id_all != pos->core.attr.sample_id_all)
1200
			return false;
1201 1202
	}

1203 1204 1205
	return true;
}

1206
bool perf_evlist__sample_id_all(struct evlist *evlist)
1207
{
1208
	struct evsel *first = evlist__first(evlist);
1209
	return first->core.attr.sample_id_all;
1210
}
1211

1212
void perf_evlist__set_selected(struct evlist *evlist,
1213
			       struct evsel *evsel)
1214 1215 1216
{
	evlist->selected = evsel;
}
1217

1218
void evlist__close(struct evlist *evlist)
1219
{
1220
	struct evsel *evsel;
1221 1222
	struct affinity affinity;
	int cpu, i;
1223

1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
	/*
	 * With perf record core.cpus is usually NULL.
	 * Use the old method to handle this for now.
	 */
	if (!evlist->core.cpus) {
		evlist__for_each_entry_reverse(evlist, evsel)
			evsel__close(evsel);
		return;
	}

	if (affinity__setup(&affinity) < 0)
		return;
	evlist__for_each_cpu(evlist, i, cpu) {
		affinity__set(&affinity, cpu);

		evlist__for_each_entry_reverse(evlist, evsel) {
			if (evsel__cpu_iter_skip(evsel, cpu))
			    continue;
			perf_evsel__close_cpu(&evsel->core, evsel->cpu_iter - 1);
		}
	}
	affinity__cleanup(&affinity);
	evlist__for_each_entry_reverse(evlist, evsel) {
		perf_evsel__free_fd(&evsel->core);
		perf_evsel__free_id(&evsel->core);
	}
1250 1251
}

1252
static int perf_evlist__create_syswide_maps(struct evlist *evlist)
1253
{
1254
	struct perf_cpu_map *cpus;
1255
	struct perf_thread_map *threads;
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
	int err = -ENOMEM;

	/*
	 * Try reading /sys/devices/system/cpu/online to get
	 * an all cpus map.
	 *
	 * FIXME: -ENOMEM is the best we can do here, the cpu_map
	 * code needs an overhaul to properly forward the
	 * error, and we may not want to do that fallback to a
	 * default cpu identity map :-\
	 */
1267
	cpus = perf_cpu_map__new(NULL);
1268
	if (!cpus)
1269 1270
		goto out;

1271
	threads = perf_thread_map__new_dummy();
1272 1273
	if (!threads)
		goto out_put;
1274

1275
	perf_evlist__set_maps(&evlist->core, cpus, threads);
1276 1277
out:
	return err;
1278
out_put:
1279
	perf_cpu_map__put(cpus);
1280 1281 1282
	goto out;
}

1283
int evlist__open(struct evlist *evlist)
1284
{
1285
	struct evsel *evsel;
1286
	int err;
1287

1288 1289 1290 1291
	/*
	 * Default: one fd per CPU, all threads, aka systemwide
	 * as sys_perf_event_open(cpu = -1, thread = -1) is EINVAL
	 */
1292
	if (evlist->core.threads == NULL && evlist->core.cpus == NULL) {
1293 1294 1295 1296 1297
		err = perf_evlist__create_syswide_maps(evlist);
		if (err < 0)
			goto out_err;
	}

1298 1299
	perf_evlist__update_id_pos(evlist);

1300
	evlist__for_each_entry(evlist, evsel) {
1301
		err = evsel__open(evsel, evsel->core.cpus, evsel->core.threads);
1302 1303 1304 1305 1306 1307
		if (err < 0)
			goto out_err;
	}

	return 0;
out_err:
1308
	evlist__close(evlist);
1309
	errno = -err;
1310 1311
	return err;
}
1312

1313
int perf_evlist__prepare_workload(struct evlist *evlist, struct target *target,
1314
				  const char *argv[], bool pipe_output,
1315
				  void (*exec_error)(int signo, siginfo_t *info, void *ucontext))
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
{
	int child_ready_pipe[2], go_pipe[2];
	char bf;

	if (pipe(child_ready_pipe) < 0) {
		perror("failed to create 'ready' pipe");
		return -1;
	}

	if (pipe(go_pipe) < 0) {
		perror("failed to create 'go' pipe");
		goto out_close_ready_pipe;
	}

	evlist->workload.pid = fork();
	if (evlist->workload.pid < 0) {
		perror("failed to fork");
		goto out_close_pipes;
	}

	if (!evlist->workload.pid) {
1337 1338
		int ret;

1339
		if (pipe_output)
1340 1341
			dup2(2, 1);

1342 1343
		signal(SIGTERM, SIG_DFL);

1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
		close(child_ready_pipe[0]);
		close(go_pipe[1]);
		fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);

		/*
		 * Tell the parent we're ready to go
		 */
		close(child_ready_pipe[1]);

		/*
		 * Wait until the parent tells us to go.
		 */
1356 1357 1358 1359 1360 1361
		ret = read(go_pipe[0], &bf, 1);
		/*
		 * The parent will ask for the execvp() to be performed by
		 * writing exactly one byte, in workload.cork_fd, usually via
		 * perf_evlist__start_workload().
		 *
1362
		 * For cancelling the workload without actually running it,
1363 1364 1365 1366 1367 1368 1369 1370 1371
		 * the parent will just close workload.cork_fd, without writing
		 * anything, i.e. read will return zero and we just exit()
		 * here.
		 */
		if (ret != 1) {
			if (ret == -1)
				perror("unable to read pipe");
			exit(ret);
		}
1372 1373 1374

		execvp(argv[0], (char **)argv);

1375
		if (exec_error) {
1376 1377 1378 1379 1380 1381 1382
			union sigval val;

			val.sival_int = errno;
			if (sigqueue(getppid(), SIGUSR1, val))
				perror(argv[0]);
		} else
			perror(argv[0]);
1383 1384 1385
		exit(-1);
	}

1386 1387 1388 1389 1390 1391 1392 1393
	if (exec_error) {
		struct sigaction act = {
			.sa_flags     = SA_SIGINFO,
			.sa_sigaction = exec_error,
		};
		sigaction(SIGUSR1, &act, NULL);
	}

1394
	if (target__none(target)) {
1395
		if (evlist->core.threads == NULL) {
1396 1397 1398 1399
			fprintf(stderr, "FATAL: evlist->threads need to be set at this point (%s:%d).\n",
				__func__, __LINE__);
			goto out_close_pipes;
		}
1400
		perf_thread_map__set_pid(evlist->core.threads, 0, evlist->workload.pid);
1401
	}
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412

	close(child_ready_pipe[1]);
	close(go_pipe[0]);
	/*
	 * wait for child to settle
	 */
	if (read(child_ready_pipe[0], &bf, 1) == -1) {
		perror("unable to read pipe");
		goto out_close_pipes;
	}

1413
	fcntl(go_pipe[1], F_SETFD, FD_CLOEXEC);
1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
	evlist->workload.cork_fd = go_pipe[1];
	close(child_ready_pipe[0]);
	return 0;

out_close_pipes:
	close(go_pipe[0]);
	close(go_pipe[1]);
out_close_ready_pipe:
	close(child_ready_pipe[0]);
	close(child_ready_pipe[1]);
	return -1;
}

1427
int perf_evlist__start_workload(struct evlist *evlist)
1428 1429
{
	if (evlist->workload.cork_fd > 0) {
1430
		char bf = 0;
1431
		int ret;
1432 1433 1434
		/*
		 * Remove the cork, let it rip!
		 */
1435 1436
		ret = write(evlist->workload.cork_fd, &bf, 1);
		if (ret < 0)
1437
			perror("unable to write to pipe");
1438 1439 1440

		close(evlist->workload.cork_fd);
		return ret;
1441 1442 1443 1444
	}

	return 0;
}
1445

1446
int perf_evlist__parse_sample(struct evlist *evlist, union perf_event *event,
1447
			      struct perf_sample *sample)
1448
{
1449
	struct evsel *evsel = perf_evlist__event2evsel(evlist, event);
1450 1451 1452

	if (!evsel)
		return -EFAULT;
1453
	return evsel__parse_sample(evsel, event, sample);
1454
}
1455

1456
int perf_evlist__parse_sample_timestamp(struct evlist *evlist,
1457 1458 1459
					union perf_event *event,
					u64 *timestamp)
{
1460
	struct evsel *evsel = perf_evlist__event2evsel(evlist, event);
1461 1462 1463

	if (!evsel)
		return -EFAULT;
1464
	return evsel__parse_sample_timestamp(evsel, event, timestamp);
1465 1466
}

1467
int perf_evlist__strerror_open(struct evlist *evlist,
1468 1469 1470
			       int err, char *buf, size_t size)
{
	int printed, value;
1471
	char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf));
1472 1473 1474 1475 1476 1477 1478 1479

	switch (err) {
	case EACCES:
	case EPERM:
		printed = scnprintf(buf, size,
				    "Error:\t%s.\n"
				    "Hint:\tCheck /proc/sys/kernel/perf_event_paranoid setting.", emsg);

1480
		value = perf_event_paranoid();
1481 1482 1483 1484 1485 1486 1487 1488

		printed += scnprintf(buf + printed, size - printed, "\nHint:\t");

		if (value >= 2) {
			printed += scnprintf(buf + printed, size - printed,
					     "For your workloads it needs to be <= 1\nHint:\t");
		}
		printed += scnprintf(buf + printed, size - printed,
1489
				     "For system wide tracing it needs to be set to -1.\n");
1490 1491

		printed += scnprintf(buf + printed, size - printed,
1492 1493
				    "Hint:\tTry: 'sudo sh -c \"echo -1 > /proc/sys/kernel/perf_event_paranoid\"'\n"
				    "Hint:\tThe current value is %d.", value);
1494
		break;
1495
	case EINVAL: {
1496
		struct evsel *first = evlist__first(evlist);
1497 1498 1499 1500 1501
		int max_freq;

		if (sysctl__read_int("kernel/perf_event_max_sample_rate", &max_freq) < 0)
			goto out_default;

1502
		if (first->core.attr.sample_freq < (u64)max_freq)
1503 1504 1505 1506 1507 1508
			goto out_default;

		printed = scnprintf(buf, size,
				    "Error:\t%s.\n"
				    "Hint:\tCheck /proc/sys/kernel/perf_event_max_sample_rate.\n"
				    "Hint:\tThe current value is %d and %" PRIu64 " is being requested.",
1509
				    emsg, max_freq, first->core.attr.sample_freq);
1510 1511
		break;
	}
1512
	default:
1513
out_default:
1514 1515 1516 1517 1518 1519
		scnprintf(buf, size, "%s", emsg);
		break;
	}

	return 0;
}
1520

1521
int perf_evlist__strerror_mmap(struct evlist *evlist, int err, char *buf, size_t size)
1522
{
1523
	char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf));
1524
	int pages_attempted = evlist->core.mmap_len / 1024, pages_max_per_user, printed = 0;
1525 1526 1527

	switch (err) {
	case EPERM:
1528
		sysctl__read_int("kernel/perf_event_mlock_kb", &pages_max_per_user);
1529 1530
		printed += scnprintf(buf + printed, size - printed,
				     "Error:\t%s.\n"
1531
				     "Hint:\tCheck /proc/sys/kernel/perf_event_mlock_kb (%d kB) setting.\n"
1532
				     "Hint:\tTried using %zd kB.\n",
1533
				     emsg, pages_max_per_user, pages_attempted);
1534 1535 1536 1537 1538 1539 1540 1541 1542

		if (pages_attempted >= pages_max_per_user) {
			printed += scnprintf(buf + printed, size - printed,
					     "Hint:\tTry 'sudo sh -c \"echo %d > /proc/sys/kernel/perf_event_mlock_kb\"', or\n",
					     pages_max_per_user + pages_attempted);
		}

		printed += scnprintf(buf + printed, size - printed,
				     "Hint:\tTry using a smaller -m/--mmap-pages value.");
1543 1544 1545 1546 1547 1548 1549 1550 1551
		break;
	default:
		scnprintf(buf, size, "%s", emsg);
		break;
	}

	return 0;
}

1552
void perf_evlist__to_front(struct evlist *evlist,
1553
			   struct evsel *move_evsel)
1554
{
1555
	struct evsel *evsel, *n;
1556 1557
	LIST_HEAD(move);

1558
	if (move_evsel == evlist__first(evlist))
1559 1560
		return;

1561
	evlist__for_each_entry_safe(evlist, n, evsel) {
1562
		if (evsel->leader == move_evsel->leader)
1563
			list_move_tail(&evsel->core.node, &move);
1564 1565
	}

1566
	list_splice(&move, &evlist->core.entries);
1567
}
1568

1569
void perf_evlist__set_tracking_event(struct evlist *evlist,
1570
				     struct evsel *tracking_evsel)
1571
{
1572
	struct evsel *evsel;
1573 1574 1575 1576

	if (tracking_evsel->tracking)
		return;

1577
	evlist__for_each_entry(evlist, evsel) {
1578 1579 1580 1581 1582 1583
		if (evsel != tracking_evsel)
			evsel->tracking = false;
	}

	tracking_evsel->tracking = true;
}
1584

1585
struct evsel *
1586
perf_evlist__find_evsel_by_str(struct evlist *evlist,
1587 1588
			       const char *str)
{
1589
	struct evsel *evsel;
1590

1591
	evlist__for_each_entry(evlist, evsel) {
1592 1593 1594 1595 1596 1597 1598 1599
		if (!evsel->name)
			continue;
		if (strcmp(str, evsel->name) == 0)
			return evsel;
	}

	return NULL;
}
1600

1601
void perf_evlist__toggle_bkw_mmap(struct evlist *evlist,
1602 1603 1604 1605 1606 1607 1608 1609 1610
				  enum bkw_mmap_state state)
{
	enum bkw_mmap_state old_state = evlist->bkw_mmap_state;
	enum action {
		NONE,
		PAUSE,
		RESUME,
	} action = NONE;

1611
	if (!evlist->overwrite_mmap)
1612 1613 1614 1615 1616
		return;

	switch (old_state) {
	case BKW_MMAP_NOTREADY: {
		if (state != BKW_MMAP_RUNNING)
1617
			goto state_err;
1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657
		break;
	}
	case BKW_MMAP_RUNNING: {
		if (state != BKW_MMAP_DATA_PENDING)
			goto state_err;
		action = PAUSE;
		break;
	}
	case BKW_MMAP_DATA_PENDING: {
		if (state != BKW_MMAP_EMPTY)
			goto state_err;
		break;
	}
	case BKW_MMAP_EMPTY: {
		if (state != BKW_MMAP_RUNNING)
			goto state_err;
		action = RESUME;
		break;
	}
	default:
		WARN_ONCE(1, "Shouldn't get there\n");
	}

	evlist->bkw_mmap_state = state;

	switch (action) {
	case PAUSE:
		perf_evlist__pause(evlist);
		break;
	case RESUME:
		perf_evlist__resume(evlist);
		break;
	case NONE:
	default:
		break;
	}

state_err:
	return;
}
1658

1659
bool perf_evlist__exclude_kernel(struct evlist *evlist)
1660
{
1661
	struct evsel *evsel;
1662 1663

	evlist__for_each_entry(evlist, evsel) {
1664
		if (!evsel->core.attr.exclude_kernel)
1665 1666 1667 1668 1669
			return false;
	}

	return true;
}
1670 1671 1672 1673 1674 1675

/*
 * Events in data file are not collect in groups, but we still want
 * the group display. Set the artificial group and set the leader's
 * forced_leader flag to notify the display code.
 */
1676
void perf_evlist__force_leader(struct evlist *evlist)
1677 1678
{
	if (!evlist->nr_groups) {
1679
		struct evsel *leader = evlist__first(evlist);
1680 1681 1682 1683 1684

		perf_evlist__set_leader(evlist);
		leader->forced_leader = true;
	}
}
1685

1686
struct evsel *perf_evlist__reset_weak_group(struct evlist *evsel_list,
1687 1688
						 struct evsel *evsel,
						bool close)
1689
{
1690
	struct evsel *c2, *leader;
1691 1692 1693 1694
	bool is_open = true;

	leader = evsel->leader;
	pr_debug("Weak group for %s/%d failed\n",
1695
			leader->name, leader->core.nr_members);
1696 1697 1698 1699 1700 1701 1702 1703 1704

	/*
	 * for_each_group_member doesn't work here because it doesn't
	 * include the first entry.
	 */
	evlist__for_each_entry(evsel_list, c2) {
		if (c2 == evsel)
			is_open = false;
		if (c2->leader == leader) {
1705
			if (is_open && close)
1706
				perf_evsel__close(&c2->core);
1707
			c2->leader = c2;
1708
			c2->core.nr_members = 0;
1709 1710 1711 1712 1713
			/*
			 * Set this for all former members of the group
			 * to indicate they get reopened.
			 */
			c2->reset_group = true;
1714 1715 1716 1717
		}
	}
	return leader;
}