From 83367def99e093691c4321ea8be4388473c006dc Mon Sep 17 00:00:00 2001 From: Luke Street Date: Wed, 4 Sep 2024 00:02:48 -0600 Subject: [PATCH] TGC cleanup & renaming --- nod/src/disc/mod.rs | 6 +++--- nod/src/io/tgc.rs | 42 +++++++++++++++++++++++++++++++----------- 2 files changed, 34 insertions(+), 14 deletions(-) diff --git a/nod/src/disc/mod.rs b/nod/src/disc/mod.rs index a73b35c..dc85872 100644 --- a/nod/src/disc/mod.rs +++ b/nod/src/disc/mod.rs @@ -105,9 +105,9 @@ pub struct PartitionHeader { pub fst_max_size: U32, /// File system table load address pub fst_memory_address: U32, - /// User position - pub user_position: U32, - /// User size + /// User data offset + pub user_offset: U32, + /// User data size pub user_size: U32, /// Padding _pad2: [u8; 4], diff --git a/nod/src/io/tgc.rs b/nod/src/io/tgc.rs index 8167833..e5ae834 100644 --- a/nod/src/io/tgc.rs +++ b/nod/src/io/tgc.rs @@ -23,20 +23,34 @@ pub const TGC_MAGIC: MagicBytes = [0xae, 0x0f, 0x38, 0xa2]; #[derive(Clone, Debug, PartialEq, FromBytes, FromZeroes, AsBytes)] #[repr(C, align(4))] struct TGCHeader { + /// Magic bytes magic: MagicBytes, - unk1: U32, + /// TGC version + version: U32, + /// Offset to the start of the GCM header + header_offset: U32, + /// Size of the GCM header header_size: U32, - disc_area_header_size: U32, + /// Offset to the FST fst_offset: U32, + /// Size of the FST fst_size: U32, + /// Maximum size of the FST across discs fst_max_size: U32, + /// Offset to the DOL dol_offset: U32, + /// Size of the DOL dol_size: U32, - file_area: U32, - file_area_size: U32, + /// Offset to user data + user_offset: U32, + /// Size of user data + user_size: U32, + /// Offset to the banner banner_offset: U32, + /// Size of the banner banner_size: U32, - file_offset_base: U32, + /// Original user data offset in the GCM + gcm_user_offset: U32, } #[derive(Clone)] @@ -55,6 +69,12 @@ impl DiscIOTGC { if header.magic != TGC_MAGIC { return Err(Error::DiscFormat("Invalid TGC magic".to_string())); } + if header.version.get() != 0 { + return Err(Error::DiscFormat(format!( + "Unsupported TGC version {}", + header.version.get() + ))); + } // Read FST and adjust offsets inner @@ -69,8 +89,8 @@ impl DiscIOTGC { .ok_or_else(|| Error::DiscFormat("Invalid TGC FST".to_string()))?; for node in nodes { if node.is_file() { - node.offset = - node.offset - header.file_offset_base + header.file_area - header.header_size; + node.offset = node.offset - header.gcm_user_offset + + (header.user_offset - header.header_offset); } } @@ -85,7 +105,7 @@ impl BlockIO for DiscIOTGC { block: u32, _partition: Option<&PartitionInfo>, ) -> io::Result { - let offset = self.header.header_size.get() as u64 + block as u64 * SECTOR_SIZE as u64; + let offset = self.header.header_offset.get() as u64 + block as u64 * SECTOR_SIZE as u64; let total_size = self.inner.len(); if offset >= total_size { // End of file @@ -109,8 +129,8 @@ impl BlockIO for DiscIOTGC { ..size_of::() + size_of::()], ) .unwrap(); - partition_header.dol_offset = self.header.dol_offset - self.header.header_size; - partition_header.fst_offset = self.header.fst_offset - self.header.header_size; + partition_header.dol_offset = self.header.dol_offset - self.header.header_offset; + partition_header.fst_offset = self.header.fst_offset - self.header.header_offset; } // Copy modified FST to output @@ -134,7 +154,7 @@ impl BlockIO for DiscIOTGC { DiscMeta { format: Format::Tgc, lossless: true, - disc_size: Some(self.inner.len() - self.header.header_size.get() as u64), + disc_size: Some(self.inner.len() - self.header.header_offset.get() as u64), ..Default::default() } }