evlist.c 37.7 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 = perf_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 = perf_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 = perf_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 = perf_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 383
	struct affinity affinity;
	int cpu, i;
384

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
	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;
			if (pos->disabled || !perf_evsel__is_group_leader(pos) || !pos->core.fd)
				continue;
			evsel__disable_cpu(pos, pos->cpu_iter - 1);
		}
	}
	affinity__cleanup(&affinity);
400
	evlist__for_each_entry(evlist, pos) {
401
		if (!perf_evsel__is_group_leader(pos) || !pos->core.fd)
402
			continue;
403
		pos->disabled = true;
404
	}
405 406

	evlist->enabled = false;
407 408
}

409
void evlist__enable(struct evlist *evlist)
410
{
411
	struct evsel *pos;
412 413
	struct affinity affinity;
	int cpu, i;
414

415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
	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;
			if (!perf_evsel__is_group_leader(pos) || !pos->core.fd)
				continue;
			evsel__enable_cpu(pos, pos->cpu_iter - 1);
		}
	}
	affinity__cleanup(&affinity);
430
	evlist__for_each_entry(evlist, pos) {
431
		if (!perf_evsel__is_group_leader(pos) || !pos->core.fd)
432
			continue;
433
		pos->disabled = false;
434
	}
435 436 437 438

	evlist->enabled = true;
}

439
void perf_evlist__toggle_enable(struct evlist *evlist)
440
{
441
	(evlist->enabled ? evlist__disable : evlist__enable)(evlist);
442 443
}

444
static int perf_evlist__enable_event_cpu(struct evlist *evlist,
445
					 struct evsel *evsel, int cpu)
446
{
447
	int thread;
448 449
	int nr_threads = perf_evlist__nr_threads(evlist, evsel);

450
	if (!evsel->core.fd)
451 452 453
		return -EINVAL;

	for (thread = 0; thread < nr_threads; thread++) {
454
		int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0);
455 456 457 458 459 460
		if (err)
			return err;
	}
	return 0;
}

461
static int perf_evlist__enable_event_thread(struct evlist *evlist,
462
					    struct evsel *evsel,
463 464
					    int thread)
{
465
	int cpu;
466
	int nr_cpus = perf_cpu_map__nr(evlist->core.cpus);
467

468
	if (!evsel->core.fd)
469 470 471
		return -EINVAL;

	for (cpu = 0; cpu < nr_cpus; cpu++) {
472
		int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0);
473 474 475 476 477 478
		if (err)
			return err;
	}
	return 0;
}

479
int perf_evlist__enable_event_idx(struct evlist *evlist,
480
				  struct evsel *evsel, int idx)
