blob: 115654c469c6de2ae46f5b03341366239359b8fa [file] [log] [blame]
Frederic Weisbecker66e274f2009-08-12 11:07:25 +02001#include "symbol.h"
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -03002#include <errno.h>
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02003#include <inttypes.h>
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -03004#include <limits.h>
Frederic Weisbecker66e274f2009-08-12 11:07:25 +02005#include <stdlib.h>
6#include <string.h>
7#include <stdio.h>
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08008#include <unistd.h>
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -03009#include "map.h"
David Ahern5cd95c22012-07-20 17:25:47 -060010#include "thread.h"
David Ahernc80c3c22012-07-20 17:25:51 -060011#include "strlist.h"
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020012
Arnaldo Carvalho de Melo3846df22010-02-22 16:15:39 -030013const char *map_type__name[MAP__NR_TYPES] = {
14 [MAP__FUNCTION] = "Functions",
15 [MAP__VARIABLE] = "Variables",
16};
17
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020018static inline int is_anon_memory(const char *filename)
19{
20 return strcmp(filename, "//anon") == 0;
21}
22
Jiri Olsa87ffef72011-08-24 15:18:34 +020023static inline int is_no_dso_memory(const char *filename)
24{
25 return !strcmp(filename, "[stack]") ||
26 !strcmp(filename, "[vdso]") ||
27 !strcmp(filename, "[heap]");
28}
29
Arnaldo Carvalho de Melo36105832009-11-27 16:29:16 -020030void map__init(struct map *self, enum map_type type,
31 u64 start, u64 end, u64 pgoff, struct dso *dso)
Arnaldo Carvalho de Meloafb7b4f2009-10-30 16:28:23 -020032{
Arnaldo Carvalho de Melo36105832009-11-27 16:29:16 -020033 self->type = type;
Arnaldo Carvalho de Meloafb7b4f2009-10-30 16:28:23 -020034 self->start = start;
35 self->end = end;
36 self->pgoff = pgoff;
37 self->dso = dso;
38 self->map_ip = map__map_ip;
39 self->unmap_ip = map__unmap_ip;
40 RB_CLEAR_NODE(&self->rb_node);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080041 self->groups = NULL;
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -030042 self->referenced = false;
Arnaldo Carvalho de Melo31d68e72012-03-27 12:55:57 -030043 self->erange_warned = false;
Arnaldo Carvalho de Meloafb7b4f2009-10-30 16:28:23 -020044}
45
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080046struct map *map__new(struct list_head *dsos__list, u64 start, u64 len,
47 u64 pgoff, u32 pid, char *filename,
Dave Martin361d1342010-07-27 16:40:02 +010048 enum map_type type)
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020049{
50 struct map *self = malloc(sizeof(*self));
51
52 if (self != NULL) {
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020053 char newfilename[PATH_MAX];
Arnaldo Carvalho de Meloafb7b4f2009-10-30 16:28:23 -020054 struct dso *dso;
Jiri Olsa87ffef72011-08-24 15:18:34 +020055 int anon, no_dso;
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020056
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020057 anon = is_anon_memory(filename);
Jiri Olsa87ffef72011-08-24 15:18:34 +020058 no_dso = is_no_dso_memory(filename);
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020059
60 if (anon) {
Arnaldo Carvalho de Melob177f632010-03-25 19:58:57 -030061 snprintf(newfilename, sizeof(newfilename), "/tmp/perf-%d.map", pid);
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020062 filename = newfilename;
63 }
64
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080065 dso = __dsos__findnew(dsos__list, filename);
Arnaldo Carvalho de Meloafb7b4f2009-10-30 16:28:23 -020066 if (dso == NULL)
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020067 goto out_delete;
68
Arnaldo Carvalho de Melob177f632010-03-25 19:58:57 -030069 map__init(self, type, start, start + len, pgoff, dso);
Arnaldo Carvalho de Meloafb7b4f2009-10-30 16:28:23 -020070
Jiri Olsa87ffef72011-08-24 15:18:34 +020071 if (anon || no_dso) {
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -020072 self->map_ip = self->unmap_ip = identity__map_ip;
Jiri Olsa87ffef72011-08-24 15:18:34 +020073
74 /*
75 * Set memory without DSO as loaded. All map__find_*
76 * functions still return NULL, and we avoid the
77 * unnecessary map__load warning.
78 */
79 if (no_dso)
80 dso__set_loaded(dso, self->type);
Arnaldo Carvalho de Melo8d92c022010-02-03 16:52:02 -020081 }
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020082 }
83 return self;
84out_delete:
85 free(self);
86 return NULL;
87}
88
Namhyung Kime5a18452012-08-06 13:41:20 +090089/*
90 * Constructor variant for modules (where we know from /proc/modules where
91 * they are loaded) and for vmlinux, where only after we load all the
92 * symbols we'll know where it starts and ends.
93 */
94struct map *map__new2(u64 start, struct dso *dso, enum map_type type)
95{
96 struct map *map = calloc(1, (sizeof(*map) +
97 (dso->kernel ? sizeof(struct kmap) : 0)));
98 if (map != NULL) {
99 /*
100 * ->end will be filled after we load all the symbols
101 */
102 map__init(map, type, start, 0, 0, dso);
103 }
104
105 return map;
106}
107
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200108void map__delete(struct map *self)
109{
110 free(self);
111}
112
Arnaldo Carvalho de Melo6a4694a2009-11-27 16:29:17 -0200113void map__fixup_start(struct map *self)
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200114{
Arnaldo Carvalho de Melo6a4694a2009-11-27 16:29:17 -0200115 struct rb_root *symbols = &self->dso->symbols[self->type];
Arnaldo Carvalho de Melofcf12032009-11-24 13:01:52 -0200116 struct rb_node *nd = rb_first(symbols);
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200117 if (nd != NULL) {
118 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
119 self->start = sym->start;
120 }
121}
122
Arnaldo Carvalho de Melo6a4694a2009-11-27 16:29:17 -0200123void map__fixup_end(struct map *self)
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200124{
Arnaldo Carvalho de Melo6a4694a2009-11-27 16:29:17 -0200125 struct rb_root *symbols = &self->dso->symbols[self->type];
Arnaldo Carvalho de Melofcf12032009-11-24 13:01:52 -0200126 struct rb_node *nd = rb_last(symbols);
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200127 if (nd != NULL) {
128 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
129 self->end = sym->end;
130 }
131}
132
Arnaldo Carvalho de Melod70a5402009-10-30 16:28:25 -0200133#define DSO__DELETED "(deleted)"
134
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200135int map__load(struct map *self, symbol_filter_t filter)
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200136{
137 const char *name = self->dso->long_name;
Masami Hiramatsua1281682009-12-15 10:32:33 -0500138 int nr;
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200139
Masami Hiramatsua1281682009-12-15 10:32:33 -0500140 if (dso__loaded(self->dso, self->type))
141 return 0;
142
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200143 nr = dso__load(self->dso, self, filter);
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200144 if (nr < 0) {
145 if (self->dso->has_build_id) {
146 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
147
148 build_id__sprintf(self->dso->build_id,
149 sizeof(self->dso->build_id),
150 sbuild_id);
151 pr_warning("%s with build id %s not found",
152 name, sbuild_id);
153 } else
154 pr_warning("Failed to open %s", name);
155
156 pr_warning(", continuing without symbols\n");
157 return -1;
158 } else if (nr == 0) {
159 const size_t len = strlen(name);
160 const size_t real_len = len - sizeof(DSO__DELETED);
161
162 if (len > sizeof(DSO__DELETED) &&
163 strcmp(name + real_len + 1, DSO__DELETED) == 0) {
David Aherne77b15b2011-10-18 18:44:45 -0600164 pr_warning("%.*s was updated (is prelink enabled?). "
165 "Restart the long running apps that use it!\n",
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200166 (int)real_len, name);
167 } else {
168 pr_warning("no symbols found in %s, maybe install "
169 "a debug package?\n", name);
170 }
171
172 return -1;
173 }
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200174 /*
175 * Only applies to the kernel, as its symtabs aren't relative like the
176 * module ones.
177 */
178 if (self->dso->kernel)
179 map__reloc_vmlinux(self);
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200180
181 return 0;
182}
183
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200184struct symbol *map__find_symbol(struct map *self, u64 addr,
185 symbol_filter_t filter)
Arnaldo Carvalho de Melo66bd8422009-10-28 21:51:21 -0200186{
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200187 if (map__load(self, filter) < 0)
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200188 return NULL;
Arnaldo Carvalho de Melo66bd8422009-10-28 21:51:21 -0200189
Arnaldo Carvalho de Meloea08d8c2009-12-11 18:56:39 -0200190 return dso__find_symbol(self->dso, self->type, addr);
Arnaldo Carvalho de Melo66bd8422009-10-28 21:51:21 -0200191}
192
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200193struct symbol *map__find_symbol_by_name(struct map *self, const char *name,
194 symbol_filter_t filter)
195{
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200196 if (map__load(self, filter) < 0)
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200197 return NULL;
198
199 if (!dso__sorted_by_name(self->dso, self->type))
200 dso__sort_by_name(self->dso, self->type);
201
202 return dso__find_symbol_by_name(self->dso, self->type, name);
203}
204
Frederic Weisbecker66e274f2009-08-12 11:07:25 +0200205struct map *map__clone(struct map *self)
206{
207 struct map *map = malloc(sizeof(*self));
208
209 if (!map)
210 return NULL;
211
212 memcpy(map, self, sizeof(*self));
213
214 return map;
215}
216
217int map__overlap(struct map *l, struct map *r)
218{
219 if (l->start > r->start) {
220 struct map *t = l;
221 l = r;
222 r = t;
223 }
224
225 if (l->end > r->start)
226 return 1;
227
228 return 0;
229}
230
231size_t map__fprintf(struct map *self, FILE *fp)
232{
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200233 return fprintf(fp, " %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s\n",
Frederic Weisbecker66e274f2009-08-12 11:07:25 +0200234 self->start, self->end, self->pgoff, self->dso->name);
235}
Kirill Smelkov7a2b6202010-02-03 16:52:07 -0200236
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900237size_t map__fprintf_dsoname(struct map *map, FILE *fp)
238{
239 const char *dsoname;
240
Akihiro Nagai0bc8d202012-01-30 13:43:20 +0900241 if (map && map->dso && (map->dso->name || map->dso->long_name)) {
242 if (symbol_conf.show_kernel_path && map->dso->long_name)
243 dsoname = map->dso->long_name;
244 else if (map->dso->name)
245 dsoname = map->dso->name;
246 } else
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900247 dsoname = "[unknown]";
248
249 return fprintf(fp, "%s", dsoname);
250}
251
Kirill Smelkov7a2b6202010-02-03 16:52:07 -0200252/*
253 * objdump wants/reports absolute IPs for ET_EXEC, and RIPs for ET_DYN.
254 * map->dso->adjust_symbols==1 for ET_EXEC-like cases.
255 */
256u64 map__rip_2objdump(struct map *map, u64 rip)
257{
258 u64 addr = map->dso->adjust_symbols ?
259 map->unmap_ip(map, rip) : /* RIP -> IP */
260 rip;
261 return addr;
262}
Kirill Smelkovee11b902010-02-07 11:46:15 -0200263
264u64 map__objdump_2ip(struct map *map, u64 addr)
265{
266 u64 ip = map->dso->adjust_symbols ?
267 addr :
268 map->unmap_ip(map, addr); /* RIP -> IP */
269 return ip;
270}
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300271
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300272void map_groups__init(struct map_groups *mg)
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300273{
274 int i;
275 for (i = 0; i < MAP__NR_TYPES; ++i) {
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300276 mg->maps[i] = RB_ROOT;
277 INIT_LIST_HEAD(&mg->removed_maps[i]);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300278 }
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300279 mg->machine = NULL;
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300280}
281
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300282static void maps__delete(struct rb_root *maps)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300283{
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300284 struct rb_node *next = rb_first(maps);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300285
286 while (next) {
287 struct map *pos = rb_entry(next, struct map, rb_node);
288
289 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300290 rb_erase(&pos->rb_node, maps);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300291 map__delete(pos);
292 }
293}
294
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300295static void maps__delete_removed(struct list_head *maps)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300296{
297 struct map *pos, *n;
298
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300299 list_for_each_entry_safe(pos, n, maps, node) {
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300300 list_del(&pos->node);
301 map__delete(pos);
302 }
303}
304
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300305void map_groups__exit(struct map_groups *mg)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300306{
307 int i;
308
309 for (i = 0; i < MAP__NR_TYPES; ++i) {
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300310 maps__delete(&mg->maps[i]);
311 maps__delete_removed(&mg->removed_maps[i]);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300312 }
313}
314
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300315void map_groups__flush(struct map_groups *mg)
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300316{
317 int type;
318
319 for (type = 0; type < MAP__NR_TYPES; type++) {
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300320 struct rb_root *root = &mg->maps[type];
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300321 struct rb_node *next = rb_first(root);
322
323 while (next) {
324 struct map *pos = rb_entry(next, struct map, rb_node);
325 next = rb_next(&pos->rb_node);
326 rb_erase(&pos->rb_node, root);
327 /*
328 * We may have references to this map, for
329 * instance in some hist_entry instances, so
330 * just move them to a separate list.
331 */
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300332 list_add_tail(&pos->node, &mg->removed_maps[pos->type]);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300333 }
334 }
335}
336
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300337struct symbol *map_groups__find_symbol(struct map_groups *mg,
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300338 enum map_type type, u64 addr,
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300339 struct map **mapp,
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300340 symbol_filter_t filter)
341{
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300342 struct map *map = map_groups__find(mg, type, addr);
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300343
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300344 if (map != NULL) {
345 if (mapp != NULL)
346 *mapp = map;
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300347 return map__find_symbol(map, map->map_ip(map, addr), filter);
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300348 }
349
350 return NULL;
351}
352
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300353struct symbol *map_groups__find_symbol_by_name(struct map_groups *mg,
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300354 enum map_type type,
355 const char *name,
356 struct map **mapp,
357 symbol_filter_t filter)
358{
359 struct rb_node *nd;
360
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300361 for (nd = rb_first(&mg->maps[type]); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300362 struct map *pos = rb_entry(nd, struct map, rb_node);
363 struct symbol *sym = map__find_symbol_by_name(pos, name, filter);
364
365 if (sym == NULL)
366 continue;
367 if (mapp != NULL)
368 *mapp = pos;
369 return sym;
370 }
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300371
372 return NULL;
373}
374
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300375size_t __map_groups__fprintf_maps(struct map_groups *mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300376 enum map_type type, int verbose, FILE *fp)
377{
378 size_t printed = fprintf(fp, "%s:\n", map_type__name[type]);
379 struct rb_node *nd;
380
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300381 for (nd = rb_first(&mg->maps[type]); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300382 struct map *pos = rb_entry(nd, struct map, rb_node);
383 printed += fprintf(fp, "Map:");
384 printed += map__fprintf(pos, fp);
385 if (verbose > 2) {
386 printed += dso__fprintf(pos->dso, type, fp);
387 printed += fprintf(fp, "--\n");
388 }
389 }
390
391 return printed;
392}
393
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300394size_t map_groups__fprintf_maps(struct map_groups *mg, int verbose, FILE *fp)
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300395{
396 size_t printed = 0, i;
397 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300398 printed += __map_groups__fprintf_maps(mg, i, verbose, fp);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300399 return printed;
400}
401
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300402static size_t __map_groups__fprintf_removed_maps(struct map_groups *mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300403 enum map_type type,
404 int verbose, FILE *fp)
405{
406 struct map *pos;
407 size_t printed = 0;
408
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300409 list_for_each_entry(pos, &mg->removed_maps[type], node) {
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300410 printed += fprintf(fp, "Map:");
411 printed += map__fprintf(pos, fp);
412 if (verbose > 1) {
413 printed += dso__fprintf(pos->dso, type, fp);
414 printed += fprintf(fp, "--\n");
415 }
416 }
417 return printed;
418}
419
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300420static size_t map_groups__fprintf_removed_maps(struct map_groups *mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300421 int verbose, FILE *fp)
422{
423 size_t printed = 0, i;
424 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300425 printed += __map_groups__fprintf_removed_maps(mg, i, verbose, fp);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300426 return printed;
427}
428
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300429size_t map_groups__fprintf(struct map_groups *mg, int verbose, FILE *fp)
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300430{
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300431 size_t printed = map_groups__fprintf_maps(mg, verbose, fp);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300432 printed += fprintf(fp, "Removed maps:\n");
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300433 return printed + map_groups__fprintf_removed_maps(mg, verbose, fp);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300434}
435
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300436int map_groups__fixup_overlappings(struct map_groups *mg, struct map *map,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300437 int verbose, FILE *fp)
438{
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300439 struct rb_root *root = &mg->maps[map->type];
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300440 struct rb_node *next = rb_first(root);
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300441 int err = 0;
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300442
443 while (next) {
444 struct map *pos = rb_entry(next, struct map, rb_node);
445 next = rb_next(&pos->rb_node);
446
447 if (!map__overlap(pos, map))
448 continue;
449
450 if (verbose >= 2) {
451 fputs("overlapping maps:\n", fp);
452 map__fprintf(map, fp);
453 map__fprintf(pos, fp);
454 }
455
456 rb_erase(&pos->rb_node, root);
457 /*
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300458 * Now check if we need to create new maps for areas not
459 * overlapped by the new map:
460 */
461 if (map->start > pos->start) {
462 struct map *before = map__clone(pos);
463
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300464 if (before == NULL) {
465 err = -ENOMEM;
466 goto move_map;
467 }
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300468
469 before->end = map->start - 1;
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300470 map_groups__insert(mg, before);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300471 if (verbose >= 2)
472 map__fprintf(before, fp);
473 }
474
475 if (map->end < pos->end) {
476 struct map *after = map__clone(pos);
477
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300478 if (after == NULL) {
479 err = -ENOMEM;
480 goto move_map;
481 }
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300482
483 after->start = map->end + 1;
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300484 map_groups__insert(mg, after);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300485 if (verbose >= 2)
486 map__fprintf(after, fp);
487 }
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300488move_map:
489 /*
490 * If we have references, just move them to a separate list.
491 */
492 if (pos->referenced)
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300493 list_add_tail(&pos->node, &mg->removed_maps[map->type]);
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300494 else
495 map__delete(pos);
496
497 if (err)
498 return err;
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300499 }
500
501 return 0;
502}
503
504/*
505 * XXX This should not really _copy_ te maps, but refcount them.
506 */
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300507int map_groups__clone(struct map_groups *mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300508 struct map_groups *parent, enum map_type type)
509{
510 struct rb_node *nd;
511 for (nd = rb_first(&parent->maps[type]); nd; nd = rb_next(nd)) {
512 struct map *map = rb_entry(nd, struct map, rb_node);
513 struct map *new = map__clone(map);
514 if (new == NULL)
515 return -ENOMEM;
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300516 map_groups__insert(mg, new);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300517 }
518 return 0;
519}
520
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300521static u64 map__reloc_map_ip(struct map *map, u64 ip)
522{
523 return ip + (s64)map->pgoff;
524}
525
526static u64 map__reloc_unmap_ip(struct map *map, u64 ip)
527{
528 return ip - (s64)map->pgoff;
529}
530
531void map__reloc_vmlinux(struct map *self)
532{
533 struct kmap *kmap = map__kmap(self);
534 s64 reloc;
535
536 if (!kmap->ref_reloc_sym || !kmap->ref_reloc_sym->unrelocated_addr)
537 return;
538
539 reloc = (kmap->ref_reloc_sym->unrelocated_addr -
540 kmap->ref_reloc_sym->addr);
541
542 if (!reloc)
543 return;
544
545 self->map_ip = map__reloc_map_ip;
546 self->unmap_ip = map__reloc_unmap_ip;
547 self->pgoff = reloc;
548}
549
550void maps__insert(struct rb_root *maps, struct map *map)
551{
552 struct rb_node **p = &maps->rb_node;
553 struct rb_node *parent = NULL;
554 const u64 ip = map->start;
555 struct map *m;
556
557 while (*p != NULL) {
558 parent = *p;
559 m = rb_entry(parent, struct map, rb_node);
560 if (ip < m->start)
561 p = &(*p)->rb_left;
562 else
563 p = &(*p)->rb_right;
564 }
565
566 rb_link_node(&map->rb_node, parent, p);
567 rb_insert_color(&map->rb_node, maps);
568}
569
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -0300570void maps__remove(struct rb_root *self, struct map *map)
571{
572 rb_erase(&map->rb_node, self);
573}
574
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300575struct map *maps__find(struct rb_root *maps, u64 ip)
576{
577 struct rb_node **p = &maps->rb_node;
578 struct rb_node *parent = NULL;
579 struct map *m;
580
581 while (*p != NULL) {
582 parent = *p;
583 m = rb_entry(parent, struct map, rb_node);
584 if (ip < m->start)
585 p = &(*p)->rb_left;
586 else if (ip > m->end)
587 p = &(*p)->rb_right;
588 else
589 return m;
590 }
591
592 return NULL;
593}
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800594
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -0300595int machine__init(struct machine *self, const char *root_dir, pid_t pid)
596{
597 map_groups__init(&self->kmaps);
598 RB_CLEAR_NODE(&self->rb_node);
599 INIT_LIST_HEAD(&self->user_dsos);
600 INIT_LIST_HEAD(&self->kernel_dsos);
601
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200602 self->threads = RB_ROOT;
603 INIT_LIST_HEAD(&self->dead_threads);
604 self->last_match = NULL;
605
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -0300606 self->kmaps.machine = self;
607 self->pid = pid;
608 self->root_dir = strdup(root_dir);
David Ahern5cd95c22012-07-20 17:25:47 -0600609 if (self->root_dir == NULL)
610 return -ENOMEM;
611
612 if (pid != HOST_KERNEL_ID) {
613 struct thread *thread = machine__findnew_thread(self, pid);
614 char comm[64];
615
616 if (thread == NULL)
617 return -ENOMEM;
618
619 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
620 thread__set_comm(thread, comm);
621 }
622
623 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -0300624}
625
Arnaldo Carvalho de Melod65a4582010-07-30 18:31:28 -0300626static void dsos__delete(struct list_head *self)
627{
628 struct dso *pos, *n;
629
630 list_for_each_entry_safe(pos, n, self, node) {
631 list_del(&pos->node);
632 dso__delete(pos);
633 }
634}
635
636void machine__exit(struct machine *self)
637{
Arnaldo Carvalho de Melod65a4582010-07-30 18:31:28 -0300638 map_groups__exit(&self->kmaps);
639 dsos__delete(&self->user_dsos);
640 dsos__delete(&self->kernel_dsos);
641 free(self->root_dir);
642 self->root_dir = NULL;
643}
644
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -0300645void machine__delete(struct machine *self)
646{
647 machine__exit(self);
648 free(self);
649}
650
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300651struct machine *machines__add(struct rb_root *self, pid_t pid,
652 const char *root_dir)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800653{
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300654 struct rb_node **p = &self->rb_node;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800655 struct rb_node *parent = NULL;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300656 struct machine *pos, *machine = malloc(sizeof(*machine));
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800657
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300658 if (!machine)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800659 return NULL;
660
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -0300661 if (machine__init(machine, root_dir, pid) != 0) {
662 free(machine);
663 return NULL;
664 }
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800665
666 while (*p != NULL) {
667 parent = *p;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300668 pos = rb_entry(parent, struct machine, rb_node);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800669 if (pid < pos->pid)
670 p = &(*p)->rb_left;
671 else
672 p = &(*p)->rb_right;
673 }
674
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300675 rb_link_node(&machine->rb_node, parent, p);
676 rb_insert_color(&machine->rb_node, self);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800677
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300678 return machine;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800679}
680
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300681struct machine *machines__find(struct rb_root *self, pid_t pid)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800682{
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300683 struct rb_node **p = &self->rb_node;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800684 struct rb_node *parent = NULL;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300685 struct machine *machine;
686 struct machine *default_machine = NULL;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800687
688 while (*p != NULL) {
689 parent = *p;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300690 machine = rb_entry(parent, struct machine, rb_node);
691 if (pid < machine->pid)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800692 p = &(*p)->rb_left;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300693 else if (pid > machine->pid)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800694 p = &(*p)->rb_right;
695 else
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300696 return machine;
697 if (!machine->pid)
698 default_machine = machine;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800699 }
700
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300701 return default_machine;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800702}
703
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300704struct machine *machines__findnew(struct rb_root *self, pid_t pid)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800705{
706 char path[PATH_MAX];
David Ahern7ed97ad2012-07-02 09:12:57 -0600707 const char *root_dir = "";
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300708 struct machine *machine = machines__find(self, pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800709
David Ahern7ed97ad2012-07-02 09:12:57 -0600710 if (machine && (machine->pid == pid))
711 goto out;
712
713 if ((pid != HOST_KERNEL_ID) &&
714 (pid != DEFAULT_GUEST_KERNEL_ID) &&
715 (symbol_conf.guestmount)) {
716 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
717 if (access(path, R_OK)) {
David Ahernc80c3c22012-07-20 17:25:51 -0600718 static struct strlist *seen;
719
720 if (!seen)
721 seen = strlist__new(true, NULL);
722
723 if (!strlist__has_entry(seen, path)) {
724 pr_err("Can't access file %s\n", path);
725 strlist__add(seen, path);
726 }
David Ahern7ed97ad2012-07-02 09:12:57 -0600727 machine = NULL;
728 goto out;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800729 }
David Ahern7ed97ad2012-07-02 09:12:57 -0600730 root_dir = path;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800731 }
732
David Ahern7ed97ad2012-07-02 09:12:57 -0600733 machine = machines__add(self, pid, root_dir);
734
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800735out:
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300736 return machine;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800737}
738
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300739void machines__process(struct rb_root *self, machine__process_t process, void *data)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800740{
741 struct rb_node *nd;
742
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300743 for (nd = rb_first(self); nd; nd = rb_next(nd)) {
744 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800745 process(pos, data);
746 }
747}
748
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300749char *machine__mmap_name(struct machine *self, char *bf, size_t size)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800750{
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300751 if (machine__is_host(self))
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300752 snprintf(bf, size, "[%s]", "kernel.kallsyms");
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300753 else if (machine__is_default_guest(self))
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300754 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800755 else
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300756 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms", self->pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800757
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300758 return bf;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800759}
David Ahernadb5d2a2012-07-20 17:25:49 -0600760
761void machines__set_id_hdr_size(struct rb_root *machines, u16 id_hdr_size)
762{
763 struct rb_node *node;
764 struct machine *machine;
765
766 for (node = rb_first(machines); node; node = rb_next(node)) {
767 machine = rb_entry(node, struct machine, rb_node);
768 machine->id_hdr_size = id_hdr_size;
769 }
770
771 return;
772}