-
Notifications
You must be signed in to change notification settings - Fork 128
/
build.py
140 lines (102 loc) · 4.45 KB
/
build.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
#!/user/bin/env python3
import logging
import lzma
import os
from pathlib import Path
import shutil
import threading
import zipfile
import concurrent.futures
import json
import requests
PATH_BASE = Path(__file__).parent.resolve()
PATH_BASE_MODULE: Path = PATH_BASE.joinpath("base")
PATH_BUILD: Path = PATH_BASE.joinpath("build")
PATH_BUILD_TMP: Path = PATH_BUILD.joinpath("tmp")
PATH_DOWNLOADS: Path = PATH_BASE.joinpath("downloads")
logger = logging.getLogger()
syslog = logging.StreamHandler()
formatter = logging.Formatter("%(threadName)s : %(message)s")
syslog.setFormatter(formatter)
logger.setLevel(logging.INFO)
logger.addHandler(syslog)
def download_file(url: str, path: Path):
file_name = url[url.rfind("/") + 1:]
logger.info(f"Downloading '{file_name}' to '{path}'")
if path.exists():
return
r = requests.get(url, allow_redirects=True)
with open(path, "wb") as f:
f.write(r.content)
logger.info("Done")
def extract_file(archive_path: Path, dest_path: Path):
logger.info(f"Extracting '{archive_path.name}' to '{dest_path.name}'")
with lzma.open(archive_path) as f:
file_content = f.read()
path = dest_path.parent
path.mkdir(parents=True, exist_ok=True)
with open(dest_path, "wb") as out:
out.write(file_content)
def create_module_prop(path: Path, project_tag: str):
module_prop = f"""id=magisk-frida
name=MagiskFrida
version={project_tag}
versionCode={project_tag.replace(".", "").replace("-", "")}
author=ViRb3 & enovella
description=Run frida-server on boot
updateJson=https://github.com/ViRb3/magisk-frida/releases/latest/download/updater.json"""
with open(path.joinpath("module.prop"), "w", newline="\n") as f:
f.write(module_prop)
def create_module(project_tag: str):
logger.info("Creating module")
if PATH_BUILD_TMP.exists():
shutil.rmtree(PATH_BUILD_TMP)
shutil.copytree(PATH_BASE_MODULE, PATH_BUILD_TMP)
create_module_prop(PATH_BUILD_TMP, project_tag)
def fill_module(arch: str, frida_tag: str, project_tag: str):
threading.current_thread().setName(arch)
logger.info(f"Filling module for arch '{arch}'")
frida_download_url = f"https://github.com/frida/frida/releases/download/{frida_tag}/"
frida_server = f"frida-server-{frida_tag}-android-{arch}.xz"
frida_server_path = PATH_DOWNLOADS.joinpath(frida_server)
download_file(frida_download_url + frida_server, frida_server_path)
files_dir = PATH_BUILD_TMP.joinpath("files")
files_dir.mkdir(exist_ok=True)
extract_file(frida_server_path, files_dir.joinpath(f"frida-server-{arch}"))
def create_updater_json(project_tag: str):
logger.info("Creating updater.json")
updater ={
"version": project_tag,
"versionCode": int(project_tag.replace(".", "").replace("-", "")),
"zipUrl": f"https://github.com/ViRb3/magisk-frida/releases/download/{project_tag}/MagiskFrida-{project_tag}.zip",
"changelog": "https://raw.githubusercontent.com/ViRb3/magisk-frida/master/CHANGELOG.md"
}
with open(PATH_BUILD.joinpath("updater.json"), "w", newline="\n") as f:
f.write(json.dumps(updater, indent = 4))
def package_module(project_tag: str):
logger.info("Packaging module")
module_zip = PATH_BUILD.joinpath(f"MagiskFrida-{project_tag}.zip")
with zipfile.ZipFile(module_zip, "w", compression=zipfile.ZIP_DEFLATED) as zf:
for root, _, files in os.walk(PATH_BUILD_TMP):
for file_name in files:
if file_name == "placeholder" or file_name == ".gitkeep":
continue
zf.write(Path(root).joinpath(file_name),
arcname=Path(root).relative_to(PATH_BUILD_TMP).joinpath(file_name))
shutil.rmtree(PATH_BUILD_TMP)
def do_build(frida_tag: str, project_tag: str):
PATH_DOWNLOADS.mkdir(parents=True, exist_ok=True)
PATH_BUILD.mkdir(parents=True, exist_ok=True)
create_module(project_tag)
archs = ["arm", "arm64", "x86", "x86_64"]
executor = concurrent.futures.ProcessPoolExecutor()
futures = [executor.submit(fill_module, arch, frida_tag, project_tag)
for arch in archs]
for future in concurrent.futures.as_completed(futures):
if future.exception() is not None:
raise future.exception()
# TODO: Causes 'OSError: The handle is invalid' in Python 3.7, revert after update
# executor.shutdown()
package_module(project_tag)
create_updater_json(project_tag)
logger.info("Done")