2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-03-07 01:35:01 -07:00
|
|
|
|
2017-03-03 12:43:52 -07:00
|
|
|
#include "DiscIO/NANDContentLoader.h"
|
|
|
|
|
2015-12-19 11:46:01 -07:00
|
|
|
#include <algorithm>
|
|
|
|
#include <array>
|
2017-02-11 00:57:47 -07:00
|
|
|
#include <cinttypes>
|
2014-02-20 17:47:53 -07:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
|
|
|
#include <functional>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2014-02-17 03:18:15 -07:00
|
|
|
|
2016-11-27 03:56:22 -07:00
|
|
|
#include "Common/Align.h"
|
2014-09-07 19:06:58 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2017-02-12 03:50:35 -07:00
|
|
|
#include "Common/Crypto/AES.h"
|
2017-01-15 13:46:32 -07:00
|
|
|
#include "Common/File.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/FileUtil.h"
|
2016-06-24 02:43:46 -06:00
|
|
|
#include "Common/Logging/Log.h"
|
2015-09-26 15:13:07 -06:00
|
|
|
#include "Common/MsgHandler.h"
|
2014-02-20 17:47:53 -07:00
|
|
|
#include "Common/NandPaths.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/StringUtil.h"
|
2017-03-03 12:43:52 -07:00
|
|
|
#include "Common/Swap.h"
|
2017-03-13 05:33:50 -06:00
|
|
|
// TODO: kill this dependency.
|
|
|
|
#include "Core/IOS/ES/Formats.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
|
|
|
|
#include "DiscIO/WiiWad.h"
|
2009-03-07 01:35:01 -07:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2017-06-06 03:49:01 -06:00
|
|
|
NANDContentData::~NANDContentData() = default;
|
2016-09-09 22:38:04 -06:00
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
NANDContentDataFile::NANDContentDataFile(const std::string& filename) : m_filename{filename}
|
2016-10-14 18:12:16 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
NANDContentDataFile::~NANDContentDataFile() = default;
|
2016-10-14 18:12:16 -06:00
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
void NANDContentDataFile::EnsureOpen()
|
2016-03-20 06:09:21 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
if (!m_file)
|
|
|
|
m_file = std::make_unique<File::IOFile>(m_filename, "rb");
|
|
|
|
else if (!m_file->IsOpen())
|
|
|
|
m_file->Open(m_filename, "rb");
|
2016-03-20 06:09:21 -06:00
|
|
|
}
|
2017-06-06 03:49:01 -06:00
|
|
|
void NANDContentDataFile::Open()
|
2016-03-20 06:09:21 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
EnsureOpen();
|
2016-03-20 06:09:21 -06:00
|
|
|
}
|
2017-06-06 03:49:01 -06:00
|
|
|
std::vector<u8> NANDContentDataFile::Get()
|
2016-03-16 13:08:37 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
EnsureOpen();
|
2016-09-14 17:41:38 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
if (!m_file->IsGood())
|
2016-09-14 17:41:38 -06:00
|
|
|
return {};
|
2016-03-16 13:08:37 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
u64 size = m_file->GetSize();
|
|
|
|
if (size == 0)
|
2016-09-14 17:41:38 -06:00
|
|
|
return {};
|
2016-03-16 13:08:37 -06:00
|
|
|
|
2016-09-14 17:41:38 -06:00
|
|
|
std::vector<u8> result(size);
|
2016-06-24 02:43:46 -06:00
|
|
|
m_file->ReadBytes(result.data(), result.size());
|
2016-03-16 13:08:37 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
return result;
|
2016-03-16 13:08:37 -06:00
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
bool NANDContentDataFile::GetRange(u32 start, u32 size, u8* buffer)
|
2016-03-16 13:08:37 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
EnsureOpen();
|
|
|
|
if (!m_file->IsGood())
|
|
|
|
return false;
|
2016-03-16 13:08:37 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
if (!m_file->Seek(start, SEEK_SET))
|
|
|
|
return false;
|
2016-03-16 13:08:37 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
return m_file->ReadBytes(buffer, static_cast<size_t>(size));
|
2016-03-20 06:09:21 -06:00
|
|
|
}
|
2017-06-06 03:49:01 -06:00
|
|
|
void NANDContentDataFile::Close()
|
2016-03-20 06:09:21 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
if (m_file && m_file->IsOpen())
|
|
|
|
m_file->Close();
|
2016-03-16 13:08:37 -06:00
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
bool NANDContentDataBuffer::GetRange(u32 start, u32 size, u8* buffer)
|
2016-03-16 13:08:37 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
if (start + size > m_buffer.size())
|
|
|
|
return false;
|
2016-03-16 13:08:37 -06:00
|
|
|
|
2017-01-23 13:49:26 -07:00
|
|
|
std::copy_n(&m_buffer[start], size, buffer);
|
2016-06-24 02:43:46 -06:00
|
|
|
return true;
|
2016-03-16 13:08:37 -06:00
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
NANDContentLoader::NANDContentLoader(const std::string& content_name, Common::FromWhichRoot from)
|
2017-05-26 13:29:15 -06:00
|
|
|
: m_root(from)
|
2009-03-07 01:35:01 -07:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
m_Valid = Initialize(content_name);
|
2009-03-07 01:35:01 -07:00
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
NANDContentLoader::~NANDContentLoader()
|
2009-03-07 01:35:01 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
bool NANDContentLoader::IsValid() const
|
2017-02-14 05:15:02 -07:00
|
|
|
{
|
2017-03-01 15:58:38 -07:00
|
|
|
return m_Valid;
|
2017-02-14 05:15:02 -07:00
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
const NANDContent* NANDContentLoader::GetContentByID(u32 id) const
|
2017-02-24 17:03:22 -07:00
|
|
|
{
|
|
|
|
const auto iterator = std::find_if(m_Content.begin(), m_Content.end(), [id](const auto& content) {
|
|
|
|
return content.m_metadata.id == id;
|
|
|
|
});
|
|
|
|
return iterator != m_Content.end() ? &*iterator : nullptr;
|
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
const NANDContent* NANDContentLoader::GetContentByIndex(int index) const
|
2009-03-07 01:35:01 -07:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
for (auto& Content : m_Content)
|
|
|
|
{
|
2017-02-11 00:57:47 -07:00
|
|
|
if (Content.m_metadata.index == index)
|
2016-06-24 02:43:46 -06:00
|
|
|
{
|
|
|
|
return &Content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
2009-03-07 01:35:01 -07:00
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
bool NANDContentLoader::Initialize(const std::string& name)
|
2009-03-07 01:35:01 -07:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
if (name.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
m_Path = name;
|
|
|
|
|
|
|
|
WiiWAD wad(name);
|
|
|
|
std::vector<u8> data_app;
|
|
|
|
|
|
|
|
if (wad.IsValid())
|
|
|
|
{
|
|
|
|
m_IsWAD = true;
|
2017-02-09 06:07:36 -07:00
|
|
|
m_ticket = wad.GetTicket();
|
2017-02-11 00:57:47 -07:00
|
|
|
m_tmd = wad.GetTMD();
|
2016-06-24 02:43:46 -06:00
|
|
|
data_app = wad.GetDataApp();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string tmd_filename(m_Path);
|
|
|
|
|
|
|
|
if (tmd_filename.back() == '/')
|
|
|
|
tmd_filename += "title.tmd";
|
|
|
|
else
|
|
|
|
m_Path = tmd_filename.substr(0, tmd_filename.find("title.tmd"));
|
|
|
|
|
|
|
|
File::IOFile tmd_file(tmd_filename, "rb");
|
|
|
|
if (!tmd_file)
|
|
|
|
{
|
|
|
|
WARN_LOG(DISCIO, "CreateFromDirectory: error opening %s", tmd_filename.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-06-29 03:20:38 -06:00
|
|
|
std::vector<u8> bytes(tmd_file.GetSize());
|
2017-02-11 00:57:47 -07:00
|
|
|
tmd_file.ReadBytes(bytes.data(), bytes.size());
|
|
|
|
m_tmd.SetBytes(std::move(bytes));
|
2016-06-24 02:43:46 -06:00
|
|
|
|
2017-02-11 00:57:47 -07:00
|
|
|
m_ticket = FindSignedTicket(m_tmd.GetTitleId());
|
|
|
|
}
|
2017-02-09 06:07:36 -07:00
|
|
|
|
2017-02-11 00:57:47 -07:00
|
|
|
InitializeContentEntries(data_app);
|
2016-06-24 02:43:46 -06:00
|
|
|
return true;
|
2015-12-19 11:46:01 -07:00
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
void NANDContentLoader::InitializeContentEntries(const std::vector<u8>& data_app)
|
2015-12-19 11:46:01 -07:00
|
|
|
{
|
2017-02-11 00:57:47 -07:00
|
|
|
if (!m_ticket.IsValid())
|
|
|
|
{
|
|
|
|
ERROR_LOG(IOS_ES, "No valid ticket for title %016" PRIx64, m_tmd.GetTitleId());
|
|
|
|
return;
|
|
|
|
}
|
2009-07-03 16:34:51 -06:00
|
|
|
|
2017-02-11 00:57:47 -07:00
|
|
|
const std::vector<IOS::ES::Content> contents = m_tmd.GetContents();
|
|
|
|
m_Content.resize(contents.size());
|
2011-05-08 23:47:29 -06:00
|
|
|
|
2017-02-11 00:57:47 -07:00
|
|
|
u32 data_app_offset = 0;
|
2017-06-26 15:38:58 -06:00
|
|
|
const std::array<u8, 16> title_key = m_ticket.GetTitleKey();
|
2017-05-26 13:29:15 -06:00
|
|
|
IOS::ES::SharedContentMap shared_content{m_root};
|
2017-02-10 14:46:38 -07:00
|
|
|
|
2017-02-11 00:57:47 -07:00
|
|
|
for (size_t i = 0; i < contents.size(); ++i)
|
2016-06-24 02:43:46 -06:00
|
|
|
{
|
2017-02-11 00:57:47 -07:00
|
|
|
const auto& content = contents.at(i);
|
2013-04-16 21:14:36 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
if (m_IsWAD)
|
|
|
|
{
|
2017-02-11 00:57:47 -07:00
|
|
|
// The content index is used as IV (2 bytes); the remaining 14 bytes are zeroes.
|
|
|
|
std::array<u8, 16> iv{};
|
|
|
|
iv[0] = static_cast<u8>(content.index >> 8) & 0xFF;
|
|
|
|
iv[1] = static_cast<u8>(content.index) & 0xFF;
|
2011-05-08 23:47:29 -06:00
|
|
|
|
2017-02-11 00:57:47 -07:00
|
|
|
u32 rounded_size = Common::AlignUp(static_cast<u32>(content.size), 0x40);
|
2015-12-19 11:46:01 -07:00
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
m_Content[i].m_Data = std::make_unique<NANDContentDataBuffer>(Common::AES::Decrypt(
|
2017-02-11 00:57:47 -07:00
|
|
|
title_key.data(), iv.data(), &data_app[data_app_offset], rounded_size));
|
2016-06-24 02:43:46 -06:00
|
|
|
data_app_offset += rounded_size;
|
|
|
|
}
|
|
|
|
else
|
2017-02-11 00:57:47 -07:00
|
|
|
{
|
|
|
|
std::string filename;
|
2017-02-28 09:24:02 -07:00
|
|
|
if (content.IsShared())
|
2017-05-26 11:18:24 -06:00
|
|
|
filename = *shared_content.GetFilenameFromSHA1(content.sha1);
|
2017-02-11 00:57:47 -07:00
|
|
|
else
|
|
|
|
filename = StringFromFormat("%s/%08x.app", m_Path.c_str(), content.id);
|
2016-03-16 13:08:37 -06:00
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
m_Content[i].m_Data = std::make_unique<NANDContentDataFile>(filename);
|
2017-02-11 00:57:47 -07:00
|
|
|
}
|
2009-07-03 16:34:51 -06:00
|
|
|
|
2017-02-11 00:57:47 -07:00
|
|
|
m_Content[i].m_metadata = std::move(content);
|
2016-06-24 02:43:46 -06:00
|
|
|
}
|
2009-03-07 01:35:01 -07:00
|
|
|
}
|
2015-12-19 11:46:01 -07:00
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
NANDContentManager::~NANDContentManager()
|
2009-03-13 10:15:15 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
const NANDContentLoader& NANDContentManager::GetNANDLoader(const std::string& content_path,
|
|
|
|
Common::FromWhichRoot from)
|
2009-03-13 10:15:15 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
auto it = m_map.find(content_path);
|
|
|
|
if (it != m_map.end())
|
|
|
|
return *it->second;
|
|
|
|
return *m_map
|
2017-06-06 03:49:01 -06:00
|
|
|
.emplace_hint(it, std::make_pair(content_path, std::make_unique<NANDContentLoader>(
|
2017-05-26 13:29:15 -06:00
|
|
|
content_path, from)))
|
2016-06-24 02:43:46 -06:00
|
|
|
->second;
|
2009-03-13 10:15:15 -06:00
|
|
|
}
|
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
const NANDContentLoader& NANDContentManager::GetNANDLoader(u64 title_id, Common::FromWhichRoot from)
|
2010-09-05 22:36:58 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
std::string path = Common::GetTitleContentPath(title_id, from);
|
2017-05-26 13:29:15 -06:00
|
|
|
return GetNANDLoader(path, from);
|
2010-09-05 22:36:58 -06:00
|
|
|
}
|
2015-06-21 11:19:52 -06:00
|
|
|
|
2017-06-06 03:49:01 -06:00
|
|
|
void NANDContentManager::ClearCache()
|
2015-06-21 11:19:52 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
m_map.clear();
|
2011-03-04 22:18:21 -07:00
|
|
|
}
|
|
|
|
|
2017-02-11 00:57:47 -07:00
|
|
|
IOS::ES::TicketReader FindSignedTicket(u64 title_id)
|
2017-01-01 16:59:21 -07:00
|
|
|
{
|
|
|
|
std::string ticket_filename = Common::GetTicketFileName(title_id, Common::FROM_CONFIGURED_ROOT);
|
|
|
|
File::IOFile ticket_file(ticket_filename, "rb");
|
|
|
|
if (!ticket_file)
|
|
|
|
{
|
2017-02-11 00:57:47 -07:00
|
|
|
return IOS::ES::TicketReader{};
|
2017-01-01 16:59:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<u8> signed_ticket(ticket_file.GetSize());
|
|
|
|
if (!ticket_file.ReadBytes(signed_ticket.data(), signed_ticket.size()))
|
|
|
|
{
|
2017-02-11 00:57:47 -07:00
|
|
|
return IOS::ES::TicketReader{};
|
2017-01-01 16:59:21 -07:00
|
|
|
}
|
|
|
|
|
2017-02-11 00:57:47 -07:00
|
|
|
return IOS::ES::TicketReader{std::move(signed_ticket)};
|
2017-01-01 21:32:08 -07:00
|
|
|
}
|
2016-06-24 02:43:46 -06:00
|
|
|
} // namespace end
|