481
{
482
	bool per_cpu_mmaps = !perf_cpu_map__empty(evlist->core.cpus);
483 484 485 486 487 488 489

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

490
int evlist__add_pollfd(struct evlist *evlist, int fd)
491
{
492
	return perf_evlist__add_pollfd(&evlist->core, fd, NULL, POLLIN);
493 494
}

495
int evlist__filter_pollfd(struct evlist *evlist, short revents_and_mask)
496
{
497
	return perf_evlist__filter_pollfd(&evlist->core, revents_and_mask);
498 499
}

500
int evlist__poll(struct evlist *evlist, int timeout)
501
{
502
	return perf_evlist__poll(&evlist->core, timeout);
503 504
}

505
struct perf_sample_id *perf_evlist__id2sid(struct evlist *evlist, u64 id)
506 507 508 509 510 511
{
	struct hlist_head *head;
	struct perf_sample_id *sid;
	int hash;

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

514
	hlist_for_each_entry(sid, head, node)
515
		if (sid->id == id)
516 517 518 519 520
			return sid;

	return NULL;
}

521
struct evsel *perf_evlist__id2evsel(struct evlist *evlist, u64 id)
522 523 524
{
	struct perf_sample_id *sid;

525
	if (evlist->core.nr_entries == 1 || !id)
526
		return evlist__first(evlist);
527 528 529

	sid = perf_evlist__id2sid(evlist, id);
	if (sid)
530
		return container_of(sid->evsel, struct evsel, core);
531 532

	if (!perf_evlist__sample_id_all(evlist))
533
		return evlist__first(evlist);
534

535 536
	return NULL;
}
537

538
struct evsel *perf_evlist__id2evsel_strict(struct evlist *evlist,
539 540 541 542 543 544 545 546 547
						u64 id)
{
	struct perf_sample_id *sid;

	if (!id)
		return NULL;

	sid = perf_evlist__id2sid(evlist, id);
	if (sid)
548
		return container_of(sid->evsel, struct evsel, core);
549 550 551 552

	return NULL;
}

553
static int perf_evlist__event2id(struct evlist *evlist,
554 555
				 union perf_event *event, u64 *id)
{
556
	const __u64 *array = event->sample.array;
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
	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;
}

574
struct evsel *perf_evlist__event2evsel(struct evlist *evlist,
J
Jiri Olsa 已提交
575
					    union perf_event *event)
576
{
577
	struct evsel *first = evlist__first(evlist);
578 579 580 581 582
	struct hlist_head *head;
	struct perf_sample_id *sid;
	int hash;
	u64 id;

583
	if (evlist->core.nr_entries == 1)
584 585
		return first;

586
	if (!first->core.attr.sample_id_all &&
587 588
	    event->header.type != PERF_RECORD_SAMPLE)
		return first;
589 590 591 592 593 594

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

	/* Synthesized events have an id of zero */
	if (!id)
595
		return first;
596 597

	hash = hash_64(id, PERF_EVLIST__HLIST_BITS);
598
	head = &evlist->core.heads[hash];
599 600 601

	hlist_for_each_entry(sid, head, node) {
		if (sid->id == id)
602
			return container_of(sid->evsel, struct evsel, core);
603 604 605 606
	}
	return NULL;
}

607
static int perf_evlist__set_paused(struct evlist *evlist, bool value)
W
Wang Nan 已提交
608 609 610
{
	int i;

611
	if (!evlist->overwrite_mmap)
612 613
		return 0;

614
	for (i = 0; i < evlist->core.nr_mmaps; i++) {
615
		int fd = evlist->overwrite_mmap[i].core.fd;
W
Wang Nan 已提交
616 617 618 619 620 621 622 623 624 625 626
		int err;

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

627
static int perf_evlist__pause(struct evlist *evlist)
W
Wang Nan 已提交
628 629 630 631
{
	return perf_evlist__set_paused(evlist, true);
}

632
static int perf_evlist__resume(struct evlist *evlist)
W
Wang Nan 已提交
633 634 635 636
{
	return perf_evlist__set_paused(evlist, false);
}

637
static void evlist__munmap_nofree(struct evlist *evlist)
638
{
639
	int i;
640

641
	if (evlist->mmap)
642
		for (i = 0; i < evlist->core.nr_mmaps; i++)
643
			perf_mmap__munmap(&evlist->mmap[i].core);
644

645
	if (evlist->overwrite_mmap)
646
		for (i = 0; i < evlist->core.nr_mmaps; i++)
647
			perf_mmap__munmap(&evlist->overwrite_mmap[i].core);
648
}
649

650
void evlist__munmap(struct evlist *evlist)
651
{
652
	evlist__munmap_nofree(evlist);
653
	zfree(&evlist->mmap);
654
	zfree(&evlist->overwrite_mmap);
655 656
}

657 658 659 660 661 662 663
static void perf_mmap__unmap_cb(struct perf_mmap *map)
{
	struct mmap *m = container_of(map, struct mmap, core);

	mmap__munmap(m);
}

664 665
static struct mmap *evlist__alloc_mmap(struct evlist *evlist,
				       bool overwrite)
666
{
W
Wang Nan 已提交
667
	int i;
668
	struct mmap *map;
W
Wang Nan 已提交
669

670
	map = zalloc(evlist->core.nr_mmaps * sizeof(struct mmap));
671 672
	if (!map)
		return NULL;
673

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

677 678
		/*
		 * When the perf_mmap() call is made we grab one refcount, plus
679
		 * one extra to let perf_mmap__consume() get the last
680 681 682 683 684 685
		 * 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.
		 */
686
		perf_mmap__init(&map[i].core, prev, overwrite, perf_mmap__unmap_cb);
687
	}
688

689
	return map;
690 691
}

692 693 694 695 696 697 698 699 700 701 702
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);
}

