-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfix_outlined_functions.py
219 lines (158 loc) · 6.14 KB
/
fix_outlined_functions.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
import logging
from typing import Iterable, Optional, Generator, Union
import ida_funcs
import ida_idaapi
import ida_name
import ida_search
import ida_ua
import ida_xref
import idautils
import idc
from idadex import ea_t
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
CSTRING_ENCODING = 0x7C8
WIDE_STRING_ENCODING = 0x7D0
RET_OPCODE = 0xd65f03c0
OUTLINED_FUNCTION_NAME = '_OUTLINED_FUNCTION'
LAST_OUTLINED_FUNCTION_INDEX = 1
def remove_items(s: str, remove: Iterable[str]) -> str:
for r in remove:
s = s.replace(r, '')
return s
def set_name(ea: ea_t, name: str) -> None:
global LAST_OUTLINED_FUNCTION_INDEX
name = remove_items(name, ['(', ')', '[', ']', '#', '@PAGEOFF'])
for c in ',+- ':
name = name.replace(c, '_')
for suffix in range(LAST_OUTLINED_FUNCTION_INDEX + 1, 0xffffffff):
new_name = name if suffix == 0 else f"{name}${suffix}"
if ida_name.set_name(ea, new_name, ida_name.SN_NOWARN):
name = new_name
LAST_OUTLINED_FUNCTION_INDEX = suffix
break
logger.debug(f'name set: 0x{ea:x} {name}')
def get_func_start(ea: ea_t) -> Union[ea_t, None]:
"""
Gets the start address of the function that includes ``ea``
"""
return ida_funcs.get_func(ea).start_ea
def get_func_end(ea: ea_t) -> int:
"""
Gets the end address of the function that includes ``ea``
"""
return ida_funcs.get_func(ea).end_ea
def set_type(ea: ea_t, new_type: str) -> None:
if idc.SetType(ea, new_type) is None:
raise ValueError(f'failed to set: "0x{ea:x} {new_type}"')
def get_type(ea: ea_t) -> str:
return idc.get_type(ea)
def data_refs_from(ea: ea_t) -> Generator[ea_t, None, None]:
next_ea = ida_xref.get_first_dref_from(ea)
while next_ea != ida_idaapi.BADADDR:
yield next_ea
next_ea = ida_xref.get_next_dref_from(ea, next_ea)
def data_refs_to(ea: ea_t) -> Generator[ea_t, None, None]:
next_ea = ida_xref.get_first_dref_to(ea)
while next_ea != ida_idaapi.BADADDR:
yield next_ea
next_ea = ida_xref.get_next_dref_to(ea, next_ea)
def code_refs_to(ea: ea_t) -> Generator[ea_t, None, None]:
next_ea = ida_xref.get_first_cref_to(ea)
while next_ea != ida_idaapi.BADADDR:
yield next_ea
next_ea = ida_xref.get_next_cref_to(ea, next_ea)
def code_refs_from(ea: ea_t) -> Generator[ea_t, None, None]:
next_ea = ida_xref.get_first_cref_from(ea)
while next_ea != ida_idaapi.BADADDR:
yield next_ea
next_ea = ida_xref.get_next_cref_from(ea, next_ea)
def get_mnemonic(ea: ea_t) -> str:
return idc.print_insn_mnem(ea)
def get_operand(ea: ea_t, operand: int) -> str:
return idc.print_operand(ea, operand)
def get_func_name(ea: ea_t) -> str:
return idc.get_func_name(ea)
def get_segment_ea(segment_name: str) -> Optional[int]:
"""
Get the start EA (Effective Address) of a segment identified by its name.
:param segment_name: Name of the segment
:return: Starting EA of the segment or None if not found
"""
for seg in idautils.Segments():
if idc.get_segm_name(seg) == segment_name:
return idc.get_segm_start(seg)
return None
def search_bytes(start_ea: ea_t, end_ea: ea_t, bytes_pattern: str) -> Generator[ea_t, None, None]:
"""
Binary search of ``bytes_pattern`` in bytes between ``start_ea`` and ``end_ea``
"""
ea = start_ea - 1
while ea != ida_idaapi.BADADDR:
ea = ida_search.find_binary(ea + 1, end_ea, bytes_pattern, 16, ida_search.SEARCH_DOWN)
if ea != ida_idaapi.BADADDR:
yield ea
def unname() -> None:
seg_start = get_segment_ea('__text')
seg_end = idc.get_segm_end(seg_start)
for func_start in idautils.Functions(seg_start, seg_end):
func_name = get_func_name(func_start)
if 'GADGET' in func_name:
set_name(func_start, '')
set_type(func_start, '')
def is_leaf(func_start: ea_t) -> bool:
for item in idautils.FuncItems(func_start):
if get_mnemonic(item) in ('BL', 'BR'):
return False
return True
def should_function_be_outlined(func_start: ea_t) -> bool:
func_name = get_func_name(func_start)
if func_name.startswith('j_') and get_mnemonic(func_start) == 'B':
return True
if (not func_name.startswith('sub_')) and (not func_name.startswith(OUTLINED_FUNCTION_NAME)):
return False
if not is_leaf(func_start):
return False
return True
def define_ip_branches() -> None:
"""
fix branches using x16
TODO: support x17 branches
"""
seg_start = get_segment_ea('__text')
seg_end = idc.get_segm_end(seg_start)
for ea in search_bytes(seg_start, seg_end, '00 02 5f d6'):
insn = ida_ua.insn_t()
if not ida_ua.decode_insn(insn, ea - 4):
# Failed to decode instruction
continue
if insn.get_canon_mnem() != 'ADD':
continue
# Check if the first operand (Rd) is a register and is x29
if insn.ops[0].type != ida_ua.o_reg or insn.ops[0].reg != 0x9e:
continue
ea = get_func_start(ea)
set_name(ea, 'branch_using_x16')
set_type(ea, 'void __usercall __spoils<> branch_using_x16'
'(void *address@<X16>, void *param1, void *param2, void *param3)')
for ref_ea in code_refs_to(ea):
prev_ea = ref_ea - 4
if get_mnemonic(prev_ea) != 'ADR':
continue
name = f'detoured_{get_func_name(prev_ea)}'
set_name(next(data_refs_from(prev_ea)), name)
def fix_function_if_outlined(func_start: ea_t) -> None:
if should_function_be_outlined(func_start):
func = ida_funcs.get_func(func_start)
func.flags |= ida_funcs.FUNC_OUTLINE
ida_funcs.update_func(func)
set_name(func_start, OUTLINED_FUNCTION_NAME)
def fix_outlined_functions() -> None:
logger.info('fixing outlined functions')
define_ip_branches()
seg_start = get_segment_ea('__text')
seg_end = idc.get_segm_end(seg_start)
for func_start in idautils.Functions(seg_start, seg_end):
fix_function_if_outlined(func_start)
if __name__ == '__main__':
fix_outlined_functions()