2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 23:09:55 -04:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-04-09 17:44:53 +02:00
|
|
|
#include <map>
|
2016-06-24 10:43:46 +02:00
|
|
|
#include <mbedtls/aes.h>
|
2014-08-31 09:34:58 -04:00
|
|
|
#include <memory>
|
2017-06-03 21:29:08 +02:00
|
|
|
#include <optional>
|
2014-02-21 01:47:53 +01:00
|
|
|
#include <string>
|
2015-12-19 17:52:10 -05:00
|
|
|
#include <vector>
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-21 01:47:53 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2017-02-11 08:57:47 +01:00
|
|
|
#include "Core/IOS/ES/Formats.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "DiscIO/Volume.h"
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
// --- this volume type is used for encrypted Wii images ---
|
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2017-06-06 11:49:01 +02:00
|
|
|
class BlobReader;
|
2016-07-06 20:33:05 +02:00
|
|
|
enum class BlobType;
|
|
|
|
enum class Country;
|
|
|
|
enum class Language;
|
2016-12-23 18:41:21 +01:00
|
|
|
enum class Region;
|
2016-07-06 20:33:05 +02:00
|
|
|
enum class Platform;
|
|
|
|
|
2017-06-06 11:49:01 +02:00
|
|
|
class VolumeWii : public Volume
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-06-06 11:49:01 +02:00
|
|
|
VolumeWii(std::unique_ptr<BlobReader> reader);
|
|
|
|
~VolumeWii();
|
2015-06-13 12:51:24 +02:00
|
|
|
bool Read(u64 _Offset, u64 _Length, u8* _pBuffer, const Partition& partition) const override;
|
|
|
|
std::vector<Partition> GetPartitions() const override;
|
|
|
|
Partition GetGamePartition() const override;
|
2017-06-20 21:51:40 +02:00
|
|
|
std::optional<u32> GetPartitionType(const Partition& partition) const override;
|
2017-06-03 21:29:08 +02:00
|
|
|
std::optional<u64> GetTitleID(const Partition& partition) const override;
|
2017-05-20 18:33:36 +02:00
|
|
|
const IOS::ES::TicketReader& GetTicket(const Partition& partition) const override;
|
|
|
|
const IOS::ES::TMDReader& GetTMD(const Partition& partition) const override;
|
2015-06-13 12:51:24 +02:00
|
|
|
std::string GetGameID(const Partition& partition) const override;
|
|
|
|
std::string GetMakerID(const Partition& partition) const override;
|
2017-06-04 10:33:14 +02:00
|
|
|
std::optional<u16> GetRevision(const Partition& partition) const override;
|
2015-06-13 12:51:24 +02:00
|
|
|
std::string GetInternalName(const Partition& partition) const override;
|
2016-07-06 20:33:05 +02:00
|
|
|
std::map<Language, std::string> GetLongNames() const override;
|
2016-06-24 10:43:46 +02:00
|
|
|
std::vector<u32> GetBanner(int* width, int* height) const override;
|
2015-06-13 12:51:24 +02:00
|
|
|
std::string GetApploaderDate(const Partition& partition) const override;
|
2017-06-04 10:33:14 +02:00
|
|
|
std::optional<u8> GetDiscNumber(const Partition& partition) const override;
|
2015-02-24 00:03:59 -05:00
|
|
|
|
2016-07-06 20:33:05 +02:00
|
|
|
Platform GetVolumeType() const override;
|
2016-06-24 10:43:46 +02:00
|
|
|
bool SupportsIntegrityCheck() const override { return true; }
|
2015-06-13 12:51:24 +02:00
|
|
|
bool CheckIntegrity(const Partition& partition) const override;
|
2015-02-24 00:03:59 -05:00
|
|
|
|
2016-12-23 18:41:21 +01:00
|
|
|
Region GetRegion() const override;
|
2015-06-13 12:51:24 +02:00
|
|
|
Country GetCountry(const Partition& partition) const override;
|
2016-06-24 10:43:46 +02:00
|
|
|
BlobType GetBlobType() const override;
|
|
|
|
u64 GetSize() const override;
|
|
|
|
u64 GetRawSize() const override;
|
2014-03-08 01:54:44 +01:00
|
|
|
|
2015-06-13 12:51:24 +02:00
|
|
|
static u64 PartitionOffsetToRawOffset(u64 offset, const Partition& partition);
|
|
|
|
|
2017-02-10 16:56:40 +01:00
|
|
|
static constexpr unsigned int BLOCK_HEADER_SIZE = 0x0400;
|
|
|
|
static constexpr unsigned int BLOCK_DATA_SIZE = 0x7C00;
|
|
|
|
static constexpr unsigned int BLOCK_TOTAL_SIZE = BLOCK_HEADER_SIZE + BLOCK_DATA_SIZE;
|
2015-02-08 10:31:17 +01:00
|
|
|
|
2017-02-10 18:57:58 +01:00
|
|
|
private:
|
2017-06-06 11:49:01 +02:00
|
|
|
std::unique_ptr<BlobReader> m_pReader;
|
2017-06-20 21:51:40 +02:00
|
|
|
std::map<Partition, u32> m_partition_types;
|
2017-05-20 18:33:36 +02:00
|
|
|
std::map<Partition, std::unique_ptr<mbedtls_aes_context>> m_partition_keys;
|
|
|
|
std::map<Partition, IOS::ES::TicketReader> m_partition_tickets;
|
|
|
|
std::map<Partition, IOS::ES::TMDReader> m_partition_tmds;
|
2015-06-13 12:51:24 +02:00
|
|
|
Partition m_game_partition;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-04-21 11:17:39 +02:00
|
|
|
mutable u64 m_last_decrypted_block;
|
|
|
|
mutable u8 m_last_decrypted_block_data[BLOCK_DATA_SIZE];
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
} // namespace
|