-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.py
374 lines (286 loc) · 14.4 KB
/
main.py
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
from PySide6 import QtWidgets, QtGui, QtCore
import sys
import traceback
import typing
import xml.etree.ElementTree
import argparse
import pathlib
import difflib
from util import get_decompile_data, make_xpath_string, colourise_diff, html_escape
from decomp import Decomp
from ui import GraphView, ZoomSliderWidget, SearchWidget, InformationDockWidget
class MainWindow(QtWidgets.QMainWindow):
load_data_done: QtCore.Signal = QtCore.Signal(Decomp)
zoom_levels: tuple[float] = (
0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7,
0.75, 0.85, 0.9, 0.95, 1.0, 1.25, 1.5, 1.75, 2.0, 2.5, 3.0,
)
xml_func_name: str = ""
xml_path: typing.Optional[pathlib.Path] = None
ghidra_dir: typing.Optional[pathlib.Path] = None
extra_paths: list[pathlib.Path] = []
decomp_dbg_path: typing.Optional[pathlib.Path] = None
decomp: typing.Optional[Decomp] = None
settings: QtCore.QSettings
zoom_idx: int = zoom_levels.index(1.0)
graph_view: GraphView
list_widget: QtWidgets.QListWidget
thread_manager: QtCore.QThreadPool
def __init__(self, extra_paths: list[pathlib.Path] = [], initial_xml: typing.Optional[pathlib.Path] = None):
super().__init__()
self.extra_paths = extra_paths
self.setWindowTitle("DecompVis")
# Populate menu bar
menu_bar = self.menuBar()
file_menu = menu_bar.addMenu("&File")
load_xml_act = QtGui.QAction("Load XML file", self)
load_xml_act.triggered.connect(self._handle_set_xml_file)
set_ghidra_dir_act = QtGui.QAction("Set Ghidra folder", self)
set_ghidra_dir_act.triggered.connect(self._handle_set_ghidra_dir)
set_decomp_dbg_path_act = QtGui.QAction("Set decomp_dbg file", self)
set_decomp_dbg_path_act.triggered.connect(self._handle_set_decomp_dbg_path)
file_menu.addAction(load_xml_act)
file_menu.addAction(set_ghidra_dir_act)
file_menu.addAction(set_decomp_dbg_path_act)
view_menu = menu_bar.addMenu("&View")
self.zoom_in_act = QtGui.QAction("Zoom In", self)
self.zoom_in_act.triggered.connect(self._handle_zoom_in)
self.zoom_out_act = QtGui.QAction("Zoom Out", self)
self.zoom_out_act.triggered.connect(self._handle_zoom_out)
view_menu.addAction(self.zoom_in_act)
view_menu.addAction(self.zoom_out_act)
# Create main widgets
self.graph_view = GraphView(None, self)
self.setCentralWidget(self.graph_view)
self.list_widget = QtWidgets.QListWidget(self)
self.list_widget.currentRowChanged.connect(self.handle_list_change)
list_dock_widget = QtWidgets.QDockWidget("P-CODE Stages", self)
list_dock_widget.setWidget(self.list_widget)
self.information_widget = InformationDockWidget(self)
self.search_widget = SearchWidget(self.graph_view, self)
search_dock_widget = QtWidgets.QDockWidget("Search Node", self)
search_dock_widget.setWidget(self.search_widget)
# Add a zoom slider to the status bar
self.zoom_slider = ZoomSliderWidget(len(self.zoom_levels), self.zoom_levels.index(1.0), self)
self.statusBar().addPermanentWidget(self.zoom_slider)
# Setup things for threading
self.thread_manager = QtCore.QThreadPool(self)
self.load_data_done.connect(self._process_load_decomp_data)
# Initialise settings ini, and load the ghidra dir
self.settings = QtCore.QSettings("settings.ini", QtCore.QSettings.IniFormat)
dir_value = self.settings.value("ghidra_dir")
decomp_dbg_path_value = self.settings.value("decomp_dbg_path")
if dir_value is not None and not self._try_set_ghidra_dir(dir_value):
# dir is invalid, reset ini
self.settings.setValue("ghidra_dir", self.ghidra_dir)
if decomp_dbg_path_value is not None and not self._try_set_decomp_dbg_path(decomp_dbg_path_value):
# file is invalid, reset ini
self.settings.setValue("decomp_dbg_path", self.decomp_dbg_path)
self.addDockWidget(QtCore.Qt.DockWidgetArea.LeftDockWidgetArea, list_dock_widget)
self.addDockWidget(QtCore.Qt.DockWidgetArea.LeftDockWidgetArea, self.information_widget)
self.addDockWidget(QtCore.Qt.DockWidgetArea.LeftDockWidgetArea, search_dock_widget)
# Load first xml if set
if initial_xml is not None:
self._parse_xml_file(initial_xml)
def _try_set_ghidra_dir(self, ghidra_dir: pathlib.Path) -> bool:
"""
Try to set the Ghidra folder. If this fails (because the folder does
not exist), False is returned. Otherwise, settings.ini is updated and
True is returned.
"""
if not ghidra_dir.is_dir(): # invalid path
return False
self.ghidra_dir = ghidra_dir
self.settings.setValue("ghidra_dir", self.ghidra_dir)
if self.decomp_dbg_path is None:
self._try_set_decomp_dbg_path(ghidra_dir / "Ghidra" / "Features" / "Decompiler" / "src" / "decompile" / "cpp" / "decomp_dbg")
return True
def _try_set_decomp_dbg_path(self, decomp_dbg_path: pathlib.Path) -> bool:
"""
Try to set the path to the decomp_dbg executable. If this fails (because
the file does not exist), False is returned. Otherwise, settings.ini is
updated and True is returned.
"""
if not decomp_dbg_path.is_file(): # invalid path
return False
self.decomp_dbg_path = decomp_dbg_path
self.settings.setValue("decomp_dbg_path", self.decomp_dbg_path)
return True
def _handle_set_xml_file(self):
"""
Handles the 'Set XML File' menu action being clicked.
"""
file_name, _ = QtWidgets.QFileDialog.getOpenFileName(self, "Choose an XML file")
if file_name == "": # No XML file was selected
return
try:
self._parse_xml_file(pathlib.Path(file_name))
except (ValueError, xml.etree.ElementTree.ParseError):
QtWidgets.QMessageBox.critical(
None,
"Error communicating with decomp_dbg",
(
"A fatal error occurred while communicating with the decomp_dbg "
"executable. Loading this xml file has been cancelled. A "
"stack trace of the exception is shown below:\n\n"
f"{traceback.format_exc()}"
)
)
def _parse_xml_file(self, file_name: pathlib.Path):
"""
Loads and parses the XML file the 'file_name' argument refers to.
Finally, it feeds the XML into decomp_dbg.
"""
self.xml_path = file_name
xml_data = xml.etree.ElementTree.parse(self.xml_path)
xml_root = xml_data.getroot()
# Find the range for which we have bytes
bytechunks = xml_root.findall("./binaryimage/bytechunk")
if not bytechunks:
raise ValueError(f"Did not find 'bytechunk' elements in the provided XML!")
function_names = []
for bytechunk in bytechunks:
bytechunk_space = make_xpath_string(bytechunk.get("space"))
bytechunk_start = int(bytechunk.get("offset"), 16)
# Assuming the bytes are stored in hexadecimal, the number of bytes
# is the number of non-whitespace characters divided by 2.
bytechunk_size = len(bytechunk.text.replace(" ", "").replace("\n", "")) // 2
bytechunk_range = range(bytechunk_start, bytechunk_start + bytechunk_size)
# Find the names of all functions defined in the XML file, and filter
# out those whose offsets are not inside the chunk for which we have
# bytes
for scope in xml_root.findall("./save_state/db/scope"):
scope_name = scope.get("name")
for function in scope.findall("./symbollist/mapsym/function"):
# Do we have the bytes for this function?
addr_def = function.find(f"./addr[@space={bytechunk_space}]")
if addr_def is None or int(addr_def.get("offset"), 16) not in bytechunk_range:
continue
# Yes - add the fully qualified name to the list of function
# names.
func_name = function.get('name')
if "::" in func_name:
raise ValueError(f"Function names containing '::' are not supported by the decompiler ({func_name!r})")
function_names.append(f"{scope_name}::{func_name}")
if not function_names:
raise ValueError("No function definition found in XML file")
if len(function_names) > 1:
# TODO: Handle this case more cleanly - for example by allowing the
# user to choose one of the functions.
print("Found multiple functions - picking first one")
print(function_names)
self.xml_func_name = function_names[0]
self.load_decomp_data()
def _handle_set_ghidra_dir(self):
while True:
ghidra_dir = QtWidgets.QFileDialog.getExistingDirectory(
self, "Choose the Ghidra Installation folder"
)
if not ghidra_dir: # No folder was selected
return
if self._try_set_ghidra_dir(pathlib.Path(ghidra_dir)):
return
def _handle_set_decomp_dbg_path(self):
while True:
decomp_dbg_path = QtWidgets.QFileDialog.getOpenFileName(
self, "Choose the decomp_dbg executable"
)[0]
if not decomp_dbg_path: # No file was selected
return
if self._try_set_decomp_dbg_path(pathlib.Path(decomp_dbg_path)):
return
def _handle_zoom_in(self, cursor_is_center: bool = False):
if self.zoom_idx == len(self.zoom_levels) - 1: # already fully zoomed in
return
self._handle_update_zoom(self.zoom_idx + 1, cursor_is_center)
def _handle_zoom_out(self, cursor_is_center: bool = False):
if self.zoom_idx == 0: # already fully zoomed out
return
self._handle_update_zoom(self.zoom_idx - 1, cursor_is_center)
def _handle_update_zoom(self, new_zoom_idx: int, cursor_is_center: bool = False):
"""
Updates the graph view to have the correct zoom corresponding to
'new_zoom_idx'. Also enables and disables the menu actions accordingly.
This function assumes 'new_zoom_idx' is a valid index in
MainWindow.zoom_levels.
"""
self.zoom_idx = new_zoom_idx
self.graph_view.set_zoom(self.zoom_levels[new_zoom_idx], cursor_is_center=cursor_is_center)
self.zoom_in_act.setEnabled(new_zoom_idx != len(self.zoom_levels) - 1)
self.zoom_out_act.setEnabled(new_zoom_idx != 0)
self.zoom_slider.set_zoom_level(new_zoom_idx)
def _do_load_decomp_data(self):
decomp = None
trace = ""
try:
pcodes = get_decompile_data(
str(self.decomp_dbg_path), str(self.ghidra_dir), str(self.xml_path), self.xml_func_name, self.extra_paths
)
decomp = Decomp(pcodes)
except:
trace = traceback.format_exc()
self.load_data_done.emit((decomp, trace))
def _process_load_decomp_data(self, data: tuple[Decomp, str]):
decomp, trace = data
if trace:
# An exception occurred - cancel loading
QtWidgets.QMessageBox.critical(
None,
"Error communicating with decomp_dbg",
(
"A fatal error occurred while communicating with the decomp_dbg "
"executable. Loading this xml file has been cancelled. A "
"stack trace of the exception is shown below:\n\n"
f"{trace}"
)
)
return
self.decomp = decomp
self.list_widget.clear()
self.list_widget.addItems([
f"{i}: {rule_name}"
for i, rule_name in enumerate(self.decomp.get_rule_names())
])
self.list_widget.setEnabled(True)
self.information_widget.setEnabled(True)
self.graph_view.setEnabled(True)
self.search_widget.enable()
self._handle_update_zoom(self.zoom_levels.index(1.0))
self.list_widget.setCurrentRow(0)
def load_decomp_data(self):
if not self.ghidra_dir or not self.decomp_dbg_path:
# No Ghidra dir selected - don't load anything
if not self.ghidra_dir:
reason = "The Ghidra Installation folder needs to be set"
elif not self.decomp_dbg_path:
reason = "The decomp_dbg executable needs to be specified"
raise ValueError(f"{reason}. Use the actions in the 'File' menu to resolve this.")
self.thread_manager.start(self._do_load_decomp_data)
# Disable some UI things to indicate we're loading
self.list_widget.setEnabled(False)
self.information_widget.setEnabled(False)
self.graph_view.setEnabled(False)
def handle_list_change(self, new_index):
"""
Handles the selected entry in the list changing
"""
state = self.decomp.get_state(new_index)
self.graph_view.set_graph(state.get_graph())
if new_index == 0:
diff_text = "<i>No diff available because there is no previous state.</i>"
else:
prev_state = self.decomp.get_state(new_index - 1)
diff_text = colourise_diff(difflib.ndiff(prev_state.get_pcode().split("\n"), state.get_pcode().split("\n")))
pcode_text = "<tt>" + html_escape(state.get_pcode()).strip("\n").replace("\n", "<br/>") + "</tt>"
self.information_widget.set_contents(pcode_text, diff_text)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('xml_file', nargs='?', help='Specify the path to an XML file to automatically load it', type=lambda p: pathlib.Path(p).resolve())
parser.add_argument('-s', '--extra-paths', nargs='+', help='Define extra paths to search for language definitions (.ldefs)', type=lambda ps: [pathlib.Path(p).resolve() for p in ps], required=False, default=[])
args = parser.parse_args()
app = QtWidgets.QApplication(sys.argv)
mw = MainWindow(args.extra_paths, args.xml_file)
mw.show()
exitcode = app.exec()
app.deleteLater()
sys.exit(exitcode)