Magisk/app/src/main/res/raw/manager.sh

140 lines
3.2 KiB
Bash
Raw Normal View History

2020-02-10 12:36:28 +01:00
##################################
# Magisk Manager internal scripts
##################################
2018-05-13 12:14:10 +02:00
env_check() {
for file in busybox magisk magiskboot magiskinit util_functions.sh boot_patch.sh; do
2019-02-24 08:11:11 +01:00
[ -f $MAGISKBIN/$file ] || return 1
2018-05-13 12:14:10 +02:00
done
return 0
}
2018-06-25 18:29:01 +02:00
2018-07-04 11:15:26 +02:00
fix_env() {
2019-02-24 08:11:11 +01:00
cd $MAGISKBIN
PATH=/system/bin /system/bin/sh update-binary -x
./busybox rm -f update-binary magisk.apk
./busybox chmod -R 755 .
2019-03-20 08:20:02 +01:00
./magiskinit -x magisk magisk
2018-07-04 11:15:26 +02:00
cd /
}
direct_install() {
2019-02-24 08:11:11 +01:00
rm -rf $MAGISKBIN/* 2>/dev/null
mkdir -p $MAGISKBIN 2>/dev/null
chmod 700 $NVBASE
cp -af $1/. $MAGISKBIN
rm -f $MAGISKBIN/new-boot.img
2018-08-10 12:59:14 +02:00
echo "- Flashing new boot image"
2018-08-12 20:57:03 +02:00
flash_image $1/new-boot.img $2
if [ $? -ne 0 ]; then
echo "! Insufficient partition size"
return 1
fi
2018-08-12 20:57:03 +02:00
rm -rf $1
return 0
2018-07-04 11:15:26 +02:00
}
2018-06-26 23:58:56 +02:00
restore_imgs() {
[ -z $SHA1 ] && return 1
local BACKUPDIR=/data/magisk_backup_$SHA1
[ -d $BACKUPDIR ] || return 1
2018-06-26 23:58:56 +02:00
get_flags
2018-06-26 23:58:56 +02:00
find_boot_image
for name in dtb dtbo; do
[ -f $BACKUPDIR/${name}.img.gz ] || continue
local IMAGE=`find_block $name$SLOT`
[ -z $IMAGE ] && continue
flash_image $BACKUPDIR/${name}.img.gz $IMAGE
done
[ -f $BACKUPDIR/boot.img.gz ] || return 1
flash_image $BACKUPDIR/boot.img.gz $BOOTIMAGE
2018-06-26 23:58:56 +02:00
}
post_ota() {
cd $1
chmod 755 bootctl
2018-12-13 12:05:19 +01:00
./bootctl hal-info || return
[ `./bootctl get-current-slot` -eq 0 ] && SLOT_NUM=1 || SLOT_NUM=0
./bootctl set-active-boot-slot $SLOT_NUM
2019-03-22 07:32:21 +01:00
cat << EOF > post-fs-data.d/post_ota.sh
${1}/bootctl mark-boot-successful
rm -f ${1}/bootctl
2019-04-24 07:59:47 +02:00
rm -f ${1}/post-fs-data.d/post_ota.sh
2019-03-22 07:32:21 +01:00
EOF
chmod 755 post-fs-data.d/post_ota.sh
cd /
}
add_hosts_module() {
# Do not touch existing hosts module
[ -d $MAGISKTMP/modules/hosts ] && return
cd $MAGISKTMP/modules
mkdir -p hosts/system/etc
cat << EOF > hosts/module.prop
id=hosts
name=Systemless Hosts
version=1.0
versionCode=1
author=Magisk Manager
description=Magisk Manager built-in systemless hosts module
EOF
magisk --clone /system/etc/hosts hosts/system/etc/hosts
touch hosts/update
cd /
}
2020-02-11 01:33:58 +01:00
check_boot_ramdisk() {
# Create boolean ISAB
[ -z $SLOT ] && ISAB=false || ISAB=true
# If we are running as recovery mode, then we do not have ramdisk in boot
$RECOVERYMODE && return 1
# If we are A/B, then we must have ramdisk
$ISAB && return 0
# If we are using legacy SAR, but not AB, we do not have ramdisk in boot
if grep ' / ' /proc/mounts | grep -q '/dev/root'; then
# Override recovery mode to true
RECOVERYMODE=true
return 1
fi
return 0
}
2020-02-10 12:36:28 +01:00
##########################
# Non-root util_functions
##########################
mount_partitions() {
[ "`getprop ro.build.ab_update`" = "true" ] && SLOT=`getprop ro.boot.slot_suffix`
# Check whether non rootfs root dir exists
grep ' / ' /proc/mounts | grep -qv 'rootfs' && SYSTEM_ROOT=true || SYSTEM_ROOT=false
}
get_flags() {
$SYSTEM_ROOT && KEEPVERITY=true || KEEPVERITY=false
[ "`getprop ro.crypto.state`" = "encrypted" ] && KEEPFORCEENCRYPT=true || KEEPFORCEENCRYPT=false
RECOVERYMODE=false
}
run_migrations() { return; }
grep_prop() { return; }
#############
# Initialize
#############
mm_init() {
export BOOTMODE=true
mount_partitions
get_flags
run_migrations
SHA1=$(grep_prop SHA1 $MAGISKTMP/config)
2020-06-28 15:51:58 +02:00
check_boot_ramdisk && RAMDISKEXIST=true || RAMDISKEXIST=false
}