1 /* 2 * This program is free software; you can redistribute it and/or modify 3 * it under the terms of the GNU General Public License, version 2, as 4 * published by the Free Software Foundation. 5 * 6 * Copyright (C) 2015 Naveen N. Rao, IBM Corporation 7 */ 8 9 #include "debug.h" 10 #include "symbol.h" 11 #include "map.h" 12 #include "probe-event.h" 13 #include "probe-file.h" 14 15 #ifdef HAVE_LIBELF_SUPPORT 16 bool elf__needs_adjust_symbols(GElf_Ehdr ehdr) 17 { 18 return ehdr.e_type == ET_EXEC || 19 ehdr.e_type == ET_REL || 20 ehdr.e_type == ET_DYN; 21 } 22 23 #endif 24 25 #if !defined(_CALL_ELF) || _CALL_ELF != 2 26 int arch__choose_best_symbol(struct symbol *syma, 27 struct symbol *symb __maybe_unused) 28 { 29 char *sym = syma->name; 30 31 /* Skip over any initial dot */ 32 if (*sym == '.') 33 sym++; 34 35 /* Avoid "SyS" kernel syscall aliases */ 36 if (strlen(sym) >= 3 && !strncmp(sym, "SyS", 3)) 37 return SYMBOL_B; 38 if (strlen(sym) >= 10 && !strncmp(sym, "compat_SyS", 10)) 39 return SYMBOL_B; 40 41 return SYMBOL_A; 42 } 43 44 /* Allow matching against dot variants */ 45 int arch__compare_symbol_names(const char *namea, const char *nameb) 46 { 47 /* Skip over initial dot */ 48 if (*namea == '.') 49 namea++; 50 if (*nameb == '.') 51 nameb++; 52 53 return strcmp(namea, nameb); 54 } 55 #endif 56 57 #if defined(_CALL_ELF) && _CALL_ELF == 2 58 59 #ifdef HAVE_LIBELF_SUPPORT 60 void arch__sym_update(struct symbol *s, GElf_Sym *sym) 61 { 62 s->arch_sym = sym->st_other; 63 } 64 #endif 65 66 #define PPC64LE_LEP_OFFSET 8 67 68 void arch__fix_tev_from_maps(struct perf_probe_event *pev, 69 struct probe_trace_event *tev, struct map *map, 70 struct symbol *sym) 71 { 72 int lep_offset; 73 74 /* 75 * When probing at a function entry point, we normally always want the 76 * LEP since that catches calls to the function through both the GEP and 77 * the LEP. Hence, we would like to probe at an offset of 8 bytes if 78 * the user only specified the function entry. 79 * 80 * However, if the user specifies an offset, we fall back to using the 81 * GEP since all userspace applications (objdump/readelf) show function 82 * disassembly with offsets from the GEP. 83 */ 84 if (pev->point.offset || !map || !sym) 85 return; 86 87 /* For kretprobes, add an offset only if the kernel supports it */ 88 if (!pev->uprobes && pev->point.retprobe) { 89 #ifdef HAVE_LIBELF_SUPPORT 90 if (!kretprobe_offset_is_supported()) 91 #endif 92 return; 93 } 94 95 lep_offset = PPC64_LOCAL_ENTRY_OFFSET(sym->arch_sym); 96 97 if (map->dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS) 98 tev->point.offset += PPC64LE_LEP_OFFSET; 99 else if (lep_offset) { 100 if (pev->uprobes) 101 tev->point.address += lep_offset; 102 else 103 tev->point.offset += lep_offset; 104 } 105 } 106 107 #ifdef HAVE_LIBELF_SUPPORT 108 void arch__post_process_probe_trace_events(struct perf_probe_event *pev, 109 int ntevs) 110 { 111 struct probe_trace_event *tev; 112 struct map *map; 113 struct symbol *sym = NULL; 114 struct rb_node *tmp; 115 int i = 0; 116 117 map = get_target_map(pev->target, pev->uprobes); 118 if (!map || map__load(map) < 0) 119 return; 120 121 for (i = 0; i < ntevs; i++) { 122 tev = &pev->tevs[i]; 123 map__for_each_symbol(map, sym, tmp) { 124 if (map->unmap_ip(map, sym->start) == tev->point.address) 125 arch__fix_tev_from_maps(pev, tev, map, sym); 126 } 127 } 128 } 129 #endif /* HAVE_LIBELF_SUPPORT */ 130 131 #endif 132