This repository has been archived on 2024-09-17. You can view files and clone it, but cannot push or open issues or pull requests.
LoN-Deployer/lon_deployer/main.py

404 lines
14 KiB
Python
Raw Normal View History

2024-05-06 16:14:10 +00:00
import argparse
2024-05-13 14:40:05 +00:00
import atexit
2024-05-10 08:28:08 +00:00
import logging
import pathlib
import platform
2024-05-06 16:14:10 +00:00
import re
import signal
import subprocess
import threading
from os import getcwd as pwd, remove
from os import path as op
from sys import exit
from time import sleep
import adbutils
import adbutils.shell
from rich.prompt import Prompt
2024-05-10 09:12:58 +00:00
from rich_argparse import RichHelpFormatter
2024-05-06 16:14:10 +00:00
2024-05-13 16:07:15 +00:00
from . import exceptions
2024-05-13 14:36:14 +00:00
from . import fastboot
2024-05-13 14:38:02 +00:00
from . import files
2024-05-10 08:28:08 +00:00
from ._version import VERSION
from .utils import get_port, repartition, get_progress, logger, console, check_rootfs
2024-05-06 16:14:10 +00:00
exit_counter = 0
exit_counter_needed = False
2024-05-06 16:14:10 +00:00
adb: adbutils.AdbClient | None = None
def handle_sigint(*_) -> None:
global exit_counter, exit_counter_needed
if exit_counter_needed:
if exit_counter == 2:
console.log("CTRL+C pressed 3 times. Exiting")
exit(1)
else:
console.log(f"Press CTRL+C {2 - exit_counter} more {'time' if exit_counter == 1 else 'times'} to exit")
exit_counter += 1
2024-05-06 16:14:10 +00:00
else:
console.log("CTRL+C pressed. Exiting")
exit(1)
2024-05-06 16:14:10 +00:00
2024-05-13 14:40:05 +00:00
def exit_handler(*_) -> None:
global adb
if adb is not None:
with console.status("[cyan]Stopping adb server", spinner="line", spinner_style="white"):
adb.server_kill()
2024-05-06 16:14:10 +00:00
def main() -> int:
global adb, exit_counter_needed
2024-05-06 16:14:10 +00:00
signal.signal(signal.SIGINT, handle_sigint)
2024-05-13 14:40:05 +00:00
atexit.register(exit_handler)
2024-05-06 16:14:10 +00:00
logger.debug(f"Running on {platform.system()}")
2024-05-06 16:14:10 +00:00
parser = argparse.ArgumentParser(
2024-05-10 09:12:58 +00:00
description="Linux on Nabu deployer",
formatter_class=lambda prog: RichHelpFormatter(
prog,
max_help_position=37
)
)
parser.add_argument(
"-v", "--version",
help="show version and exit",
action="store_true"
2024-05-06 16:14:10 +00:00
)
parser.add_argument(
"-d", "--device-serial",
2024-05-10 09:12:58 +00:00
help="device serial"
2024-05-06 16:14:10 +00:00
)
parser.add_argument(
"-u", "--username",
2024-05-10 09:12:58 +00:00
help="linux user name"
2024-05-06 16:14:10 +00:00
)
parser.add_argument(
"-p", "--password",
2024-05-10 09:12:58 +00:00
help="linux user password"
2024-05-06 16:14:10 +00:00
)
parser.add_argument(
"RootFS",
2024-05-10 09:12:58 +00:00
help="root fs image",
default=None, nargs="?"
2024-05-06 16:14:10 +00:00
)
parser.add_argument(
"-S", "--part-size",
help="linux partition size in percents"
)
2024-05-10 08:28:08 +00:00
parser.add_argument(
"--debug",
help="enable debug output",
action="store_true"
)
2024-05-06 16:14:10 +00:00
args = parser.parse_args()
2024-05-10 08:28:08 +00:00
if args.version:
console.log(f"Version: {VERSION}")
return 0
if args.debug:
logger.setLevel(logging.DEBUG)
else:
logger.setLevel(logging.INFO)
2024-05-10 09:12:58 +00:00
if args.RootFS:
rootfs = pathlib.Path(args.RootFS)
2024-05-10 09:12:58 +00:00
try:
if not check_rootfs(rootfs):
2024-05-10 09:12:58 +00:00
console.log("Invalid RootFS image")
2024-05-13 16:09:23 +00:00
return 166
except exceptions.UnsupportedPlatform as e:
console.log(f"{e.platform} is not supported")
return 178
2024-05-10 09:12:58 +00:00
except FileNotFoundError:
console.log("RootFS image not found!")
2024-05-13 16:09:23 +00:00
return 167
2024-05-10 09:12:58 +00:00
else:
console.log(parser.parse_args("-h".split()))
2024-05-13 16:09:23 +00:00
return 168
2024-05-06 16:14:10 +00:00
while True:
try:
adb = adbutils.AdbClient(host="127.0.0.1", port=5037)
adb.make_connection()
except adbutils.errors.AdbTimeout:
with console.status("[cyan]Starting adb server", spinner="line", spinner_style="white"):
try:
proc = subprocess.Popen("adb start-server",
stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True
)
stdout, stderr = proc.communicate()
except FileNotFoundError:
console.log("Failed to start adb server")
console.log("Adb binary not found in path")
adb = None
2024-05-13 16:09:23 +00:00
return 169
2024-05-06 16:14:10 +00:00
else:
if proc.wait() != 0:
console.log("Failed to start adb server")
console.log(stdout)
adb = None
2024-05-13 16:09:23 +00:00
return 169
2024-05-06 16:14:10 +00:00
else:
break
2024-05-13 14:36:14 +00:00
fb_list = fastboot.list_devices()
2024-05-13 16:08:50 +00:00
adb_list = list(map(lambda x: x.serial, adb.list()))
if args.device_serial:
if args.device_serial in fb_list or args.device_serial in adb_list:
serial = args.device_serial
else:
console.log(f"Device with serial {args.device_serial} not found")
return 170
elif len(fb_list) == 1 and len(adb_list) == 0:
serial = fb_list[0]
elif len(adb_list) == 1 and len(fb_list) == 0:
serial = adb_list[0]
elif len(adb_list + fb_list) == 0:
console.log("No devices available. Please check your device connection")
return 170
else:
console.log("More then one device detected. Use -d flag to set device")
return 171
if serial not in fb_list:
console.log("ADB Device detected. Rebooting it to bootloader")
adb.device(serial).shell("reboot bootloader")
with console.status("[cyan]Waiting for fastboot device", spinner="line", spinner_style="white"):
try:
2024-05-13 14:36:14 +00:00
fastboot.wait_for_bootloader(serial)
2024-05-13 16:08:50 +00:00
except exceptions.DeviceNotFound:
console.log("Device timed out! Exiting")
return 172
console.log("Device connected")
else:
console.log("Device connected")
with console.status("[cyan]Getting info from device", spinner="line", spinner_style="white"):
try:
if not fastboot.check_device(serial):
console.log("Is it nabu?")
fastboot.reboot(serial)
return 254
except exceptions.DeviceNotFound:
console.log("Device timed out! Exiting")
return 172
2024-05-13 14:36:14 +00:00
parts_status = fastboot.check_parts(serial)
2024-05-13 16:08:50 +00:00
console.log("Device verified")
2024-05-06 16:14:10 +00:00
username = args.username
while username is None:
username_pattern = r"^[a-z0-9](?!.*[-._?])[a-z0-9]{1,18}[a-z0-9]$"
username = Prompt.ask("Username for linux")
if not re.match(username_pattern, username):
console.log("Incorrect username specified. Please set correct one")
username = None
password = args.password
while password is None:
password_pattern = r"^[a-z0-9?._-]{1,20}$"
password = Prompt.ask(f"Password for {username}", password=True)
if not re.match(password_pattern, password):
console.log("Incorrect password specified. Please set correct one")
password = None
linux_part_size = args.part_size
2024-05-13 16:08:50 +00:00
while linux_part_size is not None or not parts_status:
if (linux_part_size is not None and
re.match(r"^\d+%$", linux_part_size) and 20 <= int(linux_part_size[:-1]) <= 90):
break
else:
console.log("Incorrect linux partition size. It can be [20; 90]%")
2024-05-06 16:14:10 +00:00
linux_part_size = Prompt.ask(
"Size of linux partition (leave empty to skip if possible)",
default="", show_default=False
)
for msg in [
f"Username: {username}",
f"Password: {password}",
f"Partition size: {linux_part_size if linux_part_size else 'Not changed'}",
f"Device: {serial}"
]:
console.log(msg)
if Prompt.ask("Is it ok?", default="n", choices=["y", "n"]) == "n":
2024-05-13 16:09:23 +00:00
return 253
2024-05-06 16:14:10 +00:00
if linux_part_size:
if Prompt.ask(
f"Repartition {'requested' if parts_status else 'needed'}. All data will be ERASED",
default="n", choices=["y", "n"]) == "y":
exit_counter_needed = True
2024-05-06 16:14:10 +00:00
console.log("Restoring stock partition table")
2024-05-13 14:36:14 +00:00
fastboot.restore_parts(serial)
2024-05-06 16:14:10 +00:00
console.log("Booting OrangeFox recovery")
try:
fastboot.boot_ofox(serial)
except exceptions.UnauthorizedBootImage:
console.log("Unable to start orangefox recovery")
console.log("Reflash your rom and try again")
fastboot.reboot(serial)
return 177
2024-05-06 16:14:10 +00:00
with console.status("[cyan]Waiting for device", spinner="line", spinner_style="white"):
try:
adb.wait_for(serial, state="recovery")
except adbutils.errors.AdbTimeout():
2024-05-13 16:09:23 +00:00
console.log("Device timed out! Exiting")
return 173
2024-05-06 16:14:10 +00:00
repartition(serial, int(linux_part_size.replace("%", "")), percents=True)
console.log("Repartition complete")
2024-05-13 16:09:23 +00:00
console.log("To boot android you need to manually format data in your ROM recovery")
2024-05-06 16:14:10 +00:00
adbutils.device(serial).shell("reboot bootloader")
console.log("Rebooting into bootloader")
with console.status("[cyan]Waiting for device", spinner="line", spinner_style="white"):
try:
2024-05-13 14:36:14 +00:00
fastboot.wait_for_bootloader(serial)
2024-05-13 16:09:23 +00:00
except exceptions.DeviceNotFound:
console.log("Device timed out! Exiting")
return 172
2024-05-06 16:14:10 +00:00
else:
console.log("Repartition canceled. Exiting")
2024-05-13 16:09:23 +00:00
return 253
2024-05-06 16:14:10 +00:00
exit_counter_needed = True
2024-05-06 16:14:10 +00:00
if not parts_status and not linux_part_size:
console.log("Incompatible partition table detected. Repartition needed. Exiting")
2024-05-13 16:09:23 +00:00
return 174
2024-05-06 16:14:10 +00:00
console.log("Cleaning linux and esp")
2024-05-13 16:09:23 +00:00
fastboot.clean_device(serial)
2024-05-06 16:14:10 +00:00
console.log("Booting OrangeFox recovery")
try:
fastboot.boot_ofox(serial)
except exceptions.UnauthorizedBootImage:
console.log("Unable to start orangefox recovery")
console.log("Reflash your rom and try again")
fastboot.reboot(serial)
return 177
2024-05-06 16:14:10 +00:00
with console.status("[cyan]Waiting for device", spinner="line", spinner_style="white"):
try:
adb.wait_for(serial, state="recovery")
except adbutils.errors.AdbTimeout():
2024-05-13 16:09:23 +00:00
console.log("Device timed out! Exiting")
return 173
2024-05-06 16:14:10 +00:00
adbd = adb.device(serial)
with console.status("[cyan]Formating EFI partition", spinner="line", spinner_style="white"):
adbd.shell("mkfs.fat -F32 -s1 /dev/block/platform/soc/1d84000.ufshc/by-name/esp -n ESPNABU")
console.log("EFI partition formated")
server_port = get_port()
nc_thread = threading.Thread(
target=adbd.shell,
args=(f"busybox nc -l 127.0.0.1:{server_port} > /dev/block/platform/soc/1d84000.ufshc/by-name/linux",),
daemon=True
)
nc_thread.start()
sleep(3)
2024-05-13 16:09:23 +00:00
2024-05-06 16:14:10 +00:00
console.log("Flashing RootFS")
2024-05-13 16:09:23 +00:00
with adbd.create_connection(adbutils.Network.TCP, server_port) as conn:
2024-05-06 16:14:10 +00:00
with get_progress() as pbar:
task = pbar.add_task("[cyan]Uploading RootFS", total=op.getsize(rootfs))
with open(rootfs, "rb") as rootfs:
while True:
data = rootfs.read(10240)
conn.send(data)
pbar.update(task, advance=len(data))
if len(data) < 10240:
break
conn.close()
nc_thread.join()
with console.status("[cyan]Setting up user and creating boot files", spinner="line", spinner_style="white"):
if adbd.shell2(f"postinstall {username} {password}").returncode == 0:
console.log("User created")
console.log("Boot files created")
else:
console.log("Postinstall failed. Rebooting to system")
adbd.reboot()
2024-05-13 16:09:23 +00:00
return 174
2024-05-06 16:14:10 +00:00
console.log("Installing UEFI")
2024-05-13 14:38:02 +00:00
bootshim = files.BootShim.get()
payload = files.UEFI_Payload.get()
2024-05-06 16:14:10 +00:00
adbd.shell("mkdir /tmp/uefi-install")
with get_progress() as pbar:
task = pbar.add_task("[cyan]Pushing uefi files", total=2)
2024-05-13 14:38:02 +00:00
adbd.sync.push(bootshim, f"/tmp/uefi-install/{files.BootShim.name}")
2024-05-06 16:14:10 +00:00
pbar.update(task, advance=1)
2024-05-13 14:38:02 +00:00
adbd.sync.push(payload, f"/tmp/uefi-install/{files.UEFI_Payload.name}")
2024-05-06 16:14:10 +00:00
pbar.update(task, advance=1)
2024-05-06 16:14:10 +00:00
console.log("Patching boot image")
match adbd.shell2("uefi-patch").returncode:
case 1:
2024-05-13 16:09:23 +00:00
console.log("Failed to patch boot. Rebooting")
adbd.reboot()
return 176
2024-05-06 16:14:10 +00:00
case 2:
console.log("Boot image already patched. Skipping")
adbd.reboot()
case 0:
patched_size = int(adbd.shell("stat -c%s /tmp/uefi-install/new-boot.img"))
with get_progress() as pbar:
task = pbar.add_task("[cyan]Saving patched boot to disk", total=patched_size)
boot_uefi_path = op.join(pwd(), "new_boot.img")
if op.exists(boot_uefi_path):
remove(boot_uefi_path)
with open(boot_uefi_path, "ab") as file:
for chunk in adbd.sync.iter_content("/tmp/uefi-install/new-boot.img"):
file.write(chunk)
pbar.update(task, advance=len(chunk))
console.log(f"Pathed boot saved to {boot_uefi_path}")
2024-05-06 16:14:10 +00:00
backup_size = int(adbd.shell("stat -c%s /tmp/uefi-install/boot.img"))
with get_progress() as pbar:
task = pbar.add_task("[cyan]Saving boot backup to disk", total=backup_size)
boot_backup_path = op.join(pwd(), "boot_backup.img")
if op.exists(boot_backup_path):
remove(boot_backup_path)
with open(boot_backup_path, "ab") as file:
for chunk in adbd.sync.iter_content("/tmp/uefi-install/new-boot.img"):
file.write(chunk)
pbar.update(task, advance=len(chunk))
console.log(f"Boot backup saved to {boot_backup_path}")
console.log("Rebooting to bootloader")
adbd.shell("reboot bootloader")
2024-05-13 14:36:14 +00:00
fastboot.wait_for_bootloader(serial)
2024-05-06 16:14:10 +00:00
console.log("Flashing patched boot")
with open(boot_uefi_path, "rb") as file:
2024-05-13 14:36:14 +00:00
fastboot.flash(serial, "boot", file.read())
fastboot.reboot(serial)
2024-05-06 16:14:10 +00:00
console.log("Done!")
return 0
if "__main__" == __name__:
2024-05-13 16:09:23 +00:00
exit(main())