forked from SciresM/hactool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbktr.h
54 lines (45 loc) · 1.22 KB
/
bktr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef HACTOOL_BKTR_H
#define HACTOOL_BKTR_H
#include "types.h"
#define MAGIC_BKTR 0x52544B42
typedef struct {
uint64_t offset;
uint64_t size;
uint32_t magic; /* "BKTR" */
uint32_t _0x14; /* Version? */
uint32_t num_entries;
uint32_t _0x1C; /* Reserved? */
} bktr_header_t;
#pragma pack(push, 1)
typedef struct {
uint64_t virt_offset;
uint64_t phys_offset;
uint32_t is_patch;
} bktr_relocation_entry_t;
#pragma pack(pop)
#pragma pack(push, 1)
typedef struct {
uint8_t _0x0[0x4004]; /* lol. */
uint32_t num_entries;
uint64_t patch_romfs_size;
bktr_relocation_entry_t entries[];
} bktr_relocation_block_t;
#pragma pack(pop)
#pragma pack(push, 1)
typedef struct {
uint64_t offset;
uint32_t _0x8;
uint32_t ctr_val;
} bktr_subsection_entry_t;
#pragma pack(pop)
#pragma pack(push, 1)
typedef struct {
uint8_t _0x0[0x4004]; /* lol. */
uint32_t num_entries;
uint64_t bktr_entry_offset;
bktr_subsection_entry_t entries[];
} bktr_subsection_block_t;
#pragma pack(pop)
bktr_relocation_entry_t *bktr_get_relocation(bktr_relocation_block_t *block, uint64_t offset);
bktr_subsection_entry_t *bktr_get_subsection(bktr_subsection_block_t *block, uint64_t offset);
#endif