2017-06-03 14:19:01 +02:00
|
|
|
#!/system/bin/sh
|
2021-01-22 11:28:53 +01:00
|
|
|
#######################################################################################
|
2017-06-03 14:19:01 +02:00
|
|
|
# Magisk Boot Image Patcher
|
2021-01-22 11:28:53 +01:00
|
|
|
#######################################################################################
|
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
|
|
|
#
|
2023-08-29 07:13:24 +02:00
|
|
|
# The following environment variables can configure the installation:
|
2023-07-09 17:53:59 +02:00
|
|
|
# KEEPVERITY, KEEPFORCEENCRYPT, PATCHVBMETAFLAG, RECOVERYMODE, LEGACYSAR
|
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
|
|
|
#
|
2020-01-01 07:02:44 +01:00
|
|
|
# boot_patch.sh script A script to patch boot image for Magisk.
|
2021-01-22 11:28:53 +01:00
|
|
|
# (this file) The script will use files in its same
|
2022-12-27 00:59:56 +01:00
|
|
|
# directory to complete the patching process.
|
2021-01-22 11:28:53 +01:00
|
|
|
# util_functions.sh script A script which hosts all functions required
|
2022-12-27 00:59:56 +01:00
|
|
|
# for this script to work properly.
|
|
|
|
# magiskinit binary The binary to replace /init.
|
|
|
|
# magisk(32/64) binary The magisk binaries.
|
|
|
|
# magiskboot binary A tool to manipulate boot images.
|
|
|
|
# stub.apk binary The stub Magisk app to embed into ramdisk.
|
2021-01-22 11:28:53 +01:00
|
|
|
# chromeos folder This folder includes the utility and keys to sign
|
|
|
|
# (optional) chromeos boot images. Only used for Pixel C.
|
2017-06-03 14:19:01 +02:00
|
|
|
#
|
2021-01-22 11:28:53 +01:00
|
|
|
#######################################################################################
|
2020-03-20 11:44:08 +01:00
|
|
|
|
|
|
|
############
|
2017-06-24 16:38:20 +02:00
|
|
|
# Functions
|
2020-03-20 11:44:08 +01:00
|
|
|
############
|
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
|
2020-11-30 01:35:34 +01:00
|
|
|
*/*)
|
|
|
|
dir=${1%/*}
|
|
|
|
if [ -z $dir ]; then
|
|
|
|
echo "/"
|
|
|
|
else
|
|
|
|
echo $dir
|
|
|
|
fi
|
|
|
|
;;
|
2018-06-17 19:40:56 +02:00
|
|
|
*) echo "." ;;
|
2017-08-30 21:08:09 +02:00
|
|
|
esac
|
2017-06-24 16:38:20 +02:00
|
|
|
}
|
|
|
|
|
2020-03-20 11:44:08 +01:00
|
|
|
#################
|
2017-06-24 16:38:20 +02:00
|
|
|
# Initialization
|
2020-03-20 11:44:08 +01:00
|
|
|
#################
|
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
|
2021-01-22 11:28:53 +01:00
|
|
|
cd "$(getdir "${BASH_SOURCE:-$0}")"
|
2017-09-15 12:02:25 +02:00
|
|
|
# Load utility functions
|
|
|
|
. ./util_functions.sh
|
2021-01-18 21:37:08 +01:00
|
|
|
# Check if 64-bit
|
2021-03-22 00:13:07 +01:00
|
|
|
api_level_arch_detect
|
2017-09-15 12:02:25 +02:00
|
|
|
fi
|
|
|
|
|
2017-10-07 16:08:10 +02:00
|
|
|
BOOTIMAGE="$1"
|
|
|
|
[ -e "$BOOTIMAGE" ] || abort "$BOOTIMAGE does not exist!"
|
|
|
|
|
2021-01-25 12:37:41 +01:00
|
|
|
# Dump image for MTD/NAND character device boot partitions
|
|
|
|
if [ -c "$BOOTIMAGE" ]; then
|
|
|
|
nanddump -f boot.img "$BOOTIMAGE"
|
|
|
|
BOOTNAND="$BOOTIMAGE"
|
|
|
|
BOOTIMAGE=boot.img
|
|
|
|
fi
|
|
|
|
|
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
|
2021-12-14 13:52:15 +01:00
|
|
|
[ -z $PATCHVBMETAFLAG ] && PATCHVBMETAFLAG=false
|
2019-03-30 05:49:48 +01:00
|
|
|
[ -z $RECOVERYMODE ] && RECOVERYMODE=false
|
2023-07-09 17:53:59 +02:00
|
|
|
[ -z $LEGACYSAR ] && LEGACYSAR=false
|
2019-09-21 11:55:23 +02:00
|
|
|
export KEEPVERITY
|
|
|
|
export KEEPFORCEENCRYPT
|
2021-12-14 13:52:15 +01:00
|
|
|
export PATCHVBMETAFLAG
|
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
|
|
|
|
2020-03-20 11:44:08 +01:00
|
|
|
#########
|
2017-06-24 16:38:20 +02:00
|
|
|
# Unpack
|
2020-03-20 11:44:08 +01:00
|
|
|
#########
|
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
|
2021-03-21 23:56:29 +01:00
|
|
|
0 ) ;;
|
2017-06-03 14:19:01 +02:00
|
|
|
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
|
|
|
|
;;
|
2021-03-21 23:56:29 +01:00
|
|
|
* )
|
|
|
|
abort "! Unable to unpack boot image"
|
|
|
|
;;
|
2017-06-03 14:19:01 +02:00
|
|
|
esac
|
|
|
|
|
2020-03-20 11:44:08 +01:00
|
|
|
###################
|
|
|
|
# Ramdisk Restores
|
|
|
|
###################
|
2017-06-03 14:19:01 +02:00
|
|
|
|
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=$?
|
2023-06-24 11:02:25 +02:00
|
|
|
SKIP_BACKUP=""
|
2019-02-28 11:46:36 +01:00
|
|
|
else
|
2022-05-12 12:04:55 +02:00
|
|
|
# Stock A only legacy SAR, or some Android 13 GKIs
|
2019-02-28 11:46:36 +01:00
|
|
|
STATUS=0
|
2023-06-24 11:02:25 +02:00
|
|
|
SKIP_BACKUP="#"
|
2019-02-28 11:46:36 +01:00
|
|
|
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"
|
2021-01-22 11:28:53 +01:00
|
|
|
SHA1=$(./magiskboot sha1 "$BOOTIMAGE" 2>/dev/null)
|
2020-01-01 07:02:44 +01:00
|
|
|
cat $BOOTIMAGE > stock_boot.img
|
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"
|
2023-06-03 01:49:04 +02:00
|
|
|
./magiskboot cpio ramdisk.cpio \
|
|
|
|
"extract .backup/.magisk config.orig" \
|
|
|
|
"restore"
|
2019-09-22 12:17:54 +02:00
|
|
|
cp -af ramdisk.cpio ramdisk.cpio.orig
|
2021-02-07 10:54:08 +01:00
|
|
|
rm -f stock_boot.img
|
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
|
|
|
|
|
2023-03-16 12:07:00 +01:00
|
|
|
# Workaround custom legacy Sony /init -> /(s)bin/init_sony : /init.real setup
|
2021-10-31 02:59:20 +01:00
|
|
|
INIT=init
|
2021-11-06 00:21:11 +01:00
|
|
|
if [ $((STATUS & 4)) -ne 0 ]; then
|
2021-10-31 02:59:20 +01:00
|
|
|
INIT=init.real
|
|
|
|
fi
|
|
|
|
|
2023-06-03 01:49:04 +02:00
|
|
|
if [ -f config.orig ]; then
|
|
|
|
# Read existing configs
|
|
|
|
chmod 0644 config.orig
|
|
|
|
SHA1=$(grep_prop SHA1 config.orig)
|
|
|
|
if ! $BOOTMODE; then
|
|
|
|
# Do not inherit config if not in recovery
|
|
|
|
PREINITDEVICE=$(grep_prop PREINITDEVICE config.orig)
|
|
|
|
fi
|
|
|
|
rm config.orig
|
|
|
|
fi
|
|
|
|
|
2020-03-20 11:44:08 +01:00
|
|
|
##################
|
|
|
|
# Ramdisk Patches
|
|
|
|
##################
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2017-09-15 21:48:58 +02:00
|
|
|
ui_print "- Patching ramdisk"
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2021-01-18 13:25:26 +01:00
|
|
|
# Compress to save precious ramdisk space
|
2021-05-13 09:21:04 +02:00
|
|
|
SKIP32="#"
|
|
|
|
SKIP64="#"
|
|
|
|
if [ -f magisk64 ]; then
|
2023-03-16 12:07:00 +01:00
|
|
|
$BOOTMODE && [ -z "$PREINITDEVICE" ] && PREINITDEVICE=$(./magisk64 --preinit-device)
|
2021-05-13 09:21:04 +02:00
|
|
|
./magiskboot compress=xz magisk64 magisk64.xz
|
|
|
|
unset SKIP64
|
|
|
|
fi
|
2023-03-16 12:07:00 +01:00
|
|
|
if [ -f magisk32 ]; then
|
|
|
|
$BOOTMODE && [ -z "$PREINITDEVICE" ] && PREINITDEVICE=$(./magisk32 --preinit-device)
|
|
|
|
./magiskboot compress=xz magisk32 magisk32.xz
|
|
|
|
unset SKIP32
|
|
|
|
fi
|
2022-10-31 15:31:15 +01:00
|
|
|
./magiskboot compress=xz stub.apk stub.xz
|
2021-01-18 13:25:26 +01:00
|
|
|
|
2023-03-08 07:42:54 +01:00
|
|
|
echo "KEEPVERITY=$KEEPVERITY" > config
|
|
|
|
echo "KEEPFORCEENCRYPT=$KEEPFORCEENCRYPT" >> config
|
|
|
|
echo "RECOVERYMODE=$RECOVERYMODE" >> config
|
2023-03-16 12:07:00 +01:00
|
|
|
if [ -n "$PREINITDEVICE" ]; then
|
2023-06-03 01:49:04 +02:00
|
|
|
ui_print "- Pre-init storage partition: $PREINITDEVICE"
|
2023-03-16 12:07:00 +01:00
|
|
|
echo "PREINITDEVICE=$PREINITDEVICE" >> config
|
|
|
|
fi
|
2023-03-08 07:42:54 +01:00
|
|
|
[ -n "$SHA1" ] && echo "SHA1=$SHA1" >> config
|
|
|
|
|
2019-03-08 00:07:23 +01:00
|
|
|
./magiskboot cpio ramdisk.cpio \
|
2021-10-31 02:59:20 +01:00
|
|
|
"add 0750 $INIT magiskinit" \
|
2021-01-18 13:25:26 +01:00
|
|
|
"mkdir 0750 overlay.d" \
|
|
|
|
"mkdir 0750 overlay.d/sbin" \
|
2021-05-13 09:21:04 +02:00
|
|
|
"$SKIP32 add 0644 overlay.d/sbin/magisk32.xz magisk32.xz" \
|
2021-01-18 21:37:08 +01:00
|
|
|
"$SKIP64 add 0644 overlay.d/sbin/magisk64.xz magisk64.xz" \
|
2022-10-31 15:31:15 +01:00
|
|
|
"add 0644 overlay.d/sbin/stub.xz stub.xz" \
|
2019-09-21 11:55:23 +02:00
|
|
|
"patch" \
|
2023-06-24 11:02:25 +02:00
|
|
|
"$SKIP_BACKUP backup ramdisk.cpio.orig" \
|
2019-02-28 11:46:36 +01:00
|
|
|
"mkdir 000 .backup" \
|
2023-04-06 03:53:55 +02:00
|
|
|
"add 000 .backup/.magisk config" \
|
|
|
|
|| abort "! Unable to patch ramdisk"
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2023-04-06 03:53:55 +02:00
|
|
|
rm -f ramdisk.cpio.orig config magisk*.xz stub.xz
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2020-03-20 11:44:08 +01:00
|
|
|
#################
|
|
|
|
# Binary Patches
|
|
|
|
#################
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2021-01-14 14:59:53 +01:00
|
|
|
for dt in dtb kernel_dtb extra; do
|
2022-06-16 10:47:23 +02:00
|
|
|
if [ -f $dt ]; then
|
|
|
|
if ! ./magiskboot dtb $dt test; then
|
2022-07-02 00:15:54 +02:00
|
|
|
ui_print "! Boot image $dt was patched by old (unsupported) Magisk"
|
|
|
|
abort "! Please try again with *unpatched* boot image"
|
2022-06-16 10:47:23 +02:00
|
|
|
fi
|
|
|
|
if ./magiskboot dtb $dt patch; then
|
|
|
|
ui_print "- Patch fstab in boot image $dt"
|
|
|
|
fi
|
|
|
|
fi
|
2019-09-22 10:17:15 +02:00
|
|
|
done
|
2017-06-03 14:19:01 +02:00
|
|
|
|
2018-02-09 20:34:13 +01:00
|
|
|
if [ -f kernel ]; then
|
2023-02-18 00:00:14 +01:00
|
|
|
PATCHEDKERNEL=false
|
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 \
|
2023-02-18 00:00:14 +01:00
|
|
|
A1020054011440B93FA00F7140020054010840B93FA00F71E0010054001840B91FA00F7181010054 \
|
|
|
|
&& PATCHEDKERNEL=true
|
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]
|
2023-02-18 00:00:14 +01:00
|
|
|
./magiskboot hexpatch kernel 821B8012 E2FF8F12 && PATCHEDKERNEL=true
|
2018-08-27 04:38:13 +02:00
|
|
|
|
2023-02-18 00:00:14 +01:00
|
|
|
# Force kernel to load rootfs for legacy SAR devices
|
2018-02-09 20:34:13 +01:00
|
|
|
# skip_initramfs -> want_initramfs
|
2023-07-09 17:53:59 +02:00
|
|
|
$LEGACYSAR && ./magiskboot hexpatch kernel \
|
2018-10-17 09:17:24 +02:00
|
|
|
736B69705F696E697472616D667300 \
|
2023-02-18 00:00:14 +01:00
|
|
|
77616E745F696E697472616D667300 \
|
|
|
|
&& PATCHEDKERNEL=true
|
|
|
|
|
|
|
|
# If the kernel doesn't need to be patched at all,
|
|
|
|
# keep raw kernel to avoid bootloops on some weird devices
|
|
|
|
$PATCHEDKERNEL || rm -f kernel
|
2018-02-09 20:34:13 +01:00
|
|
|
fi
|
2017-09-12 22:07:25 +02:00
|
|
|
|
2020-03-20 11:44:08 +01:00
|
|
|
#################
|
|
|
|
# Repack & Flash
|
|
|
|
#################
|
2017-11-10 18:33:50 +01:00
|
|
|
|
2017-09-15 21:48:58 +02:00
|
|
|
ui_print "- Repacking boot image"
|
2021-03-21 23:56:29 +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
|
|
|
|
2021-01-25 12:37:41 +01:00
|
|
|
# Restore the original boot partition path
|
|
|
|
[ -e "$BOOTNAND" ] && BOOTIMAGE="$BOOTNAND"
|
|
|
|
|
2019-02-25 02:39:01 +01:00
|
|
|
# Reset any error code
|
|
|
|
true
|