2018-04-07 08:03:01 +00:00
|
|
|
#include <string>
|
|
|
|
#include <fnd/types.h>
|
|
|
|
#include <crypto/sha.h>
|
|
|
|
#include <fnd/ISerialiseableBinary.h>
|
2018-06-03 07:41:56 +00:00
|
|
|
#include <nx/macro.h>
|
2018-04-07 08:03:01 +00:00
|
|
|
|
|
|
|
namespace nx
|
|
|
|
{
|
|
|
|
namespace pfs
|
|
|
|
{
|
2018-06-03 07:41:56 +00:00
|
|
|
static const uint32_t kPfsSig = _MAKE_STRUCT_SIGNATURE("PFS0");
|
|
|
|
static const uint32_t kHashedPfsSig = _MAKE_STRUCT_SIGNATURE("HFS0");
|
2018-04-15 02:41:29 +00:00
|
|
|
static const size_t kHeaderAlign = 64;
|
2018-04-07 08:03:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma pack(push,1)
|
|
|
|
struct sPfsHeader
|
|
|
|
{
|
2018-06-03 07:41:56 +00:00
|
|
|
le_uint32_t signature;
|
2018-04-07 08:03:01 +00:00
|
|
|
le_uint32_t file_num;
|
2018-04-21 09:38:26 +00:00
|
|
|
le_uint32_t name_table_size;
|
|
|
|
byte_t padding[4];
|
2018-04-07 08:03:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sPfsFile
|
|
|
|
{
|
|
|
|
le_uint64_t data_offset;
|
|
|
|
le_uint64_t size;
|
|
|
|
le_uint32_t name_offset;
|
|
|
|
byte_t padding[4];
|
|
|
|
}; // sizeof(0x18)
|
|
|
|
|
|
|
|
struct sHashedPfsFile
|
|
|
|
{
|
|
|
|
le_uint64_t data_offset;
|
|
|
|
le_uint64_t size;
|
|
|
|
le_uint32_t name_offset;
|
|
|
|
le_uint32_t hash_protected_size;
|
|
|
|
byte_t padding[8];
|
|
|
|
crypto::sha::sSha256Hash hash;
|
|
|
|
}; // sizeof(0x40)
|
|
|
|
#pragma pack(pop)
|
|
|
|
}
|