map.c 4.9 KB
Newer Older
1 2 3 4
#include "symbol.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
5
#include "debug.h"
6

7 8 9 10 11
const char *map_type__name[MAP__NR_TYPES] = {
	[MAP__FUNCTION] = "Functions",
	[MAP__VARIABLE] = "Variables",
};

12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
static inline int is_anon_memory(const char *filename)
{
	return strcmp(filename, "//anon") == 0;
}

static int strcommon(const char *pathname, char *cwd, int cwdlen)
{
	int n = 0;

	while (n < cwdlen && pathname[n] == cwd[n])
		++n;

	return n;
}

27 28
void map__init(struct map *self, enum map_type type,
	       u64 start, u64 end, u64 pgoff, struct dso *dso)
29
{
30
	self->type     = type;
31 32 33 34 35 36 37 38 39
	self->start    = start;
	self->end      = end;
	self->pgoff    = pgoff;
	self->dso      = dso;
	self->map_ip   = map__map_ip;
	self->unmap_ip = map__unmap_ip;
	RB_CLEAR_NODE(&self->rb_node);
}

40 41
struct map *map__new(u64 start, u64 len, u64 pgoff, u32 pid, char *filename,
		     enum map_type type, char *cwd, int cwdlen)
42 43 44 45 46
{
	struct map *self = malloc(sizeof(*self));

	if (self != NULL) {
		char newfilename[PATH_MAX];
47
		struct dso *dso;
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
		int anon;

		if (cwd) {
			int n = strcommon(filename, cwd, cwdlen);

			if (n == cwdlen) {
				snprintf(newfilename, sizeof(newfilename),
					 ".%s", filename + n);
				filename = newfilename;
			}
		}

		anon = is_anon_memory(filename);

		if (anon) {
63
			snprintf(newfilename, sizeof(newfilename), "/tmp/perf-%d.map", pid);
64 65 66
			filename = newfilename;
		}

67
		dso = dsos__findnew(filename);
68
		if (dso == NULL)
69 70
			goto out_delete;

71
		map__init(self, type, start, start + len, pgoff, dso);
72

73 74
		if (anon) {
set_identity:
75
			self->map_ip = self->unmap_ip = identity__map_ip;
76 77 78 79
		} else if (strcmp(filename, "[vdso]") == 0) {
			dso__set_loaded(dso, self->type);
			goto set_identity;
		}
80 81 82 83 84 85 86
	}
	return self;
out_delete:
	free(self);
	return NULL;
}

87 88 89 90 91
void map__delete(struct map *self)
{
	free(self);
}

92
void map__fixup_start(struct map *self)
93
{
94
	struct rb_root *symbols = &self->dso->symbols[self->type];
95
	struct rb_node *nd = rb_first(symbols);
96 97 98 99 100 101
	if (nd != NULL) {
		struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
		self->start = sym->start;
	}
}

102
void map__fixup_end(struct map *self)
103
{
104
	struct rb_root *symbols = &self->dso->symbols[self->type];
105
	struct rb_node *nd = rb_last(symbols);
106 107 108 109 110 111
	if (nd != NULL) {
		struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
		self->end = sym->end;
	}
}

112 113
#define DSO__DELETED "(deleted)"

114
int map__load(struct map *self, symbol_filter_t filter)
115
{
116
	const char *name = self->dso->long_name;
117
	int nr;
118

119 120 121
	if (dso__loaded(self->dso, self->type))
		return 0;

122
	nr = dso__load(self->dso, self, filter);
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
	if (nr < 0) {
		if (self->dso->has_build_id) {
			char sbuild_id[BUILD_ID_SIZE * 2 + 1];

			build_id__sprintf(self->dso->build_id,
					  sizeof(self->dso->build_id),
					  sbuild_id);
			pr_warning("%s with build id %s not found",
				   name, sbuild_id);
		} else
			pr_warning("Failed to open %s", name);

		pr_warning(", continuing without symbols\n");
		return -1;
	} else if (nr == 0) {
		const size_t len = strlen(name);
		const size_t real_len = len - sizeof(DSO__DELETED);

		if (len > sizeof(DSO__DELETED) &&
		    strcmp(name + real_len + 1, DSO__DELETED) == 0) {
			pr_warning("%.*s was updated, restart the long "
				   "running apps that use it!\n",
				   (int)real_len, name);
		} else {
			pr_warning("no symbols found in %s, maybe install "
				   "a debug package?\n", name);
149
		}
150 151

		return -1;
152
	}
153 154 155 156 157 158
	/*
	 * Only applies to the kernel, as its symtabs aren't relative like the
	 * module ones.
	 */
	if (self->dso->kernel)
		map__reloc_vmlinux(self);
159

160 161 162
	return 0;
}

163 164
struct symbol *map__find_symbol(struct map *self, u64 addr,
				symbol_filter_t filter)
165
{
166
	if (map__load(self, filter) < 0)
167 168
		return NULL;

169
	return dso__find_symbol(self->dso, self->type, addr);
170 171
}

172 173 174
struct symbol *map__find_symbol_by_name(struct map *self, const char *name,
					symbol_filter_t filter)
{
175
	if (map__load(self, filter) < 0)
176 177 178 179 180 181 182 183
		return NULL;

	if (!dso__sorted_by_name(self->dso, self->type))
		dso__sort_by_name(self->dso, self->type);

	return dso__find_symbol_by_name(self->dso, self->type, name);
}

184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
struct map *map__clone(struct map *self)
{
	struct map *map = malloc(sizeof(*self));

	if (!map)
		return NULL;

	memcpy(map, self, sizeof(*self));

	return map;
}

int map__overlap(struct map *l, struct map *r)
{
	if (l->start > r->start) {
		struct map *t = l;
		l = r;
		r = t;
	}

	if (l->end > r->start)
		return 1;

	return 0;
}

size_t map__fprintf(struct map *self, FILE *fp)
{
	return fprintf(fp, " %Lx-%Lx %Lx %s\n",
		       self->start, self->end, self->pgoff, self->dso->name);
}
215 216 217 218 219 220 221 222 223 224 225 226

/*
 * objdump wants/reports absolute IPs for ET_EXEC, and RIPs for ET_DYN.
 * map->dso->adjust_symbols==1 for ET_EXEC-like cases.
 */
u64 map__rip_2objdump(struct map *map, u64 rip)
{
	u64 addr = map->dso->adjust_symbols ?
			map->unmap_ip(map, rip) :	/* RIP -> IP */
			rip;
	return addr;
}
227 228 229 230 231 232 233 234

u64 map__objdump_2ip(struct map *map, u64 addr)
{
	u64 ip = map->dso->adjust_symbols ?
			addr :
			map->unmap_ip(map, addr);	/* RIP -> IP */
	return ip;
}