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
|
"""IDA-free contract tests for the Code Mode client adapter."""
from __future__ import annotations
import os
import sys
import tempfile
from dataclasses import dataclass
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import idatui.codemode_client as module # noqa: E402
from idatui.codemode_client import CodeModeClient, _parse_load_args # noqa: E402
from idatui.errors import IDAToolError # noqa: E402
#: Pure: fakes the DatabaseHandle, never touches IDA or the Code Mode library.
NEEDS_IDA = False
PASS = FAIL = 0
def check(name: str, condition: bool, detail="") -> None:
global PASS, FAIL
if condition:
PASS += 1
print(f" ok {name}")
else:
FAIL += 1
print(f" FAIL {name} {detail}")
@dataclass(frozen=True)
class FakeEntry:
pid: int = 123
backend: str = "gui"
record_id: str = "123-abcdef"
exe_path: str = ""
idb_path: str = ""
class FakeHandle:
def __init__(self, path: str) -> None:
self.connected = True
self.entry = FakeEntry(exe_path=path, idb_path=path + ".i64")
self.waited = None
self.saved = 0
self.closed = False
self.code = ""
self.code_timeout = None
def wait_autoanalysis(self, timeout=None):
self.waited = timeout
return {"complete": True, "status": "complete"}
def execute_python(self, code, timeout=None):
self.code = code
self.code_timeout = timeout
return {"result": {"sentinel": 7}, "stdout": "", "stderr": ""}
def save_database(self):
self.saved += 1
return {"saved": True, "idb_path": self.entry.idb_path}
def close(self):
self.connected = False
self.closed = True
class FakeDatabaseHandle:
opened = None
kwargs = None
@classmethod
def open(cls, path, **kwargs):
cls.opened = path
cls.kwargs = kwargs
return FakeHandle(path)
def main() -> int:
proc, base, file_type = _parse_load_args("-parm:ARMv7-M -b800000 -TRaw")
check("legacy switches map to typed Code Mode options",
(proc, base, file_type) == ("arm:ARMv7-M", 0x8000000, "Raw"),
(proc, base, file_type))
try:
_parse_load_args("-parm -zcustom")
except ValueError as exc:
check("arbitrary IDA switches fail loudly", "cannot represent" in str(exc), exc)
else:
check("arbitrary IDA switches fail loudly", False)
original = module.DatabaseHandle
module.DatabaseHandle = FakeDatabaseHandle
try:
with tempfile.TemporaryDirectory() as tmp:
path = os.path.join(tmp, "sample.bin")
with open(path, "wb") as file:
file.write(b"sample")
client = CodeModeClient(path, load_args="-parm:ARMv7-A -b100")
notes = []
client.connect(timeout=42, progress=notes.append)
handle = client._handle
check("connect delegates database discovery to DatabaseHandle.open",
FakeDatabaseHandle.opened == path and handle is not None)
check("typed loader options cross the dependency boundary",
FakeDatabaseHandle.kwargs["processor"] == "arm:ARMv7-A"
and FakeDatabaseHandle.kwargs["loading_address"] == 0x1000,
FakeDatabaseHandle.kwargs)
check("connect waits for Code Mode autoanalysis",
handle.waited == 42, getattr(handle, "waited", None))
check("progress distinguishes discovery and backend attachment",
len(notes) == 2 and "gui" in notes[-1], notes)
result = client.invoke("list_funcs", queries=[{"offset": 0, "count": 2}])
check("invoke returns execute_python's result", result == {"sentinel": 7}, result)
check("operation scripts use the preloaded ida-domain database",
"db.functions.get_all()" in handle.code, handle.code[:200])
check("health exposes registry identity",
client.health()["record_id"] == "123-abcdef")
client.save_database()
check("save uses the public Code Mode save route", handle.saved == 1)
client.close()
check("close releases only the handle lease", handle.closed)
check("GUI lifetime is never claimed by the client",
client.wait_released(0) is False)
finally:
module.DatabaseHandle = original
client = CodeModeClient(__file__)
try:
client.invoke("not-an-operation")
except IDAToolError as exc:
check("unknown adapter operations are explicit", exc.tool == "not-an-operation")
else:
check("unknown adapter operations are explicit", False)
print(f"\n{PASS} passed, {FAIL} failed")
return 1 if FAIL else 0
if __name__ == "__main__":
raise SystemExit(main())
|