forked from cseagle/blc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ida_scope.cc
277 lines (255 loc) · 10.1 KB
/
ida_scope.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
Source for blc IdaPro plugin
Copyright (c) 2019 Chris Eagle
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "ida_scope.hh"
#include "type.hh"
//#define DEBUG_SCOPE 1
#ifdef DEBUG_SCOPE
#define dmsg(x, ...) msg(x, __VA_ARGS__)
#else
#define dmsg(x, ...)
#endif
/// \param g is the Architecture and ida interface
ida_scope::ida_scope(ida_arch *g) : ScopeInternal("", g), ida(g) {}
ida_scope::~ida_scope(void) {
}
//Determine if a symbol is associated with the given address
Symbol *ida_scope::ida_query(const Address &addr) const {
Symbol *sym = NULL;
uint64_t ea = addr.getOffset();
string symname;
//It will be the case that scope == this, but scope will not be const
ida_scope *scope = dynamic_cast<ida_scope*>(glb->symboltab->getGlobalScope());
/*
if (scope == NULL) {
dmsg("dynamic_cast<ida_scope*> from global failed\n");
return NULL;
}
else if (scope == this) {
dmsg("ida_scope::ida_query - I am the scope\n");
}
else {
dmsg("ida_scope::ida_query - I am NOT the scope\n");
}
*/
dmsg("ida_scope::ida_query - 0x%zx\n", addr.getOffset());
AddrSpace *aspace = addr.getSpace();
if (aspace == ida->getDefaultSpace()) {
if (is_function_start(ea)) {
get_func_name(symname, ea);
/*
uint64_t got;
if (is_external_ref(ea, &got)) {
Address refaddr(addr.getSpace(), got);
dmsg("ida_scope::ida_query - %s is an external ref, with got entry at 0x%zx\n", symname.c_str(), got);
sym = scope->addExternalRef(addr, refaddr, symname);
}
else {
*/
dmsg("ida_scope::ida_query - creating FunctionSymbol for 0x%zx(%s)\n", ea, symname.c_str());
sym = new FunctionSymbol(scope, symname, glb->min_funcsymbol_size);
}
else if (is_code_label(ea, symname)) {
dmsg("ida_scope::ida_query - creating LabSymbol for 0x%zx(%s)\n", ea, symname.c_str());
sym = new LabSymbol(scope, symname);
}
else if (is_named_addr(ea, symname)) {
dmsg("ida_scope::ida_query - default space query - %s\n", symname.c_str());
if (is_extern(symname)) {
dmsg("ida_scope::ida_query - %s is external\n", symname.c_str());
}
else {
uint64_t tgt;
if (is_pointer_var(ea, aspace->getAddrSize(), &tgt)) {
dmsg("ida_scope::ida_query - %s looks like a pointer to 0x%zx\n", symname.c_str(), tgt);
dmsg("ida_scope::ida_query - 0x%zx may be read only: %d\n", ea, is_read_only(ea));
Datatype *pt = glb->types->getBase(1, TYPE_UNKNOWN);
Datatype *dt = glb->types->getTypePointer(aspace->getAddrSize(), pt, 1);
// Datatype *dt = glb->types->getBase(aspace->getAddrSize(), TYPE_PTR);
sym = new Symbol(scope, symname, dt);
}
else {
dmsg("ida_scope::ida_query - %s using type unknown\n", symname.c_str());
Datatype *dt = glb->types->getBase(get_item_size(ea), TYPE_UNKNOWN);
sym = new Symbol(scope, symname, dt);
}
}
}
else {
dmsg("ida_scope::ida_query - default space query\n");
}
if (sym) {
dmsg("ida_scope::ida_query - new symbol flags: 0x%x\n", sym->getFlags());
scope->addSymbolInternal(sym);
scope->addMapPoint(sym, addr, Address());
}
}
else if (aspace && aspace->getName() == "register") {
dmsg("ida_scope::ida_query - query is in register space\n");
}
else if (aspace) {
dmsg("ida_scope::ida_query - query is in %s space\n", aspace->getName().c_str());
}
return sym;
}
SymbolEntry *ida_scope::findAddr(const Address &addr,
const Address &usepoint) const {
SymbolEntry *entry;
dmsg("ida_scope::findAddr - 0x%zx\n", addr.getOffset());
entry = ScopeInternal::findAddr(addr, usepoint);
if (entry == NULL) { // Didn't find symbol
entry = findContainer(addr, 1, Address());
if (entry != NULL) {
return NULL; // Address is already queried, but symbol doesn't start at our address
}
Symbol *sym = ida_query(addr); // Query server
if (sym != NULL) {
entry = sym->getMapEntry(addr);
}
// entry may be null for certain queries, ghidra may return symbol of size <8 with
// address equal to START of function, even though the query was for an address INTERNAL to the function
}
if ((entry != NULL) && (entry->getAddr() == addr)) {
return entry;
}
return NULL;
}
SymbolEntry *ida_scope::findContainer(const Address &addr, int4 size,
const Address &usepoint) const {
SymbolEntry *entry;
dmsg("ida_scope::findContainer(addr:0x%zx, size:%d, usepoint:0x%zx)\n", addr.getOffset(), size, usepoint.getOffset());
//Observed AddrSpace names have been: 'ram', 'register', 'join', 'unique', ''
AddrSpace *asp = addr.getSpace();
AddrSpace *usp = usepoint.getSpace();
// dmsg(" addr space ('%s'), usepoint space ('%s')\n", asp ? asp->getName().c_str() : "", usp ? usp->getName().c_str() : "");
entry = ScopeInternal::findClosestFit(addr, size, usepoint);
if (entry == NULL) {
// dmsg("ida_scope::findContainer returned NULL, call ida_query\n");
Symbol *sym = ida_query(addr);
if (sym != NULL) {
entry = sym->getMapEntry(addr);
}
// entry may be null for certain queries, ghidra may return symbol of size <8 with
// address equal to START of function, even though the query was for an address INTERNAL to the function
}
if (entry != NULL) {
// Entry contains addr, does it contain addr+size
uintb last = entry->getAddr().getOffset() + entry->getSize() -1;
if (last >= addr.getOffset() + size - 1) {
return entry;
}
}
return NULL;
}
ExternRefSymbol *ida_scope::findExternalRef(const Address &addr) const {
ExternRefSymbol *sym;
dmsg("ida_scope::findExternalRef - 0x%zx\n", addr.getOffset());
sym = ScopeInternal::findExternalRef(addr);
if (sym == NULL) {
// Check if this address has already been queried,
// (returning a symbol other than an external ref symbol)
SymbolEntry *entry;
entry = findContainer(addr, 1, Address());
if (entry == NULL) {
sym = dynamic_cast<ExternRefSymbol *>(ida_query(addr));
}
}
return sym;
}
Funcdata *ida_scope::findFunction(const Address &addr) const {
dmsg("ida_scope::findFunction - 0x%zx\n", addr.getOffset());
Funcdata *fd = ScopeInternal::findFunction(addr);
if (fd == NULL) {
FunctionSymbol *sym;
sym = dynamic_cast<FunctionSymbol *>(ida_query(addr));
if (sym != NULL) {
fd = sym->getFunction();
}
}
return fd;
}
LabSymbol *ida_scope::findCodeLabel(const Address &addr) const {
SymbolEntry *overlap = queryContainer(addr, 1, addr);
if (overlap) {
Symbol *sym = overlap->getSymbol();
LabSymbol *lsym = dynamic_cast<LabSymbol*>(sym);
if (lsym) {
return lsym;
}
}
LabSymbol *sym;
dmsg("ida_scope::findCodeLabel - 0x%zx\n", addr.getOffset());
sym = ScopeInternal::findCodeLabel(addr);
if (sym == NULL) {
// Check if this address has already been queried,
// (returning a symbol other than a code label)
SymbolEntry *entry;
entry = findAddr(addr, Address());
if (entry == NULL) {
string symname;
get_name(symname, addr.getOffset(), 0);
if (!symname.empty()) {
sym = glb->symboltab->getGlobalScope()->addCodeLabel(addr, symname);
}
}
}
return sym;
}
Funcdata *ida_scope::resolveExternalRefFunction(ExternRefSymbol *sym) const {
Funcdata *fd = NULL;
const Scope *basescope = ida->symboltab->mapScope(this, sym->getRefAddr(), Address());
// Truncate search at this scope, we don't want
// the usual remote_query if the function isn't in cache
// this won't recover external functions, but will just
// return the externalref symbol again
stackFunction(basescope, this, sym->getRefAddr(), &fd);
dmsg("ida_scope::resolveExternalRefFunction - %d\n", fd == NULL);
if (fd == NULL) {
fd = findFunction(sym->getRefAddr());
}
return fd;
}
SymbolEntry *ida_scope::addSymbol(const string &name, Datatype *ct,
const Address &addr, const Address &usepoint) {
// We do not inform Ghidra of the new symbol, we just
// stick it in the cache. This allows the mapglobals action
// to build global variables that Ghidra knows nothing about
dmsg("ida_scope::addSymbol - %s\n", name.c_str());
return ScopeInternal::addSymbol(name, ct, addr, usepoint);
}
string ida_scope::buildVariableName(const Address &addr,
const Address &pc,
Datatype *ct, int4 &index, uint4 flags) const {
string name;
uint64_t ea = addr.getOffset();
if (!is_named_addr(ea, name)) {
if (set_name(ea, "unk_", SN_AUTO | SN_NOWARN)) {
get_name(name, ea, 0);
}
else {
name = ScopeInternal::buildVariableName(addr, pc, ct, index, flags);
}
}
dmsg("ida_scope::buildVariableName - 0x%zx -> %s\n", ea, name.c_str());
return name;
}
string ida_scope::buildUndefinedName(void) const {
dmsg("ida_scope::buildUndefinedName\n");
return ScopeInternal::buildUndefinedName();
}
void ida_scope::findByName(const string &name, vector<Symbol *> &res) const {
dmsg("ida_scope::findByName - %s\n", name.c_str());
return ScopeInternal::findByName(name, res);
}