@@ -159,10 +159,12 @@ pub(crate) struct HTLCPreviousHopData {
159
159
}
160
160
161
161
enum OnionPayload {
162
- /// Contains a total_msat (which may differ from value if this is a Multi-Path Payment) and a
163
- /// payment_secret which prevents path-probing attacks and can associate different HTLCs which
164
- /// are part of the same payment.
165
- Invoice ( msgs:: FinalOnionHopData ) ,
162
+ /// Indicates this incoming onion payload is for the purpose of paying an invoice.
163
+ Invoice {
164
+ /// This is only here for backwards-compatibility in serialization, in the future it can be
165
+ /// removed, breaking clients running 0.0.106 and earlier.
166
+ _legacy_hop_data : msgs:: FinalOnionHopData ,
167
+ } ,
166
168
/// Contains the payer-provided preimage.
167
169
Spontaneous ( PaymentPreimage ) ,
168
170
}
@@ -3100,11 +3102,13 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
3100
3102
HTLCForwardInfo :: AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info : PendingHTLCInfo {
3101
3103
routing, incoming_shared_secret, payment_hash, amt_to_forward, .. } ,
3102
3104
prev_funding_outpoint } => {
3103
- let ( cltv_expiry, total_msat, onion_payload, phantom_shared_secret) = match routing {
3104
- PendingHTLCRouting :: Receive { payment_data, incoming_cltv_expiry, phantom_shared_secret } =>
3105
- ( incoming_cltv_expiry, payment_data. total_msat , OnionPayload :: Invoice ( payment_data) , phantom_shared_secret) ,
3105
+ let ( cltv_expiry, onion_payload, payment_data, phantom_shared_secret) = match routing {
3106
+ PendingHTLCRouting :: Receive { payment_data, incoming_cltv_expiry, phantom_shared_secret } => {
3107
+ let _legacy_hop_data = payment_data. clone ( ) ;
3108
+ ( incoming_cltv_expiry, OnionPayload :: Invoice { _legacy_hop_data } , Some ( payment_data) , phantom_shared_secret)
3109
+ } ,
3106
3110
PendingHTLCRouting :: ReceiveKeysend { payment_preimage, incoming_cltv_expiry } =>
3107
- ( incoming_cltv_expiry, amt_to_forward , OnionPayload :: Spontaneous ( payment_preimage) , None ) ,
3111
+ ( incoming_cltv_expiry, OnionPayload :: Spontaneous ( payment_preimage) , None , None ) ,
3108
3112
_ => {
3109
3113
panic ! ( "short_channel_id == 0 should imply any pending_forward entries are of type Receive" ) ;
3110
3114
}
@@ -3119,7 +3123,7 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
3119
3123
} ,
3120
3124
value : amt_to_forward,
3121
3125
timer_ticks : 0 ,
3122
- total_msat,
3126
+ total_msat : if let Some ( data ) = & payment_data { data . total_msat } else { amt_to_forward } ,
3123
3127
cltv_expiry,
3124
3128
onion_payload,
3125
3129
} ;
@@ -3143,7 +3147,7 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
3143
3147
}
3144
3148
3145
3149
macro_rules! check_total_value {
3146
- ( $payment_data_total_msat : expr , $payment_secret : expr, $payment_preimage: expr) => { {
3150
+ ( $payment_data : expr, $payment_preimage: expr) => { {
3147
3151
let mut payment_received_generated = false ;
3148
3152
let htlcs = channel_state. claimable_htlcs. entry( payment_hash)
3149
3153
. or_insert( Vec :: new( ) ) ;
@@ -3159,27 +3163,27 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
3159
3163
total_value += htlc. value;
3160
3164
match & htlc. onion_payload {
3161
3165
OnionPayload :: Invoice { .. } => {
3162
- if htlc. total_msat != $payment_data_total_msat {
3166
+ if htlc. total_msat != $payment_data . total_msat {
3163
3167
log_trace!( self . logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})" ,
3164
- log_bytes!( payment_hash. 0 ) , $payment_data_total_msat , htlc. total_msat) ;
3168
+ log_bytes!( payment_hash. 0 ) , $payment_data . total_msat , htlc. total_msat) ;
3165
3169
total_value = msgs:: MAX_VALUE_MSAT ;
3166
3170
}
3167
3171
if total_value >= msgs:: MAX_VALUE_MSAT { break ; }
3168
3172
} ,
3169
3173
_ => unreachable!( ) ,
3170
3174
}
3171
3175
}
3172
- if total_value >= msgs:: MAX_VALUE_MSAT || total_value > $payment_data_total_msat {
3176
+ if total_value >= msgs:: MAX_VALUE_MSAT || total_value > $payment_data . total_msat {
3173
3177
log_trace!( self . logger, "Failing HTLCs with payment_hash {} as the total value {} ran over expected value {} (or HTLCs were inconsistent)" ,
3174
- log_bytes!( payment_hash. 0 ) , total_value, $payment_data_total_msat ) ;
3178
+ log_bytes!( payment_hash. 0 ) , total_value, $payment_data . total_msat ) ;
3175
3179
fail_htlc!( claimable_htlc) ;
3176
- } else if total_value == $payment_data_total_msat {
3180
+ } else if total_value == $payment_data . total_msat {
3177
3181
htlcs. push( claimable_htlc) ;
3178
3182
new_events. push( events:: Event :: PaymentReceived {
3179
3183
payment_hash,
3180
3184
purpose: events:: PaymentPurpose :: InvoicePayment {
3181
3185
payment_preimage: $payment_preimage,
3182
- payment_secret: $payment_secret,
3186
+ payment_secret: $payment_data . payment_secret,
3183
3187
} ,
3184
3188
amt: total_value,
3185
3189
} ) ;
@@ -3204,16 +3208,16 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
3204
3208
match payment_secrets. entry ( payment_hash) {
3205
3209
hash_map:: Entry :: Vacant ( _) => {
3206
3210
match claimable_htlc. onion_payload {
3207
- OnionPayload :: Invoice ( ref payment_data) => {
3211
+ OnionPayload :: Invoice { .. } => {
3212
+ let payment_data = payment_data. unwrap ( ) ;
3208
3213
let payment_preimage = match inbound_payment:: verify ( payment_hash, & payment_data, self . highest_seen_timestamp . load ( Ordering :: Acquire ) as u64 , & self . inbound_payment_key , & self . logger ) {
3209
3214
Ok ( payment_preimage) => payment_preimage,
3210
3215
Err ( ( ) ) => {
3211
3216
fail_htlc ! ( claimable_htlc) ;
3212
3217
continue
3213
3218
}
3214
3219
} ;
3215
- let payment_secret = payment_data. payment_secret . clone ( ) ;
3216
- check_total_value ! ( payment_data. total_msat, payment_secret, payment_preimage) ;
3220
+ check_total_value ! ( payment_data, payment_preimage) ;
3217
3221
} ,
3218
3222
OnionPayload :: Spontaneous ( preimage) => {
3219
3223
match channel_state. claimable_htlcs . entry ( payment_hash) {
@@ -3234,14 +3238,12 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
3234
3238
}
3235
3239
} ,
3236
3240
hash_map:: Entry :: Occupied ( inbound_payment) => {
3237
- let payment_data =
3238
- if let OnionPayload :: Invoice ( ref data) = claimable_htlc. onion_payload {
3239
- data. clone ( )
3240
- } else {
3241
- log_trace ! ( self . logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash" , log_bytes!( payment_hash. 0 ) ) ;
3242
- fail_htlc ! ( claimable_htlc) ;
3243
- continue
3244
- } ;
3241
+ if payment_data. is_none ( ) {
3242
+ log_trace ! ( self . logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash" , log_bytes!( payment_hash. 0 ) ) ;
3243
+ fail_htlc ! ( claimable_htlc) ;
3244
+ continue
3245
+ } ;
3246
+ let payment_data = payment_data. unwrap ( ) ;
3245
3247
if inbound_payment. get ( ) . payment_secret != payment_data. payment_secret {
3246
3248
log_trace ! ( self . logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret." , log_bytes!( payment_hash. 0 ) ) ;
3247
3249
fail_htlc ! ( claimable_htlc) ;
@@ -3250,7 +3252,7 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
3250
3252
log_bytes!( payment_hash. 0 ) , payment_data. total_msat, inbound_payment. get( ) . min_value_msat. unwrap( ) ) ;
3251
3253
fail_htlc ! ( claimable_htlc) ;
3252
3254
} else {
3253
- let payment_received_generated = check_total_value ! ( payment_data. total_msat , payment_data . payment_secret , inbound_payment. get( ) . payment_preimage) ;
3255
+ let payment_received_generated = check_total_value ! ( payment_data, inbound_payment. get( ) . payment_preimage) ;
3254
3256
if payment_received_generated {
3255
3257
inbound_payment. remove_entry ( ) ;
3256
3258
}
@@ -3469,10 +3471,10 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
3469
3471
debug_assert ! ( false ) ;
3470
3472
return false ;
3471
3473
}
3472
- if let OnionPayload :: Invoice ( ref final_hop_data ) = htlcs[ 0 ] . onion_payload {
3474
+ if let OnionPayload :: Invoice { .. } = htlcs[ 0 ] . onion_payload {
3473
3475
// Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
3474
3476
// In this case we're not going to handle any timeouts of the parts here.
3475
- if final_hop_data . total_msat == htlcs. iter ( ) . fold ( 0 , |total, htlc| total + htlc. value ) {
3477
+ if htlcs [ 0 ] . total_msat == htlcs. iter ( ) . fold ( 0 , |total, htlc| total + htlc. value ) {
3476
3478
return true ;
3477
3479
} else if htlcs. into_iter ( ) . any ( |htlc| {
3478
3480
htlc. timer_ticks += 1 ;
@@ -6073,11 +6075,11 @@ impl_writeable_tlv_based!(HTLCPreviousHopData, {
6073
6075
impl Writeable for ClaimableHTLC {
6074
6076
fn write < W : Writer > ( & self , writer : & mut W ) -> Result < ( ) , io:: Error > {
6075
6077
let payment_data = match & self . onion_payload {
6076
- OnionPayload :: Invoice ( data ) => Some ( data . clone ( ) ) ,
6078
+ OnionPayload :: Invoice { _legacy_hop_data } => Some ( _legacy_hop_data ) ,
6077
6079
_ => None ,
6078
6080
} ;
6079
6081
let keysend_preimage = match self . onion_payload {
6080
- OnionPayload :: Invoice ( _ ) => None ,
6082
+ OnionPayload :: Invoice { .. } => None ,
6081
6083
OnionPayload :: Spontaneous ( preimage) => Some ( preimage. clone ( ) ) ,
6082
6084
} ;
6083
6085
write_tlv_fields ! ( writer, {
@@ -6125,7 +6127,7 @@ impl Readable for ClaimableHTLC {
6125
6127
if total_msat. is_none ( ) {
6126
6128
total_msat = Some ( payment_data. as_ref ( ) . unwrap ( ) . total_msat ) ;
6127
6129
}
6128
- OnionPayload :: Invoice ( payment_data. unwrap ( ) )
6130
+ OnionPayload :: Invoice { _legacy_hop_data : payment_data. unwrap ( ) }
6129
6131
} ,
6130
6132
} ;
6131
6133
Ok ( Self {
0 commit comments