-
Notifications
You must be signed in to change notification settings - Fork 135
/
btcdeb.cpp
544 lines (489 loc) · 18.2 KB
/
btcdeb.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
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
#include <cstdio>
#include <unistd.h>
#include <inttypes.h>
#include <instance.h>
#include <tinyformat.h>
#include <cliargs.h>
#include <datasets.h>
#include <functions.h>
#include <config/bitcoin-config.h>
#include <debugger/version.h>
bool quiet = false;
bool pipe_in = false; // xxx | btcdeb
bool pipe_out = false; // btcdeb xxx > file
bool verbose = false;
struct script_verify_flag {
std::string str;
uint32_t id;
script_verify_flag(std::string str_in, uint32_t id_in) : str(str_in), id(id_in) {}
};
static const std::vector<script_verify_flag> svf {
#define _(v) script_verify_flag(#v, SCRIPT_VERIFY_##v)
_(P2SH),
_(STRICTENC),
_(DERSIG),
_(LOW_S),
_(NULLDUMMY),
_(SIGPUSHONLY),
_(MINIMALDATA),
_(DISCOURAGE_UPGRADABLE_NOPS),
_(CLEANSTACK),
_(CHECKLOCKTIMEVERIFY),
_(CHECKSEQUENCEVERIFY),
_(WITNESS),
_(DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM),
_(MINIMALIF),
_(NULLFAIL),
_(WITNESS_PUBKEYTYPE),
_(CONST_SCRIPTCODE),
_(TAPROOT),
_(DISCOURAGE_UPGRADABLE_TAPROOT_VERSION),
_(DISCOURAGE_OP_SUCCESS),
_(DISCOURAGE_UPGRADABLE_PUBKEYTYPE),
#undef _
};
static const std::string svf_string(uint32_t flags, std::string separator = " ") {
std::string s = "";
while (flags) {
for (const auto& i : svf) {
if (flags & i.id) {
flags ^= i.id;
s += separator + i.str;
}
}
}
return s.size() ? s.substr(separator.size()) : "(none)";
}
static const unsigned int svf_get_flag(std::string s) {
for (const auto& i : svf) if (i.str == s) return i.id;
return 0;
}
static unsigned int svf_parse_flags(unsigned int in_flags, const char* mod) {
char buf[128];
bool adding;
size_t j = 0;
for (size_t i = 0; mod[i-(i>0)]; i++) {
if (!mod[i] || mod[i] == ',') {
buf[j] = 0;
if (buf[0] != '+' && buf[0] != '-') {
fprintf(stderr, "svf_parse_flags(): expected + or - near %s\n", buf);
exit(1);
}
adding = buf[0] == '+';
unsigned int f = svf_get_flag(&buf[1]);
if (!f) {
fprintf(stderr, "svf_parse_flags(): unknown verification flag: %s\n", &buf[1]);
exit(1);
}
if (adding) in_flags |= f; else in_flags &= ~f;
j = 0;
} else buf[j++] = mod[i];
}
return in_flags;
}
void setup_debug_set(const std::string& debug_params, std::set<std::string>& debug_set)
{
if (debug_set.empty() && !debug_params.empty()) delimiter_set(debug_params, debug_set);
}
bool get_debug_flag(const std::string& name, const std::set<std::string>& debug_set, bool fallback = false)
{
// variant 1: debug parameter, lowercase, without prefix, contained in debug_set
// variant 2: environment var, all caps, prefixed with 'DEBUG_'
const auto& v = std::getenv(("DEBUG_" + ToUpper(name)).c_str());
return debug_set.count(name) || (v ? strcmp("0", v) : fallback);
}
int main(int argc, char* const* argv)
{
pipe_in = !isatty(fileno(stdin)) || std::getenv("DEBUG_SET_PIPE_IN");
pipe_out = !isatty(fileno(stdout)) || std::getenv("DEBUG_SET_PIPE_OUT");
if (pipe_in || pipe_out) btc_logf = btc_logf_dummy;
cliargs ca;
ca.add_option("help", 'h', no_arg);
ca.add_option("quiet", 'q', no_arg);
ca.add_option("tx", 'x', req_arg);
ca.add_option("txin", 'i', req_arg);
ca.add_option("modify-flags", 'f', req_arg);
ca.add_option("select", 's', req_arg);
ca.add_option("pretend-valid", 'P', req_arg);
ca.add_option("default-flags", 'd', no_arg);
ca.add_option("allow-disabled-opcodes", 'z', no_arg);
ca.add_option("version", 'V', no_arg);
ca.add_option("dataset", 'X', opt_arg);
ca.add_option("verbose", 'v', no_arg);
ca.add_option("debug", 'D', req_arg);
ca.parse(argc, argv);
quiet = ca.m.count('q') || pipe_in || pipe_out;
btcdeb_verbose = verbose = ca.m.count('v');
if (quiet && verbose) {
fprintf(stderr, "You cannot both require silence and verbosity.\n");
exit(1);
}
if (ca.m.count('h')) {
fprintf(stderr, "Syntax: %s [-V|--version] [-v|--verbose] [-q|--quiet] [--allow-disabled-opcodes|-z] [--debug=[sighash|signing|segwit[,...]]|-D[sighash|...]]] [--dataset=<name>|-X<name>] [--tx=[amount1,amount2,..:]<hex> [--txin=<hex>] [--modify-flags=<flags>|-f<flags>] [--select=<index>|-s<index>] [--pretend-valid=<sig>:<pubkey>[,<sig2>:<pubkey2>[,...]]|-P<sig>:<pubkey>[,...]] [<script> [<stack bottom item> [... [<stack top item>]]]]]\n", argv[0]);
fprintf(stderr, "If executed with no arguments, an empty script and empty stack is provided\n");
fprintf(stderr, "If executed with a --dataset, the --txin and --tx values are prepopulated with values from the given dataset; though this may be overridden using subsequent --tx/--txin= statements. To see available datasets, type %s --dataset or %s -X\n", argv[0], argv[0]);
fprintf(stderr, "To debug transaction signatures, you need to either provide the transaction hex (the WHOLE hex, not just the txid) "
"as well as (SegWit only) every amount for the inputs, or provide (one or more) signature:pubkey pairs using --pretend-valid\n");
fprintf(stderr, "E.g. if a SegWit transaction abc123... has 2 inputs of 0.1 btc and 0.002 btc, you would do tx=0.1,0.002:abc123...\n");
fprintf(stderr, "You do not need the amounts for non-SegWit transactions\n");
fprintf(stderr, "By providing a txin as well as a tx and no script or stack, btcdeb will attempt to set up a debug session for the verification of the given input by pulling the appropriate values out of the respective transactions. you do not need amounts for --tx in this case\n");
fprintf(stderr, "The --allow-disabled-opcodes flag enables experimental support for OP_CAT, OP_2MUL, etc (disabled in Bitcoin)\n");
fprintf(stderr, "You can modify verification flags using the --modify-flags command. separate flags using comma (,). prefix with + to enable, - to disable. e.g. --modify-flags=\"-NULLDUMMY,-MINIMALIF\"\n");
fprintf(stderr, "You can set the environment variables DEBUG_SIGHASH, DEBUG_SIGNING, and DEBUG_SEGWIT to increase verbosity for the respective areas.\n");
fprintf(stderr, "The standard (enabled by default) flags can be reviewed by typing %s --default-flags or %s -d\n", argv[0], argv[0]);
fprintf(stderr, "The --verbose flag will turn btcdeb into a helpful hintful chatter-box in various situations.\n");
return 0;
} else if (ca.m.count('d')) {
printf("The standard (enabled by default) flags are:\n・ %s\n", svf_string(STANDARD_SCRIPT_VERIFY_FLAGS, "\n・ ").c_str());
return 0;
} else if (ca.m.count('V')) {
printf("btcdeb (\"The Bitcoin Script Debugger\") " VERSION() "\n");
return 0;
} else if (ca.m.count('X')) {
process_datasets(ca.m, verbose);
} else if (!quiet) {
printf("btcdeb " VERSION() " -- type `%s -h` for start up options\n", argv[0]);
}
if (!pipe_in) {
std::set<std::string> debug_set;
setup_debug_set(ca.m['D'], debug_set);
// temporarily defaulting most to ON
if (get_debug_flag("sighash", debug_set)) btc_sighash_logf = btc_logf_stderr;
if (get_debug_flag("signing", debug_set, true)) btc_sign_logf = btc_logf_stderr;
if (get_debug_flag("segwit", debug_set, true)) btc_segwit_logf = btc_logf_stderr;
if (get_debug_flag("taproot", debug_set, true)) btc_taproot_logf = btc_logf_stderr;
btc_logf("LOG:");
if (btc_enabled(btc_sighash_logf)) btc_logf(" sighash");
if (btc_enabled(btc_sign_logf)) btc_logf(" signing");
if (btc_enabled(btc_segwit_logf)) btc_logf(" segwit");
if (btc_enabled(btc_taproot_logf)) btc_logf(" taproot");
btc_logf("\n");
btc_logf("notice: btcdeb has gotten quieter; use --verbose if necessary (this message is temporary)\n");
}
unsigned int flags = STANDARD_SCRIPT_VERIFY_FLAGS;
if (ca.m.count('f')) {
flags = svf_parse_flags(flags, ca.m['f'].c_str());
if (verbose) fprintf(stderr, "resulting flags:\n・ %s\n", svf_string(flags, "\n・ ").c_str());
}
bool allow_disabled_opcodes = ca.m.count('z') > 0;
int selected = -1;
if (ca.m.count('s')) {
selected = atoi(ca.m['s'].c_str());
}
if (ca.l.size() > 0 && !strncmp(ca.l[0], "tx=", 3)) {
// backwards compatibility; move into tx
ca.m['x'] = &ca.l[0][3];
ca.l.erase(ca.l.begin(), ca.l.begin() + 1);
}
// crude check for tx=
if (ca.m.count('x')) {
try {
if (!instance.parse_transaction(ca.m['x'].c_str(), true)) {
return 1;
}
} catch (std::exception const& ex) {
fprintf(stderr, "error parsing spending (--tx) transaction: %s\n", ex.what());
return 1;
}
if (verbose) fprintf(stderr, "got %stransaction %s:\n%s\n", instance.sigver == SigVersion::WITNESS_V0 ? "segwit " : "", instance.tx->GetHash().ToString().c_str(), instance.tx->ToString().c_str());
}
if (ca.m.count('i')) {
try {
if (!instance.parse_input_transaction(ca.m['i'].c_str(), selected)) {
return 1;
}
} catch (std::exception const& ex) {
fprintf(stderr, "error parsing input (--txin) transaction: %s\n", ex.what());
return 1;
}
if (verbose) fprintf(stderr, "got input tx #%" PRId64 " %s:\n%s\n", instance.txin_index, instance.txin->GetHash().ToString().c_str(), instance.txin->ToString().c_str());
}
char* script_str = nullptr;
if (pipe_in) {
char buf[1024];
if (!fgets(buf, 1024, stdin)) {
fprintf(stderr, "warning: no input\n");
}
int len = strlen(buf);
while (len > 0 && (buf[len-1] == '\n' || buf[len-1] == '\r')) buf[--len] = 0;
script_str = strdup(buf);
} else if (ca.l.size() > 0) {
script_str = strdup(ca.l[0]);
ca.l.erase(ca.l.begin(), ca.l.begin() + 1);
}
if (ca.m.count('P')) {
if (!instance.parse_pretend_valid_expr(ca.m['P'].c_str())) {
return 1;
}
}
CScript script;
if (script_str) {
if (instance.parse_script(script_str)) {
if (verbose) btc_logf("valid script\n");
} else {
fprintf(stderr, "invalid script\n");
return 1;
}
free(script_str);
}
instance.parse_stack_args(ca.l);
if (instance.txin && instance.tx && ca.l.size() == 0 && instance.script.size() == 0) {
if (!instance.configure_tx_txin()) return 1;
}
if (!instance.setup_environment(flags)) {
fprintf(stderr, "failed to initialize script environment: %s\n", instance.error_string().c_str());
return 1;
}
env = instance.env;
env->allow_disabled_opcodes = allow_disabled_opcodes;
std::vector<CScript*> script_ptrs;
std::vector<std::string> script_headers;
script_ptrs.push_back(&env->script);
script_headers.push_back("");
CScript::const_iterator it = env->script.begin();
opcodetype opcode;
valtype vchPushValue, p2sh_script_payload;
while (env->script.GetOp(it, opcode, vchPushValue)) { p2sh_script_payload = vchPushValue; ++count; }
std::vector<std::string> tc_desc;
CScript p2sh_script;
bool has_p2sh = false;
if (env->is_p2sh && env->p2shstack.size() > 0) {
has_p2sh = true;
const valtype& p2sh_script_val = env->p2shstack.back();
p2sh_script = CScript(p2sh_script_val.begin(), p2sh_script_val.end());
} else if (env->sigversion == SigVersion::TAPSCRIPT) {
// add commitment phase
tc_desc = env->tce->Description();
count += tc_desc.size();
}
if (instance.successor_script.size()) {
script_ptrs.push_back(&instance.successor_script);
script_headers.push_back("<<< scriptPubKey >>>");
count++;
it = instance.successor_script.begin();
while (instance.successor_script.GetOp(it, opcode, vchPushValue)) ++count;
if ((env->flags & SCRIPT_VERIFY_P2SH) && instance.successor_script.IsPayToScriptHash()) {
has_p2sh = true;
p2sh_script = CScript(p2sh_script_payload.begin(), p2sh_script_payload.end());
}
}
if (has_p2sh) {
script_ptrs.push_back(&p2sh_script);
script_headers.push_back("<<< P2SH script >>>");
count++;
it = p2sh_script.begin();
while (p2sh_script.GetOp(it, opcode, vchPushValue)) ++count;
}
script_lines = (char**)malloc(sizeof(char*) * count);
int i = 0;
char buf[1024];
if (env->sigversion == SigVersion::TAPSCRIPT) {
for (const auto& s : tc_desc) {
script_lines[i++] = strdup(strprintf("#%04d %s", i, s).c_str());
}
}
for (size_t siter = 0; siter < script_ptrs.size(); ++siter) {
CScript* script = script_ptrs[siter];
const std::string& header = script_headers[siter];
if (header != "") script_lines[i++] = strdup(header.c_str());
it = script->begin();
while (script->GetOp(it, opcode, vchPushValue)) {
char* pbuf = buf;
pbuf += snprintf(pbuf, 1024, "#%04d ", i);
if (vchPushValue.size() > 0) {
snprintf(pbuf, 1024 + pbuf - buf, "%s", HexStr(std::vector<uint8_t>(vchPushValue.begin(), vchPushValue.end())).c_str());
} else {
snprintf(pbuf, 1024 + pbuf - buf, "%s", GetOpName(opcode).c_str());
}
script_lines[i++] = strdup(buf);
}
}
if (instance.has_preamble) {
if (verbose) btc_logf(
"*** note: there is a for-clarity preamble\n\n"
"This is a virtual script that btcdeb generates and presents to you so you can step through the validation process one step at a time. The input is simply the redeem script hash, whereas btcdeb presents it as a OP_DUP, OP_HASH160, <that hash>, OP_EQUALVERIFY script.\n"
); else if (!quiet) btc_logf("note: there is a for-clarity preamble (use --verbose for details)\n");
}
if (pipe_in || pipe_out) {
if (!ContinueScript(*env)) {
fprintf(stderr, "error: %s\n", ScriptErrorString(*env->serror).c_str());
print_dualstack();
return 1;
}
print_stack(env->stack, true);
return 0;
} else {
kerl_set_history_file(".btcdeb_history");
kerl_set_repeat_on_empty(true);
kerl_set_enable_sensitivity();
kerl_set_comment_char('#');
kerl_register("step", fn_step, "Execute one instruction and iterate in the script.");
kerl_register("rewind", fn_rewind, "Go back in time one instruction.");
kerl_register("stack", fn_stack, "Print stack content.");
kerl_register("altstack", fn_altstack, "Print altstack content.");
kerl_register("vfexec", fn_vfexec, "Print vfexec content.");
kerl_register("exec", fn_exec, "Execute command.");
kerl_register("tf", fn_tf, "Transform a value using a given function.");
kerl_set_completor("exec", compl_exec, true);
kerl_set_completor("tf", compl_tf, false);
kerl_register("print", fn_print, "Print script.");
kerl_register_help("help");
if (!quiet) btc_logf("%d op script loaded. type `help` for usage information\n", count);
print_dualstack();
if (env->curr_op_seq < count) {
printf("%s\n", script_lines[env->curr_op_seq]);
}
kerl_run("btcdeb> ");
}
}
static const char* opnames[] = {
// push value
"OP_0",
"OP_FALSE",
"OP_PUSHDATA1",
"OP_PUSHDATA2",
"OP_PUSHDATA4",
"OP_1NEGATE",
"OP_RESERVED",
"OP_1",
"OP_TRUE",
"OP_2",
"OP_3",
"OP_4",
"OP_5",
"OP_6",
"OP_7",
"OP_8",
"OP_9",
"OP_10",
"OP_11",
"OP_12",
"OP_13",
"OP_14",
"OP_15",
"OP_16",
// control
"OP_NOP",
"OP_VER",
"OP_IF",
"OP_NOTIF",
"OP_VERIF",
"OP_VERNOTIF",
"OP_ELSE",
"OP_ENDIF",
"OP_VERIFY",
"OP_RETURN",
// stack ops
"OP_TOALTSTACK",
"OP_FROMALTSTACK",
"OP_2DROP",
"OP_2DUP",
"OP_3DUP",
"OP_2OVER",
"OP_2ROT",
"OP_2SWAP",
"OP_IFDUP",
"OP_DEPTH",
"OP_DROP",
"OP_DUP",
"OP_NIP",
"OP_OVER",
"OP_PICK",
"OP_ROLL",
"OP_ROT",
"OP_SWAP",
"OP_TUCK",
// splice ops
"OP_CAT",
"OP_SUBSTR",
"OP_LEFT",
"OP_RIGHT",
"OP_SIZE",
// bit logic
"OP_INVERT",
"OP_AND",
"OP_OR",
"OP_XOR",
"OP_EQUAL",
"OP_EQUALVERIFY",
"OP_RESERVED1",
"OP_RESERVED2",
// numeric
"OP_1ADD",
"OP_1SUB",
"OP_2MUL",
"OP_2DIV",
"OP_NEGATE",
"OP_ABS",
"OP_NOT",
"OP_0NOTEQUAL",
"OP_ADD",
"OP_SUB",
"OP_MUL",
"OP_DIV",
"OP_MOD",
"OP_LSHIFT",
"OP_RSHIFT",
"OP_BOOLAND",
"OP_BOOLOR",
"OP_NUMEQUAL",
"OP_NULEQUALVERIFY",
"OP_NUMNOTEQUAL",
"OP_LESSTHAN",
"OP_GREATERTHAN",
"OP_LESSTHANOREQUAL",
"OP_GREATERTHANOREQUAL",
"OP_MIN",
"OP_MAX",
"OP_WITHIN",
// crypto
"OP_RIPEMD160",
"OP_SHA1",
"OP_SHA256",
"OP_HASH160",
"OP_HASH256",
"OP_CODESEPARATOR",
"OP_CHECKSIG",
"OP_CHECKSIGVERIFY",
"OP_CHECKMULTISIG",
"OP_CHECKMULTISIGVERIFY",
"OP_CHECKSIGADD",
// expansion
"OP_NOP1",
"OP_CHECKLOCKTIMEVERIFY",
"OP_NOP2",
"OP_CHECKSEQUENCEVERIFY",
"OP_NOP3",
"OP_NOP4",
"OP_NOP5",
"OP_NOP6",
"OP_NOP7",
"OP_NOP8",
"OP_NOP9",
"OP_NOP10",
// // template matching params
// "OP_SMALLINTEGER",
// "OP_PUBKEYS",
// "OP_PUBKEYHASH",
// "OP_PUBKEY",
nullptr,
};
char* compl_exec(const char* text, int continued) {
static int list_index, len;
const char *name;
/* If this is a new word to complete, initialize now. This includes
saving the length of TEXT for efficiency, and initializing the index
variable to 0. */
if (!continued) {
list_index = -1;
len = strlen(text);
}
/* Return the next name which partially matches from the names list. */
while (opnames[++list_index]) {
name = opnames[list_index];
if (strncasecmp(name, text, len) == 0)
return strdup(name);
}
/* If no names matched, then return NULL. */
return (char *)NULL;
}