forked from bitcoin-core/btcdeb
-
Notifications
You must be signed in to change notification settings - Fork 10
/
mastify.cpp
479 lines (459 loc) · 19.5 KB
/
mastify.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
#include <cstdio>
#include <unistd.h>
#include <value.h>
#include <merkle.h>
#include <streams.h>
#include <script/interpreter.h>
#include <policy/policy.h>
typedef std::vector<unsigned char> valtype;
bool piping = false;
struct CodePath {
CScript script;
size_t params;
size_t stack_size;
std::vector<bool> active;
std::vector<size_t> anti_indices;
size_t path_index;
bool is_active() { return active.size() == 0 || active.back(); }
void swap_active() { if (!active.size()) active.push_back(true); active[active.size()-1] = !active[active.size()-1]; }
void pop_active() { if (!active.size()) { fprintf(stderr, "error: ELSE without IF\n"); exit(1); } active.pop_back(); }
CodePath(CScript script_in = CScript(), size_t params_in = 0, size_t stack_size_in = 0, std::vector<bool> active_in = std::vector<bool>())
: script(script_in)
, params(params_in)
, stack_size(stack_size_in)
, active(active_in)
, path_index(0)
{}
CodePath(std::vector<Value>& pubkeys) : CodePath()
{
// we want to create a series of OP_CHECKSEQUENCE{VERIFY} calls, one per
// pubkey, the final one missing the VERIFY part
auto& noverify = pubkeys.back();
for (auto& key : pubkeys) {
script << key.data_value() << (noverify == key ? OP_CHECKSIG : OP_CHECKSIGVERIFY);
}
params = pubkeys.size(); // one signature per pubkey
}
CodePath split(CScript& left, CScript& right, size_t other_index) {
CodePath c{script, params, stack_size, active};
script += left;
c.script += right;
c.active.push_back(false);
active.push_back(true);
anti_indices.push_back(other_index);
return c;
}
void touch(size_t spawned, size_t slain, bool debug = false, opcodetype opcode = OP_0) {
// if (debug) printf("[%s]: (+%zu, -%zu) for %zu (%zu) -> ", GetOpName(opcode), spawned, slain, stack_size, params);
if (stack_size < slain) {
// need more parameters
params += slain - stack_size;
stack_size = slain;
}
stack_size = stack_size + spawned - slain;
// if (debug) printf("%zu (%zu)\n", stack_size, params);
}
void add_fromaltstacks() {
CScript prefix_script;
for (auto i = 0; i < params; ++i) {
prefix_script << OP_FROMALTSTACK;
}
script = prefix_script + script;
}
};
std::string repeat(const char* v, size_t count, std::string separator = " ") {
std::string res = v;
count --;
while (count > 0) {
res += separator + v;
count --;
}
return res;
}
void split_codepaths(std::vector<CodePath>& paths, CScript& left, CScript& right) {
size_t len = paths.size();
for (size_t i = 0; i < len; i++) {
if (paths[i].is_active()) {
paths.push_back(paths[i].split(left, right, paths.size()));
} else {
paths[i].active.push_back(false);
}
}
}
void interpret_opcode(std::vector<CodePath>& paths, opcodetype opcode) {
// first update params
size_t spawned, slain;
GetStackFeatures(opcode, spawned, slain);
if (spawned + slain) {
// bool first = true;
for (auto& path : paths) {
if (path.is_active()) {
path.touch(spawned, slain);
// first = false;
}
}
}
switch (opcode) {
case OP_IF:
case OP_NOTIF: {
int activation = opcode == OP_IF;
CScript scripts[2];
scripts[1 - activation] << OP_VERIFY;
scripts[activation] << OP_NOT << OP_VERIFY;
split_codepaths(paths, scripts[0], scripts[1]);
} break;
case OP_ELSE:
for (auto& path : paths) {
path.swap_active();
}
break;
case OP_ENDIF:
for (auto& path : paths) {
path.pop_active();
}
break;
default:
for (auto& path : paths) {
if (path.is_active()) {
path.script << opcode;
}
}
break;
}
}
void update_path(size_t& idx, std::vector<CodePath>& paths, opcodetype opcode, std::vector<bool> state) {
switch (opcode) {
case OP_IF:
case OP_NOTIF: {
bool passed = state.back();
if (passed) {
// iterate path index
paths[idx].path_index++;
} else {
// swap to anti-index
fprintf(stderr, "switching to alternative path from idx=%zu to idx=", idx);
idx = paths[idx].anti_indices[paths[idx].path_index];
fprintf(stderr, "%zu\n", idx);
}
} break;
default:
break;
}
}
int iterate_multisig(std::string indent, std::vector<CodePath>& paths, int required, std::vector<Value>& pubkeys, std::vector<bool>& selected, int selected_now, std::vector<Value>& picked, size_t cursor) {
// if cursor >= pubkeys.size(), we are out of bounds
if (cursor >= pubkeys.size() || picked.size() >= required) return -1;
// if picked.size() < required, we can try with the cursor element enabled
// note: we use a ref to a single vector for picked; this is fine, because
// we always reset to the incoming state before we exit (by removing the pubkey we pushed)
picked.push_back(pubkeys[cursor]);
int rval = -1;
if (selected[cursor]) {
selected_now++;
if (selected_now == required) rval = paths.size();
}
// printf("%s* picking %zu=%s [%zu picked; selected=%s; selected_now=%d, rval=%d]\n", indent.c_str(), cursor, pubkeys[cursor].hex_str().c_str(), picked.size(), selected[cursor] ? "true" : "false", selected_now, rval);
// if this results in picked.size() == required, we have a combo; this
// also means we have no other combinations through recursion, when this
// is enabled
if (picked.size() == required) {
paths.emplace_back(picked);
} else {
int rval2 = iterate_multisig(indent + " ", paths, required, pubkeys, selected, selected_now, picked, cursor + 1);
// printf("%s* got back %d\n", indent.c_str(), rval2);
rval = rval == -1 ? rval2 : rval;
}
selected_now -= selected[cursor];
assert(picked.back() == pubkeys[cursor]);
picked.pop_back();
int rval2 = iterate_multisig(indent + " ", paths, required, pubkeys, selected, selected_now, picked, cursor + 1);
// printf("%s* got back %d :: result %d\n", indent.c_str(), rval2, rval == -1 ? rval2 : rval);
return rval == -1 ? rval2 : rval;
}
int iterate_multisig(std::vector<CodePath>& paths, int required, std::vector<Value>& pubkeys, std::vector<bool>& selected) {
std::vector<Value> picked;
return iterate_multisig("", paths, required, pubkeys, selected, 0, picked, 0);
}
int main(int argc, const char** argv)
{
if (argc < 2) {
fprintf(stderr, "syntax: %s [--trimmable] [--multisig=<required>] <script> [<arg1> [<arg2> [...]]]\n", argv[0]);
fprintf(stderr,
"e.g.: %s --trimmable \"[\n"
// " # Source: https://lists.linuxfoundation.org/pipermail/lightning-dev/2015-July/000021.html\n"
// " # They present HTLC's R value, or either revocation hash:\n"
// " # Our revocation value: 8c2574892063f995fdf756bce07f46c1a5193e54cd52837ed91e32008ccf41ac\n"
// " # Revocation key 1: 9b4b4ae7be32f4728ea406cf9ab8356669c86849c574b51ccf1d871779b13a22\n"
// " # Revocation key 2: 568b2573a69d9010c82f556f4160d5672d7877f9abebb5d401cbaa3caefdf578\n"
// " OP_DUP OP_HASH160 # Create a hash160 of the key\n"
// " OP_DUP aec8d17368a55051e3aa9cf14563a4e537a01a20 OP_EQUAL\n"
// " OP_TOALTSTACK OP_DUP 3b75accc015232a588750a33001827bb012f3c19 OP_EQUAL\n"
// " OP_FROMALTSTACK OP_ADD OP_SWAP fc2f0717a2e4bb32789f5134a5de83b83e14dc57 OP_EQUAL\n"
// " OP_ADD\n"
// " OP_IF\n"
// " # One hash matched, pay to them.\n"
// " # Input is: 0375ceeb0d9d99ff238f85aa5d18e318c7f0a84d3b7bec31a99df66df0bf887ee4\n"
// " OP_DROP OP_DUP OP_HASH160 879fc35b1d179d5141025b47f929e6ced5387a9f\n"
// " OP_ELSE\n"
// " # Must be us, with HTLC timed out.\n"
// " # HTLC absolute timeout part\n"
// " 1515988693 OP_CHECKLOCKTIMEVERIFY OP_DROP\n"
// " # Verification relative timeout\n"
// " 144 OP_CHECKSEQUENCEVERIFY OP_DROP\n"
// " # Input is: 020c23a5f833b3cb2a29bf81e246886e0ea098989b359c401655c96d3f1a37567a\n"
// " OP_DUP OP_HASH160 293073143bf24cadbc1bff9945dd6bb9c7a8900f\n"
// " OP_ENDIF\n"
// " OP_EQUALVERIFY\n"
// " OP_CHECKSIG\n"
"OP_IF\n"
"144\n"
"OP_CHECKSEQUENCEVERIFY\n"
"OP_DROP\n"
"020c23a5f833b3cb2a29bf81e246886e0ea098989b359c401655c96d3f1a37567a\n"
"OP_ELSE\n"
"568b2573a69d9010c82f556f4160d5672d7877f9abebb5d401cbaa3caefdf578\n"
"OP_ENDIF\n"
"OP_CHECKSIG\n"
"]\"\n", argv[0]
);
fprintf(stderr,
"mastify works in two modes:\n"
"- general mode, which simply gives you the possible outcomes and scripts, as well as the merkle tree; this is the behavior when no arguments are provided to the input\n"
"- execution mode, which gives you the solution to spending an existing mastified script; this is the behavior when 1 or more arguments are provided\n"
);
fprintf(stderr,
"you can also provide a series of pubkeys for a multisig funding construct, when using --multisig=<required>, where <required> is the required number of signatures to allow spending\n"
"e.g.: %s --multisig=2 \\\n"
" 020c23a5f833b3cb2a29bf81e246886e0ea098989b359c401655c96d3f1a37567a \\\n"
" 0375ceeb0d9d99ff238f85aa5d18e318c7f0a84d3b7bec31a99df66df0bf887ee4 \\\n"
" 02be3d85951a06478e60d7663a8788e91c04923f23a5f0118794cdaef8ec31cb74\n"
"you can associate keys with signatures, if you want a spending solution.\n"
"e.g.: %s --multisig=2 \\\n"
" 020c23a5f833b3cb2a29bf81e246886e0ea098989b359c401655c96d3f1a37567a=3044022000f82e4815585181fb1dd42155263044e556f5f3204119a9c54f3892eadb123802202f1480caf1cda19c39dae5826f3079a7775f1336174e13b394fb59107e5f808001 \\\n"
" 0375ceeb0d9d99ff238f85aa5d18e318c7f0a84d3b7bec31a99df66df0bf887ee4 \\\n"
" 02be3d85951a06478e60d7663a8788e91c04923f23a5f0118794cdaef8ec31cb74=30440220526b8f15de0c6d3c3988d4565e2f22f034d7d904bf1c8b9251e67777c50230060220346dcbd3309880ec0ff69cbb6467c456ecb7621fefcd845c62e42e3b6a4be30001\n"
, argv[0], argv[0]
);
return 1;
}
// process -- args until we run out of them; remainder = leaves
int argi = 1;
bool preprocessed = false;
bool legacy = false;
bool btcdeb = false;
bool trimmable = false;
bool multisig = false;
int multisig_required;
while (argi < argc && strlen(argv[argi]) > 7 && argv[argi][0] == '-') {
const char* v = argv[argi];
if (!strcmp(v, "--legacy")) {
legacy = true;
} else if (!strcmp(v, "--btcdeb")) {
btcdeb = true;
} else if (!strcmp(v, "--trimmable")) {
trimmable = true;
} else if (!strncmp(v, "--multisig=", strlen("--multisig="))) {
multisig = true;
multisig_required = atoi(&v[strlen("--multisig=")]);
} else {
fprintf(stderr, "unknown argument: %s\n", v);
return -1;
}
argi++;
}
bool fast = !legacy;
piping = btcdeb || !isatty(fileno(stdin));
if (piping) btc_logf = btc_logf_dummy;
std::vector<Value> args;
std::vector<CodePath> paths;
size_t current_path;
bool selected_path;
if (multisig) {
std::vector<Value> pubkeys;
std::vector<Value*> sigs;
std::vector<bool> selected;
for (; argi < argc; ++argi) {
const char* sigpos = strchr(argv[argi], '=');
if (sigpos) {
char* pubkey = strndup(argv[argi], sigpos - argv[argi]);
pubkeys.emplace_back(pubkey);
args.insert(args.begin(), Value(&sigpos[1]));
sigs.push_back(new Value(&sigpos[1]));
free(pubkey);
selected.push_back(true);
} else {
pubkeys.emplace_back(argv[argi]);
sigs.push_back(nullptr);
selected.push_back(false);
}
}
// do all path combinations
current_path = iterate_multisig(paths, multisig_required, pubkeys, selected);
selected_path = current_path != -1;
} else {
Value script(argv[argi]);
for (int i = argi + 1; i < argc; i++) {
args.emplace_back(argv[i]);
}
// printf("script: %s\n", script.hex_str().c_str());
CScript spt = CScript(script.data.begin(), script.data.end());
// determine conditional branches, and parameter counts
paths.emplace_back();
auto it = spt.begin();
opcodetype opcode;
valtype vchPushValue;
while (spt.GetOp(it, opcode, vchPushValue)) {
if (vchPushValue.size() > 0) {
for (auto& path : paths) {
if (path.is_active()) {
path.touch(1, 0);
path.script << vchPushValue;
}
}
} else {
interpret_opcode(paths, opcode);
}
}
// if arguments were provided, execute the original script and determine which path was selected
current_path = 0;
selected_path = args.size() > 0;
if (args.size()) {
btc_logf = btc_logf_dummy;
std::vector<valtype> stack;
BaseSignatureChecker checker;
ScriptError error;
for (auto p : args) {
stack.push_back(p.data_value());
}
auto env = new InterpreterEnv(stack, spt, STANDARD_SCRIPT_VERIFY_FLAGS | SCRIPT_VERIFY_MERKLEBRANCHVERIFY, checker, SigVersion::WITNESS_V0, &error);
while (!env->done) {
// iterate
if (!StepScript(*env)) {
fprintf(stderr, "error: script failure: %s\n", ScriptErrorString(error));
return -1;
}
// update path
update_path(current_path, paths, env->opcode, env->vfExec);
}
btc_logf("resulting path: %zu\n", current_path);
delete env;
}
}
for (auto& path : paths) path.add_fromaltstacks();
if (!selected_path) {
printf("%zu paths:\n", paths.size());
for (size_t i = 0; i < paths.size(); i++) {
printf("path #%zu (%zu arguments):\n", i, paths[i].params);
CScript spt = paths[i].script;
auto it = spt.begin();
opcodetype opcode;
valtype vchPushValue;
while (spt.GetOp(it, opcode, vchPushValue)) {
if (vchPushValue.size() > 0) {
printf("%s\n", HexStr(vchPushValue.begin(), vchPushValue.end()).c_str());
} else {
printf("%s\n", GetOpName(opcode));
}
}
printf("\n");
}
}
std::vector<Value> leaves;
for (size_t i = 0; i < paths.size(); i++) {
leaves.emplace_back(paths[i].script);
}
std::vector<uint256> hashes;
for (size_t i = 0; i < leaves.size(); ++i) {
uint256 hash;
const std::vector<unsigned char> leaf = leaves[i].data_value();
CHash256().Write(&leaf[0], leaf.size()).Finalize(hash.begin());
hashes.push_back(hash);
}
// if (!piping) {
// printf("leaves: [\n");
// for (size_t i = 0; i < hashes.size(); ++i) {
// printf("\t%s\n", HexStr(hashes[i]).c_str());
// }
// printf("]\n");
// }
size_t cap = selected_path ? current_path + 1 : leaves.size();
for (int pos = selected_path ? current_path : 0; pos < cap; pos++) {
uint256 root;
std::vector<uint256> branch;
uint32_t path;
std::vector<unsigned char> proof;
if (!selected_path) printf("path #%d proposal:\n", pos);
size_t params = paths[pos].params;
if (!fast) {
fprintf(stderr, "error: legacy mode not supported (yet)\n");
return -1;
// branch = ComputeMerkleBranch(hashes, pos);
// root = ComputeMerkleRootFromBranch(hashes[pos], branch, pos);
// path = (uint32_t)pos;
// // proof is clear
} else {
std::pair<std::vector<uint256>, uint32_t> r = ComputeFastMerkleBranch(hashes, pos);
root = ComputeFastMerkleRootFromBranch(hashes[pos], r.first, r.second);
btc_logf("root: %s\n", HexStr(root).c_str());
branch.swap(r.first);
path = r.second;
std::vector<MerkleTree> subtrees(hashes.size());
if (hashes.empty()) {
subtrees.emplace_back();
} else {
for (std::size_t i = 0; i < hashes.size(); ++i) {
if (i == static_cast<std::size_t>(pos)) {
subtrees[i].m_verify.emplace_back(hashes[i]);
} else {
subtrees[i].m_proof.m_skip.emplace_back(hashes[i]);
}
}
while (subtrees.size() > 1) {
std::vector<MerkleTree> other;
for (auto itr = subtrees.begin(); itr != subtrees.end(); ++itr) {
auto itr2 = std::next(itr);
if (itr2 != subtrees.end()) {
other.emplace_back(*itr++, *itr);
} else {
other.emplace_back();
swap(other.back(), *itr);
}
}
swap(other, subtrees);
}
}
CVectorWriter ssProof(SER_NETWORK, PROTOCOL_VERSION, proof, proof.size());
ssProof << subtrees[0].m_proof;
}
if (!piping) {
printf("branch: [\n");
for (auto h = branch.begin(); h != branch.end(); ++h) {
printf("\t%s\n", HexStr(*h).c_str());
}
printf("]\n");
printf("path: %d\n", path);
} else if (proof.empty()) {
fprintf(stderr, "empty proof\n");
return -1;
}
if (!proof.empty()) {
if (!piping) {
printf("proof: %s\n", HexStr(proof).c_str());
printf("unlocking script: %s %s OP_%d OP_MERKLEBRANCHVERIFY 2DROP DROP\n", repeat("TOALTSTACK", params).c_str(), HexStr(root).c_str(), 2 + preprocessed);
}
if (!piping || btcdeb) {
printf(piping
? "%s20%s5%db36d75\n"
: "- script (hex): %s20%s5%db36d75\n",
repeat("6b", params, "").c_str(),
HexStr(root).c_str(),
2 + preprocessed
);
btc_logf("stack:\n");
}
printf(piping ? "%s\n" : "- item #1: %s\n", leaves[pos].hex_str().c_str());
printf(piping ? "%s\n" : "- item #2: %s\n", HexStr(proof).c_str());
for (auto& arg : args) printf(piping ? "0x%s\n" : "- argument: 0x%s\n", arg.hex_str().c_str());
}
}
}