@@ -3654,6 +3654,9 @@ static void resume_splice_negotiation(struct peer *peer,
3654
3654
new_output_index );
3655
3655
wire_sync_write (MASTER_FD , take (msg ));
3656
3656
}
3657
+
3658
+ size_t dummy ;
3659
+ psbt_get_bytes (NULL , inflight -> psbt , & dummy );
3657
3660
}
3658
3661
3659
3662
static struct inflight * inflights_new (struct peer * peer )
@@ -3841,7 +3844,7 @@ static void splice_accepter(struct peer *peer, const u8 *inmsg)
3841
3844
funding_feerate_perkw ,
3842
3845
both_amount ,
3843
3846
peer -> splicing -> accepter_relative ,
3844
- ictx -> current_psbt ,
3847
+ clone_psbt ( tmpctx , ictx -> current_psbt ) ,
3845
3848
false,
3846
3849
peer -> splicing -> force_sign_first );
3847
3850
@@ -3862,15 +3865,34 @@ static void splice_accepter(struct peer *peer, const u8 *inmsg)
3862
3865
new_inflight -> force_sign_first = peer -> splicing -> force_sign_first ;
3863
3866
new_inflight -> is_locked = false;
3864
3867
3865
- current_push_val = relative_splice_balance_fundee (peer , our_role ,ictx -> current_psbt ,
3868
+ size_t dummy ;
3869
+ psbt_get_bytes (NULL , inflight -> psbt , & dummy );
3870
+
3871
+ current_push_val = relative_splice_balance_fundee (peer , our_role , ictx -> current_psbt ,
3866
3872
outpoint .n , splice_funding_index );
3873
+
3874
+ size_t dummy ;
3875
+ psbt_get_bytes (NULL , inflight -> psbt , & dummy );
3876
+
3867
3877
update_hsmd_with_splice (peer , new_inflight , our_role , current_push_val );
3868
3878
3879
+ size_t dummy ;
3880
+ psbt_get_bytes (NULL , inflight -> psbt , & dummy );
3881
+
3869
3882
update_view_from_inflights (peer );
3870
3883
3884
+ size_t dummy ;
3885
+ psbt_get_bytes (NULL , inflight -> psbt , & dummy );
3886
+
3871
3887
peer -> splice_state -> count ++ ;
3872
3888
3889
+ size_t dummy ;
3890
+ psbt_get_bytes (NULL , inflight -> psbt , & dummy );
3891
+
3873
3892
resume_splice_negotiation (peer , true, true, true, true);
3893
+
3894
+ size_t dummy ;
3895
+ psbt_get_bytes (NULL , inflight -> psbt , & dummy );
3874
3896
}
3875
3897
3876
3898
/* splice_initiator runs when splice_ack is received by the other side. It
@@ -3992,6 +4014,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
3992
4014
char * error ;
3993
4015
u32 chan_output_index , splice_funding_index ;
3994
4016
struct wally_psbt_output * new_chan_output ;
4017
+ struct wally_psbt * psbt ;
3995
4018
struct inflight * new_inflight ;
3996
4019
struct bitcoin_txid current_psbt_txid ;
3997
4020
struct amount_sat both_amount ;
@@ -4003,7 +4026,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
4003
4026
/* We must loading the funding tx as our previous utxo */
4004
4027
prev_tx = bitcoin_tx_from_txid (peer , peer -> channel -> funding .txid );
4005
4028
4006
- ictx = new_interactivetx_context (tmpctx , our_role ,
4029
+ ictx = new_interactivetx_context (NULL , our_role ,
4007
4030
peer -> pps , peer -> channel_id );
4008
4031
4009
4032
ictx -> next_update_fn = next_splice_step ;
@@ -4015,60 +4038,82 @@ static void splice_initiator_user_finalized(struct peer *peer)
4015
4038
ictx -> tx_add_input_count = peer -> splicing -> tx_add_input_count ;
4016
4039
ictx -> tx_add_output_count = peer -> splicing -> tx_add_output_count ;
4017
4040
4041
+ clone_psbt (NULL , ictx -> current_psbt );
4042
+
4018
4043
ictx -> shared_outpoint = tal (ictx , struct bitcoin_outpoint );
4019
4044
* ictx -> shared_outpoint = peer -> channel -> funding ;
4020
4045
ictx -> funding_tx = prev_tx ;
4021
4046
4022
- error = process_interactivetx_updates (tmpctx , ictx ,
4047
+ clone_psbt (NULL , ictx -> current_psbt );
4048
+
4049
+ error = process_interactivetx_updates (ictx , ictx ,
4023
4050
& peer -> splicing -> received_tx_complete ,
4024
4051
& abort_msg );
4025
4052
if (error )
4026
4053
peer_failed_warn (peer -> pps , & peer -> channel_id ,
4027
4054
"Splice interactivetx error: %s" , error );
4028
4055
4056
+ clone_psbt (NULL , ictx -> current_psbt ); // dustin
4057
+
4029
4058
check_tx_abort (peer , abort_msg );
4030
4059
4060
+ psbt = ictx -> current_psbt ;
4061
+
4062
+ clone_psbt (NULL , psbt );
4063
+
4031
4064
/* With pause_when_complete fase, this assert should never fail */
4032
4065
assert (peer -> splicing -> received_tx_complete );
4033
4066
peer -> splicing -> sent_tx_complete = true;
4034
4067
4035
- psbt_sort_by_serial_id ( ictx -> current_psbt );
4068
+ clone_psbt ( NULL , psbt );
4036
4069
4037
- new_chan_output = find_channel_output (peer , ictx -> current_psbt ,
4070
+ new_chan_output = find_channel_output (peer , psbt ,
4038
4071
& chan_output_index ,
4039
4072
& peer -> splicing -> remote_funding_pubkey );
4073
+
4074
+ clone_psbt (NULL , psbt );
4040
4075
4041
- splice_funding_index = find_channel_funding_input (ictx -> current_psbt ,
4076
+ splice_funding_index = find_channel_funding_input (psbt ,
4042
4077
& peer -> channel -> funding );
4078
+
4079
+ clone_psbt (NULL , psbt ); // lisa
4043
4080
4044
- both_amount = check_balances (peer , our_role , ictx -> current_psbt ,
4081
+ both_amount = check_balances (peer , our_role , psbt ,
4045
4082
chan_output_index , splice_funding_index );
4046
4083
new_chan_output -> amount = both_amount .satoshis ; /* Raw: type conv */
4084
+
4085
+ clone_psbt (NULL , psbt );
4047
4086
4048
- psbt_elements_normalize_fees (ictx -> current_psbt );
4087
+ psbt_elements_normalize_fees (psbt );
4088
+
4089
+ clone_psbt (NULL , psbt );
4049
4090
4050
4091
status_debug ("Splice adding inflight: %s" ,
4051
- fmt_wally_psbt (tmpctx , ictx -> current_psbt ));
4092
+ fmt_wally_psbt (tmpctx , psbt ));
4052
4093
4053
- psbt_txid (tmpctx , ictx -> current_psbt , & current_psbt_txid , NULL );
4094
+ psbt_txid (ictx , psbt , & current_psbt_txid , NULL );
4095
+
4096
+ clone_psbt (NULL , psbt );
4054
4097
4055
- outmsg = towire_channeld_add_inflight (tmpctx ,
4098
+ outmsg = towire_channeld_add_inflight (NULL ,
4056
4099
& peer -> splicing -> remote_funding_pubkey ,
4057
4100
& current_psbt_txid ,
4058
4101
chan_output_index ,
4059
4102
peer -> splicing -> feerate_per_kw ,
4060
4103
amount_sat (new_chan_output -> amount ),
4061
4104
peer -> splicing -> opener_relative ,
4062
- ictx -> current_psbt ,
4105
+ psbt ,
4063
4106
true,
4064
4107
peer -> splicing -> force_sign_first );
4108
+
4109
+ clone_psbt (NULL , psbt );
4065
4110
4066
4111
master_wait_sync_reply (tmpctx , peer , take (outmsg ),
4067
4112
WIRE_CHANNELD_GOT_INFLIGHT );
4068
4113
4069
4114
new_inflight = inflights_new (peer );
4070
4115
4071
- psbt_txid (tmpctx , ictx -> current_psbt , & new_inflight -> outpoint .txid ,
4116
+ psbt_txid (new_inflight , psbt , & new_inflight -> outpoint .txid ,
4072
4117
NULL );
4073
4118
new_inflight -> remote_funding = peer -> splicing -> remote_funding_pubkey ;
4074
4119
new_inflight -> outpoint .n = chan_output_index ;
@@ -4084,7 +4129,7 @@ static void splice_initiator_user_finalized(struct peer *peer)
4084
4129
* normal in-memory copy of the psbt: peer->splicing/ictx->current_psbt.
4085
4130
* Since we have to support using the inflight psbt anyway, we default
4086
4131
* to it. */
4087
- new_inflight -> psbt = clone_psbt (new_inflight , ictx -> current_psbt );
4132
+ new_inflight -> psbt = clone_psbt (new_inflight , psbt ); // wally_psbt_clone_alloc fails here
4088
4133
4089
4134
current_push_val = relative_splice_balance_fundee (peer , our_role ,
4090
4135
new_inflight -> psbt ,
@@ -4121,6 +4166,8 @@ static void splice_initiator_user_finalized(struct peer *peer)
4121
4166
true,
4122
4167
!sign_first );
4123
4168
wire_sync_write (MASTER_FD , take (outmsg ));
4169
+
4170
+ tal_free (ictx );
4124
4171
}
4125
4172
4126
4173
/* During a splice the user may call splice_update mulitple times adding
@@ -4141,7 +4188,7 @@ static void splice_initiator_user_update(struct peer *peer, const u8 *inmsg)
4141
4188
return ;
4142
4189
}
4143
4190
4144
- ictx = new_interactivetx_context (tmpctx , TX_INITIATOR ,
4191
+ ictx = new_interactivetx_context (NULL , TX_INITIATOR ,
4145
4192
peer -> pps , peer -> channel_id );
4146
4193
4147
4194
if (!fromwire_channeld_splice_update (ictx , inmsg , & ictx -> desired_psbt ))
@@ -4152,6 +4199,7 @@ static void splice_initiator_user_update(struct peer *peer, const u8 *inmsg)
4152
4199
" splice when not in"
4153
4200
" splice mode." );
4154
4201
wire_sync_write (MASTER_FD , take (msg ));
4202
+ tal_free (ictx );
4155
4203
return ;
4156
4204
4157
4205
}
@@ -4175,10 +4223,11 @@ static void splice_initiator_user_update(struct peer *peer, const u8 *inmsg)
4175
4223
if (!interactivetx_has_changes (ictx , ictx -> desired_psbt )) {
4176
4224
splice_initiator_user_finalized (peer );
4177
4225
tal_steal (last_inflight (peer ), last_inflight (peer )-> psbt );
4226
+ tal_free (ictx );
4178
4227
return ;
4179
4228
}
4180
4229
4181
- error = process_interactivetx_updates (tmpctx , ictx ,
4230
+ error = process_interactivetx_updates (ictx , ictx ,
4182
4231
& peer -> splicing -> received_tx_complete ,
4183
4232
& abort_msg );
4184
4233
if (error )
@@ -4199,6 +4248,7 @@ static void splice_initiator_user_update(struct peer *peer, const u8 *inmsg)
4199
4248
ictx -> current_psbt ,
4200
4249
false, false);
4201
4250
wire_sync_write (MASTER_FD , take (outmsg ));
4251
+ tal_free (ictx );
4202
4252
}
4203
4253
4204
4254
/* This occurs when the user has signed the final version of the PSBT. At this
@@ -5645,6 +5695,8 @@ static void handle_funding_depth(struct peer *peer, const u8 *msg)
5645
5695
5646
5696
for (size_t i = 0 ; i < tal_count (peer -> splice_state -> inflights ); i ++ ) {
5647
5697
struct inflight * inflight = peer -> splice_state -> inflights [i ];
5698
+ size_t dummy ;
5699
+ psbt_get_bytes (NULL , inflight -> psbt , & dummy );
5648
5700
if (bitcoin_txid_eq (& inflight -> outpoint .txid ,
5649
5701
& txid )) {
5650
5702
inflight -> is_locked = true;
0 commit comments