2017-06-03 19:39:52 +02:00
|
|
|
#!/usr/bin/env python3
|
2017-06-03 14:19:01 +02:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
|
2019-10-18 00:02:31 +02:00
|
|
|
is_windows = os.name == 'nt'
|
|
|
|
if is_windows:
|
2019-02-11 09:18:15 +01:00
|
|
|
import colorama
|
|
|
|
colorama.init()
|
|
|
|
|
2017-11-11 21:17:56 +01:00
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
def error(str):
|
2019-02-11 09:18:15 +01:00
|
|
|
print('\n' + '\033[41m' + str + '\033[0m' + '\n')
|
|
|
|
sys.exit(1)
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
def header(str):
|
2019-02-11 09:18:15 +01:00
|
|
|
print('\n' + '\033[44m' + str + '\033[0m' + '\n')
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-08-05 20:01:04 +02:00
|
|
|
def vprint(str):
|
2019-02-11 09:18:15 +01:00
|
|
|
if args.verbose:
|
|
|
|
print(str)
|
|
|
|
|
2018-08-05 20:01:04 +02:00
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
# Environment checks
|
2019-02-07 16:40:30 +01:00
|
|
|
if not sys.version_info >= (3, 6):
|
2019-02-11 09:18:15 +01:00
|
|
|
error('Requires Python 3.6+')
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2020-10-17 15:42:34 +02:00
|
|
|
if 'ANDROID_SDK_ROOT' not in os.environ:
|
|
|
|
error('Please add Android SDK path to ANDROID_SDK_ROOT environment variable!')
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
try:
|
2020-04-03 12:33:39 +02:00
|
|
|
subprocess.run(['javac', '-version'],
|
2019-02-11 09:18:15 +01:00
|
|
|
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
2017-06-03 14:19:01 +02:00
|
|
|
except FileNotFoundError:
|
2020-04-03 12:33:39 +02:00
|
|
|
error('Please install JDK and make sure \'javac\' is available in PATH')
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
import argparse
|
|
|
|
import multiprocessing
|
|
|
|
import zipfile
|
|
|
|
import datetime
|
|
|
|
import errno
|
2017-07-30 18:59:41 +02:00
|
|
|
import shutil
|
2017-08-02 12:23:42 +02:00
|
|
|
import lzma
|
2017-11-14 22:25:19 +01:00
|
|
|
import tempfile
|
2020-04-03 12:33:39 +02:00
|
|
|
import platform
|
|
|
|
import urllib.request
|
|
|
|
import os.path as op
|
|
|
|
from distutils.dir_util import copy_tree
|
2017-12-04 08:16:41 +01:00
|
|
|
|
2018-05-12 21:04:40 +02:00
|
|
|
cpu_count = multiprocessing.cpu_count()
|
2018-06-10 10:55:00 +02:00
|
|
|
archs = ['armeabi-v7a', 'x86']
|
2019-02-24 14:13:27 +01:00
|
|
|
arch64 = ['arm64-v8a', 'x86_64']
|
2020-01-20 17:48:52 +01:00
|
|
|
support_targets = ['magisk', 'magiskinit', 'magiskboot', 'magiskpolicy', 'resetprop', 'busybox', 'test']
|
2019-05-31 06:17:58 +02:00
|
|
|
default_targets = ['magisk', 'magiskinit', 'magiskboot', 'busybox']
|
2020-04-03 12:33:39 +02:00
|
|
|
|
2020-10-17 15:32:49 +02:00
|
|
|
ndk_ver = '21d'
|
|
|
|
ndk_ver_full = '21.3.6528147'
|
2020-04-03 12:33:39 +02:00
|
|
|
|
2020-10-17 15:42:34 +02:00
|
|
|
ndk_root = op.join(os.environ['ANDROID_SDK_ROOT'], 'ndk')
|
2020-04-03 12:33:39 +02:00
|
|
|
ndk_path = op.join(ndk_root, 'magisk')
|
|
|
|
ndk_build = op.join(ndk_path, 'ndk-build')
|
|
|
|
gradlew = op.join('.', 'gradlew' + ('.bat' if is_windows else ''))
|
2018-05-12 21:04:40 +02:00
|
|
|
|
2019-10-18 00:02:31 +02:00
|
|
|
# Global vars
|
|
|
|
config = {}
|
|
|
|
STDOUT = None
|
2019-02-11 09:18:15 +01:00
|
|
|
|
2017-11-05 22:41:03 +01:00
|
|
|
def mv(source, target):
|
2019-02-11 09:18:15 +01:00
|
|
|
try:
|
|
|
|
shutil.move(source, target)
|
2020-04-03 12:33:39 +02:00
|
|
|
vprint(f'mv {source} -> {target}')
|
2019-02-11 23:14:29 +01:00
|
|
|
except:
|
2019-02-11 09:18:15 +01:00
|
|
|
pass
|
|
|
|
|
2017-11-05 22:41:03 +01:00
|
|
|
|
|
|
|
def cp(source, target):
|
2019-02-11 09:18:15 +01:00
|
|
|
try:
|
|
|
|
shutil.copyfile(source, target)
|
2020-04-03 12:33:39 +02:00
|
|
|
vprint(f'cp {source} -> {target}')
|
2019-02-11 23:14:29 +01:00
|
|
|
except:
|
2019-02-11 09:18:15 +01:00
|
|
|
pass
|
|
|
|
|
2017-11-05 22:41:03 +01:00
|
|
|
|
|
|
|
def rm(file):
|
2019-02-11 09:18:15 +01:00
|
|
|
try:
|
|
|
|
os.remove(file)
|
2020-04-03 12:33:39 +02:00
|
|
|
vprint(f'rm {file}')
|
2019-02-11 09:18:15 +01:00
|
|
|
except OSError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2020-04-03 12:33:39 +02:00
|
|
|
def rm_rf(path):
|
|
|
|
vprint(f'rm -rf {path}')
|
|
|
|
shutil.rmtree(path, ignore_errors=True)
|
|
|
|
|
|
|
|
|
|
|
|
def mkdir(path, mode=0o755):
|
2019-02-11 09:18:15 +01:00
|
|
|
try:
|
|
|
|
os.mkdir(path, mode)
|
2019-02-11 23:14:29 +01:00
|
|
|
except:
|
2019-02-11 09:18:15 +01:00
|
|
|
pass
|
|
|
|
|
2017-11-05 22:41:03 +01:00
|
|
|
|
2020-04-03 12:33:39 +02:00
|
|
|
def mkdir_p(path, mode=0o755):
|
2019-02-11 09:18:15 +01:00
|
|
|
os.makedirs(path, mode, exist_ok=True)
|
|
|
|
|
|
|
|
|
2019-10-17 22:20:01 +02:00
|
|
|
def execv(cmd):
|
|
|
|
return subprocess.run(cmd, stdout=STDOUT)
|
2019-08-21 20:51:17 +02:00
|
|
|
|
|
|
|
|
2019-10-17 22:20:01 +02:00
|
|
|
def system(cmd):
|
|
|
|
return subprocess.run(cmd, shell=True, stdout=STDOUT)
|
2019-08-21 20:51:17 +02:00
|
|
|
|
|
|
|
|
2020-12-24 13:46:31 +01:00
|
|
|
def cmd_out(cmd):
|
|
|
|
return subprocess.check_output(cmd).strip().decode('utf-8')
|
|
|
|
|
|
|
|
|
2019-08-21 20:51:17 +02:00
|
|
|
def xz(data):
|
|
|
|
return lzma.compress(data, preset=9, check=lzma.CHECK_NONE)
|
|
|
|
|
|
|
|
|
2020-04-03 12:33:39 +02:00
|
|
|
def parse_props(file):
|
|
|
|
props = {}
|
|
|
|
with open(file, 'r') as f:
|
|
|
|
for line in [l.strip(' \t\r\n') for l in f]:
|
|
|
|
if line.startswith('#') or len(line) == 0:
|
|
|
|
continue
|
|
|
|
prop = line.split('=')
|
|
|
|
if len(prop) != 2:
|
|
|
|
continue
|
2020-12-24 13:46:31 +01:00
|
|
|
value = prop[1].strip(' \t\r\n')
|
|
|
|
if len(value) == 0:
|
|
|
|
continue
|
|
|
|
props[prop[0].strip(' \t\r\n')] = value
|
2020-04-03 12:33:39 +02:00
|
|
|
return props
|
|
|
|
|
|
|
|
|
2019-10-17 22:20:01 +02:00
|
|
|
def load_config(args):
|
2020-12-24 13:46:31 +01:00
|
|
|
commit_hash = cmd_out(['git', 'rev-parse', '--short=8', 'refs/heads/master'])
|
|
|
|
commit_count = cmd_out(['git', 'rev-list', '--count', 'refs/heads/master'])
|
2020-04-03 12:33:39 +02:00
|
|
|
|
2019-10-17 22:20:01 +02:00
|
|
|
# Some default values
|
2020-12-24 13:46:31 +01:00
|
|
|
config['version'] = commit_hash
|
|
|
|
config['versionCode'] = 2147483647
|
|
|
|
config['appVersion'] = commit_hash
|
|
|
|
config['appVersionCode'] = commit_count
|
2019-10-17 22:20:01 +02:00
|
|
|
config['outdir'] = 'out'
|
|
|
|
config['prettyName'] = 'false'
|
|
|
|
config['keyStore'] = 'release-key.jks'
|
|
|
|
|
2020-12-24 13:46:31 +01:00
|
|
|
# Load prop file
|
|
|
|
if op.exists(args.config):
|
|
|
|
config.update(parse_props(args.config))
|
2019-10-23 12:57:47 +02:00
|
|
|
|
2020-04-03 12:33:39 +02:00
|
|
|
# Sanitize configs
|
2019-10-17 22:20:01 +02:00
|
|
|
|
|
|
|
config['prettyName'] = config['prettyName'].lower() == 'true'
|
|
|
|
|
|
|
|
try:
|
|
|
|
config['versionCode'] = int(config['versionCode'])
|
|
|
|
except ValueError:
|
|
|
|
error('Config error: "versionCode" is required to be an integer')
|
|
|
|
|
|
|
|
mkdir_p(config['outdir'])
|
|
|
|
global STDOUT
|
|
|
|
STDOUT = None if args.verbose else subprocess.DEVNULL
|
|
|
|
|
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
def zip_with_msg(zip_file, source, target):
|
2020-04-03 12:33:39 +02:00
|
|
|
if not op.exists(source):
|
2019-02-11 09:18:15 +01:00
|
|
|
error(f'{source} does not exist! Try build \'binary\' and \'apk\' before zipping!')
|
|
|
|
zip_file.write(source, target)
|
|
|
|
vprint(f'zip: {source} -> {target}')
|
2017-11-05 22:41:03 +01:00
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-05-12 21:04:40 +02:00
|
|
|
def collect_binary():
|
2019-02-24 14:13:27 +01:00
|
|
|
for arch in archs + arch64:
|
2020-04-03 12:33:39 +02:00
|
|
|
mkdir_p(op.join('native', 'out', arch))
|
2019-05-31 06:17:58 +02:00
|
|
|
for bin in support_targets + ['magiskinit64']:
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('native', 'libs', arch, bin)
|
|
|
|
target = op.join('native', 'out', arch, bin)
|
2019-02-11 09:18:15 +01:00
|
|
|
mv(source, target)
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2019-08-21 20:51:17 +02:00
|
|
|
def clean_elf():
|
2019-10-18 00:02:31 +02:00
|
|
|
if is_windows:
|
2020-04-03 12:33:39 +02:00
|
|
|
elf_cleaner = op.join('tools', 'elf-cleaner.exe')
|
2019-08-21 20:51:17 +02:00
|
|
|
else:
|
2020-04-03 12:33:39 +02:00
|
|
|
elf_cleaner = op.join('native', 'out', 'elf-cleaner')
|
|
|
|
if not op.exists(elf_cleaner):
|
2020-04-01 04:58:26 +02:00
|
|
|
execv(['g++', '-std=c++11', 'tools/termux-elf-cleaner/termux-elf-cleaner.cpp',
|
2019-10-18 00:02:31 +02:00
|
|
|
'-o', elf_cleaner])
|
2019-08-21 20:51:17 +02:00
|
|
|
args = [elf_cleaner]
|
2020-04-03 12:33:39 +02:00
|
|
|
args.extend(op.join('native', 'out', arch, 'magisk') for arch in archs + arch64)
|
2019-08-21 20:51:17 +02:00
|
|
|
execv(args)
|
2019-02-11 09:18:15 +01:00
|
|
|
|
2018-08-09 23:03:54 +02:00
|
|
|
|
2018-08-09 22:41:21 +02:00
|
|
|
def sign_zip(unsigned, output, release):
|
2019-08-21 20:51:17 +02:00
|
|
|
if not release:
|
|
|
|
mv(unsigned, output)
|
|
|
|
return
|
|
|
|
|
2020-08-08 14:07:25 +02:00
|
|
|
signer_name = 'zipsigner-4.0.jar'
|
2020-07-04 13:09:19 +02:00
|
|
|
zipsigner = op.join('app', 'signing', 'build', 'libs', signer_name)
|
2018-08-09 22:41:21 +02:00
|
|
|
|
2020-04-03 12:33:39 +02:00
|
|
|
if not op.exists(zipsigner):
|
2019-02-11 09:18:15 +01:00
|
|
|
header('* Building ' + signer_name)
|
2020-07-04 13:09:19 +02:00
|
|
|
proc = execv([gradlew, 'app:signing:shadowJar'])
|
2019-02-11 09:18:15 +01:00
|
|
|
if proc.returncode != 0:
|
|
|
|
error(f'Build {signer_name} failed!')
|
2018-08-09 22:41:21 +02:00
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
header('* Signing Zip')
|
2018-08-09 22:41:21 +02:00
|
|
|
|
2019-10-17 22:20:01 +02:00
|
|
|
proc = execv(['java', '-jar', zipsigner, config['keyStore'], config['keyStorePass'],
|
2019-08-21 20:51:17 +02:00
|
|
|
config['keyAlias'], config['keyPass'], unsigned, output])
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Signing zip failed!')
|
2018-08-09 22:41:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
def binary_dump(src, out, var_name):
|
2019-08-21 20:51:17 +02:00
|
|
|
out.write(f'constexpr unsigned char {var_name}[] = {{')
|
2019-02-11 09:18:15 +01:00
|
|
|
for i, c in enumerate(xz(src.read())):
|
|
|
|
if i % 16 == 0:
|
|
|
|
out.write('\n')
|
|
|
|
out.write(f'0x{c:02X},')
|
|
|
|
out.write('\n};\n')
|
|
|
|
out.flush()
|
|
|
|
|
2018-08-09 22:41:21 +02:00
|
|
|
|
|
|
|
def gen_update_binary():
|
2019-02-11 09:18:15 +01:00
|
|
|
bs = 1024
|
|
|
|
update_bin = bytearray(bs)
|
2020-04-03 12:33:39 +02:00
|
|
|
file = op.join('native', 'out', 'x86', 'busybox')
|
2019-02-11 09:18:15 +01:00
|
|
|
with open(file, 'rb') as f:
|
|
|
|
x86_bb = f.read()
|
2020-04-03 12:33:39 +02:00
|
|
|
file = op.join('native', 'out', 'armeabi-v7a', 'busybox')
|
2019-02-11 09:18:15 +01:00
|
|
|
with open(file, 'rb') as f:
|
|
|
|
arm_bb = f.read()
|
2020-04-03 12:33:39 +02:00
|
|
|
file = op.join('scripts', 'update_binary.sh')
|
2019-02-11 09:18:15 +01:00
|
|
|
with open(file, 'rb') as f:
|
|
|
|
script = f.read()
|
|
|
|
# Align x86 busybox to bs
|
2019-08-21 20:51:17 +02:00
|
|
|
blk_cnt = (len(x86_bb) - 1) // bs + 1
|
|
|
|
script = script.replace(b'__X86_CNT__', b'%d' % blk_cnt)
|
2019-02-11 09:18:15 +01:00
|
|
|
update_bin[:len(script)] = script
|
|
|
|
update_bin.extend(x86_bb)
|
|
|
|
# Padding for alignment
|
2019-08-21 20:51:17 +02:00
|
|
|
update_bin.extend(b'\0' * (blk_cnt * bs - len(x86_bb)))
|
2019-02-11 09:18:15 +01:00
|
|
|
update_bin.extend(arm_bb)
|
|
|
|
return update_bin
|
|
|
|
|
2018-08-09 22:41:21 +02:00
|
|
|
|
2019-02-24 14:13:27 +01:00
|
|
|
def run_ndk_build(flags):
|
2020-04-07 07:45:08 +02:00
|
|
|
os.chdir('native')
|
|
|
|
proc = system(f'{ndk_build} {base_flags} {flags} -j{cpu_count}')
|
2019-02-24 14:13:27 +01:00
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Build binary failed!')
|
2020-04-07 07:45:08 +02:00
|
|
|
os.chdir('..')
|
2019-02-24 14:13:27 +01:00
|
|
|
collect_binary()
|
|
|
|
|
|
|
|
|
2020-03-28 07:23:26 +01:00
|
|
|
def dump_bin_headers():
|
|
|
|
for arch in archs:
|
2020-04-03 12:33:39 +02:00
|
|
|
bin_file = op.join('native', 'out', arch, 'magisk')
|
|
|
|
if not op.exists(bin_file):
|
2020-03-28 07:23:26 +01:00
|
|
|
error('Build "magisk" before building "magiskinit"')
|
2020-04-03 12:33:39 +02:00
|
|
|
with open(op.join('native', 'out', arch, 'binaries_arch.h'), 'w') as out:
|
2020-03-28 07:23:26 +01:00
|
|
|
with open(bin_file, 'rb') as src:
|
|
|
|
binary_dump(src, out, 'magisk_xz')
|
|
|
|
for arch, arch32 in list(zip(arch64, archs)):
|
2020-04-03 12:33:39 +02:00
|
|
|
bin_file = op.join('native', 'out', arch, 'magisk')
|
|
|
|
with open(op.join('native', 'out', arch32, 'binaries_arch64.h'), 'w') as out:
|
2020-03-28 07:23:26 +01:00
|
|
|
with open(bin_file, 'rb') as src:
|
|
|
|
binary_dump(src, out, 'magisk_xz')
|
2020-04-03 12:33:39 +02:00
|
|
|
stub = op.join(config['outdir'], 'stub-release.apk')
|
|
|
|
if not op.exists(stub):
|
2020-12-05 23:30:45 +01:00
|
|
|
error('Build stub APK before building "magiskinit"')
|
2020-04-03 12:33:39 +02:00
|
|
|
with open(op.join('native', 'out', 'binaries.h'), 'w') as out:
|
2020-03-28 07:23:26 +01:00
|
|
|
with open(stub, 'rb') as src:
|
|
|
|
binary_dump(src, out, 'manager_xz')
|
|
|
|
|
|
|
|
|
2018-05-12 21:04:40 +02:00
|
|
|
def build_binary(args):
|
2020-04-03 12:33:39 +02:00
|
|
|
# Verify NDK install
|
|
|
|
props = parse_props(op.join(ndk_path, 'source.properties'))
|
2020-10-17 15:32:49 +02:00
|
|
|
if props['Pkg.Revision'] != ndk_ver_full:
|
|
|
|
error('Incorrect NDK. Please install/upgrade NDK with "build.py ndk"')
|
2020-04-03 12:33:39 +02:00
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
if args.target:
|
2019-05-31 06:17:58 +02:00
|
|
|
args.target = set(args.target) & set(support_targets)
|
2019-02-24 14:13:27 +01:00
|
|
|
if not args.target:
|
|
|
|
return
|
2019-02-11 09:18:15 +01:00
|
|
|
else:
|
2019-05-31 06:17:58 +02:00
|
|
|
args.target = default_targets
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
header('* Building binaries: ' + ' '.join(args.target))
|
|
|
|
|
2020-12-24 13:46:31 +01:00
|
|
|
update_flags = True
|
2020-12-18 01:05:02 +01:00
|
|
|
flags = op.join('native', 'jni', 'include', 'flags.hpp')
|
2020-12-24 13:46:31 +01:00
|
|
|
|
|
|
|
if op.exists(args.config):
|
|
|
|
config_stat = os.stat(args.config)
|
|
|
|
update_flags = config_stat.st_mtime_ns > os.stat(flags).st_mtime_ns
|
|
|
|
|
|
|
|
if update_flags:
|
|
|
|
os.utime(flags)
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
# Basic flags
|
2019-02-24 14:13:27 +01:00
|
|
|
global base_flags
|
2019-02-12 11:17:02 +01:00
|
|
|
base_flags = f'MAGISK_VERSION={config["version"]} MAGISK_VER_CODE={config["versionCode"]}'
|
2019-02-11 09:18:15 +01:00
|
|
|
if not args.release:
|
|
|
|
base_flags += ' MAGISK_DEBUG=1'
|
|
|
|
|
|
|
|
if 'magisk' in args.target:
|
2019-04-05 21:17:57 +02:00
|
|
|
run_ndk_build('B_MAGISK=1 B_64BIT=1')
|
2019-08-21 20:51:17 +02:00
|
|
|
clean_elf()
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
if 'magiskinit' in args.target:
|
2020-03-28 07:23:26 +01:00
|
|
|
dump_bin_headers()
|
2019-02-24 14:13:27 +01:00
|
|
|
run_ndk_build('B_INIT=1')
|
|
|
|
run_ndk_build('B_INIT64=1')
|
2019-02-11 09:18:15 +01:00
|
|
|
|
2019-05-31 06:17:58 +02:00
|
|
|
if 'magiskpolicy' in args.target:
|
|
|
|
run_ndk_build('B_POLICY=1')
|
|
|
|
|
2020-01-20 17:48:52 +01:00
|
|
|
if 'resetprop' in args.target:
|
|
|
|
run_ndk_build('B_PROP=1')
|
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
if 'magiskboot' in args.target:
|
2019-02-24 14:13:27 +01:00
|
|
|
run_ndk_build('B_BOOT=1')
|
2019-02-11 09:18:15 +01:00
|
|
|
|
2019-07-08 02:38:22 +02:00
|
|
|
if 'busybox' in args.target:
|
|
|
|
run_ndk_build('B_BB=1')
|
|
|
|
|
2019-04-01 08:46:09 +02:00
|
|
|
if 'test' in args.target:
|
2019-04-05 21:17:57 +02:00
|
|
|
run_ndk_build('B_TEST=1 B_64BIT=1')
|
2019-04-01 08:46:09 +02:00
|
|
|
|
2017-11-05 22:41:03 +01:00
|
|
|
|
2019-03-08 16:16:02 +01:00
|
|
|
def build_apk(args, module):
|
2020-12-05 23:30:45 +01:00
|
|
|
build_type = 'Release' if args.release or module == 'stub' else 'Debug'
|
2017-07-30 18:59:41 +02:00
|
|
|
|
2019-03-08 16:19:22 +01:00
|
|
|
proc = execv([gradlew, f'{module}:assemble{build_type}',
|
2020-04-03 12:33:39 +02:00
|
|
|
'-PconfigPath=' + op.abspath(args.config)])
|
2019-02-11 09:18:15 +01:00
|
|
|
if proc.returncode != 0:
|
2019-10-18 00:02:31 +02:00
|
|
|
error(f'Build {module} failed!')
|
2017-06-03 16:04:22 +02:00
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
build_type = build_type.lower()
|
2019-03-08 16:16:02 +01:00
|
|
|
apk = f'{module}-{build_type}.apk'
|
2019-02-11 09:18:15 +01:00
|
|
|
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join(module, 'build', 'outputs', 'apk', build_type, apk)
|
|
|
|
target = op.join(config['outdir'], apk)
|
2020-07-02 13:01:56 +02:00
|
|
|
mv(source, target)
|
2019-02-11 09:18:15 +01:00
|
|
|
header('Output: ' + target)
|
|
|
|
return target
|
2018-08-09 23:54:26 +02:00
|
|
|
|
2017-11-05 22:41:03 +01:00
|
|
|
|
2018-08-20 06:02:38 +02:00
|
|
|
def build_app(args):
|
2019-03-12 22:01:37 +01:00
|
|
|
header('* Building Magisk Manager')
|
2019-03-08 16:16:02 +01:00
|
|
|
build_apk(args, 'app')
|
2019-02-11 09:18:15 +01:00
|
|
|
|
2018-05-27 08:55:24 +02:00
|
|
|
|
2018-08-20 06:02:38 +02:00
|
|
|
def build_stub(args):
|
2019-03-12 22:01:37 +01:00
|
|
|
header('* Building Magisk Manager stub')
|
2020-03-28 07:23:26 +01:00
|
|
|
build_apk(args, 'stub')
|
2019-02-11 09:18:15 +01:00
|
|
|
|
2020-07-04 13:09:19 +02:00
|
|
|
|
2020-06-30 11:24:58 +02:00
|
|
|
def build_snet(args):
|
2020-08-24 15:24:44 +02:00
|
|
|
if not op.exists(op.join('snet', 'src', 'main', 'java', 'com', 'topjohnwu', 'snet')):
|
|
|
|
error('snet sources have to be bind mounted on top of the stub folder')
|
2020-06-30 11:24:58 +02:00
|
|
|
header('* Building snet extension')
|
|
|
|
proc = execv([gradlew, 'stub:assembleRelease'])
|
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Build snet extention failed!')
|
|
|
|
source = op.join('stub', 'build', 'outputs', 'apk',
|
|
|
|
'release', 'stub-release.apk')
|
|
|
|
target = op.join(config['outdir'], 'snet.jar')
|
|
|
|
# Extract classes.dex
|
|
|
|
with zipfile.ZipFile(target, 'w', compression=zipfile.ZIP_DEFLATED, allowZip64=False) as zout:
|
|
|
|
with zipfile.ZipFile(source) as zin:
|
|
|
|
zout.writestr('classes.dex', zin.read('classes.dex'))
|
|
|
|
rm(source)
|
|
|
|
header('Output: ' + target)
|
|
|
|
|
2018-08-09 23:15:39 +02:00
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
def zip_main(args):
|
2019-02-11 09:18:15 +01:00
|
|
|
header('* Packing Flashable Zip')
|
|
|
|
|
2019-10-18 00:02:31 +02:00
|
|
|
with tempfile.NamedTemporaryFile(delete=False) as f:
|
|
|
|
unsigned = f.name
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
with zipfile.ZipFile(unsigned, 'w', compression=zipfile.ZIP_DEFLATED, allowZip64=False) as zipf:
|
|
|
|
# update-binary
|
2020-04-03 12:33:39 +02:00
|
|
|
target = op.join('META-INF', 'com', 'google',
|
|
|
|
'android', 'update-binary')
|
2019-02-11 09:18:15 +01:00
|
|
|
vprint('zip: ' + target)
|
|
|
|
zipf.writestr(target, gen_update_binary())
|
2019-08-21 20:51:17 +02:00
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
# updater-script
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('scripts', 'flash_script.sh')
|
|
|
|
target = op.join('META-INF', 'com', 'google',
|
|
|
|
'android', 'updater-script')
|
2019-02-11 09:18:15 +01:00
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
|
|
|
# Binaries
|
|
|
|
for lib_dir, zip_dir in [('armeabi-v7a', 'arm'), ('x86', 'x86')]:
|
2019-02-24 14:13:27 +01:00
|
|
|
for binary in ['magiskinit', 'magiskinit64', 'magiskboot']:
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('native', 'out', lib_dir, binary)
|
|
|
|
target = op.join(zip_dir, binary)
|
2019-02-11 09:18:15 +01:00
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
|
|
|
# APK
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join(
|
2019-03-08 16:16:02 +01:00
|
|
|
config['outdir'], 'app-release.apk' if args.release else 'app-debug.apk')
|
2020-04-03 12:33:39 +02:00
|
|
|
target = op.join('common', 'magisk.apk')
|
2019-02-11 09:18:15 +01:00
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
|
|
|
# boot_patch.sh
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('scripts', 'boot_patch.sh')
|
|
|
|
target = op.join('common', 'boot_patch.sh')
|
2019-02-11 09:18:15 +01:00
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
# util_functions.sh
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('scripts', 'util_functions.sh')
|
2019-02-11 09:18:15 +01:00
|
|
|
with open(source, 'r') as script:
|
|
|
|
# Add version info util_functions.sh
|
2019-03-08 16:19:22 +01:00
|
|
|
util_func = script.read().replace(
|
|
|
|
'#MAGISK_VERSION_STUB',
|
|
|
|
f'MAGISK_VER="{config["version"]}"\nMAGISK_VER_CODE={config["versionCode"]}')
|
2020-04-03 12:33:39 +02:00
|
|
|
target = op.join('common', 'util_functions.sh')
|
2019-02-11 09:18:15 +01:00
|
|
|
vprint(f'zip: {source} -> {target}')
|
|
|
|
zipf.writestr(target, util_func)
|
|
|
|
# addon.d.sh
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('scripts', 'addon.d.sh')
|
|
|
|
target = op.join('common', 'addon.d.sh')
|
2019-02-11 09:18:15 +01:00
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
2019-08-21 20:51:17 +02:00
|
|
|
# chromeos
|
|
|
|
for tool in ['futility', 'kernel_data_key.vbprivk', 'kernel.keyblock']:
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('tools', tool)
|
|
|
|
target = op.join('chromeos', tool)
|
2019-08-21 20:51:17 +02:00
|
|
|
zip_with_msg(zipf, source, target)
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
# End of zipping
|
|
|
|
|
2020-04-03 12:33:39 +02:00
|
|
|
output = op.join(config['outdir'], f'Magisk-v{config["version"]}.zip' if config['prettyName'] else
|
|
|
|
'magisk-release.zip' if args.release else 'magisk-debug.zip')
|
2019-02-11 09:18:15 +01:00
|
|
|
sign_zip(unsigned, output, args.release)
|
2019-10-18 00:02:31 +02:00
|
|
|
rm(unsigned)
|
2019-02-11 09:18:15 +01:00
|
|
|
header('Output: ' + output)
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
def zip_uninstaller(args):
|
2019-02-11 09:18:15 +01:00
|
|
|
header('* Packing Uninstaller Zip')
|
|
|
|
|
2019-10-18 00:02:31 +02:00
|
|
|
with tempfile.NamedTemporaryFile(delete=False) as f:
|
|
|
|
unsigned = f.name
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
with zipfile.ZipFile(unsigned, 'w', compression=zipfile.ZIP_DEFLATED, allowZip64=False) as zipf:
|
|
|
|
# update-binary
|
2020-04-03 12:33:39 +02:00
|
|
|
target = op.join('META-INF', 'com', 'google',
|
|
|
|
'android', 'update-binary')
|
2019-02-11 09:18:15 +01:00
|
|
|
vprint('zip: ' + target)
|
|
|
|
zipf.writestr(target, gen_update_binary())
|
|
|
|
# updater-script
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('scripts', 'magisk_uninstaller.sh')
|
|
|
|
target = op.join('META-INF', 'com', 'google',
|
|
|
|
'android', 'updater-script')
|
2019-02-11 09:18:15 +01:00
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
|
|
|
# Binaries
|
|
|
|
for lib_dir, zip_dir in [('armeabi-v7a', 'arm'), ('x86', 'x86')]:
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('native', 'out', lib_dir, 'magiskboot')
|
|
|
|
target = op.join(zip_dir, 'magiskboot')
|
2019-02-24 08:11:11 +01:00
|
|
|
zip_with_msg(zipf, source, target)
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
# util_functions.sh
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('scripts', 'util_functions.sh')
|
2019-02-11 09:18:15 +01:00
|
|
|
with open(source, 'r') as script:
|
2020-04-03 12:33:39 +02:00
|
|
|
target = op.join('util_functions.sh')
|
2019-02-11 09:18:15 +01:00
|
|
|
vprint(f'zip: {source} -> {target}')
|
|
|
|
zipf.writestr(target, script.read())
|
|
|
|
|
2019-08-21 20:51:17 +02:00
|
|
|
# chromeos
|
|
|
|
for tool in ['futility', 'kernel_data_key.vbprivk', 'kernel.keyblock']:
|
2020-04-03 12:33:39 +02:00
|
|
|
source = op.join('tools', tool)
|
|
|
|
target = op.join('chromeos', tool)
|
2019-08-21 20:51:17 +02:00
|
|
|
zip_with_msg(zipf, source, target)
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
# End of zipping
|
|
|
|
|
2019-08-21 20:51:17 +02:00
|
|
|
datestr = datetime.datetime.now().strftime("%Y%m%d")
|
2020-04-03 12:33:39 +02:00
|
|
|
output = op.join(config['outdir'], f'Magisk-uninstaller-{datestr}.zip'
|
|
|
|
if config['prettyName'] else 'magisk-uninstaller.zip')
|
2019-02-11 09:18:15 +01:00
|
|
|
sign_zip(unsigned, output, args.release)
|
2019-10-18 00:02:31 +02:00
|
|
|
rm(unsigned)
|
2019-02-11 09:18:15 +01:00
|
|
|
header('Output: ' + output)
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
def cleanup(args):
|
2019-02-11 09:18:15 +01:00
|
|
|
support_targets = {'native', 'java'}
|
|
|
|
if args.target:
|
|
|
|
args.target = set(args.target) & support_targets
|
|
|
|
else:
|
|
|
|
# If nothing specified, clean everything
|
|
|
|
args.target = support_targets
|
|
|
|
|
|
|
|
if 'native' in args.target:
|
|
|
|
header('* Cleaning native')
|
2020-04-03 12:33:39 +02:00
|
|
|
rm_rf(op.join('native', 'out'))
|
|
|
|
rm_rf(op.join('native', 'libs'))
|
|
|
|
rm_rf(op.join('native', 'obj'))
|
2019-02-11 09:18:15 +01:00
|
|
|
|
|
|
|
if 'java' in args.target:
|
|
|
|
header('* Cleaning java')
|
2019-03-12 22:01:37 +01:00
|
|
|
execv([gradlew, 'clean'])
|
2019-02-11 09:18:15 +01:00
|
|
|
|
2018-05-12 21:04:40 +02:00
|
|
|
|
2020-04-03 12:33:39 +02:00
|
|
|
def setup_ndk(args):
|
|
|
|
os_name = platform.system().lower()
|
|
|
|
url = f'https://dl.google.com/android/repository/android-ndk-r{ndk_ver}-{os_name}-x86_64.zip'
|
|
|
|
ndk_zip = url.split('/')[-1]
|
|
|
|
|
|
|
|
header(f'* Downloading {ndk_zip}')
|
|
|
|
with urllib.request.urlopen(url) as response, open(ndk_zip, 'wb') as out_file:
|
|
|
|
shutil.copyfileobj(response, out_file)
|
|
|
|
|
|
|
|
header('* Extracting NDK zip')
|
|
|
|
rm_rf(ndk_path)
|
|
|
|
with zipfile.ZipFile(ndk_zip, 'r') as zf:
|
|
|
|
for info in zf.infolist():
|
|
|
|
extracted_path = zf.extract(info, ndk_root)
|
|
|
|
vprint(f'Extracting {info.filename}')
|
|
|
|
if info.create_system == 3: # ZIP_UNIX_SYSTEM = 3
|
|
|
|
unix_attributes = info.external_attr >> 16
|
|
|
|
if unix_attributes:
|
|
|
|
os.chmod(extracted_path, unix_attributes)
|
|
|
|
mv(op.join(ndk_root, f'android-ndk-r{ndk_ver}'), ndk_path)
|
|
|
|
|
|
|
|
header('* Removing unnecessary files')
|
|
|
|
for dirname, subdirs, _ in os.walk(op.join(ndk_path, 'platforms')):
|
|
|
|
for plats in subdirs:
|
|
|
|
pp = op.join(dirname, plats)
|
|
|
|
rm_rf(pp)
|
|
|
|
mkdir(pp)
|
|
|
|
subdirs.clear()
|
|
|
|
rm_rf(op.join(ndk_path, 'sysroot'))
|
|
|
|
|
|
|
|
header('* Replacing API-16 static libs')
|
2020-05-31 12:42:13 +02:00
|
|
|
for target in ['arm-linux-androideabi', 'i686-linux-android']:
|
|
|
|
arch = target.split('-')[0]
|
2020-04-03 12:33:39 +02:00
|
|
|
lib_dir = op.join(
|
|
|
|
ndk_path, 'toolchains', 'llvm', 'prebuilt', f'{os_name}-x86_64',
|
2020-05-31 12:42:13 +02:00
|
|
|
'sysroot', 'usr', 'lib', f'{target}', '16')
|
2020-04-03 12:33:39 +02:00
|
|
|
src_dir = op.join('tools', 'ndk-bins', arch)
|
|
|
|
# Remove stupid macOS crap
|
|
|
|
rm(op.join(src_dir, '.DS_Store'))
|
|
|
|
for path in copy_tree(src_dir, lib_dir):
|
|
|
|
vprint(f'Replaced {path}')
|
|
|
|
|
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
def build_all(args):
|
2019-02-11 09:18:15 +01:00
|
|
|
vars(args)['target'] = []
|
|
|
|
build_stub(args)
|
|
|
|
build_app(args)
|
|
|
|
build_binary(args)
|
|
|
|
zip_main(args)
|
|
|
|
zip_uninstaller(args)
|
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
parser = argparse.ArgumentParser(description='Magisk build script')
|
2019-02-11 09:18:15 +01:00
|
|
|
parser.add_argument('-r', '--release', action='store_true',
|
2019-10-17 22:20:01 +02:00
|
|
|
help='compile in release mode')
|
2019-02-11 09:18:15 +01:00
|
|
|
parser.add_argument('-v', '--verbose', action='store_true',
|
|
|
|
help='verbose output')
|
|
|
|
parser.add_argument('-c', '--config', default='config.prop',
|
2020-12-24 13:46:31 +01:00
|
|
|
help='set config file (default: config.prop)')
|
2017-06-03 14:19:01 +02:00
|
|
|
subparsers = parser.add_subparsers(title='actions')
|
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
all_parser = subparsers.add_parser(
|
2019-10-17 22:20:01 +02:00
|
|
|
'all', help='build binaries, apks, zips')
|
2017-06-03 14:19:01 +02:00
|
|
|
all_parser.set_defaults(func=build_all)
|
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
binary_parser = subparsers.add_parser('binary', help='build binaries')
|
2019-02-11 09:18:15 +01:00
|
|
|
binary_parser.add_argument(
|
2019-10-17 22:20:01 +02:00
|
|
|
'target', nargs='*', help=f"{', '.join(support_targets)}, \
|
2019-05-31 06:17:58 +02:00
|
|
|
or empty for defaults ({', '.join(default_targets)})")
|
2017-06-03 14:19:01 +02:00
|
|
|
binary_parser.set_defaults(func=build_binary)
|
|
|
|
|
2019-10-17 22:20:01 +02:00
|
|
|
app_parser = subparsers.add_parser('app', help='build Magisk Manager')
|
|
|
|
app_parser.set_defaults(func=build_app)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
stub_parser = subparsers.add_parser(
|
2019-10-17 22:20:01 +02:00
|
|
|
'stub', help='build stub Magisk Manager')
|
2018-08-09 23:15:39 +02:00
|
|
|
stub_parser.set_defaults(func=build_stub)
|
|
|
|
|
2020-08-24 15:24:44 +02:00
|
|
|
# Need to bind mount snet sources on top of stub folder
|
|
|
|
# Note: source code for the snet extension is *NOT* public
|
|
|
|
snet_parser = subparsers.add_parser(
|
|
|
|
'snet', help='build snet extension')
|
|
|
|
snet_parser.set_defaults(func=build_snet)
|
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
zip_parser = subparsers.add_parser(
|
|
|
|
'zip', help='zip Magisk into a flashable zip')
|
2017-06-03 14:19:01 +02:00
|
|
|
zip_parser.set_defaults(func=zip_main)
|
|
|
|
|
2019-02-11 09:18:15 +01:00
|
|
|
un_parser = subparsers.add_parser(
|
|
|
|
'uninstaller', help='create flashable uninstaller')
|
2018-08-09 23:54:26 +02:00
|
|
|
un_parser.set_defaults(func=zip_uninstaller)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2019-10-17 22:20:01 +02:00
|
|
|
clean_parser = subparsers.add_parser('clean', help='cleanup')
|
2019-02-11 09:18:15 +01:00
|
|
|
clean_parser.add_argument(
|
2019-10-17 22:20:01 +02:00
|
|
|
'target', nargs='*', help='native, java, or empty to clean both')
|
2017-06-03 14:19:01 +02:00
|
|
|
clean_parser.set_defaults(func=cleanup)
|
|
|
|
|
2020-04-03 12:33:39 +02:00
|
|
|
ndk_parser = subparsers.add_parser('ndk', help='setup Magisk NDK')
|
|
|
|
ndk_parser.set_defaults(func=setup_ndk)
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
if len(sys.argv) == 1:
|
2019-02-11 09:18:15 +01:00
|
|
|
parser.print_help()
|
|
|
|
sys.exit(1)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
2019-10-17 22:20:01 +02:00
|
|
|
load_config(args)
|
2019-08-21 20:51:17 +02:00
|
|
|
|
|
|
|
# Call corresponding functions
|
2017-06-03 14:19:01 +02:00
|
|
|
args.func(args)
|