2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <cstddef>
|
2009-07-06 02:10:26 +00:00
|
|
|
#include <string>
|
2015-06-21 17:19:52 +00:00
|
|
|
#include <unordered_map>
|
2009-07-06 02:10:26 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2015-06-21 17:19:52 +00:00
|
|
|
#include "Common/NandPaths.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2015-12-19 18:46:01 +00:00
|
|
|
bool AddTicket(u64 title_id, const std::vector<u8>& ticket);
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
struct SNANDContent
|
|
|
|
{
|
2013-03-19 13:59:41 +00:00
|
|
|
u32 m_ContentID;
|
|
|
|
u16 m_Index;
|
|
|
|
u16 m_Type;
|
|
|
|
u32 m_Size;
|
|
|
|
u8 m_SHA1Hash[20];
|
|
|
|
u8 m_Header[36]; //all of the above
|
|
|
|
|
2013-08-29 22:25:12 +00:00
|
|
|
std::string m_Filename;
|
2015-12-19 18:46:01 +00:00
|
|
|
std::vector<u8> m_data;
|
2009-07-06 02:10:26 +00:00
|
|
|
};
|
|
|
|
|
2015-06-21 17:19:52 +00:00
|
|
|
// Instances of this class must be created by CNANDContentManager
|
|
|
|
class CNANDContentLoader final
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-06-21 17:19:52 +00:00
|
|
|
CNANDContentLoader(const std::string& _rName);
|
|
|
|
virtual ~CNANDContentLoader();
|
|
|
|
|
|
|
|
bool IsValid() const { return m_Valid; }
|
|
|
|
void RemoveTitle() const;
|
|
|
|
u64 GetTitleID() const { return m_TitleID; }
|
|
|
|
u16 GetIosVersion() const { return m_IosVersion; }
|
|
|
|
u32 GetBootIndex() const { return m_BootIndex; }
|
|
|
|
size_t GetContentSize() const { return m_Content.size(); }
|
2015-12-19 18:46:01 +00:00
|
|
|
const SNANDContent* GetContentByIndex(int index) const;
|
2015-06-21 17:19:52 +00:00
|
|
|
const u8* GetTMDView() const { return m_TMDView; }
|
|
|
|
const u8* GetTMDHeader() const { return m_TMDHeader; }
|
2015-12-19 18:46:01 +00:00
|
|
|
const std::vector<u8>& GetTicket() const { return m_ticket; }
|
2015-06-21 17:19:52 +00:00
|
|
|
|
|
|
|
const std::vector<SNANDContent>& GetContent() const { return m_Content; }
|
|
|
|
|
|
|
|
u16 GetTitleVersion() const {return m_TitleVersion;}
|
|
|
|
u16 GetNumEntries() const {return m_numEntries;}
|
|
|
|
DiscIO::IVolume::ECountry GetCountry() const;
|
|
|
|
u8 GetCountryChar() const {return m_Country; }
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-03-19 13:59:41 +00:00
|
|
|
enum
|
|
|
|
{
|
2014-02-09 21:03:16 +00:00
|
|
|
TMD_VIEW_SIZE = 0x58,
|
|
|
|
TMD_HEADER_SIZE = 0x1E4,
|
2011-05-09 05:47:29 +00:00
|
|
|
CONTENT_HEADER_SIZE = 0x24,
|
2014-02-09 21:03:16 +00:00
|
|
|
TICKET_SIZE = 0x2A4
|
2013-03-19 13:59:41 +00:00
|
|
|
};
|
2015-06-21 17:19:52 +00:00
|
|
|
|
|
|
|
private:
|
2015-12-19 18:46:01 +00:00
|
|
|
bool Initialize(const std::string& name);
|
|
|
|
void InitializeContentEntries(const std::vector<u8>& tmd, const std::vector<u8>& decrypted_title_key, const std::vector<u8>& data_app);
|
|
|
|
|
|
|
|
static std::vector<u8> AESDecode(const u8* key, u8* iv, const u8* src, u32 size);
|
|
|
|
static std::vector<u8> GetKeyFromTicket(const std::vector<u8>& ticket);
|
|
|
|
|
2015-06-21 17:19:52 +00:00
|
|
|
bool m_Valid;
|
|
|
|
bool m_isWAD;
|
|
|
|
std::string m_Path;
|
|
|
|
u64 m_TitleID;
|
|
|
|
u16 m_IosVersion;
|
|
|
|
u32 m_BootIndex;
|
|
|
|
u16 m_numEntries;
|
|
|
|
u16 m_TitleVersion;
|
|
|
|
u8 m_TMDView[TMD_VIEW_SIZE];
|
|
|
|
u8 m_TMDHeader[TMD_HEADER_SIZE];
|
2015-12-19 18:46:01 +00:00
|
|
|
std::vector<u8> m_ticket;
|
2015-06-21 17:19:52 +00:00
|
|
|
u8 m_Country;
|
|
|
|
|
|
|
|
std::vector<SNANDContent> m_Content;
|
2009-07-06 02:10:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-03-09 15:08:32 +00:00
|
|
|
// we open the NAND Content files too often... let's cache them
|
2009-07-06 02:10:26 +00:00
|
|
|
class CNANDContentManager
|
|
|
|
{
|
|
|
|
public:
|
2015-03-09 15:08:32 +00:00
|
|
|
static CNANDContentManager& Access() { static CNANDContentManager instance; return instance; }
|
2015-05-29 00:28:48 +00:00
|
|
|
u64 Install_WiiWAD(const std::string& fileName);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2015-06-21 17:19:52 +00:00
|
|
|
const CNANDContentLoader& GetNANDLoader(const std::string& content_path);
|
|
|
|
const CNANDContentLoader& GetNANDLoader(u64 title_id, Common::FromWhichRoot from);
|
|
|
|
bool RemoveTitle(u64 titl_id, Common::FromWhichRoot from);
|
|
|
|
void ClearCache();
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-06-03 05:08:54 +00:00
|
|
|
private:
|
2014-09-11 17:00:40 +00:00
|
|
|
CNANDContentManager() {}
|
2013-03-19 13:59:41 +00:00
|
|
|
~CNANDContentManager();
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2015-03-09 15:08:32 +00:00
|
|
|
CNANDContentManager(CNANDContentManager const&) = delete;
|
|
|
|
void operator=(CNANDContentManager const&) = delete;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2015-06-21 17:19:52 +00:00
|
|
|
std::unordered_map<std::string, std::unique_ptr<CNANDContentLoader>> m_map;
|
2009-07-06 02:10:26 +00:00
|
|
|
};
|
|
|
|
|
2010-05-13 04:50:18 +00:00
|
|
|
class CSharedContent
|
|
|
|
{
|
|
|
|
public:
|
2015-03-09 15:08:32 +00:00
|
|
|
static CSharedContent& AccessInstance() { static CSharedContent instance; return instance; }
|
2010-05-13 04:50:18 +00:00
|
|
|
|
2013-08-29 22:25:12 +00:00
|
|
|
std::string GetFilenameFromSHA1(const u8* _pHash);
|
|
|
|
std::string AddSharedContent(const u8* _pHash);
|
2011-06-05 07:42:40 +00:00
|
|
|
void UpdateLocation();
|
2010-05-13 04:50:18 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
CSharedContent();
|
|
|
|
virtual ~CSharedContent();
|
|
|
|
|
2015-03-09 15:08:32 +00:00
|
|
|
CSharedContent(CSharedContent const&) = delete;
|
|
|
|
void operator=(CSharedContent const&) = delete;
|
|
|
|
|
2010-05-13 04:50:18 +00:00
|
|
|
#pragma pack(push,1)
|
|
|
|
struct SElement
|
|
|
|
{
|
|
|
|
u8 FileName[8];
|
|
|
|
u8 SHA1Hash[20];
|
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
2014-09-01 19:48:02 +00:00
|
|
|
u32 m_lastID;
|
|
|
|
std::string m_contentMap;
|
2010-05-13 04:50:18 +00:00
|
|
|
std::vector<SElement> m_Elements;
|
|
|
|
};
|
|
|
|
|
|
|
|
class cUIDsys
|
|
|
|
{
|
|
|
|
public:
|
2015-03-09 15:08:32 +00:00
|
|
|
static cUIDsys& AccessInstance() { static cUIDsys instance; return instance; }
|
2010-05-13 04:50:18 +00:00
|
|
|
|
|
|
|
u32 GetUIDFromTitle(u64 _Title);
|
2011-05-09 05:47:29 +00:00
|
|
|
void AddTitle(u64 _Title);
|
2010-09-07 06:06:08 +00:00
|
|
|
void GetTitleIDs(std::vector<u64>& _TitleIDs, bool _owned = false);
|
2011-06-05 07:42:40 +00:00
|
|
|
void UpdateLocation();
|
2010-05-13 04:50:18 +00:00
|
|
|
|
2014-06-03 05:08:54 +00:00
|
|
|
private:
|
2010-05-13 04:50:18 +00:00
|
|
|
cUIDsys();
|
|
|
|
virtual ~cUIDsys();
|
|
|
|
|
2015-03-09 15:08:32 +00:00
|
|
|
cUIDsys(cUIDsys const&) = delete;
|
|
|
|
void operator=(cUIDsys const&) = delete;
|
|
|
|
|
2010-05-13 04:50:18 +00:00
|
|
|
#pragma pack(push,1)
|
|
|
|
struct SElement
|
|
|
|
{
|
|
|
|
u8 titleID[8];
|
|
|
|
u8 UID[4];
|
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
2014-06-03 05:08:54 +00:00
|
|
|
|
2014-09-01 19:48:02 +00:00
|
|
|
u32 m_lastUID;
|
|
|
|
std::string m_uidSys;
|
2010-05-13 04:50:18 +00:00
|
|
|
std::vector<SElement> m_Elements;
|
|
|
|
};
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|