nstool/lib/libnx/include/nx/romfs.h

60 lines
997 B
C
Raw Normal View History

2018-04-21 09:38:26 +00:00
#pragma once
#include <string>
#include <fnd/types.h>
#include <crypto/aes.h>
#include <crypto/sha.h>
#include <fnd/ISerialiseableBinary.h>
namespace nx
{
namespace romfs
{
enum HeaderSectionIndex
{
DIR_HASHMAP_TABLE,
DIR_NODE_TABLE,
FILE_HASHMAP_TABLE,
FILE_NODE_TABLE,
SECTION_NUM
};
2018-04-25 08:34:52 +00:00
static const uint64_t kRomfsHeaderAlign = 0x200;
static const uint32_t kInvalidAddr = 0xffffffff;
2018-04-21 09:38:26 +00:00
}
#pragma pack(push,1)
struct sRomfsHeader
{
le_uint64_t header_size;
struct sSection
{
le_uint64_t offset;
le_uint64_t size;
} sections[romfs::SECTION_NUM];
le_uint64_t data_offset;
};
2018-04-25 06:28:43 +00:00
struct sRomfsDirEntry
{
le_uint32_t parent;
2018-04-25 06:28:43 +00:00
le_uint32_t sibling;
le_uint32_t child;
le_uint32_t file;
le_uint32_t hash;
le_uint32_t name_size;
char name[];
2018-04-25 06:28:43 +00:00
};
struct sRomfsFileEntry
{
le_uint32_t parent;
le_uint32_t sibling;
le_uint64_t offset;
le_uint64_t size;
le_uint32_t hash;
le_uint32_t name_size;
char name[];
2018-04-25 06:28:43 +00:00
};
2018-04-21 09:38:26 +00:00
#pragma pack(pop)
}