mirror of
https://github.com/Lakr233/vphone-cli.git
synced 2026-09-02 02:34:29 +00:00
The ramdisk-based install (build/send an SSH ramdisk, iproxy-forward, then
push CFW files over SSH and flip the boot snapshot with snaputil in-VM) has
been fully replaced by the host-mount path: cfw_install_host.sh mounts the
VM's Disk.img on the host, places every file locally, and flips the boot
snapshot offline via tools/apfs_snap_rename.py. This removes all remaining
ramdisk generation, delivery, and usage — no legacy fallback.
Deleted:
- scripts/ramdisk_build.py, scripts/ramdisk_send.sh
Renamed:
- scripts/cfw_host_mode.sh -> scripts/cfw_transport.sh (was a conditional
"host-mode override"; now the sole, unconditionally-sourced transport)
setup_machine.sh: drop the USE_RAMDISK_CFW=1 branch and every iproxy/ramdisk
helper (usbmux UDID resolution, port picking, start/stop iproxy, wait-for-
ramdisk-ssh), all RAMDISK_*/IPROXY_* vars, the cleanup() iproxy handling, and
the orphaned cfw_install_target var. Only the host-mount cfw_install_host call
remains.
cfw_install{,_dev,_jb,_exp}.sh: delete the SSH transport (SSH_* vars, SSH_OPTS,
sshpass prereq/_sshpass/_ssh_retry, ssh_cmd/scp_to/scp_from/remote_file_exists/
remote_mount, wait_for_device_ssh_ready) and the dead ramdisk-mechanism body
blocks (snaputil snapshot flip, dropbearkey host-key pre-generation, halt-over-
SSH, CFW_SKIP_HALT). The transport is now sourced unconditionally from
cfw_transport.sh. dropbear -R generates host keys at first boot; the offline
apfs_snap_rename.py does the boot-source flip. Dropped the vestigial
CFW_HOST_MODE gate.
Also: pymobiledevice3_bridge.py (ramdisk-send command already gone), Makefile
(ramdisk targets/help/IRECOVERY_ECID removed), README + ja/ko/zh (install flow
rewritten to host-mount), AGENTS.md/CLAUDE.md architecture tree, and stale
comments in vphone_jb_setup.sh, VPhoneCLI.swift, apfs_snap_rename.py,
cfw_patch_post_restore_dt.py.
Verified booting via make setup_machine.
Co-Authored-By: Claude Opus 4.8 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XZVS9oqVNmHJzpb8mFtKJx
486 lines
19 KiB
Bash
Executable File
486 lines
19 KiB
Bash
Executable File
#!/bin/zsh
|
|
# cfw_install_dev.sh — Install base CFW modifications on vphone (dev variant).
|
|
#
|
|
# Installs Cryptexes, patches system binaries, installs jailbreak tools
|
|
# and configures LaunchDaemons for persistent SSH/VNC access.
|
|
#
|
|
# Files are placed directly on the VM's Disk.img volumes, which cfw_install_host.sh
|
|
# attaches and mounts on the host; the VM must be off.
|
|
#
|
|
# Safe to run multiple times — always patches from original .bak files,
|
|
# keeps decrypted Cryptex DMGs cached, handles already-mounted filesystems.
|
|
#
|
|
# Prerequisites:
|
|
# - VM restored (make restore) and powered off
|
|
# - `ipsw` tool installed (brew install blacktop/tap/ipsw)
|
|
# - `aea` tool available (macOS 12+)
|
|
# - Python: make setup_venv && source .venv/bin/activate
|
|
# - cfw_input/ or resources/cfw_input.tar.zst + resources/cfw_dev/rpcserver_ios present
|
|
#
|
|
# Usage: make cfw_install_dev
|
|
set -euo pipefail
|
|
|
|
# ── Restore caller's PATH — Nix /etc/zshenv resets PATH on zsh startup ─
|
|
[[ -n "${_VPHONE_PATH:-}" ]] && export PATH="$_VPHONE_PATH"
|
|
|
|
VM_DIR="${1:-.}"
|
|
SCRIPT_DIR="${0:a:h}"
|
|
|
|
# Resolve absolute paths
|
|
VM_DIR="$(cd "$VM_DIR" && pwd)"
|
|
|
|
# ── Python resolver — prefer project venv over whatever is in PATH ─
|
|
_resolve_python3() {
|
|
local venv_py="${SCRIPT_DIR:h}/.venv/bin/python3"
|
|
if [[ -x "$venv_py" ]]; then
|
|
echo "$venv_py"
|
|
else
|
|
command -v python3 || true
|
|
fi
|
|
}
|
|
PYTHON3="$(_resolve_python3)"
|
|
|
|
# ── Configuration ───────────────────────────────────────────────
|
|
CFW_INPUT="cfw_input"
|
|
CFW_ARCHIVE="cfw_input.tar.zst"
|
|
TEMP_DIR="$VM_DIR/.cfw_temp"
|
|
|
|
# ── Helpers ─────────────────────────────────────────────────────
|
|
die() {
|
|
echo "[-] $*" >&2
|
|
exit 1
|
|
}
|
|
|
|
check_prerequisites() {
|
|
local missing=()
|
|
command -v ldid &>/dev/null || missing+=("ldid (brew install ldid-procursus)")
|
|
if ((${#missing[@]} > 0)); then
|
|
die "Missing required tools: ${missing[*]}. Run: make setup_tools"
|
|
fi
|
|
}
|
|
|
|
ldid_sign() {
|
|
local file="$1" bundle_id="${2:-}"
|
|
local args=(-S -M "-K$VM_DIR/$CFW_INPUT/signcert.p12")
|
|
[[ -n "$bundle_id" ]] && args+=("-I$bundle_id")
|
|
ldid "${args[@]}" "$file"
|
|
}
|
|
|
|
ldid_sign_ent() {
|
|
local file="$1" entitlements_plist="$2" bundle_id="${3:-}"
|
|
local args=("-S$entitlements_plist" "-K$VM_DIR/$CFW_INPUT/signcert.p12")
|
|
[[ -n "$bundle_id" ]] && args+=("-I$bundle_id")
|
|
ldid "${args[@]}" "$file"
|
|
}
|
|
|
|
# Detach a DMG mountpoint if currently mounted, ignore errors
|
|
safe_detach() {
|
|
local mnt="$1"
|
|
if mount | grep -Fq " on $mnt "; then
|
|
sudo ${SUDO_ASKPASS:+-A} hdiutil detach -force "$mnt" 2>/dev/null || true
|
|
fi
|
|
}
|
|
|
|
assert_mount_under_vm() {
|
|
local mnt="$1" label="${2:-mountpoint}"
|
|
local abs_vm abs_mnt
|
|
|
|
abs_vm="$(cd "$VM_DIR" && pwd -P)"
|
|
abs_mnt="$(cd "$mnt" && pwd -P)"
|
|
case "$abs_mnt/" in
|
|
"$abs_vm/"*) ;;
|
|
*) die "Unsafe ${label}: ${abs_mnt} (must be inside ${abs_vm})" ;;
|
|
esac
|
|
}
|
|
|
|
# ── Find restore directory ─────────────────────────────────────
|
|
find_restore_dir() {
|
|
for dir in "$VM_DIR"/iPhone*_Restore; do
|
|
[[ -f "$dir/BuildManifest.plist" ]] && echo "$dir" && return
|
|
done
|
|
die "No restore directory found in $VM_DIR"
|
|
}
|
|
|
|
# ── Setup input resources ──────────────────────────────────────
|
|
setup_cfw_input() {
|
|
[[ -d "$VM_DIR/$CFW_INPUT" ]] && return
|
|
local archive
|
|
for search_dir in "$SCRIPT_DIR/resources" "$SCRIPT_DIR" "$VM_DIR"; do
|
|
archive="$search_dir/$CFW_ARCHIVE"
|
|
if [[ -f "$archive" ]]; then
|
|
echo " Extracting $CFW_ARCHIVE..."
|
|
tar --zstd -xf "$archive" -C "$VM_DIR"
|
|
return
|
|
fi
|
|
done
|
|
die "Neither $CFW_INPUT/ nor $CFW_ARCHIVE found"
|
|
}
|
|
|
|
# ── Apply dev overlay (replace rpcserver_ios in iosbinpack64) ──
|
|
apply_dev_overlay() {
|
|
local dev_bin
|
|
for search_dir in "$SCRIPT_DIR/resources/cfw_dev" "$SCRIPT_DIR/cfw_dev"; do
|
|
dev_bin="$search_dir/rpcserver_ios"
|
|
if [[ -f "$dev_bin" ]]; then
|
|
echo " Applying dev overlay (rpcserver_ios)..."
|
|
local iosbinpack="$VM_DIR/$CFW_INPUT/jb/iosbinpack64.tar"
|
|
local tmpdir="$VM_DIR/.iosbinpack_tmp"
|
|
mkdir -p "$tmpdir"
|
|
tar -xf "$iosbinpack" -C "$tmpdir"
|
|
cp "$dev_bin" "$tmpdir/iosbinpack64/usr/local/bin/rpcserver_ios"
|
|
(cd "$tmpdir" && tar -cf "$iosbinpack" iosbinpack64)
|
|
rm -rf "$tmpdir"
|
|
return
|
|
fi
|
|
done
|
|
die "Dev overlay not found (cfw_dev/rpcserver_ios)"
|
|
}
|
|
|
|
# ── Check prerequisites ────────────────────────────────────────
|
|
check_prereqs() {
|
|
command -v ipsw >/dev/null 2>&1 || die "'ipsw' not found. Install: brew install blacktop/tap/ipsw"
|
|
command -v aea >/dev/null 2>&1 || die "'aea' not found (requires macOS 12+)"
|
|
[[ -x "$PYTHON3" ]] || die "python3 not found (tried: $PYTHON3). Run: make setup_venv"
|
|
echo "[*] Python: $PYTHON3 ($("$PYTHON3" --version 2>&1))"
|
|
local py_err
|
|
py_err="$("$PYTHON3" -c "import capstone, keystone" 2>&1)" || {
|
|
die "Missing Python deps (using $PYTHON3).\n Error: ${py_err}\n Fix: source ${SCRIPT_DIR:h}/.venv/bin/activate && pip install capstone keystone-engine\n Or: make setup_venv"
|
|
}
|
|
}
|
|
|
|
# ── Cleanup trap (unmount DMGs on error) ───────────────────────
|
|
cleanup_on_exit() {
|
|
safe_detach "$TEMP_DIR/mnt_sysos"
|
|
safe_detach "$TEMP_DIR/mnt_appos"
|
|
}
|
|
trap cleanup_on_exit EXIT
|
|
|
|
# The VM's Disk.img is attached on the host by cfw_install_host.sh; its APFS
|
|
# volumes are mounted here and every file is placed with plain cp/chmod/etc.
|
|
# (the VM is off — nothing runs "on the device").
|
|
: "${CFW_HOST_CONTAINER:?CFW_HOST_CONTAINER unset — run via cfw_install_host.sh}"
|
|
HOST_MNT="${CFW_HOST_MNT:-/private/tmp/cfwhost}"
|
|
MNT1="$HOST_MNT/mnt1" # disk1s1 (System / rootfs)
|
|
MNT3="$HOST_MNT/mnt3" # disk1s3
|
|
TAR="$(command -v gtar 2>/dev/null || echo /opt/homebrew/bin/gtar)" # macOS bsdtar lacks GNU tar flags
|
|
mkdir -p "$HOST_MNT"
|
|
|
|
# Mount an APFS volume of the attached image container at a host mount point.
|
|
mount_vol() { # mount_vol <slice, e.g. s1> <mountpoint> [opts]
|
|
local dev="/dev/${CFW_HOST_CONTAINER}$1" mnt="$2" opts="${3:-rw}"
|
|
/bin/mkdir -p "$mnt"
|
|
/sbin/mount | /usr/bin/grep -q " on $mnt " && return 0
|
|
/sbin/mount_apfs -o "$opts" "$dev" "$mnt" 2>/dev/null || true
|
|
/sbin/mount | /usr/bin/grep -q " on $mnt " || die "mount failed: $dev -> $mnt"
|
|
}
|
|
|
|
# ════════════════════════════════════════════════════════════════
|
|
# Main
|
|
# ════════════════════════════════════════════════════════════════
|
|
echo "[*] cfw_install.sh — Installing CFW on vphone..."
|
|
|
|
check_prereqs
|
|
|
|
RESTORE_DIR=$(find_restore_dir)
|
|
echo "[+] Restore directory: $RESTORE_DIR"
|
|
|
|
setup_cfw_input
|
|
apply_dev_overlay
|
|
INPUT_DIR="$VM_DIR/$CFW_INPUT"
|
|
echo "[+] Input resources: $INPUT_DIR"
|
|
check_prerequisites
|
|
|
|
mkdir -p "$TEMP_DIR"
|
|
|
|
# ── Parse Cryptex paths from BuildManifest ─────────────────────
|
|
echo ""
|
|
echo "[*] Parsing iPhone BuildManifest for Cryptex paths..."
|
|
CRYPTEX_PATHS=$("$PYTHON3" "$SCRIPT_DIR/patchers/cfw.py" cryptex-paths "$RESTORE_DIR/iPhone-BuildManifest.plist")
|
|
CRYPTEX_SYSOS=$(echo "$CRYPTEX_PATHS" | head -1)
|
|
CRYPTEX_APPOS=$(echo "$CRYPTEX_PATHS" | tail -1)
|
|
echo " SystemOS: $CRYPTEX_SYSOS"
|
|
echo " AppOS: $CRYPTEX_APPOS"
|
|
|
|
# ═══════════ 1/7 INSTALL CRYPTEX ══════════════════════════════
|
|
echo ""
|
|
echo "[1/7] Installing Cryptex (SystemOS + AppOS)..."
|
|
|
|
SYSOS_DMG="$TEMP_DIR/CryptexSystemOS.dmg"
|
|
APPOS_DMG="$TEMP_DIR/CryptexAppOS.dmg"
|
|
MNT_SYSOS="$TEMP_DIR/mnt_sysos"
|
|
MNT_APPOS="$TEMP_DIR/mnt_appos"
|
|
|
|
# Decrypt SystemOS AEA (cached — skip if already decrypted)
|
|
if [[ ! -f "$SYSOS_DMG" ]]; then
|
|
echo " Extracting AEA key..."
|
|
AEA_KEY=$(ipsw fw aea --key "$RESTORE_DIR/$CRYPTEX_SYSOS")
|
|
echo " key: $AEA_KEY"
|
|
echo " Decrypting SystemOS..."
|
|
aea decrypt -i "$RESTORE_DIR/$CRYPTEX_SYSOS" -o "$SYSOS_DMG" -key-value "$AEA_KEY"
|
|
else
|
|
echo " Using cached SystemOS DMG"
|
|
fi
|
|
|
|
# Copy AppOS (unencrypted, cached)
|
|
if [[ ! -f "$APPOS_DMG" ]]; then
|
|
cp "$RESTORE_DIR/$CRYPTEX_APPOS" "$APPOS_DMG"
|
|
else
|
|
echo " Using cached AppOS DMG"
|
|
fi
|
|
|
|
# Detach any leftover mounts from previous runs
|
|
safe_detach "$MNT_SYSOS"
|
|
safe_detach "$MNT_APPOS"
|
|
mkdir -p "$MNT_SYSOS" "$MNT_APPOS"
|
|
assert_mount_under_vm "$MNT_SYSOS" "SystemOS mountpoint"
|
|
assert_mount_under_vm "$MNT_APPOS" "AppOS mountpoint"
|
|
|
|
echo " Mounting SystemOS..."
|
|
sudo ${SUDO_ASKPASS:+-A} hdiutil attach -mountpoint "$MNT_SYSOS" "$SYSOS_DMG" -nobrowse -owners off
|
|
echo " Mounting AppOS..."
|
|
sudo ${SUDO_ASKPASS:+-A} hdiutil attach -mountpoint "$MNT_APPOS" "$APPOS_DMG" -nobrowse -owners off
|
|
|
|
# Mount the image's System volume (tolerate already-mounted)
|
|
echo " Mounting rootfs rw..."
|
|
mount_vol s1 "$MNT1"
|
|
|
|
# Patch launchd jetsum guard
|
|
echo ""
|
|
echo " Patching launchd (jetsam guard)..."
|
|
|
|
if ! [[ -e "$MNT1/sbin/launchd.bak" ]]; then
|
|
echo " Creating backup..."
|
|
/bin/cp $MNT1/sbin/launchd $MNT1/sbin/launchd.bak
|
|
fi
|
|
|
|
cp "$MNT1/sbin/launchd.bak" "$TEMP_DIR/launchd"
|
|
|
|
"$PYTHON3" "$SCRIPT_DIR/patchers/cfw.py" patch-launchd-jetsam "$TEMP_DIR/launchd"
|
|
ldid_sign "$TEMP_DIR/launchd"
|
|
cp -R "$TEMP_DIR/launchd" "$MNT1/sbin/launchd"
|
|
/bin/chmod 0755 $MNT1/sbin/launchd
|
|
|
|
echo " [+] launchd patched"
|
|
|
|
# remove seatbelt profile and add task_for_pid-allow for debugserver
|
|
echo ""
|
|
echo " Patch debugserver entitlements..."
|
|
|
|
cp "$MNT1/usr/libexec/debugserver" "$TEMP_DIR/debugserver"
|
|
ldid -e "$TEMP_DIR/debugserver" > "$TEMP_DIR/debugserver-entitlements.plist"
|
|
plutil -remove seatbelt-profiles "$TEMP_DIR/debugserver-entitlements.plist" || true
|
|
plutil -insert task_for_pid-allow -bool YES "$TEMP_DIR/debugserver-entitlements.plist" || true
|
|
ldid_sign_ent "$TEMP_DIR/debugserver" "$TEMP_DIR/debugserver-entitlements.plist"
|
|
cp -R "$TEMP_DIR/debugserver" "$MNT1/usr/libexec/debugserver"
|
|
/bin/chmod 0755 $MNT1/usr/libexec/debugserver
|
|
|
|
echo " [+] debugserver entitlements patched"
|
|
|
|
|
|
/bin/rm -rf $MNT1/System/Cryptexes/App $MNT1/System/Cryptexes/OS
|
|
/bin/mkdir -p $MNT1/System/Cryptexes/App $MNT1/System/Cryptexes/OS
|
|
/bin/chmod 0755 $MNT1/System/Cryptexes/App $MNT1/System/Cryptexes/OS
|
|
|
|
# Copy Cryptex files onto the volume
|
|
echo " Copying Cryptexes..."
|
|
cp -R "$MNT_SYSOS/." "$MNT1/System/Cryptexes/OS"
|
|
cp -R "$MNT_APPOS/." "$MNT1/System/Cryptexes/App"
|
|
|
|
# Create dyld symlinks (ln -sf is idempotent)
|
|
echo " Creating dyld symlinks..."
|
|
/bin/ln -sf ../../../System/Cryptexes/OS/System/Library/Caches/com.apple.dyld \
|
|
$MNT1/System/Library/Caches/com.apple.dyld
|
|
/bin/ln -sf ../../../../System/Cryptexes/OS/System/DriverKit/System/Library/dyld \
|
|
$MNT1/System/DriverKit/System/Library/dyld
|
|
|
|
# Unmount Cryptex DMGs
|
|
echo " Unmounting Cryptex DMGs..."
|
|
safe_detach "$MNT_SYSOS"
|
|
safe_detach "$MNT_APPOS"
|
|
|
|
echo " [+] Cryptex installed"
|
|
|
|
# ═══════════ 2/7 PATCH SEPUTIL ════════════════════════════════
|
|
echo ""
|
|
echo "[2/7] Patching seputil..."
|
|
|
|
# Always patch from .bak (original unpatched binary)
|
|
if ! [[ -e "$MNT1/usr/libexec/seputil.bak" ]]; then
|
|
echo " Creating backup..."
|
|
/bin/cp $MNT1/usr/libexec/seputil $MNT1/usr/libexec/seputil.bak
|
|
fi
|
|
|
|
cp "$MNT1/usr/libexec/seputil.bak" "$TEMP_DIR/seputil"
|
|
"$PYTHON3" "$SCRIPT_DIR/patchers/cfw.py" patch-seputil "$TEMP_DIR/seputil"
|
|
ldid_sign "$TEMP_DIR/seputil" "com.apple.seputil"
|
|
cp -R "$TEMP_DIR/seputil" "$MNT1/usr/libexec/seputil"
|
|
/bin/chmod 0755 $MNT1/usr/libexec/seputil
|
|
|
|
# Rename gigalocker (mv to same name is fine on re-run)
|
|
echo " Renaming gigalocker..."
|
|
mount_vol s3 "$MNT3"
|
|
mv "$MNT3"/*.gl(N) "$MNT3/AA.gl" 2>/dev/null || true
|
|
|
|
echo " [+] seputil patched"
|
|
|
|
# ═══════════ 3/7 INSTALL GPU DRIVER ══════════════════════════
|
|
echo ""
|
|
echo "[3/7] Installing AppleParavirtGPUMetalIOGPUFamily..."
|
|
|
|
cp -R "$INPUT_DIR/custom/AppleParavirtGPUMetalIOGPUFamily.tar" "$MNT1"
|
|
"$TAR" --preserve-permissions --no-overwrite-dir \
|
|
-xf $MNT1/AppleParavirtGPUMetalIOGPUFamily.tar -C $MNT1
|
|
|
|
BUNDLE="$MNT1/System/Library/Extensions/AppleParavirtGPUMetalIOGPUFamily.bundle"
|
|
# Clean macOS resource fork files (._* files from tar xattrs)
|
|
find $BUNDLE -name '._*' -delete 2>/dev/null || true
|
|
/usr/sbin/chown -R 0:0 $BUNDLE
|
|
/bin/chmod 0755 $BUNDLE
|
|
/bin/chmod 0755 $BUNDLE/libAppleParavirtCompilerPluginIOGPUFamily.dylib
|
|
/bin/chmod 0755 $BUNDLE/AppleParavirtGPUMetalIOGPUFamily
|
|
/bin/chmod 0755 $BUNDLE/_CodeSignature
|
|
/bin/chmod 0644 $BUNDLE/_CodeSignature/CodeResources
|
|
/bin/chmod 0644 $BUNDLE/Info.plist
|
|
/bin/rm -f $MNT1/AppleParavirtGPUMetalIOGPUFamily.tar
|
|
|
|
echo " [+] GPU driver installed"
|
|
|
|
# ═══════════ 4/7 INSTALL IOSBINPACK64 ════════════════════════
|
|
echo ""
|
|
echo "[4/7] Installing iosbinpack64..."
|
|
|
|
cp -R "$INPUT_DIR/jb/iosbinpack64.tar" "$MNT1"
|
|
"$TAR" --preserve-permissions --no-overwrite-dir \
|
|
-xf $MNT1/iosbinpack64.tar -C $MNT1
|
|
/bin/rm -f $MNT1/iosbinpack64.tar
|
|
|
|
# dropbear host keys are generated on first boot by dropbear -R; just ensure
|
|
# the key directory exists for it to write into.
|
|
/bin/mkdir -p $MNT3/dropbear
|
|
|
|
echo " [+] iosbinpack64 installed"
|
|
|
|
# ═══════════ 5/7 PATCH LAUNCHD_CACHE_LOADER ══════════════════
|
|
echo ""
|
|
echo "[5/7] Patching launchd_cache_loader..."
|
|
|
|
# Always patch from .bak (original unpatched binary)
|
|
if ! [[ -e "$MNT1/usr/libexec/launchd_cache_loader.bak" ]]; then
|
|
echo " Creating backup..."
|
|
/bin/cp $MNT1/usr/libexec/launchd_cache_loader $MNT1/usr/libexec/launchd_cache_loader.bak
|
|
fi
|
|
|
|
cp "$MNT1/usr/libexec/launchd_cache_loader.bak" "$TEMP_DIR/launchd_cache_loader"
|
|
"$PYTHON3" "$SCRIPT_DIR/patchers/cfw.py" patch-launchd-cache-loader "$TEMP_DIR/launchd_cache_loader"
|
|
ldid_sign "$TEMP_DIR/launchd_cache_loader" "com.apple.launchd_cache_loader"
|
|
cp -R "$TEMP_DIR/launchd_cache_loader" "$MNT1/usr/libexec/launchd_cache_loader"
|
|
/bin/chmod 0755 $MNT1/usr/libexec/launchd_cache_loader
|
|
|
|
echo " [+] launchd_cache_loader patched"
|
|
|
|
# ═══════════ 6/7 PATCH MOBILEACTIVATIOND ═════════════════════
|
|
echo ""
|
|
echo "[6/7] Patching mobileactivationd..."
|
|
|
|
# Always patch from .bak (original unpatched binary)
|
|
if ! [[ -e "$MNT1/usr/libexec/mobileactivationd.bak" ]]; then
|
|
echo " Creating backup..."
|
|
/bin/cp $MNT1/usr/libexec/mobileactivationd $MNT1/usr/libexec/mobileactivationd.bak
|
|
fi
|
|
|
|
cp "$MNT1/usr/libexec/mobileactivationd.bak" "$TEMP_DIR/mobileactivationd"
|
|
"$PYTHON3" "$SCRIPT_DIR/patchers/cfw.py" patch-mobileactivationd "$TEMP_DIR/mobileactivationd"
|
|
ldid_sign "$TEMP_DIR/mobileactivationd"
|
|
cp -R "$TEMP_DIR/mobileactivationd" "$MNT1/usr/libexec/mobileactivationd"
|
|
/bin/chmod 0755 $MNT1/usr/libexec/mobileactivationd
|
|
|
|
echo " [+] mobileactivationd patched"
|
|
|
|
# ═══════════ 7/7 LAUNCHDAEMONS + LAUNCHD.PLIST ══════════════
|
|
echo ""
|
|
echo "[7/7] Installing LaunchDaemons..."
|
|
|
|
# Install vphoned (vsock HID injector daemon)
|
|
VPHONED_SRC="$SCRIPT_DIR/vphoned"
|
|
VPHONED_BIN="$VPHONED_SRC/vphoned"
|
|
VPHONED_SRCS=("$VPHONED_SRC"/*.m)
|
|
needs_vphoned_build=0
|
|
if [[ ! -f "$VPHONED_BIN" ]]; then
|
|
needs_vphoned_build=1
|
|
else
|
|
for src in "${VPHONED_SRCS[@]}"; do
|
|
if [[ "$src" -nt "$VPHONED_BIN" ]]; then
|
|
needs_vphoned_build=1
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
if [[ "$needs_vphoned_build" == "1" ]]; then
|
|
echo " Building vphoned for arm64..."
|
|
xcrun -sdk iphoneos clang -arch arm64 -Os -fobjc-arc \
|
|
-I"$VPHONED_SRC" \
|
|
-I"$VPHONED_SRC/vendor/libarchive" \
|
|
-o "$VPHONED_BIN" "${VPHONED_SRCS[@]}" \
|
|
-larchive \
|
|
-lsqlite3 \
|
|
-framework Foundation \
|
|
-framework Security \
|
|
-framework CoreServices
|
|
fi
|
|
cp "$VPHONED_BIN" "$TEMP_DIR/vphoned"
|
|
ldid_sign_ent "$TEMP_DIR/vphoned" "$VPHONED_SRC/entitlements.plist"
|
|
cp -R "$TEMP_DIR/vphoned" "$MNT1/usr/bin/vphoned"
|
|
/bin/chmod 0755 $MNT1/usr/bin/vphoned
|
|
# Keep a copy of the signed binary for host-side auto-update
|
|
cp "$TEMP_DIR/vphoned" "$VM_DIR/.vphoned.signed"
|
|
echo " [+] vphoned installed (signed copy at .vphoned.signed)"
|
|
|
|
# Send daemon plists (overwrite on re-run)
|
|
for plist in bash.plist dropbear.plist trollvnc.plist rpcserver_ios.plist; do
|
|
plist_src="$INPUT_DIR/jb/LaunchDaemons/$plist"
|
|
if [[ "$plist" == "dropbear.plist" ]]; then
|
|
plist_src="$TEMP_DIR/dropbear.plist"
|
|
cp "$INPUT_DIR/jb/LaunchDaemons/dropbear.plist" "$plist_src"
|
|
"$PYTHON3" "$SCRIPT_DIR/patchers/cfw.py" patch-dropbear-plist "$plist_src"
|
|
fi
|
|
cp -R "$plist_src" "$MNT1/System/Library/LaunchDaemons/"
|
|
/bin/chmod 0644 $MNT1/System/Library/LaunchDaemons/$plist
|
|
done
|
|
cp -R "$VPHONED_SRC/vphoned.plist" "$MNT1/System/Library/LaunchDaemons/"
|
|
/bin/chmod 0644 $MNT1/System/Library/LaunchDaemons/vphoned.plist
|
|
|
|
# Always patch launchd.plist from .bak (original)
|
|
echo " Patching launchd.plist..."
|
|
if ! [[ -e "$MNT1/System/Library/xpc/launchd.plist.bak" ]]; then
|
|
echo " Creating backup..."
|
|
/bin/cp $MNT1/System/Library/xpc/launchd.plist $MNT1/System/Library/xpc/launchd.plist.bak
|
|
fi
|
|
|
|
cp "$MNT1/System/Library/xpc/launchd.plist.bak" "$TEMP_DIR/launchd.plist"
|
|
cp "$VPHONED_SRC/vphoned.plist" "$INPUT_DIR/jb/LaunchDaemons/"
|
|
"$PYTHON3" "$SCRIPT_DIR/patchers/cfw.py" inject-daemons "$TEMP_DIR/launchd.plist" "$INPUT_DIR/jb/LaunchDaemons"
|
|
cp -R "$TEMP_DIR/launchd.plist" "$MNT1/System/Library/xpc/launchd.plist"
|
|
/bin/chmod 0644 $MNT1/System/Library/xpc/launchd.plist
|
|
|
|
echo " [+] LaunchDaemons installed"
|
|
|
|
# ═══════════ CLEANUP ═════════════════════════════════════════
|
|
echo ""
|
|
echo "[*] Unmounting image volumes..."
|
|
/sbin/umount $MNT1 2>/dev/null || true
|
|
/sbin/umount $MNT3 2>/dev/null || true
|
|
|
|
# Keep .cfw_temp/Cryptex*.dmg cached (slow to re-create)
|
|
# Only remove temp binaries
|
|
echo "[*] Cleaning up temp binaries..."
|
|
rm -f "$TEMP_DIR/seputil" \
|
|
"$TEMP_DIR/launchd_cache_loader" \
|
|
"$TEMP_DIR/mobileactivationd" \
|
|
"$TEMP_DIR/vphoned" \
|
|
"$TEMP_DIR/launchd.plist"
|
|
|
|
echo ""
|
|
echo "[+] CFW installation complete!"
|
|
echo " Boot to apply changes."
|
|
echo " After boot, SSH will be available on port 22222 (password: alpine)"
|