2015-06-28 05:43:53 +00:00
|
|
|
#include <stdio.h>
|
2015-06-30 06:46:19 +00:00
|
|
|
#include <string.h>
|
2015-07-02 18:33:55 +00:00
|
|
|
#include "NOD/DiscWii.hpp"
|
|
|
|
#include "NOD/aes.hpp"
|
2016-01-22 02:30:17 +00:00
|
|
|
#include "NOD/sha1.h"
|
2015-06-26 19:30:03 +00:00
|
|
|
|
|
|
|
namespace NOD
|
|
|
|
{
|
|
|
|
|
2015-07-04 22:37:50 +00:00
|
|
|
static const uint8_t COMMON_KEYS[2][16] =
|
|
|
|
{
|
|
|
|
/* Normal */
|
|
|
|
{0xeb, 0xe4, 0x2a, 0x22,
|
|
|
|
0x5e, 0x85, 0x93, 0xe4,
|
|
|
|
0x48, 0xd9, 0xc5, 0x45,
|
|
|
|
0x73, 0x81, 0xaa, 0xf7},
|
|
|
|
/* Korean */
|
|
|
|
{0x63, 0xb8, 0x2b, 0xb4,
|
|
|
|
0xf4, 0x61, 0x4e, 0x2e,
|
|
|
|
0x13, 0xf2, 0xfe, 0xfb,
|
|
|
|
0xba, 0x4c, 0x9b, 0x7e}
|
|
|
|
};
|
2015-06-29 05:35:25 +00:00
|
|
|
|
2015-06-28 05:43:53 +00:00
|
|
|
class PartitionWii : public DiscBase::IPartition
|
|
|
|
{
|
2015-11-21 01:15:33 +00:00
|
|
|
enum class SigType : uint32_t
|
2015-06-30 06:46:19 +00:00
|
|
|
{
|
2015-11-21 01:15:33 +00:00
|
|
|
RSA_4096 = 0x00010000,
|
|
|
|
RSA_2048 = 0x00010001,
|
|
|
|
ELIPTICAL_CURVE = 0x00010002
|
2015-06-30 06:46:19 +00:00
|
|
|
};
|
|
|
|
|
2015-11-21 01:15:33 +00:00
|
|
|
enum class KeyType : uint32_t
|
2015-06-30 06:46:19 +00:00
|
|
|
{
|
2015-11-21 01:15:33 +00:00
|
|
|
RSA_4096 = 0x00000000,
|
|
|
|
RSA_2048 = 0x00000001
|
2015-06-30 06:46:19 +00:00
|
|
|
};
|
|
|
|
|
2015-06-28 05:43:53 +00:00
|
|
|
struct Ticket
|
|
|
|
{
|
|
|
|
uint32_t sigType;
|
|
|
|
char sig[256];
|
|
|
|
char padding[60];
|
|
|
|
char sigIssuer[64];
|
|
|
|
char ecdh[60];
|
|
|
|
char padding1[3];
|
|
|
|
unsigned char encKey[16];
|
|
|
|
char padding2;
|
|
|
|
char ticketId[8];
|
|
|
|
char consoleId[4];
|
|
|
|
char titleId[8];
|
|
|
|
char padding3[2];
|
|
|
|
uint16_t ticketVersion;
|
|
|
|
uint32_t permittedTitlesMask;
|
|
|
|
uint32_t permitMask;
|
|
|
|
char titleExportAllowed;
|
|
|
|
char commonKeyIdx;
|
|
|
|
char padding4[48];
|
|
|
|
char contentAccessPermissions[64];
|
|
|
|
char padding5[2];
|
|
|
|
struct TimeLimit
|
|
|
|
{
|
|
|
|
uint32_t enableTimeLimit;
|
|
|
|
uint32_t timeLimit;
|
|
|
|
} timeLimits[8];
|
|
|
|
|
|
|
|
void read(IDiscIO::IReadStream& s)
|
|
|
|
{
|
|
|
|
s.read(this, 676);
|
|
|
|
sigType = SBig(sigType);
|
|
|
|
ticketVersion = SBig(ticketVersion);
|
|
|
|
permittedTitlesMask = SBig(permittedTitlesMask);
|
|
|
|
permitMask = SBig(permitMask);
|
|
|
|
for (size_t t=0 ; t<8 ; ++t)
|
|
|
|
{
|
|
|
|
timeLimits[t].enableTimeLimit = SBig(timeLimits[t].enableTimeLimit);
|
|
|
|
timeLimits[t].timeLimit = SBig(timeLimits[t].timeLimit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} m_ticket;
|
|
|
|
|
|
|
|
struct TMD
|
|
|
|
{
|
2015-06-30 06:46:19 +00:00
|
|
|
SigType sigType;
|
2015-06-28 05:43:53 +00:00
|
|
|
char sig[256];
|
|
|
|
char padding[60];
|
|
|
|
char sigIssuer[64];
|
|
|
|
char version;
|
|
|
|
char caCrlVersion;
|
|
|
|
char signerCrlVersion;
|
|
|
|
char padding1;
|
|
|
|
uint32_t iosIdMajor;
|
|
|
|
uint32_t iosIdMinor;
|
|
|
|
uint32_t titleIdMajor;
|
2015-06-30 06:46:19 +00:00
|
|
|
char titleIdMinor[4];
|
2015-06-28 05:43:53 +00:00
|
|
|
uint32_t titleType;
|
|
|
|
uint16_t groupId;
|
|
|
|
char padding2[62];
|
|
|
|
uint32_t accessFlags;
|
|
|
|
uint16_t titleVersion;
|
|
|
|
uint16_t numContents;
|
|
|
|
uint16_t bootIdx;
|
|
|
|
uint16_t padding3;
|
|
|
|
|
|
|
|
struct Content
|
|
|
|
{
|
|
|
|
uint32_t id;
|
|
|
|
uint16_t index;
|
|
|
|
uint16_t type;
|
|
|
|
uint64_t size;
|
|
|
|
char hash[20];
|
|
|
|
|
|
|
|
void read(IDiscIO::IReadStream& s)
|
|
|
|
{
|
|
|
|
s.read(this, 36);
|
|
|
|
id = SBig(id);
|
|
|
|
index = SBig(index);
|
|
|
|
type = SBig(type);
|
|
|
|
size = SBig(size);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
std::vector<Content> contents;
|
|
|
|
|
|
|
|
void read(IDiscIO::IReadStream& s)
|
|
|
|
{
|
|
|
|
s.read(this, 484);
|
2015-11-21 01:15:33 +00:00
|
|
|
sigType = SigType(SBig(uint32_t(sigType)));
|
2015-06-28 05:43:53 +00:00
|
|
|
iosIdMajor = SBig(iosIdMajor);
|
|
|
|
iosIdMinor = SBig(iosIdMinor);
|
|
|
|
titleIdMajor = SBig(titleIdMajor);
|
|
|
|
titleType = SBig(titleType);
|
|
|
|
groupId = SBig(groupId);
|
|
|
|
accessFlags = SBig(accessFlags);
|
|
|
|
titleVersion = SBig(titleVersion);
|
|
|
|
numContents = SBig(numContents);
|
|
|
|
bootIdx = SBig(bootIdx);
|
2015-07-16 03:20:36 +00:00
|
|
|
contents.clear();
|
|
|
|
contents.reserve(numContents);
|
2015-06-30 19:38:51 +00:00
|
|
|
for (uint16_t c=0 ; c<numContents ; ++c)
|
2015-06-28 05:43:53 +00:00
|
|
|
{
|
|
|
|
contents.emplace_back();
|
|
|
|
contents.back().read(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} m_tmd;
|
|
|
|
|
|
|
|
struct Certificate
|
|
|
|
{
|
2015-06-30 06:46:19 +00:00
|
|
|
SigType sigType;
|
2015-06-28 05:43:53 +00:00
|
|
|
char sig[512];
|
|
|
|
char issuer[64];
|
2015-06-30 06:46:19 +00:00
|
|
|
KeyType keyType;
|
2015-06-28 05:43:53 +00:00
|
|
|
char subject[64];
|
|
|
|
char key[512];
|
|
|
|
uint32_t modulus;
|
|
|
|
uint32_t pubExp;
|
|
|
|
|
|
|
|
void read(IDiscIO::IReadStream& s)
|
|
|
|
{
|
|
|
|
s.read(&sigType, 4);
|
2015-11-21 01:15:33 +00:00
|
|
|
sigType = SigType(SBig(uint32_t(sigType)));
|
|
|
|
if (sigType == SigType::RSA_4096)
|
2015-06-28 05:43:53 +00:00
|
|
|
s.read(sig, 512);
|
2015-11-21 01:15:33 +00:00
|
|
|
else if (sigType == SigType::RSA_2048)
|
2015-06-28 05:43:53 +00:00
|
|
|
s.read(sig, 256);
|
2015-11-21 01:15:33 +00:00
|
|
|
else if (sigType == SigType::ELIPTICAL_CURVE)
|
2015-06-28 05:43:53 +00:00
|
|
|
s.read(sig, 64);
|
|
|
|
s.seek(60, SEEK_CUR);
|
|
|
|
|
|
|
|
s.read(issuer, 64);
|
|
|
|
s.read(&keyType, 4);
|
|
|
|
s.read(subject, 64);
|
2015-11-21 01:15:33 +00:00
|
|
|
keyType = KeyType(SBig(uint32_t(keyType)));
|
|
|
|
if (keyType == KeyType::RSA_4096)
|
2015-06-28 05:43:53 +00:00
|
|
|
s.read(key, 512);
|
2015-11-21 01:15:33 +00:00
|
|
|
else if (keyType == KeyType::RSA_2048)
|
2015-06-28 05:43:53 +00:00
|
|
|
s.read(key, 256);
|
|
|
|
|
|
|
|
s.read(&modulus, 8);
|
|
|
|
modulus = SBig(modulus);
|
|
|
|
pubExp = SBig(pubExp);
|
|
|
|
|
|
|
|
s.seek(52, SEEK_CUR);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Certificate m_caCert;
|
|
|
|
Certificate m_tmdCert;
|
|
|
|
Certificate m_ticketCert;
|
|
|
|
|
2015-06-30 19:38:51 +00:00
|
|
|
uint64_t m_dataOff;
|
2015-06-29 05:35:25 +00:00
|
|
|
uint8_t m_decKey[16];
|
|
|
|
|
2015-06-28 05:43:53 +00:00
|
|
|
public:
|
2015-06-30 19:38:51 +00:00
|
|
|
PartitionWii(const DiscWii& parent, Kind kind, uint64_t offset)
|
2015-06-28 05:43:53 +00:00
|
|
|
: IPartition(parent, kind, offset)
|
|
|
|
{
|
|
|
|
std::unique_ptr<IDiscIO::IReadStream> s = parent.getDiscIO().beginReadStream(offset);
|
2015-08-05 21:45:25 +00:00
|
|
|
m_ticket.read(*s);
|
2015-06-28 05:43:53 +00:00
|
|
|
|
|
|
|
uint32_t tmdSize;
|
|
|
|
s->read(&tmdSize, 4);
|
|
|
|
tmdSize = SBig(tmdSize);
|
|
|
|
uint32_t tmdOff;
|
|
|
|
s->read(&tmdOff, 4);
|
|
|
|
tmdOff = SBig(tmdOff) << 2;
|
|
|
|
|
|
|
|
uint32_t certChainSize;
|
|
|
|
s->read(&certChainSize, 4);
|
|
|
|
certChainSize = SBig(certChainSize);
|
|
|
|
uint32_t certChainOff;
|
|
|
|
s->read(&certChainOff, 4);
|
|
|
|
certChainOff = SBig(certChainOff) << 2;
|
|
|
|
|
|
|
|
uint32_t globalHashTableOff;
|
|
|
|
s->read(&globalHashTableOff, 4);
|
|
|
|
globalHashTableOff = SBig(globalHashTableOff) << 2;
|
|
|
|
|
|
|
|
uint32_t dataOff;
|
|
|
|
s->read(&dataOff, 4);
|
|
|
|
dataOff = SBig(dataOff) << 2;
|
2015-06-29 05:35:25 +00:00
|
|
|
m_dataOff = offset + dataOff;
|
2015-06-28 05:43:53 +00:00
|
|
|
uint32_t dataSize;
|
|
|
|
s->read(&dataSize, 4);
|
|
|
|
dataSize = SBig(dataSize) << 2;
|
|
|
|
|
|
|
|
s->seek(offset + tmdOff);
|
2015-08-05 21:45:25 +00:00
|
|
|
m_tmd.read(*s);
|
2015-06-28 05:43:53 +00:00
|
|
|
|
|
|
|
s->seek(offset + certChainOff);
|
2015-08-05 21:45:25 +00:00
|
|
|
m_caCert.read(*s);
|
|
|
|
m_tmdCert.read(*s);
|
|
|
|
m_ticketCert.read(*s);
|
2015-06-28 05:43:53 +00:00
|
|
|
|
2015-06-29 05:35:25 +00:00
|
|
|
/* Decrypt title key */
|
|
|
|
std::unique_ptr<IAES> aes = NewAES();
|
|
|
|
uint8_t iv[16] = {};
|
|
|
|
memcpy(iv, m_ticket.titleId, 8);
|
2015-07-04 22:37:50 +00:00
|
|
|
aes->setKey(COMMON_KEYS[(int)m_ticket.commonKeyIdx]);
|
2015-06-29 05:35:25 +00:00
|
|
|
aes->decrypt(iv, m_ticket.encKey, m_decKey, 16);
|
|
|
|
|
2015-06-30 00:07:46 +00:00
|
|
|
/* Wii-specific header reads (now using title key to decrypt) */
|
2015-06-30 06:46:19 +00:00
|
|
|
std::unique_ptr<IPartReadStream> ds = beginReadStream(0x420);
|
2015-06-30 00:07:46 +00:00
|
|
|
uint32_t vals[3];
|
|
|
|
ds->read(vals, 12);
|
|
|
|
m_dolOff = SBig(vals[0]) << 2;
|
|
|
|
m_fstOff = SBig(vals[1]) << 2;
|
|
|
|
m_fstSz = SBig(vals[2]) << 2;
|
2015-06-30 19:38:51 +00:00
|
|
|
ds->seek(0x2440 + 0x14);
|
|
|
|
ds->read(vals, 8);
|
2015-07-04 17:30:00 +00:00
|
|
|
m_apploaderSz = 32 + SBig(vals[0]) + SBig(vals[1]);
|
2015-06-30 00:07:46 +00:00
|
|
|
|
|
|
|
/* Yay files!! */
|
2015-08-05 21:45:25 +00:00
|
|
|
parseFST(*ds);
|
2015-07-10 03:11:30 +00:00
|
|
|
|
|
|
|
/* Also make DOL header and size handy */
|
|
|
|
ds->seek(m_dolOff);
|
2015-08-05 21:45:25 +00:00
|
|
|
parseDOL(*ds);
|
2015-06-29 05:35:25 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 06:46:19 +00:00
|
|
|
class PartReadStream : public IPartReadStream
|
2015-06-29 05:35:25 +00:00
|
|
|
{
|
|
|
|
std::unique_ptr<IAES> m_aes;
|
|
|
|
const PartitionWii& m_parent;
|
2015-06-30 19:38:51 +00:00
|
|
|
uint64_t m_baseOffset;
|
|
|
|
uint64_t m_offset;
|
2015-06-29 05:35:25 +00:00
|
|
|
std::unique_ptr<IDiscIO::IReadStream> m_dio;
|
|
|
|
|
2015-06-30 06:46:19 +00:00
|
|
|
size_t m_curBlock = SIZE_MAX;
|
2015-06-29 05:35:25 +00:00
|
|
|
uint8_t m_encBuf[0x8000];
|
|
|
|
uint8_t m_decBuf[0x7c00];
|
|
|
|
|
|
|
|
void decryptBlock()
|
|
|
|
{
|
|
|
|
m_dio->read(m_encBuf, 0x8000);
|
|
|
|
m_aes->decrypt(&m_encBuf[0x3d0], &m_encBuf[0x400], m_decBuf, 0x7c00);
|
|
|
|
}
|
|
|
|
public:
|
2015-06-30 19:38:51 +00:00
|
|
|
PartReadStream(const PartitionWii& parent, uint64_t baseOffset, uint64_t offset)
|
2015-06-29 05:35:25 +00:00
|
|
|
: m_aes(NewAES()), m_parent(parent), m_baseOffset(baseOffset), m_offset(offset)
|
|
|
|
{
|
|
|
|
m_aes->setKey(parent.m_decKey);
|
|
|
|
size_t block = m_offset / 0x7c00;
|
|
|
|
m_dio = m_parent.m_parent.getDiscIO().beginReadStream(m_baseOffset + block * 0x8000);
|
2015-06-30 06:46:19 +00:00
|
|
|
decryptBlock();
|
|
|
|
m_curBlock = block;
|
2015-06-29 05:35:25 +00:00
|
|
|
}
|
2015-06-30 19:38:51 +00:00
|
|
|
void seek(int64_t offset, int whence)
|
2015-06-30 00:07:46 +00:00
|
|
|
{
|
|
|
|
if (whence == SEEK_SET)
|
|
|
|
m_offset = offset;
|
|
|
|
else if (whence == SEEK_CUR)
|
|
|
|
m_offset += offset;
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
size_t block = m_offset / 0x7c00;
|
2015-06-30 06:46:19 +00:00
|
|
|
if (block != m_curBlock)
|
|
|
|
{
|
2015-07-13 06:28:26 +00:00
|
|
|
m_dio->seek(m_baseOffset + block * 0x8000);
|
2015-06-30 06:46:19 +00:00
|
|
|
decryptBlock();
|
|
|
|
m_curBlock = block;
|
|
|
|
}
|
2015-06-30 00:07:46 +00:00
|
|
|
}
|
2015-07-07 03:22:19 +00:00
|
|
|
uint64_t position() const {return m_offset;}
|
2015-06-30 19:38:51 +00:00
|
|
|
uint64_t read(void* buf, uint64_t length)
|
2015-06-29 05:35:25 +00:00
|
|
|
{
|
2015-06-30 06:46:19 +00:00
|
|
|
size_t block = m_offset / 0x7c00;
|
2015-06-29 05:35:25 +00:00
|
|
|
size_t cacheOffset = m_offset % 0x7c00;
|
2015-06-30 19:38:51 +00:00
|
|
|
uint64_t cacheSize;
|
2015-07-03 01:57:31 +00:00
|
|
|
uint64_t rem = length;
|
2015-06-29 05:35:25 +00:00
|
|
|
uint8_t* dst = (uint8_t*)buf;
|
|
|
|
|
2015-07-03 01:57:31 +00:00
|
|
|
while (rem)
|
2015-06-29 05:35:25 +00:00
|
|
|
{
|
2015-06-30 06:46:19 +00:00
|
|
|
if (block != m_curBlock)
|
|
|
|
{
|
|
|
|
decryptBlock();
|
|
|
|
m_curBlock = block;
|
|
|
|
}
|
2015-06-29 05:35:25 +00:00
|
|
|
|
2015-07-03 01:57:31 +00:00
|
|
|
cacheSize = rem;
|
2015-06-29 05:35:25 +00:00
|
|
|
if (cacheSize + cacheOffset > 0x7c00)
|
|
|
|
cacheSize = 0x7c00 - cacheOffset;
|
|
|
|
|
|
|
|
memcpy(dst, m_decBuf + cacheOffset, cacheSize);
|
|
|
|
dst += cacheSize;
|
2015-07-03 01:57:31 +00:00
|
|
|
rem -= cacheSize;
|
2015-06-29 05:35:25 +00:00
|
|
|
cacheOffset = 0;
|
2015-06-30 06:46:19 +00:00
|
|
|
++block;
|
2015-06-29 05:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_offset += length;
|
|
|
|
return dst - (uint8_t*)buf;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-06-30 19:38:51 +00:00
|
|
|
std::unique_ptr<IPartReadStream> beginReadStream(uint64_t offset) const
|
2015-06-29 05:35:25 +00:00
|
|
|
{
|
2015-06-30 06:46:19 +00:00
|
|
|
return std::unique_ptr<IPartReadStream>(new PartReadStream(*this, m_dataOff, offset));
|
2015-06-28 05:43:53 +00:00
|
|
|
}
|
2015-06-30 19:38:51 +00:00
|
|
|
|
|
|
|
uint64_t normalizeOffset(uint64_t anOffset) const {return anOffset << 2;}
|
2016-01-22 23:45:58 +00:00
|
|
|
|
|
|
|
void writeOutPartitionHeader(const SystemChar* pathOut) const
|
|
|
|
{
|
|
|
|
FILE* fp = Fopen(pathOut, _S("wb"), FileLockType::Write);
|
|
|
|
if (!fp)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to open %s for writing"), pathOut);
|
|
|
|
|
|
|
|
uint64_t h3Off;
|
|
|
|
{
|
|
|
|
std::unique_ptr<IDiscIO::IReadStream> rs = m_parent.getDiscIO().beginReadStream(m_offset + 0x2B4);
|
|
|
|
uint32_t h3;
|
|
|
|
if (rs->read(&h3, 4) != 4)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to read H3 offset from %s"), pathOut);
|
|
|
|
h3 = SBig(h3);
|
|
|
|
h3Off = uint64_t(h3) << 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
char buf[8192];
|
|
|
|
size_t rem = h3Off;
|
|
|
|
std::unique_ptr<IDiscIO::IReadStream> rs = m_parent.getDiscIO().beginReadStream(m_offset);
|
|
|
|
while (rem)
|
|
|
|
{
|
2016-01-24 05:06:54 +00:00
|
|
|
size_t rdSz = NOD::min(rem, size_t(8192ul));
|
2016-01-22 23:45:58 +00:00
|
|
|
rs->read(buf, rdSz);
|
|
|
|
fwrite(buf, 1, rdSz, fp);
|
|
|
|
rem -= rdSz;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
}
|
2015-06-28 05:43:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
DiscWii::DiscWii(std::unique_ptr<IDiscIO>&& dio)
|
|
|
|
: DiscBase(std::move(dio))
|
|
|
|
{
|
|
|
|
/* Read partition info */
|
2015-11-21 01:15:33 +00:00
|
|
|
struct PartInfo
|
|
|
|
{
|
2015-06-28 05:43:53 +00:00
|
|
|
uint32_t partCount;
|
|
|
|
uint32_t partInfoOff;
|
|
|
|
struct Part
|
|
|
|
{
|
|
|
|
uint32_t partDataOff;
|
2015-11-21 01:15:33 +00:00
|
|
|
IPartition::Kind partType;
|
2015-06-28 05:43:53 +00:00
|
|
|
} parts[4];
|
|
|
|
PartInfo(IDiscIO& dio)
|
|
|
|
{
|
|
|
|
std::unique_ptr<IDiscIO::IReadStream> s = dio.beginReadStream(0x40000);
|
|
|
|
s->read(this, 32);
|
|
|
|
partCount = SBig(partCount);
|
|
|
|
partInfoOff = SBig(partInfoOff);
|
|
|
|
|
|
|
|
s->seek(partInfoOff << 2);
|
|
|
|
for (uint32_t p=0 ; p<partCount && p<4 ; ++p)
|
|
|
|
{
|
|
|
|
s->read(&parts[p], 8);
|
|
|
|
parts[p].partDataOff = SBig(parts[p].partDataOff);
|
2015-11-21 01:15:33 +00:00
|
|
|
parts[p].partType = IPartition::Kind(SBig(uint32_t(parts[p].partType)));
|
2015-06-28 05:43:53 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-05 21:45:25 +00:00
|
|
|
} partInfo(*m_discIO);
|
2015-06-28 05:43:53 +00:00
|
|
|
|
|
|
|
/* Iterate for data partition */
|
|
|
|
m_partitions.reserve(partInfo.partCount);
|
|
|
|
for (uint32_t p=0 ; p<partInfo.partCount && p<4 ; ++p)
|
|
|
|
{
|
|
|
|
PartInfo::Part& part = partInfo.parts[p];
|
2015-11-21 01:15:33 +00:00
|
|
|
IPartition::Kind kind;
|
|
|
|
switch (part.partType)
|
|
|
|
{
|
|
|
|
case IPartition::Kind::Data:
|
|
|
|
case IPartition::Kind::Update:
|
|
|
|
case IPartition::Kind::Channel:
|
|
|
|
kind = part.partType;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LogModule.report(LogVisor::FatalError, "invalid partition type %d", part.partType);
|
|
|
|
}
|
2015-06-28 05:43:53 +00:00
|
|
|
m_partitions.emplace_back(new PartitionWii(*this, kind, part.partDataOff << 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-22 23:45:58 +00:00
|
|
|
void DiscWii::writeOutDataPartitionHeader(const SystemChar* pathOut) const
|
|
|
|
{
|
|
|
|
for (const std::unique_ptr<IPartition>& part : m_partitions)
|
|
|
|
{
|
|
|
|
if (part->getKind() == IPartition::Kind::Data)
|
|
|
|
{
|
|
|
|
static_cast<PartitionWii&>(*part).writeOutPartitionHeader(pathOut);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-23 03:39:38 +00:00
|
|
|
class PartitionBuilderWii : public DiscBuilderBase::PartitionBuilderBase
|
2016-01-22 02:30:17 +00:00
|
|
|
{
|
2016-01-22 23:45:58 +00:00
|
|
|
uint64_t m_curUser = 0x1F0000;
|
2016-01-22 02:30:17 +00:00
|
|
|
public:
|
|
|
|
PartitionBuilderWii(DiscBuilderBase& parent, Kind kind,
|
|
|
|
const char gameID[6], const char* gameTitle)
|
2016-01-23 03:39:38 +00:00
|
|
|
: DiscBuilderBase::PartitionBuilderBase(parent, kind, gameID, gameTitle) {}
|
2016-01-22 02:30:17 +00:00
|
|
|
|
|
|
|
uint64_t getCurUserEnd() const {return m_curUser;}
|
|
|
|
|
|
|
|
uint64_t userAllocate(uint64_t reqSz)
|
|
|
|
{
|
|
|
|
reqSz = ROUND_UP_32(reqSz);
|
|
|
|
if (m_curUser + reqSz >= 0x1FB450000)
|
|
|
|
{
|
|
|
|
LogModule.report(LogVisor::FatalError, "partition exceeds maximum single-partition capacity");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
uint64_t ret = m_curUser;
|
|
|
|
m_curUser += reqSz;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-01-22 23:45:58 +00:00
|
|
|
uint32_t packOffset(uint64_t offset) const
|
|
|
|
{
|
|
|
|
return uint32_t(offset >> uint64_t(2));
|
|
|
|
}
|
|
|
|
|
2016-01-22 02:30:17 +00:00
|
|
|
bool buildFromDirectory(const SystemChar* dirIn, const SystemChar* dolIn, const SystemChar* apploaderIn)
|
|
|
|
{
|
2016-01-23 03:39:38 +00:00
|
|
|
bool result = DiscBuilderBase::PartitionBuilderBase::buildFromDirectory(dirIn, dolIn, apploaderIn);
|
2016-01-22 02:30:17 +00:00
|
|
|
if (!result)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
std::unique_ptr<IFileIO::IWriteStream> ws;
|
|
|
|
|
|
|
|
/* Pad out user area to nearest cleartext sector */
|
|
|
|
uint64_t curUserRem = m_curUser % 0x1F0000;
|
|
|
|
if (curUserRem)
|
|
|
|
{
|
|
|
|
ws = m_parent.getFileIO().beginWriteStream(m_curUser);
|
|
|
|
curUserRem = 0x1F0000 - curUserRem;
|
|
|
|
for (size_t i=0 ; i<curUserRem ; ++i)
|
|
|
|
ws->write("\xff", 1);
|
|
|
|
m_curUser += curUserRem;
|
|
|
|
}
|
|
|
|
|
|
|
|
ws = m_parent.getFileIO().beginWriteStream(0);
|
2016-01-22 23:45:58 +00:00
|
|
|
Header header(m_gameID, m_gameTitle.c_str(), true, 0, 0, 0);
|
2016-01-22 02:30:17 +00:00
|
|
|
header.write(*ws);
|
|
|
|
|
|
|
|
ws = m_parent.getFileIO().beginWriteStream(0x2440);
|
|
|
|
FILE* fp = Fopen(apploaderIn, _S("rb"), FileLockType::Read);
|
|
|
|
if (!fp)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to open %s for reading"), apploaderIn);
|
|
|
|
char buf[8192];
|
|
|
|
size_t xferSz = 0;
|
|
|
|
SystemString apploaderName(apploaderIn);
|
|
|
|
++m_parent.m_progressIdx;
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
size_t rdSz = fread(buf, 1, 8192, fp);
|
|
|
|
if (!rdSz)
|
|
|
|
break;
|
|
|
|
ws->write(buf, rdSz);
|
|
|
|
xferSz += rdSz;
|
2016-01-22 23:45:58 +00:00
|
|
|
if (0x2440 + xferSz >= 0x1F0000)
|
2016-01-22 02:30:17 +00:00
|
|
|
LogModule.report(LogVisor::FatalError,
|
|
|
|
"apploader flows into user area (one or the other is too big)");
|
|
|
|
m_parent.m_progressCB(m_parent.m_progressIdx, apploaderName, xferSz);
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
size_t fstOff = ROUND_UP_32(xferSz);
|
|
|
|
size_t fstSz = sizeof(FSTNode) * m_buildNodes.size();
|
|
|
|
for (size_t i=0 ; i<fstOff-xferSz ; ++i)
|
|
|
|
ws->write("\xff", 1);
|
|
|
|
fstOff += 0x2440;
|
|
|
|
ws->write(m_buildNodes.data(), fstSz);
|
|
|
|
for (const std::string& str : m_buildNames)
|
|
|
|
ws->write(str.data(), str.size()+1);
|
|
|
|
fstSz += m_buildNameOff;
|
|
|
|
fstSz = ROUND_UP_32(fstSz);
|
|
|
|
|
2016-01-22 23:45:58 +00:00
|
|
|
if (fstOff + fstSz >= 0x1F0000)
|
2016-01-22 02:30:17 +00:00
|
|
|
LogModule.report(LogVisor::FatalError,
|
|
|
|
"FST flows into user area (one or the other is too big)");
|
|
|
|
|
|
|
|
ws = m_parent.getFileIO().beginWriteStream(0x420);
|
|
|
|
uint32_t vals[4];
|
2016-01-22 23:45:58 +00:00
|
|
|
vals[0] = SBig(uint32_t(m_dolOffset >> uint64_t(2)));
|
|
|
|
vals[1] = SBig(uint32_t(fstOff >> uint64_t(2)));
|
2016-01-22 02:30:17 +00:00
|
|
|
vals[2] = SBig(uint32_t(fstSz));
|
|
|
|
vals[3] = SBig(uint32_t(fstSz));
|
|
|
|
ws->write(vals, sizeof(vals));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t cryptAndFakesign(IFileIO& out, uint64_t offset, const SystemChar* partHeadIn) const
|
|
|
|
{
|
|
|
|
/* Read head and validate key members */
|
|
|
|
FILE* fp = Fopen(partHeadIn, _S("rb"), FileLockType::Read);
|
|
|
|
if (!fp)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to open %s for reading"), partHeadIn);
|
|
|
|
|
|
|
|
uint8_t tkey[16];
|
|
|
|
{
|
2016-01-23 23:36:58 +00:00
|
|
|
FSeek(fp, 0x1BF, SEEK_SET);
|
2016-01-22 02:30:17 +00:00
|
|
|
if (fread(tkey, 1, 16, fp) != 16)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to read title key from %s"), partHeadIn);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t tkeyiv[16] = {};
|
|
|
|
{
|
2016-01-23 23:36:58 +00:00
|
|
|
FSeek(fp, 0x1DC, SEEK_SET);
|
2016-01-22 02:30:17 +00:00
|
|
|
if (fread(tkeyiv, 1, 8, fp) != 8)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to read title key IV from %s"), partHeadIn);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t ccIdx;
|
|
|
|
{
|
2016-01-23 23:36:58 +00:00
|
|
|
FSeek(fp, 0x1F1, SEEK_SET);
|
2016-01-22 02:30:17 +00:00
|
|
|
if (fread(&ccIdx, 1, 1, fp) != 1)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to read common key index from %s"), partHeadIn);
|
|
|
|
if (ccIdx > 1)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("common key index may only be 0 or 1"));
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t tmdSz;
|
|
|
|
{
|
2016-01-23 23:36:58 +00:00
|
|
|
FSeek(fp, 0x2A4, SEEK_SET);
|
2016-01-22 02:30:17 +00:00
|
|
|
if (fread(&tmdSz, 1, 4, fp) != 4)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to read TMD size from %s"), partHeadIn);
|
|
|
|
tmdSz = SBig(tmdSz);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t h3Off;
|
|
|
|
{
|
|
|
|
uint32_t h3Ptr;
|
2016-01-23 23:36:58 +00:00
|
|
|
FSeek(fp, 0x2B4, SEEK_SET);
|
2016-01-22 02:30:17 +00:00
|
|
|
if (fread(&h3Ptr, 1, 4, fp) != 4)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to read H3 pointer from %s"), partHeadIn);
|
|
|
|
h3Off = uint64_t(SBig(h3Ptr)) << 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t dataOff;
|
|
|
|
{
|
|
|
|
uint32_t dataPtr;
|
|
|
|
if (fread(&dataPtr, 1, 4, fp) != 4)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to read data pointer from %s"), partHeadIn);
|
|
|
|
dataOff = uint64_t(SBig(dataPtr)) << 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<uint8_t[]> tmdData(new uint8_t[tmdSz]);
|
2016-01-23 23:36:58 +00:00
|
|
|
FSeek(fp, 0x2C0, SEEK_SET);
|
2016-01-22 02:30:17 +00:00
|
|
|
if (fread(tmdData.get(), 1, tmdSz, fp) != tmdSz)
|
|
|
|
LogModule.report(LogVisor::FatalError, _S("unable to read TMD from %s"), partHeadIn);
|
|
|
|
|
|
|
|
/* Copy partition head up to H3 table */
|
|
|
|
std::unique_ptr<IFileIO::IWriteStream> ws = out.beginWriteStream(offset);
|
|
|
|
{
|
|
|
|
uint64_t remCopy = h3Off;
|
|
|
|
uint8_t copyBuf[8192];
|
2016-01-23 23:36:58 +00:00
|
|
|
FSeek(fp, 0, SEEK_SET);
|
2016-01-22 02:30:17 +00:00
|
|
|
while (remCopy)
|
|
|
|
{
|
2016-01-23 23:36:58 +00:00
|
|
|
size_t rdBytes = fread(copyBuf, 1, std::min(size_t(8192), size_t(remCopy)), fp);
|
2016-01-22 02:30:17 +00:00
|
|
|
if (rdBytes)
|
|
|
|
{
|
|
|
|
ws->write(copyBuf, rdBytes);
|
|
|
|
remCopy -= rdBytes;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (size_t i=0 ; i<remCopy ; ++i)
|
|
|
|
ws->write("", 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Prepare crypto pass */
|
|
|
|
std::unique_ptr<IFileIO::IReadStream> rs = m_parent.getFileIO().beginReadStream(0);
|
|
|
|
sha1nfo sha;
|
|
|
|
std::unique_ptr<IAES> aes = NewAES();
|
|
|
|
aes->setKey(COMMON_KEYS[ccIdx]);
|
|
|
|
aes->decrypt(tkeyiv, tkey, tkey, 16);
|
|
|
|
aes->setKey(tkey);
|
|
|
|
static const uint8_t ZEROIV[16] = {0};
|
|
|
|
|
|
|
|
std::unique_ptr<char[]> cleartext(new char[0x1F0000]);
|
|
|
|
std::unique_ptr<char[]> ciphertext(new char[0x200000]);
|
|
|
|
uint8_t h3[4916][20] = {};
|
|
|
|
|
|
|
|
uint64_t groupCount = m_curUser / 0x1F0000;
|
|
|
|
ws = out.beginWriteStream(offset + dataOff);
|
|
|
|
SystemString cryptoName(_S("Hashing and encrypting"));
|
|
|
|
++m_parent.m_progressIdx;
|
|
|
|
for (uint64_t g=0 ; g<groupCount ; ++g)
|
|
|
|
{
|
|
|
|
char* cleartext2 = cleartext.get();
|
|
|
|
char* ciphertext2 = ciphertext.get();
|
|
|
|
|
|
|
|
if (rs->read(cleartext2, 0x1F0000) != 0x1F0000)
|
|
|
|
LogModule.report(LogVisor::FatalError, "cleartext file too short");
|
|
|
|
|
|
|
|
uint8_t h2[8][20];
|
|
|
|
|
|
|
|
for (int s=0 ; s<8 ; ++s)
|
|
|
|
{
|
|
|
|
char* cleartext1 = cleartext2 + s*0x3E000;
|
|
|
|
char* ciphertext1 = ciphertext2 + s*0x40000;
|
|
|
|
uint8_t h1[8][20];
|
|
|
|
|
|
|
|
for (int c=0 ; c<8 ; ++c)
|
|
|
|
{
|
|
|
|
char* cleartext0 = cleartext1 + c*0x7c00;
|
|
|
|
char* ciphertext0 = ciphertext1 + c*0x8000;
|
|
|
|
uint8_t h0[31][20];
|
|
|
|
|
|
|
|
for (int j=0 ; j<31 ; ++j)
|
|
|
|
{
|
|
|
|
sha1_init(&sha);
|
|
|
|
sha1_write(&sha, cleartext0 + j*0x400, 0x400);
|
|
|
|
memcpy(h0[j], sha1_result(&sha), 20);
|
|
|
|
}
|
|
|
|
|
|
|
|
sha1_init(&sha);
|
|
|
|
sha1_write(&sha, (char*)h0, 0x26C);
|
|
|
|
memcpy(h1[c], sha1_result(&sha), 20);
|
|
|
|
|
|
|
|
memcpy(ciphertext0, h0, 0x26C);
|
|
|
|
memset(ciphertext0+0x26C, 0, 0x014);
|
|
|
|
}
|
|
|
|
|
|
|
|
sha1_init(&sha);
|
|
|
|
sha1_write(&sha, (char*)h1, 0x0A0);
|
|
|
|
memcpy(h2[s], sha1_result(&sha), 20);
|
|
|
|
|
|
|
|
for (int c=0 ; c<8 ; ++c)
|
|
|
|
{
|
|
|
|
char* ciphertext0 = ciphertext1 + c*0x8000;
|
|
|
|
memcpy(ciphertext0+0x280, h1, 0x0A0);
|
|
|
|
memset(ciphertext0+0x320, 0, 0x020);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sha1_init(&sha);
|
|
|
|
sha1_write(&sha, (char*)h2, 0x0A0);
|
|
|
|
memcpy(h3[g], sha1_result(&sha), 20);
|
|
|
|
|
|
|
|
for (int s=0 ; s<8 ; ++s)
|
|
|
|
{
|
|
|
|
char* cleartext1 = cleartext2 + s*0x3E000;
|
|
|
|
char* ciphertext1 = ciphertext2 + s*0x40000;
|
|
|
|
for (int c=0 ; c<8 ; ++c)
|
|
|
|
{
|
|
|
|
char* cleartext0 = cleartext1 + c*0x7c00;
|
|
|
|
char* ciphertext0 = ciphertext1 + c*0x8000;
|
|
|
|
memcpy(ciphertext0+0x340, h2, 0x0A0);
|
|
|
|
memset(ciphertext0+0x3E0, 0, 0x020);
|
|
|
|
aes->encrypt(ZEROIV, (uint8_t*)ciphertext0, (uint8_t*)ciphertext0, 0x400);
|
|
|
|
aes->encrypt((uint8_t*)(ciphertext0+0x3D0), (uint8_t*)cleartext0, (uint8_t*)(ciphertext0+0x400), 0x7c00);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ws->write(ciphertext2, 0x200000) != 0x200000)
|
|
|
|
LogModule.report(LogVisor::FatalError, "unable to write full disc sector");
|
|
|
|
m_parent.m_progressCB(m_parent.m_progressIdx, cryptoName, (g+1)*0x200000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write new crypto content size */
|
2016-01-22 23:45:58 +00:00
|
|
|
uint64_t cryptContentSize = (groupCount * 0x200000) >> uint64_t(2);
|
2016-01-22 02:30:17 +00:00
|
|
|
uint32_t cryptContentSizeBig = SBig(uint32_t(cryptContentSize));
|
|
|
|
ws = out.beginWriteStream(offset + 0x2BC);
|
|
|
|
ws->write(&cryptContentSizeBig, 0x4);
|
|
|
|
|
|
|
|
/* Write new H3 */
|
|
|
|
ws = out.beginWriteStream(offset + h3Off);
|
|
|
|
ws->write(h3, 0x18000);
|
|
|
|
|
|
|
|
/* Compute content hash and replace in TMD */
|
|
|
|
sha1_init(&sha);
|
|
|
|
sha1_write(&sha, (char*)h3, 0x18000);
|
|
|
|
memcpy(tmdData.get() + 0x1F4, sha1_result(&sha), 20);
|
|
|
|
|
|
|
|
/* Same for content size */
|
|
|
|
uint64_t contentSize = groupCount * 0x1F0000;
|
|
|
|
uint64_t contentSizeBig = SBig(contentSize);
|
|
|
|
memcpy(tmdData.get() + 0x1EC, &contentSizeBig, 8);
|
|
|
|
|
|
|
|
/* Zero-out TMD signature to simplify brute-force */
|
|
|
|
memset(tmdData.get() + 0x4, 0, 0x100);
|
|
|
|
|
|
|
|
/* Brute-force zero-starting hash */
|
|
|
|
size_t tmdCheckSz = tmdSz - 0x140;
|
|
|
|
struct BFWindow
|
|
|
|
{
|
|
|
|
uint64_t word[7];
|
|
|
|
}* bfWindow = (BFWindow*)(tmdData.get() + 0x19A);
|
|
|
|
bool good = false;
|
|
|
|
uint64_t attempts = 0;
|
|
|
|
SystemString bfName(_S("Brute force attempts"));
|
|
|
|
++m_parent.m_progressIdx;
|
|
|
|
for (int w=0 ; w<7 ; ++w)
|
|
|
|
{
|
|
|
|
for (uint64_t i=0 ; i<UINT64_MAX ; ++i)
|
|
|
|
{
|
|
|
|
bfWindow->word[w] = i;
|
|
|
|
sha1_init(&sha);
|
|
|
|
sha1_write(&sha, (char*)(tmdData.get() + 0x140), tmdCheckSz);
|
|
|
|
uint8_t* hash = sha1_result(&sha);
|
2016-01-22 23:45:58 +00:00
|
|
|
++attempts;
|
2016-01-22 02:30:17 +00:00
|
|
|
if (hash[0] == 0)
|
|
|
|
{
|
|
|
|
good = true;
|
|
|
|
break;
|
|
|
|
}
|
2016-01-22 23:45:58 +00:00
|
|
|
m_parent.m_progressCB(m_parent.m_progressIdx, bfName, attempts);
|
2016-01-22 02:30:17 +00:00
|
|
|
}
|
|
|
|
if (good)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
m_parent.m_progressCB(m_parent.m_progressIdx, bfName, attempts);
|
|
|
|
|
|
|
|
ws = out.beginWriteStream(offset + 0x2C0);
|
|
|
|
ws->write(tmdData.get(), tmdSz);
|
|
|
|
|
|
|
|
return offset + dataOff + groupCount * 0x200000;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool DiscBuilderWii::buildFromDirectory(const SystemChar* dirIn, const SystemChar* dolIn,
|
|
|
|
const SystemChar* apploaderIn, const SystemChar* partHeadIn)
|
|
|
|
{
|
2016-01-22 23:45:58 +00:00
|
|
|
size_t DISC_CAPACITY = m_dualLayer ? 0x1FB4E0000 : 0x118240000;
|
|
|
|
|
2016-01-22 02:30:17 +00:00
|
|
|
PartitionBuilderWii& pb = static_cast<PartitionBuilderWii&>(*m_partitions[0]);
|
|
|
|
uint64_t filledSz = 0x200000;
|
|
|
|
std::unique_ptr<IFileIO> imgOut = NewFileIO(m_outPath);
|
2016-01-22 23:45:58 +00:00
|
|
|
imgOut->beginWriteStream();
|
2016-01-22 02:30:17 +00:00
|
|
|
|
2016-01-22 23:45:58 +00:00
|
|
|
/* Assemble cleartext data partition into temporary file */
|
|
|
|
SystemString clearPath(m_outPath);
|
|
|
|
clearPath += _S(".cleardata");
|
|
|
|
m_fileIO = std::move(NewFileIO(clearPath));
|
2016-01-22 02:30:17 +00:00
|
|
|
if (!pb.buildFromDirectory(dirIn, dolIn, apploaderIn))
|
|
|
|
return false;
|
|
|
|
|
2016-01-22 23:45:58 +00:00
|
|
|
/* Fakesign cleartext into output file */
|
2016-01-22 02:30:17 +00:00
|
|
|
filledSz = pb.cryptAndFakesign(*imgOut, filledSz, partHeadIn);
|
2016-01-22 23:45:58 +00:00
|
|
|
if (filledSz >= DISC_CAPACITY)
|
2016-01-22 02:30:17 +00:00
|
|
|
{
|
|
|
|
LogModule.report(LogVisor::FatalError, "data partition exceeds disc capacity");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-22 23:45:58 +00:00
|
|
|
++m_progressIdx;
|
2016-01-24 05:06:54 +00:00
|
|
|
m_progressCB(m_progressIdx, _S("Finishing Disc"), -1);
|
2016-01-22 23:45:58 +00:00
|
|
|
|
|
|
|
/* Populate disc header */
|
|
|
|
std::unique_ptr<IFileIO::IWriteStream> ws = imgOut->beginWriteStream(0);
|
|
|
|
Header header(pb.getGameID(), pb.getGameTitle().c_str(), true, 0, 0, 0);
|
|
|
|
header.write(*ws);
|
|
|
|
|
|
|
|
/* Populate partition info */
|
|
|
|
ws = imgOut->beginWriteStream(0x40000);
|
|
|
|
uint32_t vals[2] = {SBig(uint32_t(1)), SBig(uint32_t(0x40020 >> uint64_t(2)))};
|
|
|
|
ws->write(vals, 8);
|
|
|
|
|
|
|
|
ws = imgOut->beginWriteStream(0x40020);
|
|
|
|
vals[0] = SBig(uint32_t(0x200000 >> uint64_t(2)));
|
|
|
|
ws->write(vals, 4);
|
|
|
|
|
|
|
|
/* Populate region info */
|
|
|
|
ws = imgOut->beginWriteStream(0x4E000);
|
|
|
|
const char* gameID = pb.getGameID();
|
|
|
|
if (gameID[3] == 'P')
|
|
|
|
vals[0] = SBig(uint32_t(2));
|
|
|
|
else if (gameID[3] == 'J')
|
|
|
|
vals[0] = SBig(uint32_t(0));
|
|
|
|
else
|
|
|
|
vals[0] = SBig(uint32_t(1));
|
|
|
|
ws->write(vals, 4);
|
|
|
|
|
|
|
|
/* Make disc unrated */
|
|
|
|
ws = imgOut->beginWriteStream(0x4E010);
|
|
|
|
for (int i=0 ; i<16 ; ++i)
|
|
|
|
ws->write("\x80", 1);
|
|
|
|
|
2016-01-22 02:30:17 +00:00
|
|
|
/* Fill image to end */
|
2016-01-22 23:45:58 +00:00
|
|
|
ws = imgOut->beginWriteStream(filledSz);
|
|
|
|
for (size_t i=0 ; i<DISC_CAPACITY-filledSz ; ++i)
|
2016-01-22 02:30:17 +00:00
|
|
|
ws->write("\xff", 1);
|
|
|
|
|
2016-01-22 23:45:58 +00:00
|
|
|
/* Delete cleartext file */
|
|
|
|
Unlink(clearPath.c_str());
|
|
|
|
|
2016-01-22 02:30:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-01-22 23:45:58 +00:00
|
|
|
DiscBuilderWii::DiscBuilderWii(const SystemChar* outPath, const char gameID[6], const char* gameTitle, bool dualLayer,
|
2016-01-22 02:30:17 +00:00
|
|
|
std::function<void(size_t, const SystemString&, size_t)> progressCB)
|
2016-01-22 23:45:58 +00:00
|
|
|
: DiscBuilderBase(std::move(std::unique_ptr<IFileIO>()), progressCB), m_outPath(outPath), m_dualLayer(dualLayer)
|
2016-01-22 02:30:17 +00:00
|
|
|
{
|
2016-01-23 03:39:38 +00:00
|
|
|
PartitionBuilderWii* partBuilder = new PartitionBuilderWii(*this, PartitionBuilderBase::Kind::Data,
|
2016-01-22 02:30:17 +00:00
|
|
|
gameID, gameTitle);
|
|
|
|
m_partitions.emplace_back(partBuilder);
|
|
|
|
}
|
|
|
|
|
2015-06-26 19:30:03 +00:00
|
|
|
}
|