mirror of
https://github.com/jakcron/nstool
synced 2024-11-23 05:59:29 +00:00
300 lines
8.2 KiB
C++
300 lines
8.2 KiB
C++
#include <nx/ContentMetaBinary.h>
|
|
|
|
nx::ContentMetaBinary::ContentMetaBinary()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
nx::ContentMetaBinary::ContentMetaBinary(const ContentMetaBinary & other)
|
|
{
|
|
copyFrom(other);
|
|
}
|
|
|
|
nx::ContentMetaBinary::ContentMetaBinary(const byte_t * bytes, size_t len)
|
|
{
|
|
importBinary(bytes, len);
|
|
}
|
|
|
|
const byte_t * nx::ContentMetaBinary::getBytes() const
|
|
{
|
|
return mBinaryBlob.getBytes();
|
|
}
|
|
|
|
size_t nx::ContentMetaBinary::getSize() const
|
|
{
|
|
return mBinaryBlob.getSize();
|
|
}
|
|
|
|
void nx::ContentMetaBinary::exportBinary()
|
|
{
|
|
throw fnd::Exception(kModuleName, "exportBinary() not implemented");
|
|
}
|
|
|
|
void nx::ContentMetaBinary::importBinary(const byte_t * bytes, size_t len)
|
|
{
|
|
// clear member variables
|
|
clear();
|
|
|
|
// validate layout
|
|
validateBinary(bytes, len);
|
|
|
|
// get pointer to header structure
|
|
const sContentMetaHeader* hdr = (const sContentMetaHeader*)bytes;
|
|
|
|
mTitleId = hdr->id.get();
|
|
mTitleVersion = hdr->version.get();
|
|
mType = (cmnt::ContentMetaType)hdr->type;
|
|
mAttributes = hdr->attributes;
|
|
mRequiredSystemVersion = hdr->required_system_version.get();
|
|
size_t exdata_size = 0;
|
|
|
|
// save exheader
|
|
if (hdr->exhdr_size.get() > 0)
|
|
{
|
|
mExtendedHeader.alloc(hdr->exhdr_size.get());
|
|
memcpy(mExtendedHeader.getBytes(), bytes + getExtendedHeaderOffset(), hdr->exhdr_size.get());
|
|
|
|
exdata_size = getExtendedDataSize(mType, mExtendedHeader.getBytes());
|
|
}
|
|
|
|
// save content info
|
|
if (hdr->content_count.get() > 0)
|
|
{
|
|
const sContentInfo* info = (const sContentInfo*)(bytes + getContentInfoOffset(hdr->exhdr_size.get()));
|
|
for (size_t i = 0; i < hdr->content_count.get(); i++)
|
|
{
|
|
mContentInfo[i].hash = info[i].content_hash;
|
|
memcpy(mContentInfo[i].nca_id, info[i].content_id, cmnt::kContentIdLen);
|
|
mContentInfo[i].size = (uint64_t)(info[i].size_lower.get()) | (uint64_t)(info[i].size_higher.get()) << 32;
|
|
mContentInfo[i].type = (cmnt::ContentType)info[i].content_type;
|
|
}
|
|
}
|
|
|
|
// save content meta info
|
|
if (hdr->content_meta_count.get() > 0)
|
|
{
|
|
const sContentMetaInfo* info = (const sContentMetaInfo*)(bytes + getContentMetaInfoOffset(hdr->exhdr_size.get(), hdr->content_count.get()));
|
|
for (size_t i = 0; i < hdr->content_meta_count.get(); i++)
|
|
{
|
|
mContentMetaInfo[i].id = info[i].id.get();
|
|
mContentMetaInfo[i].version = info[i].version.get();
|
|
mContentMetaInfo[i].type = (cmnt::ContentMetaType)info[i].type;
|
|
mContentMetaInfo[i].attributes = info[i].attributes;
|
|
}
|
|
}
|
|
|
|
// save exdata
|
|
if (exdata_size > 0)
|
|
{
|
|
mExtendedData.alloc(exdata_size);
|
|
memcpy(mExtendedData.getBytes(), bytes + getExtendedDataOffset(hdr->exhdr_size.get(), hdr->content_count.get(), hdr->content_meta_count.get()), exdata_size);
|
|
}
|
|
|
|
// save digest
|
|
memcpy(mDigest.data, bytes + getDigestOffset(hdr->exhdr_size.get(), hdr->content_count.get(), hdr->content_meta_count.get(), exdata_size), cmnt::kDigestLen);
|
|
|
|
}
|
|
|
|
void nx::ContentMetaBinary::clear()
|
|
{
|
|
mBinaryBlob.clear();
|
|
mTitleId = 0;
|
|
mTitleVersion = 0;
|
|
mType = cmnt::METATYPE_SYSTEM_PROGRAM;
|
|
mAttributes = cmnt::ATTRIBUTE_NONE;
|
|
mRequiredSystemVersion = 0;
|
|
mExtendedHeader.clear();
|
|
mContentInfo.clear();
|
|
mContentMetaInfo.clear();
|
|
mExtendedData.clear();
|
|
memset(mDigest.data, 0, cmnt::kDigestLen);
|
|
}
|
|
|
|
uint64_t nx::ContentMetaBinary::getTitleId() const
|
|
{
|
|
return mTitleId;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::setTitleId(uint64_t title_id)
|
|
{
|
|
mTitleId = title_id;
|
|
}
|
|
|
|
uint32_t nx::ContentMetaBinary::getTitleVersion() const
|
|
{
|
|
return mTitleVersion;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::setTitleVersion(uint32_t version)
|
|
{
|
|
mTitleVersion = version;
|
|
}
|
|
|
|
nx::cmnt::ContentMetaType nx::ContentMetaBinary::getType() const
|
|
{
|
|
return mType;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::setType(cmnt::ContentMetaType type)
|
|
{
|
|
mType = type;
|
|
}
|
|
|
|
byte_t nx::ContentMetaBinary::getAttributes() const
|
|
{
|
|
return mAttributes;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::setAttributes(byte_t attributes)
|
|
{
|
|
mAttributes = attributes;
|
|
}
|
|
|
|
uint32_t nx::ContentMetaBinary::getRequiredSystemVersion() const
|
|
{
|
|
return mRequiredSystemVersion;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::setRequiredSystemVersion(uint32_t version)
|
|
{
|
|
mRequiredSystemVersion = version;
|
|
}
|
|
|
|
const fnd::List<nx::ContentMetaBinary::ContentInfo>& nx::ContentMetaBinary::getContentInfo() const
|
|
{
|
|
return mContentInfo;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::setContentInfo(const fnd::List<nx::ContentMetaBinary::ContentInfo>& info)
|
|
{
|
|
mContentInfo = info;
|
|
}
|
|
|
|
const fnd::List<nx::ContentMetaBinary::ContentMetaInfo>& nx::ContentMetaBinary::getContentMetaInfo() const
|
|
{
|
|
return mContentMetaInfo;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::setContentMetaInfo(const fnd::List<nx::ContentMetaBinary::ContentMetaInfo>& info)
|
|
{
|
|
mContentMetaInfo = info;
|
|
}
|
|
|
|
const fnd::MemoryBlob & nx::ContentMetaBinary::getExtendedData() const
|
|
{
|
|
return mExtendedData;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::setExtendedData(const fnd::MemoryBlob & data)
|
|
{
|
|
mExtendedData = data;
|
|
}
|
|
|
|
const nx::sDigest & nx::ContentMetaBinary::getDigest() const
|
|
{
|
|
return mDigest;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::setDigest(const nx::sDigest & digest)
|
|
{
|
|
|
|
memcpy(mDigest.data, digest.data, cmnt::kDigestLen);
|
|
}
|
|
|
|
bool nx::ContentMetaBinary::validateExtendedHeaderSize(cmnt::ContentMetaType type, size_t exhdrSize)
|
|
{
|
|
bool validSize = false;
|
|
|
|
if (type == cmnt::METATYPE_APPLICATION && exhdrSize == sizeof(sApplicationMetaExtendedHeader))
|
|
validSize = true;
|
|
else if (type == cmnt::METATYPE_PATCH && exhdrSize == sizeof(sPatchMetaExtendedHeader))
|
|
validSize = true;
|
|
else if (type == cmnt::METATYPE_ADD_ON_CONTENT && exhdrSize == sizeof(sAddOnContentMetaExtendedHeader))
|
|
validSize = true;
|
|
else if (type == cmnt::METATYPE_DELTA && exhdrSize == sizeof(sDeltaMetaExtendedHeader))
|
|
validSize = true;
|
|
|
|
return validSize;
|
|
}
|
|
|
|
size_t nx::ContentMetaBinary::getExtendedDataSize(cmnt::ContentMetaType type, const byte_t * data)
|
|
{
|
|
size_t exdata_len = 0;
|
|
if (type == cmnt::METATYPE_PATCH)
|
|
{
|
|
const sPatchMetaExtendedHeader* exhdr = (const sPatchMetaExtendedHeader*)(data);
|
|
exdata_len = exhdr->extended_data_size.get();
|
|
}
|
|
else if (type == cmnt::METATYPE_DELTA)
|
|
{
|
|
const sDeltaMetaExtendedHeader* exhdr = (const sDeltaMetaExtendedHeader*)(data);
|
|
exdata_len = exhdr->extended_data_size.get();
|
|
}
|
|
return exdata_len;
|
|
}
|
|
|
|
void nx::ContentMetaBinary::validateBinary(const byte_t * bytes, size_t len)
|
|
{
|
|
// check if it is large enough to read the header
|
|
if (len < sizeof(sContentMetaHeader))
|
|
{
|
|
throw fnd::Exception(kModuleName, "Binary too small");
|
|
}
|
|
|
|
// get pointer to header structure
|
|
const sContentMetaHeader* hdr = (const sContentMetaHeader*)bytes;
|
|
|
|
// validate extended header size
|
|
if (validateExtendedHeaderSize((cmnt::ContentMetaType)hdr->type, hdr->exhdr_size.get()) == false)
|
|
{
|
|
throw fnd::Exception(kModuleName, "Invalid extended header size");
|
|
}
|
|
|
|
// check binary size again for new minimum size
|
|
if (len < getTotalSize(hdr->exhdr_size.get(), hdr->content_count.get(), hdr->content_meta_count.get(), 0))
|
|
{
|
|
throw fnd::Exception(kModuleName, "Binary too small");
|
|
}
|
|
|
|
// check binary size again with extended data size
|
|
if (len < getTotalSize(hdr->exhdr_size.get(), hdr->content_count.get(), hdr->content_meta_count.get(), getExtendedDataSize((cmnt::ContentMetaType)hdr->type, bytes + getExtendedHeaderOffset())))
|
|
{
|
|
throw fnd::Exception(kModuleName, "Binary too small");
|
|
}
|
|
}
|
|
|
|
bool nx::ContentMetaBinary::isEqual(const ContentMetaBinary & other) const
|
|
{
|
|
return (mTitleId == other.mTitleId) \
|
|
&& (mTitleVersion == other.mTitleVersion) \
|
|
&& (mType == other.mType) \
|
|
&& (mAttributes == other.mAttributes) \
|
|
&& (mRequiredSystemVersion == other.mRequiredSystemVersion) \
|
|
&& (mExtendedHeader == other.mExtendedHeader) \
|
|
&& (mContentInfo == other.mContentInfo) \
|
|
&& (mContentMetaInfo == other.mContentMetaInfo) \
|
|
&& (mExtendedData == other.mExtendedData) \
|
|
&& (memcmp(mDigest.data, other.mDigest.data, cmnt::kDigestLen) == 0);
|
|
}
|
|
|
|
void nx::ContentMetaBinary::copyFrom(const ContentMetaBinary & other)
|
|
{
|
|
if (other.getSize() > 0)
|
|
{
|
|
importBinary(other.getBytes(), other.getSize());
|
|
}
|
|
else
|
|
{
|
|
clear();
|
|
mTitleId = other.mTitleId;
|
|
mTitleVersion = other.mTitleVersion;
|
|
mType = other.mType;
|
|
mAttributes = other.mAttributes;
|
|
mRequiredSystemVersion = other.mRequiredSystemVersion;
|
|
mExtendedHeader = other.mExtendedHeader;
|
|
mContentInfo = other.mContentInfo;
|
|
mContentMetaInfo = other.mContentMetaInfo;
|
|
mExtendedData = other.mExtendedData;
|
|
memcpy(mDigest.data, other.mDigest.data, cmnt::kDigestLen);
|
|
}
|
|
}
|