703 704 705 706
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);
707
	struct mmap *maps;
708

709
	maps = overwrite ? evlist->overwrite_mmap : evlist->mmap;
710

711 712 713 714
	if (!maps) {
		maps = evlist__alloc_mmap(evlist, overwrite);
		if (!maps)
			return NULL;
715

716
		if (overwrite) {
717 718 719
			evlist->overwrite_mmap = maps;
			if (evlist->bkw_mmap_state == BKW_MMAP_NOTREADY)
				perf_evlist__toggle_bkw_mmap(evlist, BKW_MMAP_RUNNING);
720 721
		} else {
			evlist->mmap = maps;
722 723 724 725 726 727
		}
	}

	return &maps[idx].core;
}

728 729 730 731 732 733 734 735 736 737
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);
}

738
unsigned long perf_event_mlock_kb_in_pages(void)
739
{
740 741
	unsigned long pages;
	int max;
742

743 744 745 746 747 748 749 750 751 752
	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);
	}
753

754 755 756 757 758 759 760
	pages = (max * 1024) / page_size;
	if (!is_power_of_2(pages))
		pages = rounddown_pow_of_two(pages);

	return pages;
}

761
size_t evlist__mmap_size(unsigned long pages)
762 763 764 765
{
	if (pages == UINT_MAX)
		pages = perf_event_mlock_kb_in_pages();
	else if (!is_power_of_2(pages))
766 767 768 769 770
		return 0;

	return (pages + 1) * page_size;
}

771 772
static long parse_pages_arg(const char *str, unsigned long min,
			    unsigned long max)
773
{
774
	unsigned long pages, val;
775 776 777 778 779 780 781
	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 },
	};
782

783
	if (str == NULL)
784
		return -EINVAL;
785

786
	val = parse_tag_value(str, tags);
787
	if (val != (unsigned long) -1) {
788 789 790 791 792 793
		/* 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);
794 795
		if (*eptr != '\0')
			return -EINVAL;
796 797
	}

798
	if (pages == 0 && min == 0) {
799
		/* leave number of pages at 0 */
800
	} else if (!is_power_of_2(pages)) {
801 802
		char buf[100];

803
		/* round pages up to next power of 2 */
804
		pages = roundup_pow_of_two(pages);
805 806
		if (!pages)
			return -EINVAL;
807 808 809 810

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

813 814 815 816 817 818
	if (pages > max)
		return -EINVAL;

	return pages;
}

819
int __perf_evlist__parse_mmap_pages(unsigned int *mmap_pages, const char *str)
820 821 822 823
{
	unsigned long max = UINT_MAX;
	long pages;

A
Adrian Hunter 已提交
824
	if (max > SIZE_MAX / page_size)
825 826 827 828 829
		max = SIZE_MAX / page_size;

	pages = parse_pages_arg(str, 1, max);
	if (pages < 0) {
		pr_err("Invalid argument for --mmap_pages/-m\n");
830 831 832 833 834 835 836
		return -1;
	}

	*mmap_pages = pages;
	return 0;
}

837 838 839 840 841 842
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);
}

843
/**
844
 * evlist__mmap_ex - Create mmaps to receive events.
845 846 847
 * @evlist: list of events
 * @pages: map length in pages
 * @overwrite: overwrite older events?
848 849
 * @auxtrace_pages - auxtrace map length in pages
 * @auxtrace_overwrite - overwrite older auxtrace data?
850
 *
851
 * If @overwrite is %false the user needs to signal event consumption using
852
 * perf_mmap__write_tail().  Using evlist__mmap_read() does this
853
 * automatically.
854
 *
855 856 857
 * Similarly, if @auxtrace_overwrite is %false the user needs to signal data
 * consumption using auxtrace_mmap__write_tail().
 *
858
 * Return: %0 on success, negative error code otherwise.
859
 */
