FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
binaryninja-api/databuffer.cpp at dev · Vector35/binaryninja-api · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Vector35
/
binaryninja-api
Public
Notifications
You must be signed in to change notification settings
Fork
294
Star
1.3k
Code
Issues
1.9k
Pull requests
37
Discussions
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
binaryninja-api
/
databuffer.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
284 lines (215 loc) · 5.62 KB
Breadcrumbs
binaryninja-api
/
databuffer.cpp
Copy path
File metadata and controls
284 lines (215 loc) · 5.62 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
//
Copyright (c) 2015-2026 Vector 35 Inc
//
//
Permission is hereby granted, free of charge, to any person obtaining a copy
//
of this software and associated documentation files (the "Software"), to
//
deal in the Software without restriction, including without limitation the
//
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
//
sell copies of the Software, and to permit persons to whom the Software is
//
furnished to do so, subject to the following conditions:
//
//
The above copyright notice and this permission notice shall be included in
//
all copies or substantial portions of the Software.
//
//
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
//
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
//
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
//
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
//
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
//
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
//
IN THE SOFTWARE.
#
include
"
binaryninjaapi.h
"
using
namespace
BinaryNinja
;
using
namespace
std
;
DataBuffer::DataBuffer
()
{
m_buffer =
BNCreateDataBuffer
(
nullptr
,
0
);
}
DataBuffer::DataBuffer
(
size_t
len)
{
m_buffer =
BNCreateDataBuffer
(
nullptr
, len);
}
DataBuffer::DataBuffer
(
const
void
* data,
size_t
len)
{
m_buffer =
BNCreateDataBuffer
(data, len);
}
DataBuffer::DataBuffer
(
const
DataBuffer& buf)
{
m_buffer =
BNDuplicateDataBuffer
(buf.
m_buffer
);
}
DataBuffer::DataBuffer
(DataBuffer&& buf)
{
m_buffer = buf.
m_buffer
;
buf.
m_buffer
=
BNCreateDataBuffer
(
nullptr
,
0
);
}
DataBuffer::DataBuffer
(BNDataBuffer* buf)
{
m_buffer = buf;
}
DataBuffer::~DataBuffer
()
{
BNFreeDataBuffer
(m_buffer);
}
DataBuffer& DataBuffer::
operator
=(
const
DataBuffer& buf)
{
if
(
this
!= &buf)
{
BNFreeDataBuffer
(m_buffer);
m_buffer =
BNDuplicateDataBuffer
(buf.
m_buffer
);
}
return
*
this
;
}
DataBuffer& DataBuffer::
operator
=(DataBuffer&& buf)
{
if
(
this
!= &buf)
{
BNClearDataBuffer
(m_buffer);
BNDataBuffer* temp = m_buffer;
m_buffer = buf.
m_buffer
;
buf.
m_buffer
= temp;
}
return
*
this
;
}
bool
DataBuffer::
operator
==(
const
DataBuffer& other)
const
{
uint8_t
* data = (
uint8_t
*)
GetData
();
uint8_t
* otherData = (
uint8_t
*)other.
GetData
();
if
(
GetLength
() != other.
GetLength
())
return
false
;
if
(data == otherData)
return
true
;
for
(
size_t
i =
0
; i <
GetLength
(); i++)
{
if
(data[i] != otherData[i])
return
false
;
}
return
true
;
}
bool
DataBuffer::
operator
!=(
const
DataBuffer& other)
const
{
return
!(*
this
== other);
}
void
*
DataBuffer::GetData
()
{
return
BNGetDataBufferContents
(m_buffer);
}
const
void
*
DataBuffer::GetData
()
const
{
return
BNGetDataBufferContents
(m_buffer);
}
void
*
DataBuffer::GetDataAt
(
size_t
offset)
{
return
BNGetDataBufferContentsAt
(m_buffer, offset);
}
const
void
*
DataBuffer::GetDataAt
(
size_t
offset)
const
{
return
BNGetDataBufferContentsAt
(m_buffer, offset);
}
size_t
DataBuffer::GetLength
()
const
{
return
BNGetDataBufferLength
(m_buffer);
}
void
DataBuffer::SetSize
(
size_t
len)
{
BNSetDataBufferLength
(m_buffer, len);
}
void
DataBuffer::Clear
()
{
BNClearDataBuffer
(m_buffer);
}
void
DataBuffer::Append
(
const
void
* data,
size_t
len)
{
BNAppendDataBufferContents
(m_buffer, data, len);
}
void
DataBuffer::Append
(
const
DataBuffer& buf)
{
BNAppendDataBuffer
(m_buffer, buf.
m_buffer
);
}
void
DataBuffer::AppendByte
(
uint8_t
val)
{
Append
(&val,
1
);
}
DataBuffer
DataBuffer::GetSlice
(
size_t
start,
size_t
len)
{
BNDataBuffer* result =
BNGetDataBufferSlice
(m_buffer, start, len);
return
DataBuffer
(result);
}
uint8_t
& DataBuffer::
operator
[](
size_t
offset)
{
return
((
uint8_t
*)
GetData
())[offset];
}
const
uint8_t
& DataBuffer::
operator
[](
size_t
offset)
const
{
return
((
const
uint8_t
*)
GetData
())[offset];
}
string
DataBuffer::ToEscapedString
(
bool
nullTerminates,
bool
escapePrintable)
const
{
char
* str =
BNDataBufferToEscapedString
(m_buffer, nullTerminates, escapePrintable);
string result = str;
BNFreeString
(str);
return
result;
}
DataBuffer
DataBuffer::FromEscapedString
(
const
string& src)
{
return
DataBuffer
(
BNDecodeEscapedString
(src.
c_str
()));
}
string
DataBuffer::ToBase64
()
const
{
char
* str =
BNDataBufferToBase64
(m_buffer);
string result = str;
BNFreeString
(str);
return
result;
}
DataBuffer
DataBuffer::FromBase64
(
const
string& src)
{
return
DataBuffer
(
BNDecodeBase64
(src.
c_str
()));
}
bool
DataBuffer::ZlibCompress
(DataBuffer& output)
const
{
BNDataBuffer* result =
BNZlibCompress
(m_buffer);
if
(!result)
return
false
;
output =
DataBuffer
(result);
return
true
;
}
bool
DataBuffer::ZlibDecompress
(DataBuffer& output)
const
{
BNDataBuffer* result =
BNZlibDecompress
(m_buffer);
if
(!result)
return
false
;
output =
DataBuffer
(result);
return
true
;
}
bool
DataBuffer::LzmaDecompress
(DataBuffer& output)
const
{
BNDataBuffer* result =
BNLzmaDecompress
(m_buffer);
if
(!result)
return
false
;
output =
DataBuffer
(result);
return
true
;
}
bool
DataBuffer::Lzma2Decompress
(DataBuffer& output)
const
{
BNDataBuffer* result =
BNLzma2Decompress
(m_buffer);
if
(!result)
return
false
;
output =
DataBuffer
(result);
return
true
;
}
bool
DataBuffer::XzDecompress
(DataBuffer& output)
const
{
BNDataBuffer* result =
BNXzDecompress
(m_buffer);
if
(!result)
return
false
;
output =
DataBuffer
(result);
return
true
;
}
string
BinaryNinja::EscapeString
(
const
string& s)
{
DataBuffer
buffer
(s.
c_str
(), s.
size
());
return
buffer.
ToEscapedString
();
}
string
BinaryNinja::UnescapeString
(
const
string& s)
{
DataBuffer buffer =
DataBuffer::FromEscapedString
(s);
return
string
((
const
char
*)buffer.
GetData
(), buffer.
GetLength
());
}
Back
|
FazBrowse Home
|
New Git URL