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
|
# Copyright (c) 2015-2023 Vector 35 Inc
#
# 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
from contextlib import contextmanager
from os import PathLike
from typing import Callable, List, Optional, Union
from . import _binaryninjacore as core
from .exceptions import ProjectException
from .metadata import Metadata, MetadataValueType
ProgressFuncType = Callable[[int, int], bool]
AsPath = Union[PathLike, str]
#TODO: notifications
def nop(*args, **kwargs):
"""
Function that just returns True, used as default for callbacks
:return: True
"""
return True
def wrap_progress(progress_func: ProgressFuncType):
"""
Wraps a progress function in a ctypes function for passing to the FFI
:param progress_func: Python progress function
:return: Wrapped ctypes function
"""
return ctypes.CFUNCTYPE(ctypes.c_bool, ctypes.c_void_p, ctypes.c_ulonglong, ctypes.c_ulonglong)(
lambda ctxt, cur, total: progress_func(cur, total))
class ProjectFile:
def __init__(self, handle: core.BNProjectFileHandle):
self._handle = handle
def __del__(self):
if core is not None:
core.BNFreeProjectFile(self._handle)
def __repr__(self) -> str:
path = self.name
parent = self.folder
while parent is not None:
path = parent.name + '/' + path
parent = parent.parent
return f'<ProjectFile: {self.project.name}/{path}>'
def __str__(self) -> str:
path = self.name
parent = self.folder
while parent is not None:
path = parent.name + '/' + path
parent = parent.parent
return f'<ProjectFile: {self.project.name}/{path}>'
@property
def project(self):
proj_handle = core.BNProjectFileGetProject(self._handle)
if proj_handle is None:
raise ProjectException("Failed to get project for file")
return Project(handle=proj_handle)
@property
def path_on_disk(self) -> str:
return core.BNProjectFileGetPathOnDisk(self._handle) # type: ignore
@property
def exists_on_disk(self) -> bool:
return core.BNProjectFileExistsOnDisk(self._handle)
@property
def id(self) -> str:
return core.BNProjectFileGetId(self._handle) # type: ignore
@property
def name(self) -> str:
return core.BNProjectFileGetName(self._handle) # type: ignore
@name.setter
def name(self, new_name: str):
return core.BNProjectFileSetName(self._handle, new_name)
@property
def description(self) -> str:
return core.BNProjectFileGetDescription(self._handle) # type: ignore
@description.setter
def description(self, new_description: str):
return core.BNProjectFileSetDescription(self._handle, new_description)
@property
def folder(self) -> Optional['ProjectFolder']:
folder_handle = core.BNProjectFileGetFolder(self._handle)
if folder_handle is None:
return None
return ProjectFolder(handle=folder_handle)
@folder.setter
def folder(self, new_folder: Optional['ProjectFolder']):
folder_handle = None if new_folder is None else new_folder._handle
core.BNProjectFileSetFolder(self._handle, folder_handle)
def export(self, dest: AsPath) -> bool:
return core.BNProjectFileExport(self._handle, str(dest))
class ProjectFolder:
def __init__(self, handle: core.BNProjectFolderHandle):
self._handle = handle
def __del__(self):
if core is not None:
core.BNFreeProjectFolder(self._handle)
def __repr__(self) -> str:
path = self.name
parent = self.parent
while parent is not None:
path = parent.name + '/' + path
parent = parent.parent
return f'<ProjectFolder: {self.project.name}/{path}>'
def __str__(self) -> str:
path = self.name
parent = self.parent
while parent is not None:
path = parent.name + '/' + path
parent = parent.parent
return f'<ProjectFolder: {self.project.name}/{path}>'
@property
def project(self):
proj_handle = core.BNProjectFolderGetProject(self._handle)
if proj_handle is None:
raise ProjectException("Failed to get project for folder")
return Project(handle=proj_handle)
@property
def id(self) -> str:
return core.BNProjectFolderGetId(self._handle) # type: ignore
@property
def name(self) -> str:
return core.BNProjectFolderGetName(self._handle) # type: ignore
@name.setter
def name(self, new_name: str):
return core.BNProjectFolderSetName(self._handle, new_name)
@property
def description(self) -> str:
return core.BNProjectFolderGetDescription(self._handle) # type: ignore
@description.setter
def description(self, new_description: str):
return core.BNProjectFolderSetDescription(self._handle, new_description)
@property
def parent(self) -> Optional['ProjectFolder']:
folder_handle = core.BNProjectFolderGetParent(self._handle)
if folder_handle is None:
return None
return ProjectFolder(handle=folder_handle)
@parent.setter
def parent(self, new_parent: Optional['ProjectFolder']):
parent_handle = None if new_parent is None else new_parent._handle
core.BNProjectFolderSetParent(self._handle, parent_handle)
def export(self, dest: AsPath, progress_func: ProgressFuncType = nop) -> bool:
return core.BNProjectFolderExport(self._handle, str(dest), None, wrap_progress(progress_func))
class Project:
def __init__(self, handle: core.BNProjectHandle):
self._handle = handle
def __del__(self):
if core is not None:
core.BNFreeProject(self._handle)
def __repr__(self) -> str:
return f'<Project: {self.name}>'
def __str__(self) -> str:
return f'<Project: {self.name}>'
@staticmethod
def open_project(path: AsPath) -> 'Project':
project_handle = core.BNOpenProject(str(path))
if project_handle is None:
raise ProjectException("Failed to open project")
return Project(handle=project_handle)
@staticmethod
def create_project(path: AsPath, name: str) -> 'Project':
project_handle = core.BNCreateProject(str(path), name)
if project_handle is None:
raise ProjectException("Failed to create project")
return Project(handle=project_handle)
def open(self) -> bool:
return core.BNProjectOpen(self._handle)
def close(self) -> bool:
return core.BNProjectClose(self._handle)
@property
def id(self) -> str:
return core.BNProjectGetId(self._handle) # type: ignore
@property
def is_open(self) -> bool:
return core.BNProjectIsOpen(self._handle)
@property
def path(self) -> str:
return core.BNProjectGetPath(self._handle) # type: ignore
@property
def name(self) -> str:
return core.BNProjectGetName(self._handle) # type: ignore
@name.setter
def name(self, new_name: str):
core.BNProjectSetName(self._handle, new_name)
@property
def description(self) -> str:
return core.BNProjectGetDescription(self._handle) # type: ignore
@description.setter
def description(self, new_description: str):
core.BNProjectSetDescription(self._handle, new_description)
def query_metadata(self, key: str) -> MetadataValueType:
md_handle = core.BNProjectQueryMetadata(self._handle, key)
if md_handle is None:
raise KeyError(key)
return Metadata(handle=md_handle).value
def store_metadata(self, key: str, value: MetadataValueType):
_val = value
if not isinstance(_val, Metadata):
_val = Metadata(_val)
core.BNProjectStoreMetadata(self._handle, key, _val.handle)
def remove_metadata(self, key: str):
core.BNProjectRemoveMetadata(self._handle, key)
def create_folder_from_path(self, path: Union[PathLike, str], parent: Optional[ProjectFolder] = None, description: str = "", progress_func: ProgressFuncType = nop) -> ProjectFolder:
parent_handle = parent._handle if parent is not None else None
folder_handle = core.BNProjectCreateFolderFromPath(
project=self._handle,
path=str(path),
parent=parent_handle,
description=description,
ctxt=None,
progress=wrap_progress(progress_func)
)
if folder_handle is None:
raise ProjectException("Failed to create folder")
return ProjectFolder(handle=folder_handle)
def create_folder(self, parent: Optional[ProjectFolder], name: str, description: str = "") -> ProjectFolder:
parent_handle = parent._handle if parent is not None else None
folder_handle = core.BNProjectCreateFolder(
project=self._handle,
parent=parent_handle,
name=name,
description=description,
)
if folder_handle is None:
raise ProjectException("Failed to create folder")
return ProjectFolder(handle=folder_handle)
@property
def folders(self) -> List[ProjectFolder]:
count = ctypes.c_size_t()
value = core.BNProjectGetFolders(self._handle, count)
if value is None:
raise ProjectException("Failed to get list of project folders")
result = []
try:
for i in range(count.value):
folder_handle = core.BNNewProjectFolderReference(value[i])
if folder_handle is None:
raise ProjectException("core.BNNewProjectFolderReference returned None")
result.append(ProjectFolder(folder_handle))
return result
finally:
core.BNFreeProjectFolderList(value, count.value)
def get_folder_by_id(self, id: str) -> Optional[ProjectFolder]:
handle = core.BNProjectGetFolderById(self._handle, id)
if handle is None:
return None
folder = ProjectFolder(handle)
return folder
def push_folder(self, folder: ProjectFolder):
core.BNProjectPushFolder(self._handle, folder._handle)
def delete_folder(self, folder: ProjectFolder, progress_func: ProgressFuncType = nop):
core.BNProjectDeleteFolder(self._handle, folder._handle, None, wrap_progress(progress_func))
def create_file_from_path(self, path: AsPath, folder: Optional[ProjectFile], name: str, description: str = "", progress_func: ProgressFuncType = nop) -> ProjectFile:
folder_handle = folder._handle if folder is not None else None
file_handle = core.BNProjectCreateFileFromPath(
project=self._handle,
path=str(path),
folder=folder_handle,
name=name,
description=description,
ctxt=None,
progress=wrap_progress(progress_func)
)
if file_handle is None:
raise ProjectException("Failed to create file")
return ProjectFile(handle=file_handle)
def create_file(self, contents: bytes, folder: Optional[ProjectFile], name: str, description: str = "", progress_func: ProgressFuncType = nop) -> ProjectFile:
folder_handle = folder._handle if folder is not None else None
buf = (ctypes.c_ubyte * len(contents))()
ctypes.memmove(buf, contents, len(contents))
file_handle = core.BNProjectCreateFile(
project=self._handle,
contents=buf,
contentsSize=len(contents),
folder=folder_handle,
name=name,
description=description,
ctxt=None,
progress=wrap_progress(progress_func)
)
if file_handle is None:
raise ProjectException("Failed to create file")
return ProjectFile(handle=file_handle)
@property
def files(self) -> List[ProjectFile]:
count = ctypes.c_size_t()
value = core.BNProjectGetFiles(self._handle, count)
if value is None:
raise ProjectException("Failed to get list of project files")
result = []
try:
for i in range(count.value):
file_handle = core.BNNewProjectFileReference(value[i])
if file_handle is None:
raise ProjectException("core.BNNewProjectFileReference returned None")
result.append(ProjectFile(file_handle))
return result
finally:
core.BNFreeProjectFileList(value, count.value)
def get_file_by_id(self, id: str) -> Optional[ProjectFile]:
handle = core.BNProjectGetFileById(self._handle, id)
if handle is None:
return None
file = ProjectFile(handle)
return file
def push_file(self, file: ProjectFile):
core.BNProjectPushFile(self._handle, file._handle)
def delete_file(self, file: ProjectFile):
core.BNProjectDeleteFile(self._handle, file._handle)
@contextmanager
def bulk_operation(self):
core.BNProjectBeginBulkOperation(self._handle)
yield
core.BNProjectEndBulkOperation(self._handle)
|