nstool/lib/libnx/source/NcaHeader.cpp

324 lines
6.9 KiB
C++
Raw Normal View History

#include <nx/NcaHeader.h>
2017-07-05 08:57:14 +00:00
2017-07-06 11:17:21 +00:00
using namespace nx;
2017-07-05 08:57:14 +00:00
void NcaHeader::exportBinary()
{
mBinaryBlob.alloc(sizeof(sNcaHeader));
sNcaHeader* hdr = (sNcaHeader*)mBinaryBlob.getBytes();
2018-03-18 09:08:42 +00:00
switch(mFormatVersion)
{
case (NCA2_FORMAT):
strncpy(hdr->signature, kNca2Sig.c_str(), 4);
break;
case (NCA3_FORMAT):
strncpy(hdr->signature, kNca3Sig.c_str(), 4);
break;
default:
throw fnd::Exception(kModuleName, "Unsupported format version");
}
hdr->distribution_type = mDistributionType;
hdr->content_type = mContentType;
2018-03-18 09:08:42 +00:00
hdr->crypto_type = mCryptoType;
hdr->key_area_encryption_key_index = mKaekIndex;
hdr->nca_size = mNcaSize;
hdr->program_id = mProgramId;
hdr->content_index = mContentIndex;
hdr->sdk_addon_version = mSdkAddonVersion;
2018-03-18 09:08:42 +00:00
hdr->crypto_type_2 = 0;
// TODO: properly reconstruct NCA layout? atm in hands of user
for (size_t i = 0; i < mSections.getSize(); i++)
{
// determine section index
2018-03-22 05:26:22 +00:00
byte_t section = mSections.getSize() - 1 - i;
hdr->section[section].start = sizeToBlockNum(mSections[i].offset);
hdr->section[section].end = (sizeToBlockNum(mSections[i].offset) + sizeToBlockNum(mSections[i].size));
hdr->section[section].enabled = true;
hdr->section_hash[section] = mSections[i].hash;
}
for (size_t i = 0; i < kAesKeyNum; i++)
{
hdr->enc_aes_key[i] = mEncAesKeys[i];
}
2017-07-05 08:57:14 +00:00
}
2018-03-22 05:26:22 +00:00
void NcaHeader::importBinary(const byte_t * bytes, size_t len)
2017-07-05 08:57:14 +00:00
{
if (len < sizeof(sNcaHeader))
{
throw fnd::Exception(kModuleName, "NCA header size is too small");
}
clear();
mBinaryBlob.alloc(sizeof(sNcaHeader));
memcpy(mBinaryBlob.getBytes(), bytes, sizeof(sNcaHeader));
2017-07-05 08:57:14 +00:00
sNcaHeader* hdr = (sNcaHeader*)mBinaryBlob.getBytes();
2017-07-05 08:57:14 +00:00
2018-03-18 09:08:42 +00:00
if (memcmp(hdr->signature, kNca2Sig.c_str(), 4) == 0)
{
mFormatVersion = NCA2_FORMAT;
}
else if (memcmp(hdr->signature, kNca3Sig.c_str(), 4) == 0)
{
mFormatVersion = NCA3_FORMAT;
}
else
2017-07-05 08:57:14 +00:00
{
throw fnd::Exception(kModuleName, "NCA header corrupt");
}
mDistributionType = (DistributionType)hdr->distribution_type;
mContentType = (ContentType)hdr->content_type;
2018-03-18 09:08:42 +00:00
mCryptoType = MAX(hdr->crypto_type, hdr->crypto_type_2);
mKaekIndex = hdr->key_area_encryption_key_index;
mNcaSize = *hdr->nca_size;
mProgramId = *hdr->program_id;
mContentIndex = *hdr->content_index;
mSdkAddonVersion = *hdr->sdk_addon_version;
2017-07-05 08:57:14 +00:00
for (size_t i = 0; i < kSectionNum; i++)
{
// determine section index
2018-03-22 05:26:22 +00:00
byte_t section = kSectionNum - 1 - i;
2017-07-05 08:57:14 +00:00
// skip sections that don't exist
if (*hdr->section[section].start == 0 && *hdr->section[section].end == 0) continue;
2017-07-05 08:57:14 +00:00
// add high level struct
2018-03-18 09:08:42 +00:00
mSections.addElement({ blockNumToSize(*hdr->section[section].start), blockNumToSize(hdr->section[section].end.get() - hdr->section[section].start.get()), hdr->section_hash[section] });
2017-07-05 08:57:14 +00:00
}
for (size_t i = 0; i < kAesKeyNum; i++)
{
mEncAesKeys.addElement(hdr->enc_aes_key[i]);
2017-07-05 08:57:14 +00:00
}
}
void nx::NcaHeader::clear()
{
2018-03-18 09:08:42 +00:00
mFormatVersion = NCA3_FORMAT;
2017-07-18 14:17:32 +00:00
mDistributionType = DIST_DOWNLOAD;
mContentType = TYPE_PROGRAM;
2018-03-18 09:08:42 +00:00
mCryptoType = 0;
mKaekIndex = 0;
mNcaSize = 0;
mProgramId = 0;
2017-07-18 14:17:32 +00:00
mContentIndex = 0;
mSdkAddonVersion = 0;
mSections.clear();
2017-07-18 14:17:32 +00:00
mEncAesKeys.clear();
}
2018-03-18 09:08:42 +00:00
nx::NcaHeader::FormatVersion nx::NcaHeader::getFormatVersion() const
{
return mFormatVersion;
}
void nx::NcaHeader::setFormatVersion(FormatVersion version)
{
mFormatVersion = version;
}
2017-07-18 14:17:32 +00:00
nx::NcaHeader::DistributionType nx::NcaHeader::getDistributionType() const
{
return mDistributionType;
}
void nx::NcaHeader::setDistributionType(DistributionType type)
{
mDistributionType = type;
}
nx::NcaHeader::ContentType nx::NcaHeader::getContentType() const
{
return mContentType;
}
void nx::NcaHeader::setContentType(ContentType type)
{
mContentType = type;
}
2018-03-18 09:08:42 +00:00
byte_t nx::NcaHeader::getCryptoType() const
2017-07-18 14:17:32 +00:00
{
2018-03-18 09:08:42 +00:00
return mCryptoType;
2017-07-18 14:17:32 +00:00
}
2018-03-18 09:08:42 +00:00
void nx::NcaHeader::setCryptoType(byte_t type)
2017-07-18 14:17:32 +00:00
{
2018-03-18 09:08:42 +00:00
mCryptoType = type;
2017-07-18 14:17:32 +00:00
}
2018-03-18 09:08:42 +00:00
byte_t nx::NcaHeader::getKaekIndex() const
2017-07-18 14:17:32 +00:00
{
2018-03-18 09:08:42 +00:00
return mKaekIndex;
2017-07-18 14:17:32 +00:00
}
2018-03-18 09:08:42 +00:00
void nx::NcaHeader::setKaekIndex(byte_t index)
2017-07-18 14:17:32 +00:00
{
2018-03-18 09:08:42 +00:00
mKaekIndex = index;
}
2018-03-22 05:26:22 +00:00
uint64_t NcaHeader::getNcaSize() const
2017-07-05 08:57:14 +00:00
{
return mNcaSize;
2017-07-05 08:57:14 +00:00
}
2018-03-22 05:26:22 +00:00
void NcaHeader::setNcaSize(uint64_t size)
2017-07-05 08:57:14 +00:00
{
mNcaSize = size;
2017-07-05 08:57:14 +00:00
}
2018-03-22 05:26:22 +00:00
uint64_t NcaHeader::getProgramId() const
2017-07-05 08:57:14 +00:00
{
return mProgramId;
2017-07-05 08:57:14 +00:00
}
2018-03-22 05:26:22 +00:00
void NcaHeader::setProgramId(uint64_t program_id)
2017-07-05 08:57:14 +00:00
{
mProgramId = program_id;
2017-07-05 08:57:14 +00:00
}
2018-03-22 05:26:22 +00:00
uint32_t nx::NcaHeader::getContentIndex() const
2017-07-18 14:17:32 +00:00
{
return mContentIndex;
}
2018-03-22 05:26:22 +00:00
void nx::NcaHeader::setContentIndex(uint32_t index)
2017-07-18 14:17:32 +00:00
{
mContentIndex = index;
}
2018-03-22 05:26:22 +00:00
uint32_t nx::NcaHeader::getSdkAddonVersion() const
2017-07-18 14:17:32 +00:00
{
return mSdkAddonVersion;
}
2018-03-22 05:26:22 +00:00
void nx::NcaHeader::setSdkAddonVersion(uint32_t version)
2017-07-05 08:57:14 +00:00
{
2017-07-18 14:17:32 +00:00
mSdkAddonVersion = version;
2017-07-05 08:57:14 +00:00
}
const fnd::List<NcaHeader::sSection>& NcaHeader::getSections() const
2017-07-05 08:57:14 +00:00
{
return mSections;
2017-07-05 08:57:14 +00:00
}
void NcaHeader::addSection(const sSection & section)
{
if (mSections.getSize() >= kSectionNum)
2017-07-05 08:57:14 +00:00
{
throw fnd::Exception(kModuleName, "Too many NCA sections");
}
mSections.addElement(section);
2017-07-05 08:57:14 +00:00
}
2017-07-18 14:17:32 +00:00
const fnd::List<crypto::aes::sAes128Key>& NcaHeader::getEncAesKeys() const
2017-07-05 08:57:14 +00:00
{
2017-07-18 14:17:32 +00:00
return mEncAesKeys;
2017-07-05 08:57:14 +00:00
}
2017-07-18 14:17:32 +00:00
void NcaHeader::addEncAesKey(const crypto::aes::sAes128Key & key)
2017-07-05 08:57:14 +00:00
{
2017-07-18 14:17:32 +00:00
if (mEncAesKeys.getSize() >= kAesKeyNum)
2017-07-05 08:57:14 +00:00
{
throw fnd::Exception(kModuleName, "Too many NCA aes keys");
}
2017-07-18 14:17:32 +00:00
mEncAesKeys.addElement(key);
2017-07-05 08:57:14 +00:00
}
2018-03-22 05:26:22 +00:00
uint64_t NcaHeader::blockNumToSize(uint32_t block_num) const
2017-07-05 08:57:14 +00:00
{
2017-07-18 14:17:32 +00:00
return block_num*kBlockSize;
2017-07-05 08:57:14 +00:00
}
2018-03-22 05:26:22 +00:00
uint32_t NcaHeader::sizeToBlockNum(uint64_t real_size) const
2017-07-05 08:57:14 +00:00
{
2017-07-18 14:17:32 +00:00
return align(real_size, kBlockSize)/kBlockSize;
2017-07-05 08:57:14 +00:00
}
bool NcaHeader::isEqual(const NcaHeader & other) const
{
2017-07-18 14:17:32 +00:00
return (mDistributionType == other.mDistributionType) \
&& (mContentType == other.mContentType) \
2018-03-18 09:08:42 +00:00
&& (mCryptoType == other.mCryptoType) \
&& (mKaekIndex == other.mKaekIndex) \
&& (mNcaSize == other.mNcaSize) \
&& (mProgramId == other.mProgramId) \
2017-07-18 14:17:32 +00:00
&& (mContentIndex == other.mContentIndex) \
&& (mSdkAddonVersion == other.mSdkAddonVersion) \
&& (mSections == other.mSections) \
2017-07-18 14:17:32 +00:00
&& (mEncAesKeys == other.mEncAesKeys);
}
void NcaHeader::copyFrom(const NcaHeader & other)
{
if (other.getSize())
{
importBinary(other.getBytes(), other.getSize());
}
else
{
2017-07-18 14:17:32 +00:00
mBinaryBlob.clear();
mDistributionType = other.mDistributionType;
mContentType = other.mContentType;
2018-03-18 09:08:42 +00:00
mCryptoType = other.mCryptoType;
mKaekIndex = other.mKaekIndex;
mNcaSize = other.mNcaSize;
mProgramId = other.mProgramId;
2017-07-18 14:17:32 +00:00
mContentIndex = other.mContentIndex;
mSdkAddonVersion = other.mSdkAddonVersion;
mSections = other.mSections;
2017-07-18 14:17:32 +00:00
mEncAesKeys = other.mEncAesKeys;
}
}
2017-07-05 08:57:14 +00:00
NcaHeader::NcaHeader()
{
clear();
2017-07-05 08:57:14 +00:00
}
NcaHeader::NcaHeader(const NcaHeader & other)
{
copyFrom(other);
2017-07-05 08:57:14 +00:00
}
2018-03-22 05:26:22 +00:00
NcaHeader::NcaHeader(const byte_t * bytes, size_t len)
2017-07-05 08:57:14 +00:00
{
importBinary(bytes, len);
2017-07-05 08:57:14 +00:00
}
bool NcaHeader::operator==(const NcaHeader & other) const
{
return isEqual(other);
}
bool NcaHeader::operator!=(const NcaHeader & other) const
{
return !isEqual(other);
}
void NcaHeader::operator=(const NcaHeader & other)
{
this->importBinary(other.getBytes(), other.getSize());
}
2018-03-22 05:26:22 +00:00
const byte_t * NcaHeader::getBytes() const
2017-07-05 08:57:14 +00:00
{
return mBinaryBlob.getBytes();
2017-07-05 08:57:14 +00:00
}
size_t NcaHeader::getSize() const
{
return mBinaryBlob.getSize();
2017-07-05 08:57:14 +00:00
}