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
|
import binaryninja
import ctypes, os
from typing import Optional
from . import kernelcache_enums
# Load core module
import platform
core = None
core_platform = platform.system()
# By the time the debugger is loaded, binaryninja has not fully initialized.
# So we cannot call binaryninja.bundled_plugin_path()
from binaryninja._binaryninjacore import BNGetBundledPluginDirectory, BNFreeString
if core_platform == "Darwin":
_base_path = BNGetBundledPluginDirectory()
core = ctypes.CDLL(os.path.join(_base_path, "libkernelcache.dylib"))
elif core_platform == "Linux":
_base_path = BNGetBundledPluginDirectory()
core = ctypes.CDLL(os.path.join(_base_path, "libkernelcache.so"))
elif (core_platform == "Windows") or (core_platform.find("CYGWIN_NT") == 0):
_base_path = BNGetBundledPluginDirectory()
core = ctypes.CDLL(os.path.join(_base_path, "kernelcache.dll"))
else:
raise Exception("OS not supported")
def cstr(var) -> Optional[ctypes.c_char_p]:
if var is None:
return None
if isinstance(var, bytes):
return var
return var.encode("utf-8")
def pyNativeStr(arg):
if isinstance(arg, str):
return arg
else:
return arg.decode('utf8')
def free_string(value:ctypes.c_char_p) -> None:
BNFreeString(ctypes.cast(value, ctypes.POINTER(ctypes.c_byte)))
# Type definitions
from binaryninja._binaryninjacore import BNBinaryView, BNBinaryViewHandle
class BNKCImage(ctypes.Structure):
@property
def name(self):
return pyNativeStr(self._name)
@name.setter
def name(self, value):
self._name = cstr(value)
BNKCImageHandle = ctypes.POINTER(BNKCImage)
class BNKCImageMemoryMapping(ctypes.Structure):
@property
def name(self):
return pyNativeStr(self._name)
@name.setter
def name(self, value):
self._name = cstr(value)
BNKCImageMemoryMappingHandle = ctypes.POINTER(BNKCImageMemoryMapping)
class BNKCMappedMemoryRegion(ctypes.Structure):
@property
def name(self):
return pyNativeStr(self._name)
@name.setter
def name(self, value):
self._name = cstr(value)
BNKCMappedMemoryRegionHandle = ctypes.POINTER(BNKCMappedMemoryRegion)
class BNKCMemoryUsageInfo(ctypes.Structure):
pass
BNKCMemoryUsageInfoHandle = ctypes.POINTER(BNKCMemoryUsageInfo)
class BNKCSymbolRep(ctypes.Structure):
@property
def name(self):
return pyNativeStr(self._name)
@name.setter
def name(self, value):
self._name = cstr(value)
@property
def image(self):
return pyNativeStr(self._image)
@image.setter
def image(self, value):
self._image = cstr(value)
BNKCSymbolRepHandle = ctypes.POINTER(BNKCSymbolRep)
KCViewLoadProgressEnum = ctypes.c_int
KCViewStateEnum = ctypes.c_int
class BNKernelCache(ctypes.Structure):
pass
BNKernelCacheHandle = ctypes.POINTER(BNKernelCache)
# Structure definitions
BNKCImage._fields_ = [
("_name", ctypes.c_char_p),
("headerFileAddress", ctypes.c_ulonglong),
("mappings", ctypes.POINTER(BNKCImageMemoryMapping)),
("mappingCount", ctypes.c_ulonglong),
]
BNKCImageMemoryMapping._fields_ = [
("_name", ctypes.c_char_p),
("vmAddress", ctypes.c_ulonglong),
("size", ctypes.c_ulonglong),
("loaded", ctypes.c_bool),
("rawViewOffset", ctypes.c_ulonglong),
]
BNKCMappedMemoryRegion._fields_ = [
("vmAddress", ctypes.c_ulonglong),
("size", ctypes.c_ulonglong),
("_name", ctypes.c_char_p),
]
BNKCMemoryUsageInfo._fields_ = [
("sharedCacheRefs", ctypes.c_ulonglong),
("mmapRefs", ctypes.c_ulonglong),
]
BNKCSymbolRep._fields_ = [
("address", ctypes.c_ulonglong),
("_name", ctypes.c_char_p),
("_image", ctypes.c_char_p),
]
# Function definitions
# -------------------------------------------------------
# _BNFreeKernelCacheReference
_BNFreeKernelCacheReference = core.BNFreeKernelCacheReference
_BNFreeKernelCacheReference.restype = None
_BNFreeKernelCacheReference.argtypes = [
ctypes.POINTER(BNKernelCache),
]
# noinspection PyPep8Naming
def BNFreeKernelCacheReference(
cache: ctypes.POINTER(BNKernelCache)
) -> None:
return _BNFreeKernelCacheReference(cache)
# -------------------------------------------------------
# _BNGetKernelCache
_BNGetKernelCache = core.BNGetKernelCache
_BNGetKernelCache.restype = ctypes.POINTER(BNKernelCache)
_BNGetKernelCache.argtypes = [
ctypes.POINTER(BNBinaryView),
]
# noinspection PyPep8Naming
def BNGetKernelCache(
data: ctypes.POINTER(BNBinaryView)
) -> Optional[ctypes.POINTER(BNKernelCache)]:
result = _BNGetKernelCache(data)
if not result:
return None
return result
# -------------------------------------------------------
# _BNKCViewFastGetImageCount
_BNKCViewFastGetImageCount = core.BNKCViewFastGetImageCount
_BNKCViewFastGetImageCount.restype = ctypes.c_ulonglong
_BNKCViewFastGetImageCount.argtypes = [
ctypes.POINTER(BNBinaryView),
]
# noinspection PyPep8Naming
def BNKCViewFastGetImageCount(
view: ctypes.POINTER(BNBinaryView)
) -> int:
return _BNKCViewFastGetImageCount(view)
# -------------------------------------------------------
# _BNKCViewFreeAllImages
_BNKCViewFreeAllImages = core.BNKCViewFreeAllImages
_BNKCViewFreeAllImages.restype = None
_BNKCViewFreeAllImages.argtypes = [
ctypes.POINTER(BNKCImage),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNKCViewFreeAllImages(
images: ctypes.POINTER(BNKCImage),
count: int
) -> None:
return _BNKCViewFreeAllImages(images, count)
# -------------------------------------------------------
# _BNKCViewFreeLoadedImages
_BNKCViewFreeLoadedImages = core.BNKCViewFreeLoadedImages
_BNKCViewFreeLoadedImages.restype = None
_BNKCViewFreeLoadedImages.argtypes = [
ctypes.POINTER(BNKCImage),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNKCViewFreeLoadedImages(
images: ctypes.POINTER(BNKCImage),
count: int
) -> None:
return _BNKCViewFreeLoadedImages(images, count)
# -------------------------------------------------------
# _BNKCViewFreeSymbols
_BNKCViewFreeSymbols = core.BNKCViewFreeSymbols
_BNKCViewFreeSymbols.restype = None
_BNKCViewFreeSymbols.argtypes = [
ctypes.POINTER(BNKCSymbolRep),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNKCViewFreeSymbols(
symbols: ctypes.POINTER(BNKCSymbolRep),
count: int
) -> None:
return _BNKCViewFreeSymbols(symbols, count)
# -------------------------------------------------------
# _BNKCViewGetAllImages
_BNKCViewGetAllImages = core.BNKCViewGetAllImages
_BNKCViewGetAllImages.restype = ctypes.POINTER(BNKCImage)
_BNKCViewGetAllImages.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.POINTER(ctypes.c_ulonglong),
]
# noinspection PyPep8Naming
def BNKCViewGetAllImages(
cache: ctypes.POINTER(BNKernelCache),
count: ctypes.POINTER(ctypes.c_ulonglong)
) -> Optional[ctypes.POINTER(BNKCImage)]:
result = _BNKCViewGetAllImages(cache, count)
if not result:
return None
return result
# -------------------------------------------------------
# _BNKCViewGetImageHeaderForAddress
_BNKCViewGetImageHeaderForAddress = core.BNKCViewGetImageHeaderForAddress
_BNKCViewGetImageHeaderForAddress.restype = ctypes.POINTER(ctypes.c_byte)
_BNKCViewGetImageHeaderForAddress.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNKCViewGetImageHeaderForAddress(
cache: ctypes.POINTER(BNKernelCache),
address: int
) -> Optional[Optional[str]]:
result = _BNKCViewGetImageHeaderForAddress(cache, address)
if not result:
return None
string = str(pyNativeStr(ctypes.cast(result, ctypes.c_char_p).value))
BNFreeString(result)
return string
# -------------------------------------------------------
# _BNKCViewGetImageHeaderForName
_BNKCViewGetImageHeaderForName = core.BNKCViewGetImageHeaderForName
_BNKCViewGetImageHeaderForName.restype = ctypes.POINTER(ctypes.c_byte)
_BNKCViewGetImageHeaderForName.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.c_char_p,
]
# noinspection PyPep8Naming
def BNKCViewGetImageHeaderForName(
cache: ctypes.POINTER(BNKernelCache),
name: Optional[str]
) -> Optional[Optional[str]]:
result = _BNKCViewGetImageHeaderForName(cache, cstr(name))
if not result:
return None
string = str(pyNativeStr(ctypes.cast(result, ctypes.c_char_p).value))
BNFreeString(result)
return string
# -------------------------------------------------------
# _BNKCViewGetImageNameForAddress
_BNKCViewGetImageNameForAddress = core.BNKCViewGetImageNameForAddress
_BNKCViewGetImageNameForAddress.restype = ctypes.POINTER(ctypes.c_byte)
_BNKCViewGetImageNameForAddress.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNKCViewGetImageNameForAddress(
cache: ctypes.POINTER(BNKernelCache),
address: int
) -> Optional[Optional[str]]:
result = _BNKCViewGetImageNameForAddress(cache, address)
if not result:
return None
string = str(pyNativeStr(ctypes.cast(result, ctypes.c_char_p).value))
BNFreeString(result)
return string
# -------------------------------------------------------
# _BNKCViewGetInstallNames
_BNKCViewGetInstallNames = core.BNKCViewGetInstallNames
_BNKCViewGetInstallNames.restype = ctypes.POINTER(ctypes.c_char_p)
_BNKCViewGetInstallNames.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.POINTER(ctypes.c_ulonglong),
]
# noinspection PyPep8Naming
def BNKCViewGetInstallNames(
cache: ctypes.POINTER(BNKernelCache),
count: ctypes.POINTER(ctypes.c_ulonglong)
) -> Optional[ctypes.POINTER(ctypes.c_char_p)]:
result = _BNKCViewGetInstallNames(cache, count)
if not result:
return None
return result
# -------------------------------------------------------
# _BNKCViewGetLoadProgress
_BNKCViewGetLoadProgress = core.BNKCViewGetLoadProgress
_BNKCViewGetLoadProgress.restype = KCViewLoadProgressEnum
_BNKCViewGetLoadProgress.argtypes = [
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNKCViewGetLoadProgress(
sessionID: int
) -> KCViewLoadProgressEnum:
return _BNKCViewGetLoadProgress(sessionID)
# -------------------------------------------------------
# _BNKCViewGetLoadedImages
_BNKCViewGetLoadedImages = core.BNKCViewGetLoadedImages
_BNKCViewGetLoadedImages.restype = ctypes.POINTER(BNKCImage)
_BNKCViewGetLoadedImages.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.POINTER(ctypes.c_ulonglong),
]
# noinspection PyPep8Naming
def BNKCViewGetLoadedImages(
cache: ctypes.POINTER(BNKernelCache),
count: ctypes.POINTER(ctypes.c_ulonglong)
) -> Optional[ctypes.POINTER(BNKCImage)]:
result = _BNKCViewGetLoadedImages(cache, count)
if not result:
return None
return result
# -------------------------------------------------------
# _BNKCViewGetNameForAddress
_BNKCViewGetNameForAddress = core.BNKCViewGetNameForAddress
_BNKCViewGetNameForAddress.restype = ctypes.POINTER(ctypes.c_byte)
_BNKCViewGetNameForAddress.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNKCViewGetNameForAddress(
cache: ctypes.POINTER(BNKernelCache),
address: int
) -> Optional[Optional[str]]:
result = _BNKCViewGetNameForAddress(cache, address)
if not result:
return None
string = str(pyNativeStr(ctypes.cast(result, ctypes.c_char_p).value))
BNFreeString(result)
return string
# -------------------------------------------------------
# _BNKCViewGetState
_BNKCViewGetState = core.BNKCViewGetState
_BNKCViewGetState.restype = KCViewStateEnum
_BNKCViewGetState.argtypes = [
ctypes.POINTER(BNKernelCache),
]
# noinspection PyPep8Naming
def BNKCViewGetState(
cache: ctypes.POINTER(BNKernelCache)
) -> KCViewStateEnum:
return _BNKCViewGetState(cache)
# -------------------------------------------------------
# _BNKCViewLoadAllSymbolsAndWait
_BNKCViewLoadAllSymbolsAndWait = core.BNKCViewLoadAllSymbolsAndWait
_BNKCViewLoadAllSymbolsAndWait.restype = ctypes.POINTER(BNKCSymbolRep)
_BNKCViewLoadAllSymbolsAndWait.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.POINTER(ctypes.c_ulonglong),
]
# noinspection PyPep8Naming
def BNKCViewLoadAllSymbolsAndWait(
cache: ctypes.POINTER(BNKernelCache),
count: ctypes.POINTER(ctypes.c_ulonglong)
) -> Optional[ctypes.POINTER(BNKCSymbolRep)]:
result = _BNKCViewLoadAllSymbolsAndWait(cache, count)
if not result:
return None
return result
# -------------------------------------------------------
# _BNKCViewLoadImageContainingAddress
_BNKCViewLoadImageContainingAddress = core.BNKCViewLoadImageContainingAddress
_BNKCViewLoadImageContainingAddress.restype = ctypes.c_bool
_BNKCViewLoadImageContainingAddress.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.c_ulonglong,
]
# noinspection PyPep8Naming
def BNKCViewLoadImageContainingAddress(
cache: ctypes.POINTER(BNKernelCache),
address: int
) -> bool:
return _BNKCViewLoadImageContainingAddress(cache, address)
# -------------------------------------------------------
# _BNKCViewLoadImageWithInstallName
_BNKCViewLoadImageWithInstallName = core.BNKCViewLoadImageWithInstallName
_BNKCViewLoadImageWithInstallName.restype = ctypes.c_bool
_BNKCViewLoadImageWithInstallName.argtypes = [
ctypes.POINTER(BNKernelCache),
ctypes.c_char_p,
]
# noinspection PyPep8Naming
def BNKCViewLoadImageWithInstallName(
cache: ctypes.POINTER(BNKernelCache),
name: Optional[str]
) -> bool:
return _BNKCViewLoadImageWithInstallName(cache, cstr(name))
# -------------------------------------------------------
# _BNNewKernelCacheReference
_BNNewKernelCacheReference = core.BNNewKernelCacheReference
_BNNewKernelCacheReference.restype = ctypes.POINTER(BNKernelCache)
_BNNewKernelCacheReference.argtypes = [
ctypes.POINTER(BNKernelCache),
]
# noinspection PyPep8Naming
def BNNewKernelCacheReference(
cache: ctypes.POINTER(BNKernelCache)
) -> Optional[ctypes.POINTER(BNKernelCache)]:
result = _BNNewKernelCacheReference(cache)
if not result:
return None
return result
# Helper functions
def handle_of_type(value, handle_type):
if isinstance(value, ctypes.POINTER(handle_type)) or isinstance(value, ctypes.c_void_p):
return ctypes.cast(value, ctypes.POINTER(handle_type))
raise ValueError('expected pointer to %s' % str(handle_type))
|