19
19
//! `https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki`
20
20
//!
21
21
22
+ use util:: { script_is_v1_tr, witness_size} ;
23
+
22
24
use super :: { sanity_check, Psbt } ;
23
25
use super :: { Error , InputError , PsbtInputSatisfier } ;
24
26
use bitcoin:: secp256k1:: { self , Secp256k1 } ;
27
+ use bitcoin:: util:: taproot:: LeafVersion ;
25
28
use bitcoin:: { self , PublicKey , Script } ;
26
29
use descriptor:: DescriptorTrait ;
27
30
use interpreter;
28
31
use Descriptor ;
29
32
use Miniscript ;
30
- use { BareCtx , Legacy , Segwitv0 } ;
33
+ use Satisfier ;
34
+ use XOnlyKey ;
35
+ use { BareCtx , Legacy , Segwitv0 , Tap } ;
36
+
37
+ // Satisfy the taproot descriptor. It is not possible to infer the complete
38
+ // descriptor from psbt because the information about all the scripts might not
39
+ // be present. Also, currently the spec does not support hidden branches, so
40
+ // inferring a descriptor is not possible
41
+ fn construct_tap_witness (
42
+ spk : & Script ,
43
+ sat : & PsbtInputSatisfier ,
44
+ allow_mall : bool ,
45
+ ) -> Result < Vec < Vec < u8 > > , InputError > {
46
+ assert ! ( script_is_v1_tr( & spk) ) ;
47
+
48
+ // try the script spend path first
49
+ if let Some ( sig) = <PsbtInputSatisfier as Satisfier < XOnlyKey > >:: lookup_tap_key_spend_sig ( sat) {
50
+ return Ok ( vec ! [ sig. to_vec( ) ] ) ;
51
+ }
52
+ // Next script spends
53
+ let ( mut min_wit, mut min_wit_len) = ( None , None ) ;
54
+ if let Some ( block_map) =
55
+ <PsbtInputSatisfier as Satisfier < XOnlyKey > >:: lookup_tap_control_block_map ( sat)
56
+ {
57
+ for ( control_block, ( script, ver) ) in block_map {
58
+ if * ver != LeafVersion :: default ( ) {
59
+ // We don't know how to satisfy non default version scripts yet
60
+ continue ;
61
+ }
62
+ let ms = match Miniscript :: < XOnlyKey , Tap > :: parse_insane ( script) {
63
+ Ok ( ms) => ms,
64
+ Err ( ..) => continue , // try another script
65
+ } ;
66
+ let mut wit = if allow_mall {
67
+ match ms. satisfy_malleable ( sat) {
68
+ Ok ( ms) => ms,
69
+ Err ( ..) => continue ,
70
+ }
71
+ } else {
72
+ match ms. satisfy ( sat) {
73
+ Ok ( ms) => ms,
74
+ Err ( ..) => continue ,
75
+ }
76
+ } ;
77
+ wit. push ( ms. encode ( ) . into_bytes ( ) ) ;
78
+ wit. push ( control_block. serialize ( ) ) ;
79
+ let wit_len = Some ( witness_size ( & wit) ) ;
80
+ if min_wit_len. is_some ( ) && wit_len > min_wit_len {
81
+ continue ;
82
+ } else {
83
+ // store the minimum
84
+ min_wit = Some ( wit) ;
85
+ min_wit_len = wit_len;
86
+ }
87
+ }
88
+ min_wit. ok_or ( InputError :: CouldNotSatisfyTr )
89
+ } else {
90
+ // No control blocks found
91
+ Err ( InputError :: CouldNotSatisfyTr )
92
+ }
93
+ }
94
+
31
95
// Get the scriptpubkey for the psbt input
32
96
fn get_scriptpubkey ( psbt : & Psbt , index : usize ) -> Result < & Script , InputError > {
33
97
let script_pubkey;
@@ -320,16 +384,28 @@ pub fn finalize_helper<C: secp256k1::Verification>(
320
384
321
385
// Actually construct the witnesses
322
386
for index in 0 ..psbt. inputs . len ( ) {
323
- // Get a descriptor for this input
324
- let desc = get_descriptor ( & psbt, index) . map_err ( |e| Error :: InputError ( e, index) ) ?;
387
+ let ( witness, script_sig) = {
388
+ let spk = get_scriptpubkey ( psbt, index) . map_err ( |e| Error :: InputError ( e, index) ) ?;
389
+ let sat = PsbtInputSatisfier :: new ( & psbt, index) ;
325
390
326
- //generate the satisfaction witness and scriptsig
327
- let ( witness, script_sig) = if !allow_mall {
328
- desc. get_satisfaction ( PsbtInputSatisfier :: new ( & psbt, index) )
329
- } else {
330
- desc. get_satisfaction_mall ( PsbtInputSatisfier :: new ( & psbt, index) )
331
- }
332
- . map_err ( |e| Error :: InputError ( InputError :: MiniscriptError ( e) , index) ) ?;
391
+ if script_is_v1_tr ( spk) {
392
+ // Deal with tr case separately, unfortunately we cannot infer the full descriptor for Tr
393
+ let wit = construct_tap_witness ( spk, & sat, allow_mall)
394
+ . map_err ( |e| Error :: InputError ( e, index) ) ?;
395
+ ( wit, Script :: new ( ) )
396
+ } else {
397
+ // Get a descriptor for this input.
398
+ let desc = get_descriptor ( & psbt, index) . map_err ( |e| Error :: InputError ( e, index) ) ?;
399
+
400
+ //generate the satisfaction witness and scriptsig
401
+ if !allow_mall {
402
+ desc. get_satisfaction ( PsbtInputSatisfier :: new ( & psbt, index) )
403
+ } else {
404
+ desc. get_satisfaction_mall ( PsbtInputSatisfier :: new ( & psbt, index) )
405
+ }
406
+ . map_err ( |e| Error :: InputError ( InputError :: MiniscriptError ( e) , index) ) ?
407
+ }
408
+ } ;
333
409
334
410
let input = & mut psbt. inputs [ index] ;
335
411
//Fill in the satisfactions
@@ -344,12 +420,24 @@ pub fn finalize_helper<C: secp256k1::Verification>(
344
420
Some ( witness)
345
421
} ;
346
422
//reset everything
347
- input. redeem_script = None ;
348
- input. partial_sigs . clear ( ) ;
349
- input. sighash_type = None ;
350
- input. redeem_script = None ;
351
- input. bip32_derivation . clear ( ) ;
352
- input. witness_script = None ;
423
+ input. partial_sigs . clear ( ) ; // 0x02
424
+ input. sighash_type = None ; // 0x03
425
+ input. redeem_script = None ; // 0x04
426
+ input. witness_script = None ; // 0x05
427
+ input. bip32_derivation . clear ( ) ; // 0x05
428
+ // finalized witness 0x06 and 0x07 are not clear
429
+ // 0x09 Proof of reserves not yet supported
430
+ input. ripemd160_preimages . clear ( ) ; // 0x0a
431
+ input. sha256_preimages . clear ( ) ; // 0x0b
432
+ input. hash160_preimages . clear ( ) ; // 0x0c
433
+ input. hash256_preimages . clear ( ) ; // 0x0d
434
+ // psbt v2 fields till 0x012 not supported
435
+ input. tap_key_sig = None ; // 0x013
436
+ input. tap_script_sigs . clear ( ) ; // 0x014
437
+ input. tap_scripts . clear ( ) ; // 0x015
438
+ input. tap_key_origins . clear ( ) ; // 0x16
439
+ input. tap_internal_key = None ; // x017
440
+ input. tap_merkle_root = None ; // 0x018
353
441
}
354
442
// Double check everything with the interpreter
355
443
// This only checks whether the script will be executed
0 commit comments