2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
2015-04-09 15:44:53 +00:00
|
|
|
#include <map>
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <polarssl/aes.h>
|
2013-08-15 12:24:10 +00:00
|
|
|
#include <polarssl/sha1.h>
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-09-19 04:17:41 +00:00
|
|
|
#include "Common/CommonFuncs.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-12-03 09:54:09 +00:00
|
|
|
#include "Common/MsgHandler.h"
|
2014-09-19 04:17:41 +00:00
|
|
|
#include "Common/Logging/Log.h"
|
2014-02-21 00:47:53 +00:00
|
|
|
#include "DiscIO/Blob.h"
|
2014-12-25 10:01:18 +00:00
|
|
|
#include "DiscIO/FileMonitor.h"
|
2015-04-10 21:18:41 +00:00
|
|
|
#include "DiscIO/Filesystem.h"
|
2014-02-21 00:47:53 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
2014-05-29 10:38:39 +00:00
|
|
|
#include "DiscIO/VolumeCreator.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/VolumeGC.h"
|
|
|
|
#include "DiscIO/VolumeWiiCrypted.h"
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
namespace DiscIO
|
|
|
|
{
|
2009-05-21 19:19:15 +00:00
|
|
|
|
|
|
|
CVolumeWiiCrypted::CVolumeWiiCrypted(IBlobReader* _pReader, u64 _VolumeOffset,
|
|
|
|
const unsigned char* _pVolumeKey)
|
2008-12-08 05:30:24 +00:00
|
|
|
: m_pReader(_pReader),
|
2014-08-31 13:34:58 +00:00
|
|
|
m_AES_ctx(new aes_context),
|
2014-03-09 20:14:26 +00:00
|
|
|
m_pBuffer(nullptr),
|
2008-12-08 05:30:24 +00:00
|
|
|
m_VolumeOffset(_VolumeOffset),
|
2014-09-01 19:48:02 +00:00
|
|
|
m_dataOffset(0x20000),
|
2008-12-08 05:30:24 +00:00
|
|
|
m_LastDecryptedBlockOffset(-1)
|
|
|
|
{
|
2014-08-31 13:34:58 +00:00
|
|
|
aes_setkey_dec(m_AES_ctx.get(), _pVolumeKey, 128);
|
2015-02-08 09:31:17 +00:00
|
|
|
m_pBuffer = new u8[s_block_total_size];
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2014-05-29 10:38:39 +00:00
|
|
|
bool CVolumeWiiCrypted::ChangePartition(u64 offset)
|
|
|
|
{
|
|
|
|
m_VolumeOffset = offset;
|
|
|
|
m_LastDecryptedBlockOffset = -1;
|
|
|
|
|
|
|
|
u8 volume_key[16];
|
|
|
|
DiscIO::VolumeKeyForParition(*m_pReader, offset, volume_key);
|
|
|
|
aes_setkey_dec(m_AES_ctx.get(), volume_key, 128);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
CVolumeWiiCrypted::~CVolumeWiiCrypted()
|
|
|
|
{
|
|
|
|
delete[] m_pBuffer;
|
2014-03-09 20:14:26 +00:00
|
|
|
m_pBuffer = nullptr;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2014-12-28 09:35:48 +00:00
|
|
|
bool CVolumeWiiCrypted::Read(u64 _ReadOffset, u64 _Length, u8* _pBuffer, bool decrypt) const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
if (m_pReader == nullptr)
|
2014-12-28 09:35:48 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!decrypt)
|
|
|
|
return m_pReader->Read(_ReadOffset, _Length, _pBuffer);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-12-25 10:01:18 +00:00
|
|
|
FileMon::FindFilename(_ReadOffset);
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
while (_Length > 0)
|
|
|
|
{
|
2015-01-26 14:59:25 +00:00
|
|
|
// Calculate block offset
|
2015-02-08 09:31:17 +00:00
|
|
|
u64 Block = _ReadOffset / s_block_data_size;
|
|
|
|
u64 Offset = _ReadOffset % s_block_data_size;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (m_LastDecryptedBlockOffset != Block)
|
|
|
|
{
|
2015-01-26 14:59:25 +00:00
|
|
|
// Read the current block
|
2015-02-08 09:31:17 +00:00
|
|
|
if (!m_pReader->Read(m_VolumeOffset + m_dataOffset + Block * s_block_total_size, s_block_total_size, m_pBuffer))
|
2015-01-26 14:59:25 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// Decrypt the block's data.
|
|
|
|
// 0x3D0 - 0x3DF in m_pBuffer will be overwritten,
|
|
|
|
// but that won't affect anything, because we won't
|
|
|
|
// use the content of m_pBuffer anymore after this
|
2015-02-08 09:31:17 +00:00
|
|
|
aes_crypt_cbc(m_AES_ctx.get(), AES_DECRYPT, s_block_data_size, m_pBuffer + 0x3D0,
|
|
|
|
m_pBuffer + s_block_header_size, m_LastDecryptedBlock);
|
2008-12-08 05:30:24 +00:00
|
|
|
m_LastDecryptedBlockOffset = Block;
|
2015-01-26 14:59:25 +00:00
|
|
|
|
|
|
|
// The only thing we currently use from the 0x000 - 0x3FF part
|
|
|
|
// of the block is the IV (at 0x3D0), but it also contains SHA-1
|
|
|
|
// hashes that IOS uses to check that discs aren't tampered with.
|
|
|
|
// http://wiibrew.org/wiki/Wii_Disc#Encrypted
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 14:59:25 +00:00
|
|
|
// Copy the decrypted data
|
2015-02-08 09:31:17 +00:00
|
|
|
u64 MaxSizeToCopy = s_block_data_size - Offset;
|
2008-12-08 05:30:24 +00:00
|
|
|
u64 CopySize = (_Length > MaxSizeToCopy) ? MaxSizeToCopy : _Length;
|
|
|
|
memcpy(_pBuffer, &m_LastDecryptedBlock[Offset], (size_t)CopySize);
|
|
|
|
|
2015-01-26 14:59:25 +00:00
|
|
|
// Update offsets
|
2015-02-28 22:24:02 +00:00
|
|
|
_Length -= CopySize;
|
2014-02-16 20:30:18 +00:00
|
|
|
_pBuffer += CopySize;
|
2008-12-08 05:30:24 +00:00
|
|
|
_ReadOffset += CopySize;
|
|
|
|
}
|
|
|
|
|
2015-01-26 14:59:25 +00:00
|
|
|
return true;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2010-01-14 07:19:10 +00:00
|
|
|
bool CVolumeWiiCrypted::GetTitleID(u8* _pBuffer) const
|
|
|
|
{
|
2010-09-08 00:20:19 +00:00
|
|
|
// Tik is at m_VolumeOffset size 0x2A4
|
|
|
|
// TitleID offset in tik is 0x1DC
|
2014-12-28 09:35:48 +00:00
|
|
|
return Read(m_VolumeOffset + 0x1DC, 8, _pBuffer, false);
|
2010-01-14 07:19:10 +00:00
|
|
|
}
|
2014-12-03 09:54:09 +00:00
|
|
|
|
|
|
|
std::unique_ptr<u8[]> CVolumeWiiCrypted::GetTMD(u32 *size) const
|
2010-09-08 00:20:19 +00:00
|
|
|
{
|
2014-12-03 09:54:09 +00:00
|
|
|
*size = 0;
|
|
|
|
u32 tmd_size;
|
|
|
|
u32 tmd_address;
|
|
|
|
|
2014-12-28 09:35:48 +00:00
|
|
|
Read(m_VolumeOffset + 0x2a4, sizeof(u32), (u8*)&tmd_size, false);
|
|
|
|
Read(m_VolumeOffset + 0x2a8, sizeof(u32), (u8*)&tmd_address, false);
|
2014-12-03 09:54:09 +00:00
|
|
|
tmd_size = Common::swap32(tmd_size);
|
|
|
|
tmd_address = Common::swap32(tmd_address) << 2;
|
|
|
|
|
|
|
|
if (tmd_size > 1024 * 1024 * 4)
|
|
|
|
{
|
|
|
|
// The size is checked so that a malicious or corrupt ISO
|
|
|
|
// can't force Dolphin to allocate up to 4 GiB of memory.
|
|
|
|
// 4 MiB should be much bigger than the size of TMDs and much smaller
|
|
|
|
// than the amount of RAM in a computer that can run Dolphin.
|
|
|
|
PanicAlert("TMD > 4 MiB");
|
|
|
|
tmd_size = 1024 * 1024 * 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<u8[]> buf{ new u8[tmd_size] };
|
2014-12-28 09:35:48 +00:00
|
|
|
Read(m_VolumeOffset + tmd_address, tmd_size, buf.get(), false);
|
2014-12-03 09:54:09 +00:00
|
|
|
*size = tmd_size;
|
2014-06-16 04:27:23 +00:00
|
|
|
return buf;
|
2010-09-08 00:20:19 +00:00
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2009-05-21 19:19:15 +00:00
|
|
|
std::string CVolumeWiiCrypted::GetUniqueID() const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
if (m_pReader == nullptr)
|
2010-08-13 19:07:59 +00:00
|
|
|
return std::string();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
char ID[7];
|
|
|
|
|
2014-12-28 09:35:48 +00:00
|
|
|
if (!Read(0, 6, (u8*)ID, false))
|
2010-08-13 19:07:59 +00:00
|
|
|
return std::string();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-08-13 19:07:59 +00:00
|
|
|
ID[6] = '\0';
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-08-13 19:07:59 +00:00
|
|
|
return ID;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-21 19:19:15 +00:00
|
|
|
IVolume::ECountry CVolumeWiiCrypted::GetCountry() const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
if (!m_pReader)
|
2009-07-03 22:34:51 +00:00
|
|
|
return COUNTRY_UNKNOWN;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-02-24 01:43:29 +00:00
|
|
|
u8 country_code;
|
|
|
|
m_pReader->Read(3, 1, &country_code);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-02-24 01:43:29 +00:00
|
|
|
return CountrySwitch(country_code);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-05-21 19:19:15 +00:00
|
|
|
std::string CVolumeWiiCrypted::GetMakerID() const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
if (m_pReader == nullptr)
|
2010-08-13 19:07:59 +00:00
|
|
|
return std::string();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
char makerID[3];
|
|
|
|
|
2014-12-28 09:35:48 +00:00
|
|
|
if (!Read(0x4, 0x2, (u8*)&makerID, false))
|
2010-08-13 19:07:59 +00:00
|
|
|
return std::string();
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2010-08-13 19:07:59 +00:00
|
|
|
makerID[2] = '\0';
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-08-13 19:07:59 +00:00
|
|
|
return makerID;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2014-11-15 01:59:39 +00:00
|
|
|
int CVolumeWiiCrypted::GetRevision() const
|
|
|
|
{
|
|
|
|
if (!m_pReader)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
u8 revision;
|
2014-11-15 05:39:54 +00:00
|
|
|
if (!m_pReader->Read(7, 1, &revision))
|
2014-11-15 01:59:39 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return revision;
|
|
|
|
}
|
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
std::string CVolumeWiiCrypted::GetName() const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2015-04-10 20:10:49 +00:00
|
|
|
char name_buffer[0x60];
|
|
|
|
if (m_pReader != nullptr && Read(0x20, 0x60, (u8*)&name_buffer, false))
|
|
|
|
return DecodeString(name_buffer);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
return "";
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-04-10 20:10:49 +00:00
|
|
|
std::map<IVolume::ELanguage, std::string> CVolumeWiiCrypted::GetNames() const
|
|
|
|
{
|
2015-04-10 21:18:41 +00:00
|
|
|
std::unique_ptr<IFileSystem> file_system(CreateFileSystem(this));
|
|
|
|
std::vector<u8> opening_bnr(NAMES_TOTAL_BYTES);
|
|
|
|
opening_bnr.resize(file_system->ReadFile("opening.bnr", opening_bnr.data(), opening_bnr.size(), 0x5C));
|
|
|
|
return ReadWiiNames(opening_bnr);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-05-21 19:19:15 +00:00
|
|
|
u32 CVolumeWiiCrypted::GetFSTSize() const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
if (m_pReader == nullptr)
|
2010-08-13 19:07:59 +00:00
|
|
|
return 0;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
u32 size;
|
|
|
|
|
2014-12-28 09:35:48 +00:00
|
|
|
if (!Read(0x428, 0x4, (u8*)&size, true))
|
2010-08-13 19:07:59 +00:00
|
|
|
return 0;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-08-13 19:07:59 +00:00
|
|
|
return size;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2009-05-21 19:19:15 +00:00
|
|
|
std::string CVolumeWiiCrypted::GetApploaderDate() const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
if (m_pReader == nullptr)
|
2010-08-13 19:07:59 +00:00
|
|
|
return std::string();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
char date[16];
|
|
|
|
|
2014-12-28 09:35:48 +00:00
|
|
|
if (!Read(0x2440, 0x10, (u8*)&date, true))
|
2010-08-13 19:07:59 +00:00
|
|
|
return std::string();
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2010-08-13 19:07:59 +00:00
|
|
|
date[10] = '\0';
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-08-13 19:07:59 +00:00
|
|
|
return date;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2015-01-17 12:21:02 +00:00
|
|
|
bool CVolumeWiiCrypted::IsWiiDisc() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-02-26 22:10:18 +00:00
|
|
|
bool CVolumeWiiCrypted::IsDiscTwo() const
|
|
|
|
{
|
2015-03-01 03:03:53 +00:00
|
|
|
u8 disc_two_check;
|
|
|
|
m_pReader->Read(6, 1, &disc_two_check);
|
|
|
|
return (disc_two_check == 1);
|
2015-02-26 22:10:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-21 19:19:15 +00:00
|
|
|
u64 CVolumeWiiCrypted::GetSize() const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
if (m_pReader)
|
2010-08-13 19:07:59 +00:00
|
|
|
return m_pReader->GetDataSize();
|
2008-12-08 05:30:24 +00:00
|
|
|
else
|
2010-08-13 19:07:59 +00:00
|
|
|
return 0;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-02-22 13:59:06 +00:00
|
|
|
|
2013-04-09 17:58:56 +00:00
|
|
|
u64 CVolumeWiiCrypted::GetRawSize() const
|
|
|
|
{
|
|
|
|
if (m_pReader)
|
|
|
|
return m_pReader->GetRawSize();
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-04 10:49:10 +00:00
|
|
|
bool CVolumeWiiCrypted::CheckIntegrity() const
|
|
|
|
{
|
|
|
|
// Get partition data size
|
|
|
|
u32 partSizeDiv4;
|
2014-12-28 09:35:48 +00:00
|
|
|
Read(m_VolumeOffset + 0x2BC, 4, (u8*)&partSizeDiv4, false);
|
2012-05-04 10:49:10 +00:00
|
|
|
u64 partDataSize = (u64)Common::swap32(partSizeDiv4) * 4;
|
|
|
|
|
|
|
|
u32 nClusters = (u32)(partDataSize / 0x8000);
|
|
|
|
for (u32 clusterID = 0; clusterID < nClusters; ++clusterID)
|
|
|
|
{
|
2014-09-01 19:48:02 +00:00
|
|
|
u64 clusterOff = m_VolumeOffset + m_dataOffset + (u64)clusterID * 0x8000;
|
2012-05-04 10:49:10 +00:00
|
|
|
|
|
|
|
// Read and decrypt the cluster metadata
|
|
|
|
u8 clusterMDCrypted[0x400];
|
|
|
|
u8 clusterMD[0x400];
|
|
|
|
u8 IV[16] = { 0 };
|
|
|
|
if (!m_pReader->Read(clusterOff, 0x400, clusterMDCrypted))
|
|
|
|
{
|
|
|
|
NOTICE_LOG(DISCIO, "Integrity Check: fail at cluster %d: could not read metadata", clusterID);
|
|
|
|
return false;
|
|
|
|
}
|
2014-08-31 13:34:58 +00:00
|
|
|
aes_crypt_cbc(m_AES_ctx.get(), AES_DECRYPT, 0x400, IV, clusterMDCrypted, clusterMD);
|
2013-10-27 18:27:07 +00:00
|
|
|
|
2012-05-04 10:49:10 +00:00
|
|
|
|
|
|
|
// Some clusters have invalid data and metadata because they aren't
|
|
|
|
// meant to be read by the game (for example, holes between files). To
|
|
|
|
// try to avoid reporting errors because of these clusters, we check
|
|
|
|
// the 0x00 paddings in the metadata.
|
|
|
|
//
|
|
|
|
// This may cause some false negatives though: some bad clusters may be
|
|
|
|
// skipped because they are *too* bad and are not even recognized as
|
|
|
|
// valid clusters. To be improved.
|
|
|
|
bool meaningless = false;
|
|
|
|
for (u32 idx = 0x26C; idx < 0x280; ++idx)
|
|
|
|
if (clusterMD[idx] != 0)
|
|
|
|
meaningless = true;
|
|
|
|
|
|
|
|
if (meaningless)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
u8 clusterData[0x7C00];
|
2014-12-28 09:35:48 +00:00
|
|
|
if (!Read((u64)clusterID * 0x7C00, 0x7C00, clusterData, true))
|
2012-05-04 10:49:10 +00:00
|
|
|
{
|
|
|
|
NOTICE_LOG(DISCIO, "Integrity Check: fail at cluster %d: could not read data", clusterID);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (u32 hashID = 0; hashID < 31; ++hashID)
|
|
|
|
{
|
|
|
|
u8 hash[20];
|
|
|
|
|
|
|
|
sha1(clusterData + hashID * 0x400, 0x400, hash);
|
|
|
|
|
|
|
|
// Note that we do not use strncmp here
|
|
|
|
if (memcmp(hash, clusterMD + hashID * 20, 20))
|
|
|
|
{
|
|
|
|
NOTICE_LOG(DISCIO, "Integrity Check: fail at cluster %d: hash %d is invalid", clusterID, hashID);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
} // namespace
|