860
int evlist__mmap_ex(struct evlist *evlist, unsigned int pages,
861
			 unsigned int auxtrace_pages,
862 863
			 bool auxtrace_overwrite, int nr_cblocks, int affinity, int flush,
			 int comp_level)
864
{
W
Wang Nan 已提交
865 866 867 868 869
	/*
	 * 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 已提交
870 871 872 873 874 875
	struct mmap_params mp = {
		.nr_cblocks	= nr_cblocks,
		.affinity	= affinity,
		.flush		= flush,
		.comp_level	= comp_level
	};
876
	struct perf_evlist_mmap_ops ops = {
877 878 879
		.idx  = perf_evlist__mmap_cb_idx,
		.get  = perf_evlist__mmap_cb_get,
		.mmap = perf_evlist__mmap_cb_mmap,
880
	};
881

882 883
	evlist->core.mmap_len = evlist__mmap_size(pages);
	pr_debug("mmap size %zuB\n", evlist->core.mmap_len);
884

885
	auxtrace_mmap_params__init(&mp.auxtrace_mp, evlist->core.mmap_len,
886 887
				   auxtrace_pages, auxtrace_overwrite);

888
	return perf_evlist__mmap_ops(&evlist->core, &ops, &mp.core);
889
}
890

891
int evlist__mmap(struct evlist *evlist, unsigned int pages)
892
{
893
	return evlist__mmap_ex(evlist, pages, 0, false, 0, PERF_AFFINITY_SYS, 1, 0);
894 895
}

896
int perf_evlist__create_maps(struct evlist *evlist, struct target *target)
897
{
898
	bool all_threads = (target->per_thread && target->system_wide);
899
	struct perf_cpu_map *cpus;
900
	struct perf_thread_map *threads;
901

902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919
	/*
	 * 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.
	 */
920
	threads = thread_map__new_str(target->pid, target->tid, target->uid,
921
				      all_threads);
922

923
	if (!threads)
924 925
		return -1;

926
	if (target__uses_dummy_map(target))
927
		cpus = perf_cpu_map__dummy_new();
928
	else
929
		cpus = perf_cpu_map__new(target->cpu_list);
930

931
	if (!cpus)
932 933
		goto out_delete_threads;

934
	evlist->core.has_user_cpus = !!target->cpu_list;
935

936
	perf_evlist__set_maps(&evlist->core, cpus, threads);
937 938

	return 0;
939 940

out_delete_threads:
941
	perf_thread_map__put(threads);
942 943 944
	return -1;
}

945
void __perf_evlist__set_sample_bit(struct evlist *evlist,
946 947
				   enum perf_event_sample_format bit)
{
948
	struct evsel *evsel;
949

950
	evlist__for_each_entry(evlist, evsel)
951
		__evsel__set_sample_bit(evsel, bit);
952 953
}

954
void __perf_evlist__reset_sample_bit(struct evlist *evlist,
955 956
				     enum perf_event_sample_format bit)
{
957
	struct evsel *evsel;
958

959
	evlist__for_each_entry(evlist, evsel)
960
		__evsel__reset_sample_bit(evsel, bit);
961 962
}

963
int perf_evlist__apply_filters(struct evlist *evlist, struct evsel **err_evsel)
964
{
965
	struct evsel *evsel;
966
	int err = 0;
967

968
	evlist__for_each_entry(evlist, evsel) {
969
		if (evsel->filter == NULL)
970
			continue;
971

972 973 974 975
		/*
		 * filters only work for tracepoint event, which doesn't have cpu limit.
		 * So evlist and evsel should always be same.
		 */
976
		err = perf_evsel__apply_filter(&evsel->core, evsel->filter);
977 978
		if (err) {
			*err_evsel = evsel;
979
			break;
980
		}
981 982
	}

983 984 985
	return err;
}

