2018-04-21 09:23:55 +00:00
|
|
|
#pragma once
|
2018-04-07 08:01:11 +00:00
|
|
|
#include <string>
|
|
|
|
#include <fnd/types.h>
|
|
|
|
#include <crypto/aes.h>
|
|
|
|
#include <crypto/sha.h>
|
2018-04-25 15:20:20 +00:00
|
|
|
#include <crypto/rsa.h>
|
2018-04-07 08:01:11 +00:00
|
|
|
#include <fnd/ISerialiseableBinary.h>
|
2018-06-03 07:41:56 +00:00
|
|
|
#include <nx/macro.h>
|
2018-04-07 08:01:11 +00:00
|
|
|
|
|
|
|
namespace nx
|
|
|
|
{
|
|
|
|
namespace nca
|
|
|
|
{
|
2018-06-03 07:41:56 +00:00
|
|
|
static const uint32_t kNca2Sig = _MAKE_STRUCT_SIGNATURE("NCA2");
|
|
|
|
static const uint32_t kNca3Sig = _MAKE_STRUCT_SIGNATURE("NCA3");
|
2018-04-07 08:01:11 +00:00
|
|
|
static const size_t kSectorSize = 0x200;
|
|
|
|
static const size_t kPartitionNum = 4;
|
|
|
|
static const size_t kHeaderSectorNum = 6;
|
|
|
|
static const size_t kHeaderSize = kSectorSize * kHeaderSectorNum;
|
|
|
|
static const size_t kAesKeyNum = 16;
|
|
|
|
static const size_t kRightsIdLen = 0x10;
|
2018-04-21 09:23:55 +00:00
|
|
|
static const size_t kKeyAreaEncryptionKeyNum = 3;
|
2018-05-20 13:57:38 +00:00
|
|
|
static const size_t kFsHeaderHashSuperblockLen = 0x138;
|
2018-05-11 09:44:41 +00:00
|
|
|
static const uint16_t kDefaultFsHeaderVersion = 2;
|
2018-04-21 09:23:55 +00:00
|
|
|
|
|
|
|
enum ProgramPartitionId
|
|
|
|
{
|
|
|
|
PARTITION_CODE,
|
|
|
|
PARTITION_DATA,
|
|
|
|
PARTITION_LOGO,
|
|
|
|
};
|
2018-04-07 08:01:11 +00:00
|
|
|
|
|
|
|
enum DistributionType
|
|
|
|
{
|
|
|
|
DIST_DOWNLOAD,
|
|
|
|
DIST_GAME_CARD
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ContentType
|
|
|
|
{
|
|
|
|
TYPE_PROGRAM,
|
|
|
|
TYPE_META,
|
|
|
|
TYPE_CONTROL,
|
|
|
|
TYPE_MANUAL,
|
|
|
|
TYPE_DATA,
|
2018-05-11 09:44:41 +00:00
|
|
|
TYPE_PUBLIC_DATA
|
2018-04-07 08:01:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum KeyBankIndex
|
|
|
|
{
|
|
|
|
KEY_AESXTS_0,
|
|
|
|
KEY_AESXTS_1,
|
|
|
|
KEY_AESCTR,
|
|
|
|
KEY_UNUSED_3,
|
|
|
|
KEY_AESCTR_HW
|
|
|
|
};
|
|
|
|
|
|
|
|
enum KeyAreaEncryptionKeyIndex
|
|
|
|
{
|
|
|
|
KAEK_IDX_APPLICATION,
|
|
|
|
KAEK_IDX_OCEAN,
|
|
|
|
KAEK_IDX_SYSTEM
|
|
|
|
};
|
|
|
|
|
|
|
|
enum FormatType
|
|
|
|
{
|
|
|
|
FORMAT_ROMFS,
|
|
|
|
FORMAT_PFS0
|
|
|
|
};
|
|
|
|
|
|
|
|
enum HashType
|
|
|
|
{
|
|
|
|
HASH_AUTO,
|
2018-05-11 09:44:41 +00:00
|
|
|
HASH_NONE,
|
2018-04-07 08:01:11 +00:00
|
|
|
HASH_HIERARCHICAL_SHA256,
|
2018-04-21 09:23:55 +00:00
|
|
|
HASH_HIERARCHICAL_INTERGRITY // IVFC
|
2018-04-07 08:01:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum EncryptionType
|
|
|
|
{
|
|
|
|
CRYPT_AUTO,
|
|
|
|
CRYPT_NONE,
|
|
|
|
CRYPT_AESXTS,
|
|
|
|
CRYPT_AESCTR,
|
2018-05-11 09:44:41 +00:00
|
|
|
CRYPT_AESCTREX
|
2018-04-07 08:01:11 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma pack(push,1)
|
|
|
|
struct sNcaHeader
|
|
|
|
{
|
2018-06-03 07:41:56 +00:00
|
|
|
le_uint32_t signature;
|
2018-04-07 08:01:11 +00:00
|
|
|
byte_t distribution_type;
|
|
|
|
byte_t content_type;
|
2018-04-25 14:58:45 +00:00
|
|
|
byte_t key_generation;
|
2018-04-07 08:01:11 +00:00
|
|
|
byte_t key_area_encryption_key_index;
|
|
|
|
le_uint64_t content_size;
|
|
|
|
le_uint64_t program_id;
|
|
|
|
le_uint32_t content_index;
|
|
|
|
le_uint32_t sdk_addon_version;
|
|
|
|
byte_t key_generation_2;
|
|
|
|
byte_t reserved_2[0xf];
|
|
|
|
byte_t rights_id[nca::kRightsIdLen];
|
|
|
|
struct sNcaSection
|
|
|
|
{
|
|
|
|
le_uint32_t start; // block units
|
|
|
|
le_uint32_t end; // block units
|
|
|
|
byte_t enabled;
|
|
|
|
byte_t reserved[7];
|
|
|
|
} partition[nca::kPartitionNum];
|
|
|
|
crypto::sha::sSha256Hash partition_hash[nca::kPartitionNum];
|
|
|
|
crypto::aes::sAes128Key enc_aes_key[nca::kAesKeyNum];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sNcaFsHeader
|
|
|
|
{
|
2018-05-11 09:44:41 +00:00
|
|
|
le_uint16_t version;
|
|
|
|
byte_t format_type;
|
|
|
|
byte_t hash_type;
|
|
|
|
byte_t encryption_type;
|
|
|
|
byte_t reserved_0[3];
|
2018-05-20 13:57:38 +00:00
|
|
|
byte_t hash_superblock[nca::kFsHeaderHashSuperblockLen];
|
|
|
|
byte_t aes_ctr_upper[8];
|
2018-05-11 09:44:41 +00:00
|
|
|
byte_t reserved_1[0xB8];
|
2018-04-07 08:01:11 +00:00
|
|
|
};
|
|
|
|
|
2018-05-11 09:44:41 +00:00
|
|
|
struct sNcaHeaderBlock
|
2018-04-07 08:01:11 +00:00
|
|
|
{
|
2018-05-11 09:44:41 +00:00
|
|
|
byte_t signature_main[crypto::rsa::kRsa2048Size];
|
|
|
|
byte_t signature_acid[crypto::rsa::kRsa2048Size];
|
|
|
|
sNcaHeader header;
|
|
|
|
sNcaFsHeader fs_header[nx::nca::kPartitionNum];
|
2018-04-07 08:01:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#pragma pack(pop)
|
|
|
|
}
|