2017-06-03 14:19:01 +02:00
|
|
|
#!/system/bin/sh
|
|
|
|
##########################################################################################
|
|
|
|
#
|
|
|
|
# Magisk Boot Image Patcher
|
|
|
|
# by topjohnwu
|
2017-07-24 20:02:19 +02:00
|
|
|
#
|
2018-08-09 12:13:07 +02:00
|
|
|
# Usage: boot_patch.sh <bootimage>
|
2018-06-17 19:40:56 +02:00
|
|
|
#
|
2018-08-09 12:13:07 +02:00
|
|
|
# The following flags can be set in environment variables:
|
|
|
|
# KEEPVERITY, KEEPFORCEENCRYPT
|
2018-06-17 19:40:56 +02:00
|
|
|
#
|
2017-07-09 18:17:34 +02:00
|
|
|
# This script should be placed in a directory with the following files:
|
2017-07-24 20:02:19 +02:00
|
|
|
#
|
2018-06-17 19:40:56 +02:00
|
|
|
# File name Type Description
|
2017-07-24 20:02:19 +02:00
|
|
|
#
|
2018-06-17 19:40:56 +02:00
|
|
|
# boot_patch.sh script A script to patch boot. Expect path to boot image as parameter.
|
|
|
|
# (this file) The script will use binaries and files in its same directory
|
|
|
|
# to complete the patching process
|
|
|
|
# util_functions.sh script A script which hosts all functions requires for this script
|
|
|
|
# to work properly
|
|
|
|
# magiskinit binary The binary to replace /init, which has the magisk binary embedded
|
|
|
|
# magiskboot binary A tool to unpack boot image, decompress ramdisk, extract ramdisk,
|
|
|
|
# and patch the ramdisk for Magisk support
|
|
|
|
# chromeos folder This folder should store all the utilities and keys to sign
|
|
|
|
# (optional) a chromeos device. Used for Pixel C
|
2017-07-24 20:02:19 +02:00
|
|
|
#
|
2017-06-03 14:19:01 +02:00
|
|
|
# If the script is not running as root, then the input boot image should be a stock image
|
|
|
|
# or have a backup included in ramdisk internally, since we cannot access the stock boot
|
2017-11-05 22:41:03 +01:00
|
|
|
# image placed under /data we've created when previously installed
|
2017-06-03 14:19:01 +02:00
|
|
|
#
|
|
|
|
##########################################################################################
|
2017-06-24 16:38:20 +02:00
|
|
|
##########################################################################################
|
|
|
|
# Functions
|
|
|
|
##########################################################################################
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2017-06-24 16:38:20 +02:00
|
|
|
# Pure bash dirname implementation
|
2018-06-17 19:40:56 +02:00
|
|
|
getdir() {
|
2017-08-30 21:08:09 +02:00
|
|
|
case "$1" in
|
2018-06-17 19:40:56 +02:00
|
|
|
*/*) dir=${1%/*}; [ -z $dir ] && echo "/" || echo $dir ;;
|
|
|
|
*) echo "." ;;
|
2017-08-30 21:08:09 +02:00
|
|
|
esac
|
2017-06-24 16:38:20 +02:00
|
|
|
}
|
|
|
|
|
2017-06-03 14:19:01 +02:00
|
|
|
##########################################################################################
|
2017-06-24 16:38:20 +02:00
|
|
|
# Initialization
|
2017-06-03 14:19:01 +02:00
|
|
|
##########################################################################################
|
|
|
|
|
2017-09-15 12:02:25 +02:00
|
|
|
if [ -z $SOURCEDMODE ]; then
|
|
|
|
# Switch to the location of the script file
|
2018-06-17 19:40:56 +02:00
|
|
|
cd "`getdir "${BASH_SOURCE:-$0}"`"
|
2017-09-15 12:02:25 +02:00
|
|
|
# Load utility functions
|
|
|
|
. ./util_functions.sh
|
|
|
|
fi
|
|
|
|
|
2017-10-07 16:08:10 +02:00
|
|
|
BOOTIMAGE="$1"
|
|
|
|
[ -e "$BOOTIMAGE" ] || abort "$BOOTIMAGE does not exist!"
|
|
|
|
|
2018-06-17 19:40:56 +02:00
|
|
|
# Flags
|
2017-10-07 16:08:10 +02:00
|
|
|
[ -z $KEEPVERITY ] && KEEPVERITY=false
|
2018-06-17 19:40:56 +02:00
|
|
|
[ -z $KEEPFORCEENCRYPT ] && KEEPFORCEENCRYPT=false
|
2019-03-30 05:49:48 +01:00
|
|
|
[ -z $RECOVERYMODE ] && RECOVERYMODE=false
|
2017-10-07 16:08:10 +02:00
|
|
|
|
2017-09-02 17:24:34 +02:00
|
|
|
chmod -R 755 .
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2017-11-05 22:41:03 +01:00
|
|
|
# Extract magisk if doesn't exist
|
2017-11-09 17:54:54 +01:00
|
|
|
[ -e magisk ] || ./magiskinit -x magisk magisk
|
2017-11-05 22:41:03 +01:00
|
|
|
|
2017-06-24 16:38:20 +02:00
|
|
|
##########################################################################################
|
|
|
|
# Unpack
|
|
|
|
##########################################################################################
|
2017-09-06 10:13:23 +02:00
|
|
|
|
2017-08-16 21:46:01 +02:00
|
|
|
CHROMEOS=false
|
2017-06-24 16:38:20 +02:00
|
|
|
|
2017-09-15 21:48:58 +02:00
|
|
|
ui_print "- Unpacking boot image"
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot unpack "$BOOTIMAGE"
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
case $? in
|
|
|
|
1 )
|
2019-02-24 08:30:04 +01:00
|
|
|
abort "! Unsupported/Unknown image format"
|
2017-06-03 14:19:01 +02:00
|
|
|
;;
|
|
|
|
2 )
|
2017-10-07 16:08:10 +02:00
|
|
|
ui_print "- ChromeOS boot image detected"
|
2017-07-12 20:14:10 +02:00
|
|
|
CHROMEOS=true
|
|
|
|
;;
|
2017-06-03 14:19:01 +02:00
|
|
|
esac
|
|
|
|
|
|
|
|
##########################################################################################
|
|
|
|
# Ramdisk restores
|
|
|
|
##########################################################################################
|
|
|
|
|
2019-02-28 11:46:36 +01:00
|
|
|
# Test patch status and do restore
|
2017-09-15 21:48:58 +02:00
|
|
|
ui_print "- Checking ramdisk status"
|
2019-02-28 11:46:36 +01:00
|
|
|
if [ -e ramdisk.cpio ]; then
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot cpio ramdisk.cpio test
|
2019-02-28 11:46:36 +01:00
|
|
|
STATUS=$?
|
|
|
|
else
|
|
|
|
# Stock A only system-as-root
|
|
|
|
STATUS=0
|
|
|
|
fi
|
2019-02-25 02:39:01 +01:00
|
|
|
case $((STATUS & 3)) in
|
2017-06-03 14:19:01 +02:00
|
|
|
0 ) # Stock boot
|
2017-12-21 08:42:03 +01:00
|
|
|
ui_print "- Stock boot image detected"
|
2017-09-15 21:48:58 +02:00
|
|
|
ui_print "- Backing up stock boot image"
|
2018-05-05 19:48:24 +02:00
|
|
|
SHA1=`./magiskboot --sha1 "$BOOTIMAGE" 2>/dev/null`
|
2017-11-10 18:33:50 +01:00
|
|
|
STOCKDUMP=stock_boot_${SHA1}.img.gz
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot compress "$BOOTIMAGE" $STOCKDUMP
|
2019-02-28 11:46:36 +01:00
|
|
|
cp -af ramdisk.cpio ramdisk.cpio.orig 2>/dev/null
|
2017-06-03 14:19:01 +02:00
|
|
|
;;
|
|
|
|
1 ) # Magisk patched
|
2018-08-09 12:13:07 +02:00
|
|
|
ui_print "- Magisk patched boot image detected"
|
|
|
|
# Find SHA1 of stock boot image
|
|
|
|
[ -z $SHA1 ] && SHA1=`./magiskboot --cpio ramdisk.cpio sha1 2>/dev/null`
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot cpio ramdisk.cpio restore
|
|
|
|
if ./magiskboot cpio ramdisk.cpio "exists init.rc"; then
|
2019-02-28 11:46:36 +01:00
|
|
|
# Normal boot image
|
|
|
|
cp -af ramdisk.cpio ramdisk.cpio.orig
|
|
|
|
else
|
|
|
|
# A only system-as-root
|
|
|
|
rm -f ramdisk.cpio
|
|
|
|
fi
|
2017-06-03 14:19:01 +02:00
|
|
|
;;
|
2019-02-28 11:46:36 +01:00
|
|
|
2 ) # Unsupported
|
2018-08-09 12:13:07 +02:00
|
|
|
ui_print "! Boot image patched by unsupported programs"
|
2019-02-28 11:46:36 +01:00
|
|
|
abort "! Please restore back to stock boot image"
|
2017-06-03 14:19:01 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
##########################################################################################
|
|
|
|
# Ramdisk patches
|
|
|
|
##########################################################################################
|
|
|
|
|
2017-09-15 21:48:58 +02:00
|
|
|
ui_print "- Patching ramdisk"
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-11-15 06:33:20 +01:00
|
|
|
echo "KEEPVERITY=$KEEPVERITY" > config
|
|
|
|
echo "KEEPFORCEENCRYPT=$KEEPFORCEENCRYPT" >> config
|
|
|
|
[ ! -z $SHA1 ] && echo "SHA1=$SHA1" >> config
|
2019-03-30 05:49:48 +01:00
|
|
|
[ -f recovery_dtbo ] && echo "RECOVERYMODE=true" >> config
|
2018-11-15 06:33:20 +01:00
|
|
|
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot cpio ramdisk.cpio \
|
2018-05-05 19:48:24 +02:00
|
|
|
"add 750 init magiskinit" \
|
2018-11-15 06:33:20 +01:00
|
|
|
"patch $KEEPVERITY $KEEPFORCEENCRYPT" \
|
|
|
|
"backup ramdisk.cpio.orig" \
|
2019-02-28 11:46:36 +01:00
|
|
|
"mkdir 000 .backup" \
|
2018-11-15 06:33:20 +01:00
|
|
|
"add 000 .backup/.magisk config"
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2019-02-25 02:39:01 +01:00
|
|
|
if [ $((STATUS & 4)) -ne 0 ]; then
|
|
|
|
ui_print "- Compressing ramdisk"
|
|
|
|
./magiskboot --cpio ramdisk.cpio compress
|
|
|
|
fi
|
|
|
|
|
2018-11-15 06:33:20 +01:00
|
|
|
rm -f ramdisk.cpio.orig config
|
2017-06-03 14:19:01 +02:00
|
|
|
|
|
|
|
##########################################################################################
|
2017-11-10 18:33:50 +01:00
|
|
|
# Binary patches
|
2017-06-03 14:19:01 +02:00
|
|
|
##########################################################################################
|
|
|
|
|
2018-06-10 11:59:50 +02:00
|
|
|
if ! $KEEPVERITY; then
|
2019-03-30 05:49:48 +01:00
|
|
|
for dt in dtb kernel_dtb extra recovery_dtbo; do
|
|
|
|
[ -f $dt ] && ./magiskboot dtb-patch $dt && ui_print "- Removing dm(avb)-verity in $dt"
|
|
|
|
done
|
2017-11-10 18:33:50 +01:00
|
|
|
fi
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-02-09 20:34:13 +01:00
|
|
|
if [ -f kernel ]; then
|
2018-10-17 09:17:24 +02:00
|
|
|
# Remove Samsung RKP
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot hexpatch kernel \
|
2018-02-09 20:34:13 +01:00
|
|
|
49010054011440B93FA00F71E9000054010840B93FA00F7189000054001840B91FA00F7188010054 \
|
|
|
|
A1020054011440B93FA00F7140020054010840B93FA00F71E0010054001840B91FA00F7181010054
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-10-17 09:17:24 +02:00
|
|
|
# Remove Samsung defex
|
2018-10-20 06:23:07 +02:00
|
|
|
# Before: [mov w2, #-221] (-__NR_execve)
|
|
|
|
# After: [mov w2, #-32768]
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot hexpatch kernel 821B8012 E2FF8F12
|
2018-08-27 04:38:13 +02:00
|
|
|
|
2018-10-17 09:17:24 +02:00
|
|
|
# Force kernel to load rootfs
|
2018-02-09 20:34:13 +01:00
|
|
|
# skip_initramfs -> want_initramfs
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot hexpatch kernel \
|
2018-10-17 09:17:24 +02:00
|
|
|
736B69705F696E697472616D667300 \
|
|
|
|
77616E745F696E697472616D667300
|
2018-02-09 20:34:13 +01:00
|
|
|
fi
|
2017-09-12 22:07:25 +02:00
|
|
|
|
2017-11-10 18:33:50 +01:00
|
|
|
##########################################################################################
|
|
|
|
# Repack and flash
|
|
|
|
##########################################################################################
|
|
|
|
|
2017-09-15 21:48:58 +02:00
|
|
|
ui_print "- Repacking boot image"
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot repack "$BOOTIMAGE" || abort "! Unable to repack boot image!"
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2017-07-09 18:17:34 +02:00
|
|
|
# Sign chromeos boot
|
2017-09-06 10:13:23 +02:00
|
|
|
$CHROMEOS && sign_chromeos
|
2017-07-09 18:17:34 +02:00
|
|
|
|
2019-02-25 02:39:01 +01:00
|
|
|
# Reset any error code
|
|
|
|
true
|