986
int perf_evlist__set_tp_filter(struct evlist *evlist, const char *filter)
987
{
988
	struct evsel *evsel;
989 990
	int err = 0;

991 992 993
	if (filter == NULL)
		return -1;

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

998
		err = evsel__set_filter(evsel, filter);
999 1000 1001 1002 1003
		if (err)
			break;
	}

	return err;
1004
}
1005

1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
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;

1018
		err = evsel__append_tp_filter(evsel, filter);
1019 1020 1021 1022 1023 1024 1025
		if (err)
			break;
	}

	return err;
}

1026
char *asprintf__tp_filter_pids(size_t npids, pid_t *pids)
1027 1028
{
	char *filter;
1029
	size_t i;
1030

1031 1032 1033
	for (i = 0; i < npids; ++i) {
		if (i == 0) {
			if (asprintf(&filter, "common_pid != %d", pids[i]) < 0)
1034
				return NULL;
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
		} else {
			char *tmp;

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

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

1046
	return filter;
1047
out_free:
1048 1049 1050 1051 1052 1053 1054 1055 1056
	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);

1057 1058 1059 1060
	free(filter);
	return ret;
}

1061
int perf_evlist__set_tp_filter_pid(struct evlist *evlist, pid_t pid)
1062
{
1063
	return perf_evlist__set_tp_filter_pids(evlist, 1, &pid);
1064 1065
}

1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
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);
}

1080
bool perf_evlist__valid_sample_type(struct evlist *evlist)
1081
{
1082
	struct evsel *pos;
1083

1084
	if (evlist->core.nr_entries == 1)
1085 1086 1087 1088 1089
		return true;

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

1090
	evlist__for_each_entry(evlist, pos) {
1091 1092
		if (pos->id_pos != evlist->id_pos ||
		    pos->is_pos != evlist->is_pos)
1093
			return false;
1094 1095
	}

1096
	return true;
1097 1098
}

1099
u64 __perf_evlist__combined_sample_type(struct evlist *evlist)
1100
{
1101
	struct evsel *evsel;
1102 1103 1104 1105

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

1106
	evlist__for_each_entry(evlist, evsel)
1107
		evlist->combined_sample_type |= evsel->core.attr.sample_type;
1108 1109 1110 1111

	return evlist->combined_sample_type;
}

1112
u64 perf_evlist__combined_sample_type(struct evlist *evlist)
1113 1114 1115
{
	evlist->combined_sample_type = 0;
	return __perf_evlist__combined_sample_type(evlist);
1116 1117
}

1118
u64 perf_evlist__combined_branch_type(struct evlist *evlist)
1119
{
1120
	struct evsel *evsel;
1121 1122
	u64 branch_type = 0;

1123
	evlist__for_each_entry(evlist, evsel)
1124
		branch_type |= evsel->core.attr.branch_sample_type;
1125 1126 1127
	return branch_type;
}

1128
bool perf_evlist__valid_read_format(struct evlist *evlist)
1129
{
1130
	struct evsel *first = evlist__first(evlist), *pos = first;
1131 1132
	u64 read_format = first->core.attr.read_format;
	u64 sample_type = first->core.attr.sample_type;
1133

1134
	evlist__for_each_entry(evlist, pos) {
1135 1136 1137 1138
		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);
		}
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149
	}

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

	return true;
}

1150
u16 perf_evlist__id_hdr_size(struct evlist *evlist)
1151
{
1152
	struct evsel *first = evlist__first(evlist);
1153 1154 1155 1156
	struct perf_sample *data;
	u64 sample_type;
	u16 size = 0;

1157
	if (!first->core.attr.sample_id_all)
1158 1159
		goto out;

1160
	sample_type = first->core.attr.sample_type;
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175

	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;
1176 1177 1178

	if (sample_type & PERF_SAMPLE_IDENTIFIER)
		size += sizeof(data->id);
1179 1180 1181 1182
out:
	return size;
}

