1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> 4 * 5 * Parts came from builtin-{top,stat,record}.c, see those files for further 6 * copyright notes. 7 */ 8 #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 #include "evlist.h" 17 #include "evsel.h" 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 #include <sys/mman.h> 38 39 #include <linux/bitops.h> 40 #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 #include <internal/xyarray.h> 51 52 #ifdef LACKS_SIGQUEUE_PROTOTYPE 53 int sigqueue(pid_t pid, int sig, const union sigval value); 54 #endif 55 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 void evlist__init(struct evlist *evlist, struct perf_cpu_map *cpus, 60 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 evlist->ctl_fd.fd = -1; 67 evlist->ctl_fd.ack = -1; 68 evlist->ctl_fd.pos = -1; 69 } 70 71 struct evlist *evlist__new(void) 72 { 73 struct evlist *evlist = zalloc(sizeof(*evlist)); 74 75 if (evlist != NULL) 76 evlist__init(evlist, NULL, NULL); 77 78 return evlist; 79 } 80 81 struct evlist *perf_evlist__new_default(void) 82 { 83 struct evlist *evlist = evlist__new(); 84 85 if (evlist && evlist__add_default(evlist)) { 86 evlist__delete(evlist); 87 evlist = NULL; 88 } 89 90 return evlist; 91 } 92 93 struct evlist *perf_evlist__new_dummy(void) 94 { 95 struct evlist *evlist = evlist__new(); 96 97 if (evlist && evlist__add_dummy(evlist)) { 98 evlist__delete(evlist); 99 evlist = NULL; 100 } 101 102 return evlist; 103 } 104 105 /** 106 * perf_evlist__set_id_pos - set the positions of event ids. 107 * @evlist: selected event list 108 * 109 * Events with compatible sample types all have the same id_pos 110 * and is_pos. For convenience, put a copy on evlist. 111 */ 112 void perf_evlist__set_id_pos(struct evlist *evlist) 113 { 114 struct evsel *first = evlist__first(evlist); 115 116 evlist->id_pos = first->id_pos; 117 evlist->is_pos = first->is_pos; 118 } 119 120 static void perf_evlist__update_id_pos(struct evlist *evlist) 121 { 122 struct evsel *evsel; 123 124 evlist__for_each_entry(evlist, evsel) 125 evsel__calc_id_pos(evsel); 126 127 perf_evlist__set_id_pos(evlist); 128 } 129 130 static void evlist__purge(struct evlist *evlist) 131 { 132 struct evsel *pos, *n; 133 134 evlist__for_each_entry_safe(evlist, n, pos) { 135 list_del_init(&pos->core.node); 136 pos->evlist = NULL; 137 evsel__delete(pos); 138 } 139 140 evlist->core.nr_entries = 0; 141 } 142 143 void evlist__exit(struct evlist *evlist) 144 { 145 zfree(&evlist->mmap); 146 zfree(&evlist->overwrite_mmap); 147 perf_evlist__exit(&evlist->core); 148 } 149 150 void evlist__delete(struct evlist *evlist) 151 { 152 if (evlist == NULL) 153 return; 154 155 evlist__munmap(evlist); 156 evlist__close(evlist); 157 evlist__purge(evlist); 158 evlist__exit(evlist); 159 free(evlist); 160 } 161 162 void evlist__add(struct evlist *evlist, struct evsel *entry) 163 { 164 entry->evlist = evlist; 165 entry->idx = evlist->core.nr_entries; 166 entry->tracking = !entry->idx; 167 168 perf_evlist__add(&evlist->core, &entry->core); 169 170 if (evlist->core.nr_entries == 1) 171 perf_evlist__set_id_pos(evlist); 172 } 173 174 void evlist__remove(struct evlist *evlist, struct evsel *evsel) 175 { 176 evsel->evlist = NULL; 177 perf_evlist__remove(&evlist->core, &evsel->core); 178 } 179 180 void perf_evlist__splice_list_tail(struct evlist *evlist, 181 struct list_head *list) 182 { 183 struct evsel *evsel, *temp; 184 185 __evlist__for_each_entry_safe(list, temp, evsel) { 186 list_del_init(&evsel->core.node); 187 evlist__add(evlist, evsel); 188 } 189 } 190 191 int __evlist__set_tracepoints_handlers(struct evlist *evlist, 192 const struct evsel_str_handler *assocs, size_t nr_assocs) 193 { 194 size_t i; 195 int err; 196 197 for (i = 0; i < nr_assocs; i++) { 198 // Adding a handler for an event not in this evlist, just ignore it. 199 struct evsel *evsel = evlist__find_tracepoint_by_name(evlist, assocs[i].name); 200 if (evsel == NULL) 201 continue; 202 203 err = -EEXIST; 204 if (evsel->handler != NULL) 205 goto out; 206 evsel->handler = assocs[i].handler; 207 } 208 209 err = 0; 210 out: 211 return err; 212 } 213 214 void __evlist__set_leader(struct list_head *list) 215 { 216 struct evsel *evsel, *leader; 217 218 leader = list_entry(list->next, struct evsel, core.node); 219 evsel = list_entry(list->prev, struct evsel, core.node); 220 221 leader->core.nr_members = evsel->idx - leader->idx + 1; 222 223 __evlist__for_each_entry(list, evsel) { 224 evsel->leader = leader; 225 } 226 } 227 228 void evlist__set_leader(struct evlist *evlist) 229 { 230 if (evlist->core.nr_entries) { 231 evlist->nr_groups = evlist->core.nr_entries > 1 ? 1 : 0; 232 __evlist__set_leader(&evlist->core.entries); 233 } 234 } 235 236 int __evlist__add_default(struct evlist *evlist, bool precise) 237 { 238 struct evsel *evsel = evsel__new_cycles(precise); 239 240 if (evsel == NULL) 241 return -ENOMEM; 242 243 evlist__add(evlist, evsel); 244 return 0; 245 } 246 247 int evlist__add_dummy(struct evlist *evlist) 248 { 249 struct perf_event_attr attr = { 250 .type = PERF_TYPE_SOFTWARE, 251 .config = PERF_COUNT_SW_DUMMY, 252 .size = sizeof(attr), /* to capture ABI version */ 253 }; 254 struct evsel *evsel = evsel__new_idx(&attr, evlist->core.nr_entries); 255 256 if (evsel == NULL) 257 return -ENOMEM; 258 259 evlist__add(evlist, evsel); 260 return 0; 261 } 262 263 static int evlist__add_attrs(struct evlist *evlist, struct perf_event_attr *attrs, size_t nr_attrs) 264 { 265 struct evsel *evsel, *n; 266 LIST_HEAD(head); 267 size_t i; 268 269 for (i = 0; i < nr_attrs; i++) { 270 evsel = evsel__new_idx(attrs + i, evlist->core.nr_entries + i); 271 if (evsel == NULL) 272 goto out_delete_partial_list; 273 list_add_tail(&evsel->core.node, &head); 274 } 275 276 perf_evlist__splice_list_tail(evlist, &head); 277 278 return 0; 279 280 out_delete_partial_list: 281 __evlist__for_each_entry_safe(&head, n, evsel) 282 evsel__delete(evsel); 283 return -1; 284 } 285 286 int __evlist__add_default_attrs(struct evlist *evlist, struct perf_event_attr *attrs, size_t nr_attrs) 287 { 288 size_t i; 289 290 for (i = 0; i < nr_attrs; i++) 291 event_attr_init(attrs + i); 292 293 return evlist__add_attrs(evlist, attrs, nr_attrs); 294 } 295 296 struct evsel *evlist__find_tracepoint_by_id(struct evlist *evlist, int id) 297 { 298 struct evsel *evsel; 299 300 evlist__for_each_entry(evlist, evsel) { 301 if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT && 302 (int)evsel->core.attr.config == id) 303 return evsel; 304 } 305 306 return NULL; 307 } 308 309 struct evsel *evlist__find_tracepoint_by_name(struct evlist *evlist, const char *name) 310 { 311 struct evsel *evsel; 312 313 evlist__for_each_entry(evlist, evsel) { 314 if ((evsel->core.attr.type == PERF_TYPE_TRACEPOINT) && 315 (strcmp(evsel->name, name) == 0)) 316 return evsel; 317 } 318 319 return NULL; 320 } 321 322 int evlist__add_newtp(struct evlist *evlist, const char *sys, const char *name, void *handler) 323 { 324 struct evsel *evsel = evsel__newtp(sys, name); 325 326 if (IS_ERR(evsel)) 327 return -1; 328 329 evsel->handler = handler; 330 evlist__add(evlist, evsel); 331 return 0; 332 } 333 334 static int perf_evlist__nr_threads(struct evlist *evlist, 335 struct evsel *evsel) 336 { 337 if (evsel->core.system_wide) 338 return 1; 339 else 340 return perf_thread_map__nr(evlist->core.threads); 341 } 342 343 void evlist__cpu_iter_start(struct evlist *evlist) 344 { 345 struct evsel *pos; 346 347 /* 348 * Reset the per evsel cpu_iter. This is needed because 349 * each evsel's cpumap may have a different index space, 350 * and some operations need the index to modify 351 * the FD xyarray (e.g. open, close) 352 */ 353 evlist__for_each_entry(evlist, pos) 354 pos->cpu_iter = 0; 355 } 356 357 bool evsel__cpu_iter_skip_no_inc(struct evsel *ev, int cpu) 358 { 359 if (ev->cpu_iter >= ev->core.cpus->nr) 360 return true; 361 if (cpu >= 0 && ev->core.cpus->map[ev->cpu_iter] != cpu) 362 return true; 363 return false; 364 } 365 366 bool evsel__cpu_iter_skip(struct evsel *ev, int cpu) 367 { 368 if (!evsel__cpu_iter_skip_no_inc(ev, cpu)) { 369 ev->cpu_iter++; 370 return false; 371 } 372 return true; 373 } 374 375 void evlist__disable(struct evlist *evlist) 376 { 377 struct evsel *pos; 378 struct affinity affinity; 379 int cpu, i, imm = 0; 380 bool has_imm = false; 381 382 if (affinity__setup(&affinity) < 0) 383 return; 384 385 /* Disable 'immediate' events last */ 386 for (imm = 0; imm <= 1; imm++) { 387 evlist__for_each_cpu(evlist, i, cpu) { 388 affinity__set(&affinity, cpu); 389 390 evlist__for_each_entry(evlist, pos) { 391 if (evsel__cpu_iter_skip(pos, cpu)) 392 continue; 393 if (pos->disabled || !evsel__is_group_leader(pos) || !pos->core.fd) 394 continue; 395 if (pos->immediate) 396 has_imm = true; 397 if (pos->immediate != imm) 398 continue; 399 evsel__disable_cpu(pos, pos->cpu_iter - 1); 400 } 401 } 402 if (!has_imm) 403 break; 404 } 405 406 affinity__cleanup(&affinity); 407 evlist__for_each_entry(evlist, pos) { 408 if (!evsel__is_group_leader(pos) || !pos->core.fd) 409 continue; 410 pos->disabled = true; 411 } 412 413 evlist->enabled = false; 414 } 415 416 void evlist__enable(struct evlist *evlist) 417 { 418 struct evsel *pos; 419 struct affinity affinity; 420 int cpu, i; 421 422 if (affinity__setup(&affinity) < 0) 423 return; 424 425 evlist__for_each_cpu(evlist, i, cpu) { 426 affinity__set(&affinity, cpu); 427 428 evlist__for_each_entry(evlist, pos) { 429 if (evsel__cpu_iter_skip(pos, cpu)) 430 continue; 431 if (!evsel__is_group_leader(pos) || !pos->core.fd) 432 continue; 433 evsel__enable_cpu(pos, pos->cpu_iter - 1); 434 } 435 } 436 affinity__cleanup(&affinity); 437 evlist__for_each_entry(evlist, pos) { 438 if (!evsel__is_group_leader(pos) || !pos->core.fd) 439 continue; 440 pos->disabled = false; 441 } 442 443 evlist->enabled = true; 444 } 445 446 void evlist__toggle_enable(struct evlist *evlist) 447 { 448 (evlist->enabled ? evlist__disable : evlist__enable)(evlist); 449 } 450 451 static int perf_evlist__enable_event_cpu(struct evlist *evlist, 452 struct evsel *evsel, int cpu) 453 { 454 int thread; 455 int nr_threads = perf_evlist__nr_threads(evlist, evsel); 456 457 if (!evsel->core.fd) 458 return -EINVAL; 459 460 for (thread = 0; thread < nr_threads; thread++) { 461 int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0); 462 if (err) 463 return err; 464 } 465 return 0; 466 } 467 468 static int perf_evlist__enable_event_thread(struct evlist *evlist, 469 struct evsel *evsel, 470 int thread) 471 { 472 int cpu; 473 int nr_cpus = perf_cpu_map__nr(evlist->core.cpus); 474 475 if (!evsel->core.fd) 476 return -EINVAL; 477 478 for (cpu = 0; cpu < nr_cpus; cpu++) { 479 int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0); 480 if (err) 481 return err; 482 } 483 return 0; 484 } 485 486 int perf_evlist__enable_event_idx(struct evlist *evlist, 487 struct evsel *evsel, int idx) 488 { 489 bool per_cpu_mmaps = !perf_cpu_map__empty(evlist->core.cpus); 490 491 if (per_cpu_mmaps) 492 return perf_evlist__enable_event_cpu(evlist, evsel, idx); 493 else 494 return perf_evlist__enable_event_thread(evlist, evsel, idx); 495 } 496 497 int evlist__add_pollfd(struct evlist *evlist, int fd) 498 { 499 return perf_evlist__add_pollfd(&evlist->core, fd, NULL, POLLIN, fdarray_flag__default); 500 } 501 502 int evlist__filter_pollfd(struct evlist *evlist, short revents_and_mask) 503 { 504 return perf_evlist__filter_pollfd(&evlist->core, revents_and_mask); 505 } 506 507 int evlist__poll(struct evlist *evlist, int timeout) 508 { 509 return perf_evlist__poll(&evlist->core, timeout); 510 } 511 512 struct perf_sample_id *evlist__id2sid(struct evlist *evlist, u64 id) 513 { 514 struct hlist_head *head; 515 struct perf_sample_id *sid; 516 int hash; 517 518 hash = hash_64(id, PERF_EVLIST__HLIST_BITS); 519 head = &evlist->core.heads[hash]; 520 521 hlist_for_each_entry(sid, head, node) 522 if (sid->id == id) 523 return sid; 524 525 return NULL; 526 } 527 528 struct evsel *evlist__id2evsel(struct evlist *evlist, u64 id) 529 { 530 struct perf_sample_id *sid; 531 532 if (evlist->core.nr_entries == 1 || !id) 533 return evlist__first(evlist); 534 535 sid = evlist__id2sid(evlist, id); 536 if (sid) 537 return container_of(sid->evsel, struct evsel, core); 538 539 if (!evlist__sample_id_all(evlist)) 540 return evlist__first(evlist); 541 542 return NULL; 543 } 544 545 struct evsel *evlist__id2evsel_strict(struct evlist *evlist, u64 id) 546 { 547 struct perf_sample_id *sid; 548 549 if (!id) 550 return NULL; 551 552 sid = evlist__id2sid(evlist, id); 553 if (sid) 554 return container_of(sid->evsel, struct evsel, core); 555 556 return NULL; 557 } 558 559 static int evlist__event2id(struct evlist *evlist, union perf_event *event, u64 *id) 560 { 561 const __u64 *array = event->sample.array; 562 ssize_t n; 563 564 n = (event->header.size - sizeof(event->header)) >> 3; 565 566 if (event->header.type == PERF_RECORD_SAMPLE) { 567 if (evlist->id_pos >= n) 568 return -1; 569 *id = array[evlist->id_pos]; 570 } else { 571 if (evlist->is_pos > n) 572 return -1; 573 n -= evlist->is_pos; 574 *id = array[n]; 575 } 576 return 0; 577 } 578 579 struct evsel *evlist__event2evsel(struct evlist *evlist, union perf_event *event) 580 { 581 struct evsel *first = evlist__first(evlist); 582 struct hlist_head *head; 583 struct perf_sample_id *sid; 584 int hash; 585 u64 id; 586 587 if (evlist->core.nr_entries == 1) 588 return first; 589 590 if (!first->core.attr.sample_id_all && 591 event->header.type != PERF_RECORD_SAMPLE) 592 return first; 593 594 if (evlist__event2id(evlist, event, &id)) 595 return NULL; 596 597 /* Synthesized events have an id of zero */ 598 if (!id) 599 return first; 600 601 hash = hash_64(id, PERF_EVLIST__HLIST_BITS); 602 head = &evlist->core.heads[hash]; 603 604 hlist_for_each_entry(sid, head, node) { 605 if (sid->id == id) 606 return container_of(sid->evsel, struct evsel, core); 607 } 608 return NULL; 609 } 610 611 static int perf_evlist__set_paused(struct evlist *evlist, bool value) 612 { 613 int i; 614 615 if (!evlist->overwrite_mmap) 616 return 0; 617 618 for (i = 0; i < evlist->core.nr_mmaps; i++) { 619 int fd = evlist->overwrite_mmap[i].core.fd; 620 int err; 621 622 if (fd < 0) 623 continue; 624 err = ioctl(fd, PERF_EVENT_IOC_PAUSE_OUTPUT, value ? 1 : 0); 625 if (err) 626 return err; 627 } 628 return 0; 629 } 630 631 static int perf_evlist__pause(struct evlist *evlist) 632 { 633 return perf_evlist__set_paused(evlist, true); 634 } 635 636 static int perf_evlist__resume(struct evlist *evlist) 637 { 638 return perf_evlist__set_paused(evlist, false); 639 } 640 641 static void evlist__munmap_nofree(struct evlist *evlist) 642 { 643 int i; 644 645 if (evlist->mmap) 646 for (i = 0; i < evlist->core.nr_mmaps; i++) 647 perf_mmap__munmap(&evlist->mmap[i].core); 648 649 if (evlist->overwrite_mmap) 650 for (i = 0; i < evlist->core.nr_mmaps; i++) 651 perf_mmap__munmap(&evlist->overwrite_mmap[i].core); 652 } 653 654 void evlist__munmap(struct evlist *evlist) 655 { 656 evlist__munmap_nofree(evlist); 657 zfree(&evlist->mmap); 658 zfree(&evlist->overwrite_mmap); 659 } 660 661 static void perf_mmap__unmap_cb(struct perf_mmap *map) 662 { 663 struct mmap *m = container_of(map, struct mmap, core); 664 665 mmap__munmap(m); 666 } 667 668 static struct mmap *evlist__alloc_mmap(struct evlist *evlist, 669 bool overwrite) 670 { 671 int i; 672 struct mmap *map; 673 674 map = zalloc(evlist->core.nr_mmaps * sizeof(struct mmap)); 675 if (!map) 676 return NULL; 677 678 for (i = 0; i < evlist->core.nr_mmaps; i++) { 679 struct perf_mmap *prev = i ? &map[i - 1].core : NULL; 680 681 /* 682 * When the perf_mmap() call is made we grab one refcount, plus 683 * one extra to let perf_mmap__consume() get the last 684 * events after all real references (perf_mmap__get()) are 685 * dropped. 686 * 687 * Each PERF_EVENT_IOC_SET_OUTPUT points to this mmap and 688 * thus does perf_mmap__get() on it. 689 */ 690 perf_mmap__init(&map[i].core, prev, overwrite, perf_mmap__unmap_cb); 691 } 692 693 return map; 694 } 695 696 static void 697 perf_evlist__mmap_cb_idx(struct perf_evlist *_evlist, 698 struct perf_mmap_param *_mp, 699 int idx, bool per_cpu) 700 { 701 struct evlist *evlist = container_of(_evlist, struct evlist, core); 702 struct mmap_params *mp = container_of(_mp, struct mmap_params, core); 703 704 auxtrace_mmap_params__set_idx(&mp->auxtrace_mp, evlist, idx, per_cpu); 705 } 706 707 static struct perf_mmap* 708 perf_evlist__mmap_cb_get(struct perf_evlist *_evlist, bool overwrite, int idx) 709 { 710 struct evlist *evlist = container_of(_evlist, struct evlist, core); 711 struct mmap *maps; 712 713 maps = overwrite ? evlist->overwrite_mmap : evlist->mmap; 714 715 if (!maps) { 716 maps = evlist__alloc_mmap(evlist, overwrite); 717 if (!maps) 718 return NULL; 719 720 if (overwrite) { 721 evlist->overwrite_mmap = maps; 722 if (evlist->bkw_mmap_state == BKW_MMAP_NOTREADY) 723 evlist__toggle_bkw_mmap(evlist, BKW_MMAP_RUNNING); 724 } else { 725 evlist->mmap = maps; 726 } 727 } 728 729 return &maps[idx].core; 730 } 731 732 static int 733 perf_evlist__mmap_cb_mmap(struct perf_mmap *_map, struct perf_mmap_param *_mp, 734 int output, int cpu) 735 { 736 struct mmap *map = container_of(_map, struct mmap, core); 737 struct mmap_params *mp = container_of(_mp, struct mmap_params, core); 738 739 return mmap__mmap(map, mp, output, cpu); 740 } 741 742 unsigned long perf_event_mlock_kb_in_pages(void) 743 { 744 unsigned long pages; 745 int max; 746 747 if (sysctl__read_int("kernel/perf_event_mlock_kb", &max) < 0) { 748 /* 749 * Pick a once upon a time good value, i.e. things look 750 * strange since we can't read a sysctl value, but lets not 751 * die yet... 752 */ 753 max = 512; 754 } else { 755 max -= (page_size / 1024); 756 } 757 758 pages = (max * 1024) / page_size; 759 if (!is_power_of_2(pages)) 760 pages = rounddown_pow_of_two(pages); 761 762 return pages; 763 } 764 765 size_t evlist__mmap_size(unsigned long pages) 766 { 767 if (pages == UINT_MAX) 768 pages = perf_event_mlock_kb_in_pages(); 769 else if (!is_power_of_2(pages)) 770 return 0; 771 772 return (pages + 1) * page_size; 773 } 774 775 static long parse_pages_arg(const char *str, unsigned long min, 776 unsigned long max) 777 { 778 unsigned long pages, val; 779 static struct parse_tag tags[] = { 780 { .tag = 'B', .mult = 1 }, 781 { .tag = 'K', .mult = 1 << 10 }, 782 { .tag = 'M', .mult = 1 << 20 }, 783 { .tag = 'G', .mult = 1 << 30 }, 784 { .tag = 0 }, 785 }; 786 787 if (str == NULL) 788 return -EINVAL; 789 790 val = parse_tag_value(str, tags); 791 if (val != (unsigned long) -1) { 792 /* we got file size value */ 793 pages = PERF_ALIGN(val, page_size) / page_size; 794 } else { 795 /* we got pages count value */ 796 char *eptr; 797 pages = strtoul(str, &eptr, 10); 798 if (*eptr != '\0') 799 return -EINVAL; 800 } 801 802 if (pages == 0 && min == 0) { 803 /* leave number of pages at 0 */ 804 } else if (!is_power_of_2(pages)) { 805 char buf[100]; 806 807 /* round pages up to next power of 2 */ 808 pages = roundup_pow_of_two(pages); 809 if (!pages) 810 return -EINVAL; 811 812 unit_number__scnprintf(buf, sizeof(buf), pages * page_size); 813 pr_info("rounding mmap pages size to %s (%lu pages)\n", 814 buf, pages); 815 } 816 817 if (pages > max) 818 return -EINVAL; 819 820 return pages; 821 } 822 823 int __perf_evlist__parse_mmap_pages(unsigned int *mmap_pages, const char *str) 824 { 825 unsigned long max = UINT_MAX; 826 long pages; 827 828 if (max > SIZE_MAX / page_size) 829 max = SIZE_MAX / page_size; 830 831 pages = parse_pages_arg(str, 1, max); 832 if (pages < 0) { 833 pr_err("Invalid argument for --mmap_pages/-m\n"); 834 return -1; 835 } 836 837 *mmap_pages = pages; 838 return 0; 839 } 840 841 int perf_evlist__parse_mmap_pages(const struct option *opt, const char *str, 842 int unset __maybe_unused) 843 { 844 return __perf_evlist__parse_mmap_pages(opt->value, str); 845 } 846 847 /** 848 * evlist__mmap_ex - Create mmaps to receive events. 849 * @evlist: list of events 850 * @pages: map length in pages 851 * @overwrite: overwrite older events? 852 * @auxtrace_pages - auxtrace map length in pages 853 * @auxtrace_overwrite - overwrite older auxtrace data? 854 * 855 * If @overwrite is %false the user needs to signal event consumption using 856 * perf_mmap__write_tail(). Using evlist__mmap_read() does this 857 * automatically. 858 * 859 * Similarly, if @auxtrace_overwrite is %false the user needs to signal data 860 * consumption using auxtrace_mmap__write_tail(). 861 * 862 * Return: %0 on success, negative error code otherwise. 863 */ 864 int evlist__mmap_ex(struct evlist *evlist, unsigned int pages, 865 unsigned int auxtrace_pages, 866 bool auxtrace_overwrite, int nr_cblocks, int affinity, int flush, 867 int comp_level) 868 { 869 /* 870 * Delay setting mp.prot: set it before calling perf_mmap__mmap. 871 * Its value is decided by evsel's write_backward. 872 * So &mp should not be passed through const pointer. 873 */ 874 struct mmap_params mp = { 875 .nr_cblocks = nr_cblocks, 876 .affinity = affinity, 877 .flush = flush, 878 .comp_level = comp_level 879 }; 880 struct perf_evlist_mmap_ops ops = { 881 .idx = perf_evlist__mmap_cb_idx, 882 .get = perf_evlist__mmap_cb_get, 883 .mmap = perf_evlist__mmap_cb_mmap, 884 }; 885 886 evlist->core.mmap_len = evlist__mmap_size(pages); 887 pr_debug("mmap size %zuB\n", evlist->core.mmap_len); 888 889 auxtrace_mmap_params__init(&mp.auxtrace_mp, evlist->core.mmap_len, 890 auxtrace_pages, auxtrace_overwrite); 891 892 return perf_evlist__mmap_ops(&evlist->core, &ops, &mp.core); 893 } 894 895 int evlist__mmap(struct evlist *evlist, unsigned int pages) 896 { 897 return evlist__mmap_ex(evlist, pages, 0, false, 0, PERF_AFFINITY_SYS, 1, 0); 898 } 899 900 int perf_evlist__create_maps(struct evlist *evlist, struct target *target) 901 { 902 bool all_threads = (target->per_thread && target->system_wide); 903 struct perf_cpu_map *cpus; 904 struct perf_thread_map *threads; 905 906 /* 907 * If specify '-a' and '--per-thread' to perf record, perf record 908 * will override '--per-thread'. target->per_thread = false and 909 * target->system_wide = true. 910 * 911 * If specify '--per-thread' only to perf record, 912 * target->per_thread = true and target->system_wide = false. 913 * 914 * So target->per_thread && target->system_wide is false. 915 * For perf record, thread_map__new_str doesn't call 916 * thread_map__new_all_cpus. That will keep perf record's 917 * current behavior. 918 * 919 * For perf stat, it allows the case that target->per_thread and 920 * target->system_wide are all true. It means to collect system-wide 921 * per-thread data. thread_map__new_str will call 922 * thread_map__new_all_cpus to enumerate all threads. 923 */ 924 threads = thread_map__new_str(target->pid, target->tid, target->uid, 925 all_threads); 926 927 if (!threads) 928 return -1; 929 930 if (target__uses_dummy_map(target)) 931 cpus = perf_cpu_map__dummy_new(); 932 else 933 cpus = perf_cpu_map__new(target->cpu_list); 934 935 if (!cpus) 936 goto out_delete_threads; 937 938 evlist->core.has_user_cpus = !!target->cpu_list; 939 940 perf_evlist__set_maps(&evlist->core, cpus, threads); 941 942 /* as evlist now has references, put count here */ 943 perf_cpu_map__put(cpus); 944 perf_thread_map__put(threads); 945 946 return 0; 947 948 out_delete_threads: 949 perf_thread_map__put(threads); 950 return -1; 951 } 952 953 int evlist__apply_filters(struct evlist *evlist, struct evsel **err_evsel) 954 { 955 struct evsel *evsel; 956 int err = 0; 957 958 evlist__for_each_entry(evlist, evsel) { 959 if (evsel->filter == NULL) 960 continue; 961 962 /* 963 * filters only work for tracepoint event, which doesn't have cpu limit. 964 * So evlist and evsel should always be same. 965 */ 966 err = perf_evsel__apply_filter(&evsel->core, evsel->filter); 967 if (err) { 968 *err_evsel = evsel; 969 break; 970 } 971 } 972 973 return err; 974 } 975 976 int evlist__set_tp_filter(struct evlist *evlist, const char *filter) 977 { 978 struct evsel *evsel; 979 int err = 0; 980 981 if (filter == NULL) 982 return -1; 983 984 evlist__for_each_entry(evlist, evsel) { 985 if (evsel->core.attr.type != PERF_TYPE_TRACEPOINT) 986 continue; 987 988 err = evsel__set_filter(evsel, filter); 989 if (err) 990 break; 991 } 992 993 return err; 994 } 995 996 int evlist__append_tp_filter(struct evlist *evlist, const char *filter) 997 { 998 struct evsel *evsel; 999 int err = 0; 1000 1001 if (filter == NULL) 1002 return -1; 1003 1004 evlist__for_each_entry(evlist, evsel) { 1005 if (evsel->core.attr.type != PERF_TYPE_TRACEPOINT) 1006 continue; 1007 1008 err = evsel__append_tp_filter(evsel, filter); 1009 if (err) 1010 break; 1011 } 1012 1013 return err; 1014 } 1015 1016 char *asprintf__tp_filter_pids(size_t npids, pid_t *pids) 1017 { 1018 char *filter; 1019 size_t i; 1020 1021 for (i = 0; i < npids; ++i) { 1022 if (i == 0) { 1023 if (asprintf(&filter, "common_pid != %d", pids[i]) < 0) 1024 return NULL; 1025 } else { 1026 char *tmp; 1027 1028 if (asprintf(&tmp, "%s && common_pid != %d", filter, pids[i]) < 0) 1029 goto out_free; 1030 1031 free(filter); 1032 filter = tmp; 1033 } 1034 } 1035 1036 return filter; 1037 out_free: 1038 free(filter); 1039 return NULL; 1040 } 1041 1042 int evlist__set_tp_filter_pids(struct evlist *evlist, size_t npids, pid_t *pids) 1043 { 1044 char *filter = asprintf__tp_filter_pids(npids, pids); 1045 int ret = evlist__set_tp_filter(evlist, filter); 1046 1047 free(filter); 1048 return ret; 1049 } 1050 1051 int evlist__set_tp_filter_pid(struct evlist *evlist, pid_t pid) 1052 { 1053 return evlist__set_tp_filter_pids(evlist, 1, &pid); 1054 } 1055 1056 int evlist__append_tp_filter_pids(struct evlist *evlist, size_t npids, pid_t *pids) 1057 { 1058 char *filter = asprintf__tp_filter_pids(npids, pids); 1059 int ret = evlist__append_tp_filter(evlist, filter); 1060 1061 free(filter); 1062 return ret; 1063 } 1064 1065 int evlist__append_tp_filter_pid(struct evlist *evlist, pid_t pid) 1066 { 1067 return evlist__append_tp_filter_pids(evlist, 1, &pid); 1068 } 1069 1070 bool evlist__valid_sample_type(struct evlist *evlist) 1071 { 1072 struct evsel *pos; 1073 1074 if (evlist->core.nr_entries == 1) 1075 return true; 1076 1077 if (evlist->id_pos < 0 || evlist->is_pos < 0) 1078 return false; 1079 1080 evlist__for_each_entry(evlist, pos) { 1081 if (pos->id_pos != evlist->id_pos || 1082 pos->is_pos != evlist->is_pos) 1083 return false; 1084 } 1085 1086 return true; 1087 } 1088 1089 u64 __evlist__combined_sample_type(struct evlist *evlist) 1090 { 1091 struct evsel *evsel; 1092 1093 if (evlist->combined_sample_type) 1094 return evlist->combined_sample_type; 1095 1096 evlist__for_each_entry(evlist, evsel) 1097 evlist->combined_sample_type |= evsel->core.attr.sample_type; 1098 1099 return evlist->combined_sample_type; 1100 } 1101 1102 u64 evlist__combined_sample_type(struct evlist *evlist) 1103 { 1104 evlist->combined_sample_type = 0; 1105 return __evlist__combined_sample_type(evlist); 1106 } 1107 1108 u64 evlist__combined_branch_type(struct evlist *evlist) 1109 { 1110 struct evsel *evsel; 1111 u64 branch_type = 0; 1112 1113 evlist__for_each_entry(evlist, evsel) 1114 branch_type |= evsel->core.attr.branch_sample_type; 1115 return branch_type; 1116 } 1117 1118 bool perf_evlist__valid_read_format(struct evlist *evlist) 1119 { 1120 struct evsel *first = evlist__first(evlist), *pos = first; 1121 u64 read_format = first->core.attr.read_format; 1122 u64 sample_type = first->core.attr.sample_type; 1123 1124 evlist__for_each_entry(evlist, pos) { 1125 if (read_format != pos->core.attr.read_format) { 1126 pr_debug("Read format differs %#" PRIx64 " vs %#" PRIx64 "\n", 1127 read_format, (u64)pos->core.attr.read_format); 1128 } 1129 } 1130 1131 /* PERF_SAMPLE_READ imples PERF_FORMAT_ID. */ 1132 if ((sample_type & PERF_SAMPLE_READ) && 1133 !(read_format & PERF_FORMAT_ID)) { 1134 return false; 1135 } 1136 1137 return true; 1138 } 1139 1140 u16 perf_evlist__id_hdr_size(struct evlist *evlist) 1141 { 1142 struct evsel *first = evlist__first(evlist); 1143 struct perf_sample *data; 1144 u64 sample_type; 1145 u16 size = 0; 1146 1147 if (!first->core.attr.sample_id_all) 1148 goto out; 1149 1150 sample_type = first->core.attr.sample_type; 1151 1152 if (sample_type & PERF_SAMPLE_TID) 1153 size += sizeof(data->tid) * 2; 1154 1155 if (sample_type & PERF_SAMPLE_TIME) 1156 size += sizeof(data->time); 1157 1158 if (sample_type & PERF_SAMPLE_ID) 1159 size += sizeof(data->id); 1160 1161 if (sample_type & PERF_SAMPLE_STREAM_ID) 1162 size += sizeof(data->stream_id); 1163 1164 if (sample_type & PERF_SAMPLE_CPU) 1165 size += sizeof(data->cpu) * 2; 1166 1167 if (sample_type & PERF_SAMPLE_IDENTIFIER) 1168 size += sizeof(data->id); 1169 out: 1170 return size; 1171 } 1172 1173 bool evlist__valid_sample_id_all(struct evlist *evlist) 1174 { 1175 struct evsel *first = evlist__first(evlist), *pos = first; 1176 1177 evlist__for_each_entry_continue(evlist, pos) { 1178 if (first->core.attr.sample_id_all != pos->core.attr.sample_id_all) 1179 return false; 1180 } 1181 1182 return true; 1183 } 1184 1185 bool evlist__sample_id_all(struct evlist *evlist) 1186 { 1187 struct evsel *first = evlist__first(evlist); 1188 return first->core.attr.sample_id_all; 1189 } 1190 1191 void perf_evlist__set_selected(struct evlist *evlist, 1192 struct evsel *evsel) 1193 { 1194 evlist->selected = evsel; 1195 } 1196 1197 void evlist__close(struct evlist *evlist) 1198 { 1199 struct evsel *evsel; 1200 struct affinity affinity; 1201 int cpu, i; 1202 1203 /* 1204 * With perf record core.cpus is usually NULL. 1205 * Use the old method to handle this for now. 1206 */ 1207 if (!evlist->core.cpus) { 1208 evlist__for_each_entry_reverse(evlist, evsel) 1209 evsel__close(evsel); 1210 return; 1211 } 1212 1213 if (affinity__setup(&affinity) < 0) 1214 return; 1215 evlist__for_each_cpu(evlist, i, cpu) { 1216 affinity__set(&affinity, cpu); 1217 1218 evlist__for_each_entry_reverse(evlist, evsel) { 1219 if (evsel__cpu_iter_skip(evsel, cpu)) 1220 continue; 1221 perf_evsel__close_cpu(&evsel->core, evsel->cpu_iter - 1); 1222 } 1223 } 1224 affinity__cleanup(&affinity); 1225 evlist__for_each_entry_reverse(evlist, evsel) { 1226 perf_evsel__free_fd(&evsel->core); 1227 perf_evsel__free_id(&evsel->core); 1228 } 1229 } 1230 1231 static int perf_evlist__create_syswide_maps(struct evlist *evlist) 1232 { 1233 struct perf_cpu_map *cpus; 1234 struct perf_thread_map *threads; 1235 int err = -ENOMEM; 1236 1237 /* 1238 * Try reading /sys/devices/system/cpu/online to get 1239 * an all cpus map. 1240 * 1241 * FIXME: -ENOMEM is the best we can do here, the cpu_map 1242 * code needs an overhaul to properly forward the 1243 * error, and we may not want to do that fallback to a 1244 * default cpu identity map :-\ 1245 */ 1246 cpus = perf_cpu_map__new(NULL); 1247 if (!cpus) 1248 goto out; 1249 1250 threads = perf_thread_map__new_dummy(); 1251 if (!threads) 1252 goto out_put; 1253 1254 perf_evlist__set_maps(&evlist->core, cpus, threads); 1255 1256 perf_thread_map__put(threads); 1257 out_put: 1258 perf_cpu_map__put(cpus); 1259 out: 1260 return err; 1261 } 1262 1263 int evlist__open(struct evlist *evlist) 1264 { 1265 struct evsel *evsel; 1266 int err; 1267 1268 /* 1269 * Default: one fd per CPU, all threads, aka systemwide 1270 * as sys_perf_event_open(cpu = -1, thread = -1) is EINVAL 1271 */ 1272 if (evlist->core.threads == NULL && evlist->core.cpus == NULL) { 1273 err = perf_evlist__create_syswide_maps(evlist); 1274 if (err < 0) 1275 goto out_err; 1276 } 1277 1278 perf_evlist__update_id_pos(evlist); 1279 1280 evlist__for_each_entry(evlist, evsel) { 1281 err = evsel__open(evsel, evsel->core.cpus, evsel->core.threads); 1282 if (err < 0) 1283 goto out_err; 1284 } 1285 1286 return 0; 1287 out_err: 1288 evlist__close(evlist); 1289 errno = -err; 1290 return err; 1291 } 1292 1293 int evlist__prepare_workload(struct evlist *evlist, struct target *target, const char *argv[], 1294 bool pipe_output, void (*exec_error)(int signo, siginfo_t *info, void *ucontext)) 1295 { 1296 int child_ready_pipe[2], go_pipe[2]; 1297 char bf; 1298 1299 if (pipe(child_ready_pipe) < 0) { 1300 perror("failed to create 'ready' pipe"); 1301 return -1; 1302 } 1303 1304 if (pipe(go_pipe) < 0) { 1305 perror("failed to create 'go' pipe"); 1306 goto out_close_ready_pipe; 1307 } 1308 1309 evlist->workload.pid = fork(); 1310 if (evlist->workload.pid < 0) { 1311 perror("failed to fork"); 1312 goto out_close_pipes; 1313 } 1314 1315 if (!evlist->workload.pid) { 1316 int ret; 1317 1318 if (pipe_output) 1319 dup2(2, 1); 1320 1321 signal(SIGTERM, SIG_DFL); 1322 1323 close(child_ready_pipe[0]); 1324 close(go_pipe[1]); 1325 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC); 1326 1327 /* 1328 * Tell the parent we're ready to go 1329 */ 1330 close(child_ready_pipe[1]); 1331 1332 /* 1333 * Wait until the parent tells us to go. 1334 */ 1335 ret = read(go_pipe[0], &bf, 1); 1336 /* 1337 * The parent will ask for the execvp() to be performed by 1338 * writing exactly one byte, in workload.cork_fd, usually via 1339 * evlist__start_workload(). 1340 * 1341 * For cancelling the workload without actually running it, 1342 * the parent will just close workload.cork_fd, without writing 1343 * anything, i.e. read will return zero and we just exit() 1344 * here. 1345 */ 1346 if (ret != 1) { 1347 if (ret == -1) 1348 perror("unable to read pipe"); 1349 exit(ret); 1350 } 1351 1352 execvp(argv[0], (char **)argv); 1353 1354 if (exec_error) { 1355 union sigval val; 1356 1357 val.sival_int = errno; 1358 if (sigqueue(getppid(), SIGUSR1, val)) 1359 perror(argv[0]); 1360 } else 1361 perror(argv[0]); 1362 exit(-1); 1363 } 1364 1365 if (exec_error) { 1366 struct sigaction act = { 1367 .sa_flags = SA_SIGINFO, 1368 .sa_sigaction = exec_error, 1369 }; 1370 sigaction(SIGUSR1, &act, NULL); 1371 } 1372 1373 if (target__none(target)) { 1374 if (evlist->core.threads == NULL) { 1375 fprintf(stderr, "FATAL: evlist->threads need to be set at this point (%s:%d).\n", 1376 __func__, __LINE__); 1377 goto out_close_pipes; 1378 } 1379 perf_thread_map__set_pid(evlist->core.threads, 0, evlist->workload.pid); 1380 } 1381 1382 close(child_ready_pipe[1]); 1383 close(go_pipe[0]); 1384 /* 1385 * wait for child to settle 1386 */ 1387 if (read(child_ready_pipe[0], &bf, 1) == -1) { 1388 perror("unable to read pipe"); 1389 goto out_close_pipes; 1390 } 1391 1392 fcntl(go_pipe[1], F_SETFD, FD_CLOEXEC); 1393 evlist->workload.cork_fd = go_pipe[1]; 1394 close(child_ready_pipe[0]); 1395 return 0; 1396 1397 out_close_pipes: 1398 close(go_pipe[0]); 1399 close(go_pipe[1]); 1400 out_close_ready_pipe: 1401 close(child_ready_pipe[0]); 1402 close(child_ready_pipe[1]); 1403 return -1; 1404 } 1405 1406 int evlist__start_workload(struct evlist *evlist) 1407 { 1408 if (evlist->workload.cork_fd > 0) { 1409 char bf = 0; 1410 int ret; 1411 /* 1412 * Remove the cork, let it rip! 1413 */ 1414 ret = write(evlist->workload.cork_fd, &bf, 1); 1415 if (ret < 0) 1416 perror("unable to write to pipe"); 1417 1418 close(evlist->workload.cork_fd); 1419 return ret; 1420 } 1421 1422 return 0; 1423 } 1424 1425 int evlist__parse_sample(struct evlist *evlist, union perf_event *event, struct perf_sample *sample) 1426 { 1427 struct evsel *evsel = evlist__event2evsel(evlist, event); 1428 1429 if (!evsel) 1430 return -EFAULT; 1431 return evsel__parse_sample(evsel, event, sample); 1432 } 1433 1434 int evlist__parse_sample_timestamp(struct evlist *evlist, union perf_event *event, u64 *timestamp) 1435 { 1436 struct evsel *evsel = evlist__event2evsel(evlist, event); 1437 1438 if (!evsel) 1439 return -EFAULT; 1440 return evsel__parse_sample_timestamp(evsel, event, timestamp); 1441 } 1442 1443 int evlist__strerror_open(struct evlist *evlist, int err, char *buf, size_t size) 1444 { 1445 int printed, value; 1446 char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf)); 1447 1448 switch (err) { 1449 case EACCES: 1450 case EPERM: 1451 printed = scnprintf(buf, size, 1452 "Error:\t%s.\n" 1453 "Hint:\tCheck /proc/sys/kernel/perf_event_paranoid setting.", emsg); 1454 1455 value = perf_event_paranoid(); 1456 1457 printed += scnprintf(buf + printed, size - printed, "\nHint:\t"); 1458 1459 if (value >= 2) { 1460 printed += scnprintf(buf + printed, size - printed, 1461 "For your workloads it needs to be <= 1\nHint:\t"); 1462 } 1463 printed += scnprintf(buf + printed, size - printed, 1464 "For system wide tracing it needs to be set to -1.\n"); 1465 1466 printed += scnprintf(buf + printed, size - printed, 1467 "Hint:\tTry: 'sudo sh -c \"echo -1 > /proc/sys/kernel/perf_event_paranoid\"'\n" 1468 "Hint:\tThe current value is %d.", value); 1469 break; 1470 case EINVAL: { 1471 struct evsel *first = evlist__first(evlist); 1472 int max_freq; 1473 1474 if (sysctl__read_int("kernel/perf_event_max_sample_rate", &max_freq) < 0) 1475 goto out_default; 1476 1477 if (first->core.attr.sample_freq < (u64)max_freq) 1478 goto out_default; 1479 1480 printed = scnprintf(buf, size, 1481 "Error:\t%s.\n" 1482 "Hint:\tCheck /proc/sys/kernel/perf_event_max_sample_rate.\n" 1483 "Hint:\tThe current value is %d and %" PRIu64 " is being requested.", 1484 emsg, max_freq, first->core.attr.sample_freq); 1485 break; 1486 } 1487 default: 1488 out_default: 1489 scnprintf(buf, size, "%s", emsg); 1490 break; 1491 } 1492 1493 return 0; 1494 } 1495 1496 int evlist__strerror_mmap(struct evlist *evlist, int err, char *buf, size_t size) 1497 { 1498 char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf)); 1499 int pages_attempted = evlist->core.mmap_len / 1024, pages_max_per_user, printed = 0; 1500 1501 switch (err) { 1502 case EPERM: 1503 sysctl__read_int("kernel/perf_event_mlock_kb", &pages_max_per_user); 1504 printed += scnprintf(buf + printed, size - printed, 1505 "Error:\t%s.\n" 1506 "Hint:\tCheck /proc/sys/kernel/perf_event_mlock_kb (%d kB) setting.\n" 1507 "Hint:\tTried using %zd kB.\n", 1508 emsg, pages_max_per_user, pages_attempted); 1509 1510 if (pages_attempted >= pages_max_per_user) { 1511 printed += scnprintf(buf + printed, size - printed, 1512 "Hint:\tTry 'sudo sh -c \"echo %d > /proc/sys/kernel/perf_event_mlock_kb\"', or\n", 1513 pages_max_per_user + pages_attempted); 1514 } 1515 1516 printed += scnprintf(buf + printed, size - printed, 1517 "Hint:\tTry using a smaller -m/--mmap-pages value."); 1518 break; 1519 default: 1520 scnprintf(buf, size, "%s", emsg); 1521 break; 1522 } 1523 1524 return 0; 1525 } 1526 1527 void perf_evlist__to_front(struct evlist *evlist, 1528 struct evsel *move_evsel) 1529 { 1530 struct evsel *evsel, *n; 1531 LIST_HEAD(move); 1532 1533 if (move_evsel == evlist__first(evlist)) 1534 return; 1535 1536 evlist__for_each_entry_safe(evlist, n, evsel) { 1537 if (evsel->leader == move_evsel->leader) 1538 list_move_tail(&evsel->core.node, &move); 1539 } 1540 1541 list_splice(&move, &evlist->core.entries); 1542 } 1543 1544 struct evsel *perf_evlist__get_tracking_event(struct evlist *evlist) 1545 { 1546 struct evsel *evsel; 1547 1548 evlist__for_each_entry(evlist, evsel) { 1549 if (evsel->tracking) 1550 return evsel; 1551 } 1552 1553 return evlist__first(evlist); 1554 } 1555 1556 void perf_evlist__set_tracking_event(struct evlist *evlist, 1557 struct evsel *tracking_evsel) 1558 { 1559 struct evsel *evsel; 1560 1561 if (tracking_evsel->tracking) 1562 return; 1563 1564 evlist__for_each_entry(evlist, evsel) { 1565 if (evsel != tracking_evsel) 1566 evsel->tracking = false; 1567 } 1568 1569 tracking_evsel->tracking = true; 1570 } 1571 1572 struct evsel *evlist__find_evsel_by_str(struct evlist *evlist, const char *str) 1573 { 1574 struct evsel *evsel; 1575 1576 evlist__for_each_entry(evlist, evsel) { 1577 if (!evsel->name) 1578 continue; 1579 if (strcmp(str, evsel->name) == 0) 1580 return evsel; 1581 } 1582 1583 return NULL; 1584 } 1585 1586 void evlist__toggle_bkw_mmap(struct evlist *evlist, enum bkw_mmap_state state) 1587 { 1588 enum bkw_mmap_state old_state = evlist->bkw_mmap_state; 1589 enum action { 1590 NONE, 1591 PAUSE, 1592 RESUME, 1593 } action = NONE; 1594 1595 if (!evlist->overwrite_mmap) 1596 return; 1597 1598 switch (old_state) { 1599 case BKW_MMAP_NOTREADY: { 1600 if (state != BKW_MMAP_RUNNING) 1601 goto state_err; 1602 break; 1603 } 1604 case BKW_MMAP_RUNNING: { 1605 if (state != BKW_MMAP_DATA_PENDING) 1606 goto state_err; 1607 action = PAUSE; 1608 break; 1609 } 1610 case BKW_MMAP_DATA_PENDING: { 1611 if (state != BKW_MMAP_EMPTY) 1612 goto state_err; 1613 break; 1614 } 1615 case BKW_MMAP_EMPTY: { 1616 if (state != BKW_MMAP_RUNNING) 1617 goto state_err; 1618 action = RESUME; 1619 break; 1620 } 1621 default: 1622 WARN_ONCE(1, "Shouldn't get there\n"); 1623 } 1624 1625 evlist->bkw_mmap_state = state; 1626 1627 switch (action) { 1628 case PAUSE: 1629 perf_evlist__pause(evlist); 1630 break; 1631 case RESUME: 1632 perf_evlist__resume(evlist); 1633 break; 1634 case NONE: 1635 default: 1636 break; 1637 } 1638 1639 state_err: 1640 return; 1641 } 1642 1643 bool perf_evlist__exclude_kernel(struct evlist *evlist) 1644 { 1645 struct evsel *evsel; 1646 1647 evlist__for_each_entry(evlist, evsel) { 1648 if (!evsel->core.attr.exclude_kernel) 1649 return false; 1650 } 1651 1652 return true; 1653 } 1654 1655 /* 1656 * Events in data file are not collect in groups, but we still want 1657 * the group display. Set the artificial group and set the leader's 1658 * forced_leader flag to notify the display code. 1659 */ 1660 void perf_evlist__force_leader(struct evlist *evlist) 1661 { 1662 if (!evlist->nr_groups) { 1663 struct evsel *leader = evlist__first(evlist); 1664 1665 evlist__set_leader(evlist); 1666 leader->forced_leader = true; 1667 } 1668 } 1669 1670 struct evsel *perf_evlist__reset_weak_group(struct evlist *evsel_list, 1671 struct evsel *evsel, 1672 bool close) 1673 { 1674 struct evsel *c2, *leader; 1675 bool is_open = true; 1676 1677 leader = evsel->leader; 1678 pr_debug("Weak group for %s/%d failed\n", 1679 leader->name, leader->core.nr_members); 1680 1681 /* 1682 * for_each_group_member doesn't work here because it doesn't 1683 * include the first entry. 1684 */ 1685 evlist__for_each_entry(evsel_list, c2) { 1686 if (c2 == evsel) 1687 is_open = false; 1688 if (c2->leader == leader) { 1689 if (is_open && close) 1690 perf_evsel__close(&c2->core); 1691 c2->leader = c2; 1692 c2->core.nr_members = 0; 1693 /* 1694 * Set this for all former members of the group 1695 * to indicate they get reopened. 1696 */ 1697 c2->reset_group = true; 1698 } 1699 } 1700 return leader; 1701 } 1702 1703 static int evlist__parse_control_fifo(const char *str, int *ctl_fd, int *ctl_fd_ack, bool *ctl_fd_close) 1704 { 1705 char *s, *p; 1706 int ret = 0, fd; 1707 1708 if (strncmp(str, "fifo:", 5)) 1709 return -EINVAL; 1710 1711 str += 5; 1712 if (!*str || *str == ',') 1713 return -EINVAL; 1714 1715 s = strdup(str); 1716 if (!s) 1717 return -ENOMEM; 1718 1719 p = strchr(s, ','); 1720 if (p) 1721 *p = '\0'; 1722 1723 /* 1724 * O_RDWR avoids POLLHUPs which is necessary to allow the other 1725 * end of a FIFO to be repeatedly opened and closed. 1726 */ 1727 fd = open(s, O_RDWR | O_NONBLOCK | O_CLOEXEC); 1728 if (fd < 0) { 1729 pr_err("Failed to open '%s'\n", s); 1730 ret = -errno; 1731 goto out_free; 1732 } 1733 *ctl_fd = fd; 1734 *ctl_fd_close = true; 1735 1736 if (p && *++p) { 1737 /* O_RDWR | O_NONBLOCK means the other end need not be open */ 1738 fd = open(p, O_RDWR | O_NONBLOCK | O_CLOEXEC); 1739 if (fd < 0) { 1740 pr_err("Failed to open '%s'\n", p); 1741 ret = -errno; 1742 goto out_free; 1743 } 1744 *ctl_fd_ack = fd; 1745 } 1746 1747 out_free: 1748 free(s); 1749 return ret; 1750 } 1751 1752 int evlist__parse_control(const char *str, int *ctl_fd, int *ctl_fd_ack, bool *ctl_fd_close) 1753 { 1754 char *comma = NULL, *endptr = NULL; 1755 1756 *ctl_fd_close = false; 1757 1758 if (strncmp(str, "fd:", 3)) 1759 return evlist__parse_control_fifo(str, ctl_fd, ctl_fd_ack, ctl_fd_close); 1760 1761 *ctl_fd = strtoul(&str[3], &endptr, 0); 1762 if (endptr == &str[3]) 1763 return -EINVAL; 1764 1765 comma = strchr(str, ','); 1766 if (comma) { 1767 if (endptr != comma) 1768 return -EINVAL; 1769 1770 *ctl_fd_ack = strtoul(comma + 1, &endptr, 0); 1771 if (endptr == comma + 1 || *endptr != '\0') 1772 return -EINVAL; 1773 } 1774 1775 return 0; 1776 } 1777 1778 void evlist__close_control(int ctl_fd, int ctl_fd_ack, bool *ctl_fd_close) 1779 { 1780 if (*ctl_fd_close) { 1781 *ctl_fd_close = false; 1782 close(ctl_fd); 1783 if (ctl_fd_ack >= 0) 1784 close(ctl_fd_ack); 1785 } 1786 } 1787 1788 int evlist__initialize_ctlfd(struct evlist *evlist, int fd, int ack) 1789 { 1790 if (fd == -1) { 1791 pr_debug("Control descriptor is not initialized\n"); 1792 return 0; 1793 } 1794 1795 evlist->ctl_fd.pos = perf_evlist__add_pollfd(&evlist->core, fd, NULL, POLLIN, 1796 fdarray_flag__nonfilterable); 1797 if (evlist->ctl_fd.pos < 0) { 1798 evlist->ctl_fd.pos = -1; 1799 pr_err("Failed to add ctl fd entry: %m\n"); 1800 return -1; 1801 } 1802 1803 evlist->ctl_fd.fd = fd; 1804 evlist->ctl_fd.ack = ack; 1805 1806 return 0; 1807 } 1808 1809 bool evlist__ctlfd_initialized(struct evlist *evlist) 1810 { 1811 return evlist->ctl_fd.pos >= 0; 1812 } 1813 1814 int evlist__finalize_ctlfd(struct evlist *evlist) 1815 { 1816 struct pollfd *entries = evlist->core.pollfd.entries; 1817 1818 if (!evlist__ctlfd_initialized(evlist)) 1819 return 0; 1820 1821 entries[evlist->ctl_fd.pos].fd = -1; 1822 entries[evlist->ctl_fd.pos].events = 0; 1823 entries[evlist->ctl_fd.pos].revents = 0; 1824 1825 evlist->ctl_fd.pos = -1; 1826 evlist->ctl_fd.ack = -1; 1827 evlist->ctl_fd.fd = -1; 1828 1829 return 0; 1830 } 1831 1832 static int evlist__ctlfd_recv(struct evlist *evlist, enum evlist_ctl_cmd *cmd, 1833 char *cmd_data, size_t data_size) 1834 { 1835 int err; 1836 char c; 1837 size_t bytes_read = 0; 1838 1839 *cmd = EVLIST_CTL_CMD_UNSUPPORTED; 1840 memset(cmd_data, 0, data_size); 1841 data_size--; 1842 1843 do { 1844 err = read(evlist->ctl_fd.fd, &c, 1); 1845 if (err > 0) { 1846 if (c == '\n' || c == '\0') 1847 break; 1848 cmd_data[bytes_read++] = c; 1849 if (bytes_read == data_size) 1850 break; 1851 continue; 1852 } else if (err == -1) { 1853 if (errno == EINTR) 1854 continue; 1855 if (errno == EAGAIN || errno == EWOULDBLOCK) 1856 err = 0; 1857 else 1858 pr_err("Failed to read from ctlfd %d: %m\n", evlist->ctl_fd.fd); 1859 } 1860 break; 1861 } while (1); 1862 1863 pr_debug("Message from ctl_fd: \"%s%s\"\n", cmd_data, 1864 bytes_read == data_size ? "" : c == '\n' ? "\\n" : "\\0"); 1865 1866 if (bytes_read > 0) { 1867 if (!strncmp(cmd_data, EVLIST_CTL_CMD_ENABLE_TAG, 1868 (sizeof(EVLIST_CTL_CMD_ENABLE_TAG)-1))) { 1869 *cmd = EVLIST_CTL_CMD_ENABLE; 1870 } else if (!strncmp(cmd_data, EVLIST_CTL_CMD_DISABLE_TAG, 1871 (sizeof(EVLIST_CTL_CMD_DISABLE_TAG)-1))) { 1872 *cmd = EVLIST_CTL_CMD_DISABLE; 1873 } else if (!strncmp(cmd_data, EVLIST_CTL_CMD_SNAPSHOT_TAG, 1874 (sizeof(EVLIST_CTL_CMD_SNAPSHOT_TAG)-1))) { 1875 *cmd = EVLIST_CTL_CMD_SNAPSHOT; 1876 pr_debug("is snapshot\n"); 1877 } 1878 } 1879 1880 return bytes_read ? (int)bytes_read : err; 1881 } 1882 1883 int evlist__ctlfd_ack(struct evlist *evlist) 1884 { 1885 int err; 1886 1887 if (evlist->ctl_fd.ack == -1) 1888 return 0; 1889 1890 err = write(evlist->ctl_fd.ack, EVLIST_CTL_CMD_ACK_TAG, 1891 sizeof(EVLIST_CTL_CMD_ACK_TAG)); 1892 if (err == -1) 1893 pr_err("failed to write to ctl_ack_fd %d: %m\n", evlist->ctl_fd.ack); 1894 1895 return err; 1896 } 1897 1898 int evlist__ctlfd_process(struct evlist *evlist, enum evlist_ctl_cmd *cmd) 1899 { 1900 int err = 0; 1901 char cmd_data[EVLIST_CTL_CMD_MAX_LEN]; 1902 int ctlfd_pos = evlist->ctl_fd.pos; 1903 struct pollfd *entries = evlist->core.pollfd.entries; 1904 1905 if (!evlist__ctlfd_initialized(evlist) || !entries[ctlfd_pos].revents) 1906 return 0; 1907 1908 if (entries[ctlfd_pos].revents & POLLIN) { 1909 err = evlist__ctlfd_recv(evlist, cmd, cmd_data, 1910 EVLIST_CTL_CMD_MAX_LEN); 1911 if (err > 0) { 1912 switch (*cmd) { 1913 case EVLIST_CTL_CMD_ENABLE: 1914 evlist__enable(evlist); 1915 break; 1916 case EVLIST_CTL_CMD_DISABLE: 1917 evlist__disable(evlist); 1918 break; 1919 case EVLIST_CTL_CMD_SNAPSHOT: 1920 break; 1921 case EVLIST_CTL_CMD_ACK: 1922 case EVLIST_CTL_CMD_UNSUPPORTED: 1923 default: 1924 pr_debug("ctlfd: unsupported %d\n", *cmd); 1925 break; 1926 } 1927 if (!(*cmd == EVLIST_CTL_CMD_ACK || *cmd == EVLIST_CTL_CMD_UNSUPPORTED || 1928 *cmd == EVLIST_CTL_CMD_SNAPSHOT)) 1929 evlist__ctlfd_ack(evlist); 1930 } 1931 } 1932 1933 if (entries[ctlfd_pos].revents & (POLLHUP | POLLERR)) 1934 evlist__finalize_ctlfd(evlist); 1935 else 1936 entries[ctlfd_pos].revents = 0; 1937 1938 return err; 1939 } 1940 1941 struct evsel *evlist__find_evsel(struct evlist *evlist, int idx) 1942 { 1943 struct evsel *evsel; 1944 1945 evlist__for_each_entry(evlist, evsel) { 1946 if (evsel->idx == idx) 1947 return evsel; 1948 } 1949 return NULL; 1950 } 1951