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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
# Copyright (c) 2015-2016 Vector 35 LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
import ctypes
# Binary Ninja components
import _binaryninjacore as core
from enums import SymbolType, TypeClass
import callingconvention
import demangle
class Symbol(object):
"""
Symbols are defined as one of the following types:
=========================== ==============================================================
SymbolType Description
=========================== ==============================================================
FunctionSymbol Symbol for Function that exists in the current binary
ImportAddressSymbol Symbol defined in the Import Address Table
ImportedFunctionSymbol Symbol for Function that is not defined in the current binary
DataSymbol Symbol for Data in the current binary
ImportedDataSymbol Symbol for Data that is not defined in the current binary
=========================== ==============================================================
"""
def __init__(self, sym_type, addr, short_name, full_name = None, raw_name = None, handle = None):
if handle is not None:
self.handle = core.handle_of_type(handle, core.BNSymbol)
else:
if isinstance(sym_type, str):
sym_type = SymbolType[sym_type]
if full_name is None:
full_name = short_name
if raw_name is None:
raw_name = full_name
self.handle = core.BNCreateSymbol(sym_type, short_name, full_name, raw_name, addr)
def __del__(self):
core.BNFreeSymbol(self.handle)
@property
def type(self):
"""Symbol type (read-only)"""
return SymbolType(core.BNGetSymbolType(self.handle))
@property
def name(self):
"""Symbol name (read-only)"""
return core.BNGetSymbolRawName(self.handle)
@property
def short_name(self):
"""Symbol short name (read-only)"""
return core.BNGetSymbolShortName(self.handle)
@property
def full_name(self):
"""Symbol full name (read-only)"""
return core.BNGetSymbolFullName(self.handle)
@property
def raw_name(self):
"""Symbol raw name (read-only)"""
return core.BNGetSymbolRawName(self.handle)
@property
def address(self):
"""Symbol address (read-only)"""
return core.BNGetSymbolAddress(self.handle)
@property
def auto(self):
return core.BNIsSymbolAutoDefined(self.handle)
@auto.setter
def auto(self, value):
core.BNSetSymbolAutoDefined(self.handle, value)
def __repr__(self):
return "<%s: \"%s\" @ %#x>" % (self.type, self.full_name, self.address)
def __setattr__(self, name, value):
try:
object.__setattr__(self, name, value)
except AttributeError:
raise AttributeError("attribute '%s' is read only" % name)
class Type(object):
def __init__(self, handle):
self.handle = handle
def __del__(self):
core.BNFreeType(self.handle)
@property
def type_class(self):
"""Type class (read-only)"""
return TypeClass(core.BNGetTypeClass(self.handle))
@property
def width(self):
"""Type width (read-only)"""
return core.BNGetTypeWidth(self.handle)
@property
def alignment(self):
"""Type alignment (read-only)"""
return core.BNGetTypeAlignment(self.handle)
@property
def signed(self):
"""Wether type is signed (read-only)"""
return core.BNIsTypeSigned(self.handle)
@property
def const(self):
"""Whether type is const (read-only)"""
return core.BNIsTypeConst(self.handle)
@property
def modified(self):
"""Whether type is modified (read-only)"""
return core.BNIsTypeFloatingPoint(self.handle)
@property
def target(self):
"""Target (read-only)"""
result = core.BNGetChildType(self.handle)
if result is None:
return None
return Type(result)
@property
def element_type(self):
"""Target (read-only)"""
result = core.BNGetChildType(self.handle)
if result is None:
return None
return Type(result)
@property
def return_value(self):
"""Return value (read-only)"""
result = core.BNGetChildType(self.handle)
if result is None:
return None
return Type(result)
@property
def calling_convention(self):
"""Calling convention (read-only)"""
result = core.BNGetTypeCallingConvention(self.handle)
if result is None:
return None
return callingconvention.CallingConvention(None, result)
@property
def parameters(self):
"""Type parameters list (read-only)"""
count = ctypes.c_ulonglong()
params = core.BNGetTypeParameters(self.handle, count)
result = []
for i in xrange(0, count.value):
result.append((Type(core.BNNewTypeReference(params[i].type)), params[i].name))
core.BNFreeTypeParameterList(params, count.value)
return result
@property
def has_variable_arguments(self):
"""Whether type has variable arguments (read-only)"""
return core.BNTypeHasVariableArguments(self.handle)
@property
def can_return(self):
"""Whether type can return (read-only)"""
return core.BNFunctionTypeCanReturn(self.handle)
@property
def structure(self):
"""Structure of the type (read-only)"""
result = core.BNGetTypeStructure(self.handle)
if result is None:
return None
return Structure(result)
@property
def enumeration(self):
"""Type enumeration (read-only)"""
result = core.BNGetTypeEnumeration(self.handle)
if result is None:
return None
return Enumeration(result)
@property
def count(self):
"""Type count (read-only)"""
return core.BNGetTypeElementCount(self.handle)
def __str__(self):
return core.BNGetTypeString(self.handle)
def __repr__(self):
return "<type: %s>" % str(self)
def get_string_before_name(self):
return core.BNGetTypeStringBeforeName(self.handle)
def get_string_after_name(self):
return core.BNGetTypeStringAfterName(self.handle)
@classmethod
def void(cls):
return Type(core.BNCreateVoidType())
@classmethod
def bool(self):
return Type(core.BNCreateBoolType())
@classmethod
def int(self, width, sign = True, altname=""):
"""
``int`` class method for creating an int Type.
:param int width: width of the integer in bytes
:param bool sign: optional variable representing signedness
"""
return Type(core.BNCreateIntegerType(width, sign, altname))
@classmethod
def float(self, width):
return Type(core.BNCreateFloatType(width))
@classmethod
def structure_type(self, structure_type):
return Type(core.BNCreateStructureType(structure_type.handle))
@classmethod
def unknown_type(self, unknown_type):
return Type(core.BNCreateUnknownType(unknown_type.handle))
@classmethod
def enumeration_type(self, arch, e, width=None):
if width is None:
width = arch.default_int_size
return Type(core.BNCreateEnumerationType(e.handle, width))
@classmethod
def pointer(self, arch, t, const=False):
return Type(core.BNCreatePointerType(arch.handle, t.handle, const))
@classmethod
def array(self, t, count):
return Type(core.BNCreateArrayType(t.handle, count))
@classmethod
def function(self, ret, params, calling_convention=None, variable_arguments=False):
"""
``function`` class method for creating an function Type.
:param Type ret: width of the integer in bytes
:param list(Type) params: list of parameter Types
:param CallingConvention calling_convention: optional argument for function calling convention
:param bool variable_arguments: optional argument for functions that have a variable number of arguments
"""
param_buf = (core.BNNameAndType * len(params))()
for i in xrange(0, len(params)):
if isinstance(params[i], Type):
param_buf[i].name = ""
param_buf[i].type = params[i].handle
else:
param_buf[i].name = params[i][1]
param_buf[i].type = params[i][0]
if calling_convention is not None:
calling_convention = calling_convention.handle
return Type(core.BNCreateFunctionType(ret.handle, calling_convention, param_buf, len(params),
variable_arguments))
def __setattr__(self, name, value):
try:
object.__setattr__(self, name, value)
except AttributeError:
raise AttributeError("attribute '%s' is read only" % name)
class UnknownType(object):
def __init__(self, handle=None):
if handle is None:
self.handle = core.BNCreateUnknownType()
else:
self.handle = handle
def __del__(self):
core.BNFreeUnknownType(self.handle)
@property
def name(self):
count = ctypes.c_ulonglong()
nameList = core.BNGetUnknownTypeName(self.handle, count)
result = []
for i in xrange(count.value):
result.append(nameList[i])
return demangle.get_qualified_name(result)
@name.setter
def name(self, value):
core.BNSetUnknownTypeName(self.handle, value)
class StructureMember(object):
def __init__(self, t, name, offset):
self.type = t
self.name = name
self.offset = offset
def __repr__(self):
if len(self.name) == 0:
return "<member: %s, offset %#x>" % (str(self.type), self.offset)
return "<%s %s%s, offset %#x>" % (self.type.get_string_before_name(), self.name,
self.type.get_string_after_name(), self.offset)
class Structure(object):
def __init__(self, handle=None):
if handle is None:
self.handle = core.BNCreateStructure()
else:
self.handle = handle
def __del__(self):
core.BNFreeStructure(self.handle)
@property
def name(self):
count = ctypes.c_ulonglong()
nameList = core.BNGetStructureName(self.handle, count)
result = []
for i in xrange(count.value):
result.append(nameList[i])
return demangle.get_qualified_name(result)
@name.setter
def name(self, value):
core.BNSetStructureName(self.handle, value)
@property
def members(self):
"""Structure member list (read-only)"""
count = ctypes.c_ulonglong()
members = core.BNGetStructureMembers(self.handle, count)
result = []
for i in xrange(0, count.value):
result.append(StructureMember(Type(core.BNNewTypeReference(members[i].type)),
members[i].name, members[i].offset))
core.BNFreeStructureMemberList(members, count.value)
return result
@property
def width(self):
"""Structure width (read-only)"""
return core.BNGetStructureWidth(self.handle)
@property
def alignment(self):
"""Structure alignment (read-only)"""
return core.BNGetStructureAlignment(self.handle)
@property
def packed(self):
return core.BNIsStructurePacked(self.handle)
@packed.setter
def packed(self, value):
core.BNSetStructurePacked(self.handle, value)
@property
def union(self):
return core.BNIsStructureUnion(self.handle)
@union.setter
def union(self, value):
core.BNSetStructureUnion(self.handle, value)
def __setattr__(self, name, value):
try:
object.__setattr__(self, name, value)
except AttributeError:
raise AttributeError("attribute '%s' is read only" % name)
def __repr__(self):
if len(self.name) > 0:
return "<struct: %s>" % self.name
return "<struct: size %#x>" % self.width
def append(self, t, name = ""):
core.BNAddStructureMember(self.handle, t.handle, name)
def insert(self, offset, t, name = ""):
core.BNAddStructureMemberAtOffset(self.handle, t.handle, name, offset)
def remove(self, i):
core.BNRemoveStructureMember(self.handle, i)
class EnumerationMember(object):
def __init__(self, name, value, default):
self.name = name
self.value = value
self.default = default
def __repr__(self):
return "<%s = %#x>" % (self.name, self.value)
class Enumeration(object):
def __init__(self, handle=None):
if handle is None:
self.handle = core.BNCreateEnumeration()
else:
self.handle = handle
def __del__(self):
core.BNFreeEnumeration(self.handle)
@property
def name(self):
return core.BNGetEnumerationName(self.handle)
@name.setter
def name(self, value):
core.BNSetEnumerationName(self.handle, value)
@property
def members(self):
"""Enumeration member list (read-only)"""
count = ctypes.c_ulonglong()
members = core.BNGetEnumerationMembers(self.handle, count)
result = []
for i in xrange(0, count.value):
result.append(EnumerationMember(members[i].name, members[i].value, members[i].isDefault))
core.BNFreeEnumerationMemberList(members, count.value)
return result
def __setattr__(self, name, value):
try:
object.__setattr__(self, name, value)
except AttributeError:
raise AttributeError("attribute '%s' is read only" % name)
def __repr__(self):
if len(self.name) > 0:
return "<enum: %s>" % self.name
return "<enum: %s>" % repr(self.members)
def append(self, name, value = None):
if value is None:
core.BNAddEnumerationMember(self.handle, name)
else:
core.BNAddEnumerationMemberWithValue(self.handle, name, value)
class TypeParserResult(object):
def __init__(self, types, variables, functions):
self.types = types
self.variables = variables
self.functions = functions
def __repr__(self):
return "{types: %s, variables: %s, functions: %s}" % (self.types, self.variables, self.functions)
def preprocess_source(source, filename=None, include_dirs=[]):
"""
``preprocess_source`` run the C preprocessor on the given source or source filename.
:param str source: source to preprocess
:param str filename: optional filename to preprocess
:param list(str) include_dirs: list of string directorires to use as include directories.
:return: returns a tuple of (preprocessed_source, error_string)
:rtype: tuple(str,str)
:Example:
>>> source = "#define TEN 10\\nint x[TEN];\\n"
>>> preprocess_source(source)
('#line 1 "input"\\n\\n#line 2 "input"\\n int x [ 10 ] ;\\n', '')
>>>
"""
if filename is None:
filename = "input"
dir_buf = (ctypes.c_char_p * len(include_dirs))()
for i in xrange(0, len(include_dirs)):
dir_buf[i] = str(include_dirs[i])
output = ctypes.c_char_p()
errors = ctypes.c_char_p()
result = core.BNPreprocessSource(source, filename, output, errors, dir_buf, len(include_dirs))
output_str = output.value
error_str = errors.value
core.BNFreeString(ctypes.cast(output, ctypes.POINTER(ctypes.c_byte)))
core.BNFreeString(ctypes.cast(errors, ctypes.POINTER(ctypes.c_byte)))
if result:
return (output_str, error_str)
return (None, error_str)
|