1183
bool perf_evlist__valid_sample_id_all(struct evlist *evlist)
1184
{
1185
	struct evsel *first = evlist__first(evlist), *pos = first;
1186

1187
	evlist__for_each_entry_continue(evlist, pos) {
1188
		if (first->core.attr.sample_id_all != pos->core.attr.sample_id_all)
1189
			return false;
1190 1191
	}

1192 1193 1194
	return true;
}

1195
bool perf_evlist__sample_id_all(struct evlist *evlist)
1196
{
1197
	struct evsel *first = evlist__first(evlist);
1198
	return first->core.attr.sample_id_all;
1199
}
1200

1201
void perf_evlist__set_selected(struct evlist *evlist,
1202
			       struct evsel *evsel)
1203 1204 1205
{
	evlist->selected = evsel;
}
1206

1207
void evlist__close(struct evlist *evlist)
1208
{
1209
	struct evsel *evsel;
1210 1211
	struct affinity affinity;
	int cpu, i;
1212

1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
	/*
	 * 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);
	}
1239 1240
}

1241
static int perf_evlist__create_syswide_maps(struct evlist *evlist)
1242
{
1243
	struct perf_cpu_map *cpus;
1244
	struct perf_thread_map *threads;
1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
	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 :-\
	 */
1256
	cpus = perf_cpu_map__new(NULL);
1257
	if (!cpus)
1258 1259
		goto out;

1260
	threads = perf_thread_map__new_dummy();
1261 1262
	if (!threads)
		goto out_put;
1263

1264
	perf_evlist__set_maps(&evlist->core, cpus, threads);
1265 1266
out:
	return err;
1267
out_put:
1268
	perf_cpu_map__put(cpus);
1269 1270 1271
	goto out;
}

1272
int evlist__open(struct evlist *evlist)
1273
{
1274
	struct evsel *evsel;
1275
	int err;
1276

1277 1278 1279 1280
	/*
	 * Default: one fd per CPU, all threads, aka systemwide
	 * as sys_perf_event_open(cpu = -1, thread = -1) is EINVAL
	 */
1281
	if (evlist->core.threads == NULL && evlist->core.cpus == NULL) {
1282 1283 1284 1285 1286
		err = perf_evlist__create_syswide_maps(evlist);
		if (err < 0)
			goto out_err;
	}

1287 1288
	perf_evlist__update_id_pos(evlist);

1289
	evlist__for_each_entry(evlist, evsel) {
1290
		err = evsel__open(evsel, evsel->core.cpus, evsel->core.threads);
1291 1292 1293 1294 1295 1296
		if (err < 0)
			goto out_err;
	}

	return 0;
out_err:
1297
	evlist__close(evlist);
1298
	errno = -err;
1299 1300
	return err;
}
1301

1302
int perf_evlist__prepare_workload(struct evlist *evlist, struct target *target,
1303
				  const char *argv[], bool pipe_output,
1304
				  void (*exec_error)(int signo, siginfo_t *info, void *ucontext))
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325
{
	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) {
1326 1327
		int ret;

1328
		if (pipe_output)
1329 1330
			dup2(2, 1);

1331 1332
		signal(SIGTERM, SIG_DFL);

1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
		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.
		 */
1345 1346 1347 1348 1349 1350
		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().
		 *
1351
		 * For cancelling the workload without actually running it,
1352 1353 1354 1355 1356 1357 1358 1359 1360
		 * 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);
		}
1361 1362 1363

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

1364
		if (exec_error) {
1365 1366 1367 1368 1369 1370 1371
			union sigval val;

			val.sival_int = errno;
			if (sigqueue(getppid(), SIGUSR1, val))
				perror(argv[0]);
		} else
			perror(argv[0]);
1372 1373 1374
		exit(-1);
	}

1375 1376 1377 1378 1379 1380 1381 1382
	if (exec_error) {
		struct sigaction act = {
			.sa_flags     = SA_SIGINFO,
			.sa_sigaction = exec_error,
		};
		sigaction(SIGUSR1, &act, NULL);
	}

