-
Notifications
You must be signed in to change notification settings - Fork 0
/
dcc.py
executable file
·374 lines (290 loc) · 11.9 KB
/
dcc.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
#!/usr/bin/env python
# coding=utf-8
import argparse
import logging
import os
import re
import shutil
import subprocess
import sys
import tempfile
from androguard.core import androconf
from androguard.core.analysis import analysis
from androguard.core.androconf import show_logging
from androguard.core.bytecodes import apk, dvm
from androguard.util import read
from dex2c.compiler import Dex2C
from dex2c.util import JniLongName, get_method_triple, get_access_method
APKTOOL = 'tools/apktool.jar'
SIGNJAR = 'tools/signapk.jar'
LIBNATIVECODE = 'libnc.so'
logger = logging.getLogger('dcc')
tempfiles = []
def make_temp_dir(prefix='dcc'):
global tempfiles
tmp = tempfile.mkdtemp(prefix=prefix)
tempfiles.append(tmp)
return tmp
def make_temp_file(suffix=''):
global tempfiles
fd, tmp = tempfile.mkstemp(suffix=suffix)
os.close(fd)
tempfiles.append(tmp)
return tmp
def clean_temp_files():
for name in tempfiles:
if not os.path.exists(name):
continue
logger.info('removing %s' % name)
if os.path.isdir(name):
shutil.rmtree(name)
else:
os.unlink(name)
class ApkTool(object):
@staticmethod
def decompile(apk):
outdir = make_temp_dir('dcc-apktool-')
subprocess.check_call(['java', '-jar', APKTOOL, 'd', '-r', '-f', '-o', outdir, apk])
return outdir
@staticmethod
def compile(decompiled_dir):
unsiged_apk = make_temp_file('-unsigned.apk')
subprocess.check_call(['java', '-jar', APKTOOL, 'b', '-o', unsiged_apk, decompiled_dir])
return unsiged_apk
def sign(unsigned_apk, signed_apk):
pem = os.path.join('tests/testkey/testkey.x509.pem')
pk8 = os.path.join('tests/testkey/testkey.pk8')
subprocess.check_call(['java', '-jar', SIGNJAR, pem, pk8, unsigned_apk, signed_apk])
def build_project(project_dir):
subprocess.check_call(['ndk-build', '-j8', '-C', project_dir])
def auto_vm(filename):
ret = androconf.is_android(filename)
if ret == 'APK':
return dvm.DalvikVMFormat(apk.APK(filename).get_dex())
elif ret == 'DEX':
return dvm.DalvikVMFormat(read(filename))
elif ret == 'DEY':
return dvm.DalvikOdexVMFormat(read(filename))
raise Exception("unsupported file %s" % filename)
class MethodFilter(object):
def __init__(self, configure, vm):
self._compile_filters = []
self._keep_filters = []
self._compile_full_match = set()
self.conflict_methods = set()
self.native_methods = set()
self._load_filter_configure(configure)
self._init_conflict_methods(vm)
self._init_native_methods(vm)
def _load_filter_configure(self, configure):
if not os.path.exists(configure):
return
with open(configure) as fp:
for line in fp:
line = line.strip()
if not line or line[0] == '#':
continue
if line[0] == '!':
line = line[1:].strip()
self._keep_filters.append(re.compile(line))
elif line[0] == '=':
line = line[1:].strip()
self._compile_full_match.add(line)
else:
self._compile_filters.append(re.compile(line))
def _init_conflict_methods(self, vm):
all_methods = {}
for m in vm.get_methods():
method_triple = get_method_triple(m, return_type=False)
if method_triple in all_methods:
self.conflict_methods.add(m)
self.conflict_methods.add(all_methods[method_triple])
else:
all_methods[method_triple] = m
def _init_native_methods(self, vm):
for m in vm.get_methods():
cls_name, name, _ = get_method_triple(m)
access = get_access_method(m.get_access_flags())
if 'native' in access:
self.native_methods.add((cls_name, name))
def should_compile(self, method):
# don't compile functions that have same parameter but differ return type
if method in self.conflict_methods:
return False
method_triple = get_method_triple(method)
cls_name, name, _ = method_triple
# Android VM may find the wrong method using short jni name
# don't compile function if there is a same named native method
if (cls_name, name) in self.native_methods:
return False
full_name = ''.join(method_triple)
if full_name in self._compile_full_match:
return True
for rule in self._keep_filters:
if rule.search(full_name):
return False
for rule in self._compile_filters:
if rule.search(full_name):
return True
return False
def copy_compiled_libs(project_dir, decompiled_dir):
compiled_libs_dir = os.path.join(project_dir, "libs")
decompiled_libs_dir = os.path.join(decompiled_dir, "lib")
if not os.path.exists(compiled_libs_dir):
return
if not os.path.exists(decompiled_libs_dir):
shutil.copytree(compiled_libs_dir, decompiled_libs_dir)
return
for abi in os.listdir(decompiled_libs_dir):
dst = os.path.join(decompiled_libs_dir, abi)
src = os.path.join(compiled_libs_dir, abi)
if not os.path.exists(src) and abi == 'armeabi':
src = os.path.join(compiled_libs_dir, 'armeabi-v7a')
logger.warning('Use armeabi-v7a for armeabi')
if not os.path.exists(src):
raise Exception("ABI %s is not supported!" % abi)
libnc = os.path.join(src, LIBNATIVECODE)
shutil.copy(libnc, dst)
def native_class_methods(smali_path, compiled_methods):
def _skip_until(fp, needle):
while True:
line = fp.readline()
if not line:
break
if line.strip() == needle:
break
code_lines = []
class_name = ''
with open(smali_path, 'r') as fp:
while True:
line = fp.readline()
if not line:
break
code_lines.append(line)
line = line.strip()
if line.startswith('.class'):
class_name = line.split(' ')[-1]
elif line.startswith('.method'):
current_method = line.split(' ')[-1]
param = current_method.find('(')
name, proto = current_method[:param], current_method[param:]
if (class_name, name, proto) in compiled_methods:
code_lines[-1] = code_lines[-1].replace(current_method, 'native ' + current_method)
_skip_until(fp, '.end method')
code_lines.append('.end method\n')
with open(smali_path, 'w') as fp:
fp.writelines(code_lines)
def native_compiled_dexes(decompiled_dir, compiled_methods):
# smali smali_classes2 smali_classes3 ...
classes_output = list(filter(lambda x: x.find('smali') >= 0, os.listdir(decompiled_dir)))
todo = []
for classes in classes_output:
for method_triple in compiled_methods.keys():
cls_name, name, proto = method_triple
cls_name = cls_name[1:-1] # strip L;
smali_path = os.path.join(decompiled_dir, classes, cls_name) + '.smali'
if os.path.exists(smali_path):
todo.append(smali_path)
for smali_path in todo:
native_class_methods(smali_path, compiled_methods)
def write_compiled_methods(project_dir, compiled_methods):
source_dir = os.path.join(project_dir, 'jni', 'nc')
if not os.path.exists(source_dir):
os.makedirs(source_dir)
for method_triple, code in compiled_methods.items():
full_name = JniLongName(*method_triple)
filepath = os.path.join(source_dir, full_name) + '.cpp'
if os.path.exists(filepath):
logger.warning("Overwrite file %s %s" % (filepath, method_triple))
with open(filepath, 'w') as fp:
fp.write('#include "Dex2C.h"\n' + code)
with open(os.path.join(source_dir, 'compiled_methods.txt'), 'w') as fp:
fp.write('\n'.join(list(map(''.join, compiled_methods.keys()))))
def archive_compiled_code(project_dir):
outfile = make_temp_file('-dcc')
outfile = shutil.make_archive(outfile, 'zip', project_dir)
return outfile
def compile_dex(apkfile, filtercfg):
show_logging(level=logging.INFO)
d = auto_vm(apkfile)
dx = analysis.Analysis(d)
method_filter = MethodFilter(filtercfg, d)
compiler = Dex2C(d, dx)
compiled_method_code = {}
errors = []
for m in d.get_methods():
method_triple = get_method_triple(m)
jni_longname = JniLongName(*method_triple)
full_name = ''.join(method_triple)
if len(jni_longname) > 220:
logger.debug("name to long %s(> 220) %s" % (jni_longname, full_name))
continue
if method_filter.should_compile(m):
logger.debug("compiling %s" % (full_name))
try:
code = compiler.get_source_method(m)
except Exception as e:
logger.warning("compile method failed:%s (%s)" % (full_name, str(e)), exc_info=True)
errors.append('%s:%s' % (full_name, str(e)))
continue
if code:
compiled_method_code[method_triple] = code
return compiled_method_code, errors
def is_apk(name):
return name.endswith('.apk')
def dcc(apkfile, filtercfg, outapk, do_compile=True, project_dir=None, source_archive='project-source.zip'):
if not os.path.exists(apkfile):
logger.error("file %s is not exists", apkfile)
return
compiled_methods, errors = compile_dex(apkfile, filtercfg)
if errors:
logger.warning('================================')
logger.warning('\n'.join(errors))
logger.warning('================================')
if len(compiled_methods) == 0:
logger.info("no compiled methods")
return
if project_dir:
write_compiled_methods(project_dir, compiled_methods)
else:
project_dir = make_temp_dir('dcc-project-')
shutil.rmtree(project_dir)
shutil.copytree('project', project_dir)
write_compiled_methods(project_dir, compiled_methods)
src_zip = archive_compiled_code(project_dir)
os.rename(src_zip, source_archive)
if do_compile:
build_project(project_dir)
if is_apk(apkfile) and outapk:
decompiled_dir = ApkTool.decompile(apkfile)
native_compiled_dexes(decompiled_dir, compiled_methods)
copy_compiled_libs(project_dir, decompiled_dir)
unsigned_apk = ApkTool.compile(decompiled_dir)
sign(unsigned_apk, outapk)
sys.setrecursionlimit(5000)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('infile', help='Input APK,DEX name')
parser.add_argument('-o', '--out', nargs='?', help='Output APK file name')
parser.add_argument('--sign', action='store_true', default=False, help='Sign apk')
parser.add_argument('--filter', default='filter.txt', help='Method filter configure file')
parser.add_argument('--no-build', action='store_true', default=False, help='Do not build the compiled code')
parser.add_argument('--source-dir', help='The compiled cpp code output directory.')
parser.add_argument('--project-archive', default='project-source.zip', help='Archive the project directory')
args = vars(parser.parse_args())
infile = args['infile']
outapk = args['out']
do_sign = args['sign']
filtercfg = args['filter']
do_compile = not args['no_build']
source_archive = args['project_archive']
if args['source_dir']:
project_dir = args['source_dir']
else:
project_dir = None
try:
dcc(infile, filtercfg, outapk, do_compile, project_dir, source_archive)
except Exception as e:
logger.error("Compile %s failed!" % infile, exc_info=True)
finally:
clean_temp_files()