-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvarint.cpp
400 lines (355 loc) · 11.1 KB
/
varint.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
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#include "varint.h"
#define MAXBITS 8
UTXO::UTXO(Varint<std::vector<unsigned char>>& _inputValue)
{
inputValue = _inputValue;
setHeight();
setAmount();
setScriptPubKey();
}
UTXO::UTXO(const UTXO& src)
{
txid = src.txid;
vout = src.vout;
height = src.height;
coinbase = src.coinbase;
scriptPubKey = src.scriptPubKey;
amount = src.amount;
scriptType = src.scriptType;
inputValue = src.inputValue;
}
void UTXO::setHeight()
{
std::vector<unsigned char> first;
inputValue.decode(0, first);
// The first Varint in this context represents the block height and coinbase status.
// The final bit of the final byte in the decoded varint indicates coinbase status.
coinbase = first.back() & 1 ? true : false;
// The bits preceding the least significant bit need to be shifted right to yield the block height.
// This is because the protocol reserves the least significant bit of this Varint as a boolean
// indicator of the coinbase status of this UTXO.
Varint<std::vector<unsigned char>>::shiftAllBytesRight(first, 1);
// Convert block height represented by first (a base 256 encoded vector of bytes) to a string
// as an intermediate to avoid expensive math operations.
std::string blockHeight;
utilities::bytesToDecimal(first, blockHeight);
// Convert to a uint64_t type
char* pEnd;
height = strtol(blockHeight.c_str(), &pEnd, 10);
}
void UTXO::setAmount()
{
// The second Varint in the stored database value represents the (compressed) amount.
std::vector<unsigned char> rawAmount;
// The decode() method returns the index of the following byte
scriptStart = inputValue.decode(1, rawAmount);
std::string amountDecimalStr;
// Make a decimal string.
utilities::bytesToDecimal(rawAmount, amountDecimalStr);
// Convert to a uint64_t type to allow for decompression and further numeric processing.
char* pEnd;
long int a = strtol(amountDecimalStr.c_str(), &pEnd, 10);
amount = DecompressAmount((uint64_t)a);
}
/**
* Build the scriptPubKey based on the script type (designated by scriptType) and the unique
* script data contained in the database record.
*
* Switch statement based on that found in Bitcoin Core:
* See: https://github.com/bitcoin/bitcoin/blob/0.20/src/compressor.cpp#L95
* Copyright (c) 2009-2010 Satoshi Nakamoto
* Copyright (c) 2009-2019 The Bitcoin Core developers
* Distributed under the MIT software license, see the accompanying
* file COPYING or http://www.opensource.org/licenses/mit-license.php.
* */
void UTXO::setScriptPubKey()
{
std::vector<unsigned char> in;
// nSize is a Varint - nSize receives the decoded value
std::vector<unsigned char> nSize;
// scriptStart is the index of the first script byte
scriptStart = inputValue.decode(2, nSize);
// The script is comprised of the remaining bytes in the retrieved value
inputValue.remainingBytesFromIndex((size_t) scriptStart, in);
// There are 6 special script types. Outside these 6, the entire script is present
// scriptType = nSize[0] < 6 ? nSize[0] : -1;
scriptType = nSize[0] < 6 ? nSize[0] : 6;
switch(scriptType) {
case 0x00: // P2PKH Pay to Public Key Hash
scriptPubKey.resize(25);
scriptPubKey[0] = OP_DUP;
scriptPubKey[1] = OP_HASH160;
scriptPubKey[2] = 0x14;
memcpy(&scriptPubKey[3], &in[0], 20);
scriptPubKey[23] = OP_EQUALVERIFY;
scriptPubKey[24] = OP_CHECKSIG;
break;
case 0x01: // P2SH Pay to Script Hash
scriptPubKey.resize(23);
scriptPubKey[0] = OP_HASH160;
scriptPubKey[1] = 0x14;
memcpy(&scriptPubKey[2], &in[0], 20);
scriptPubKey[22] = OP_EQUAL;
break;
case 0x02: // PKPK: upcoming data is a compressed public key (nsize makes up part of the public key) [y=even]
case 0x03: // PKPK: upcoming data is a compressed public key (nsize makes up part of the public key) [y=odd]
scriptPubKey.resize(35);
scriptPubKey[0] = 33;
scriptPubKey[1] = scriptType;
memcpy(&scriptPubKey[2], in.data(), 32);
scriptPubKey[34] = OP_CHECKSIG;
break;
case 0x04:
case 0x05:
break;
// case 0x04: // PKPK: upcoming data is an uncompressed public key (compressed for levelDB) [y=even]
// case 0x05: // PKPK: upcoming data is an uncompressed public key (compressed for levelDB) [y=odd]
// break;
// unsigned char vch[33] = {};
// vch[0] = scriptType - 2;
// memcpy(&vch[1], in.data(), 32);
// CPubKey pubkey(&vch[0], &vch[33]);
// if (!pubkey.Decompress())
// return false;
// assert(pubkey.size() == 65);
// scriptPubKey.resize(67);
// scriptPubKey[0] = 65;
// memcpy(&scriptPubKey[1], pubkey.begin(), 65);
// scriptPubKey[66] = OP_CHECKSIG;
// break;
default: // Upcoming script is custom, made up of nSize bytes
std::cout << "scriptType = " << scriptType << "\n";
assert(scriptType == 6);
// Convert nSize (vector of bytes)
auto customScriptSize = utilities::toUint64(nSize) - 6;
scriptPubKey.resize(customScriptSize);
memcpy(&scriptPubKey[0], in.data() + 1, customScriptSize);
}
}
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2019 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
// Bitcoin Core `src/compressor.cpp`: https://github.com/bitcoin/bitcoin/blob/0.20/src/compressor.cpp#L168
uint64_t UTXO::DecompressAmount(uint64_t x)
{
// x = 0 OR x = 1+10*(9*n + d - 1) + e OR x = 1+10*(n - 1) + 9
if (x == 0)
return 0;
x--;
// x = 10*(9*n + d - 1) + e
int e = x % 10;
x /= 10;
uint64_t n = 0;
if (e < 9) {
// x = 9*n + d - 1
int d = (x % 9) + 1;
x /= 9;
// x = n
n = x*10 + d;
} else {
n = x+1;
}
while (e) {
n *= 10;
e--;
}
return n;
}
void UTXO::scriptDescription(size_t type, std::string& desc)
{
/** Map scriptType to string **/
static const char* scriptDescription[] = {
"P2PKH", // 0
"P2SH", // 1
"P2PKa", // data is a compressed public key, y = even // 2
"P2PKb", // data is a compressed public key, y = odd // 3
"P2PKc", // Uncompressed pubkey, compressed for levelDB, y = even // 4
"P2PKd", // Uncompressed pubkey, compressed for levelDB, y = odd // 5
};
if (type > 5) {
desc = "Unknown script type.";
} else {
desc = scriptDescription[type];
}
}
void UTXO::getDbValue(std::string& dbValue)
{
std::string s;
std::vector<unsigned char> b;
inputValue.getInputBytes(b);
utilities::bytesToHexstring(b, s);
dbValue = s;
}
void UTXO::setTXID(const std::vector<unsigned char>& _txid)
{
txid = _txid;
}
//void UTXO::setVout(const uint32_t& _vout)
//{
// vout = _vout;
//}
void UTXO::csv(std::string& s)
{
std::string txidStr, scriptPubKeyStr, scriptDescStr;
utilities::bytesToHexstring(txid, txidStr);
utilities::bytesToHexstring(scriptPubKey, scriptPubKeyStr);
scriptDescription((size_t)scriptType, scriptDescStr);
std::stringstream ss;
ss << txidStr << "," << height << ",";
ss << (coinbase ? "1" : "0") << ",";
ss << amount << "," << scriptPubKeyStr << ",";
ss << scriptDescStr << "\n";
s = ss.str();
}
std::ostream& operator<<(std::ostream& os, UTXO& utxo)
{
std::string scriptDesc, dbValue;
utxo.scriptDescription((size_t)utxo.scriptType, scriptDesc);
utxo.getDbValue(dbValue);
std::string scriptPubKeyString, txid;
utilities::bytesToHexstring(utxo.scriptPubKey, scriptPubKeyString);
utilities::bytesToHexstring(utxo.txid, txid);
size_t nSize = utxo.scriptType > 6 ? utxo.scriptType - 6 : utxo.scriptType;
os << "txid:\t\t" << txid << "\n";
os << "DB Value:\t" << dbValue << "\n";
os << "Amount (sats):\t" << utxo.amount << "\n";
os << "Block height:\t" << utxo.height << "\n";
os << "Coinbase:\t" << (utxo.coinbase ? "true" : "false") << "\n";
os << "scriptPubKey:\t" << scriptPubKeyString << "\n";
os << "Script type:\t" << scriptDesc << "\n";
os << "nSize:\t\t" << nSize << "\n";
return os;
}
template <class T>
Varint<T>::Varint() {
startIndexes = {};
inputBytes = {};
}
template <class T>
Varint<T>::Varint(T _input) : inputBytes(_input)
{
setStartIndexes();
processBytes();
}
template <class T>
Varint<T>& Varint<T>::operator=(const Varint<T>& other)
{
for (auto& el : other.inputBytes) {
this->inputBytes.push_back(el);
}
this->setStartIndexes();
this->processBytes();
return *this;
}
template <class T>
void Varint<T>::getInputBytes(std::vector<unsigned char>& v)
{
v = inputBytes;
}
template <class T>
void Varint<T>::setStartIndexes()
{
startIndexes.push_back(0);
for (size_t i = 0; i < inputBytes.size(); i++) {
if ((inputBytes[i] & 0x80) == 0 && i != (inputBytes.size() - 1)) {
startIndexes.push_back(i + 1);
}
}
}
template <class T>
void Varint<T>::remainingBytesFromIndex(size_t startIndex, std::vector<unsigned char>& result)
{
for (size_t i = startIndex; i < inputBytes.size(); i++) {
result.push_back(inputBytes[i]);
}
}
template <class T>
ssize_t Varint<T>::decode(size_t start, std::vector<unsigned char>& result)
{
std::vector<unsigned char> tmp;
size_t nBytes = 0;
for (size_t i = startIndexes[start]; i < inputBytes.size(); i++) {
nBytes++;
if ((inputBytes[i] & 0x80) == 0) {
tmp.push_back(inputBytes[i] & (0xFF >> 1));
break;
}
tmp.push_back((inputBytes[i] & (0xFF >> 1)) + 1);
}
base128To256(tmp, result);
size_t finalIndex = startIndexes[start] + nBytes;
return finalIndex < inputBytes.size() - 1 ? (ssize_t)finalIndex : -1;
}
template <class T>
void Varint<T>::base128To256(const T& b128, T& b256)
{
size_t nBytes = b128.size();
unsigned char current = 0, carry = 0;
for (const auto& b : b128) {
size_t offset = nBytes - 1;
// Set least significant bits in current, then shift into correct position
current = (b & (0xFF << offset)) >> offset;
// Most significant bits are the last iterations carry
current |= carry;
b256.push_back(current);
// Set carry bits and shift into correct position for next iteration.
carry = b & ~(0xFF << offset); // nBytes == 3, mask is 0000 0011
carry <<= (MAXBITS - offset);
nBytes--;
}
}
template <class T>
void Varint<T>::processBytes()
{
std::vector<unsigned char> tmp;
size_t nBytes = 0;
for (const auto& el : inputBytes) {
nBytes++;
// Most significant bit set zero denotes last byte
if (el <= 0x7F) {
// if ((el & (1 << 7)) == 0) {
tmp.push_back(el & (0xff >> 1));
break;
}
// For all bytes except the last, save the last 7 bits + 1
tmp.push_back((el & (0xff >> 1)) + 1);
}
unsigned char current = 0, carry = 0;
for (const auto& b : tmp) {
size_t offset = nBytes - 1;
// Set least significant bits in current, then shift into correct position
current = (b & (0xFF << offset)) >> offset;
// Most significant bits are the last iterations carry
current |= carry;
result.push_back(current);
// Set carry bits and shift into correct position for next iteration.
carry = b & ~(0xFF << offset); // nBytes == 3, mask is 0000 0011
carry <<= (MAXBITS - offset);
nBytes--;
}
shiftAllBytesRight(1);
}
template <class T>
void Varint<T>::outputResult()
{
for (const auto& el : result) {
std::cout << (int) el << " ";
}
std::cout << "\n";
}
template <class T>
void Varint<T>::shiftAllBytesRight(size_t shift)
{
for (auto& byte : result) {
byte >>= shift;
}
}
template <class T>
void Varint<T>::shiftAllBytesRight(T& bytes, size_t shift)
{
for (auto& byte : bytes) {
byte >>= shift;
}
}
template class Varint<std::vector<unsigned char>>;