forked from Vector35/workflow_objc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDataRenderers.cpp
159 lines (127 loc) · 4.48 KB
/
DataRenderers.cpp
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
* Copyright (c) 2022-2023 Jon Palmisciano. All rights reserved.
*
* Use of this source code is governed by the BSD 3-Clause license; the full
* terms of the license can be found in the LICENSE.txt file.
*/
#include "DataRenderers.h"
#include "CustomTypes.h"
#include "Core/ABI.h"
#include <cinttypes>
#include <cstdio>
using namespace BinaryNinja;
/**
* Get the appropriate token type for a pointer to a given symbol.
*/
BNInstructionTextTokenType tokenTypeForSymbol(Ref<Symbol> symbol)
{
switch (symbol->GetType()) {
case DataSymbol:
return DataSymbolToken;
case FunctionSymbol:
return CodeSymbolToken;
default:
return CodeRelativeAddressToken;
}
}
/**
* Get a line for a given pointer.
*/
DisassemblyTextLine lineForPointer(BinaryView* bv, uint64_t pointer,
uint64_t address, const std::vector<InstructionTextToken>& prefix)
{
std::string tokenText = "???";
auto tokenType = CodeRelativeAddressToken;
Ref<Symbol> symbol = bv->GetSymbolByAddress(pointer);
if (pointer == 0 || pointer == bv->GetStart()) {
tokenText = "NULL";
tokenType = KeywordToken;
} else if (symbol) {
tokenText = symbol->GetFullName();
tokenType = tokenTypeForSymbol(symbol);
} else {
char addressBuffer[32];
snprintf(addressBuffer, sizeof(addressBuffer), "0x%" PRIx64, pointer);
tokenText = std::string(addressBuffer);
tokenType = CodeRelativeAddressToken;
}
DisassemblyTextLine line;
line.addr = address;
line.tokens = prefix;
line.tokens.emplace_back(tokenType, tokenText, pointer);
return { line };
}
/**
* Checks if the deepest type in the data renderer context is a named type with
* the given name.
*/
bool isType(const DataRendererContext& context, const std::string& name)
{
if (context.empty())
return false;
auto [deepestType, size] = context.back();
if (!deepestType->IsNamedTypeRefer())
return false;
return deepestType->GetTypeName().GetString() == name;
}
/* ---- Tagged Pointer ------------------------------------------------------ */
bool TaggedPointerDataRenderer::IsValidForData(BinaryView* bv, uint64_t address,
Type* type, DataRendererContext& context)
{
return isType(context, CustomTypes::TaggedPointer);
}
std::vector<DisassemblyTextLine> TaggedPointerDataRenderer::GetLinesForData(
BinaryView* bv, uint64_t address, Type*,
const std::vector<InstructionTextToken>& prefix, size_t,
DataRendererContext&)
{
BinaryReader reader(bv);
reader.Seek(address);
auto pointer = ObjectiveNinja::ABI::decodePointer(reader.Read64(), bv->GetStart());
return { lineForPointer(bv, pointer, address, prefix) };
}
void TaggedPointerDataRenderer::Register()
{
DataRendererContainer::RegisterTypeSpecificDataRenderer(new TaggedPointerDataRenderer());
}
/* ---- Fast Pointer -------------------------------------------------------- */
bool FastPointerDataRenderer::IsValidForData(BinaryView* bv, uint64_t address,
Type* type, DataRendererContext& context)
{
return isType(context, CustomTypes::FastPointer);
}
std::vector<DisassemblyTextLine> FastPointerDataRenderer::GetLinesForData(
BinaryView* bv, uint64_t address, Type*,
const std::vector<InstructionTextToken>& prefix, size_t,
DataRendererContext&)
{
BinaryReader reader(bv);
reader.Seek(address);
auto pointer = ObjectiveNinja::ABI::decodePointer(reader.Read64(), bv->GetStart());
pointer &= ~ObjectiveNinja::ABI::FastPointerDataMask;
return { lineForPointer(bv, pointer, address, prefix) };
}
void FastPointerDataRenderer::Register()
{
DataRendererContainer::RegisterTypeSpecificDataRenderer(new FastPointerDataRenderer());
}
/* ---- Relative Pointer ---------------------------------------------------- */
bool RelativePointerDataRenderer::IsValidForData(BinaryView* bv, uint64_t address,
Type* type, DataRendererContext& context)
{
return isType(context, CustomTypes::RelativePointer);
}
std::vector<DisassemblyTextLine> RelativePointerDataRenderer::GetLinesForData(
BinaryView* bv, uint64_t address, Type*,
const std::vector<InstructionTextToken>& prefix, size_t,
DataRendererContext&)
{
BinaryReader reader(bv);
reader.Seek(address);
auto pointer = (int32_t)reader.Read32() + address;
return { lineForPointer(bv, pointer, address, prefix) };
}
void RelativePointerDataRenderer::Register()
{
DataRendererContainer::RegisterTypeSpecificDataRenderer(new RelativePointerDataRenderer());
}