Skip to content
Permalink
Browse files
Merge pull request #8622 from JosJuice/volumeverifier-invalid-partiti…
…on-biggest-offset

VolumeVerifier: Ignore invalid partitions in GetBiggestReferencedOffset
  • Loading branch information
Tilka committed Feb 10, 2020
2 parents d129fae + 829f3cf commit c598772
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
@@ -391,27 +391,29 @@ void VolumeVerifier::Start()
(m_volume.GetVolumeType() == Platform::WiiDisc && !m_volume.IsEncryptedAndHashed()) ||
IsDebugSigned();

CheckPartitions();
if (m_volume.GetVolumeType() == Platform::WiiWAD)
CheckCorrectlySigned(PARTITION_NONE, Common::GetStringT("This title is not correctly signed."));
CheckDiscSize();
CheckDiscSize(CheckPartitions());
CheckMisc();

SetUpHashing();
}

void VolumeVerifier::CheckPartitions()
std::vector<Partition> VolumeVerifier::CheckPartitions()
{
if (m_volume.GetVolumeType() == Platform::WiiWAD)
return {};

const std::vector<Partition> partitions = m_volume.GetPartitions();
if (partitions.empty())
{
if (m_volume.GetVolumeType() != Platform::WiiWAD &&
!m_volume.GetFileSystem(m_volume.GetGamePartition()))
if (!m_volume.GetFileSystem(m_volume.GetGamePartition()))
{
AddProblem(Severity::High,
Common::GetStringT("The filesystem is invalid or could not be read."));
return {};
}
return;
return {m_volume.GetGamePartition()};
}

std::optional<u32> partitions_in_first_table = m_volume.ReadSwapped<u32>(0x40000, PARTITION_NONE);
@@ -484,8 +486,14 @@ void VolumeVerifier::CheckPartitions()
}
}

std::vector<Partition> valid_partitions;
for (const Partition& partition : partitions)
CheckPartition(partition);
{
if (CheckPartition(partition))
valid_partitions.push_back(partition);
}

return valid_partitions;
}

bool VolumeVerifier::CheckPartition(const Partition& partition)
@@ -720,12 +728,12 @@ bool VolumeVerifier::ShouldBeDualLayer() const
std::string_view(m_volume.GetGameID()));
}

void VolumeVerifier::CheckDiscSize()
void VolumeVerifier::CheckDiscSize(const std::vector<Partition>& partitions)
{
if (!IsDisc(m_volume.GetVolumeType()))
return;

m_biggest_referenced_offset = GetBiggestReferencedOffset();
m_biggest_referenced_offset = GetBiggestReferencedOffset(partitions);
if (ShouldBeDualLayer() && m_biggest_referenced_offset <= SL_DVD_R_SIZE)
{
AddProblem(Severity::Medium,
@@ -781,12 +789,8 @@ void VolumeVerifier::CheckDiscSize()
}
}

u64 VolumeVerifier::GetBiggestReferencedOffset() const
u64 VolumeVerifier::GetBiggestReferencedOffset(const std::vector<Partition>& partitions) const
{
std::vector<Partition> partitions = m_volume.GetPartitions();
if (partitions.empty())
partitions.emplace_back(m_volume.GetGamePartition());

const u64 disc_header_size = m_volume.GetVolumeType() == Platform::GameCubeDisc ? 0x460 : 0x50000;
u64 biggest_offset = disc_header_size;
for (const Partition& partition : partitions)
@@ -145,7 +145,7 @@ class VolumeVerifier final
u64 block_index;
};

void CheckPartitions();
std::vector<Partition> CheckPartitions();
bool CheckPartition(const Partition& partition); // Returns false if partition should be ignored
std::string GetPartitionName(std::optional<u32> type) const;
void CheckCorrectlySigned(const Partition& partition, std::string error_text);
@@ -154,8 +154,8 @@ class VolumeVerifier final
bool ShouldHaveInstallPartition() const;
bool ShouldHaveMasterpiecePartitions() const;
bool ShouldBeDualLayer() const;
void CheckDiscSize();
u64 GetBiggestReferencedOffset() const;
void CheckDiscSize(const std::vector<Partition>& partitions);
u64 GetBiggestReferencedOffset(const std::vector<Partition>& partitions) const;
u64 GetBiggestReferencedOffset(const FileInfo& file_info) const;
void CheckMisc();
void CheckSuperPaperMario();

0 comments on commit c598772

Please sign in to comment.