nod/lib/DiscBase.cpp

334 lines
11 KiB
C++
Raw Normal View History

2015-07-02 18:33:55 +00:00
#include "NOD/DiscBase.hpp"
#include "NOD/IFileIO.hpp"
2016-01-21 06:30:37 +00:00
#include "NOD/DirectoryEnumerator.hpp"
2015-09-28 01:55:59 +00:00
#include "NOD/NOD.hpp"
2015-06-26 20:01:15 +00:00
2016-01-21 06:30:37 +00:00
#include <stdio.h>
2015-09-02 18:53:24 +00:00
#include <errno.h>
#ifndef _WIN32
#include <unistd.h>
#endif
2016-01-21 06:30:37 +00:00
#include <algorithm>
2015-06-26 20:01:15 +00:00
namespace NOD
{
2015-06-30 00:07:46 +00:00
void DiscBase::IPartition::parseFST(IPartReadStream& s)
2015-06-29 05:35:25 +00:00
{
2015-06-30 00:07:46 +00:00
std::unique_ptr<uint8_t[]> fst(new uint8_t[m_fstSz]);
s.seek(m_fstOff);
s.read(fst.get(), m_fstSz);
const FSTNode* nodes = (FSTNode*)fst.get();
/* Root node indicates the count of all contained nodes */
uint32_t nodeCount = nodes[0].getLength();
const char* names = (char*)fst.get() + 12 * nodeCount;
m_nodes.clear();
m_nodes.reserve(nodeCount);
/* Construct nodes */
for (uint32_t n=0 ; n<nodeCount ; ++n)
{
const FSTNode& node = nodes[n];
2015-06-30 06:46:19 +00:00
m_nodes.emplace_back(*this, node, n ? names + node.getNameOffset() : "");
2015-06-30 00:07:46 +00:00
}
/* Setup dir-child iterators */
for (std::vector<Node>::iterator it=m_nodes.begin();
it != m_nodes.end();
++it)
{
Node& node = *it;
2015-11-21 01:15:33 +00:00
if (node.m_kind == Node::Kind::Directory)
2015-06-30 00:07:46 +00:00
{
node.m_childrenBegin = it + 1;
node.m_childrenEnd = m_nodes.begin() + node.m_discLength;
}
}
2015-06-29 05:35:25 +00:00
}
2015-07-10 03:11:30 +00:00
void DiscBase::IPartition::parseDOL(IPartReadStream& s)
{
/* Read Dol header */
2015-09-27 17:10:40 +00:00
DOLHeader dolHeader;
s.read(&dolHeader, sizeof(DOLHeader));
2015-07-10 03:11:30 +00:00
/* Calculate Dol size */
2015-09-27 17:10:40 +00:00
uint32_t dolSize = SBig(dolHeader.textOff[0]);
2015-07-10 03:11:30 +00:00
for (uint32_t i = 0 ; i < 7 ; i++)
2015-09-27 17:10:40 +00:00
dolSize += SBig(dolHeader.textSizes[i]);
2015-07-10 03:11:30 +00:00
for (uint32_t i = 0 ; i < 11 ; i++)
2015-09-27 17:10:40 +00:00
dolSize += SBig(dolHeader.dataSizes[i]);
2015-07-10 03:11:30 +00:00
m_dolSz = dolSize;
}
2016-01-21 06:30:37 +00:00
bool DiscBase::IPartition::Node::extractToDirectory(const SystemString& basePath,
const ExtractionContext& ctx) const
2015-06-30 06:46:19 +00:00
{
2015-07-02 18:33:55 +00:00
SystemStringView nameView(getName());
SystemString path = basePath + _S("/") + nameView.sys_str();
2015-09-28 01:55:59 +00:00
2015-11-21 01:15:33 +00:00
if (m_kind == Kind::Directory)
2015-06-30 06:46:19 +00:00
{
2015-09-28 01:55:59 +00:00
if (ctx.verbose && ctx.progressCB && !getName().empty())
ctx.progressCB(getName());
2015-07-02 20:37:07 +00:00
if (Mkdir(path.c_str(), 0755) && errno != EEXIST)
{
2015-07-26 02:44:44 +00:00
LogModule.report(LogVisor::Error, _S("unable to mkdir '%s'"), path.c_str());
return false;
2015-07-02 20:37:07 +00:00
}
for (Node& subnode : *this)
2015-09-28 01:55:59 +00:00
if (!subnode.extractToDirectory(path, ctx))
2015-07-26 02:44:44 +00:00
return false;
2015-06-30 06:46:19 +00:00
}
2015-11-21 01:15:33 +00:00
else if (m_kind == Kind::File)
2015-06-30 06:46:19 +00:00
{
2015-07-02 20:37:07 +00:00
Sstat theStat;
2015-09-28 01:55:59 +00:00
if (ctx.verbose && ctx.progressCB)
ctx.progressCB(getName());
if (ctx.force || Stat(path.c_str(), &theStat))
2015-06-30 06:46:19 +00:00
{
std::unique_ptr<IPartReadStream> rs = beginReadStream();
2015-07-17 23:28:41 +00:00
std::unique_ptr<IFileIO::IWriteStream> ws = NewFileIO(path)->beginWriteStream();
2015-08-05 21:45:25 +00:00
ws->copyFromDisc(*rs, m_discLength);
2015-06-30 06:46:19 +00:00
}
}
2015-07-26 02:44:44 +00:00
return true;
2015-06-30 06:46:19 +00:00
}
2016-01-21 06:30:37 +00:00
bool DiscBase::IPartition::extractToDirectory(const SystemString& path,
const ExtractionContext& ctx)
{
2015-07-02 20:37:07 +00:00
Sstat theStat;
if (Mkdir(path.c_str(), 0755) && errno != EEXIST)
{
2015-07-26 02:44:44 +00:00
LogModule.report(LogVisor::Error, _S("unable to mkdir '%s'"), path.c_str());
return false;
2015-07-02 20:37:07 +00:00
}
/* Extract Apploader */
2015-07-02 20:37:07 +00:00
SystemString apploaderPath = path + _S("/apploader.bin");
2015-09-28 01:55:59 +00:00
if (ctx.force || Stat(apploaderPath.c_str(), &theStat))
{
2015-09-28 01:55:59 +00:00
if (ctx.verbose && ctx.progressCB)
ctx.progressCB("apploader.bin");
2015-07-10 03:11:30 +00:00
std::unique_ptr<uint8_t[]> buf = getApploaderBuf();
NewFileIO(apploaderPath)->beginWriteStream()->write(buf.get(), m_apploaderSz);
}
2015-07-03 03:49:31 +00:00
/* Extract Dol */
2016-01-22 23:45:58 +00:00
SystemString dolPath = path + _S("/boot.dol");
2015-09-28 01:55:59 +00:00
if (ctx.force || Stat(dolPath.c_str(), &theStat))
2015-07-03 03:49:31 +00:00
{
2015-09-28 01:55:59 +00:00
if (ctx.verbose && ctx.progressCB)
2016-01-22 23:45:58 +00:00
ctx.progressCB("boot.dol");
2015-07-10 03:11:30 +00:00
std::unique_ptr<uint8_t[]> buf = getDOLBuf();
NewFileIO(dolPath)->beginWriteStream()->write(buf.get(), m_dolSz);
2015-07-03 03:49:31 +00:00
}
/* Extract Filesystem */
2016-01-25 02:00:02 +00:00
SystemString fsPath = path + _S("/fsroot");
if (Mkdir(fsPath.c_str(), 0755) && errno != EEXIST)
{
LogModule.report(LogVisor::Error, _S("unable to mkdir '%s'"), fsPath.c_str());
return false;
}
return m_nodes[0].extractToDirectory(fsPath, ctx);
}
2016-01-21 06:30:37 +00:00
static uint64_t GetInode(const SystemChar* path)
{
uint64_t inode;
#if _WIN32
OFSTRUCT ofs;
HFILE fp = OpenFile(path, &ofs, OF_READ);
if (fp == HFILE_ERROR)
LogModule.report(LogVisor::FatalError, _S("unable to open %s"), path);
2016-01-21 06:30:37 +00:00
BY_HANDLE_FILE_INFORMATION info;
if (!GetFileInformationByHandle(fp, &info))
LogModule.report(LogVisor::FatalError, _S("unable to GetFileInformationByHandle %s"), path);
inode = uint64_t(info.nFileIndexHigh) << 32;
inode |= uint64_t(info.nFileIndexLow);
2016-01-21 06:30:37 +00:00
CloseHandle(fp);
#else
struct stat st;
if (stat(path, &st))
LogModule.report(LogVisor::FatalError, _S("unable to stat %s"), path);
2016-01-21 06:30:37 +00:00
inode = uint64_t(st.st_ino);
#endif
return inode;
}
2016-01-25 02:00:02 +00:00
static bool IsSystemFile(const SystemString& name, bool& isDol)
{
2016-01-25 02:00:02 +00:00
isDol = false;
if (name.size() < 4)
return false;
if (!StrCaseCmp((&*name.cend()) - 4, _S(".dol")))
2016-01-25 02:00:02 +00:00
{
isDol = true;
return true;
2016-01-25 02:00:02 +00:00
}
if (!StrCaseCmp((&*name.cend()) - 4, _S(".rel")))
return true;
if (!StrCaseCmp((&*name.cend()) - 4, _S(".rso")))
return true;
if (!StrCaseCmp((&*name.cend()) - 4, _S(".sel")))
return true;
if (!StrCaseCmp((&*name.cend()) - 4, _S(".bnr")))
return true;
if (!StrCaseCmp((&*name.cend()) - 4, _S(".elf")))
return true;
if (!StrCaseCmp((&*name.cend()) - 4, _S(".wad")))
return true;
return false;
}
2016-01-25 02:00:02 +00:00
/** Patches out pesky #001 integrity check performed by game's OSInit.
* This is required for multi-DOL games, but doesn't harm functionality otherwise */
static size_t PatchDOL(IFileIO::IReadStream& in, IPartWriteStream& out, size_t sz)
{
std::unique_ptr<uint8_t[]> buf(new uint8_t[sz]);
sz = in.read(buf.get(), sz);
uint8_t* found = static_cast<uint8_t*>(memmem(buf.get(), sz,
"\x3C\x03\xF8\x00\x28\x00\x00\x00\x40\x82\x00\x0C"
"\x38\x60\x00\x01\x48\x00\x02\x44\x38\x61\x00\x18\x48", 25));
if (found)
found[11] = '\x04';
return out.write(buf.get(), sz);
}
void DiscBuilderBase::PartitionBuilderBase::recursiveBuildNodes(IPartWriteStream& ws,
bool system,
const SystemChar* dirIn,
uint64_t dolInode)
2016-01-21 06:30:37 +00:00
{
DirectoryEnumerator dEnum(dirIn, DirectoryEnumerator::Mode::DirsThenFilesSorted, false, false, true);
for (const DirectoryEnumerator::Entry& e : dEnum)
{
if (e.m_isDir)
{
2016-01-25 02:00:02 +00:00
recursiveBuildNodes(ws, system, e.m_path.c_str(), dolInode);
2016-01-21 06:30:37 +00:00
}
else
{
2016-01-25 02:00:02 +00:00
bool isDol;
bool isSys = IsSystemFile(e.m_name, isDol);
if (system ^ isSys)
continue;
2016-01-22 23:45:58 +00:00
if (dolInode == GetInode(e.m_path.c_str()))
continue;
2016-01-21 06:30:37 +00:00
size_t fileSz = ROUND_UP_32(e.m_fileSz);
2016-01-25 02:00:02 +00:00
uint64_t fileOff = userAllocate(fileSz, ws);
m_fileOffsetsSizes[e.m_path] = std::make_pair(fileOff, fileSz);
2016-01-25 02:00:02 +00:00
std::unique_ptr<IFileIO::IReadStream> rs = NewFileIO(e.m_path)->beginReadStream();
2016-01-21 06:30:37 +00:00
size_t xferSz = 0;
2016-01-25 02:00:02 +00:00
if (isDol)
2016-01-21 06:30:37 +00:00
{
2016-01-25 02:00:02 +00:00
xferSz = PatchDOL(*rs, ws, e.m_fileSz);
m_parent.m_progressCB(++m_parent.m_progressIdx, e.m_name + _S(" [PATCHED]"), xferSz);
}
else
{
char buf[0x8000];
++m_parent.m_progressIdx;
while (xferSz < e.m_fileSz)
{
size_t rdSz = rs->read(buf, std::min(0x8000ul, e.m_fileSz - xferSz));
if (!rdSz)
break;
ws.write(buf, rdSz);
xferSz += rdSz;
m_parent.m_progressCB(m_parent.m_progressIdx, e.m_name, xferSz);
}
2016-01-21 06:30:37 +00:00
}
for (size_t i=0 ; i<fileSz-xferSz ; ++i)
2016-01-25 02:00:02 +00:00
ws.write("\xff", 1);
}
}
}
void DiscBuilderBase::PartitionBuilderBase::recursiveBuildFST(const SystemChar* dirIn, uint64_t dolInode,
std::function<void(void)> incParents)
{
DirectoryEnumerator dEnum(dirIn, DirectoryEnumerator::Mode::DirsThenFilesSorted, false, false, true);
for (const DirectoryEnumerator::Entry& e : dEnum)
{
if (e.m_isDir)
{
size_t dirNodeIdx = m_buildNodes.size();
m_buildNodes.emplace_back(true, m_buildNameOff, 0, dirNodeIdx+1);
addBuildName(e.m_name);
incParents();
recursiveBuildFST(e.m_path.c_str(), dolInode, [&](){m_buildNodes[dirNodeIdx].incrementLength(); incParents();});
}
2016-01-23 03:42:50 +00:00
else
{
if (dolInode == GetInode(e.m_path.c_str()))
{
m_buildNodes.emplace_back(false, m_buildNameOff, packOffset(m_dolOffset), m_dolSize);
addBuildName(e.m_name);
incParents();
continue;
}
std::pair<uint64_t,uint64_t> fileOffSz = m_fileOffsetsSizes.at(e.m_path);
m_buildNodes.emplace_back(false, m_buildNameOff, packOffset(fileOffSz.first), fileOffSz.second);
2016-01-21 06:30:37 +00:00
addBuildName(e.m_name);
incParents();
}
}
}
2016-01-25 02:00:02 +00:00
bool DiscBuilderBase::PartitionBuilderBase::buildFromDirectory(IPartWriteStream& ws,
const SystemChar* dirIn,
const SystemChar* dolIn,
const SystemChar* apploaderIn)
2016-01-21 06:30:37 +00:00
{
if (!dirIn || !dolIn || !apploaderIn)
LogModule.report(LogVisor::FatalError, "all arguments must be supplied to buildFromDirectory()");
/* Clear file */
2016-01-21 20:46:07 +00:00
++m_parent.m_progressIdx;
m_parent.m_progressCB(m_parent.m_progressIdx, "Preparing output image", -1);
2016-01-21 06:30:37 +00:00
2016-01-22 23:45:58 +00:00
/* Add root node */
2016-01-21 06:30:37 +00:00
m_buildNodes.emplace_back(true, m_buildNameOff, 0, 1);
addBuildName(_S("<root>"));
2016-01-25 02:00:02 +00:00
/* Write Boot DOL first (first thing seeked to after Apploader) */
2016-01-21 06:30:37 +00:00
{
Sstat dolStat;
if (Stat(dolIn, &dolStat))
LogModule.report(LogVisor::FatalError, _S("unable to stat %s"), dolIn);
2016-01-21 06:30:37 +00:00
size_t fileSz = ROUND_UP_32(dolStat.st_size);
2016-01-25 02:00:02 +00:00
uint64_t fileOff = userAllocate(fileSz, ws);
2016-01-21 06:30:37 +00:00
m_dolOffset = fileOff;
2016-01-22 23:45:58 +00:00
m_dolSize = fileSz;
2016-01-25 02:00:02 +00:00
std::unique_ptr<IFileIO::IReadStream> rs = NewFileIO(dolIn)->beginReadStream();
size_t xferSz = PatchDOL(*rs, ws, dolStat.st_size);
m_parent.m_progressCB(++m_parent.m_progressIdx, SystemString(dolIn) + _S(" [PATCHED]"), xferSz);
2016-01-21 06:30:37 +00:00
for (size_t i=0 ; i<fileSz-xferSz ; ++i)
2016-01-25 02:00:02 +00:00
ws.write("\xff", 1);
2016-01-21 06:30:37 +00:00
}
2016-01-22 23:45:58 +00:00
/* Gather files in root directory */
uint64_t dolInode = GetInode(dolIn);
2016-01-25 02:00:02 +00:00
recursiveBuildNodes(ws, true, dirIn, dolInode);
recursiveBuildNodes(ws, false, dirIn, dolInode);
recursiveBuildFST(dirIn, dolInode, [&](){m_buildNodes[0].incrementLength();});
2016-01-22 23:45:58 +00:00
2016-01-21 06:30:37 +00:00
return true;
}
2015-06-26 20:01:15 +00:00
}