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
|
|
|
|
|
2017-11-11 21:17:56 +01:00
|
|
|
if os.name == 'nt':
|
2018-05-12 21:04:40 +02:00
|
|
|
import colorama
|
|
|
|
colorama.init()
|
2017-11-11 21:17:56 +01:00
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
def error(str):
|
|
|
|
print('\n' + '\033[41m' + str + '\033[0m' + '\n')
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
def header(str):
|
|
|
|
print('\n' + '\033[44m' + str + '\033[0m' + '\n')
|
|
|
|
|
2018-08-05 20:01:04 +02:00
|
|
|
def vprint(str):
|
|
|
|
if args.verbose:
|
|
|
|
print(str)
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
# Environment checks
|
|
|
|
if not sys.version_info >= (3, 5):
|
2018-05-12 21:04:40 +02:00
|
|
|
error('Requires Python 3.5+')
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
if 'ANDROID_HOME' not in os.environ:
|
|
|
|
error('Please add Android SDK path to ANDROID_HOME environment variable!')
|
|
|
|
|
|
|
|
try:
|
|
|
|
subprocess.run(['java', '-version'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
|
|
|
except FileNotFoundError:
|
2018-05-12 21:04:40 +02:00
|
|
|
error('Please install JDK and make sure \'java\' 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-08-01 20:21:50 +02:00
|
|
|
import base64
|
2017-11-14 22:25:19 +01:00
|
|
|
import tempfile
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-07-12 05:01:01 +02:00
|
|
|
if 'ANDROID_NDK_HOME' in os.environ:
|
|
|
|
ndk_build = os.path.join(os.environ['ANDROID_NDK_HOME'], 'ndk-build')
|
2017-12-04 08:16:41 +01:00
|
|
|
else:
|
|
|
|
ndk_build = os.path.join(os.environ['ANDROID_HOME'], 'ndk-bundle', 'ndk-build')
|
|
|
|
|
2018-05-12 21:04:40 +02:00
|
|
|
cpu_count = multiprocessing.cpu_count()
|
2018-07-16 00:52:18 +02:00
|
|
|
gradlew = os.path.join('.', 'gradlew.bat' if os.name == 'nt' else 'gradlew')
|
2018-06-10 10:55:00 +02:00
|
|
|
archs = ['armeabi-v7a', 'x86']
|
2018-08-05 20:01:04 +02:00
|
|
|
keystore = 'release-key.jks'
|
2018-08-06 13:32:37 +02:00
|
|
|
config = {}
|
2018-05-12 21:04:40 +02:00
|
|
|
|
2017-11-05 22:41:03 +01:00
|
|
|
def mv(source, target):
|
2018-05-12 21:04:40 +02:00
|
|
|
try:
|
|
|
|
shutil.move(source, target)
|
|
|
|
except:
|
|
|
|
pass
|
2017-11-05 22:41:03 +01:00
|
|
|
|
|
|
|
def cp(source, target):
|
2018-05-12 21:04:40 +02:00
|
|
|
try:
|
|
|
|
shutil.copyfile(source, target)
|
2018-08-05 20:01:04 +02:00
|
|
|
vprint('cp: {} -> {}'.format(source, target))
|
2018-05-12 21:04:40 +02:00
|
|
|
except:
|
|
|
|
pass
|
2017-11-05 22:41:03 +01:00
|
|
|
|
|
|
|
def rm(file):
|
2017-06-03 14:19:01 +02:00
|
|
|
try:
|
2017-12-04 11:05:07 +01:00
|
|
|
os.remove(file)
|
2017-06-03 14:19:01 +02:00
|
|
|
except OSError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise
|
|
|
|
|
2017-11-05 22:41:03 +01:00
|
|
|
def mkdir(path, mode=0o777):
|
|
|
|
try:
|
|
|
|
os.mkdir(path, mode)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def mkdir_p(path, mode=0o777):
|
|
|
|
os.makedirs(path, mode, exist_ok=True)
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
def zip_with_msg(zipfile, source, target):
|
|
|
|
if not os.path.exists(source):
|
|
|
|
error('{} does not exist! Try build \'binary\' and \'apk\' before zipping!'.format(source))
|
|
|
|
zipfile.write(source, target)
|
2018-08-05 20:01:04 +02:00
|
|
|
vprint('zip: {} -> {}'.format(source, target))
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-05-12 21:04:40 +02:00
|
|
|
def collect_binary():
|
2018-06-10 10:55:00 +02:00
|
|
|
for arch in archs:
|
2018-05-12 21:04:40 +02:00
|
|
|
mkdir_p(os.path.join('native', 'out', arch))
|
|
|
|
for bin in ['magisk', 'magiskinit', 'magiskboot', 'busybox', 'b64xz']:
|
|
|
|
source = os.path.join('native', 'libs', arch, bin)
|
|
|
|
target = os.path.join('native', 'out', arch, bin)
|
|
|
|
mv(source, target)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-08-05 20:01:04 +02:00
|
|
|
def execv(cmd, redirect=None):
|
|
|
|
return subprocess.run(cmd, stdout=redirect if redirect != None else STDOUT)
|
|
|
|
|
|
|
|
def system(cmd, redirect=None):
|
|
|
|
return subprocess.run(cmd, shell=True, stdout=redirect if redirect != None else STDOUT)
|
|
|
|
|
2018-08-09 23:03:54 +02:00
|
|
|
def xz(data):
|
|
|
|
return lzma.compress(data, preset=9, check=lzma.CHECK_NONE)
|
|
|
|
|
2018-08-09 22:41:21 +02:00
|
|
|
def sign_zip(unsigned, output, release):
|
|
|
|
signer_name = 'zipsigner-3.0.jar'
|
|
|
|
zipsigner = os.path.join('utils', 'build', 'libs', signer_name)
|
|
|
|
|
|
|
|
if not os.path.exists(zipsigner):
|
|
|
|
header('* Building ' + signer_name)
|
|
|
|
proc = execv([gradlew, 'utils:shadowJar'])
|
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Build {} failed!'.format(signer_name))
|
|
|
|
|
|
|
|
header('* Signing Zip')
|
|
|
|
|
|
|
|
if release:
|
|
|
|
proc = execv(['java', '-jar', zipsigner, keystore, config['keyStorePass'], config['keyAlias'], config['keyPass'], unsigned, output])
|
|
|
|
else:
|
|
|
|
proc = execv(['java', '-jar', zipsigner, unsigned, output])
|
|
|
|
|
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Signing zip failed!')
|
|
|
|
|
|
|
|
def binary_dump(src, out, var_name):
|
|
|
|
out.write('const static unsigned char {}[] = {{'.format(var_name))
|
2018-08-09 23:03:54 +02:00
|
|
|
for i, c in enumerate(xz(src.read())):
|
2018-08-09 22:41:21 +02:00
|
|
|
if i % 16 == 0:
|
|
|
|
out.write('\n')
|
|
|
|
out.write('0x{:02X},'.format(c))
|
|
|
|
out.write('\n};\n')
|
|
|
|
out.flush()
|
|
|
|
|
|
|
|
def gen_update_binary():
|
|
|
|
update_bin = []
|
|
|
|
binary = os.path.join('native', 'out', 'armeabi-v7a', 'b64xz')
|
|
|
|
if not os.path.exists(binary):
|
|
|
|
error('Please build \'binary\' before zipping!')
|
|
|
|
with open(binary, 'rb') as b64xz:
|
|
|
|
update_bin.append('#! /sbin/sh\nEX_ARM=\'')
|
|
|
|
update_bin.append(''.join("\\x{:02X}".format(c) for c in b64xz.read()))
|
|
|
|
binary = os.path.join('native', 'out', 'x86', 'b64xz')
|
|
|
|
with open(binary, 'rb') as b64xz:
|
|
|
|
update_bin.append('\'\nEX_X86=\'')
|
|
|
|
update_bin.append(''.join("\\x{:02X}".format(c) for c in b64xz.read()))
|
|
|
|
binary = os.path.join('native', 'out', 'armeabi-v7a', 'busybox')
|
|
|
|
with open(binary, 'rb') as busybox:
|
|
|
|
update_bin.append('\'\nBB_ARM=')
|
2018-08-09 23:03:54 +02:00
|
|
|
update_bin.append(base64.b64encode(xz(busybox.read())).decode('ascii'))
|
2018-08-09 22:41:21 +02:00
|
|
|
binary = os.path.join('native', 'out', 'x86', 'busybox')
|
|
|
|
with open(binary, 'rb') as busybox:
|
|
|
|
update_bin.append('\nBB_X86=')
|
2018-08-09 23:03:54 +02:00
|
|
|
update_bin.append(base64.b64encode(xz(busybox.read())).decode('ascii'))
|
2018-08-09 22:41:21 +02:00
|
|
|
update_bin.append('\n')
|
|
|
|
with open(os.path.join('scripts', 'update_binary.sh'), 'r') as script:
|
|
|
|
update_bin.append(script.read())
|
|
|
|
return ''.join(update_bin)
|
|
|
|
|
2018-05-12 21:04:40 +02:00
|
|
|
def build_binary(args):
|
2018-08-09 23:54:26 +02:00
|
|
|
support_targets = {'magisk', 'magiskinit', 'magiskboot', 'busybox', 'b64xz'}
|
|
|
|
if len(args.target) == 0:
|
|
|
|
# If nothing specified, build everything
|
|
|
|
args.target = support_targets
|
|
|
|
else:
|
|
|
|
args.target = set(args.target) & support_targets
|
2018-05-19 10:53:00 +02:00
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
if len(args.target) == 0:
|
|
|
|
return
|
2017-07-31 17:52:30 +02:00
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
header('* Building binaries: ' + ' '.join(args.target))
|
2017-11-23 16:55:33 +01:00
|
|
|
|
2018-09-27 09:56:56 +02:00
|
|
|
os.utime(os.path.join('native', 'jni', 'include', 'flags.h'))
|
2017-11-05 22:41:03 +01:00
|
|
|
|
2018-05-12 21:04:40 +02:00
|
|
|
# Basic flags
|
2018-09-28 08:05:55 +02:00
|
|
|
base_flags = 'MAGISK_VERSION=\"{}\" MAGISK_VER_CODE={}'.format(config['version'], config['versionCode'])
|
|
|
|
if not args.release:
|
|
|
|
base_flags += ' MAGISK_DEBUG=1'
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
if 'magisk' in args.target:
|
2018-05-12 21:04:40 +02:00
|
|
|
# Magisk is special case as it is a dependency of magiskinit
|
2018-08-05 20:01:04 +02:00
|
|
|
proc = system('{} -C native {} B_MAGISK=1 -j{}'.format(ndk_build, base_flags, cpu_count))
|
2018-05-12 21:04:40 +02:00
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Build Magisk binary failed!')
|
|
|
|
collect_binary()
|
2018-07-17 18:54:31 +02:00
|
|
|
# Dump the binary to header
|
|
|
|
for arch in archs:
|
|
|
|
bin_file = os.path.join('native', 'out', arch, 'magisk')
|
2018-08-09 12:13:07 +02:00
|
|
|
with open(os.path.join('native', 'out', arch, 'binaries_arch.h'), 'w') as out:
|
2018-07-17 18:54:31 +02:00
|
|
|
with open(bin_file, 'rb') as src:
|
2018-08-09 23:03:54 +02:00
|
|
|
binary_dump(src, out, 'magisk_xz')
|
2018-05-12 21:04:40 +02:00
|
|
|
|
2018-07-13 16:14:32 +02:00
|
|
|
old_plat = False
|
2018-05-12 23:22:46 +02:00
|
|
|
flags = base_flags
|
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
if 'b64xz' in args.target:
|
2018-05-12 23:22:46 +02:00
|
|
|
flags += ' B_BXZ=1'
|
2018-07-13 16:14:32 +02:00
|
|
|
old_plat = True
|
2018-05-12 23:22:46 +02:00
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
if 'magiskinit' in args.target:
|
2018-08-09 12:13:07 +02:00
|
|
|
if not os.path.exists(os.path.join('native', 'out', 'x86', 'binaries_arch.h')):
|
2018-07-17 18:54:31 +02:00
|
|
|
error('Build "magisk" before building "magiskinit"')
|
2018-08-09 12:13:07 +02:00
|
|
|
if not os.path.exists(os.path.join('native', 'out', 'binaries.h')):
|
2018-08-09 22:41:21 +02:00
|
|
|
error('Build stub APK before building "magiskinit"')
|
2018-05-12 23:22:46 +02:00
|
|
|
flags += ' B_INIT=1'
|
2018-07-13 16:14:32 +02:00
|
|
|
old_plat = True
|
2018-05-12 21:04:40 +02:00
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
if 'magiskboot' in args.target:
|
2018-05-12 23:22:46 +02:00
|
|
|
flags += ' B_BOOT=1'
|
2018-07-13 16:14:32 +02:00
|
|
|
old_plat = True
|
2018-07-12 23:41:29 +02:00
|
|
|
|
2018-07-13 16:14:32 +02:00
|
|
|
if old_plat:
|
2018-08-05 20:01:04 +02:00
|
|
|
proc = system('{} -C native {} -j{}'.format(ndk_build, flags, cpu_count))
|
2018-07-12 23:41:29 +02:00
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Build binaries failed!')
|
|
|
|
collect_binary()
|
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
if 'busybox' in args.target:
|
2018-08-11 12:46:55 +02:00
|
|
|
proc = system('{} -C native {} B_BB=1 -j{}'.format(ndk_build, base_flags, cpu_count))
|
2018-05-12 21:04:40 +02:00
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Build binaries failed!')
|
|
|
|
collect_binary()
|
2017-11-05 22:41:03 +01:00
|
|
|
|
2018-08-20 06:02:38 +02:00
|
|
|
def build_apk(args, flavor):
|
|
|
|
header('* Building {} Magisk Manager'.format(flavor))
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-08-20 06:02:38 +02:00
|
|
|
buildType = 'Release' if args.release else 'Debug'
|
2017-07-30 18:59:41 +02:00
|
|
|
|
2018-09-06 20:25:35 +02:00
|
|
|
proc = execv([gradlew, 'app:assemble' + flavor + buildType, '-PconfigPath=' + os.path.abspath(args.config)])
|
2018-08-20 06:02:38 +02:00
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Build Magisk Manager failed!')
|
2017-06-03 16:04:22 +02:00
|
|
|
|
2018-08-20 06:02:38 +02:00
|
|
|
flavor = flavor.lower()
|
|
|
|
buildType = buildType.lower()
|
|
|
|
apk = 'app-{}-{}.apk'.format(flavor, buildType)
|
2018-08-09 23:54:26 +02:00
|
|
|
|
2018-08-20 06:02:38 +02:00
|
|
|
source = os.path.join('app', 'build', 'outputs', 'apk', flavor, buildType, apk)
|
|
|
|
target = os.path.join(config['outdir'], apk)
|
|
|
|
mv(source, target)
|
2018-08-09 23:54:26 +02:00
|
|
|
header('Output: ' + target)
|
2018-08-20 06:02:38 +02:00
|
|
|
return target
|
2017-11-05 22:41:03 +01:00
|
|
|
|
2018-08-20 06:02:38 +02:00
|
|
|
def build_app(args):
|
|
|
|
source = os.path.join('scripts', 'util_functions.sh')
|
2018-12-13 10:35:50 +01:00
|
|
|
target = os.path.join('core', 'src', 'main', 'res', 'raw', 'util_functions.sh')
|
2018-08-20 06:02:38 +02:00
|
|
|
cp(source, target)
|
|
|
|
build_apk(args, 'Full')
|
2018-05-27 08:55:24 +02:00
|
|
|
|
2018-08-20 06:02:38 +02:00
|
|
|
def build_stub(args):
|
|
|
|
stub = build_apk(args, 'Stub')
|
2018-08-09 23:15:39 +02:00
|
|
|
# Dump the stub APK to header
|
|
|
|
mkdir(os.path.join('native', 'out'))
|
|
|
|
with open(os.path.join('native', 'out', 'binaries.h'), 'w') as out:
|
2018-08-20 06:02:38 +02:00
|
|
|
with open(stub, 'rb') as src:
|
2018-08-09 23:15:39 +02:00
|
|
|
binary_dump(src, out, 'manager_xz');
|
|
|
|
|
2017-10-07 16:48:16 +02:00
|
|
|
def build_snet(args):
|
2018-08-05 20:01:04 +02:00
|
|
|
proc = execv([gradlew, 'snet:assembleRelease'])
|
2017-10-07 16:48:16 +02:00
|
|
|
if proc.returncode != 0:
|
|
|
|
error('Build snet extention failed!')
|
|
|
|
source = os.path.join('snet', 'build', 'outputs', 'apk', 'release', 'snet-release-unsigned.apk')
|
2018-05-12 21:04:40 +02:00
|
|
|
target = os.path.join(config['outdir'], 'snet.apk')
|
2018-06-09 20:35:03 +02:00
|
|
|
# Re-compress the whole APK for smaller size
|
|
|
|
with zipfile.ZipFile(target, 'w', compression=zipfile.ZIP_DEFLATED, allowZip64=False) as zout:
|
|
|
|
with zipfile.ZipFile(source) as zin:
|
|
|
|
for item in zin.infolist():
|
|
|
|
zout.writestr(item.filename, zin.read(item))
|
2018-06-10 10:55:00 +02:00
|
|
|
rm(source)
|
2018-05-12 21:04:40 +02:00
|
|
|
header('Output: ' + target)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
def zip_main(args):
|
|
|
|
header('* Packing Flashable Zip')
|
|
|
|
|
2017-11-14 22:25:19 +01:00
|
|
|
unsigned = tempfile.mkstemp()[1]
|
|
|
|
|
|
|
|
with zipfile.ZipFile(unsigned, 'w', compression=zipfile.ZIP_DEFLATED, allowZip64=False) as zipf:
|
2017-08-01 20:21:50 +02:00
|
|
|
# META-INF
|
|
|
|
# update-binary
|
|
|
|
target = os.path.join('META-INF', 'com', 'google', 'android', 'update-binary')
|
2018-08-05 20:01:04 +02:00
|
|
|
vprint('zip: ' + target)
|
2017-08-01 20:21:50 +02:00
|
|
|
zipf.writestr(target, gen_update_binary())
|
|
|
|
# updater-script
|
|
|
|
source = os.path.join('scripts', 'flash_script.sh')
|
|
|
|
target = os.path.join('META-INF', 'com', 'google', 'android', 'updater-script')
|
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
|
|
|
# Binaries
|
2018-04-22 08:13:27 +02:00
|
|
|
for lib_dir, zip_dir in [('armeabi-v7a', 'arm'), ('x86', 'x86')]:
|
2017-11-09 17:54:54 +01:00
|
|
|
for binary in ['magiskinit', 'magiskboot']:
|
2018-05-12 21:04:40 +02:00
|
|
|
source = os.path.join('native', 'out', lib_dir, binary)
|
2017-06-03 14:19:01 +02:00
|
|
|
target = os.path.join(zip_dir, binary)
|
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
|
|
|
# APK
|
2018-08-20 18:31:41 +02:00
|
|
|
source = os.path.join(config['outdir'], 'app-full-release.apk' if args.release else 'app-full-debug.apk')
|
2017-06-03 14:19:01 +02:00
|
|
|
target = os.path.join('common', 'magisk.apk')
|
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
|
|
|
# Scripts
|
2017-06-18 18:15:44 +02:00
|
|
|
# boot_patch.sh
|
2017-06-03 14:19:01 +02:00
|
|
|
source = os.path.join('scripts', 'boot_patch.sh')
|
|
|
|
target = os.path.join('common', 'boot_patch.sh')
|
|
|
|
zip_with_msg(zipf, source, target)
|
2017-06-18 18:15:44 +02:00
|
|
|
# util_functions.sh
|
|
|
|
source = os.path.join('scripts', 'util_functions.sh')
|
2017-07-10 19:54:11 +02:00
|
|
|
with open(source, 'r') as script:
|
|
|
|
# Add version info util_functions.sh
|
2018-05-12 21:04:40 +02:00
|
|
|
util_func = script.read().replace('#MAGISK_VERSION_STUB',
|
|
|
|
'MAGISK_VER="{}"\nMAGISK_VER_CODE={}'.format(config['version'], config['versionCode']))
|
2017-07-10 19:54:11 +02:00
|
|
|
target = os.path.join('common', 'util_functions.sh')
|
2018-08-05 20:01:04 +02:00
|
|
|
vprint('zip: ' + source + ' -> ' + target)
|
2017-07-10 19:54:11 +02:00
|
|
|
zipf.writestr(target, util_func)
|
2017-08-01 20:21:50 +02:00
|
|
|
# addon.d.sh
|
|
|
|
source = os.path.join('scripts', 'addon.d.sh')
|
2018-06-21 05:54:21 +02:00
|
|
|
target = os.path.join('common', 'addon.d.sh')
|
2017-08-01 20:21:50 +02:00
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
# Prebuilts
|
|
|
|
for chromeos in ['futility', 'kernel_data_key.vbprivk', 'kernel.keyblock']:
|
|
|
|
source = os.path.join('chromeos', chromeos)
|
|
|
|
zip_with_msg(zipf, source, source)
|
|
|
|
|
|
|
|
# End of zipping
|
|
|
|
|
2018-09-06 20:25:35 +02:00
|
|
|
output = os.path.join(config['outdir'], 'Magisk-v{}.zip'.format(config['version']) if config['prettyName'] else
|
2018-05-12 21:04:40 +02:00
|
|
|
'magisk-release.zip' if args.release else 'magisk-debug.zip')
|
2018-08-04 20:29:40 +02:00
|
|
|
sign_zip(unsigned, output, args.release)
|
2018-05-12 21:04:40 +02:00
|
|
|
header('Output: ' + output)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
def zip_uninstaller(args):
|
|
|
|
header('* Packing Uninstaller Zip')
|
|
|
|
|
2017-11-14 22:25:19 +01:00
|
|
|
unsigned = tempfile.mkstemp()[1]
|
|
|
|
|
|
|
|
with zipfile.ZipFile(unsigned, 'w', compression=zipfile.ZIP_DEFLATED, allowZip64=False) as zipf:
|
2017-08-01 20:21:50 +02:00
|
|
|
# META-INF
|
|
|
|
# update-binary
|
|
|
|
target = os.path.join('META-INF', 'com', 'google', 'android', 'update-binary')
|
2018-08-05 20:01:04 +02:00
|
|
|
vprint('zip: ' + target)
|
2017-08-01 20:21:50 +02:00
|
|
|
zipf.writestr(target, gen_update_binary())
|
|
|
|
# updater-script
|
2018-06-27 00:00:01 +02:00
|
|
|
source = os.path.join('scripts', 'magisk_uninstaller.sh')
|
2017-08-01 20:21:50 +02:00
|
|
|
target = os.path.join('META-INF', 'com', 'google', 'android', 'updater-script')
|
|
|
|
zip_with_msg(zipf, source, target)
|
|
|
|
|
|
|
|
# Binaries
|
2018-04-22 08:13:27 +02:00
|
|
|
for lib_dir, zip_dir in [('armeabi-v7a', 'arm'), ('x86', 'x86')]:
|
2018-06-27 00:00:01 +02:00
|
|
|
for bin in ['magisk', 'magiskboot']:
|
|
|
|
source = os.path.join('native', 'out', lib_dir, bin)
|
|
|
|
target = os.path.join(zip_dir, bin)
|
|
|
|
zip_with_msg(zipf, source, target)
|
2017-06-03 18:03:36 +02:00
|
|
|
|
2017-08-01 20:21:50 +02:00
|
|
|
# Scripts
|
2017-07-10 19:54:11 +02:00
|
|
|
# util_functions.sh
|
2017-07-09 18:17:34 +02:00
|
|
|
source = os.path.join('scripts', 'util_functions.sh')
|
2017-07-10 19:54:11 +02:00
|
|
|
with open(source, 'r') as script:
|
|
|
|
# Remove the stub
|
|
|
|
target = os.path.join('util_functions.sh')
|
2018-08-05 20:01:04 +02:00
|
|
|
vprint('zip: ' + source + ' -> ' + target)
|
2017-12-20 20:36:18 +01:00
|
|
|
zipf.writestr(target, script.read())
|
2017-07-09 18:17:34 +02:00
|
|
|
|
|
|
|
# Prebuilts
|
|
|
|
for chromeos in ['futility', 'kernel_data_key.vbprivk', 'kernel.keyblock']:
|
|
|
|
source = os.path.join('chromeos', chromeos)
|
|
|
|
zip_with_msg(zipf, source, source)
|
|
|
|
|
|
|
|
# End of zipping
|
|
|
|
|
2018-09-06 20:25:35 +02:00
|
|
|
output = os.path.join(config['outdir'], 'Magisk-uninstaller-{}.zip'.format(datetime.datetime.now().strftime('%Y%m%d'))
|
2018-05-12 21:04:40 +02:00
|
|
|
if config['prettyName'] else 'magisk-uninstaller.zip')
|
2018-08-04 20:29:40 +02:00
|
|
|
sign_zip(unsigned, output, args.release)
|
2018-05-12 21:04:40 +02:00
|
|
|
header('Output: ' + output)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
def cleanup(args):
|
2018-08-09 23:54:26 +02:00
|
|
|
support_targets = {'native', 'java'}
|
2017-06-03 14:19:01 +02:00
|
|
|
if len(args.target) == 0:
|
2018-08-09 23:54:26 +02:00
|
|
|
# If nothing specified, clean everything
|
|
|
|
args.target = support_targets
|
|
|
|
else:
|
|
|
|
args.target = set(args.target) & support_targets
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-07-07 18:02:18 +02:00
|
|
|
if 'native' in args.target:
|
|
|
|
header('* Cleaning native')
|
2018-08-05 20:01:04 +02:00
|
|
|
system(ndk_build + ' -C native B_MAGISK=1 B_INIT=1 B_BOOT=1 B_BXZ=1 B_BB=1 clean')
|
2018-05-12 21:04:40 +02:00
|
|
|
shutil.rmtree(os.path.join('native', 'out'), ignore_errors=True)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2017-10-07 16:48:16 +02:00
|
|
|
if 'java' in args.target:
|
|
|
|
header('* Cleaning java')
|
2018-08-05 20:01:04 +02:00
|
|
|
execv([gradlew, 'app:clean', 'snet:clean', 'utils:clean'])
|
2018-05-12 21:04:40 +02:00
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
def build_all(args):
|
|
|
|
vars(args)['target'] = []
|
|
|
|
build_stub(args)
|
2018-08-20 18:31:41 +02:00
|
|
|
build_app(args)
|
2018-08-09 23:54:26 +02:00
|
|
|
build_binary(args)
|
|
|
|
zip_main(args)
|
|
|
|
zip_uninstaller(args)
|
|
|
|
build_snet(args)
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
parser = argparse.ArgumentParser(description='Magisk build script')
|
2018-07-12 23:41:29 +02:00
|
|
|
parser.add_argument('-r', '--release', action='store_true', help='compile Magisk for release')
|
|
|
|
parser.add_argument('-v', '--verbose', action='store_true', help='verbose output')
|
2018-09-05 20:24:28 +02:00
|
|
|
parser.add_argument('-c', '--config', default='config.prop', help='config file location')
|
2017-06-03 14:19:01 +02:00
|
|
|
subparsers = parser.add_subparsers(title='actions')
|
|
|
|
|
2018-05-12 21:04:40 +02:00
|
|
|
all_parser = subparsers.add_parser('all', help='build everything (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')
|
|
|
|
binary_parser.add_argument('target', nargs='*', help='Support: magisk, magiskinit, magiskboot, busybox, b64xz. Leave empty to build all.')
|
2017-06-03 14:19:01 +02:00
|
|
|
binary_parser.set_defaults(func=build_binary)
|
|
|
|
|
|
|
|
apk_parser = subparsers.add_parser('apk', help='build Magisk Manager APK')
|
2018-08-20 06:02:38 +02:00
|
|
|
apk_parser.set_defaults(func=build_app)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-08-09 23:15:39 +02:00
|
|
|
stub_parser = subparsers.add_parser('stub', help='build stub Magisk Manager APK')
|
|
|
|
stub_parser.set_defaults(func=build_stub)
|
|
|
|
|
2017-10-07 16:48:16 +02:00
|
|
|
snet_parser = subparsers.add_parser('snet', help='build snet extention for Magisk Manager')
|
|
|
|
snet_parser.set_defaults(func=build_snet)
|
|
|
|
|
2018-08-04 20:29:40 +02: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)
|
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
un_parser = subparsers.add_parser('uninstaller', help='create flashable uninstaller')
|
|
|
|
un_parser.set_defaults(func=zip_uninstaller)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-08-09 23:54:26 +02:00
|
|
|
clean_parser = subparsers.add_parser('clean', help='cleanup.')
|
|
|
|
clean_parser.add_argument('target', nargs='*', help='Support: native, java. Leave empty to clean all.')
|
2017-06-03 14:19:01 +02:00
|
|
|
clean_parser.set_defaults(func=cleanup)
|
|
|
|
|
|
|
|
if len(sys.argv) == 1:
|
2017-12-04 11:05:07 +01:00
|
|
|
parser.print_help()
|
|
|
|
sys.exit(1)
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
2018-09-05 20:24:28 +02:00
|
|
|
|
|
|
|
# Some default values
|
|
|
|
config['outdir'] = 'out'
|
|
|
|
config['prettyName'] = 'false'
|
|
|
|
|
|
|
|
with open(args.config, '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('=')
|
|
|
|
config[prop[0].strip(' \t\r\n')] = prop[1].strip(' \t\r\n')
|
|
|
|
|
|
|
|
if 'version' not in config or 'versionCode' not in config:
|
|
|
|
error('"version" and "versionCode" is required in "config.prop"')
|
|
|
|
|
|
|
|
try:
|
|
|
|
config['versionCode'] = int(config['versionCode'])
|
|
|
|
except ValueError:
|
|
|
|
error('"versionCode" is required to be an integer')
|
|
|
|
|
|
|
|
config['prettyName'] = config['prettyName'].lower() == 'true'
|
|
|
|
|
|
|
|
mkdir_p(config['outdir'])
|
|
|
|
|
2018-08-05 20:01:04 +02:00
|
|
|
if args.release and not os.path.exists(keystore):
|
|
|
|
error('Please generate a java keystore and place it in \'{}\''.format(keystore))
|
2018-07-12 23:41:29 +02:00
|
|
|
STDOUT = None if args.verbose else subprocess.DEVNULL
|
2017-06-03 14:19:01 +02:00
|
|
|
args.func(args)
|