2022-01-13 17:39:35 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from pathlib import Path
|
|
|
|
import hashlib
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
|
|
|
|
|
2022-01-18 07:49:52 +01:00
|
|
|
__version__ = "0.0.3"
|
2022-01-13 17:39:35 +01:00
|
|
|
__author__ = "rigodron, algoflash, GGLinnk"
|
|
|
|
__license__ = "MIT"
|
|
|
|
__status__ = "developpement"
|
2022-01-16 17:59:30 +01:00
|
|
|
|
|
|
|
|
2022-01-13 17:44:29 +01:00
|
|
|
##################################################
|
|
|
|
# Set roms_path with your ROMs (at the root of the ROM folder)
|
2022-01-16 17:59:30 +01:00
|
|
|
# Extract all files from file system using dolphin emu - put it in gcm_dolphin/root/
|
|
|
|
# Extract boot.dol and apploader.img using dolphin emu - put it in gcm_dolphin/sys/
|
2022-01-13 17:44:29 +01:00
|
|
|
##################################################
|
2022-01-16 17:59:30 +01:00
|
|
|
roms_path = Path("../ROM")
|
|
|
|
dolphin_unpack_path = Path("dolphin_unpack")
|
|
|
|
unpack_path = Path("unpack")
|
|
|
|
unpack2_path = Path("unpack2")
|
2022-01-18 07:49:52 +01:00
|
|
|
repack_path = Path("repack")
|
2022-01-13 17:39:35 +01:00
|
|
|
# if there is a way to create symlinks on GCM filesystem, it could create strange situations
|
|
|
|
|
|
|
|
|
|
|
|
def print_paths_differences(folder1_paths:list, folder2_paths:list):
|
|
|
|
backup_paths = folder2_paths.copy()
|
|
|
|
for path in folder1_paths:
|
|
|
|
if path in folder2_paths:
|
|
|
|
folder2_paths.remove(path)
|
|
|
|
for path in backup_paths:
|
|
|
|
if path in folder1_paths:
|
|
|
|
folder1_paths.remove(path)
|
|
|
|
print("folder1 diff :")
|
|
|
|
for path in folder1_paths:
|
|
|
|
print(path)
|
|
|
|
print("folder2 diff :")
|
|
|
|
for path in folder2_paths:
|
|
|
|
print(path)
|
|
|
|
|
|
|
|
|
|
|
|
# compare two files sha256
|
|
|
|
def compare_sha256(file1_path:Path, file2_path:Path):
|
2022-01-16 17:59:30 +01:00
|
|
|
return hashlib.sha256( file1_path.read_bytes() ).hexdigest() == hashlib.sha256( file2_path.read_bytes() ).hexdigest()
|
2022-01-13 17:39:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
# compare two GCM
|
|
|
|
# -> raise an exception if there is a difference
|
|
|
|
def verify_GCM_sha256(folder1: Path, folder2: Path):
|
|
|
|
print(f"compare \"{folder1}\" - \"{folder2}\"")
|
|
|
|
len1 = len(folder1.parts)
|
|
|
|
len2 = len(folder2.parts)
|
|
|
|
# 1. Compare names of filesystems
|
|
|
|
folder1_paths = [Path(*path.parts[len1:]) for path in (folder1/"root").glob('**/*')]
|
|
|
|
folder2_paths = [Path(*path.parts[len2:]) for path in (folder2/"root").glob('**/*')]
|
|
|
|
if folder1_paths != folder2_paths:
|
|
|
|
print_paths_differences(folder1_paths, folder2_paths)
|
2022-01-16 17:59:30 +01:00
|
|
|
raise Exception(f"Folders \"{folder1}\" and \"{folder2}\" are different (not the same folders or files names).")
|
2022-01-13 17:39:35 +01:00
|
|
|
# 2. Compare sys files content
|
|
|
|
if not compare_sha256(folder1/"sys"/"apploader.img", folder2/"sys"/"apploader.img"):
|
2022-01-16 17:59:30 +01:00
|
|
|
raise Exception(f"\"{folder1}/sys/apploader.bin\" and \"{folder2}/sys/apploader.bin\" are different.")
|
2022-01-13 17:39:35 +01:00
|
|
|
if not compare_sha256(folder1/"sys"/"boot.dol", folder2/"sys"/"boot.dol"):
|
2022-01-16 17:59:30 +01:00
|
|
|
raise Exception(f"\"{folder1}/sys/boot.bin\" and \"{folder2}/sys/boot.bin\" are different.")
|
2022-01-13 17:39:35 +01:00
|
|
|
|
|
|
|
for path1 in (folder1/"root").glob('**/*'):
|
|
|
|
if path1.is_file():
|
|
|
|
path2 = folder2/Path(*path1.parts[len1:])
|
|
|
|
if not compare_sha256(path1, path2):
|
2022-01-16 17:59:30 +01:00
|
|
|
raise Exception(f"\"{path1}/\" and \"{path2}\" are different.")
|
2022-01-13 17:39:35 +01:00
|
|
|
|
|
|
|
|
2022-01-18 07:49:52 +01:00
|
|
|
print("###############################################################################")
|
|
|
|
print("# Checking tests folder")
|
|
|
|
print("###############################################################################")
|
|
|
|
# Check if tests folders exist
|
|
|
|
if unpack_path.is_dir() or unpack2_path.is_dir() or repack_path.is_dir():
|
|
|
|
raise Exception(f"Error - Please remove:\n-{unpack_path}\n-{unpack2_path}\n{repack_path}")
|
|
|
|
|
|
|
|
print("###############################################################################")
|
2022-01-13 17:39:35 +01:00
|
|
|
print("# Comparing unpacked ROMs with dolphin extracts")
|
2022-01-18 07:49:52 +01:00
|
|
|
print("###############################################################################")
|
2022-01-16 17:59:30 +01:00
|
|
|
# unpack ROM in unpack_path
|
2022-01-13 17:39:35 +01:00
|
|
|
unpack_path.mkdir(parents=True)
|
2022-01-13 17:44:29 +01:00
|
|
|
for iso_path in roms_path.glob("*"):
|
2022-01-13 17:39:35 +01:00
|
|
|
if iso_path.is_file():
|
|
|
|
if os.system(f"python gcmtool.py -u \"{iso_path}\" \"{unpack_path}/{iso_path.name}\"") != 0:
|
2022-01-16 17:59:30 +01:00
|
|
|
raise Exception("Error while unpacking original gcm.")
|
2022-01-13 17:39:35 +01:00
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# compare unpack_path dolphin_unpack_path
|
2022-01-13 17:39:35 +01:00
|
|
|
for folder_path in unpack_path.glob("*"):
|
2022-01-16 17:59:30 +01:00
|
|
|
verify_GCM_sha256(folder_path, dolphin_unpack_path / folder_path.name)
|
2022-01-13 17:39:35 +01:00
|
|
|
|
2022-01-18 07:49:52 +01:00
|
|
|
print("###############################################################################")
|
2022-01-13 17:39:35 +01:00
|
|
|
print("# Comparing iso->[1:unpacked]->repacked->[2:unpacked]")
|
2022-01-18 07:49:52 +01:00
|
|
|
print("###############################################################################")
|
2022-01-16 17:59:30 +01:00
|
|
|
# repack unpack_path repack_path
|
|
|
|
repack_path.mkdir()
|
2022-01-13 17:39:35 +01:00
|
|
|
for folder_path in unpack_path.glob("*"):
|
2022-01-16 17:59:30 +01:00
|
|
|
if os.system(f"python gcmtool.py -p \"{folder_path}\" \"{repack_path}/{folder_path.name}\"") != 0:
|
|
|
|
raise Exception("Error while packing unpacked gcm.")
|
2022-01-13 17:39:35 +01:00
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# unpack repack_path unpack2_path
|
2022-01-13 17:39:35 +01:00
|
|
|
unpack2_path.mkdir()
|
2022-01-16 17:59:30 +01:00
|
|
|
for iso_path in repack_path.glob("*"):
|
2022-01-13 17:39:35 +01:00
|
|
|
if os.system(f"python gcmtool.py -u \"{iso_path}\" \"{unpack2_path}/{iso_path.name}\"") != 0:
|
2022-01-16 17:59:30 +01:00
|
|
|
raise Exception("Error while unpacking repacked gcm.")
|
2022-01-13 17:39:35 +01:00
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# remove repack_path
|
|
|
|
shutil.rmtree(repack_path)
|
2022-01-13 17:39:35 +01:00
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# compare unpack_path unpack2_path
|
2022-01-13 17:39:35 +01:00
|
|
|
for folder_path in unpack_path.glob("*"):
|
|
|
|
verify_GCM_sha256(folder_path, unpack2_path / folder_path.name)
|
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# remove unpack2_path
|
2022-01-13 17:39:35 +01:00
|
|
|
shutil.rmtree(unpack2_path)
|
|
|
|
|
2022-01-18 07:49:52 +01:00
|
|
|
print("###############################################################################")
|
2022-01-13 17:39:35 +01:00
|
|
|
print("# Comparing iso->[1:unpacked]->rebuild_fst->repack->[2:unpacked]")
|
2022-01-18 07:49:52 +01:00
|
|
|
print("###############################################################################")
|
2022-01-16 17:59:30 +01:00
|
|
|
# rebuild unpack_path FSTs
|
2022-01-13 17:39:35 +01:00
|
|
|
for folder_path in unpack_path.glob("*"):
|
|
|
|
if os.system(f"python gcmtool.py -r \"{folder_path}\"") != 0:
|
2022-01-16 17:59:30 +01:00
|
|
|
raise Exception("Error while rebuilding FST.")
|
2022-01-13 17:39:35 +01:00
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# repack unpack_path repack_path
|
|
|
|
repack_path.mkdir()
|
2022-01-13 17:39:35 +01:00
|
|
|
for folder_path in unpack_path.glob("*"):
|
2022-01-16 17:59:30 +01:00
|
|
|
if os.system(f"python gcmtool.py -p \"{folder_path}\" \"{repack_path}/{folder_path.name}\"") != 0:
|
|
|
|
raise Exception("Error while packing gcm with new FST.")
|
2022-01-13 17:39:35 +01:00
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# unpack repack_path unpack2_path
|
2022-01-13 17:39:35 +01:00
|
|
|
unpack2_path.mkdir()
|
2022-01-16 17:59:30 +01:00
|
|
|
for iso_path in repack_path.glob("*"):
|
2022-01-13 17:39:35 +01:00
|
|
|
if os.system(f"python gcmtool.py -u \"{iso_path}\" \"{unpack2_path}/{iso_path.name}\"") != 0:
|
2022-01-16 17:59:30 +01:00
|
|
|
raise Exception("Error while unpacking repacked gcm with new FST.")
|
2022-01-13 17:39:35 +01:00
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# remove repack_path
|
|
|
|
shutil.rmtree(repack_path)
|
2022-01-13 17:39:35 +01:00
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# compare unpack_path unpack2_path
|
2022-01-13 17:39:35 +01:00
|
|
|
for folder_path in unpack_path.glob("*"):
|
|
|
|
verify_GCM_sha256(folder_path, unpack2_path / folder_path.name)
|
|
|
|
|
2022-01-16 17:59:30 +01:00
|
|
|
# remove unpack_path unpack2_path
|
2022-01-18 07:49:52 +01:00
|
|
|
print("###############################################################################")
|
|
|
|
print(f"# Cleaning test folders.")
|
|
|
|
print("###############################################################################")
|
2022-01-13 17:39:35 +01:00
|
|
|
shutil.rmtree(unpack_path)
|
|
|
|
shutil.rmtree(unpack2_path)
|
|
|
|
|
2022-01-18 07:49:52 +01:00
|
|
|
print("###############################################################################")
|
2022-01-13 17:39:35 +01:00
|
|
|
print("# All tests are OK")
|
2022-01-18 07:49:52 +01:00
|
|
|
print("###############################################################################")
|