1383
	if (target__none(target)) {
1384
		if (evlist->core.threads == NULL) {
1385 1386 1387 1388
			fprintf(stderr, "FATAL: evlist->threads need to be set at this point (%s:%d).\n",
				__func__, __LINE__);
			goto out_close_pipes;
		}
1389
		perf_thread_map__set_pid(evlist->core.threads, 0, evlist->workload.pid);
1390
	}
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401

	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;
	}

1402
	fcntl(go_pipe[1], F_SETFD, FD_CLOEXEC);
1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
	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;
}

1416
int perf_evlist__start_workload(struct evlist *evlist)
1417 1418
{
	if (evlist->workload.cork_fd > 0) {
1419
		char bf = 0;
1420
		int ret;
1421 1422 1423
		/*
		 * Remove the cork, let it rip!
		 */
1424 1425
		ret = write(evlist->workload.cork_fd, &bf, 1);
		if (ret < 0)
1426
			perror("unable to write to pipe");
1427 1428 1429

		close(evlist->workload.cork_fd);
		return ret;
1430 1431 1432 1433
	}

	return 0;
}
1434

1435
int perf_evlist__parse_sample(struct evlist *evlist, union perf_event *event,
1436
			      struct perf_sample *sample)
1437
{
1438
	struct evsel *evsel = perf_evlist__event2evsel(evlist, event);
1439 1440 1441

	if (!evsel)
		return -EFAULT;
1442
	return perf_evsel__parse_sample(evsel, event, sample);
1443
}
1444

1445
int perf_evlist__parse_sample_timestamp(struct evlist *evlist,
1446 1447 1448
					union perf_event *event,
					u64 *timestamp)
{
1449
	struct evsel *evsel = perf_evlist__event2evsel(evlist, event);
1450 1451 1452 1453 1454 1455

	if (!evsel)
		return -EFAULT;
	return perf_evsel__parse_sample_timestamp(evsel, event, timestamp);
}

1456
int perf_evlist__strerror_open(struct evlist *evlist,
1457 1458 1459
			       int err, char *buf, size_t size)
{
	int printed, value;
1460
	char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf));
1461 1462 1463 1464 1465 1466 1467 1468

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

1469
		value = perf_event_paranoid();
1470 1471 1472 1473 1474 1475 1476 1477

		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,
1478
				     "For system wide tracing it needs to be set to -1.\n");
1479 1480

		printed += scnprintf(buf + printed, size - printed,
1481 1482
				    "Hint:\tTry: 'sudo sh -c \"echo -1 > /proc/sys/kernel/perf_event_paranoid\"'\n"
				    "Hint:\tThe current value is %d.", value);
1483
		break;
1484
	case EINVAL: {
1485
		struct evsel *first = evlist__first(evlist);
1486 1487 1488 1489 1490
		int max_freq;

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

1491
		if (first->core.attr.sample_freq < (u64)max_freq)
1492 1493 1494 1495 1496 1497
			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.",
1498
				    emsg, max_freq, first->core.attr.sample_freq);
1499 1500
		break;
	}
1501
	default:
1502
out_default:
1503 1504 1505 1506 1507 1508
		scnprintf(buf, size, "%s", emsg);
		break;
	}

	return 0;
}
1509

1510
int perf_evlist__strerror_mmap(struct evlist *evlist, int err, char *buf, size_t size)
1511
{
1512
	char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf));
1513
	int pages_attempted = evlist->core.mmap_len / 1024, pages_max_per_user, printed = 0;
1514 1515 1516

	switch (err) {
	case EPERM:
1517
		sysctl__read_int("kernel/perf_event_mlock_kb", &pages_max_per_user);
1518 1519
		printed += scnprintf(buf + printed, size - printed,
				     "Error:\t%s.\n"
1520
				     "Hint:\tCheck /proc/sys/kernel/perf_event_mlock_kb (%d kB) setting.\n"
1521
				     "Hint:\tTried using %zd kB.\n",
1522
				     emsg, pages_max_per_user, pages_attempted);
1523 1524 1525 1526 1527 1528 1529 1530 1531

		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.");
1532 1533 1534 1535 1536 1537 1538 1539 1540
		break;
	default:
		scnprintf(buf, size, "%s", emsg);
		break;
	}

	return 0;
}

