blob: ead5316b3f89299f0ff372cd7ba06a96b4fd0184 [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"
Jiri Olsa7dbf4dc2012-09-10 18:50:19 +020012#include "vdso.h"
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020013
Arnaldo Carvalho de Melo3846df22010-02-22 16:15:39 -030014const char *map_type__name[MAP__NR_TYPES] = {
15 [MAP__FUNCTION] = "Functions",
16 [MAP__VARIABLE] = "Variables",
17};
18
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020019static inline int is_anon_memory(const char *filename)
20{
21 return strcmp(filename, "//anon") == 0;
22}
23
Jiri Olsa87ffef72011-08-24 15:18:34 +020024static inline int is_no_dso_memory(const char *filename)
25{
26 return !strcmp(filename, "[stack]") ||
Jiri Olsa87ffef72011-08-24 15:18:34 +020027 !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 Olsa7dbf4dc2012-09-10 18:50:19 +020055 int anon, no_dso, vdso;
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020056
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020057 anon = is_anon_memory(filename);
Jiri Olsa7dbf4dc2012-09-10 18:50:19 +020058 vdso = is_vdso_map(filename);
Jiri Olsa87ffef72011-08-24 15:18:34 +020059 no_dso = is_no_dso_memory(filename);
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020060
61 if (anon) {
Arnaldo Carvalho de Melob177f632010-03-25 19:58:57 -030062 snprintf(newfilename, sizeof(newfilename), "/tmp/perf-%d.map", pid);
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020063 filename = newfilename;
64 }
65
Jiri Olsa7dbf4dc2012-09-10 18:50:19 +020066 if (vdso) {
67 pgoff = 0;
68 dso = vdso__dso_findnew(dsos__list);
69 } else
70 dso = __dsos__findnew(dsos__list, filename);
71
Arnaldo Carvalho de Meloafb7b4f2009-10-30 16:28:23 -020072 if (dso == NULL)
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020073 goto out_delete;
74
Arnaldo Carvalho de Melob177f632010-03-25 19:58:57 -030075 map__init(self, type, start, start + len, pgoff, dso);
Arnaldo Carvalho de Meloafb7b4f2009-10-30 16:28:23 -020076
Jiri Olsa87ffef72011-08-24 15:18:34 +020077 if (anon || no_dso) {
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -020078 self->map_ip = self->unmap_ip = identity__map_ip;
Jiri Olsa87ffef72011-08-24 15:18:34 +020079
80 /*
81 * Set memory without DSO as loaded. All map__find_*
82 * functions still return NULL, and we avoid the
83 * unnecessary map__load warning.
84 */
85 if (no_dso)
86 dso__set_loaded(dso, self->type);
Arnaldo Carvalho de Melo8d92c022010-02-03 16:52:02 -020087 }
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020088 }
89 return self;
90out_delete:
91 free(self);
92 return NULL;
93}
94
Namhyung Kime5a18452012-08-06 13:41:20 +090095/*
96 * Constructor variant for modules (where we know from /proc/modules where
97 * they are loaded) and for vmlinux, where only after we load all the
98 * symbols we'll know where it starts and ends.
99 */
100struct map *map__new2(u64 start, struct dso *dso, enum map_type type)
101{
102 struct map *map = calloc(1, (sizeof(*map) +
103 (dso->kernel ? sizeof(struct kmap) : 0)));
104 if (map != NULL) {
105 /*
106 * ->end will be filled after we load all the symbols
107 */
108 map__init(map, type, start, 0, 0, dso);
109 }
110
111 return map;
112}
113
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200114void map__delete(struct map *self)
115{
116 free(self);
117}
118
Arnaldo Carvalho de Melo6a4694a2009-11-27 16:29:17 -0200119void map__fixup_start(struct map *self)
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200120{
Arnaldo Carvalho de Melo6a4694a2009-11-27 16:29:17 -0200121 struct rb_root *symbols = &self->dso->symbols[self->type];
Arnaldo Carvalho de Melofcf12032009-11-24 13:01:52 -0200122 struct rb_node *nd = rb_first(symbols);
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200123 if (nd != NULL) {
124 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
125 self->start = sym->start;
126 }
127}
128
Arnaldo Carvalho de Melo6a4694a2009-11-27 16:29:17 -0200129void map__fixup_end(struct map *self)
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200130{
Arnaldo Carvalho de Melo6a4694a2009-11-27 16:29:17 -0200131 struct rb_root *symbols = &self->dso->symbols[self->type];
Arnaldo Carvalho de Melofcf12032009-11-24 13:01:52 -0200132 struct rb_node *nd = rb_last(symbols);
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200133 if (nd != NULL) {
134 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
135 self->end = sym->end;
136 }
137}
138
Arnaldo Carvalho de Melod70a5402009-10-30 16:28:25 -0200139#define DSO__DELETED "(deleted)"
140
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200141int map__load(struct map *self, symbol_filter_t filter)
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200142{
143 const char *name = self->dso->long_name;
Masami Hiramatsua1281682009-12-15 10:32:33 -0500144 int nr;
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200145
Masami Hiramatsua1281682009-12-15 10:32:33 -0500146 if (dso__loaded(self->dso, self->type))
147 return 0;
148
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200149 nr = dso__load(self->dso, self, filter);
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200150 if (nr < 0) {
151 if (self->dso->has_build_id) {
152 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
153
154 build_id__sprintf(self->dso->build_id,
155 sizeof(self->dso->build_id),
156 sbuild_id);
157 pr_warning("%s with build id %s not found",
158 name, sbuild_id);
159 } else
160 pr_warning("Failed to open %s", name);
161
162 pr_warning(", continuing without symbols\n");
163 return -1;
164 } else if (nr == 0) {
Namhyung Kim393be2e2012-08-06 13:41:21 +0900165#ifndef NO_LIBELF_SUPPORT
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200166 const size_t len = strlen(name);
167 const size_t real_len = len - sizeof(DSO__DELETED);
168
169 if (len > sizeof(DSO__DELETED) &&
170 strcmp(name + real_len + 1, DSO__DELETED) == 0) {
David Aherne77b15b2011-10-18 18:44:45 -0600171 pr_warning("%.*s was updated (is prelink enabled?). "
172 "Restart the long running apps that use it!\n",
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200173 (int)real_len, name);
174 } else {
175 pr_warning("no symbols found in %s, maybe install "
176 "a debug package?\n", name);
177 }
Namhyung Kim393be2e2012-08-06 13:41:21 +0900178#endif
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200179 return -1;
180 }
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200181 /*
182 * Only applies to the kernel, as its symtabs aren't relative like the
183 * module ones.
184 */
185 if (self->dso->kernel)
186 map__reloc_vmlinux(self);
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200187
188 return 0;
189}
190
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200191struct symbol *map__find_symbol(struct map *self, u64 addr,
192 symbol_filter_t filter)
Arnaldo Carvalho de Melo66bd8422009-10-28 21:51:21 -0200193{
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200194 if (map__load(self, filter) < 0)
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200195 return NULL;
Arnaldo Carvalho de Melo66bd8422009-10-28 21:51:21 -0200196
Arnaldo Carvalho de Meloea08d8c2009-12-11 18:56:39 -0200197 return dso__find_symbol(self->dso, self->type, addr);
Arnaldo Carvalho de Melo66bd8422009-10-28 21:51:21 -0200198}
199
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200200struct symbol *map__find_symbol_by_name(struct map *self, const char *name,
201 symbol_filter_t filter)
202{
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200203 if (map__load(self, filter) < 0)
Arnaldo Carvalho de Melo79406cd2009-12-11 18:50:22 -0200204 return NULL;
205
206 if (!dso__sorted_by_name(self->dso, self->type))
207 dso__sort_by_name(self->dso, self->type);
208
209 return dso__find_symbol_by_name(self->dso, self->type, name);
210}
211
Frederic Weisbecker66e274f2009-08-12 11:07:25 +0200212struct map *map__clone(struct map *self)
213{
214 struct map *map = malloc(sizeof(*self));
215
216 if (!map)
217 return NULL;
218
219 memcpy(map, self, sizeof(*self));
220
221 return map;
222}
223
224int map__overlap(struct map *l, struct map *r)
225{
226 if (l->start > r->start) {
227 struct map *t = l;
228 l = r;
229 r = t;
230 }
231
232 if (l->end > r->start)
233 return 1;
234
235 return 0;
236}
237
238size_t map__fprintf(struct map *self, FILE *fp)
239{
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200240 return fprintf(fp, " %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s\n",
Frederic Weisbecker66e274f2009-08-12 11:07:25 +0200241 self->start, self->end, self->pgoff, self->dso->name);
242}
Kirill Smelkov7a2b6202010-02-03 16:52:07 -0200243
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900244size_t map__fprintf_dsoname(struct map *map, FILE *fp)
245{
Feng Tang8f28f192012-08-27 15:38:26 +0800246 const char *dsoname = "[unknown]";
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900247
Akihiro Nagai0bc8d202012-01-30 13:43:20 +0900248 if (map && map->dso && (map->dso->name || map->dso->long_name)) {
249 if (symbol_conf.show_kernel_path && map->dso->long_name)
250 dsoname = map->dso->long_name;
251 else if (map->dso->name)
252 dsoname = map->dso->name;
Feng Tang8f28f192012-08-27 15:38:26 +0800253 }
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900254
255 return fprintf(fp, "%s", dsoname);
256}
257
Kirill Smelkov7a2b6202010-02-03 16:52:07 -0200258/*
259 * objdump wants/reports absolute IPs for ET_EXEC, and RIPs for ET_DYN.
260 * map->dso->adjust_symbols==1 for ET_EXEC-like cases.
261 */
262u64 map__rip_2objdump(struct map *map, u64 rip)
263{
264 u64 addr = map->dso->adjust_symbols ?
265 map->unmap_ip(map, rip) : /* RIP -> IP */
266 rip;
267 return addr;
268}
Kirill Smelkovee11b902010-02-07 11:46:15 -0200269
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300270void map_groups__init(struct map_groups *mg)
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300271{
272 int i;
273 for (i = 0; i < MAP__NR_TYPES; ++i) {
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300274 mg->maps[i] = RB_ROOT;
275 INIT_LIST_HEAD(&mg->removed_maps[i]);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300276 }
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300277 mg->machine = NULL;
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300278}
279
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300280static void maps__delete(struct rb_root *maps)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300281{
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300282 struct rb_node *next = rb_first(maps);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300283
284 while (next) {
285 struct map *pos = rb_entry(next, struct map, rb_node);
286
287 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300288 rb_erase(&pos->rb_node, maps);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300289 map__delete(pos);
290 }
291}
292
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300293static void maps__delete_removed(struct list_head *maps)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300294{
295 struct map *pos, *n;
296
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300297 list_for_each_entry_safe(pos, n, maps, node) {
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300298 list_del(&pos->node);
299 map__delete(pos);
300 }
301}
302
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300303void map_groups__exit(struct map_groups *mg)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300304{
305 int i;
306
307 for (i = 0; i < MAP__NR_TYPES; ++i) {
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300308 maps__delete(&mg->maps[i]);
309 maps__delete_removed(&mg->removed_maps[i]);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300310 }
311}
312
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300313void map_groups__flush(struct map_groups *mg)
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300314{
315 int type;
316
317 for (type = 0; type < MAP__NR_TYPES; type++) {
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300318 struct rb_root *root = &mg->maps[type];
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300319 struct rb_node *next = rb_first(root);
320
321 while (next) {
322 struct map *pos = rb_entry(next, struct map, rb_node);
323 next = rb_next(&pos->rb_node);
324 rb_erase(&pos->rb_node, root);
325 /*
326 * We may have references to this map, for
327 * instance in some hist_entry instances, so
328 * just move them to a separate list.
329 */
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300330 list_add_tail(&pos->node, &mg->removed_maps[pos->type]);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300331 }
332 }
333}
334
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300335struct symbol *map_groups__find_symbol(struct map_groups *mg,
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300336 enum map_type type, u64 addr,
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300337 struct map **mapp,
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300338 symbol_filter_t filter)
339{
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300340 struct map *map = map_groups__find(mg, type, addr);
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300341
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300342 if (map != NULL) {
343 if (mapp != NULL)
344 *mapp = map;
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300345 return map__find_symbol(map, map->map_ip(map, addr), filter);
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300346 }
347
348 return NULL;
349}
350
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300351struct symbol *map_groups__find_symbol_by_name(struct map_groups *mg,
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300352 enum map_type type,
353 const char *name,
354 struct map **mapp,
355 symbol_filter_t filter)
356{
357 struct rb_node *nd;
358
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300359 for (nd = rb_first(&mg->maps[type]); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo7e5e1b142010-03-26 12:30:40 -0300360 struct map *pos = rb_entry(nd, struct map, rb_node);
361 struct symbol *sym = map__find_symbol_by_name(pos, name, filter);
362
363 if (sym == NULL)
364 continue;
365 if (mapp != NULL)
366 *mapp = pos;
367 return sym;
368 }
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300369
370 return NULL;
371}
372
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300373size_t __map_groups__fprintf_maps(struct map_groups *mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300374 enum map_type type, int verbose, FILE *fp)
375{
376 size_t printed = fprintf(fp, "%s:\n", map_type__name[type]);
377 struct rb_node *nd;
378
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300379 for (nd = rb_first(&mg->maps[type]); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300380 struct map *pos = rb_entry(nd, struct map, rb_node);
381 printed += fprintf(fp, "Map:");
382 printed += map__fprintf(pos, fp);
383 if (verbose > 2) {
384 printed += dso__fprintf(pos->dso, type, fp);
385 printed += fprintf(fp, "--\n");
386 }
387 }
388
389 return printed;
390}
391
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300392size_t map_groups__fprintf_maps(struct map_groups *mg, int verbose, FILE *fp)
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300393{
394 size_t printed = 0, i;
395 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300396 printed += __map_groups__fprintf_maps(mg, i, verbose, fp);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300397 return printed;
398}
399
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300400static size_t __map_groups__fprintf_removed_maps(struct map_groups *mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300401 enum map_type type,
402 int verbose, FILE *fp)
403{
404 struct map *pos;
405 size_t printed = 0;
406
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300407 list_for_each_entry(pos, &mg->removed_maps[type], node) {
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300408 printed += fprintf(fp, "Map:");
409 printed += map__fprintf(pos, fp);
410 if (verbose > 1) {
411 printed += dso__fprintf(pos->dso, type, fp);
412 printed += fprintf(fp, "--\n");
413 }
414 }
415 return printed;
416}
417
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300418static size_t map_groups__fprintf_removed_maps(struct map_groups *mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300419 int verbose, FILE *fp)
420{
421 size_t printed = 0, i;
422 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300423 printed += __map_groups__fprintf_removed_maps(mg, i, verbose, fp);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300424 return printed;
425}
426
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300427size_t map_groups__fprintf(struct map_groups *mg, int verbose, FILE *fp)
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300428{
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300429 size_t printed = map_groups__fprintf_maps(mg, verbose, fp);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300430 printed += fprintf(fp, "Removed maps:\n");
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300431 return printed + map_groups__fprintf_removed_maps(mg, verbose, fp);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300432}
433
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300434int map_groups__fixup_overlappings(struct map_groups *mg, struct map *map,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300435 int verbose, FILE *fp)
436{
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300437 struct rb_root *root = &mg->maps[map->type];
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300438 struct rb_node *next = rb_first(root);
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300439 int err = 0;
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300440
441 while (next) {
442 struct map *pos = rb_entry(next, struct map, rb_node);
443 next = rb_next(&pos->rb_node);
444
445 if (!map__overlap(pos, map))
446 continue;
447
448 if (verbose >= 2) {
449 fputs("overlapping maps:\n", fp);
450 map__fprintf(map, fp);
451 map__fprintf(pos, fp);
452 }
453
454 rb_erase(&pos->rb_node, root);
455 /*
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300456 * Now check if we need to create new maps for areas not
457 * overlapped by the new map:
458 */
459 if (map->start > pos->start) {
460 struct map *before = map__clone(pos);
461
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300462 if (before == NULL) {
463 err = -ENOMEM;
464 goto move_map;
465 }
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300466
467 before->end = map->start - 1;
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300468 map_groups__insert(mg, before);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300469 if (verbose >= 2)
470 map__fprintf(before, fp);
471 }
472
473 if (map->end < pos->end) {
474 struct map *after = map__clone(pos);
475
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300476 if (after == NULL) {
477 err = -ENOMEM;
478 goto move_map;
479 }
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300480
481 after->start = map->end + 1;
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300482 map_groups__insert(mg, after);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300483 if (verbose >= 2)
484 map__fprintf(after, fp);
485 }
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300486move_map:
487 /*
488 * If we have references, just move them to a separate list.
489 */
490 if (pos->referenced)
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300491 list_add_tail(&pos->node, &mg->removed_maps[map->type]);
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300492 else
493 map__delete(pos);
494
495 if (err)
496 return err;
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300497 }
498
499 return 0;
500}
501
502/*
503 * XXX This should not really _copy_ te maps, but refcount them.
504 */
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300505int map_groups__clone(struct map_groups *mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300506 struct map_groups *parent, enum map_type type)
507{
508 struct rb_node *nd;
509 for (nd = rb_first(&parent->maps[type]); nd; nd = rb_next(nd)) {
510 struct map *map = rb_entry(nd, struct map, rb_node);
511 struct map *new = map__clone(map);
512 if (new == NULL)
513 return -ENOMEM;
Arnaldo Carvalho de Melo98dfd552011-08-23 14:31:30 -0300514 map_groups__insert(mg, new);
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300515 }
516 return 0;
517}
518
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300519static u64 map__reloc_map_ip(struct map *map, u64 ip)
520{
521 return ip + (s64)map->pgoff;
522}
523
524static u64 map__reloc_unmap_ip(struct map *map, u64 ip)
525{
526 return ip - (s64)map->pgoff;
527}
528
529void map__reloc_vmlinux(struct map *self)
530{
531 struct kmap *kmap = map__kmap(self);
532 s64 reloc;
533
534 if (!kmap->ref_reloc_sym || !kmap->ref_reloc_sym->unrelocated_addr)
535 return;
536
537 reloc = (kmap->ref_reloc_sym->unrelocated_addr -
538 kmap->ref_reloc_sym->addr);
539
540 if (!reloc)
541 return;
542
543 self->map_ip = map__reloc_map_ip;
544 self->unmap_ip = map__reloc_unmap_ip;
545 self->pgoff = reloc;
546}
547
548void maps__insert(struct rb_root *maps, struct map *map)
549{
550 struct rb_node **p = &maps->rb_node;
551 struct rb_node *parent = NULL;
552 const u64 ip = map->start;
553 struct map *m;
554
555 while (*p != NULL) {
556 parent = *p;
557 m = rb_entry(parent, struct map, rb_node);
558 if (ip < m->start)
559 p = &(*p)->rb_left;
560 else
561 p = &(*p)->rb_right;
562 }
563
564 rb_link_node(&map->rb_node, parent, p);
565 rb_insert_color(&map->rb_node, maps);
566}
567
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -0300568void maps__remove(struct rb_root *self, struct map *map)
569{
570 rb_erase(&map->rb_node, self);
571}
572
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -0300573struct map *maps__find(struct rb_root *maps, u64 ip)
574{
575 struct rb_node **p = &maps->rb_node;
576 struct rb_node *parent = NULL;
577 struct map *m;
578
579 while (*p != NULL) {
580 parent = *p;
581 m = rb_entry(parent, struct map, rb_node);
582 if (ip < m->start)
583 p = &(*p)->rb_left;
584 else if (ip > m->end)
585 p = &(*p)->rb_right;
586 else
587 return m;
588 }
589
590 return NULL;
591}
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800592
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -0300593int machine__init(struct machine *self, const char *root_dir, pid_t pid)
594{
595 map_groups__init(&self->kmaps);
596 RB_CLEAR_NODE(&self->rb_node);
597 INIT_LIST_HEAD(&self->user_dsos);
598 INIT_LIST_HEAD(&self->kernel_dsos);
599
Arnaldo Carvalho de Melob424eba2011-11-09 13:24:25 -0200600 self->threads = RB_ROOT;
601 INIT_LIST_HEAD(&self->dead_threads);
602 self->last_match = NULL;
603
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -0300604 self->kmaps.machine = self;
605 self->pid = pid;
606 self->root_dir = strdup(root_dir);
David Ahern5cd95c22012-07-20 17:25:47 -0600607 if (self->root_dir == NULL)
608 return -ENOMEM;
609
610 if (pid != HOST_KERNEL_ID) {
611 struct thread *thread = machine__findnew_thread(self, pid);
612 char comm[64];
613
614 if (thread == NULL)
615 return -ENOMEM;
616
617 snprintf(comm, sizeof(comm), "[guest/%d]", pid);
618 thread__set_comm(thread, comm);
619 }
620
621 return 0;
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -0300622}
623
Arnaldo Carvalho de Melod65a4582010-07-30 18:31:28 -0300624static void dsos__delete(struct list_head *self)
625{
626 struct dso *pos, *n;
627
628 list_for_each_entry_safe(pos, n, self, node) {
629 list_del(&pos->node);
630 dso__delete(pos);
631 }
632}
633
634void machine__exit(struct machine *self)
635{
Arnaldo Carvalho de Melod65a4582010-07-30 18:31:28 -0300636 map_groups__exit(&self->kmaps);
637 dsos__delete(&self->user_dsos);
638 dsos__delete(&self->kernel_dsos);
639 free(self->root_dir);
640 self->root_dir = NULL;
641}
642
Arnaldo Carvalho de Melo076c6e452010-08-02 18:18:28 -0300643void machine__delete(struct machine *self)
644{
645 machine__exit(self);
646 free(self);
647}
648
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300649struct machine *machines__add(struct rb_root *self, pid_t pid,
650 const char *root_dir)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800651{
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300652 struct rb_node **p = &self->rb_node;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800653 struct rb_node *parent = NULL;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300654 struct machine *pos, *machine = malloc(sizeof(*machine));
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800655
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300656 if (!machine)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800657 return NULL;
658
Arnaldo Carvalho de Melod28c6222010-04-27 21:20:43 -0300659 if (machine__init(machine, root_dir, pid) != 0) {
660 free(machine);
661 return NULL;
662 }
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800663
664 while (*p != NULL) {
665 parent = *p;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300666 pos = rb_entry(parent, struct machine, rb_node);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800667 if (pid < pos->pid)
668 p = &(*p)->rb_left;
669 else
670 p = &(*p)->rb_right;
671 }
672
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300673 rb_link_node(&machine->rb_node, parent, p);
674 rb_insert_color(&machine->rb_node, self);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800675
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300676 return machine;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800677}
678
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300679struct machine *machines__find(struct rb_root *self, pid_t pid)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800680{
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300681 struct rb_node **p = &self->rb_node;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800682 struct rb_node *parent = NULL;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300683 struct machine *machine;
684 struct machine *default_machine = NULL;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800685
686 while (*p != NULL) {
687 parent = *p;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300688 machine = rb_entry(parent, struct machine, rb_node);
689 if (pid < machine->pid)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800690 p = &(*p)->rb_left;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300691 else if (pid > machine->pid)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800692 p = &(*p)->rb_right;
693 else
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300694 return machine;
695 if (!machine->pid)
696 default_machine = machine;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800697 }
698
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300699 return default_machine;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800700}
701
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300702struct machine *machines__findnew(struct rb_root *self, pid_t pid)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800703{
704 char path[PATH_MAX];
David Ahern7ed97ad2012-07-02 09:12:57 -0600705 const char *root_dir = "";
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300706 struct machine *machine = machines__find(self, pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800707
David Ahern7ed97ad2012-07-02 09:12:57 -0600708 if (machine && (machine->pid == pid))
709 goto out;
710
711 if ((pid != HOST_KERNEL_ID) &&
712 (pid != DEFAULT_GUEST_KERNEL_ID) &&
713 (symbol_conf.guestmount)) {
714 sprintf(path, "%s/%d", symbol_conf.guestmount, pid);
715 if (access(path, R_OK)) {
David Ahernc80c3c22012-07-20 17:25:51 -0600716 static struct strlist *seen;
717
718 if (!seen)
719 seen = strlist__new(true, NULL);
720
721 if (!strlist__has_entry(seen, path)) {
722 pr_err("Can't access file %s\n", path);
723 strlist__add(seen, path);
724 }
David Ahern7ed97ad2012-07-02 09:12:57 -0600725 machine = NULL;
726 goto out;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800727 }
David Ahern7ed97ad2012-07-02 09:12:57 -0600728 root_dir = path;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800729 }
730
David Ahern7ed97ad2012-07-02 09:12:57 -0600731 machine = machines__add(self, pid, root_dir);
732
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800733out:
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300734 return machine;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800735}
736
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300737void machines__process(struct rb_root *self, machine__process_t process, void *data)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800738{
739 struct rb_node *nd;
740
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300741 for (nd = rb_first(self); nd; nd = rb_next(nd)) {
742 struct machine *pos = rb_entry(nd, struct machine, rb_node);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800743 process(pos, data);
744 }
745}
746
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300747char *machine__mmap_name(struct machine *self, char *bf, size_t size)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800748{
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300749 if (machine__is_host(self))
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300750 snprintf(bf, size, "[%s]", "kernel.kallsyms");
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300751 else if (machine__is_default_guest(self))
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300752 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800753 else
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300754 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms", self->pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800755
Arnaldo Carvalho de Melo48ea8f52010-04-27 21:19:05 -0300756 return bf;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800757}
David Ahernadb5d2a2012-07-20 17:25:49 -0600758
759void machines__set_id_hdr_size(struct rb_root *machines, u16 id_hdr_size)
760{
761 struct rb_node *node;
762 struct machine *machine;
763
764 for (node = rb_first(machines); node; node = rb_next(node)) {
765 machine = rb_entry(node, struct machine, rb_node);
766 machine->id_hdr_size = id_hdr_size;
767 }
768
769 return;
770}