blob: 39dbe512b9fcf3c8caeda0cebc5dea32d9696bec [file] [log] [blame]
Naveen N. Raod2332092015-04-28 17:35:35 +05301/*
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"
Naveen N. Rao031b84c2015-04-28 17:35:37 +053011#include "map.h"
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +053012#include "probe-event.h"
Naveen N. Rao44ca9342017-03-08 13:56:10 +053013#include "probe-file.h"
Naveen N. Raod2332092015-04-28 17:35:35 +053014
15#ifdef HAVE_LIBELF_SUPPORT
16bool 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}
Ananth N Mavinakayanahallic50fc0a2015-04-28 17:35:38 +053022
Naveen N. Raod2332092015-04-28 17:35:35 +053023#endif
Naveen N. Raofb6d5942015-04-28 17:35:36 +053024
25#if !defined(_CALL_ELF) || _CALL_ELF != 2
26int 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}
Naveen N. Rao031b84c2015-04-28 17:35:37 +053043
44/* Allow matching against dot variants */
45int 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}
Naveen N. Raofb6d5942015-04-28 17:35:36 +053055#endif
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +053056
57#if defined(_CALL_ELF) && _CALL_ELF == 2
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +053058
Naveen N. Rao0b3c2262016-04-12 14:40:50 +053059#ifdef HAVE_LIBELF_SUPPORT
60void arch__sym_update(struct symbol *s, GElf_Sym *sym)
61{
62 s->arch_sym = sym->st_other;
63}
64#endif
65
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +053066#define PPC64LE_LEP_OFFSET 8
67
68void arch__fix_tev_from_maps(struct perf_probe_event *pev,
Naveen N. Rao0b3c2262016-04-12 14:40:50 +053069 struct probe_trace_event *tev, struct map *map,
70 struct symbol *sym)
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +053071{
Naveen N. Rao0b3c2262016-04-12 14:40:50 +053072 int lep_offset;
73
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +053074 /*
Naveen N. Rao239aeba2016-04-12 14:40:49 +053075 * 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.
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +053083 */
Naveen N. Rao44ca9342017-03-08 13:56:10 +053084 if (pev->point.offset || !map || !sym)
Naveen N. Rao239aeba2016-04-12 14:40:49 +053085 return;
86
Naveen N. Rao44ca9342017-03-08 13:56:10 +053087 /* 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
Naveen N. Rao0b3c2262016-04-12 14:40:50 +053095 lep_offset = PPC64_LOCAL_ENTRY_OFFSET(sym->arch_sym);
96
Naveen N. Rao239aeba2016-04-12 14:40:49 +053097 if (map->dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS)
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +053098 tev->point.offset += PPC64LE_LEP_OFFSET;
Naveen N. Rao0b3c2262016-04-12 14:40:50 +053099 else if (lep_offset) {
100 if (pev->uprobes)
101 tev->point.address += lep_offset;
102 else
103 tev->point.offset += lep_offset;
104 }
Naveen N. Rao7b6ff0b2015-04-28 17:35:40 +0530105}
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500106
Ravi Bangoriaf046f3d2016-08-11 14:43:59 -0300107#ifdef HAVE_LIBELF_SUPPORT
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500108void 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);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300118 if (!map || map__load(map) < 0)
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500119 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}
Ravi Bangoriaf046f3d2016-08-11 14:43:59 -0300129#endif /* HAVE_LIBELF_SUPPORT */
Ravi Bangoria99e608b2016-08-09 01:23:25 -0500130
Naveen N. Raod5c2e2c2015-04-28 17:35:39 +0530131#endif