ac28e6e5ca
- group unsupported formats into the same code (86f778c0aa (diff-93690a8d9f50c177ef97416af3be8726)
) - support A only system-as-root devices (e72c6685ed (diff-93690a8d9f50c177ef97416af3be8726)
) - remove unnecessary '--' from magiskboot actions (7f08c06943 (diff-93690a8d9f50c177ef97416af3be8726)
) - get_flags need to be before find_boot_image (a4f5d47e72
) closes #1371, closes #1431, closes #1439
156 lines
4.2 KiB
Bash
156 lines
4.2 KiB
Bash
#MAGISK
|
|
##########################################################################################
|
|
#
|
|
# Magisk Uninstaller
|
|
# by topjohnwu
|
|
#
|
|
##########################################################################################
|
|
|
|
##########################################################################################
|
|
# Preparation
|
|
##########################################################################################
|
|
|
|
# This path should work in any cases
|
|
TMPDIR=/dev/tmp
|
|
|
|
INSTALLER=$TMPDIR/install
|
|
CHROMEDIR=$INSTALLER/chromeos
|
|
|
|
# Default permissions
|
|
umask 022
|
|
|
|
OUTFD=$2
|
|
ZIP=$3
|
|
|
|
if [ ! -f $INSTALLER/util_functions.sh ]; then
|
|
echo "! Unable to extract zip file!"
|
|
exit 1
|
|
fi
|
|
|
|
# Load utility functions
|
|
. $INSTALLER/util_functions.sh
|
|
|
|
setup_flashable
|
|
|
|
ui_print "************************"
|
|
ui_print " Magisk Uninstaller "
|
|
ui_print "************************"
|
|
|
|
is_mounted /data || mount /data || abort "! Unable to mount partitions"
|
|
is_mounted /cache || mount /cache 2>/dev/null
|
|
mount_partitions
|
|
|
|
api_level_arch_detect
|
|
|
|
ui_print "- Device platform: $ARCH"
|
|
MAGISKBIN=$INSTALLER/$ARCH32
|
|
mv $CHROMEDIR $MAGISKBIN
|
|
chmod -R 755 $MAGISKBIN
|
|
|
|
check_data
|
|
$DATA_DE || abort "! Cannot access /data, please uninstall with Magisk Manager"
|
|
$BOOTMODE || recovery_actions
|
|
|
|
##########################################################################################
|
|
# Uninstall
|
|
##########################################################################################
|
|
|
|
get_flags
|
|
find_boot_image
|
|
find_dtbo_image
|
|
|
|
[ -e $BOOTIMAGE ] || abort "! Unable to detect boot image"
|
|
ui_print "- Found target image: $BOOTIMAGE"
|
|
[ -z $DTBOIMAGE ] || ui_print "- Found dtbo image: $DTBOIMAGE"
|
|
|
|
cd $MAGISKBIN
|
|
|
|
CHROMEOS=false
|
|
|
|
ui_print "- Unpacking boot image"
|
|
./magiskboot unpack "$BOOTIMAGE"
|
|
|
|
case $? in
|
|
1 )
|
|
abort "! Unsupported/Unknown image format"
|
|
;;
|
|
2 )
|
|
ui_print "- ChromeOS boot image detected"
|
|
CHROMEOS=true
|
|
;;
|
|
esac
|
|
|
|
# Detect boot image state
|
|
ui_print "- Checking ramdisk status"
|
|
if [ -e ramdisk.cpio ]; then
|
|
./magiskboot cpio ramdisk.cpio test
|
|
STATUS=$?
|
|
else
|
|
# Stock A only system-as-root
|
|
STATUS=0
|
|
fi
|
|
case $((STATUS & 3)) in
|
|
0 ) # Stock boot
|
|
ui_print "- Stock boot image detected"
|
|
;;
|
|
1 ) # Magisk patched
|
|
ui_print "- Magisk patched image detected"
|
|
# Find SHA1 of stock boot image
|
|
[ -z $SHA1 ] && SHA1=`./magiskboot cpio ramdisk.cpio sha1 2>/dev/null`
|
|
STOCKBOOT=/data/stock_boot_${SHA1}.img.gz
|
|
STOCKDTBO=/data/stock_dtbo.img.gz
|
|
if [ -f $STOCKBOOT ]; then
|
|
ui_print "- Restoring stock boot image"
|
|
flash_image $STOCKBOOT $BOOTIMAGE
|
|
if [ -f $STOCKDTBO -a -b "$DTBOIMAGE" ]; then
|
|
ui_print "- Restoring stock dtbo image"
|
|
flash_image $STOCKDTBO $DTBOIMAGE
|
|
fi
|
|
else
|
|
ui_print "! Boot image backup unavailable"
|
|
ui_print "- Restoring ramdisk with internal backup"
|
|
./magiskboot cpio ramdisk.cpio restore
|
|
if ! ./magiskboot cpio ramdisk.cpio "exists init.rc"; then
|
|
# A only system-as-root
|
|
rm -f ramdisk.cpio
|
|
fi
|
|
./magiskboot repack $BOOTIMAGE
|
|
# Sign chromeos boot
|
|
$CHROMEOS && sign_chromeos
|
|
ui_print "- Flashing restored boot image"
|
|
flash_image new-boot.img $BOOTIMAGE || abort "! Insufficient partition size"
|
|
fi
|
|
;;
|
|
2 ) # Unsupported
|
|
ui_print "! Boot image patched by unsupported programs"
|
|
abort "! Cannot uninstall"
|
|
;;
|
|
esac
|
|
|
|
ui_print "- Removing Magisk files"
|
|
rm -rf /cache/*magisk* /cache/unblock /data/*magisk* /data/cache/*magisk* /data/property/*magisk* \
|
|
/data/Magisk.apk /data/busybox /data/custom_ramdisk_patch.sh /data/adb/*magisk* \
|
|
/data/adb/post-fs-data.d /data/adb/service.d /data/adb/modules* 2>/dev/null
|
|
|
|
if [ -f /system/addon.d/99-magisk.sh ]; then
|
|
mount -o rw,remount /system
|
|
rm -f /system/addon.d/99-magisk.sh
|
|
fi
|
|
|
|
cd /
|
|
|
|
if $BOOTMODE; then
|
|
ui_print "**********************************************"
|
|
ui_print "* Magisk Manager will uninstall itself, and *"
|
|
ui_print "* the device will reboot after a few seconds *"
|
|
ui_print "**********************************************"
|
|
(sleep 8; /system/bin/reboot)&
|
|
else
|
|
rm -rf /data/user*/*/*magisk* /data/app/*magisk*
|
|
recovery_cleanup
|
|
ui_print "- Done"
|
|
fi
|
|
|
|
rm -rf $TMPDIR
|
|
exit 0
|