From 81f37b6b27c567b04aea7bc8bca7db50e83a0b1b Mon Sep 17 00:00:00 2001 From: bluemeda Date: Tue, 23 Apr 2019 16:46:32 +0700 Subject: [PATCH] magisk 18.1 --- META-INF/com/google/android/update-binary | 134 +++++++------- common/install.sh | 12 +- common/post-fs-data.sh | 10 +- config.sh | 159 ---------------- install.sh | 212 ++++++++++++++++++++++ module.prop | 5 +- 6 files changed, 292 insertions(+), 240 deletions(-) delete mode 100755 config.sh create mode 100755 install.sh diff --git a/META-INF/com/google/android/update-binary b/META-INF/com/google/android/update-binary index d8499f2..923d0bd 100755 --- a/META-INF/com/google/android/update-binary +++ b/META-INF/com/google/android/update-binary @@ -1,55 +1,47 @@ #!/sbin/sh -########################################################################################## -# -# Magisk Module Template Install Script -# by topjohnwu -# -########################################################################################## TMPDIR=/dev/tmp -INSTALLER=$TMPDIR/install -# Always mount under tmp -MOUNTPATH=$TMPDIR/magisk_img +MOUNTPATH=/dev/magisk_img # Default permissions umask 022 # Initial cleanup rm -rf $TMPDIR 2>/dev/null -mkdir -p $INSTALLER +mkdir -p $TMPDIR # echo before loading util_functions ui_print() { echo "$1"; } require_new_magisk() { - ui_print "*******************************" - ui_print " Please install Magisk v17.0+! " - ui_print "*******************************" + ui_print "***********************************" + ui_print " Please install the latest Magisk! " + ui_print "***********************************" exit 1 } +imageless_magisk() { + [ $MAGISK_VER_CODE -gt 18100 ] + return $? +} + ########################################################################################## # Environment ########################################################################################## OUTFD=$2 -ZIP=$3 +ZIPFILE=$3 mount /data 2>/dev/null # Load utility functions if [ -f /data/adb/magisk/util_functions.sh ]; then . /data/adb/magisk/util_functions.sh -elif [ -f /data/magisk/util_functions.sh ]; then - NVBASE=/data - . /data/magisk/util_functions.sh + NVBASE=/data/adb else require_new_magisk fi -# Use alternative image if in BOOTMODE -$BOOTMODE && IMG=$NVBASE/magisk_merge.img - # Preperation for flashable zips setup_flashable @@ -59,9 +51,6 @@ mount_partitions # Detect version and architecture api_level_arch_detect -# You can get the Android API version from $API, the CPU architecture from $ARCH -# Useful if you are creating Android version / platform dependent mods - # Setup busybox and binaries $BOOTMODE && boot_actions || recovery_actions @@ -70,22 +59,28 @@ $BOOTMODE && boot_actions || recovery_actions ########################################################################################## # Extract common files -unzip -o "$ZIP" module.prop config.sh 'common/*' -d $INSTALLER >&2 +unzip -oj "$ZIPFILE" module.prop install.sh uninstall.sh 'common/*' -d $TMPDIR >&2 -[ ! -f $INSTALLER/config.sh ] && abort "! Unable to extract zip file!" -# Load configurations -. $INSTALLER/config.sh +[ ! -f $TMPDIR/install.sh ] && abort "! Unable to extract zip file!" +# Load install script +. $TMPDIR/install.sh -# Check the installed magisk version -MIN_VER=`grep_prop minMagisk $INSTALLER/module.prop` -[ ! -z $MAGISK_VER_CODE -a $MAGISK_VER_CODE -ge $MIN_VER ] || require_new_magisk -MODID=`grep_prop id $INSTALLER/module.prop` -MODPATH=$MOUNTPATH/$MODID +if imageless_magisk; then + $BOOTMODE && MODDIRNAME=modules_update || MODDIRNAME=modules + MODULEROOT=$NVBASE/$MODDIRNAME +else + $BOOTMODE && IMGNAME=magisk_merge.img || IMGNAME=magisk.img + IMG=$NVBASE/$IMGNAME + request_zip_size_check "$ZIPFILE" + mount_magisk_img + MODULEROOT=$MOUNTPATH +fi + +MODID=`grep_prop id $TMPDIR/module.prop` +MODPATH=$MODULEROOT/$MODID -# Print mod name print_modname -# Please leave this message in your flashable zip for credits :) ui_print "******************************" ui_print "Powered by Magisk (@topjohnwu)" ui_print "******************************" @@ -94,48 +89,52 @@ ui_print "******************************" # Install ########################################################################################## -# Get the variable reqSizeM. Use your own method to determine reqSizeM if needed -request_zip_size_check "$ZIP" - -# This function will mount $IMG to $MOUNTPATH, and resize the image based on $reqSizeM -mount_magisk_img - # Create mod paths rm -rf $MODPATH 2>/dev/null mkdir -p $MODPATH -# custom install begin -install_dnscrypt_proxy -# custom install end +on_install # Remove placeholder rm -f $MODPATH/system/placeholder 2>/dev/null +# Custom uninstaller +[ -f $TMPDIR/uninstall.sh ] && cp -af $TMPDIR/uninstall.sh $MODPATH/uninstall.sh + +# Auto Mount +if imageless_magisk; then + $SKIPMOUNT && touch $MODPATH/skip_mount +else + $SKIPMOUNT || touch $MODPATH/auto_mount +fi + +# prop files +$PROPFILE && cp -af $TMPDIR/system.prop $MODPATH/system.prop + +# Module info +cp -af $TMPDIR/module.prop $MODPATH/module.prop +if $BOOTMODE; then + # Update info for Magisk Manager + if imageless_magisk; then + mktouch $NVBASE/modules/$MODID/update + cp -af $TMPDIR/module.prop $NVBASE/modules/$MODID/module.prop + else + mktouch /sbin/.magisk/img/$MODID/update + cp -af $TMPDIR/module.prop /sbin/.magisk/img/$MODID/module.prop + fi +fi + +# post-fs-data mode scripts +$POSTFSDATA && cp -af $TMPDIR/post-fs-data.sh $MODPATH/post-fs-data.sh + +# service mode scripts +$LATESTARTSERVICE && cp -af $TMPDIR/service.sh $MODPATH/service.sh + # Handle replace folders for TARGET in $REPLACE; do mktouch $MODPATH$TARGET/.replace done -# Auto Mount -$AUTOMOUNT && touch $MODPATH/auto_mount - -# prop files -$PROPFILE && cp -af $INSTALLER/common/system.prop $MODPATH/system.prop - -# Module info -cp -af $INSTALLER/module.prop $MODPATH/module.prop -if $BOOTMODE; then - # Update info for Magisk Manager - mktouch /sbin/.core/img/$MODID/update - cp -af $INSTALLER/module.prop /sbin/.core/img/$MODID/module.prop -fi - -# post-fs-data mode scripts -$POSTFSDATA && cp -af $INSTALLER/common/post-fs-data.sh $MODPATH/post-fs-data.sh - -# service mode scripts -$LATESTARTSERVICE && cp -af $INSTALLER/common/service.sh $MODPATH/service.sh - ui_print "- Setting permissions" set_permissions @@ -143,11 +142,10 @@ set_permissions # Finalizing ########################################################################################## -# Unmount magisk image and shrink if possible -unmount_magisk_img - +cd / +imageless_magisk || unmount_magisk_img $BOOTMODE || recovery_cleanup -rm -rf $TMPDIR +rm -rf $TMPDIR $MOUNTPATH ui_print "- Done" -exit 0 +exit 0 \ No newline at end of file diff --git a/common/install.sh b/common/install.sh index f3c3828..f181600 100644 --- a/common/install.sh +++ b/common/install.sh @@ -1,19 +1,19 @@ keytest() { ui_print " - Vol Key Test -" ui_print " Press Vol Up:" - (/system/bin/getevent -lc 1 2>&1 | /system/bin/grep VOLUME | /system/bin/grep " DOWN" > $INSTALLER/events) || return 1 + (/system/bin/getevent -lc 1 2>&1 | /system/bin/grep VOLUME | /system/bin/grep " DOWN" > $TMPDIR/events) || return 1 return 0 } chooseport() { #note from chainfire @xda-developers: getevent behaves weird when piped, and busybox grep likes that even less than toolbox/toybox grep while (true); do - /system/bin/getevent -lc 1 2>&1 | /system/bin/grep VOLUME | /system/bin/grep " DOWN" > $INSTALLER/events - if (`cat $INSTALLER/events 2>/dev/null | /system/bin/grep VOLUME >/dev/null`); then + /system/bin/getevent -lc 1 2>&1 | /system/bin/grep VOLUME | /system/bin/grep " DOWN" > $TMPDIR/events + if (`cat $TMPDIR/events 2>/dev/null | /system/bin/grep VOLUME >/dev/null`); then break fi done - if (`cat $INSTALLER/events 2>/dev/null | /system/bin/grep VOLUMEUP >/dev/null`); then + if (`cat $TMPDIR/events 2>/dev/null | /system/bin/grep VOLUMEUP >/dev/null`); then return 0 else return 1 @@ -40,7 +40,7 @@ chooseportold() { } # Keycheck binary by someone755 @Github, idea for code below by Zappo @xda-developers -KEYCHECK=$INSTALLER/common/keycheck +KEYCHECK=$TMPDIR/common/keycheck chmod 755 $KEYCHECK if keytest; then @@ -69,6 +69,6 @@ else ui_print " " ui_print " Manual mode" ui_print " deleting iptables rules" - sed -i -e '/for/,$d' $INSTALLER/common/service.sh + sed -i -e '/for/,$d' $TMPDIR/common/service.sh sed -i -e "s/'127.0.0.1.*'/'127.0.0.1:53', '[::1]:53'/g" $MODPATH/system/etc/dnscrypt-proxy/dnscrypt-proxy.toml fi diff --git a/common/post-fs-data.sh b/common/post-fs-data.sh index 426ab83..aede718 100755 --- a/common/post-fs-data.sh +++ b/common/post-fs-data.sh @@ -1,7 +1,9 @@ #!/system/bin/sh -# Please don't hardcode /magisk/modname/... ; instead, please use $MODDIR/... -# This will make your scripts compatible even if Magisk change its mount point in the future +# Do NOT assume where your module will be located. +# ALWAYS use $MODDIR if you need to know where this script +# and module is placed. +# This will make sure your module will still work +# if Magisk change its mount point in the future MODDIR=${0%/*} -# This script will be executed in post-fs-data mode -# More info in the main Magisk thread +# This script will be executed in post-fs-data mode \ No newline at end of file diff --git a/config.sh b/config.sh deleted file mode 100755 index 0f765a7..0000000 --- a/config.sh +++ /dev/null @@ -1,159 +0,0 @@ -########################################################################################## -# -# Magisk Module Template Config Script -# by topjohnwu -# -########################################################################################## -########################################################################################## -# -# Instructions: -# -# 1. Place your files into system folder (delete the placeholder file) -# 2. Fill in your module's info into module.prop -# 3. Configure the settings in this file (config.sh) -# 4. If you need boot scripts, add them into common/post-fs-data.sh or common/service.sh -# 5. Add your additional or modified system properties into common/system.prop -# -########################################################################################## - -########################################################################################## -# Configs -########################################################################################## - -# Set to true if you need to enable Magic Mount -# Most mods would like it to be enabled -AUTOMOUNT=true - -# Set to true if you need to load system.prop -PROPFILE=false - -# Set to true if you need post-fs-data script -POSTFSDATA=false - -# Set to true if you need late_start service script -LATESTARTSERVICE=true - -########################################################################################## -# Installation Message -########################################################################################## - -# Set what you want to show when installing your mod - -print_modname() { - ui_print "*******************************" - ui_print " DNSCrypt-Proxy2 " - ui_print " Magisk Module " - ui_print "*******************************" - ui_print " v2.6.0 " - ui_print " bluemeda " - ui_print "*******************************" -} - -########################################################################################## -# Replace list -########################################################################################## - -# List all directories you want to directly replace in the system -# Check the documentations for more info about how Magic Mount works, and why you need this - -# This is an example -REPLACE=" -/system/app/Youtube -/system/priv-app/SystemUI -/system/priv-app/Settings -/system/framework -" - -# Construct your own list here, it will override the example above -# !DO NOT! remove this if you don't need to replace anything, leave it empty as it is now -REPLACE=" -" - -########################################################################################## -# Permissions -########################################################################################## - -set_permissions() { - # Only some special files require specific permissions - # The default permissions should be good enough for most cases - - # Here are some examples for the set_perm functions: - - # set_perm_recursive (default: u:object_r:system_file:s0) - # set_perm_recursive $MODPATH/system/lib 0 0 0755 0644 - - # set_perm (default: u:object_r:system_file:s0) - # set_perm $MODPATH/system/bin/app_process32 0 2000 0755 u:object_r:zygote_exec:s0 - # set_perm $MODPATH/system/bin/dex2oat 0 2000 0755 u:object_r:dex2oat_exec:s0 - # set_perm $MODPATH/system/lib/libart.so 0 0 0644 - - # The following is default permissions, DO NOT remove - set_perm_recursive $MODPATH 0 0 0755 0644 - set_perm $MODPATH/system/xbin/dnscrypt-proxy 0 0 0755 -} - -########################################################################################## -# Custom Functions -########################################################################################## - -# This file (config.sh) will be sourced by the main flash script after util_functions.sh -# If you need custom logic, please add them here as functions, and call these functions in -# update-binary. Refrain from adding code directly into update-binary, as it will make it -# difficult for you to migrate your modules to newer template versions. -# Make update-binary as clean as possible, try to only do function calls in it. - -install_dnscrypt_proxy(){ - if [ "$ARCH" == "arm" ];then - BINARY_PATH=$INSTALLER/binary/dnscrypt-proxy-arm - elif [ "$ARCH" == "arm64" ];then - BINARY_PATH=$INSTALLER/binary/dnscrypt-proxy-arm64 - elif [ "$ARCH" == "x86" ];then - BINARY_PATH=$INSTALLER/binary/dnscrypt-proxy-x86 - elif [ "$ARCH" == "x64" ];then - BINARY_PATH=$INSTALLER/binary/dnscrypt-proxy-x86_64 - fi - - OLD_CONFIG_FILE=$MODDIR/system/etc/dnscrypt-proxy/dnscrypt-proxy.toml - NEW_CONFIG_FILE=$MODPATH/system/etc/dnscrypt-proxy/dnscrypt-proxy.toml - CONFIG_PATH=$INSTALLER/config - - if [ -f "$OLD_CONFIG_FILE" ]; then - ui_print "* Backing up config file" - cp $OLD_CONFIG_FILE $TMPDIR - fi - - unzip -o "$ZIP" 'config/*' 'binary/*' -d $INSTALLER 2>/dev/null - - ui_print "* Creating binary path" - mkdir -p $MODPATH/system/xbin 2>/dev/null - - ui_print "* Creating config path" - mkdir -p $MODPATH/system/etc/dnscrypt-proxy 2>/dev/null - - if [ -f "$BINARY_PATH" ]; then - ui_print "* Copying binary for $ARCH" - cp -af $BINARY_PATH $MODPATH/system/xbin/dnscrypt-proxy - else - abort "Binary file for $ARCH is missing!" - fi - - if [ -d "$CONFIG_PATH" ]; then - ui_print "* Copying example and license files" - cp -af $CONFIG_PATH/* $MODPATH/system/etc/dnscrypt-proxy - else - abort "Config file is missing!" - fi - - if [ ! -f "$OLD_CONFIG_FILE" ]; then - ui_print "* Copying config files" - cp -af $CONFIG_PATH/example-dnscrypt-proxy.toml $NEW_CONFIG_FILE - sed -i -e 's/127.0.0.1:53/127.0.0.1:5354/g' $NEW_CONFIG_FILE - sed -i -e 's/\[::1\]:53/\[::1\]:5354/g' $NEW_CONFIG_FILE - else - ui_print "* Restoring config files" - cp -af $TMPDIR/dnscrypt-proxy.toml $NEW_CONFIG_FILE - fi - - . $INSTALLER/common/install.sh - -} diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..c93f949 --- /dev/null +++ b/install.sh @@ -0,0 +1,212 @@ +########################################################################################## +# +# Magisk Module Installer Script +# +########################################################################################## +########################################################################################## +# +# Instructions: +# +# 1. Place your files into system folder (delete the placeholder file) +# 2. Fill in your module's info into module.prop +# 3. Configure and implement callbacks in this file +# 4. If you need boot scripts, add them into common/post-fs-data.sh or common/service.sh +# 5. Add your additional or modified system properties into common/system.prop +# +########################################################################################## + +########################################################################################## +# Config Flags +########################################################################################## + +# Set to true if you do *NOT* want Magisk to mount +# any files for you. Most modules would NOT want +# to set this flag to true +SKIPMOUNT=false + +# Set to true if you need to load system.prop +PROPFILE=false + +# Set to true if you need post-fs-data script +POSTFSDATA=false + +# Set to true if you need late_start service script +LATESTARTSERVICE=true + +########################################################################################## +# Replace list +########################################################################################## + +# List all directories you want to directly replace in the system +# Check the documentations for more info why you would need this + +# Construct your list in the following format +# This is an example +REPLACE_EXAMPLE=" +/system/app/Youtube +/system/priv-app/SystemUI +/system/priv-app/Settings +/system/framework +" + +# Construct your own list here +REPLACE=" +" + +########################################################################################## +# +# Function Callbacks +# +# The following functions will be called by the installation framework. +# You do not have the ability to modify update-binary, the only way you can customize +# installation is through implementing these functions. +# +# When running your callbacks, the installation framework will make sure the Magisk +# internal busybox path is *PREPENDED* to PATH, so all common commands shall exist. +# Also, it will make sure /data, /system, and /vendor is properly mounted. +# +########################################################################################## +########################################################################################## +# +# The installation framework will export some variables and functions. +# You should use these variables and functions for installation. +# +# ! DO NOT use any Magisk internal paths as those are NOT public API. +# ! DO NOT use other functions in util_functions.sh as they are NOT public API. +# ! Non public APIs are not guranteed to maintain compatibility between releases. +# +# Available variables: +# +# MAGISK_VER (string): the version string of current installed Magisk +# MAGISK_VER_CODE (int): the version code of current installed Magisk +# BOOTMODE (bool): true if the module is currently installing in Magisk Manager +# MODPATH (path): the path where your module files should be installed +# TMPDIR (path): a place where you can temporarily store files +# ZIPFILE (path): your module's installation zip +# ARCH (string): the architecture of the device. Value is either arm, arm64, x86, or x64 +# IS64BIT (bool): true if $ARCH is either arm64 or x64 +# API (int): the API level (Android version) of the device +# +# Availible functions: +# +# ui_print +# print to console +# Avoid using 'echo' as it will not display in custom recovery's console +# +# abort +# print error message to console and terminate installation +# Avoid using 'exit' as it will skip the termination cleanup steps +# +# set_perm [context] +# if [context] is empty, it will default to "u:object_r:system_file:s0" +# this function is a shorthand for the following commands +# chown owner.group target +# chmod permission target +# chcon context target +# +# set_perm_recursive [context] +# if [context] is empty, it will default to "u:object_r:system_file:s0" +# for all files in , it will call: +# set_perm file owner group filepermission context +# for all directories in (including itself), it will call: +# set_perm dir owner group dirpermission context +# +########################################################################################## +########################################################################################## +# If you need boot scripts, DO NOT use general boot scripts (post-fs-data.d/service.d) +# ONLY use module scripts as it respects the module status (remove/disable) and is +# guaranteed to maintain the same behavior in future Magisk releases. +# Enable boot scripts by setting the flags in the config section above. +########################################################################################## + +# Set what you want to display when installing your module + +print_modname() { + ui_print " " + ui_print "*******************************" + ui_print "* DNSCrypt-Proxy2 *" + ui_print "* Magisk Module *" + ui_print "*******************************" + ui_print "* v2.8.1 *" + ui_print "* bluemeda *" + ui_print "*******************************" + ui_print " " +} + +# Copy/extract your module files into $MODPATH in on_install. + +on_install() { + # The following is the default implementation: extract $ZIPFILE/system to $MODPATH + # Extend/change the logic to whatever you want + + if [ "$ARCH" == "arm" ];then + BINARY_PATH=$TMPDIR/binary/dnscrypt-proxy-arm + elif [ "$ARCH" == "arm64" ];then + BINARY_PATH=$TMPDIR/binary/dnscrypt-proxy-arm64 + elif [ "$ARCH" == "x86" ];then + BINARY_PATH=$TMPDIR/binary/dnscrypt-proxy-x86 + elif [ "$ARCH" == "x64" ];then + BINARY_PATH=$TMPDIR/binary/dnscrypt-proxy-x86_64 + fi + + CONFIG_FILE=$MODPATH/system/etc/dnscrypt-proxy/dnscrypt-proxy.toml + CONFIG_PATH=$TMPDIR/config + + if [ -f "$CONFIG_FILE" ]; then + ui_print "* Backing up config file" + cp $CONFIG_FILE $TMPDIR + fi + + unzip -o "$ZIP" 'config/*' 'binary/*' -d $TMPDIR 2>/dev/null + + ui_print "* Creating binary path" + mkdir -p $MODPATH/system/xbin 2>/dev/null + + ui_print "* Creating config path" + mkdir -p $MODPATH/system/etc/dnscrypt-proxy 2>/dev/null + + if [ -f "$BINARY_PATH" ]; then + ui_print "* Copying binary for $ARCH" + cp -af $BINARY_PATH $MODPATH/system/xbin/dnscrypt-proxy + else + abort "Binary file for $ARCH is missing!" + fi + + if [ -d "$CONFIG_PATH" ]; then + ui_print "* Copying example and license files" + cp -af $CONFIG_PATH/* $MODPATH/system/etc/dnscrypt-proxy + else + abort "Config file is missing!" + fi + + if [ ! -f "$CONFIG_FILE" ]; then + ui_print "* Copying config files" + cp -af $CONFIG_PATH/example-dnscrypt-proxy.toml $CONFIG_FILE + sed -i -e 's/127.0.0.1:53/127.0.0.1:5354/g' $CONFIG_FILE + sed -i -e 's/\[::1\]:53/\[::1\]:5354/g' $CONFIG_FILE + else + ui_print "* Restoring config files" + cp -af $TMPDIR/dnscrypt-proxy.toml $CONFIG_FILE + fi + + . $TMPDIR/common/install.sh + +} + +# Only some special files require specific permissions +# This function will be called after on_install is done +# The default permissions should be good enough for most cases + + +set_permissions() { + # The following is the default rule, DO NOT remove + set_perm_recursive $MODPATH 0 0 0755 0644 + set_perm $MODPATH/system/xbin/dnscrypt-proxy 0 0 0755 + # Here are some examples: + # set_perm_recursive $MODPATH/system/lib 0 0 0755 0644 + # set_perm $MODPATH/system/bin/app_process32 0 2000 0755 u:object_r:zygote_exec:s0 + # set_perm $MODPATH/system/bin/dex2oat 0 2000 0755 u:object_r:dex2oat_exec:s0 + # set_perm $MODPATH/system/lib/libart.so 0 0 0644 +} + +# You can add more functions to assist your custom script code \ No newline at end of file diff --git a/module.prop b/module.prop index 5545b03..ee61f33 100755 --- a/module.prop +++ b/module.prop @@ -1,7 +1,6 @@ id=dnscrypt-proxy name=DNSCrypt-Proxy 2 -version=v2.8.0 -versionCode=17 +version=v2.8.1 +versionCode=18 author=bluemeda description=A flexible DNS proxy, with support for modern encrypted DNS protocols such as DNSCrypt v2 and DNS-over-HTTP/2. Using DNSCrypt-proxy 2.0.21 -minMagisk=1700