@@ -992,9 +992,9 @@ impl OutboundPayments {
992
992
) ;
993
993
if let Err ( e) = result {
994
994
self . handle_pay_route_err (
995
- e, payment_id, payment_hash, route, route_params, router, first_hops,
996
- & inflight_htlcs, entropy_source, node_signer, best_block_height, logger,
997
- pending_events , & send_payment_along_path
995
+ e, payment_id, payment_hash, route, route_params, onion_session_privs , router, first_hops,
996
+ & inflight_htlcs, entropy_source, node_signer, best_block_height, logger, pending_events ,
997
+ & send_payment_along_path
998
998
) ;
999
999
}
1000
1000
Ok ( ( ) )
@@ -1274,7 +1274,11 @@ impl OutboundPayments {
1274
1274
log_info ! ( logger, "Sending payment with id {} and hash {} returned {:?}" ,
1275
1275
payment_id, payment_hash, res) ;
1276
1276
if let Err ( e) = res {
1277
- self . handle_pay_route_err ( e, payment_id, payment_hash, route, route_params, router, first_hops, & inflight_htlcs, entropy_source, node_signer, best_block_height, logger, pending_events, & send_payment_along_path) ;
1277
+ self . handle_pay_route_err (
1278
+ e, payment_id, payment_hash, route, route_params, onion_session_privs, router, first_hops,
1279
+ & inflight_htlcs, entropy_source, node_signer, best_block_height, logger, pending_events,
1280
+ & send_payment_along_path
1281
+ ) ;
1278
1282
}
1279
1283
Ok ( ( ) )
1280
1284
}
@@ -1430,15 +1434,21 @@ impl OutboundPayments {
1430
1434
best_block_height, & send_payment_along_path) ;
1431
1435
log_info ! ( logger, "Result retrying payment id {}: {:?}" , & payment_id, res) ;
1432
1436
if let Err ( e) = res {
1433
- self . handle_pay_route_err ( e, payment_id, payment_hash, route, route_params, router, first_hops, inflight_htlcs, entropy_source, node_signer, best_block_height, logger, pending_events, send_payment_along_path) ;
1437
+ self . handle_pay_route_err (
1438
+ e, payment_id, payment_hash, route, route_params, onion_session_privs, router, first_hops,
1439
+ inflight_htlcs, entropy_source, node_signer, best_block_height, logger, pending_events,
1440
+ send_payment_along_path
1441
+ ) ;
1434
1442
}
1435
1443
}
1436
1444
1437
1445
fn handle_pay_route_err < R : Deref , NS : Deref , ES : Deref , IH , SP , L : Deref > (
1438
1446
& self , err : PaymentSendFailure , payment_id : PaymentId , payment_hash : PaymentHash , route : Route ,
1439
- mut route_params : RouteParameters , router : & R , first_hops : Vec < ChannelDetails > ,
1440
- inflight_htlcs : & IH , entropy_source : & ES , node_signer : & NS , best_block_height : u32 , logger : & L ,
1441
- pending_events : & Mutex < VecDeque < ( events:: Event , Option < EventCompletionAction > ) > > , send_payment_along_path : & SP ,
1447
+ mut route_params : RouteParameters , onion_session_privs : Vec < [ u8 ; 32 ] > , router : & R ,
1448
+ first_hops : Vec < ChannelDetails > , inflight_htlcs : & IH , entropy_source : & ES , node_signer : & NS ,
1449
+ best_block_height : u32 , logger : & L ,
1450
+ pending_events : & Mutex < VecDeque < ( events:: Event , Option < EventCompletionAction > ) > > ,
1451
+ send_payment_along_path : & SP ,
1442
1452
)
1443
1453
where
1444
1454
R :: Target : Router ,
@@ -1448,6 +1458,19 @@ impl OutboundPayments {
1448
1458
IH : Fn ( ) -> InFlightHtlcs ,
1449
1459
SP : Fn ( SendAlongPathArgs ) -> Result < ( ) , APIError > ,
1450
1460
{
1461
+ macro_rules! remove_session_privs {
1462
+ ( ) => {
1463
+ if let Some ( payment) = self . pending_outbound_payments. lock( ) . unwrap( ) . get_mut( & payment_id) {
1464
+ for ( path, session_priv_bytes) in route. paths. iter( ) . zip( onion_session_privs. into_iter( ) ) {
1465
+ let removed = payment. remove( & session_priv_bytes, Some ( path) ) ;
1466
+ debug_assert!( removed, "This can't happen as the payment has an entry for this path added by callers" ) ;
1467
+ }
1468
+ } else {
1469
+ debug_assert!( false , "This can't happen as the payment was added by callers" ) ;
1470
+ }
1471
+ }
1472
+ }
1473
+
1451
1474
match err {
1452
1475
PaymentSendFailure :: AllFailedResendSafe ( errs) => {
1453
1476
Self :: push_path_failed_evs_and_scids ( payment_id, payment_hash, & mut route_params, route. paths , errs. into_iter ( ) . map ( |e| Err ( e) ) , logger, pending_events) ;
@@ -1467,11 +1490,13 @@ impl OutboundPayments {
1467
1490
} ,
1468
1491
PaymentSendFailure :: PathParameterError ( results) => {
1469
1492
log_error ! ( logger, "Failed to send to route due to parameter error in a single path. Your router is buggy" ) ;
1493
+ remove_session_privs ! ( ) ;
1470
1494
Self :: push_path_failed_evs_and_scids ( payment_id, payment_hash, & mut route_params, route. paths , results. into_iter ( ) , logger, pending_events) ;
1471
1495
self . abandon_payment ( payment_id, PaymentFailureReason :: UnexpectedError , pending_events) ;
1472
1496
} ,
1473
1497
PaymentSendFailure :: ParameterError ( e) => {
1474
1498
log_error ! ( logger, "Failed to send to route due to parameter error: {:?}. Your router is buggy" , e) ;
1499
+ remove_session_privs ! ( ) ;
1475
1500
self . abandon_payment ( payment_id, PaymentFailureReason :: UnexpectedError , pending_events) ;
1476
1501
} ,
1477
1502
PaymentSendFailure :: DuplicatePayment => debug_assert ! ( false ) , // unreachable
@@ -1880,9 +1905,15 @@ impl OutboundPayments {
1880
1905
// If we failed to send any paths, remove the new PaymentId from the `pending_outbound_payments`
1881
1906
// map as the payment is free to be resent.
1882
1907
fn remove_outbound_if_all_failed ( & self , payment_id : PaymentId , err : & PaymentSendFailure ) {
1883
- if let & PaymentSendFailure :: AllFailedResendSafe ( _) = err {
1884
- let removed = self . pending_outbound_payments . lock ( ) . unwrap ( ) . remove ( & payment_id) . is_some ( ) ;
1885
- debug_assert ! ( removed, "We should always have a pending payment to remove here" ) ;
1908
+ match err {
1909
+ PaymentSendFailure :: AllFailedResendSafe ( _)
1910
+ | PaymentSendFailure :: ParameterError ( _)
1911
+ | PaymentSendFailure :: PathParameterError ( _) =>
1912
+ {
1913
+ let removed = self . pending_outbound_payments . lock ( ) . unwrap ( ) . remove ( & payment_id) . is_some ( ) ;
1914
+ debug_assert ! ( removed, "We should always have a pending payment to remove here" ) ;
1915
+ } ,
1916
+ PaymentSendFailure :: DuplicatePayment | PaymentSendFailure :: PartialFailure { .. } => { }
1886
1917
}
1887
1918
}
1888
1919
0 commit comments