dnscrypt-proxy-android/META-INF/com/google/android/update-binary

174 lines
3.7 KiB
Plaintext
Raw Normal View History

2018-02-27 14:42:14 +00:00
#!/sbin/sh
#################
# Initialization
#################
2018-02-27 14:42:14 +00:00
umask 022
# Global vars
TMPDIR=/dev/tmp
PERSISTDIR=/sbin/.magisk/mirror/persist
2018-02-27 14:42:14 +00:00
rm -rf $TMPDIR 2>/dev/null
2019-04-23 09:46:32 +00:00
mkdir -p $TMPDIR
2018-02-27 14:42:14 +00:00
# echo before loading util_functions
ui_print() { echo "$1"; }
require_new_magisk() {
ui_print "*******************************"
ui_print " Please install Magisk v19.0+! "
ui_print "*******************************"
2018-02-27 14:42:14 +00:00
exit 1
}
is_legacy_script() {
unzip -l "$ZIPFILE" install.sh | grep -q install.sh
2019-04-23 09:46:32 +00:00
return $?
}
print_modname() {
local len
len=`echo -n $MODNAME | wc -c`
len=$((len + 2))
local pounds=`printf "%${len}s" | tr ' ' '*'`
ui_print "$pounds"
ui_print " $MODNAME "
ui_print "$pounds"
ui_print "*******************"
ui_print " Powered by Magisk "
ui_print "*******************"
}
##############
2018-02-27 14:42:14 +00:00
# Environment
##############
2018-02-27 14:42:14 +00:00
OUTFD=$2
2019-04-23 09:46:32 +00:00
ZIPFILE=$3
2018-02-27 14:42:14 +00:00
mount /data 2>/dev/null
2018-09-13 05:02:36 +00:00
# Load utility functions
[ -f /data/adb/magisk/util_functions.sh ] || require_new_magisk
. /data/adb/magisk/util_functions.sh
[ $MAGISK_VER_CODE -gt 18100 ] || require_new_magisk
2018-02-27 14:42:14 +00:00
# Preperation for flashable zips
2018-09-13 05:02:36 +00:00
setup_flashable
2018-02-27 14:42:14 +00:00
# Mount partitions
mount_partitions
# Detect version and architecture
api_level_arch_detect
# Setup busybox and binaries
$BOOTMODE && boot_actions || recovery_actions
##############
2018-02-27 14:42:14 +00:00
# Preparation
##############
2018-02-27 14:42:14 +00:00
# Extract prop file
unzip -o "$ZIPFILE" module.prop -d $TMPDIR >&2
[ ! -f $TMPDIR/module.prop ] && abort "! Unable to extract zip file!"
2019-04-23 09:46:32 +00:00
$BOOTMODE && MODDIRNAME=modules_update || MODDIRNAME=modules
MODULEROOT=$NVBASE/$MODDIRNAME
2019-04-23 09:46:32 +00:00
MODID=`grep_prop id $TMPDIR/module.prop`
MODPATH=$MODULEROOT/$MODID
MODNAME=`grep_prop name $TMPDIR/module.prop`
2018-02-27 14:42:14 +00:00
# Create mod paths
rm -rf $MODPATH 2>/dev/null
mkdir -p $MODPATH
##########
# Install
##########
if is_legacy_script; then
unzip -oj "$ZIPFILE" module.prop install.sh uninstall.sh 'common/*' -d $TMPDIR >&2
# Load install script
. $TMPDIR/install.sh
2018-02-27 14:42:14 +00:00
# Callbacks
print_modname
on_install
2018-02-27 14:42:14 +00:00
# Custom uninstaller
[ -f $TMPDIR/uninstall.sh ] && cp -af $TMPDIR/uninstall.sh $MODPATH/uninstall.sh
2018-02-27 14:42:14 +00:00
# Skip mount
2019-04-23 09:46:32 +00:00
$SKIPMOUNT && touch $MODPATH/skip_mount
# prop file
$PROPFILE && cp -af $TMPDIR/system.prop $MODPATH/system.prop
# Module info
cp -af $TMPDIR/module.prop $MODPATH/module.prop
# post-fs-data scripts
$POSTFSDATA && cp -af $TMPDIR/post-fs-data.sh $MODPATH/post-fs-data.sh
# service scripts
$LATESTARTSERVICE && cp -af $TMPDIR/service.sh $MODPATH/service.sh
ui_print "- Setting permissions"
set_permissions
2019-04-23 09:46:32 +00:00
else
print_modname
2018-02-27 14:42:14 +00:00
unzip -o "$ZIPFILE" customize.sh -d $MODPATH >&2
2018-02-27 14:42:14 +00:00
if ! grep -q '^SKIPUNZIP=1$' $MODPATH/customize.sh 2>/dev/null; then
ui_print "- Extracting module files"
unzip -o "$ZIPFILE" -x 'META-INF/*' -d $MODPATH >&2
2018-02-27 14:42:14 +00:00
# Default permissions
set_perm_recursive $MODPATH 0 0 0755 0644
fi
2018-02-27 14:42:14 +00:00
# Load customization script
[ -f $MODPATH/customize.sh ] && . $MODPATH/customize.sh
fi
2019-04-23 09:46:32 +00:00
# Handle replace folders
for TARGET in $REPLACE; do
ui_print "- Replace target: $TARGET"
2019-04-23 09:46:32 +00:00
mktouch $MODPATH$TARGET/.replace
done
2018-02-27 14:42:14 +00:00
if $BOOTMODE; then
# Update info for Magisk Manager
mktouch $NVBASE/modules/$MODID/update
cp -af $MODPATH/module.prop $NVBASE/modules/$MODID/module.prop
fi
# Copy over custom sepolicy rules
if [ -f $MODPATH/sepolicy.rule -a -e $PERSISTDIR ]; then
ui_print "- Installing custom sepolicy patch"
PERSISTMOD=$PERSISTDIR/magisk/$MODID
mkdir -p $PERSISTMOD
cp -af $MODPATH/sepolicy.rule $PERSISTMOD/sepolicy.rule
fi
# Remove stuffs that don't belong to modules
rm -rf \
$MODPATH/system/placeholder $MODPATH/customize.sh \
$MODPATH/README.md $MODPATH/.git* 2>/dev/null
2018-02-27 14:42:14 +00:00
##############
2018-02-27 14:42:14 +00:00
# Finalizing
##############
2018-02-27 14:42:14 +00:00
2019-04-23 09:46:32 +00:00
cd /
2018-02-27 14:42:14 +00:00
$BOOTMODE || recovery_cleanup
rm -rf $TMPDIR
2018-02-27 14:42:14 +00:00
ui_print "- Done"
exit 0