map.c 3.2 KB
Newer Older
1 2
#include "../libslang.h"
#include <elf.h>
3
#include <inttypes.h>
4 5 6
#include <sys/ttydefaults.h>
#include <string.h>
#include <linux/bitops.h>
7 8 9
#include "../../util/util.h"
#include "../../util/debug.h"
#include "../../util/symbol.h"
10 11
#include "../browser.h"
#include "../helpline.h"
12
#include "../keysyms.h"
13 14 15 16 17 18 19 20
#include "map.h"

struct map_browser {
	struct ui_browser b;
	struct map	  *map;
	u8		  addrlen;
};

21
static void map_browser__write(struct ui_browser *browser, void *nd, int row)
22 23
{
	struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
24 25
	struct map_browser *mb = container_of(browser, struct map_browser, b);
	bool current_entry = ui_browser__is_current_entry(browser, row);
26
	int width;
27

28
	ui_browser__set_percent_color(browser, 0, current_entry);
29
	slsmg_printf("%*" PRIx64 " %*" PRIx64 " %c ",
30 31 32
		     mb->addrlen, sym->start, mb->addrlen, sym->end,
		     sym->binding == STB_GLOBAL ? 'g' :
		     sym->binding == STB_LOCAL  ? 'l' : 'w');
33
	width = browser->width - ((mb->addrlen * 2) + 4);
34 35
	if (width > 0)
		slsmg_write_nstring(sym->name, width);
36 37 38
}

/* FIXME uber-kludgy, see comment on cmd_report... */
39
static u32 *symbol__browser_index(struct symbol *browser)
40
{
41
	return ((void *)browser) - sizeof(struct rb_node) - sizeof(u32);
42 43
}

44
static int map_browser__search(struct map_browser *browser)
45 46 47
{
	char target[512];
	struct symbol *sym;
48 49 50 51 52
	int err = ui_browser__input_window("Search by name/addr",
					   "Prefix with 0x to search by address",
					   target, "ENTER: OK, ESC: Cancel", 0);
	if (err != K_ENTER)
		return -1;
53 54 55

	if (target[0] == '0' && tolower(target[1]) == 'x') {
		u64 addr = strtoull(target, NULL, 16);
56
		sym = map__find_symbol(browser->map, addr, NULL);
57
	} else
58
		sym = map__find_symbol_by_name(browser->map, target, NULL);
59 60 61 62

	if (sym != NULL) {
		u32 *idx = symbol__browser_index(sym);

63 64
		browser->b.top = &sym->rb_node;
		browser->b.index = browser->b.top_idx = *idx;
65 66 67 68 69 70
	} else
		ui_helpline__fpush("%s not found!", target);

	return 0;
}

71
static int map_browser__run(struct map_browser *browser)
72
{
73 74
	int key;

75
	if (ui_browser__show(&browser->b, browser->map->dso->long_name,
76 77
			     "Press <- or ESC to exit, %s / to search",
			     verbose ? "" : "restart with -v to use") < 0)
78 79 80
		return -1;

	while (1) {
81
		key = ui_browser__run(&browser->b, 0);
82

83 84 85
		switch (key) {
		case '/':
			if (verbose)
86
				map_browser__search(browser);
87
		default:
88
			break;
89 90 91 92 93 94
                case K_LEFT:
                case K_ESC:
                case 'q':
                case CTRL('c'):
                        goto out;
		}
95
	}
96
out:
97
	ui_browser__hide(&browser->b);
98
	return key;
99 100
}

101
int map__browse(struct map *map)
102 103 104
{
	struct map_browser mb = {
		.b = {
105
			.entries = &map->dso->symbols[map->type],
106 107 108 109
			.refresh = ui_browser__rb_tree_refresh,
			.seek	 = ui_browser__rb_tree_seek,
			.write	 = map_browser__write,
		},
110
		.map = map,
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
	};
	struct rb_node *nd;
	char tmp[BITS_PER_LONG / 4];
	u64 maxaddr = 0;

	for (nd = rb_first(mb.b.entries); nd; nd = rb_next(nd)) {
		struct symbol *pos = rb_entry(nd, struct symbol, rb_node);

		if (maxaddr < pos->end)
			maxaddr = pos->end;
		if (verbose) {
			u32 *idx = symbol__browser_index(pos);
			*idx = mb.b.nr_entries;
		}
		++mb.b.nr_entries;
	}

128
	mb.addrlen = snprintf(tmp, sizeof(tmp), "%" PRIx64, maxaddr);
129
	return map_browser__run(&mb);
130
}