Merge branch 'for-4.8-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...
[deliverable/linux.git] / tools / perf / util / map.c
CommitLineData
66e274f3 1#include "symbol.h"
c6e718ff 2#include <errno.h>
9486aa38 3#include <inttypes.h>
4b8cf846 4#include <limits.h>
66e274f3
FW
5#include <stdlib.h>
6#include <string.h>
7#include <stdio.h>
a1645ce1 8#include <unistd.h>
4b8cf846 9#include "map.h"
5cd95c2d 10#include "thread.h"
c80c3c26 11#include "strlist.h"
7dbf4dcf 12#include "vdso.h"
ebb296c2 13#include "build-id.h"
cc8fae1d 14#include "util.h"
acebd408 15#include "debug.h"
2a03068c 16#include "machine.h"
8e16017d 17#include <linux/string.h>
6c502584 18#include "unwind.h"
66e274f3 19
6a2ffcdd
ACM
20static void __maps__insert(struct maps *maps, struct map *map);
21
3846df2e
ACM
22const char *map_type__name[MAP__NR_TYPES] = {
23 [MAP__FUNCTION] = "Functions",
24 [MAP__VARIABLE] = "Variables",
25};
26
66e274f3
FW
27static inline int is_anon_memory(const char *filename)
28{
d0528b5d 29 return !strcmp(filename, "//anon") ||
b2be5451
YB
30 !strncmp(filename, "/dev/zero", sizeof("/dev/zero") - 1) ||
31 !strncmp(filename, "/anon_hugepage", sizeof("/anon_hugepage") - 1);
66e274f3
FW
32}
33
87ffef79
JO
34static inline int is_no_dso_memory(const char *filename)
35{
1e82574d 36 return !strncmp(filename, "[stack", 6) ||
700be564 37 !strncmp(filename, "/SYSV",5) ||
87ffef79
JO
38 !strcmp(filename, "[heap]");
39}
40
eca81836
ML
41static inline int is_android_lib(const char *filename)
42{
43 return !strncmp(filename, "/data/app-lib", 13) ||
44 !strncmp(filename, "/system/lib", 11);
45}
46
47static inline bool replace_android_lib(const char *filename, char *newfilename)
48{
49 const char *libname;
50 char *app_abi;
51 size_t app_abi_length, new_length;
52 size_t lib_length = 0;
53
54 libname = strrchr(filename, '/');
55 if (libname)
56 lib_length = strlen(libname);
57
58 app_abi = getenv("APP_ABI");
59 if (!app_abi)
60 return false;
61
62 app_abi_length = strlen(app_abi);
63
64 if (!strncmp(filename, "/data/app-lib", 13)) {
65 char *apk_path;
66
67 if (!app_abi_length)
68 return false;
69
70 new_length = 7 + app_abi_length + lib_length;
71
72 apk_path = getenv("APK_PATH");
73 if (apk_path) {
74 new_length += strlen(apk_path) + 1;
75 if (new_length > PATH_MAX)
76 return false;
77 snprintf(newfilename, new_length,
78 "%s/libs/%s/%s", apk_path, app_abi, libname);
79 } else {
80 if (new_length > PATH_MAX)
81 return false;
82 snprintf(newfilename, new_length,
83 "libs/%s/%s", app_abi, libname);
84 }
85 return true;
86 }
87
88 if (!strncmp(filename, "/system/lib/", 11)) {
89 char *ndk, *app;
90 const char *arch;
91 size_t ndk_length;
92 size_t app_length;
93
94 ndk = getenv("NDK_ROOT");
95 app = getenv("APP_PLATFORM");
96
97 if (!(ndk && app))
98 return false;
99
100 ndk_length = strlen(ndk);
101 app_length = strlen(app);
102
103 if (!(ndk_length && app_length && app_abi_length))
104 return false;
105
106 arch = !strncmp(app_abi, "arm", 3) ? "arm" :
107 !strncmp(app_abi, "mips", 4) ? "mips" :
108 !strncmp(app_abi, "x86", 3) ? "x86" : NULL;
109
110 if (!arch)
111 return false;
112
113 new_length = 27 + ndk_length +
114 app_length + lib_length
115 + strlen(arch);
116
117 if (new_length > PATH_MAX)
118 return false;
119 snprintf(newfilename, new_length,
120 "%s/platforms/%s/arch-%s/usr/lib/%s",
121 ndk, app, arch, libname);
122
123 return true;
124 }
125 return false;
126}
127
237a7e04 128void map__init(struct map *map, enum map_type type,
3610583c 129 u64 start, u64 end, u64 pgoff, struct dso *dso)
afb7b4f0 130{
237a7e04
ACM
131 map->type = type;
132 map->start = start;
133 map->end = end;
134 map->pgoff = pgoff;
9176753d 135 map->reloc = 0;
d3a7c489 136 map->dso = dso__get(dso);
237a7e04
ACM
137 map->map_ip = map__map_ip;
138 map->unmap_ip = map__unmap_ip;
139 RB_CLEAR_NODE(&map->rb_node);
140 map->groups = NULL;
237a7e04 141 map->erange_warned = false;
84c2cafa 142 atomic_set(&map->refcnt, 1);
afb7b4f0
ACM
143}
144
2a03068c 145struct map *map__new(struct machine *machine, u64 start, u64 len,
5c5e854b 146 u64 pgoff, u32 pid, u32 d_maj, u32 d_min, u64 ino,
7ef80703 147 u64 ino_gen, u32 prot, u32 flags, char *filename,
5835edda 148 enum map_type type, struct thread *thread)
66e274f3 149{
237a7e04 150 struct map *map = malloc(sizeof(*map));
66e274f3 151
237a7e04 152 if (map != NULL) {
66e274f3 153 char newfilename[PATH_MAX];
afb7b4f0 154 struct dso *dso;
eca81836 155 int anon, no_dso, vdso, android;
66e274f3 156
eca81836 157 android = is_android_lib(filename);
66e274f3 158 anon = is_anon_memory(filename);
7dbf4dcf 159 vdso = is_vdso_map(filename);
87ffef79 160 no_dso = is_no_dso_memory(filename);
66e274f3 161
5c5e854b
SE
162 map->maj = d_maj;
163 map->min = d_min;
164 map->ino = ino;
165 map->ino_generation = ino_gen;
7ef80703
DZ
166 map->prot = prot;
167 map->flags = flags;
5c5e854b 168
578c03c8 169 if ((anon || no_dso) && type == MAP__FUNCTION) {
b177f63f 170 snprintf(newfilename, sizeof(newfilename), "/tmp/perf-%d.map", pid);
66e274f3
FW
171 filename = newfilename;
172 }
173
eca81836
ML
174 if (android) {
175 if (replace_android_lib(filename, newfilename))
176 filename = newfilename;
177 }
178
7dbf4dcf
JO
179 if (vdso) {
180 pgoff = 0;
9a4388c7 181 dso = machine__findnew_vdso(machine, thread);
7dbf4dcf 182 } else
aa7cc2ae 183 dso = machine__findnew_dso(machine, filename);
7dbf4dcf 184
afb7b4f0 185 if (dso == NULL)
66e274f3
FW
186 goto out_delete;
187
237a7e04 188 map__init(map, type, start, start + len, pgoff, dso);
afb7b4f0 189
87ffef79 190 if (anon || no_dso) {
237a7e04 191 map->map_ip = map->unmap_ip = identity__map_ip;
87ffef79
JO
192
193 /*
194 * Set memory without DSO as loaded. All map__find_*
195 * functions still return NULL, and we avoid the
196 * unnecessary map__load warning.
197 */
578c03c8 198 if (type != MAP__FUNCTION)
237a7e04 199 dso__set_loaded(dso, map->type);
8d92c02a 200 }
d3a7c489 201 dso__put(dso);
66e274f3 202 }
237a7e04 203 return map;
66e274f3 204out_delete:
237a7e04 205 free(map);
66e274f3
FW
206 return NULL;
207}
208
e5a1845f
NK
209/*
210 * Constructor variant for modules (where we know from /proc/modules where
211 * they are loaded) and for vmlinux, where only after we load all the
212 * symbols we'll know where it starts and ends.
213 */
214struct map *map__new2(u64 start, struct dso *dso, enum map_type type)
215{
216 struct map *map = calloc(1, (sizeof(*map) +
217 (dso->kernel ? sizeof(struct kmap) : 0)));
218 if (map != NULL) {
219 /*
220 * ->end will be filled after we load all the symbols
221 */
222 map__init(map, type, start, 0, 0, dso);
223 }
224
225 return map;
226}
227
e6ce7126
ACM
228/*
229 * Use this and __map__is_kmodule() for map instances that are in
230 * machine->kmaps, and thus have map->groups->machine all properly set, to
231 * disambiguate between the kernel and modules.
232 *
233 * When the need arises, introduce map__is_{kernel,kmodule)() that
234 * checks (map->groups != NULL && map->groups->machine != NULL &&
235 * map->dso->kernel) before calling __map__is_{kernel,kmodule}())
236 */
237bool __map__is_kernel(const struct map *map)
238{
a5e813c6 239 return __machine__kernel_map(map->groups->machine, map->type) == map;
e6ce7126
ACM
240}
241
d3a7c489 242static void map__exit(struct map *map)
c338aee8 243{
facf3f06 244 BUG_ON(!RB_EMPTY_NODE(&map->rb_node));
d3a7c489
ACM
245 dso__zput(map->dso);
246}
247
248void map__delete(struct map *map)
249{
250 map__exit(map);
237a7e04 251 free(map);
c338aee8
ACM
252}
253
84c2cafa
ACM
254void map__put(struct map *map)
255{
256 if (map && atomic_dec_and_test(&map->refcnt))
257 map__delete(map);
258}
259
237a7e04 260void map__fixup_start(struct map *map)
c338aee8 261{
237a7e04 262 struct rb_root *symbols = &map->dso->symbols[map->type];
fcf1203a 263 struct rb_node *nd = rb_first(symbols);
c338aee8
ACM
264 if (nd != NULL) {
265 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
237a7e04 266 map->start = sym->start;
c338aee8
ACM
267 }
268}
269
237a7e04 270void map__fixup_end(struct map *map)
c338aee8 271{
237a7e04 272 struct rb_root *symbols = &map->dso->symbols[map->type];
fcf1203a 273 struct rb_node *nd = rb_last(symbols);
c338aee8
ACM
274 if (nd != NULL) {
275 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
237a7e04 276 map->end = sym->end;
c338aee8
ACM
277 }
278}
279
d70a5402
ACM
280#define DSO__DELETED "(deleted)"
281
237a7e04 282int map__load(struct map *map, symbol_filter_t filter)
66bd8424 283{
237a7e04 284 const char *name = map->dso->long_name;
a128168d 285 int nr;
79406cd7 286
237a7e04 287 if (dso__loaded(map->dso, map->type))
a128168d
MH
288 return 0;
289
237a7e04 290 nr = dso__load(map->dso, map, filter);
79406cd7 291 if (nr < 0) {
237a7e04 292 if (map->dso->has_build_id) {
b5d8bbe8 293 char sbuild_id[SBUILD_ID_SIZE];
79406cd7 294
237a7e04
ACM
295 build_id__sprintf(map->dso->build_id,
296 sizeof(map->dso->build_id),
79406cd7
ACM
297 sbuild_id);
298 pr_warning("%s with build id %s not found",
299 name, sbuild_id);
300 } else
301 pr_warning("Failed to open %s", name);
302
303 pr_warning(", continuing without symbols\n");
304 return -1;
305 } else if (nr == 0) {
89fe808a 306#ifdef HAVE_LIBELF_SUPPORT
79406cd7
ACM
307 const size_t len = strlen(name);
308 const size_t real_len = len - sizeof(DSO__DELETED);
309
310 if (len > sizeof(DSO__DELETED) &&
311 strcmp(name + real_len + 1, DSO__DELETED) == 0) {
e77b15bd
DA
312 pr_warning("%.*s was updated (is prelink enabled?). "
313 "Restart the long running apps that use it!\n",
79406cd7 314 (int)real_len, name);
e7049342
MH
315 } else if (filter) {
316 pr_warning("no symbols passed the given filter.\n");
317 return -2; /* Empty but maybe by the filter */
79406cd7
ACM
318 } else {
319 pr_warning("no symbols found in %s, maybe install "
320 "a debug package?\n", name);
66bd8424 321 }
393be2e3 322#endif
79406cd7 323 return -1;
66bd8424
ACM
324 }
325
79406cd7
ACM
326 return 0;
327}
328
031b84c4
NR
329int __weak arch__compare_symbol_names(const char *namea, const char *nameb)
330{
331 return strcmp(namea, nameb);
332}
333
237a7e04 334struct symbol *map__find_symbol(struct map *map, u64 addr,
9de89fe7 335 symbol_filter_t filter)
79406cd7 336{
237a7e04 337 if (map__load(map, filter) < 0)
79406cd7
ACM
338 return NULL;
339
237a7e04 340 return dso__find_symbol(map->dso, map->type, addr);
66bd8424
ACM
341}
342
237a7e04 343struct symbol *map__find_symbol_by_name(struct map *map, const char *name,
79406cd7
ACM
344 symbol_filter_t filter)
345{
237a7e04 346 if (map__load(map, filter) < 0)
79406cd7
ACM
347 return NULL;
348
237a7e04
ACM
349 if (!dso__sorted_by_name(map->dso, map->type))
350 dso__sort_by_name(map->dso, map->type);
79406cd7 351
237a7e04 352 return dso__find_symbol_by_name(map->dso, map->type, name);
79406cd7
ACM
353}
354
66671d00 355struct map *map__clone(struct map *from)
66e274f3 356{
66671d00
ACM
357 struct map *map = memdup(from, sizeof(*map));
358
359 if (map != NULL) {
360 atomic_set(&map->refcnt, 1);
361 RB_CLEAR_NODE(&map->rb_node);
362 dso__get(map->dso);
363 map->groups = NULL;
364 }
365
366 return map;
66e274f3
FW
367}
368
369int map__overlap(struct map *l, struct map *r)
370{
371 if (l->start > r->start) {
372 struct map *t = l;
373 l = r;
374 r = t;
375 }
376
377 if (l->end > r->start)
378 return 1;
379
380 return 0;
381}
382
237a7e04 383size_t map__fprintf(struct map *map, FILE *fp)
66e274f3 384{
9486aa38 385 return fprintf(fp, " %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s\n",
237a7e04 386 map->start, map->end, map->pgoff, map->dso->name);
66e274f3 387}
7a2b6209 388
547a92e0
AN
389size_t map__fprintf_dsoname(struct map *map, FILE *fp)
390{
8f28f19a 391 const char *dsoname = "[unknown]";
547a92e0 392
0bc8d205
AN
393 if (map && map->dso && (map->dso->name || map->dso->long_name)) {
394 if (symbol_conf.show_kernel_path && map->dso->long_name)
395 dsoname = map->dso->long_name;
396 else if (map->dso->name)
397 dsoname = map->dso->name;
8f28f19a 398 }
547a92e0
AN
399
400 return fprintf(fp, "%s", dsoname);
401}
402
cc8fae1d
AH
403int map__fprintf_srcline(struct map *map, u64 addr, const char *prefix,
404 FILE *fp)
405{
406 char *srcline;
407 int ret = 0;
408
409 if (map && map->dso) {
410 srcline = get_srcline(map->dso,
85c116a6 411 map__rip_2objdump(map, addr), NULL, true);
cc8fae1d
AH
412 if (srcline != SRCLINE_UNKNOWN)
413 ret = fprintf(fp, "%s%s", prefix, srcline);
414 free_srcline(srcline);
415 }
416 return ret;
417}
418
1d5077bd
AH
419/**
420 * map__rip_2objdump - convert symbol start address to objdump address.
421 * @map: memory map
422 * @rip: symbol start address
423 *
7a2b6209 424 * objdump wants/reports absolute IPs for ET_EXEC, and RIPs for ET_DYN.
0131c4ec
AH
425 * map->dso->adjust_symbols==1 for ET_EXEC-like cases except ET_REL which is
426 * relative to section start.
1d5077bd
AH
427 *
428 * Return: Address suitable for passing to "objdump --start-address="
7a2b6209
KS
429 */
430u64 map__rip_2objdump(struct map *map, u64 rip)
431{
0131c4ec
AH
432 if (!map->dso->adjust_symbols)
433 return rip;
434
435 if (map->dso->rel)
436 return rip - map->pgoff;
437
a58f7033
WN
438 /*
439 * kernel modules also have DSO_TYPE_USER in dso->kernel,
440 * but all kernel modules are ET_REL, so won't get here.
441 */
442 if (map->dso->kernel == DSO_TYPE_USER)
443 return rip + map->dso->text_offset;
444
9176753d 445 return map->unmap_ip(map, rip) - map->reloc;
7a2b6209 446}
ee11b90b 447
1d5077bd
AH
448/**
449 * map__objdump_2mem - convert objdump address to a memory address.
450 * @map: memory map
451 * @ip: objdump address
452 *
453 * Closely related to map__rip_2objdump(), this function takes an address from
454 * objdump and converts it to a memory address. Note this assumes that @map
455 * contains the address. To be sure the result is valid, check it forwards
456 * e.g. map__rip_2objdump(map->map_ip(map, map__objdump_2mem(map, ip))) == ip
457 *
458 * Return: Memory address.
459 */
460u64 map__objdump_2mem(struct map *map, u64 ip)
461{
462 if (!map->dso->adjust_symbols)
463 return map->unmap_ip(map, ip);
464
465 if (map->dso->rel)
466 return map->unmap_ip(map, ip + map->pgoff);
467
a58f7033
WN
468 /*
469 * kernel modules also have DSO_TYPE_USER in dso->kernel,
470 * but all kernel modules are ET_REL, so won't get here.
471 */
472 if (map->dso->kernel == DSO_TYPE_USER)
473 return map->unmap_ip(map, ip - map->dso->text_offset);
474
9176753d 475 return ip + map->reloc;
1d5077bd
AH
476}
477
1eee78ae
ACM
478static void maps__init(struct maps *maps)
479{
480 maps->entries = RB_ROOT;
6a2ffcdd 481 pthread_rwlock_init(&maps->lock, NULL);
1eee78ae
ACM
482}
483
11246c70 484void map_groups__init(struct map_groups *mg, struct machine *machine)
c6e718ff
ACM
485{
486 int i;
487 for (i = 0; i < MAP__NR_TYPES; ++i) {
1eee78ae 488 maps__init(&mg->maps[i]);
c6e718ff 489 }
11246c70 490 mg->machine = machine;
848cbd25 491 atomic_set(&mg->refcnt, 1);
c6e718ff
ACM
492}
493
6a2ffcdd 494static void __maps__purge(struct maps *maps)
591765fd 495{
1eee78ae
ACM
496 struct rb_root *root = &maps->entries;
497 struct rb_node *next = rb_first(root);
591765fd
ACM
498
499 while (next) {
500 struct map *pos = rb_entry(next, struct map, rb_node);
501
502 next = rb_next(&pos->rb_node);
facf3f06 503 rb_erase_init(&pos->rb_node, root);
84c2cafa 504 map__put(pos);
591765fd
ACM
505 }
506}
507
1eee78ae
ACM
508static void maps__exit(struct maps *maps)
509{
6a2ffcdd
ACM
510 pthread_rwlock_wrlock(&maps->lock);
511 __maps__purge(maps);
6a2ffcdd 512 pthread_rwlock_unlock(&maps->lock);
1eee78ae
ACM
513}
514
98dfd55d 515void map_groups__exit(struct map_groups *mg)
591765fd
ACM
516{
517 int i;
518
1eee78ae
ACM
519 for (i = 0; i < MAP__NR_TYPES; ++i)
520 maps__exit(&mg->maps[i]);
591765fd
ACM
521}
522
29ce3612
AH
523bool map_groups__empty(struct map_groups *mg)
524{
525 int i;
526
527 for (i = 0; i < MAP__NR_TYPES; ++i) {
528 if (maps__first(&mg->maps[i]))
529 return false;
29ce3612
AH
530 }
531
532 return true;
533}
534
11246c70 535struct map_groups *map_groups__new(struct machine *machine)
93d5731d
ACM
536{
537 struct map_groups *mg = malloc(sizeof(*mg));
538
539 if (mg != NULL)
11246c70 540 map_groups__init(mg, machine);
93d5731d
ACM
541
542 return mg;
543}
544
545void map_groups__delete(struct map_groups *mg)
546{
547 map_groups__exit(mg);
548 free(mg);
549}
550
a26ca671
ACM
551void map_groups__put(struct map_groups *mg)
552{
848cbd25 553 if (mg && atomic_dec_and_test(&mg->refcnt))
a26ca671
ACM
554 map_groups__delete(mg);
555}
556
98dfd55d 557struct symbol *map_groups__find_symbol(struct map_groups *mg,
4b8cf846 558 enum map_type type, u64 addr,
7e5e1b14 559 struct map **mapp,
4b8cf846
ACM
560 symbol_filter_t filter)
561{
98dfd55d 562 struct map *map = map_groups__find(mg, type, addr);
4b8cf846 563
4afc81cd
MH
564 /* Ensure map is loaded before using map->map_ip */
565 if (map != NULL && map__load(map, filter) >= 0) {
7e5e1b14
ACM
566 if (mapp != NULL)
567 *mapp = map;
4b8cf846 568 return map__find_symbol(map, map->map_ip(map, addr), filter);
7e5e1b14
ACM
569 }
570
571 return NULL;
572}
573
b7f9ff56
ACM
574struct symbol *maps__find_symbol_by_name(struct maps *maps, const char *name,
575 struct map **mapp, symbol_filter_t filter)
7e5e1b14 576{
6a2ffcdd 577 struct symbol *sym;
7e5e1b14
ACM
578 struct rb_node *nd;
579
6a2ffcdd
ACM
580 pthread_rwlock_rdlock(&maps->lock);
581
582 for (nd = rb_first(&maps->entries); nd; nd = rb_next(nd)) {
7e5e1b14 583 struct map *pos = rb_entry(nd, struct map, rb_node);
6a2ffcdd
ACM
584
585 sym = map__find_symbol_by_name(pos, name, filter);
7e5e1b14
ACM
586
587 if (sym == NULL)
588 continue;
589 if (mapp != NULL)
590 *mapp = pos;
6a2ffcdd 591 goto out;
7e5e1b14 592 }
4b8cf846 593
6a2ffcdd
ACM
594 sym = NULL;
595out:
596 pthread_rwlock_unlock(&maps->lock);
597 return sym;
4b8cf846
ACM
598}
599
b7f9ff56
ACM
600struct symbol *map_groups__find_symbol_by_name(struct map_groups *mg,
601 enum map_type type,
602 const char *name,
603 struct map **mapp,
604 symbol_filter_t filter)
605{
606 struct symbol *sym = maps__find_symbol_by_name(&mg->maps[type], name, mapp, filter);
607
608 return sym;
609}
610
4e987712
ACM
611int map_groups__find_ams(struct addr_map_symbol *ams, symbol_filter_t filter)
612{
77faf4d0 613 if (ams->addr < ams->map->start || ams->addr >= ams->map->end) {
4e987712
ACM
614 if (ams->map->groups == NULL)
615 return -1;
616 ams->map = map_groups__find(ams->map->groups, ams->map->type,
617 ams->addr);
618 if (ams->map == NULL)
619 return -1;
620 }
621
622 ams->al_addr = ams->map->map_ip(ams->map, ams->addr);
623 ams->sym = map__find_symbol(ams->map, ams->al_addr, filter);
624
625 return ams->sym ? 0 : -1;
626}
627
6a2ffcdd 628static size_t maps__fprintf(struct maps *maps, FILE *fp)
c6e718ff 629{
6a2ffcdd 630 size_t printed = 0;
c6e718ff
ACM
631 struct rb_node *nd;
632
6a2ffcdd
ACM
633 pthread_rwlock_rdlock(&maps->lock);
634
635 for (nd = rb_first(&maps->entries); nd; nd = rb_next(nd)) {
c6e718ff
ACM
636 struct map *pos = rb_entry(nd, struct map, rb_node);
637 printed += fprintf(fp, "Map:");
638 printed += map__fprintf(pos, fp);
639 if (verbose > 2) {
6a2ffcdd 640 printed += dso__fprintf(pos->dso, pos->type, fp);
c6e718ff
ACM
641 printed += fprintf(fp, "--\n");
642 }
643 }
644
6a2ffcdd
ACM
645 pthread_rwlock_unlock(&maps->lock);
646
c6e718ff
ACM
647 return printed;
648}
649
6a2ffcdd
ACM
650size_t __map_groups__fprintf_maps(struct map_groups *mg, enum map_type type,
651 FILE *fp)
652{
653 size_t printed = fprintf(fp, "%s:\n", map_type__name[type]);
654 return printed += maps__fprintf(&mg->maps[type], fp);
655}
656
5c24b67a 657size_t map_groups__fprintf(struct map_groups *mg, FILE *fp)
c6e718ff
ACM
658{
659 size_t printed = 0, i;
660 for (i = 0; i < MAP__NR_TYPES; ++i)
acebd408 661 printed += __map_groups__fprintf_maps(mg, i, fp);
c6e718ff
ACM
662 return printed;
663}
664
cb8382e0
JO
665static void __map_groups__insert(struct map_groups *mg, struct map *map)
666{
667 __maps__insert(&mg->maps[map->type], map);
668 map->groups = mg;
669}
670
6a2ffcdd 671static int maps__fixup_overlappings(struct maps *maps, struct map *map, FILE *fp)
c6e718ff 672{
6a2ffcdd
ACM
673 struct rb_root *root;
674 struct rb_node *next;
0a1eae39 675 int err = 0;
c6e718ff 676
6a2ffcdd
ACM
677 pthread_rwlock_wrlock(&maps->lock);
678
679 root = &maps->entries;
680 next = rb_first(root);
681
c6e718ff
ACM
682 while (next) {
683 struct map *pos = rb_entry(next, struct map, rb_node);
684 next = rb_next(&pos->rb_node);
685
686 if (!map__overlap(pos, map))
687 continue;
688
689 if (verbose >= 2) {
690 fputs("overlapping maps:\n", fp);
691 map__fprintf(map, fp);
692 map__fprintf(pos, fp);
693 }
694
facf3f06 695 rb_erase_init(&pos->rb_node, root);
c6e718ff
ACM
696 /*
697 * Now check if we need to create new maps for areas not
698 * overlapped by the new map:
699 */
700 if (map->start > pos->start) {
701 struct map *before = map__clone(pos);
702
0a1eae39
ACM
703 if (before == NULL) {
704 err = -ENOMEM;
84c2cafa 705 goto put_map;
0a1eae39 706 }
c6e718ff 707
77faf4d0 708 before->end = map->start;
cb8382e0 709 __map_groups__insert(pos->groups, before);
c6e718ff
ACM
710 if (verbose >= 2)
711 map__fprintf(before, fp);
d91130e9 712 map__put(before);
c6e718ff
ACM
713 }
714
715 if (map->end < pos->end) {
716 struct map *after = map__clone(pos);
717
0a1eae39
ACM
718 if (after == NULL) {
719 err = -ENOMEM;
84c2cafa 720 goto put_map;
0a1eae39 721 }
c6e718ff 722
77faf4d0 723 after->start = map->end;
cb8382e0 724 __map_groups__insert(pos->groups, after);
c6e718ff
ACM
725 if (verbose >= 2)
726 map__fprintf(after, fp);
d91130e9 727 map__put(after);
c6e718ff 728 }
84c2cafa 729put_map:
5c24b67a 730 map__put(pos);
0a1eae39
ACM
731
732 if (err)
6a2ffcdd 733 goto out;
c6e718ff
ACM
734 }
735
6a2ffcdd
ACM
736 err = 0;
737out:
738 pthread_rwlock_unlock(&maps->lock);
739 return err;
740}
741
742int map_groups__fixup_overlappings(struct map_groups *mg, struct map *map,
743 FILE *fp)
744{
745 return maps__fixup_overlappings(&mg->maps[map->type], map, fp);
c6e718ff
ACM
746}
747
748/*
749 * XXX This should not really _copy_ te maps, but refcount them.
750 */
6c502584 751int map_groups__clone(struct thread *thread,
c6e718ff
ACM
752 struct map_groups *parent, enum map_type type)
753{
6c502584 754 struct map_groups *mg = thread->mg;
6a2ffcdd 755 int err = -ENOMEM;
4bb7123d 756 struct map *map;
1eee78ae 757 struct maps *maps = &parent->maps[type];
4bb7123d 758
6a2ffcdd
ACM
759 pthread_rwlock_rdlock(&maps->lock);
760
4bb7123d 761 for (map = maps__first(maps); map; map = map__next(map)) {
c6e718ff
ACM
762 struct map *new = map__clone(map);
763 if (new == NULL)
6a2ffcdd 764 goto out_unlock;
6c502584
JO
765
766 err = unwind__prepare_access(thread, new, NULL);
767 if (err)
768 goto out_unlock;
769
98dfd55d 770 map_groups__insert(mg, new);
bae32b50 771 map__put(new);
c6e718ff 772 }
6a2ffcdd
ACM
773
774 err = 0;
775out_unlock:
776 pthread_rwlock_unlock(&maps->lock);
777 return err;
c6e718ff
ACM
778}
779
6a2ffcdd 780static void __maps__insert(struct maps *maps, struct map *map)
4b8cf846 781{
1eee78ae 782 struct rb_node **p = &maps->entries.rb_node;
4b8cf846
ACM
783 struct rb_node *parent = NULL;
784 const u64 ip = map->start;
785 struct map *m;
786
787 while (*p != NULL) {
788 parent = *p;
789 m = rb_entry(parent, struct map, rb_node);
790 if (ip < m->start)
791 p = &(*p)->rb_left;
792 else
793 p = &(*p)->rb_right;
794 }
795
796 rb_link_node(&map->rb_node, parent, p);
1eee78ae 797 rb_insert_color(&map->rb_node, &maps->entries);
84c2cafa 798 map__get(map);
4b8cf846
ACM
799}
800
6a2ffcdd
ACM
801void maps__insert(struct maps *maps, struct map *map)
802{
803 pthread_rwlock_wrlock(&maps->lock);
804 __maps__insert(maps, map);
805 pthread_rwlock_unlock(&maps->lock);
806}
807
808static void __maps__remove(struct maps *maps, struct map *map)
076c6e45 809{
facf3f06 810 rb_erase_init(&map->rb_node, &maps->entries);
84c2cafa 811 map__put(map);
076c6e45
ACM
812}
813
6a2ffcdd
ACM
814void maps__remove(struct maps *maps, struct map *map)
815{
816 pthread_rwlock_wrlock(&maps->lock);
817 __maps__remove(maps, map);
818 pthread_rwlock_unlock(&maps->lock);
819}
820
1eee78ae 821struct map *maps__find(struct maps *maps, u64 ip)
4b8cf846 822{
6a2ffcdd 823 struct rb_node **p, *parent = NULL;
4b8cf846
ACM
824 struct map *m;
825
6a2ffcdd
ACM
826 pthread_rwlock_rdlock(&maps->lock);
827
828 p = &maps->entries.rb_node;
4b8cf846
ACM
829 while (*p != NULL) {
830 parent = *p;
831 m = rb_entry(parent, struct map, rb_node);
832 if (ip < m->start)
833 p = &(*p)->rb_left;
4955ea22 834 else if (ip >= m->end)
4b8cf846
ACM
835 p = &(*p)->rb_right;
836 else
6a2ffcdd 837 goto out;
4b8cf846
ACM
838 }
839
6a2ffcdd
ACM
840 m = NULL;
841out:
842 pthread_rwlock_unlock(&maps->lock);
843 return m;
4b8cf846 844}
8e0cf965 845
1eee78ae 846struct map *maps__first(struct maps *maps)
8e0cf965 847{
1eee78ae 848 struct rb_node *first = rb_first(&maps->entries);
8e0cf965
AH
849
850 if (first)
851 return rb_entry(first, struct map, rb_node);
852 return NULL;
853}
854
4d4dee9a 855struct map *map__next(struct map *map)
8e0cf965
AH
856{
857 struct rb_node *next = rb_next(&map->rb_node);
858
859 if (next)
860 return rb_entry(next, struct map, rb_node);
861 return NULL;
862}
ba92732e
WN
863
864struct kmap *map__kmap(struct map *map)
865{
866 if (!map->dso || !map->dso->kernel) {
867 pr_err("Internal error: map__kmap with a non-kernel map\n");
868 return NULL;
869 }
870 return (struct kmap *)(map + 1);
871}
872
873struct map_groups *map__kmaps(struct map *map)
874{
875 struct kmap *kmap = map__kmap(map);
876
877 if (!kmap || !kmap->kmaps) {
878 pr_err("Internal error: map__kmaps with a non-kernel map\n");
879 return NULL;
880 }
881 return kmap->kmaps;
882}
This page took 0.337981 seconds and 5 git commands to generate.