Magisk/scripts/emulator.sh

120 lines
3.2 KiB
Bash
Raw Normal View History

2019-09-03 23:06:14 +02:00
#!/usr/bin/env bash
#####################################################################
2019-09-03 23:06:14 +02:00
# AVD Magisk Setup
#####################################################################
2019-09-03 23:06:14 +02:00
#
# This script will setup an environment with minimal Magisk that
# the Magisk app will be happy to run properly within the official
2019-09-03 23:06:14 +02:00
# emulator bundled with Android Studio (AVD).
#
# ONLY use this script for developing the Magisk app or root apps
# in the emulator. The constructed Magisk environment is not a
# fully functional one as if it is running on an actual device.
2019-09-03 23:06:14 +02:00
#
2021-04-10 06:29:42 +02:00
# The script assumes you are using x64 emulator images.
2019-09-03 23:06:14 +02:00
# Build binaries with `./build.py binary` before running this script.
#
#####################################################################
2019-09-03 23:06:14 +02:00
abort() {
echo "$@"
exit 1
}
mount_sbin() {
mount -t tmpfs -o 'mode=0755' tmpfs /sbin
$SELINUX && chcon u:object_r:rootfs:s0 /sbin
}
2019-09-03 23:06:14 +02:00
if [ ! -f /system/build.prop ]; then
# Running on PC
2021-01-18 13:25:26 +01:00
cd "$(dirname "$0")/.."
2021-04-10 06:29:42 +02:00
adb push native/out/x86/busybox native/out/x86/magiskinit \
native/out/x86_64/magisk scripts/emulator.sh /data/local/tmp
2019-09-03 23:06:14 +02:00
adb shell sh /data/local/tmp/emulator.sh
exit 0
fi
cd /data/local/tmp
chmod 777 busybox
chmod 777 magiskinit
2021-01-18 13:25:26 +01:00
chmod 777 magisk
2019-09-03 23:06:14 +02:00
2020-07-27 12:32:54 +02:00
if [ -z "$FIRST_STAGE" ]; then
export FIRST_STAGE=1
export ASH_STANDALONE=1
if [ `./busybox id -u` -ne 0 ]; then
# Re-exec script with root
exec /system/xbin/su 0 ./busybox sh $0
else
# Re-exec script with busybox
exec ./busybox sh $0
fi
fi
2019-09-03 23:06:14 +02:00
# Remove previous setup if exist
pgrep magiskd >/dev/null && pkill -9 magiskd
[ -f /sbin/magisk ] && umount -l /sbin
2020-07-27 12:32:54 +02:00
[ -f /system/bin/magisk ] && umount -l /system/bin
# SELinux stuffs
SELINUX=false
[ -e /sys/fs/selinux ] && SELINUX=true
if $SELINUX; then
ln -sf ./magiskinit magiskpolicy
./magiskpolicy --live --magisk
fi
2019-09-03 23:06:14 +02:00
2020-07-27 12:32:54 +02:00
BINDIR=/sbin
# Setup bin overlay
if mount | grep -q rootfs; then
2020-07-27 12:32:54 +02:00
# Legacy rootfs
mount -o rw,remount /
rm -rf /root
mkdir /root
chmod 750 /root
ln /sbin/* /root
mount -o ro,remount /
mount_sbin
ln -s /root/* /sbin
2020-07-27 12:32:54 +02:00
elif [ -e /sbin ]; then
# Legacy SAR
mount_sbin
2020-07-27 12:32:54 +02:00
if ! grep -q '/sbin/.magisk/mirror/system_root' /proc/mounts; then
mkdir -p /sbin/.magisk/mirror/system_root
2021-04-10 06:29:42 +02:00
block=$(mount | grep ' / ' | awk '{ print $1 }')
2020-07-27 12:32:54 +02:00
[ $block = "/dev/root" ] && block=/dev/block/dm-0
mount -o ro $block /sbin/.magisk/mirror/system_root
fi
for file in /sbin/.magisk/mirror/system_root/sbin/*; do
[ ! -e $file ] && break
if [ -L $file ]; then
cp -af $file /sbin
else
2021-04-10 06:29:42 +02:00
sfile=/sbin/$(basename $file)
touch $sfile
mount -o bind $file $sfile
fi
done
2020-07-27 12:32:54 +02:00
else
# Android Q+ without sbin, use overlayfs
BINDIR=/system/bin
rm -rf /dev/magisk
mkdir -p /dev/magisk/upper
mkdir /dev/magisk/work
./magisk --clone-attr /system/bin /dev/magisk/upper
mount -t overlay overlay -olowerdir=/system/bin,upperdir=/dev/magisk/upper,workdir=/dev/magisk/work /system/bin
fi
# Magisk stuffs
2021-01-18 13:25:26 +01:00
cp -af ./magisk $BINDIR/magisk
2020-07-27 12:32:54 +02:00
chmod 755 $BINDIR/magisk
ln -s ./magisk $BINDIR/su
ln -s ./magisk $BINDIR/resetprop
ln -s ./magisk $BINDIR/magiskhide
2019-09-03 23:06:14 +02:00
mkdir -p /data/adb/modules 2>/dev/null
mkdir /data/adb/post-fs-data.d 2>/dev/null
mkdir /data/adb/services.d 2>/dev/null
2020-07-27 12:32:54 +02:00
$BINDIR/magisk --daemon