mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-10 14:14:21 +00:00
144 lines
No EOL
5.2 KiB
C++
Executable file
144 lines
No EOL
5.2 KiB
C++
Executable file
/*
|
|
Copyright (c) 2017-2018 Adubbz
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
#include "install/remote_nsp.hpp"
|
|
|
|
#include <threads.h>
|
|
#include "data/buffered_placeholder_writer.hpp"
|
|
#include "util/title_util.hpp"
|
|
#include "util/error.hpp"
|
|
#include "util/debug.h"
|
|
|
|
namespace tin::install::nsp
|
|
{
|
|
RemoteNSP::RemoteNSP()
|
|
{
|
|
|
|
}
|
|
|
|
// TODO: Do verification: PFS0 magic, sizes not zero
|
|
void RemoteNSP::RetrieveHeader()
|
|
{
|
|
printf("Retrieving remote NSP header...\n");
|
|
|
|
// Retrieve the base header
|
|
m_headerBytes.resize(sizeof(PFS0BaseHeader), 0);
|
|
this->BufferData(m_headerBytes.data(), 0x0, sizeof(PFS0BaseHeader));
|
|
|
|
printf("Base header: \n");
|
|
printBytes(m_headerBytes.data(), sizeof(PFS0BaseHeader), true);
|
|
|
|
// Retrieve the full header
|
|
size_t remainingHeaderSize = this->GetBaseHeader()->numFiles * sizeof(PFS0FileEntry) + this->GetBaseHeader()->stringTableSize;
|
|
m_headerBytes.resize(sizeof(PFS0BaseHeader) + remainingHeaderSize, 0);
|
|
this->BufferData(m_headerBytes.data() + sizeof(PFS0BaseHeader), sizeof(PFS0BaseHeader), remainingHeaderSize);
|
|
|
|
printf("Full header: \n");
|
|
printBytes(m_headerBytes.data(), m_headerBytes.size(), true);
|
|
}
|
|
|
|
const PFS0FileEntry* RemoteNSP::GetFileEntry(unsigned int index)
|
|
{
|
|
if (index >= this->GetBaseHeader()->numFiles)
|
|
THROW_FORMAT("File entry index is out of bounds\n")
|
|
|
|
size_t fileEntryOffset = sizeof(PFS0BaseHeader) + index * sizeof(PFS0FileEntry);
|
|
|
|
if (m_headerBytes.size() < fileEntryOffset + sizeof(PFS0FileEntry))
|
|
THROW_FORMAT("Header bytes is too small to get file entry!");
|
|
|
|
return reinterpret_cast<PFS0FileEntry*>(m_headerBytes.data() + fileEntryOffset);
|
|
}
|
|
|
|
const PFS0FileEntry* RemoteNSP::GetFileEntryByExtension(std::string extension)
|
|
{
|
|
for (unsigned int i = 0; i < this->GetBaseHeader()->numFiles; i++)
|
|
{
|
|
const PFS0FileEntry* fileEntry = this->GetFileEntry(i);
|
|
std::string name(this->GetFileEntryName(fileEntry));
|
|
auto foundExtension = name.substr(name.find(".") + 1);
|
|
|
|
if (foundExtension == extension)
|
|
return fileEntry;
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
const PFS0FileEntry* RemoteNSP::GetFileEntryByName(std::string name)
|
|
{
|
|
for (unsigned int i = 0; i < this->GetBaseHeader()->numFiles; i++)
|
|
{
|
|
const PFS0FileEntry* fileEntry = this->GetFileEntry(i);
|
|
std::string foundName(this->GetFileEntryName(fileEntry));
|
|
|
|
if (foundName == name)
|
|
return fileEntry;
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
const PFS0FileEntry* RemoteNSP::GetFileEntryByNcaId(const NcmContentId& ncaId)
|
|
{
|
|
const PFS0FileEntry* fileEntry = nullptr;
|
|
std::string ncaIdStr = tin::util::GetNcaIdString(ncaId);
|
|
|
|
if ((fileEntry = this->GetFileEntryByName(ncaIdStr + ".nca")) == nullptr)
|
|
{
|
|
if ((fileEntry = this->GetFileEntryByName(ncaIdStr + ".cnmt.nca")) == nullptr)
|
|
{
|
|
if ((fileEntry = this->GetFileEntryByName(ncaIdStr + ".ncz")) == nullptr)
|
|
{
|
|
if ((fileEntry = this->GetFileEntryByName(ncaIdStr + ".cnmt.ncz")) == nullptr)
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return fileEntry;
|
|
}
|
|
|
|
const char* RemoteNSP::GetFileEntryName(const PFS0FileEntry* fileEntry)
|
|
{
|
|
u64 stringTableStart = sizeof(PFS0BaseHeader) + this->GetBaseHeader()->numFiles * sizeof(PFS0FileEntry);
|
|
return reinterpret_cast<const char*>(m_headerBytes.data() + stringTableStart + fileEntry->stringTableOffset);
|
|
}
|
|
|
|
const PFS0BaseHeader* RemoteNSP::GetBaseHeader()
|
|
{
|
|
if (m_headerBytes.empty())
|
|
THROW_FORMAT("Cannot retrieve header as header bytes are empty. Have you retrieved it yet?\n");
|
|
|
|
return reinterpret_cast<PFS0BaseHeader*>(m_headerBytes.data());
|
|
}
|
|
|
|
u64 RemoteNSP::GetDataOffset()
|
|
{
|
|
if (m_headerBytes.empty())
|
|
THROW_FORMAT("Cannot get data offset as header is empty. Have you retrieved it yet?\n");
|
|
|
|
return m_headerBytes.size();
|
|
}
|
|
} |