forked from znort987/blockparser
- Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathutil.cpp
More file actions
Latest commit
754 lines (656 loc) · 17.5 KB
/
Copy pathutil.cpp
File metadata and controls
754 lines (656 loc) · 17.5 KB
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
#include<util.h>
#include<alloca.h>
#include<common.h>
#include<errlog.h>
#include<rmd160.h>
#include<sha256.h>
#include<opcodes.h>
#include<string>
#include<stdio.h>
#include<string.h>
#include<sys/time.h>
#include<openssl/bn.h>
#include<openssl/ecdsa.h>
#include<openssl/obj_mac.h>
constuint8_t hexDigits[] = "0123456789abcdef";
constuint8_t b58Digits[] = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
template<> uint8_t *PagedAllocator<Block>::pool = 0;
template<> uint8_t *PagedAllocator<Block>::poolEnd = 0;
template<> uint8_t *PagedAllocator<uint256_t>::pool = 0;
template<> uint8_t *PagedAllocator<uint256_t>::poolEnd = 0;
template<> uint8_t *PagedAllocator<uint160_t>::pool = 0;
template<> uint8_t *PagedAllocator<uint160_t>::poolEnd = 0;
doubleusecs()
{
structtimeval t;
gettimeofday(&t, 0);
return t.tv_usec + 1000000*((uint64_t)t.tv_sec);
}
voidtoHex(
uint8_t *dst, // 2*size +1
constuint8_t *src, // size
size_t size,
bool rev
)
{
int incr = 1;
constuint8_t *p = src;
constuint8_t *e = size + src;
if(rev)
{
p = e-1;
e = src-1;
incr = -1;
}
while(likely(p!=e))
{
uint8_t c = p[0];
dst[0] = hexDigits[c>>4];
dst[1] = hexDigits[c&0xF];
p += incr;
dst += 2;
}
dst[0] = 0;
}
voidshowHex(
constuint8_t *p,
size_t size,
bool rev
)
{
uint8_t* buf = (uint8_t*)alloca(2*size + 1);
toHex(buf, p, size, rev);
printf("%s", buf);
}
uint8_tfromHexDigit(
uint8_t h,
bool abortOnErr
)
{
if(likely('0'<=h && h<='9')) return (h - '0');
if(likely('a'<=h && h<='f')) return10 + (h - 'a');
if(likely('A'<=h && h<='F')) return10 + (h - 'A');
if(abortOnErr) errFatal("incorrect hex digit %c", h);
return0xFF;
}
boolfromHex(
uint8_t *dst,
constuint8_t *src,
size_t dstSize,
bool rev,
bool abortOnErr
)
{
int incr = 2;
uint8_t *end = dstSize + dst;
if(rev)
{
src += 2*(dstSize-1);
incr = -2;
}
while(likely(dst<end))
{
uint8_t hi = fromHexDigit(src[0], abortOnErr);
if(unlikely(0xFF==hi)) returnfalse;
uint8_t lo = fromHexDigit(src[1], abortOnErr);
if(unlikely(0xFF==lo)) returnfalse;
*(dst++) = (hi<<4) + lo;
src += incr;
}
returntrue;
}
voidshowScript(
constuint8_t *p,
size_t scriptSize,
constchar *header,
constchar *indent
)
{
bool first = true;
constuint8_t *e = scriptSize + p;
indent = indent ? indent : "";
while(likely(p<e)) {
LOAD(uint8_t, c, p);
bool isImmediate = (0<c && c<79) ;
if(!isImmediate) {
printf(
" %s0x%02X %s%s\n",
indent,
c,
getOpcodeName(c),
(first && header) ? header : ""
);
}
else
{
uint64_t dataSize = 0;
if(likely(c<=75)) { dataSize = c; }
elseif(likely(76==c)) { LOAD( uint8_t, v, p); dataSize = v; }
elseif(likely(77==c)) { LOAD(uint16_t, v, p); dataSize = v; }
elseif(likely(78==c)) { LOAD(uint32_t, v, p); dataSize = v; }
printf(" %sOP_PUSHDATA(%" PRIu64 ", 0x", indent, dataSize);
showHex(p, dataSize, false);
printf(
")%s\n",
(first && header) ? header : ""
);
p += dataSize;
}
first = false;
}
}
boolcompressPublicKey(
uint8_t *result, // 33 bytes
constuint8_t *decompressedKey // 65 bytes
)
{
EC_KEY *key = EC_KEY_new_by_curve_name(NID_secp256k1);
if(!key) {
errFatal("EC_KEY_new_by_curve_name failed");
returnfalse;
}
EC_KEY *r = o2i_ECPublicKey(&key, &decompressedKey, 65);
if(!r) {
//warning("o2i_ECPublicKey failed");
EC_KEY_free(key);
returnfalse;
}
EC_KEY_set_conv_form(key, POINT_CONVERSION_COMPRESSED);
size_t size = i2o_ECPublicKey(key, &result);
EC_KEY_free(key);
if(33!=size) {
errFatal("i2o_ECPublicKey failed");
returnfalse;
}
returntrue;
}
booldecompressPublicKey(
uint8_t *result, // 65 bytes
constuint8_t *compressedKey // 33 bytes
)
{
EC_KEY *key = EC_KEY_new_by_curve_name(NID_secp256k1);
if(!key) {
errFatal("EC_KEY_new_by_curve_name failed");
returnfalse;
}
EC_KEY *r = o2i_ECPublicKey(&key, &compressedKey, 33);
if(!r) {
//warning("o2i_ECPublicKey failed");
EC_KEY_free(key);
returnfalse;
}
EC_KEY_set_conv_form(key, POINT_CONVERSION_UNCOMPRESSED);
size_t size = i2o_ECPublicKey(key, &result);
EC_KEY_free(key);
if(65!=size) {
errFatal("i2o_ECPublicKey failed");
returnfalse;
}
returntrue;
}
intsolveOutputScript(
uint8_t *pubKeyHash,
constuint8_t *script,
uint64_t scriptSize,
uint8_t *type
)
{
type[0] = 0;
// The most common output script type, pays to hash160(pubKey)
if(
likely(
0x76==script[0] && // OP_DUP
0xA9==script[1] && // OP_HASH160
20==script[2] && // OP_PUSHDATA(20)
0x88==script[scriptSize-2] && // OP_EQUALVERIFY
0xAC==script[scriptSize-1] && // OP_CHECKSIG
25==scriptSize
)
)
{
memcpy(pubKeyHash, 3+script, kRIPEMD160ByteSize);
return0;
}
// Output script commonly found in block reward TX, pays to explicit pubKey
if(
likely(
65==script[0] && // OP_PUSHDATA(65)
0xAC==script[scriptSize-1] && // OP_CHECKSIG
67==scriptSize
)
)
{
uint256_t sha;
sha256(sha.v, 1+script, 65);
rmd160(pubKeyHash, sha.v, kSHA256ByteSize);
return1;
}
// Unusual output script, pays to explicit compressed pubKeys
if(
likely(
33==script[0] && // OP_PUSHDATA(33)
0xAC==script[scriptSize-1] && // OP_CHECKSIG
35==scriptSize
)
)
{
//uint8_t pubKey[65];
//bool ok = decompressPublicKey(pubKey, 1+script);
//if(!ok) return -3;
uint256_t sha;
sha256(sha.v, 1+script, 33);
rmd160(pubKeyHash, sha.v, kSHA256ByteSize);
return2;
}
// Recent output script type, pays to hash160(script)
if(
likely(
0xA9==script[0] && // OP_HASH160
20==script[1] && // OP_PUSHDATA(20)
0x87==script[scriptSize-1] && // OP_EQUAL
23==scriptSize
)
)
{
memcpy(pubKeyHash, 2+script, kRIPEMD160ByteSize);
type[0] = 'S';
type[1] = 0;
return3;
}
// Broken output scripts that were created by p2pool for a while -- very likely lost coins
if(
0x73==script[0] && // OP_IFDUP
0x63==script[1] && // OP_IF
0x72==script[2] && // OP_2SWAP
0x69==script[3] && // OP_VERIFY
0x70==script[4] && // OP_2OVER
0x74==script[5] // OP_DEPTH
)
return -2;
#if0
// TODO : some scripts are solved by satoshi's client and not by the above. track them
// Unknown output script type -- very likely lost coins, but hit the satoshi script solver to make sure
int result = extractAddress(pubKeyHash, script, scriptSize);
if(result) return -1;
return 5;
printf("EXOTIC OUTPUT SCRIPT:\n");
showScript(script, scriptSize);
#endif
return -1;
}
constuint8_t *loadKeyHash(
constuint8_t *hexHash
)
{
staticbool loaded = false;
staticuint8_t hash[kRIPEMD160ByteSize];
constchar *someHexHash = "0568015a9facccfd09d70d409b6fc1a5546cecc6"; // 1VayNert3x1KzbpzMGt2qdqrAThiRovi8 deepbit's very large address
if(unlikely(!loaded))
{
if(0==hexHash)
hexHash = reinterpret_cast<constuint8_t *>(someHexHash);
if((2*kRIPEMD160ByteSize)!=strlen((constchar *)hexHash))
errFatal("specified hash has wrong length");
fromHex(hash, hexHash, sizeof(hash), false);
loaded = true;
}
return hash;
}
uint8_tfromB58Digit(
uint8_t digit,
bool abortOnErr
)
{
if('1'<=digit && digit<='9') return (digit - '1') + 0;
if('A'<=digit && digit<='H') return (digit - 'A') + 9;
if('J'<=digit && digit<='N') return (digit - 'J') + 17;
if('P'<=digit && digit<='Z') return (digit - 'P') + 22;
if('a'<=digit && digit<='k') return (digit - 'a') + 33;
if('m'<=digit && digit<='z') return (digit - 'm') + 44;
if(abortOnErr) errFatal("incorrect base58 digit %c", digit);
return0xff;
}
booladdrToHash160(
uint8_t *hash160,
constuint8_t *addr,
bool checkHash,
bool verbose
)
{
staticBIGNUM *sum = 0;
staticBN_CTX *ctx = 0;
if(unlikely(!ctx)) {
ctx = BN_CTX_new();
BN_CTX_init(ctx);
sum = BN_new();
}
BN_zero(sum);
while(1) {
uint8_t c = *(addr++);
if(unlikely(0==c)) break;
uint8_t dg = fromB58Digit(c);
BN_mul_word(sum, 58);
BN_add_word(sum, dg);
}
uint8_t buf[4 + 2 + kRIPEMD160ByteSize + 4];
size_t size = BN_bn2mpi(sum, 0);
if(sizeof(buf)<size) {
warning(
"BN_bn2mpi returned weird buffer size %d, expected %d\n",
(int)size,
(int)sizeof(buf)
);
returnfalse;
}
BN_bn2mpi(sum, buf);
uint32_t recordedSize =
(buf[0]<<24) |
(buf[1]<<16) |
(buf[2]<< 8) |
(buf[3]<< 0);
if(size!=(4+recordedSize)) {
warning(
"BN_bn2mpi returned bignum size %d, expected %d\n",
(int)recordedSize,
(int)size-4
);
returnfalse;
}
uint8_t *bigNumEnd;
uint8_t *dataEnd = size + buf;
uint8_t *bigNumStart = 4 + buf;
uint8_t *checkSumStart = bigNumEnd = (-4 + dataEnd);
while(0==bigNumStart[0] && bigNumStart<checkSumStart) ++bigNumStart;
ptrdiff_t bigNumSize = bigNumEnd - bigNumStart;
ptrdiff_t padSize = kRIPEMD160ByteSize - bigNumSize;
if(0<padSize) {
if(0<bigNumSize) memcpy(padSize + hash160, bigNumStart, bigNumSize);
memset(hash160, 0, padSize);
} else {
memcpy(hash160, bigNumStart - padSize, kRIPEMD160ByteSize);
}
bool hashOK = true;
if(checkHash) {
uint8_t data[1+kRIPEMD160ByteSize];
memcpy(1+data, hash160, kRIPEMD160ByteSize);
#if defined(LITECOIN)
data[0] = 48;
#else
data[0] = 0;
#endif
uint8_t sha[kSHA256ByteSize];
sha256Twice(sha, data, 1+kRIPEMD160ByteSize);
hashOK =
sha[0]==checkSumStart[0] &&
sha[1]==checkSumStart[1] &&
sha[2]==checkSumStart[2] &&
sha[3]==checkSumStart[3];
if(!hashOK) {
warning(
"checksum of address %s failed. Expected 0x%x%x%x%x, got 0x%x%x%x%x.",
addr,
checkSumStart[0], checkSumStart[1], checkSumStart[2], checkSumStart[3],
sha[0], sha[1], sha[2], sha[3]
);
}
}
return hashOK;
}
voidhash160ToAddr(
uint8_t *addr, // 32 bytes is safe
constuint8_t *hash160,
uint8_t type
)
{
uint8_t buf[4 + 2 + kRIPEMD160ByteSize + kSHA256ByteSize];
constuint32_t size = 4 + 2 + kRIPEMD160ByteSize;
buf[ 0] = (size>>24) & 0xff;
buf[ 1] = (size>>16) & 0xff;
buf[ 2] = (size>> 8) & 0xff;
buf[ 3] = (size>> 0) & 0xff;
buf[ 4] = 0;
buf[ 5] = type;
memcpy(4 + 2 + buf, hash160, kRIPEMD160ByteSize);
sha256Twice(
4 + 2 + kRIPEMD160ByteSize + buf,
4 + 1 + buf,
1 + kRIPEMD160ByteSize
);
staticBIGNUM *b58 = 0;
staticBIGNUM *num = 0;
staticBIGNUM *div = 0;
staticBIGNUM *rem = 0;
staticBN_CTX *ctx = 0;
if(!ctx)
{
ctx = BN_CTX_new();
BN_CTX_init(ctx);
b58 = BN_new();
num = BN_new();
div = BN_new();
rem = BN_new();
BN_set_word(b58, 58);
}
BN_mpi2bn(buf, 4+size, num);
uint8_t *p = addr;
while(!BN_is_zero(num))
{
int r = BN_div(div, rem, num, b58, ctx);
if(!r) errFatal("BN_div failed");
BN_copy(num, div);
uint32_t digit = BN_get_word(rem);
*(p++) = b58Digits[digit];
}
constuint8_t *a = (5+buf);
constuint8_t *e = 1 + kRIPEMD160ByteSize + (5+buf);
while(a<e && 0==a[0])
{
*(p++) = b58Digits[0];
++a;
}
*(p--) = 0;
while(addr<p)
{
uint8_t a = *addr;
uint8_t b = *p;
*(addr++) = b;
*(p--) = a;
}
}
boolguessHash160(
uint8_t *hash160,
constuint8_t *addr,
bool verbose
)
{
constuint8_t *p = addr;
while(1) {
uint8_t c = *p;
uint8_t h = fromHexDigit(c, false);
if(0xff==h) break;
++p;
}
ptrdiff_t size = p - addr;
if(2*kRIPEMD160ByteSize==size) {
fromHex(hash160, addr, kRIPEMD160ByteSize, false);
returntrue;
}
returnaddrToHash160(hash160, addr, true, verbose);
}
staticbooladdAddr(
std::vector<uint160_t> &result,
constuint8_t *buf,
bool verbose
)
{
uint160_t h160;
bool ok = guessHash160(h160.v, buf, verbose);
if(ok) result.push_back(h160);
return ok;
}
voidloadKeyList(
std::vector<uint160_t> &result,
constchar *str,
bool verbose
)
{
bool isFile = (
'f'==str[0] &&
'i'==str[1] &&
'l'==str[2] &&
'e'==str[3] &&
':'==str[4]
);
if(!isFile) {
addAddr(result, (uint8_t*)str, true);
return;
}
constchar *fileName = 5+str;
bool isStdIn = ('-'==fileName[0] && 0==fileName[1]);
FILE *f = isStdIn ? stdin : fopen(fileName, "r");
if(!f) {
warning("couldn't open %s for reading\n", fileName);
return;
}
size_t found = 0;
size_t lineCount = 0;
double start = usecs();
while(1) {
char buf[1024];
char *r = fgets(buf, sizeof(buf), f);
if(r==0) break;
++lineCount;
size_t sz = strlen(buf);
if('\n'==buf[sz-1]) buf[sz-1] = 0;
uint160_t h160;
bool ok = addAddr(result, (uint8_t*)buf, verbose);
if(ok) {
++found;
} else {
if(verbose) {
warning(
"in file %s, line %d, %s is not an address\n",
fileName,
lineCount,
buf
);
}
}
}
fclose(f);
double elapsed = (usecs() - start)*1e-6;
info(
"file %s loaded in %.2f secs, found %d addresses",
fileName,
elapsed,
(int)found
);
}
voidloadHash256List(
std::vector<uint256_t> &result,
constchar *str,
bool verbose
)
{
bool isFile = (
'f'==str[0] &&
'i'==str[1] &&
'l'==str[2] &&
'e'==str[3] &&
':'==str[4]
);
if(!isFile) {
size_t sz = strlen(str);
if(2*kSHA256ByteSize!=sz) errFatal("%s is not a valid TX hash", str);
uint256_t h256;
fromHex(h256.v, (constuint8_t *)str);
result.push_back(h256);
return;
}
constchar *fileName = 5+str;
bool isStdIn = ('-'==fileName[0] && 0==fileName[1]);
FILE *f = isStdIn ? stdin : fopen(fileName, "r");
if(!f) {
warning("couldn't open %s for reading\n", fileName);
return;
}
size_t lineCount = 0;
while(1) {
char buf[1024];
char *r = fgets(buf, sizeof(buf), f);
if(r==0) break;
++lineCount;
size_t sz = strlen(buf);
if(2*kSHA256ByteSize<=sz) {
uint256_t h256;
bool ok = fromHex(h256.v, (constuint8_t *)buf, kSHA256ByteSize, true, false);
if(ok)
result.push_back(h256);
elseif(verbose) {
warning(
"in file %s, line %d, %s is not a valid TX hash\n",
fileName,
lineCount,
buf
);
}
}
}
fclose(f);
}
std::string pr128(
constuint128_t &y
)
{
staticchar result[1024];
char *p = 1023+result;
*(p--) = 0;
uint128_t x = y;
while(1) {
*(p--) = (char)((x % 10) + '0');
if(unlikely(0==x)) break;
x /= 10;
}
++p;
returnstd::string(p[0]!='0' ? p : (1022+result==p) ? p : p+1);
}
voidshowFullAddr(
const Hash160 &addr,
bool both
)
{
uint8_t b58[128];
if(both) showHex(addr, sizeof(uint160_t), false);
hash160ToAddr(b58, addr);
printf(
"%s%s",
both ? "" : "", b58
);
}
uint64_tgetBaseReward(
uint64_t h
)
{
staticconstuint64_tkCoin = 100000000;
uint64_t reward = (50 * kCoin);
uint64_t shift = (h/210000);
reward >>= shift;
return reward;
}
doubledifficulty(unsignedint bits)
{
int nShift = (bits >> 24) & 0xff;
double dDiff = (double)0x0000ffff / (double)(bits & 0x00ffffff);
while (nShift < 29)
{
dDiff *= 256.0;
nShift++;
}
while (nShift > 29)
{
dDiff /= 256.0;
nShift--;
}
return dDiff;
}