1 /*- 2 * Copyright (c) 2005-2007, Joseph Koshy 3 * Copyright (c) 2007 The FreeBSD Foundation 4 * All rights reserved. 5 * 6 * Portions of this software were developed by A. Joseph Koshy under 7 * sponsorship from the FreeBSD Foundation and Google, Inc. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 */ 30 31 /* 32 * Transform a hwpmc(4) log into human readable form, and into 33 * gprof(1) compatible profiles. 34 */ 35 36 #include <sys/cdefs.h> 37 __FBSDID("$FreeBSD$"); 38 39 #include <sys/param.h> 40 #include <sys/endian.h> 41 #include <sys/gmon.h> 42 #include <sys/imgact_aout.h> 43 #include <sys/imgact_elf.h> 44 #include <sys/mman.h> 45 #include <sys/pmc.h> 46 #include <sys/queue.h> 47 #include <sys/socket.h> 48 #include <sys/stat.h> 49 #include <sys/wait.h> 50 51 #include <netinet/in.h> 52 53 #include <assert.h> 54 #include <curses.h> 55 #include <err.h> 56 #include <errno.h> 57 #include <fcntl.h> 58 #include <gelf.h> 59 #include <libgen.h> 60 #include <limits.h> 61 #include <netdb.h> 62 #include <pmc.h> 63 #include <pmclog.h> 64 #include <sysexits.h> 65 #include <stdint.h> 66 #include <stdio.h> 67 #include <stdlib.h> 68 #include <string.h> 69 #include <unistd.h> 70 71 #include "pmcstat.h" 72 #include "pmcstat_log.h" 73 #include "pmcstat_top.h" 74 75 #define PMCSTAT_ALLOCATE 1 76 77 /* 78 * PUBLIC INTERFACES 79 * 80 * pmcstat_initialize_logging() initialize this module, called first 81 * pmcstat_shutdown_logging() orderly shutdown, called last 82 * pmcstat_open_log() open an eventlog for processing 83 * pmcstat_process_log() print/convert an event log 84 * pmcstat_display_log() top mode display for the log 85 * pmcstat_close_log() finish processing an event log 86 * 87 * IMPLEMENTATION NOTES 88 * 89 * We correlate each 'callchain' or 'sample' entry seen in the event 90 * log back to an executable object in the system. Executable objects 91 * include: 92 * - program executables, 93 * - shared libraries loaded by the runtime loader, 94 * - dlopen()'ed objects loaded by the program, 95 * - the runtime loader itself, 96 * - the kernel and kernel modules. 97 * 98 * Each process that we know about is treated as a set of regions that 99 * map to executable objects. Processes are described by 100 * 'pmcstat_process' structures. Executable objects are tracked by 101 * 'pmcstat_image' structures. The kernel and kernel modules are 102 * common to all processes (they reside at the same virtual addresses 103 * for all processes). Individual processes can have their text 104 * segments and shared libraries loaded at process-specific locations. 105 * 106 * A given executable object can be in use by multiple processes 107 * (e.g., libc.so) and loaded at a different address in each. 108 * pmcstat_pcmap structures track per-image mappings. 109 * 110 * The sample log could have samples from multiple PMCs; we 111 * generate one 'gmon.out' profile per PMC. 112 * 113 * IMPLEMENTATION OF GMON OUTPUT 114 * 115 * Each executable object gets one 'gmon.out' profile, per PMC in 116 * use. Creation of 'gmon.out' profiles is done lazily. The 117 * 'gmon.out' profiles generated for a given sampling PMC are 118 * aggregates of all the samples for that particular executable 119 * object. 120 * 121 * IMPLEMENTATION OF SYSTEM-WIDE CALLGRAPH OUTPUT 122 * 123 * Each active pmcid has its own callgraph structure, described by a 124 * 'struct pmcstat_callgraph'. Given a process id and a list of pc 125 * values, we map each pc value to a tuple (image, symbol), where 126 * 'image' denotes an executable object and 'symbol' is the closest 127 * symbol that precedes the pc value. Each pc value in the list is 128 * also given a 'rank' that reflects its depth in the call stack. 129 */ 130 131 struct pmcstat_pmcs pmcstat_pmcs = LIST_HEAD_INITIALIZER(pmcstat_pmcs); 132 133 /* 134 * All image descriptors are kept in a hash table. 135 */ 136 struct pmcstat_image_hash_list pmcstat_image_hash[PMCSTAT_NHASH]; 137 138 /* 139 * All process descriptors are kept in a hash table. 140 */ 141 struct pmcstat_process_hash_list pmcstat_process_hash[PMCSTAT_NHASH]; 142 143 struct pmcstat_stats pmcstat_stats; /* statistics */ 144 145 struct pmcstat_process *pmcstat_kernproc; /* kernel 'process' */ 146 147 #include "pmcpl_gprof.h" 148 #include "pmcpl_callgraph.h" 149 #include "pmcpl_annotate.h" 150 #include "pmcpl_calltree.h" 151 152 struct pmc_plugins { 153 const char *pl_name; /* name */ 154 155 /* configure */ 156 int (*pl_configure)(char *opt); 157 158 /* init and shutdown */ 159 int (*pl_init)(void); 160 void (*pl_shutdown)(FILE *mf); 161 162 /* sample processing */ 163 void (*pl_process)(struct pmcstat_process *pp, 164 struct pmcstat_pmcrecord *pmcr, uint32_t nsamples, 165 uintfptr_t *cc, int usermode, uint32_t cpu); 166 167 /* image */ 168 void (*pl_initimage)(struct pmcstat_image *pi); 169 void (*pl_shutdownimage)(struct pmcstat_image *pi); 170 171 /* pmc */ 172 void (*pl_newpmc)(pmcstat_interned_string ps, 173 struct pmcstat_pmcrecord *pr); 174 175 /* top display */ 176 void (*pl_topdisplay)(void); 177 178 /* top keypress */ 179 int (*pl_topkeypress)(int c, WINDOW *w); 180 181 } plugins[] = { 182 { 183 .pl_name = "none", 184 }, 185 { 186 .pl_name = "callgraph", 187 .pl_init = pmcpl_cg_init, 188 .pl_shutdown = pmcpl_cg_shutdown, 189 .pl_process = pmcpl_cg_process, 190 .pl_topkeypress = pmcpl_cg_topkeypress, 191 .pl_topdisplay = pmcpl_cg_topdisplay 192 }, 193 { 194 .pl_name = "gprof", 195 .pl_shutdown = pmcpl_gmon_shutdown, 196 .pl_process = pmcpl_gmon_process, 197 .pl_initimage = pmcpl_gmon_initimage, 198 .pl_shutdownimage = pmcpl_gmon_shutdownimage, 199 .pl_newpmc = pmcpl_gmon_newpmc 200 }, 201 { 202 .pl_name = "annotate", 203 .pl_process = pmcpl_annotate_process 204 }, 205 { 206 .pl_name = "calltree", 207 .pl_configure = pmcpl_ct_configure, 208 .pl_init = pmcpl_ct_init, 209 .pl_shutdown = pmcpl_ct_shutdown, 210 .pl_process = pmcpl_ct_process, 211 .pl_topkeypress = pmcpl_ct_topkeypress, 212 .pl_topdisplay = pmcpl_ct_topdisplay 213 }, 214 { 215 .pl_name = NULL 216 } 217 }; 218 219 int pmcstat_mergepmc; 220 221 int pmcstat_pmcinfilter = 0; /* PMC filter for top mode. */ 222 float pmcstat_threshold = 0.5; /* Cost filter for top mode. */ 223 224 /* 225 * Prototypes 226 */ 227 228 static struct pmcstat_image *pmcstat_image_from_path(pmcstat_interned_string 229 _path, int _iskernelmodule); 230 static void pmcstat_image_get_aout_params(struct pmcstat_image *_image); 231 static void pmcstat_image_get_elf_params(struct pmcstat_image *_image); 232 static void pmcstat_image_link(struct pmcstat_process *_pp, 233 struct pmcstat_image *_i, uintfptr_t _lpc); 234 235 static void pmcstat_pmcid_add(pmc_id_t _pmcid, 236 pmcstat_interned_string _name); 237 238 static void pmcstat_process_aout_exec(struct pmcstat_process *_pp, 239 struct pmcstat_image *_image, uintfptr_t _entryaddr); 240 static void pmcstat_process_elf_exec(struct pmcstat_process *_pp, 241 struct pmcstat_image *_image, uintfptr_t _entryaddr); 242 static void pmcstat_process_exec(struct pmcstat_process *_pp, 243 pmcstat_interned_string _path, uintfptr_t _entryaddr); 244 static struct pmcstat_process *pmcstat_process_lookup(pid_t _pid, 245 int _allocate); 246 static int pmcstat_string_compute_hash(const char *_string); 247 static void pmcstat_string_initialize(void); 248 static int pmcstat_string_lookup_hash(pmcstat_interned_string _is); 249 static void pmcstat_string_shutdown(void); 250 static void pmcstat_stats_reset(void); 251 252 /* 253 * A simple implementation of interned strings. Each interned string 254 * is assigned a unique address, so that subsequent string compares 255 * can be done by a simple pointer comparision instead of using 256 * strcmp(). This speeds up hash table lookups and saves memory if 257 * duplicate strings are the norm. 258 */ 259 struct pmcstat_string { 260 LIST_ENTRY(pmcstat_string) ps_next; /* hash link */ 261 int ps_len; 262 int ps_hash; 263 char *ps_string; 264 }; 265 266 static LIST_HEAD(,pmcstat_string) pmcstat_string_hash[PMCSTAT_NHASH]; 267 268 /* 269 * PMC count. 270 */ 271 int pmcstat_npmcs; 272 273 /* 274 * PMC Top mode pause state. 275 */ 276 int pmcstat_pause; 277 278 static void 279 pmcstat_stats_reset(void) 280 { 281 struct pmcstat_pmcrecord *pr; 282 283 /* Flush PMCs stats. */ 284 LIST_FOREACH(pr, &pmcstat_pmcs, pr_next) { 285 pr->pr_samples = 0; 286 pr->pr_dubious_frames = 0; 287 } 288 289 /* Flush global stats. */ 290 bzero(&pmcstat_stats, sizeof(struct pmcstat_stats)); 291 } 292 293 /* 294 * Compute a 'hash' value for a string. 295 */ 296 297 static int 298 pmcstat_string_compute_hash(const char *s) 299 { 300 int hash; 301 302 for (hash = 0; *s; s++) 303 hash ^= *s; 304 305 return (hash & PMCSTAT_HASH_MASK); 306 } 307 308 /* 309 * Intern a copy of string 's', and return a pointer to the 310 * interned structure. 311 */ 312 313 pmcstat_interned_string 314 pmcstat_string_intern(const char *s) 315 { 316 struct pmcstat_string *ps; 317 const struct pmcstat_string *cps; 318 int hash, len; 319 320 if ((cps = pmcstat_string_lookup(s)) != NULL) 321 return (cps); 322 323 hash = pmcstat_string_compute_hash(s); 324 len = strlen(s); 325 326 if ((ps = malloc(sizeof(*ps))) == NULL) 327 err(EX_OSERR, "ERROR: Could not intern string"); 328 ps->ps_len = len; 329 ps->ps_hash = hash; 330 ps->ps_string = strdup(s); 331 LIST_INSERT_HEAD(&pmcstat_string_hash[hash], ps, ps_next); 332 return ((pmcstat_interned_string) ps); 333 } 334 335 const char * 336 pmcstat_string_unintern(pmcstat_interned_string str) 337 { 338 const char *s; 339 340 s = ((const struct pmcstat_string *) str)->ps_string; 341 return (s); 342 } 343 344 pmcstat_interned_string 345 pmcstat_string_lookup(const char *s) 346 { 347 struct pmcstat_string *ps; 348 int hash, len; 349 350 hash = pmcstat_string_compute_hash(s); 351 len = strlen(s); 352 353 LIST_FOREACH(ps, &pmcstat_string_hash[hash], ps_next) 354 if (ps->ps_len == len && ps->ps_hash == hash && 355 strcmp(ps->ps_string, s) == 0) 356 return (ps); 357 return (NULL); 358 } 359 360 static int 361 pmcstat_string_lookup_hash(pmcstat_interned_string s) 362 { 363 const struct pmcstat_string *ps; 364 365 ps = (const struct pmcstat_string *) s; 366 return (ps->ps_hash); 367 } 368 369 /* 370 * Initialize the string interning facility. 371 */ 372 373 static void 374 pmcstat_string_initialize(void) 375 { 376 int i; 377 378 for (i = 0; i < PMCSTAT_NHASH; i++) 379 LIST_INIT(&pmcstat_string_hash[i]); 380 } 381 382 /* 383 * Destroy the string table, free'ing up space. 384 */ 385 386 static void 387 pmcstat_string_shutdown(void) 388 { 389 int i; 390 struct pmcstat_string *ps, *pstmp; 391 392 for (i = 0; i < PMCSTAT_NHASH; i++) 393 LIST_FOREACH_SAFE(ps, &pmcstat_string_hash[i], ps_next, 394 pstmp) { 395 LIST_REMOVE(ps, ps_next); 396 free(ps->ps_string); 397 free(ps); 398 } 399 } 400 401 /* 402 * Determine whether a given executable image is an A.OUT object, and 403 * if so, fill in its parameters from the text file. 404 * Sets image->pi_type. 405 */ 406 407 static void 408 pmcstat_image_get_aout_params(struct pmcstat_image *image) 409 { 410 int fd; 411 ssize_t nbytes; 412 struct exec ex; 413 const char *path; 414 char buffer[PATH_MAX]; 415 416 path = pmcstat_string_unintern(image->pi_execpath); 417 assert(path != NULL); 418 419 if (image->pi_iskernelmodule) 420 errx(EX_SOFTWARE, "ERROR: a.out kernel modules are " 421 "unsupported \"%s\"", path); 422 423 (void) snprintf(buffer, sizeof(buffer), "%s%s", 424 args.pa_fsroot, path); 425 426 if ((fd = open(buffer, O_RDONLY, 0)) < 0 || 427 (nbytes = read(fd, &ex, sizeof(ex))) < 0) { 428 warn("WARNING: Cannot determine type of \"%s\"", path); 429 image->pi_type = PMCSTAT_IMAGE_INDETERMINABLE; 430 if (fd != -1) 431 (void) close(fd); 432 return; 433 } 434 435 (void) close(fd); 436 437 if ((unsigned) nbytes != sizeof(ex) || 438 N_BADMAG(ex)) 439 return; 440 441 image->pi_type = PMCSTAT_IMAGE_AOUT; 442 443 /* TODO: the rest of a.out processing */ 444 445 return; 446 } 447 448 /* 449 * Helper function. 450 */ 451 452 static int 453 pmcstat_symbol_compare(const void *a, const void *b) 454 { 455 const struct pmcstat_symbol *sym1, *sym2; 456 457 sym1 = (const struct pmcstat_symbol *) a; 458 sym2 = (const struct pmcstat_symbol *) b; 459 460 if (sym1->ps_end <= sym2->ps_start) 461 return (-1); 462 if (sym1->ps_start >= sym2->ps_end) 463 return (1); 464 return (0); 465 } 466 467 /* 468 * Map an address to a symbol in an image. 469 */ 470 471 struct pmcstat_symbol * 472 pmcstat_symbol_search(struct pmcstat_image *image, uintfptr_t addr) 473 { 474 struct pmcstat_symbol sym; 475 476 if (image->pi_symbols == NULL) 477 return (NULL); 478 479 sym.ps_name = NULL; 480 sym.ps_start = addr; 481 sym.ps_end = addr + 1; 482 483 return (bsearch((void *) &sym, image->pi_symbols, 484 image->pi_symcount, sizeof(struct pmcstat_symbol), 485 pmcstat_symbol_compare)); 486 } 487 488 /* 489 * Add the list of symbols in the given section to the list associated 490 * with the object. 491 */ 492 static void 493 pmcstat_image_add_symbols(struct pmcstat_image *image, Elf *e, 494 Elf_Scn *scn, GElf_Shdr *sh) 495 { 496 int firsttime; 497 size_t n, newsyms, nshsyms, nfuncsyms; 498 struct pmcstat_symbol *symptr; 499 char *fnname; 500 GElf_Sym sym; 501 Elf_Data *data; 502 503 if ((data = elf_getdata(scn, NULL)) == NULL) 504 return; 505 506 /* 507 * Determine the number of functions named in this 508 * section. 509 */ 510 511 nshsyms = sh->sh_size / sh->sh_entsize; 512 for (n = nfuncsyms = 0; n < nshsyms; n++) { 513 if (gelf_getsym(data, (int) n, &sym) != &sym) 514 return; 515 if (GELF_ST_TYPE(sym.st_info) == STT_FUNC) 516 nfuncsyms++; 517 } 518 519 if (nfuncsyms == 0) 520 return; 521 522 /* 523 * Allocate space for the new entries. 524 */ 525 firsttime = image->pi_symbols == NULL; 526 symptr = realloc(image->pi_symbols, 527 sizeof(*symptr) * (image->pi_symcount + nfuncsyms)); 528 if (symptr == image->pi_symbols) /* realloc() failed. */ 529 return; 530 image->pi_symbols = symptr; 531 532 /* 533 * Append new symbols to the end of the current table. 534 */ 535 symptr += image->pi_symcount; 536 537 for (n = newsyms = 0; n < nshsyms; n++) { 538 if (gelf_getsym(data, (int) n, &sym) != &sym) 539 return; 540 if (GELF_ST_TYPE(sym.st_info) != STT_FUNC) 541 continue; 542 543 if (!firsttime && pmcstat_symbol_search(image, sym.st_value)) 544 continue; /* We've seen this symbol already. */ 545 546 if ((fnname = elf_strptr(e, sh->sh_link, sym.st_name)) 547 == NULL) 548 continue; 549 550 symptr->ps_name = pmcstat_string_intern(fnname); 551 symptr->ps_start = sym.st_value - image->pi_vaddr; 552 symptr->ps_end = symptr->ps_start + sym.st_size; 553 symptr++; 554 555 newsyms++; 556 } 557 558 image->pi_symcount += newsyms; 559 560 assert(newsyms <= nfuncsyms); 561 562 /* 563 * Return space to the system if there were duplicates. 564 */ 565 if (newsyms < nfuncsyms) 566 image->pi_symbols = realloc(image->pi_symbols, 567 sizeof(*symptr) * image->pi_symcount); 568 569 /* 570 * Keep the list of symbols sorted. 571 */ 572 qsort(image->pi_symbols, image->pi_symcount, sizeof(*symptr), 573 pmcstat_symbol_compare); 574 575 /* 576 * Deal with function symbols that have a size of 'zero' by 577 * making them extend to the next higher address. These 578 * symbols are usually defined in assembly code. 579 */ 580 for (symptr = image->pi_symbols; 581 symptr < image->pi_symbols + (image->pi_symcount - 1); 582 symptr++) 583 if (symptr->ps_start == symptr->ps_end) 584 symptr->ps_end = (symptr+1)->ps_start; 585 } 586 587 /* 588 * Examine an ELF file to determine the size of its text segment. 589 * Sets image->pi_type if anything conclusive can be determined about 590 * this image. 591 */ 592 593 static void 594 pmcstat_image_get_elf_params(struct pmcstat_image *image) 595 { 596 int fd; 597 size_t i, nph, nsh; 598 const char *path, *elfbase; 599 char *p, *endp; 600 uintfptr_t minva, maxva; 601 Elf *e; 602 Elf_Scn *scn; 603 GElf_Ehdr eh; 604 GElf_Phdr ph; 605 GElf_Shdr sh; 606 enum pmcstat_image_type image_type; 607 char buffer[PATH_MAX]; 608 609 assert(image->pi_type == PMCSTAT_IMAGE_UNKNOWN); 610 611 image->pi_start = minva = ~(uintfptr_t) 0; 612 image->pi_end = maxva = (uintfptr_t) 0; 613 image->pi_type = image_type = PMCSTAT_IMAGE_INDETERMINABLE; 614 image->pi_isdynamic = 0; 615 image->pi_dynlinkerpath = NULL; 616 image->pi_vaddr = 0; 617 618 path = pmcstat_string_unintern(image->pi_execpath); 619 assert(path != NULL); 620 621 /* 622 * Look for kernel modules under FSROOT/KERNELPATH/NAME, 623 * and user mode executable objects under FSROOT/PATHNAME. 624 */ 625 if (image->pi_iskernelmodule) 626 (void) snprintf(buffer, sizeof(buffer), "%s%s/%s", 627 args.pa_fsroot, args.pa_kernel, path); 628 else 629 (void) snprintf(buffer, sizeof(buffer), "%s%s", 630 args.pa_fsroot, path); 631 632 e = NULL; 633 if ((fd = open(buffer, O_RDONLY, 0)) < 0 || 634 (e = elf_begin(fd, ELF_C_READ, NULL)) == NULL || 635 (elf_kind(e) != ELF_K_ELF)) { 636 warnx("WARNING: Cannot determine the type of \"%s\".", 637 buffer); 638 goto done; 639 } 640 641 if (gelf_getehdr(e, &eh) != &eh) { 642 warnx("WARNING: Cannot retrieve the ELF Header for " 643 "\"%s\": %s.", buffer, elf_errmsg(-1)); 644 goto done; 645 } 646 647 if (eh.e_type != ET_EXEC && eh.e_type != ET_DYN && 648 !(image->pi_iskernelmodule && eh.e_type == ET_REL)) { 649 warnx("WARNING: \"%s\" is of an unsupported ELF type.", 650 buffer); 651 goto done; 652 } 653 654 image_type = eh.e_ident[EI_CLASS] == ELFCLASS32 ? 655 PMCSTAT_IMAGE_ELF32 : PMCSTAT_IMAGE_ELF64; 656 657 /* 658 * Determine the virtual address where an executable would be 659 * loaded. Additionally, for dynamically linked executables, 660 * save the pathname to the runtime linker. 661 */ 662 if (eh.e_type == ET_EXEC) { 663 if (elf_getphnum(e, &nph) == 0) { 664 warnx("WARNING: Could not determine the number of " 665 "program headers in \"%s\": %s.", buffer, 666 elf_errmsg(-1)); 667 goto done; 668 } 669 for (i = 0; i < eh.e_phnum; i++) { 670 if (gelf_getphdr(e, i, &ph) != &ph) { 671 warnx("WARNING: Retrieval of PHDR entry #%ju " 672 "in \"%s\" failed: %s.", (uintmax_t) i, 673 buffer, elf_errmsg(-1)); 674 goto done; 675 } 676 switch (ph.p_type) { 677 case PT_DYNAMIC: 678 image->pi_isdynamic = 1; 679 break; 680 case PT_INTERP: 681 if ((elfbase = elf_rawfile(e, NULL)) == NULL) { 682 warnx("WARNING: Cannot retrieve the " 683 "interpreter for \"%s\": %s.", 684 buffer, elf_errmsg(-1)); 685 goto done; 686 } 687 image->pi_dynlinkerpath = 688 pmcstat_string_intern(elfbase + 689 ph.p_offset); 690 break; 691 case PT_LOAD: 692 if (ph.p_offset == 0) 693 image->pi_vaddr = ph.p_vaddr; 694 break; 695 } 696 } 697 } 698 699 /* 700 * Get the min and max VA associated with this ELF object. 701 */ 702 if (elf_getshnum(e, &nsh) == 0) { 703 warnx("WARNING: Could not determine the number of sections " 704 "for \"%s\": %s.", buffer, elf_errmsg(-1)); 705 goto done; 706 } 707 708 for (i = 0; i < nsh; i++) { 709 if ((scn = elf_getscn(e, i)) == NULL || 710 gelf_getshdr(scn, &sh) != &sh) { 711 warnx("WARNING: Could not retrieve section header " 712 "#%ju in \"%s\": %s.", (uintmax_t) i, buffer, 713 elf_errmsg(-1)); 714 goto done; 715 } 716 if (sh.sh_flags & SHF_EXECINSTR) { 717 minva = min(minva, sh.sh_addr); 718 maxva = max(maxva, sh.sh_addr + sh.sh_size); 719 } 720 if (sh.sh_type == SHT_SYMTAB || sh.sh_type == SHT_DYNSYM) 721 pmcstat_image_add_symbols(image, e, scn, &sh); 722 } 723 724 image->pi_start = minva; 725 image->pi_end = maxva; 726 image->pi_type = image_type; 727 image->pi_fullpath = pmcstat_string_intern(buffer); 728 729 /* Build display name 730 */ 731 endp = buffer; 732 for (p = buffer; *p; p++) 733 if (*p == '/') 734 endp = p+1; 735 image->pi_name = pmcstat_string_intern(endp); 736 737 done: 738 (void) elf_end(e); 739 if (fd >= 0) 740 (void) close(fd); 741 return; 742 } 743 744 /* 745 * Given an image descriptor, determine whether it is an ELF, or AOUT. 746 * If no handler claims the image, set its type to 'INDETERMINABLE'. 747 */ 748 749 void 750 pmcstat_image_determine_type(struct pmcstat_image *image) 751 { 752 assert(image->pi_type == PMCSTAT_IMAGE_UNKNOWN); 753 754 /* Try each kind of handler in turn */ 755 if (image->pi_type == PMCSTAT_IMAGE_UNKNOWN) 756 pmcstat_image_get_elf_params(image); 757 if (image->pi_type == PMCSTAT_IMAGE_UNKNOWN) 758 pmcstat_image_get_aout_params(image); 759 760 /* 761 * Otherwise, remember that we tried to determine 762 * the object's type and had failed. 763 */ 764 if (image->pi_type == PMCSTAT_IMAGE_UNKNOWN) 765 image->pi_type = PMCSTAT_IMAGE_INDETERMINABLE; 766 } 767 768 /* 769 * Locate an image descriptor given an interned path, adding a fresh 770 * descriptor to the cache if necessary. This function also finds a 771 * suitable name for this image's sample file. 772 * 773 * We defer filling in the file format specific parts of the image 774 * structure till the time we actually see a sample that would fall 775 * into this image. 776 */ 777 778 static struct pmcstat_image * 779 pmcstat_image_from_path(pmcstat_interned_string internedpath, 780 int iskernelmodule) 781 { 782 int hash; 783 struct pmcstat_image *pi; 784 785 hash = pmcstat_string_lookup_hash(internedpath); 786 787 /* First, look for an existing entry. */ 788 LIST_FOREACH(pi, &pmcstat_image_hash[hash], pi_next) 789 if (pi->pi_execpath == internedpath && 790 pi->pi_iskernelmodule == iskernelmodule) 791 return (pi); 792 793 /* 794 * Allocate a new entry and place it at the head of the hash 795 * and LRU lists. 796 */ 797 pi = malloc(sizeof(*pi)); 798 if (pi == NULL) 799 return (NULL); 800 801 pi->pi_type = PMCSTAT_IMAGE_UNKNOWN; 802 pi->pi_execpath = internedpath; 803 pi->pi_start = ~0; 804 pi->pi_end = 0; 805 pi->pi_entry = 0; 806 pi->pi_vaddr = 0; 807 pi->pi_isdynamic = 0; 808 pi->pi_iskernelmodule = iskernelmodule; 809 pi->pi_dynlinkerpath = NULL; 810 pi->pi_symbols = NULL; 811 pi->pi_symcount = 0; 812 pi->pi_addr2line = NULL; 813 814 if (plugins[args.pa_pplugin].pl_initimage != NULL) 815 plugins[args.pa_pplugin].pl_initimage(pi); 816 if (plugins[args.pa_plugin].pl_initimage != NULL) 817 plugins[args.pa_plugin].pl_initimage(pi); 818 819 LIST_INSERT_HEAD(&pmcstat_image_hash[hash], pi, pi_next); 820 821 return (pi); 822 } 823 824 /* 825 * Record the fact that PC values from 'start' to 'end' come from 826 * image 'image'. 827 */ 828 829 static void 830 pmcstat_image_link(struct pmcstat_process *pp, struct pmcstat_image *image, 831 uintfptr_t start) 832 { 833 struct pmcstat_pcmap *pcm, *pcmnew; 834 uintfptr_t offset; 835 836 assert(image->pi_type != PMCSTAT_IMAGE_UNKNOWN && 837 image->pi_type != PMCSTAT_IMAGE_INDETERMINABLE); 838 839 if ((pcmnew = malloc(sizeof(*pcmnew))) == NULL) 840 err(EX_OSERR, "ERROR: Cannot create a map entry"); 841 842 /* 843 * Adjust the map entry to only cover the text portion 844 * of the object. 845 */ 846 847 offset = start - image->pi_vaddr; 848 pcmnew->ppm_lowpc = image->pi_start + offset; 849 pcmnew->ppm_highpc = image->pi_end + offset; 850 pcmnew->ppm_image = image; 851 852 assert(pcmnew->ppm_lowpc < pcmnew->ppm_highpc); 853 854 /* Overlapped mmap()'s are assumed to never occur. */ 855 TAILQ_FOREACH(pcm, &pp->pp_map, ppm_next) 856 if (pcm->ppm_lowpc >= pcmnew->ppm_highpc) 857 break; 858 859 if (pcm == NULL) 860 TAILQ_INSERT_TAIL(&pp->pp_map, pcmnew, ppm_next); 861 else 862 TAILQ_INSERT_BEFORE(pcm, pcmnew, ppm_next); 863 } 864 865 /* 866 * Unmap images in the range [start..end) associated with process 867 * 'pp'. 868 */ 869 870 static void 871 pmcstat_image_unmap(struct pmcstat_process *pp, uintfptr_t start, 872 uintfptr_t end) 873 { 874 struct pmcstat_pcmap *pcm, *pcmtmp, *pcmnew; 875 876 assert(pp != NULL); 877 assert(start < end); 878 879 /* 880 * Cases: 881 * - we could have the range completely in the middle of an 882 * existing pcmap; in this case we have to split the pcmap 883 * structure into two (i.e., generate a 'hole'). 884 * - we could have the range covering multiple pcmaps; these 885 * will have to be removed. 886 * - we could have either 'start' or 'end' falling in the 887 * middle of a pcmap; in this case shorten the entry. 888 */ 889 TAILQ_FOREACH_SAFE(pcm, &pp->pp_map, ppm_next, pcmtmp) { 890 assert(pcm->ppm_lowpc < pcm->ppm_highpc); 891 if (pcm->ppm_highpc <= start) 892 continue; 893 if (pcm->ppm_lowpc >= end) 894 return; 895 if (pcm->ppm_lowpc >= start && pcm->ppm_highpc <= end) { 896 /* 897 * The current pcmap is completely inside the 898 * unmapped range: remove it entirely. 899 */ 900 TAILQ_REMOVE(&pp->pp_map, pcm, ppm_next); 901 free(pcm); 902 } else if (pcm->ppm_lowpc < start && pcm->ppm_highpc > end) { 903 /* 904 * Split this pcmap into two; curtail the 905 * current map to end at [start-1], and start 906 * the new one at [end]. 907 */ 908 if ((pcmnew = malloc(sizeof(*pcmnew))) == NULL) 909 err(EX_OSERR, "ERROR: Cannot split a map " 910 "entry"); 911 912 pcmnew->ppm_image = pcm->ppm_image; 913 914 pcmnew->ppm_lowpc = end; 915 pcmnew->ppm_highpc = pcm->ppm_highpc; 916 917 pcm->ppm_highpc = start; 918 919 TAILQ_INSERT_AFTER(&pp->pp_map, pcm, pcmnew, ppm_next); 920 921 return; 922 } else if (pcm->ppm_lowpc < start && pcm->ppm_highpc <= end) 923 pcm->ppm_highpc = start; 924 else if (pcm->ppm_lowpc >= start && pcm->ppm_highpc > end) 925 pcm->ppm_lowpc = end; 926 else 927 assert(0); 928 } 929 } 930 931 /* 932 * Resolve file name and line number for the given address. 933 */ 934 int 935 pmcstat_image_addr2line(struct pmcstat_image *image, uintfptr_t addr, 936 char *sourcefile, size_t sourcefile_len, unsigned *sourceline, 937 char *funcname, size_t funcname_len) 938 { 939 static int addr2line_warn = 0; 940 941 char *sep, cmdline[PATH_MAX], imagepath[PATH_MAX]; 942 int fd; 943 944 if (image->pi_addr2line == NULL) { 945 snprintf(imagepath, sizeof(imagepath), "%s.symbols", 946 pmcstat_string_unintern(image->pi_fullpath)); 947 fd = open(imagepath, O_RDONLY); 948 if (fd < 0) { 949 snprintf(imagepath, sizeof(imagepath), "%s", 950 pmcstat_string_unintern(image->pi_fullpath)); 951 } else 952 close(fd); 953 snprintf(cmdline, sizeof(cmdline), "addr2line -Cfe \"%s\"", 954 imagepath); 955 image->pi_addr2line = popen(cmdline, "r+"); 956 if (image->pi_addr2line == NULL) { 957 if (!addr2line_warn) { 958 addr2line_warn = 1; 959 warnx("WARNING: addr2line is needed" 960 "for source code information."); 961 } 962 return (0); 963 } 964 } 965 966 if (feof(image->pi_addr2line) || ferror(image->pi_addr2line)) { 967 warnx("WARNING: addr2line pipe error"); 968 pclose(image->pi_addr2line); 969 image->pi_addr2line = NULL; 970 return (0); 971 } 972 973 fprintf(image->pi_addr2line, "%p\n", (void *)addr); 974 975 if (fgets(funcname, funcname_len, image->pi_addr2line) == NULL) { 976 warnx("WARNING: addr2line function name read error"); 977 return (0); 978 } 979 sep = strchr(funcname, '\n'); 980 if (sep != NULL) 981 *sep = '\0'; 982 983 if (fgets(sourcefile, sourcefile_len, image->pi_addr2line) == NULL) { 984 warnx("WARNING: addr2line source file read error"); 985 return (0); 986 } 987 sep = strchr(sourcefile, ':'); 988 if (sep == NULL) { 989 warnx("WARNING: addr2line source line separator missing"); 990 return (0); 991 } 992 *sep = '\0'; 993 *sourceline = atoi(sep+1); 994 if (*sourceline == 0) 995 return (0); 996 997 return (1); 998 } 999 1000 /* 1001 * Add a {pmcid,name} mapping. 1002 */ 1003 1004 static void 1005 pmcstat_pmcid_add(pmc_id_t pmcid, pmcstat_interned_string ps) 1006 { 1007 struct pmcstat_pmcrecord *pr, *prm; 1008 1009 /* Replace an existing name for the PMC. */ 1010 prm = NULL; 1011 LIST_FOREACH(pr, &pmcstat_pmcs, pr_next) 1012 if (pr->pr_pmcid == pmcid) { 1013 pr->pr_pmcname = ps; 1014 return; 1015 } else if (pr->pr_pmcname == ps) 1016 prm = pr; 1017 1018 /* 1019 * Otherwise, allocate a new descriptor and call the 1020 * plugins hook. 1021 */ 1022 if ((pr = malloc(sizeof(*pr))) == NULL) 1023 err(EX_OSERR, "ERROR: Cannot allocate pmc record"); 1024 1025 pr->pr_pmcid = pmcid; 1026 pr->pr_pmcname = ps; 1027 pr->pr_pmcin = pmcstat_npmcs++; 1028 pr->pr_samples = 0; 1029 pr->pr_dubious_frames = 0; 1030 pr->pr_merge = prm == NULL ? pr : prm; 1031 1032 LIST_INSERT_HEAD(&pmcstat_pmcs, pr, pr_next); 1033 1034 if (plugins[args.pa_pplugin].pl_newpmc != NULL) 1035 plugins[args.pa_pplugin].pl_newpmc(ps, pr); 1036 if (plugins[args.pa_plugin].pl_newpmc != NULL) 1037 plugins[args.pa_plugin].pl_newpmc(ps, pr); 1038 } 1039 1040 /* 1041 * Given a pmcid in use, find its human-readable name. 1042 */ 1043 1044 const char * 1045 pmcstat_pmcid_to_name(pmc_id_t pmcid) 1046 { 1047 struct pmcstat_pmcrecord *pr; 1048 1049 LIST_FOREACH(pr, &pmcstat_pmcs, pr_next) 1050 if (pr->pr_pmcid == pmcid) 1051 return (pmcstat_string_unintern(pr->pr_pmcname)); 1052 1053 return NULL; 1054 } 1055 1056 /* 1057 * Convert PMC index to name. 1058 */ 1059 1060 const char * 1061 pmcstat_pmcindex_to_name(int pmcin) 1062 { 1063 struct pmcstat_pmcrecord *pr; 1064 1065 LIST_FOREACH(pr, &pmcstat_pmcs, pr_next) 1066 if (pr->pr_pmcin == pmcin) 1067 return pmcstat_string_unintern(pr->pr_pmcname); 1068 1069 return NULL; 1070 } 1071 1072 /* 1073 * Return PMC record with given index. 1074 */ 1075 1076 struct pmcstat_pmcrecord * 1077 pmcstat_pmcindex_to_pmcr(int pmcin) 1078 { 1079 struct pmcstat_pmcrecord *pr; 1080 1081 LIST_FOREACH(pr, &pmcstat_pmcs, pr_next) 1082 if (pr->pr_pmcin == pmcin) 1083 return pr; 1084 1085 return NULL; 1086 } 1087 1088 /* 1089 * Get PMC record by id, apply merge policy. 1090 */ 1091 1092 static struct pmcstat_pmcrecord * 1093 pmcstat_lookup_pmcid(pmc_id_t pmcid) 1094 { 1095 struct pmcstat_pmcrecord *pr; 1096 1097 LIST_FOREACH(pr, &pmcstat_pmcs, pr_next) { 1098 if (pr->pr_pmcid == pmcid) { 1099 if (pmcstat_mergepmc) 1100 return pr->pr_merge; 1101 return pr; 1102 } 1103 } 1104 1105 return NULL; 1106 } 1107 1108 /* 1109 * Associate an AOUT image with a process. 1110 */ 1111 1112 static void 1113 pmcstat_process_aout_exec(struct pmcstat_process *pp, 1114 struct pmcstat_image *image, uintfptr_t entryaddr) 1115 { 1116 (void) pp; 1117 (void) image; 1118 (void) entryaddr; 1119 /* TODO Implement a.out handling */ 1120 } 1121 1122 /* 1123 * Associate an ELF image with a process. 1124 */ 1125 1126 static void 1127 pmcstat_process_elf_exec(struct pmcstat_process *pp, 1128 struct pmcstat_image *image, uintfptr_t entryaddr) 1129 { 1130 uintmax_t libstart; 1131 struct pmcstat_image *rtldimage; 1132 1133 assert(image->pi_type == PMCSTAT_IMAGE_ELF32 || 1134 image->pi_type == PMCSTAT_IMAGE_ELF64); 1135 1136 /* Create a map entry for the base executable. */ 1137 pmcstat_image_link(pp, image, image->pi_vaddr); 1138 1139 /* 1140 * For dynamically linked executables we need to determine 1141 * where the dynamic linker was mapped to for this process, 1142 * Subsequent executable objects that are mapped in by the 1143 * dynamic linker will be tracked by log events of type 1144 * PMCLOG_TYPE_MAP_IN. 1145 */ 1146 1147 if (image->pi_isdynamic) { 1148 1149 /* 1150 * The runtime loader gets loaded just after the maximum 1151 * possible heap address. Like so: 1152 * 1153 * [ TEXT DATA BSS HEAP -->*RTLD SHLIBS <--STACK] 1154 * ^ ^ 1155 * 0 VM_MAXUSER_ADDRESS 1156 1157 * 1158 * The exact address where the loader gets mapped in 1159 * will vary according to the size of the executable 1160 * and the limits on the size of the process'es data 1161 * segment at the time of exec(). The entry address 1162 * recorded at process exec time corresponds to the 1163 * 'start' address inside the dynamic linker. From 1164 * this we can figure out the address where the 1165 * runtime loader's file object had been mapped to. 1166 */ 1167 rtldimage = pmcstat_image_from_path(image->pi_dynlinkerpath, 0); 1168 if (rtldimage == NULL) { 1169 warnx("WARNING: Cannot find image for \"%s\".", 1170 pmcstat_string_unintern(image->pi_dynlinkerpath)); 1171 pmcstat_stats.ps_exec_errors++; 1172 return; 1173 } 1174 1175 if (rtldimage->pi_type == PMCSTAT_IMAGE_UNKNOWN) 1176 pmcstat_image_get_elf_params(rtldimage); 1177 1178 if (rtldimage->pi_type != PMCSTAT_IMAGE_ELF32 && 1179 rtldimage->pi_type != PMCSTAT_IMAGE_ELF64) { 1180 warnx("WARNING: rtld not an ELF object \"%s\".", 1181 pmcstat_string_unintern(image->pi_dynlinkerpath)); 1182 return; 1183 } 1184 1185 libstart = entryaddr - rtldimage->pi_entry; 1186 pmcstat_image_link(pp, rtldimage, libstart); 1187 } 1188 } 1189 1190 /* 1191 * Find the process descriptor corresponding to a PID. If 'allocate' 1192 * is zero, we return a NULL if a pid descriptor could not be found or 1193 * a process descriptor process. If 'allocate' is non-zero, then we 1194 * will attempt to allocate a fresh process descriptor. Zombie 1195 * process descriptors are only removed if a fresh allocation for the 1196 * same PID is requested. 1197 */ 1198 1199 static struct pmcstat_process * 1200 pmcstat_process_lookup(pid_t pid, int allocate) 1201 { 1202 uint32_t hash; 1203 struct pmcstat_pcmap *ppm, *ppmtmp; 1204 struct pmcstat_process *pp, *pptmp; 1205 1206 hash = (uint32_t) pid & PMCSTAT_HASH_MASK; /* simplicity wins */ 1207 1208 LIST_FOREACH_SAFE(pp, &pmcstat_process_hash[hash], pp_next, pptmp) 1209 if (pp->pp_pid == pid) { 1210 /* Found a descriptor, check and process zombies */ 1211 if (allocate && pp->pp_isactive == 0) { 1212 /* remove maps */ 1213 TAILQ_FOREACH_SAFE(ppm, &pp->pp_map, ppm_next, 1214 ppmtmp) { 1215 TAILQ_REMOVE(&pp->pp_map, ppm, ppm_next); 1216 free(ppm); 1217 } 1218 /* remove process entry */ 1219 LIST_REMOVE(pp, pp_next); 1220 free(pp); 1221 break; 1222 } 1223 return (pp); 1224 } 1225 1226 if (!allocate) 1227 return (NULL); 1228 1229 if ((pp = malloc(sizeof(*pp))) == NULL) 1230 err(EX_OSERR, "ERROR: Cannot allocate pid descriptor"); 1231 1232 pp->pp_pid = pid; 1233 pp->pp_isactive = 1; 1234 1235 TAILQ_INIT(&pp->pp_map); 1236 1237 LIST_INSERT_HEAD(&pmcstat_process_hash[hash], pp, pp_next); 1238 return (pp); 1239 } 1240 1241 /* 1242 * Associate an image and a process. 1243 */ 1244 1245 static void 1246 pmcstat_process_exec(struct pmcstat_process *pp, 1247 pmcstat_interned_string path, uintfptr_t entryaddr) 1248 { 1249 struct pmcstat_image *image; 1250 1251 if ((image = pmcstat_image_from_path(path, 0)) == NULL) { 1252 pmcstat_stats.ps_exec_errors++; 1253 return; 1254 } 1255 1256 if (image->pi_type == PMCSTAT_IMAGE_UNKNOWN) 1257 pmcstat_image_determine_type(image); 1258 1259 assert(image->pi_type != PMCSTAT_IMAGE_UNKNOWN); 1260 1261 switch (image->pi_type) { 1262 case PMCSTAT_IMAGE_ELF32: 1263 case PMCSTAT_IMAGE_ELF64: 1264 pmcstat_stats.ps_exec_elf++; 1265 pmcstat_process_elf_exec(pp, image, entryaddr); 1266 break; 1267 1268 case PMCSTAT_IMAGE_AOUT: 1269 pmcstat_stats.ps_exec_aout++; 1270 pmcstat_process_aout_exec(pp, image, entryaddr); 1271 break; 1272 1273 case PMCSTAT_IMAGE_INDETERMINABLE: 1274 pmcstat_stats.ps_exec_indeterminable++; 1275 break; 1276 1277 default: 1278 err(EX_SOFTWARE, "ERROR: Unsupported executable type for " 1279 "\"%s\"", pmcstat_string_unintern(path)); 1280 } 1281 } 1282 1283 1284 /* 1285 * Find the map entry associated with process 'p' at PC value 'pc'. 1286 */ 1287 1288 struct pmcstat_pcmap * 1289 pmcstat_process_find_map(struct pmcstat_process *p, uintfptr_t pc) 1290 { 1291 struct pmcstat_pcmap *ppm; 1292 1293 TAILQ_FOREACH(ppm, &p->pp_map, ppm_next) { 1294 if (pc >= ppm->ppm_lowpc && pc < ppm->ppm_highpc) 1295 return (ppm); 1296 if (pc < ppm->ppm_lowpc) 1297 return (NULL); 1298 } 1299 1300 return (NULL); 1301 } 1302 1303 /* 1304 * Convert a hwpmc(4) log to profile information. A system-wide 1305 * callgraph is generated if FLAG_DO_CALLGRAPHS is set. gmon.out 1306 * files usable by gprof(1) are created if FLAG_DO_GPROF is set. 1307 */ 1308 static int 1309 pmcstat_analyze_log(void) 1310 { 1311 uint32_t cpu, cpuflags; 1312 uintfptr_t pc; 1313 pid_t pid; 1314 struct pmcstat_image *image; 1315 struct pmcstat_process *pp, *ppnew; 1316 struct pmcstat_pcmap *ppm, *ppmtmp; 1317 struct pmclog_ev ev; 1318 struct pmcstat_pmcrecord *pmcr; 1319 pmcstat_interned_string image_path; 1320 1321 assert(args.pa_flags & FLAG_DO_ANALYSIS); 1322 1323 if (elf_version(EV_CURRENT) == EV_NONE) 1324 err(EX_UNAVAILABLE, "Elf library intialization failed"); 1325 1326 while (pmclog_read(args.pa_logparser, &ev) == 0) { 1327 assert(ev.pl_state == PMCLOG_OK); 1328 1329 switch (ev.pl_type) { 1330 case PMCLOG_TYPE_INITIALIZE: 1331 if ((ev.pl_u.pl_i.pl_version & 0xFF000000) != 1332 PMC_VERSION_MAJOR << 24 && args.pa_verbosity > 0) 1333 warnx("WARNING: Log version 0x%x does not " 1334 "match compiled version 0x%x.", 1335 ev.pl_u.pl_i.pl_version, 1336 PMC_VERSION_MAJOR); 1337 break; 1338 1339 case PMCLOG_TYPE_MAP_IN: 1340 /* 1341 * Introduce an address range mapping for a 1342 * userland process or the kernel (pid == -1). 1343 * 1344 * We always allocate a process descriptor so 1345 * that subsequent samples seen for this 1346 * address range are mapped to the current 1347 * object being mapped in. 1348 */ 1349 pid = ev.pl_u.pl_mi.pl_pid; 1350 if (pid == -1) 1351 pp = pmcstat_kernproc; 1352 else 1353 pp = pmcstat_process_lookup(pid, 1354 PMCSTAT_ALLOCATE); 1355 1356 assert(pp != NULL); 1357 1358 image_path = pmcstat_string_intern(ev.pl_u.pl_mi. 1359 pl_pathname); 1360 image = pmcstat_image_from_path(image_path, pid == -1); 1361 if (image->pi_type == PMCSTAT_IMAGE_UNKNOWN) 1362 pmcstat_image_determine_type(image); 1363 if (image->pi_type != PMCSTAT_IMAGE_INDETERMINABLE) 1364 pmcstat_image_link(pp, image, 1365 ev.pl_u.pl_mi.pl_start); 1366 break; 1367 1368 case PMCLOG_TYPE_MAP_OUT: 1369 /* 1370 * Remove an address map. 1371 */ 1372 pid = ev.pl_u.pl_mo.pl_pid; 1373 if (pid == -1) 1374 pp = pmcstat_kernproc; 1375 else 1376 pp = pmcstat_process_lookup(pid, 0); 1377 1378 if (pp == NULL) /* unknown process */ 1379 break; 1380 1381 pmcstat_image_unmap(pp, ev.pl_u.pl_mo.pl_start, 1382 ev.pl_u.pl_mo.pl_end); 1383 break; 1384 1385 case PMCLOG_TYPE_PCSAMPLE: 1386 /* 1387 * Note: the `PCSAMPLE' log entry is not 1388 * generated by hpwmc(4) after version 2. 1389 */ 1390 1391 /* 1392 * We bring in the gmon file for the image 1393 * currently associated with the PMC & pid 1394 * pair and increment the appropriate entry 1395 * bin inside this. 1396 */ 1397 pmcstat_stats.ps_samples_total++; 1398 1399 pc = ev.pl_u.pl_s.pl_pc; 1400 pp = pmcstat_process_lookup(ev.pl_u.pl_s.pl_pid, 1401 PMCSTAT_ALLOCATE); 1402 1403 /* Get PMC record. */ 1404 pmcr = pmcstat_lookup_pmcid(ev.pl_u.pl_s.pl_pmcid); 1405 assert(pmcr != NULL); 1406 pmcr->pr_samples++; 1407 1408 /* 1409 * Call the plugins processing 1410 * TODO: move pmcstat_process_find_map inside plugins 1411 */ 1412 1413 if (plugins[args.pa_pplugin].pl_process != NULL) 1414 plugins[args.pa_pplugin].pl_process( 1415 pp, pmcr, 1, &pc, 1416 pmcstat_process_find_map(pp, pc) != NULL, 0); 1417 plugins[args.pa_plugin].pl_process( 1418 pp, pmcr, 1, &pc, 1419 pmcstat_process_find_map(pp, pc) != NULL, 0); 1420 break; 1421 1422 case PMCLOG_TYPE_CALLCHAIN: 1423 pmcstat_stats.ps_samples_total++; 1424 1425 cpuflags = ev.pl_u.pl_cc.pl_cpuflags; 1426 cpu = PMC_CALLCHAIN_CPUFLAGS_TO_CPU(cpuflags); 1427 1428 /* Filter on the CPU id. */ 1429 if ((args.pa_cpumask & (1 << cpu)) == 0) { 1430 pmcstat_stats.ps_samples_skipped++; 1431 break; 1432 } 1433 1434 pp = pmcstat_process_lookup(ev.pl_u.pl_cc.pl_pid, 1435 PMCSTAT_ALLOCATE); 1436 1437 /* Get PMC record. */ 1438 pmcr = pmcstat_lookup_pmcid(ev.pl_u.pl_cc.pl_pmcid); 1439 assert(pmcr != NULL); 1440 pmcr->pr_samples++; 1441 1442 /* 1443 * Call the plugins processing 1444 */ 1445 1446 if (plugins[args.pa_pplugin].pl_process != NULL) 1447 plugins[args.pa_pplugin].pl_process( 1448 pp, pmcr, 1449 ev.pl_u.pl_cc.pl_npc, 1450 ev.pl_u.pl_cc.pl_pc, 1451 PMC_CALLCHAIN_CPUFLAGS_TO_USERMODE(cpuflags), 1452 cpu); 1453 plugins[args.pa_plugin].pl_process( 1454 pp, pmcr, 1455 ev.pl_u.pl_cc.pl_npc, 1456 ev.pl_u.pl_cc.pl_pc, 1457 PMC_CALLCHAIN_CPUFLAGS_TO_USERMODE(cpuflags), 1458 cpu); 1459 break; 1460 1461 case PMCLOG_TYPE_PMCALLOCATE: 1462 /* 1463 * Record the association pmc id between this 1464 * PMC and its name. 1465 */ 1466 pmcstat_pmcid_add(ev.pl_u.pl_a.pl_pmcid, 1467 pmcstat_string_intern(ev.pl_u.pl_a.pl_evname)); 1468 break; 1469 1470 case PMCLOG_TYPE_PROCEXEC: 1471 1472 /* 1473 * Change the executable image associated with 1474 * a process. 1475 */ 1476 pp = pmcstat_process_lookup(ev.pl_u.pl_x.pl_pid, 1477 PMCSTAT_ALLOCATE); 1478 1479 /* delete the current process map */ 1480 TAILQ_FOREACH_SAFE(ppm, &pp->pp_map, ppm_next, ppmtmp) { 1481 TAILQ_REMOVE(&pp->pp_map, ppm, ppm_next); 1482 free(ppm); 1483 } 1484 1485 /* associate this process image */ 1486 image_path = pmcstat_string_intern( 1487 ev.pl_u.pl_x.pl_pathname); 1488 assert(image_path != NULL); 1489 pmcstat_process_exec(pp, image_path, 1490 ev.pl_u.pl_x.pl_entryaddr); 1491 break; 1492 1493 case PMCLOG_TYPE_PROCEXIT: 1494 1495 /* 1496 * Due to the way the log is generated, the 1497 * last few samples corresponding to a process 1498 * may appear in the log after the process 1499 * exit event is recorded. Thus we keep the 1500 * process' descriptor and associated data 1501 * structures around, but mark the process as 1502 * having exited. 1503 */ 1504 pp = pmcstat_process_lookup(ev.pl_u.pl_e.pl_pid, 0); 1505 if (pp == NULL) 1506 break; 1507 pp->pp_isactive = 0; /* mark as a zombie */ 1508 break; 1509 1510 case PMCLOG_TYPE_SYSEXIT: 1511 pp = pmcstat_process_lookup(ev.pl_u.pl_se.pl_pid, 0); 1512 if (pp == NULL) 1513 break; 1514 pp->pp_isactive = 0; /* make a zombie */ 1515 break; 1516 1517 case PMCLOG_TYPE_PROCFORK: 1518 1519 /* 1520 * Allocate a process descriptor for the new 1521 * (child) process. 1522 */ 1523 ppnew = 1524 pmcstat_process_lookup(ev.pl_u.pl_f.pl_newpid, 1525 PMCSTAT_ALLOCATE); 1526 1527 /* 1528 * If we had been tracking the parent, clone 1529 * its address maps. 1530 */ 1531 pp = pmcstat_process_lookup(ev.pl_u.pl_f.pl_oldpid, 0); 1532 if (pp == NULL) 1533 break; 1534 TAILQ_FOREACH(ppm, &pp->pp_map, ppm_next) 1535 pmcstat_image_link(ppnew, ppm->ppm_image, 1536 ppm->ppm_lowpc); 1537 break; 1538 1539 default: /* other types of entries are not relevant */ 1540 break; 1541 } 1542 } 1543 1544 if (ev.pl_state == PMCLOG_EOF) 1545 return (PMCSTAT_FINISHED); 1546 else if (ev.pl_state == PMCLOG_REQUIRE_DATA) 1547 return (PMCSTAT_RUNNING); 1548 1549 err(EX_DATAERR, "ERROR: event parsing failed (record %jd, " 1550 "offset 0x%jx)", (uintmax_t) ev.pl_count + 1, ev.pl_offset); 1551 } 1552 1553 /* 1554 * Print log entries as text. 1555 */ 1556 1557 static int 1558 pmcstat_print_log(void) 1559 { 1560 struct pmclog_ev ev; 1561 uint32_t npc; 1562 1563 while (pmclog_read(args.pa_logparser, &ev) == 0) { 1564 assert(ev.pl_state == PMCLOG_OK); 1565 switch (ev.pl_type) { 1566 case PMCLOG_TYPE_CALLCHAIN: 1567 PMCSTAT_PRINT_ENTRY("callchain", 1568 "%d 0x%x %d %d %c", ev.pl_u.pl_cc.pl_pid, 1569 ev.pl_u.pl_cc.pl_pmcid, 1570 PMC_CALLCHAIN_CPUFLAGS_TO_CPU(ev.pl_u.pl_cc. \ 1571 pl_cpuflags), ev.pl_u.pl_cc.pl_npc, 1572 PMC_CALLCHAIN_CPUFLAGS_TO_USERMODE(ev.pl_u.pl_cc.\ 1573 pl_cpuflags) ? 'u' : 's'); 1574 for (npc = 0; npc < ev.pl_u.pl_cc.pl_npc; npc++) 1575 PMCSTAT_PRINT_ENTRY("...", "%p", 1576 (void *) ev.pl_u.pl_cc.pl_pc[npc]); 1577 break; 1578 case PMCLOG_TYPE_CLOSELOG: 1579 PMCSTAT_PRINT_ENTRY("closelog",); 1580 break; 1581 case PMCLOG_TYPE_DROPNOTIFY: 1582 PMCSTAT_PRINT_ENTRY("drop",); 1583 break; 1584 case PMCLOG_TYPE_INITIALIZE: 1585 PMCSTAT_PRINT_ENTRY("initlog","0x%x \"%s\"", 1586 ev.pl_u.pl_i.pl_version, 1587 pmc_name_of_cputype(ev.pl_u.pl_i.pl_arch)); 1588 if ((ev.pl_u.pl_i.pl_version & 0xFF000000) != 1589 PMC_VERSION_MAJOR << 24 && args.pa_verbosity > 0) 1590 warnx("WARNING: Log version 0x%x != expected " 1591 "version 0x%x.", ev.pl_u.pl_i.pl_version, 1592 PMC_VERSION); 1593 break; 1594 case PMCLOG_TYPE_MAP_IN: 1595 PMCSTAT_PRINT_ENTRY("map-in","%d %p \"%s\"", 1596 ev.pl_u.pl_mi.pl_pid, 1597 (void *) ev.pl_u.pl_mi.pl_start, 1598 ev.pl_u.pl_mi.pl_pathname); 1599 break; 1600 case PMCLOG_TYPE_MAP_OUT: 1601 PMCSTAT_PRINT_ENTRY("map-out","%d %p %p", 1602 ev.pl_u.pl_mo.pl_pid, 1603 (void *) ev.pl_u.pl_mo.pl_start, 1604 (void *) ev.pl_u.pl_mo.pl_end); 1605 break; 1606 case PMCLOG_TYPE_PCSAMPLE: 1607 PMCSTAT_PRINT_ENTRY("sample","0x%x %d %p %c", 1608 ev.pl_u.pl_s.pl_pmcid, 1609 ev.pl_u.pl_s.pl_pid, 1610 (void *) ev.pl_u.pl_s.pl_pc, 1611 ev.pl_u.pl_s.pl_usermode ? 'u' : 's'); 1612 break; 1613 case PMCLOG_TYPE_PMCALLOCATE: 1614 PMCSTAT_PRINT_ENTRY("allocate","0x%x \"%s\" 0x%x", 1615 ev.pl_u.pl_a.pl_pmcid, 1616 ev.pl_u.pl_a.pl_evname, 1617 ev.pl_u.pl_a.pl_flags); 1618 break; 1619 case PMCLOG_TYPE_PMCATTACH: 1620 PMCSTAT_PRINT_ENTRY("attach","0x%x %d \"%s\"", 1621 ev.pl_u.pl_t.pl_pmcid, 1622 ev.pl_u.pl_t.pl_pid, 1623 ev.pl_u.pl_t.pl_pathname); 1624 break; 1625 case PMCLOG_TYPE_PMCDETACH: 1626 PMCSTAT_PRINT_ENTRY("detach","0x%x %d", 1627 ev.pl_u.pl_d.pl_pmcid, 1628 ev.pl_u.pl_d.pl_pid); 1629 break; 1630 case PMCLOG_TYPE_PROCCSW: 1631 PMCSTAT_PRINT_ENTRY("cswval","0x%x %d %jd", 1632 ev.pl_u.pl_c.pl_pmcid, 1633 ev.pl_u.pl_c.pl_pid, 1634 ev.pl_u.pl_c.pl_value); 1635 break; 1636 case PMCLOG_TYPE_PROCEXEC: 1637 PMCSTAT_PRINT_ENTRY("exec","0x%x %d %p \"%s\"", 1638 ev.pl_u.pl_x.pl_pmcid, 1639 ev.pl_u.pl_x.pl_pid, 1640 (void *) ev.pl_u.pl_x.pl_entryaddr, 1641 ev.pl_u.pl_x.pl_pathname); 1642 break; 1643 case PMCLOG_TYPE_PROCEXIT: 1644 PMCSTAT_PRINT_ENTRY("exitval","0x%x %d %jd", 1645 ev.pl_u.pl_e.pl_pmcid, 1646 ev.pl_u.pl_e.pl_pid, 1647 ev.pl_u.pl_e.pl_value); 1648 break; 1649 case PMCLOG_TYPE_PROCFORK: 1650 PMCSTAT_PRINT_ENTRY("fork","%d %d", 1651 ev.pl_u.pl_f.pl_oldpid, 1652 ev.pl_u.pl_f.pl_newpid); 1653 break; 1654 case PMCLOG_TYPE_USERDATA: 1655 PMCSTAT_PRINT_ENTRY("userdata","0x%x", 1656 ev.pl_u.pl_u.pl_userdata); 1657 break; 1658 case PMCLOG_TYPE_SYSEXIT: 1659 PMCSTAT_PRINT_ENTRY("exit","%d", 1660 ev.pl_u.pl_se.pl_pid); 1661 break; 1662 default: 1663 fprintf(args.pa_printfile, "unknown event (type %d).\n", 1664 ev.pl_type); 1665 } 1666 } 1667 1668 if (ev.pl_state == PMCLOG_EOF) 1669 return (PMCSTAT_FINISHED); 1670 else if (ev.pl_state == PMCLOG_REQUIRE_DATA) 1671 return (PMCSTAT_RUNNING); 1672 1673 errx(EX_DATAERR, "ERROR: event parsing failed " 1674 "(record %jd, offset 0x%jx).", 1675 (uintmax_t) ev.pl_count + 1, ev.pl_offset); 1676 /*NOTREACHED*/ 1677 } 1678 1679 /* 1680 * Public Interfaces. 1681 */ 1682 1683 /* 1684 * Close a logfile, after first flushing all in-module queued data. 1685 */ 1686 1687 int 1688 pmcstat_close_log(void) 1689 { 1690 if (pmc_flush_logfile() < 0) 1691 err(EX_OSERR, "ERROR: logging failed"); 1692 return (args.pa_flags & FLAG_HAS_PIPE ? PMCSTAT_EXITING : 1693 PMCSTAT_FINISHED); 1694 } 1695 1696 1697 1698 /* 1699 * Open a log file, for reading or writing. 1700 * 1701 * The function returns the fd of a successfully opened log or -1 in 1702 * case of failure. 1703 */ 1704 1705 int 1706 pmcstat_open_log(const char *path, int mode) 1707 { 1708 int error, fd; 1709 size_t hlen; 1710 const char *p, *errstr; 1711 struct addrinfo hints, *res, *res0; 1712 char hostname[MAXHOSTNAMELEN]; 1713 1714 errstr = NULL; 1715 fd = -1; 1716 1717 /* 1718 * If 'path' is "-" then open one of stdin or stdout depending 1719 * on the value of 'mode'. 1720 * 1721 * If 'path' contains a ':' and does not start with a '/' or '.', 1722 * and is being opened for writing, treat it as a "host:port" 1723 * specification and open a network socket. 1724 * 1725 * Otherwise, treat 'path' as a file name and open that. 1726 */ 1727 if (path[0] == '-' && path[1] == '\0') 1728 fd = (mode == PMCSTAT_OPEN_FOR_READ) ? 0 : 1; 1729 else if (mode == PMCSTAT_OPEN_FOR_WRITE && path[0] != '/' && 1730 path[0] != '.' && strchr(path, ':') != NULL) { 1731 1732 p = strrchr(path, ':'); 1733 hlen = p - path; 1734 if (p == path || hlen >= sizeof(hostname)) { 1735 errstr = strerror(EINVAL); 1736 goto done; 1737 } 1738 1739 assert(hlen < sizeof(hostname)); 1740 (void) strncpy(hostname, path, hlen); 1741 hostname[hlen] = '\0'; 1742 1743 (void) memset(&hints, 0, sizeof(hints)); 1744 hints.ai_family = AF_UNSPEC; 1745 hints.ai_socktype = SOCK_STREAM; 1746 if ((error = getaddrinfo(hostname, p+1, &hints, &res0)) != 0) { 1747 errstr = gai_strerror(error); 1748 goto done; 1749 } 1750 1751 fd = -1; 1752 for (res = res0; res; res = res->ai_next) { 1753 if ((fd = socket(res->ai_family, res->ai_socktype, 1754 res->ai_protocol)) < 0) { 1755 errstr = strerror(errno); 1756 continue; 1757 } 1758 if (connect(fd, res->ai_addr, res->ai_addrlen) < 0) { 1759 errstr = strerror(errno); 1760 (void) close(fd); 1761 fd = -1; 1762 continue; 1763 } 1764 errstr = NULL; 1765 break; 1766 } 1767 freeaddrinfo(res0); 1768 1769 } else if ((fd = open(path, mode == PMCSTAT_OPEN_FOR_READ ? 1770 O_RDONLY : (O_WRONLY|O_CREAT|O_TRUNC), 1771 S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH)) < 0) 1772 errstr = strerror(errno); 1773 1774 done: 1775 if (errstr) 1776 errx(EX_OSERR, "ERROR: Cannot open \"%s\" for %s: %s.", path, 1777 (mode == PMCSTAT_OPEN_FOR_READ ? "reading" : "writing"), 1778 errstr); 1779 1780 return (fd); 1781 } 1782 1783 /* 1784 * Process a log file in offline analysis mode. 1785 */ 1786 1787 int 1788 pmcstat_process_log(void) 1789 { 1790 1791 /* 1792 * If analysis has not been asked for, just print the log to 1793 * the current output file. 1794 */ 1795 if (args.pa_flags & FLAG_DO_PRINT) 1796 return (pmcstat_print_log()); 1797 else 1798 return (pmcstat_analyze_log()); 1799 } 1800 1801 /* 1802 * Refresh top display. 1803 */ 1804 1805 static void 1806 pmcstat_refresh_top(void) 1807 { 1808 int v_attrs; 1809 float v; 1810 char pmcname[40]; 1811 struct pmcstat_pmcrecord *pmcpr; 1812 1813 /* If in pause mode do not refresh display. */ 1814 if (pmcstat_pause) 1815 return; 1816 1817 /* Wait until PMC pop in the log. */ 1818 pmcpr = pmcstat_pmcindex_to_pmcr(pmcstat_pmcinfilter); 1819 if (pmcpr == NULL) 1820 return; 1821 1822 /* Format PMC name. */ 1823 if (pmcstat_mergepmc) 1824 snprintf(pmcname, sizeof(pmcname), "[%s]", 1825 pmcstat_string_unintern(pmcpr->pr_pmcname)); 1826 else 1827 snprintf(pmcname, sizeof(pmcname), "%s.%d", 1828 pmcstat_string_unintern(pmcpr->pr_pmcname), 1829 pmcstat_pmcinfilter); 1830 1831 /* Format samples count. */ 1832 if (pmcstat_stats.ps_samples_total > 0) 1833 v = (pmcpr->pr_samples * 100.0) / 1834 pmcstat_stats.ps_samples_total; 1835 else 1836 v = 0.; 1837 v_attrs = PMCSTAT_ATTRPERCENT(v); 1838 1839 PMCSTAT_PRINTBEGIN(); 1840 PMCSTAT_PRINTW("PMC: %s Samples: %u ", 1841 pmcname, 1842 pmcpr->pr_samples); 1843 PMCSTAT_ATTRON(v_attrs); 1844 PMCSTAT_PRINTW("(%.1f%%) ", v); 1845 PMCSTAT_ATTROFF(v_attrs); 1846 PMCSTAT_PRINTW(", %u unresolved\n\n", 1847 pmcpr->pr_dubious_frames); 1848 if (plugins[args.pa_plugin].pl_topdisplay != NULL) 1849 plugins[args.pa_plugin].pl_topdisplay(); 1850 PMCSTAT_PRINTEND(); 1851 } 1852 1853 /* 1854 * Find the next pmc index to display. 1855 */ 1856 1857 static void 1858 pmcstat_changefilter(void) 1859 { 1860 int pmcin; 1861 struct pmcstat_pmcrecord *pmcr; 1862 1863 /* 1864 * Find the next merge target. 1865 */ 1866 if (pmcstat_mergepmc) { 1867 pmcin = pmcstat_pmcinfilter; 1868 1869 do { 1870 pmcr = pmcstat_pmcindex_to_pmcr(pmcstat_pmcinfilter); 1871 if (pmcr == pmcr->pr_merge) 1872 break; 1873 1874 pmcstat_pmcinfilter++; 1875 if (pmcstat_pmcinfilter >= pmcstat_npmcs) 1876 pmcstat_pmcinfilter = 0; 1877 1878 } while (pmcstat_pmcinfilter != pmcin); 1879 } 1880 } 1881 1882 /* 1883 * Top mode keypress. 1884 */ 1885 1886 int 1887 pmcstat_keypress_log(void) 1888 { 1889 int c, ret = 0; 1890 WINDOW *w; 1891 1892 w = newwin(1, 0, 1, 0); 1893 c = wgetch(w); 1894 wprintw(w, "Key: %c => ", c); 1895 switch (c) { 1896 case 'c': 1897 wprintw(w, "enter mode 'd' or 'a' => "); 1898 c = wgetch(w); 1899 if (c == 'd') { 1900 args.pa_topmode = PMCSTAT_TOP_DELTA; 1901 wprintw(w, "switching to delta mode"); 1902 } else { 1903 args.pa_topmode = PMCSTAT_TOP_ACCUM; 1904 wprintw(w, "switching to accumulation mode"); 1905 } 1906 break; 1907 case 'm': 1908 pmcstat_mergepmc = !pmcstat_mergepmc; 1909 /* 1910 * Changing merge state require data reset. 1911 */ 1912 if (plugins[args.pa_plugin].pl_shutdown != NULL) 1913 plugins[args.pa_plugin].pl_shutdown(NULL); 1914 pmcstat_stats_reset(); 1915 if (plugins[args.pa_plugin].pl_init != NULL) 1916 plugins[args.pa_plugin].pl_init(); 1917 1918 /* Update filter to be on a merge target. */ 1919 pmcstat_changefilter(); 1920 wprintw(w, "merge PMC %s", pmcstat_mergepmc ? "on" : "off"); 1921 break; 1922 case 'n': 1923 /* Close current plugin. */ 1924 if (plugins[args.pa_plugin].pl_shutdown != NULL) 1925 plugins[args.pa_plugin].pl_shutdown(NULL); 1926 1927 /* Find next top display available. */ 1928 do { 1929 args.pa_plugin++; 1930 if (plugins[args.pa_plugin].pl_name == NULL) 1931 args.pa_plugin = 0; 1932 } while (plugins[args.pa_plugin].pl_topdisplay == NULL); 1933 1934 /* Open new plugin. */ 1935 pmcstat_stats_reset(); 1936 if (plugins[args.pa_plugin].pl_init != NULL) 1937 plugins[args.pa_plugin].pl_init(); 1938 wprintw(w, "switching to plugin %s", 1939 plugins[args.pa_plugin].pl_name); 1940 break; 1941 case 'p': 1942 pmcstat_pmcinfilter++; 1943 if (pmcstat_pmcinfilter >= pmcstat_npmcs) 1944 pmcstat_pmcinfilter = 0; 1945 pmcstat_changefilter(); 1946 wprintw(w, "switching to PMC %s.%d", 1947 pmcstat_pmcindex_to_name(pmcstat_pmcinfilter), 1948 pmcstat_pmcinfilter); 1949 break; 1950 case ' ': 1951 pmcstat_pause = !pmcstat_pause; 1952 if (pmcstat_pause) 1953 wprintw(w, "pause => press space again to continue"); 1954 break; 1955 case 'q': 1956 wprintw(w, "exiting..."); 1957 ret = 1; 1958 default: 1959 if (plugins[args.pa_plugin].pl_topkeypress != NULL) 1960 if (plugins[args.pa_plugin].pl_topkeypress(c, w)) 1961 ret = 1; 1962 } 1963 1964 wrefresh(w); 1965 delwin(w); 1966 return ret; 1967 } 1968 1969 1970 /* 1971 * Top mode display. 1972 */ 1973 1974 void 1975 pmcstat_display_log(void) 1976 { 1977 1978 pmcstat_refresh_top(); 1979 1980 /* Reset everythings if delta mode. */ 1981 if (args.pa_topmode == PMCSTAT_TOP_DELTA) { 1982 if (plugins[args.pa_plugin].pl_shutdown != NULL) 1983 plugins[args.pa_plugin].pl_shutdown(NULL); 1984 pmcstat_stats_reset(); 1985 if (plugins[args.pa_plugin].pl_init != NULL) 1986 plugins[args.pa_plugin].pl_init(); 1987 } 1988 1989 } 1990 1991 /* 1992 * Configure a plugins. 1993 */ 1994 1995 void 1996 pmcstat_pluginconfigure_log(char *opt) 1997 { 1998 1999 if (strncmp(opt, "threshold=", 10) == 0) { 2000 pmcstat_threshold = atof(opt+10); 2001 } else { 2002 if (plugins[args.pa_plugin].pl_configure != NULL) { 2003 if (!plugins[args.pa_plugin].pl_configure(opt)) 2004 err(EX_USAGE, 2005 "ERROR: unknown option <%s>.", opt); 2006 } 2007 } 2008 } 2009 2010 /* 2011 * Initialize module. 2012 */ 2013 2014 void 2015 pmcstat_initialize_logging(void) 2016 { 2017 int i; 2018 2019 /* use a convenient format for 'ldd' output */ 2020 if (setenv("LD_TRACE_LOADED_OBJECTS_FMT1","%o \"%p\" %x\n",1) != 0) 2021 err(EX_OSERR, "ERROR: Cannot setenv"); 2022 2023 /* Initialize hash tables */ 2024 pmcstat_string_initialize(); 2025 for (i = 0; i < PMCSTAT_NHASH; i++) { 2026 LIST_INIT(&pmcstat_image_hash[i]); 2027 LIST_INIT(&pmcstat_process_hash[i]); 2028 } 2029 2030 /* 2031 * Create a fake 'process' entry for the kernel with pid -1. 2032 * hwpmc(4) will subsequently inform us about where the kernel 2033 * and any loaded kernel modules are mapped. 2034 */ 2035 if ((pmcstat_kernproc = pmcstat_process_lookup((pid_t) -1, 2036 PMCSTAT_ALLOCATE)) == NULL) 2037 err(EX_OSERR, "ERROR: Cannot initialize logging"); 2038 2039 /* PMC count. */ 2040 pmcstat_npmcs = 0; 2041 2042 /* Merge PMC with same name. */ 2043 pmcstat_mergepmc = args.pa_mergepmc; 2044 2045 /* 2046 * Initialize plugins 2047 */ 2048 2049 if (plugins[args.pa_pplugin].pl_init != NULL) 2050 plugins[args.pa_pplugin].pl_init(); 2051 if (plugins[args.pa_plugin].pl_init != NULL) 2052 plugins[args.pa_plugin].pl_init(); 2053 } 2054 2055 /* 2056 * Shutdown module. 2057 */ 2058 2059 void 2060 pmcstat_shutdown_logging(void) 2061 { 2062 int i; 2063 FILE *mf; 2064 struct pmcstat_image *pi, *pitmp; 2065 struct pmcstat_process *pp, *pptmp; 2066 struct pmcstat_pcmap *ppm, *ppmtmp; 2067 2068 /* determine where to send the map file */ 2069 mf = NULL; 2070 if (args.pa_mapfilename != NULL) 2071 mf = (strcmp(args.pa_mapfilename, "-") == 0) ? 2072 args.pa_printfile : fopen(args.pa_mapfilename, "w"); 2073 2074 if (mf == NULL && args.pa_flags & FLAG_DO_GPROF && 2075 args.pa_verbosity >= 2) 2076 mf = args.pa_printfile; 2077 2078 if (mf) 2079 (void) fprintf(mf, "MAP:\n"); 2080 2081 /* 2082 * Shutdown the plugins 2083 */ 2084 2085 if (plugins[args.pa_plugin].pl_shutdown != NULL) 2086 plugins[args.pa_plugin].pl_shutdown(mf); 2087 if (plugins[args.pa_pplugin].pl_shutdown != NULL) 2088 plugins[args.pa_pplugin].pl_shutdown(mf); 2089 2090 for (i = 0; i < PMCSTAT_NHASH; i++) { 2091 LIST_FOREACH_SAFE(pi, &pmcstat_image_hash[i], pi_next, 2092 pitmp) { 2093 if (plugins[args.pa_plugin].pl_shutdownimage != NULL) 2094 plugins[args.pa_plugin].pl_shutdownimage(pi); 2095 if (plugins[args.pa_pplugin].pl_shutdownimage != NULL) 2096 plugins[args.pa_pplugin].pl_shutdownimage(pi); 2097 2098 free(pi->pi_symbols); 2099 if (pi->pi_addr2line != NULL) 2100 pclose(pi->pi_addr2line); 2101 LIST_REMOVE(pi, pi_next); 2102 free(pi); 2103 } 2104 2105 LIST_FOREACH_SAFE(pp, &pmcstat_process_hash[i], pp_next, 2106 pptmp) { 2107 TAILQ_FOREACH_SAFE(ppm, &pp->pp_map, ppm_next, ppmtmp) { 2108 TAILQ_REMOVE(&pp->pp_map, ppm, ppm_next); 2109 free(ppm); 2110 } 2111 LIST_REMOVE(pp, pp_next); 2112 free(pp); 2113 } 2114 } 2115 2116 pmcstat_string_shutdown(); 2117 2118 /* 2119 * Print errors unless -q was specified. Print all statistics 2120 * if verbosity > 1. 2121 */ 2122 #define PRINT(N,V) do { \ 2123 if (pmcstat_stats.ps_##V || args.pa_verbosity >= 2) \ 2124 (void) fprintf(args.pa_printfile, " %-40s %d\n",\ 2125 N, pmcstat_stats.ps_##V); \ 2126 } while (0) 2127 2128 if (args.pa_verbosity >= 1 && (args.pa_flags & FLAG_DO_ANALYSIS) && 2129 (args.pa_flags & FLAG_DO_TOP) == 0) { 2130 (void) fprintf(args.pa_printfile, "CONVERSION STATISTICS:\n"); 2131 PRINT("#exec/a.out", exec_aout); 2132 PRINT("#exec/elf", exec_elf); 2133 PRINT("#exec/unknown", exec_indeterminable); 2134 PRINT("#exec handling errors", exec_errors); 2135 PRINT("#samples/total", samples_total); 2136 PRINT("#samples/unclaimed", samples_unknown_offset); 2137 PRINT("#samples/unknown-object", samples_indeterminable); 2138 PRINT("#callchain/dubious-frames", callchain_dubious_frames); 2139 } 2140 2141 if (mf) 2142 (void) fclose(mf); 2143 } 2144