Skip to content

Commit

Permalink
Offsets for 64-bit MachO V2
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKnauth committed Nov 1, 2023
1 parent c343a60 commit 472cf54
Showing 1 changed file with 41 additions and 5 deletions.
46 changes: 41 additions & 5 deletions src/game_engine/unity/mono.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl Module {
.find_map(|&name| process.get_module_address(name).ok())?;

let is_64_bit = pe::MachineType::read(process, module)? == pe::MachineType::X86_64;
let offsets = Offsets::new(version, is_64_bit);
let offsets = Offsets::new(version, is_64_bit, BinaryFormat::PE);

let root_domain_function_address = pe::symbols(process, module)
.find(|symbol| {
Expand Down Expand Up @@ -666,6 +666,13 @@ impl<const CAP: usize> UnityPointer<CAP> {
}
}

#[derive(Copy, Clone, PartialEq, Hash, Debug)]
enum BinaryFormat {
PE,
#[cfg(feature = "std")]
MachO,
}

struct Offsets {
monoassembly_aname: u8,
monoassembly_image: u8,
Expand All @@ -688,9 +695,9 @@ struct Offsets {
}

impl Offsets {
const fn new(version: Version, is_64_bit: bool) -> &'static Self {
match is_64_bit {
true => match version {
const fn new(version: Version, is_64_bit: bool, format: BinaryFormat) -> &'static Self {
match (is_64_bit, format) {
(true, BinaryFormat::PE) => match version {
Version::V1 => &Self {
monoassembly_aname: 0x10,
monoassembly_image: 0x58,
Expand Down Expand Up @@ -754,7 +761,7 @@ impl Offsets {
monoclassfieldalignment: 0x20,
},
},
false => match version {
(false, BinaryFormat::PE) => match version {
Version::V1 => &Self {
monoassembly_aname: 0x8,
monoassembly_image: 0x40,
Expand Down Expand Up @@ -818,6 +825,35 @@ impl Offsets {
monoclassfieldalignment: 0x10,
},
},
#[cfg(feature = "std")]
(true, BinaryFormat::MachO) => match version {
Version::V1 => panic!("MachO V1 not supported"),
// 64-bit MachO V2 matches Unity2019_4_2020_3_x64_MachO_Offsets from
// https://github.com/hackf5/unityspy/blob/master/src/HackF5.UnitySpy/Offsets/MonoLibraryOffsets.cs#L86
Version::V2 => &Self {
monoassembly_aname: 0x10,
monoassembly_image: 0x60, // AssemblyImage = 0x44 + 0x1c
monoimage_class_cache: 0x4C0, // ImageClassCache = 0x354 + 0x16c
monointernalhashtable_table: 0x20, // HashTableTable = 0x14 + 0xc
monointernalhashtable_size: 0x18, // HashTableSize = 0xc + 0xc
monoclassdef_next_class_cache: 0x100, // TypeDefinitionNextClassCache = 0xa8 + 0x34 + 0x10 + 0x18 + 0x4 - 0x8
monoclassdef_klass: 0x0,
monoclass_name: 0x40, // TypeDefinitionName = 0x2c + 0x1c - 0x8
monoclass_fields: 0x90, // TypeDefinitionFields = 0x60 + 0x20 + 0x18 - 0x8
monoclassdef_field_count: 0xF8, // TypeDefinitionFieldCount = 0xa4 + 0x34 + 0x10 + 0x18 - 0x8
monoclass_runtime_info: 0xC8, // TypeDefinitionRuntimeInfo = 0x84 + 0x34 + 0x18 - 0x8
monoclass_vtable_size: 0x54, // TypeDefinitionVTableSize = 0x38 + 0x24 - 0x8
monoclass_parent: 0x28, // TypeDefinitionParent = 0x20 + 0x10 - 0x8
monoclassfield_name: 0x8,
monoclassfield_offset: 0x18,
monoclassruntimeinfo_domain_vtables: 0x8, // TypeDefinitionRuntimeInfoDomainVTables = 0x4 + 0x4
monovtable_vtable: 0x40, // VTable = 0x28 + 0x18
monoclassfieldalignment: 0x20,
},
Version::V3 => panic!("MachO V3 not supported"),
},
#[cfg(feature = "std")]
(false, BinaryFormat::MachO) => panic!("32-bit MachO format not supported"),
}
}
}
Expand Down

0 comments on commit 472cf54

Please sign in to comment.