-
Notifications
You must be signed in to change notification settings - Fork 155
/
bktr.h
78 lines (66 loc) · 1.99 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#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 {
uint32_t _0x0;
uint32_t num_entries;
uint64_t virtual_offset_end;
bktr_relocation_entry_t entries[0x3FF0/sizeof(bktr_relocation_entry_t)];
uint8_t padding[0x3FF0 % sizeof(bktr_relocation_entry_t)];
} bktr_relocation_bucket_t;
#pragma pack(pop)
#pragma pack(push, 1)
typedef struct {
uint32_t _0x0;
uint32_t num_buckets;
uint64_t total_size;
uint64_t bucket_virtual_offsets[0x3FF0/sizeof(uint64_t)];
bktr_relocation_bucket_t buckets[];
} 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 {
uint32_t _0x0;
uint32_t num_entries;
uint64_t physical_offset_end;
bktr_subsection_entry_t entries[0x3FF];
} bktr_subsection_bucket_t;
#pragma pack(pop)
#pragma pack(push, 1)
typedef struct {
uint32_t _0x0;
uint32_t num_buckets;
uint64_t total_size;
uint64_t bucket_physical_offsets[0x3FF0/sizeof(uint64_t)];
bktr_subsection_bucket_t buckets[];
} bktr_subsection_block_t;
#pragma pack(pop)
bktr_relocation_bucket_t *bktr_get_relocation_bucket(bktr_relocation_block_t *block, uint32_t i);
bktr_relocation_entry_t *bktr_get_relocation(bktr_relocation_block_t *block, uint64_t offset);
bktr_subsection_bucket_t *bktr_get_subsection_bucket(bktr_subsection_block_t *block, uint32_t i);
bktr_subsection_entry_t *bktr_get_subsection(bktr_subsection_block_t *block, uint64_t offset);
#endif