blob: 1bf09796cb31166b4e87d4fc3410986eb64c2bac [file] [log] [blame]
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -03001#include "../libslang.h"
2#include <elf.h>
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -03003#include <sys/ttydefaults.h>
4#include <ctype.h>
5#include <string.h>
6#include <linux/bitops.h>
7#include "../../debug.h"
8#include "../../symbol.h"
9#include "../browser.h"
10#include "../helpline.h"
11#include "map.h"
12
13static int ui_entry__read(const char *title, char *bf, size_t size, int width)
14{
15 struct newtExitStruct es;
16 newtComponent form, entry;
17 const char *result;
18 int err = -1;
19
20 newtCenteredWindow(width, 1, title);
21 form = newtForm(NULL, NULL, 0);
22 if (form == NULL)
23 return -1;
24
25 entry = newtEntry(0, 0, "0x", width, &result, NEWT_FLAG_SCROLL);
26 if (entry == NULL)
27 goto out_free_form;
28
29 newtFormAddComponent(form, entry);
30 newtFormAddHotKey(form, NEWT_KEY_ENTER);
31 newtFormAddHotKey(form, NEWT_KEY_ESCAPE);
32 newtFormAddHotKey(form, NEWT_KEY_LEFT);
33 newtFormAddHotKey(form, CTRL('c'));
34 newtFormRun(form, &es);
35
36 if (result != NULL) {
37 strncpy(bf, result, size);
38 err = 0;
39 }
40out_free_form:
41 newtPopWindow();
42 newtFormDestroy(form);
43 return 0;
44}
45
46struct map_browser {
47 struct ui_browser b;
48 struct map *map;
49 u16 namelen;
50 u8 addrlen;
51};
52
53static void map_browser__write(struct ui_browser *self, void *nd, int row)
54{
55 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
56 struct map_browser *mb = container_of(self, struct map_browser, b);
57 bool current_entry = ui_browser__is_current_entry(self, row);
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -030058
Arnaldo Carvalho de Melo8f9bbc42010-08-11 14:51:47 -030059 ui_browser__set_percent_color(self, 0, current_entry);
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -030060 slsmg_printf("%*llx %*llx %c ",
61 mb->addrlen, sym->start, mb->addrlen, sym->end,
62 sym->binding == STB_GLOBAL ? 'g' :
63 sym->binding == STB_LOCAL ? 'l' : 'w');
64 slsmg_write_nstring(sym->name, mb->namelen);
65}
66
67/* FIXME uber-kludgy, see comment on cmd_report... */
68static u32 *symbol__browser_index(struct symbol *self)
69{
70 return ((void *)self) - sizeof(struct rb_node) - sizeof(u32);
71}
72
73static int map_browser__search(struct map_browser *self)
74{
75 char target[512];
76 struct symbol *sym;
77 int err = ui_entry__read("Search by name/addr", target, sizeof(target), 40);
78
79 if (err)
80 return err;
81
82 if (target[0] == '0' && tolower(target[1]) == 'x') {
83 u64 addr = strtoull(target, NULL, 16);
84 sym = map__find_symbol(self->map, addr, NULL);
85 } else
86 sym = map__find_symbol_by_name(self->map, target, NULL);
87
88 if (sym != NULL) {
89 u32 *idx = symbol__browser_index(sym);
90
91 self->b.top = &sym->rb_node;
92 self->b.index = self->b.top_idx = *idx;
93 } else
94 ui_helpline__fpush("%s not found!", target);
95
96 return 0;
97}
98
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -030099static int map_browser__run(struct map_browser *self)
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -0300100{
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300101 int key;
102
Arnaldo Carvalho de Melo59e8fe32010-08-10 15:44:20 -0300103 if (ui_browser__show(&self->b, self->map->dso->long_name,
104 "Press <- or ESC to exit, %s / to search",
105 verbose ? "" : "restart with -v to use") < 0)
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -0300106 return -1;
107
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -0300108 if (verbose)
Arnaldo Carvalho de Melo4c1c9522010-08-12 12:37:51 -0300109 ui_browser__add_exit_key(&self->b, '/');
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -0300110
111 while (1) {
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300112 key = ui_browser__run(&self->b);
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -0300113
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300114 if (verbose && key == '/')
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -0300115 map_browser__search(self);
116 else
117 break;
118 }
119
Arnaldo Carvalho de Melo59e8fe32010-08-10 15:44:20 -0300120 ui_browser__hide(&self->b);
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300121 return key;
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -0300122}
123
124int map__browse(struct map *self)
125{
126 struct map_browser mb = {
127 .b = {
128 .entries = &self->dso->symbols[self->type],
129 .refresh = ui_browser__rb_tree_refresh,
130 .seek = ui_browser__rb_tree_seek,
131 .write = map_browser__write,
132 },
133 .map = self,
134 };
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -0300135 struct rb_node *nd;
136 char tmp[BITS_PER_LONG / 4];
137 u64 maxaddr = 0;
138
139 for (nd = rb_first(mb.b.entries); nd; nd = rb_next(nd)) {
140 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
141
142 if (mb.namelen < pos->namelen)
143 mb.namelen = pos->namelen;
144 if (maxaddr < pos->end)
145 maxaddr = pos->end;
146 if (verbose) {
147 u32 *idx = symbol__browser_index(pos);
148 *idx = mb.b.nr_entries;
149 }
150 ++mb.b.nr_entries;
151 }
152
153 mb.addrlen = snprintf(tmp, sizeof(tmp), "%llx", maxaddr);
154 mb.b.width += mb.addrlen * 2 + 4 + mb.namelen;
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300155 return map_browser__run(&mb);
Arnaldo Carvalho de Melob1b02672010-08-10 15:37:34 -0300156}