1541
void perf_evlist__to_front(struct evlist *evlist,
1542
			   struct evsel *move_evsel)
1543
{
1544
	struct evsel *evsel, *n;
1545 1546
	LIST_HEAD(move);

1547
	if (move_evsel == evlist__first(evlist))
1548 1549
		return;

1550
	evlist__for_each_entry_safe(evlist, n, evsel) {
1551
		if (evsel->leader == move_evsel->leader)
1552
			list_move_tail(&evsel->core.node, &move);
1553 1554
	}

1555
	list_splice(&move, &evlist->core.entries);
1556
}
1557

1558
void perf_evlist__set_tracking_event(struct evlist *evlist,
1559
				     struct evsel *tracking_evsel)
1560
{
1561
	struct evsel *evsel;
1562 1563 1564 1565

	if (tracking_evsel->tracking)
		return;

1566
	evlist__for_each_entry(evlist, evsel) {
1567 1568 1569 1570 1571 1572
		if (evsel != tracking_evsel)
			evsel->tracking = false;
	}

	tracking_evsel->tracking = true;
}
1573

1574
struct evsel *
1575
perf_evlist__find_evsel_by_str(struct evlist *evlist,
1576 1577
			       const char *str)
{
1578
	struct evsel *evsel;
1579

1580
	evlist__for_each_entry(evlist, evsel) {
1581 1582 1583 1584 1585 1586 1587 1588
		if (!evsel->name)
			continue;
		if (strcmp(str, evsel->name) == 0)
			return evsel;
	}

	return NULL;
}
1589

1590
void perf_evlist__toggle_bkw_mmap(struct evlist *evlist,
1591 1592 1593 1594 1595 1596 1597 1598 1599
				  enum bkw_mmap_state state)
{
	enum bkw_mmap_state old_state = evlist->bkw_mmap_state;
	enum action {
		NONE,
		PAUSE,
		RESUME,
	} action = NONE;

1600
	if (!evlist->overwrite_mmap)
1601 1602 1603 1604 1605
		return;

	switch (old_state) {
	case BKW_MMAP_NOTREADY: {
		if (state != BKW_MMAP_RUNNING)
1606
			goto state_err;
1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 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
		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;
}
1647

1648
bool perf_evlist__exclude_kernel(struct evlist *evlist)
1649
{
1650
	struct evsel *evsel;
1651 1652

	evlist__for_each_entry(evlist, evsel) {
1653
		if (!evsel->core.attr.exclude_kernel)
1654 1655 1656 1657 1658
			return false;
	}

	return true;
}
1659 1660 1661 1662 1663 1664

/*
 * 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.
 */
1665
void perf_evlist__force_leader(struct evlist *evlist)
1666 1667
{
	if (!evlist->nr_groups) {
1668
		struct evsel *leader = evlist__first(evlist);
1669 1670 1671 1672 1673

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

1675
struct evsel *perf_evlist__reset_weak_group(struct evlist *evsel_list,
1676 1677
						 struct evsel *evsel,
						bool close)
1678
{
1679
	struct evsel *c2, *leader;
1680 1681 1682 1683
	bool is_open = true;

	leader = evsel->leader;
	pr_debug("Weak group for %s/%d failed\n",
1684
			leader->name, leader->core.nr_members);
1685 1686 1687 1688 1689 1690 1691 1692 1693

	/*
	 * 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) {
1694
			if (is_open && close)
1695
				perf_evsel__close(&c2->core);
1696
			c2->leader = c2;
1697
			c2->core.nr_members = 0;
1698 1699 1700 1701 1702
			/*
			 * Set this for all former members of the group
			 * to indicate they get reopened.
			 */
			c2->reset_group = true;
1703 1704 1705 1706
		}
	}
	return leader;
}