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
|
#!/usr/bin/env python3
from typing import Any, Dict, Optional
import json
import logging
import subprocess
import tempfile
import pathlib
import sys
import queue
import asm_differ.diff as asm_differ
MAX_FUNC_SIZE_LINES = 5000
class AsmDifferWrapper:
@staticmethod
def create_config(arch: asm_differ.ArchSettings) -> asm_differ.Config:
return asm_differ.Config(
arch=arch,
# Build/objdump options
diff_obj=True,
make=False,
source_old_binutils=True,
diff_section=".text",
inlines=False,
max_function_size_lines=MAX_FUNC_SIZE_LINES,
max_function_size_bytes=MAX_FUNC_SIZE_LINES * 4,
# Display options
formatter=asm_differ.AnsiFormatter(column_width=50),
threeway=None,
base_shift=0,
skip_lines=0,
compress=None,
show_branches=True,
show_line_numbers=False,
show_source=False,
stop_jrra=False,
ignore_large_imms=False,
ignore_addr_diffs=False,
algorithm="levenshtein",
)
@staticmethod
def run_objdump(target_data: bytes, config: asm_differ.Config, label: Optional[str]) -> Optional[str]:
flags = [
"--disassemble",
"--disassemble-zeroes",
"--line-numbers",
"--reloc",
]
with tempfile.TemporaryDirectory() as tempdir:
target_path = pathlib.Path(tempdir) / "out.s"
target_path.write_bytes(target_data)
start_addr = 0
if label:
nm_command = "mips-linux-gnu-nm"
if nm_command:
try:
nm_proc = subprocess.run(
[nm_command] + [target_path],
capture_output=True,
universal_newlines=True
)
except subprocess.CalledProcessError as e:
logger.error(f"Error running nm: {e}")
logger.error(e.stderr)
if nm_proc.stdout:
for line in nm_proc.stdout.splitlines():
if label in line:
start_addr = int(line.split()[0], 16)
break
else:
# logger.error(f"No nm command for {platform}")
return None
flags.append(f"--start-address={start_addr}")
objdump_command = "mips-linux-gnu-objdump"
cmds = [objdump_command] + config.arch.arch_flags + flags + [target_path]
try:
objdump_proc = subprocess.run(
[objdump_command] + config.arch.arch_flags + flags + [target_path],
capture_output=True,
universal_newlines=True
)
except subprocess.CalledProcessError as e:
# logger.error(e)
# logger.error(e.stderr)
return None
out = objdump_proc.stdout
return out
@staticmethod
def diff(target_elf: bytes, compiled_elf: bytes, diff_label:Optional[str]) -> Dict[str, Any]:
arch = asm_differ.get_arch("mips")
config = AsmDifferWrapper.create_config(arch)
# Base
if len(target_elf) == 0:
print("Base asm empty")
return
basedump = AsmDifferWrapper.run_objdump(target_elf, config, diff_label)
if not basedump:
print("Error running asm-differ on basedump")
return
if len(compiled_elf) == 0:
print("Creation of compilation elf_object failed")
return
mydump = AsmDifferWrapper.run_objdump(compiled_elf, config, diff_label)
if not mydump:
print("Error running asm-differ")
return
# Preprocess the dumps
basedump = asm_differ.preprocess_objdump_out(None, target_elf, basedump, config)
mydump = asm_differ.preprocess_objdump_out(None, compiled_elf, mydump, config)
try:
display = asm_differ.Display(basedump, mydump, config)
except Exception:
print("Error running asm-differ")
return
# Print the output
display.run_sync()
if __name__ == "__main__":
if len(sys.argv) != 3 and len(sys.argv) != 4:
print(f"Usage: {sys.argv[0]} [path/to/target.o] [path/to/compiled.o] [function name (optional)]")
sys.exit(0)
target = pathlib.Path(sys.argv[1])
compiled = pathlib.Path(sys.argv[2])
if len(sys.argv) == 4:
label = sys.argv[3]
else:
label = None
target_bytes = target.read_bytes()
compiled_bytes = compiled.read_bytes()
AsmDifferWrapper.diff(target_bytes, compiled_bytes, label)
|