Skip to content

Commit 871db63

Browse files
authored
Merge pull request #2818 from valentinewallace/2024-01-blinded-path-retries
Avoid retrying over previously failed blinded paths
2 parents a175958 + 5c87f40 commit 871db63

File tree

4 files changed

+191
-19
lines changed

4 files changed

+191
-19
lines changed

lightning/src/ln/blinded_payment_tests.rs

+120-7
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
1111
use crate::blinded_path::BlindedPath;
1212
use crate::blinded_path::payment::{ForwardNode, ForwardTlvs, PaymentConstraints, PaymentRelay, ReceiveTlvs};
13-
use crate::events::{HTLCDestination, MessageSendEvent, MessageSendEventsProvider};
13+
use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, PaymentFailureReason};
1414
use crate::ln::PaymentSecret;
1515
use crate::ln::channelmanager;
1616
use crate::ln::channelmanager::{PaymentId, RecipientOnionFields};
@@ -21,15 +21,16 @@ use crate::ln::msgs::ChannelMessageHandler;
2121
use crate::ln::onion_utils;
2222
use crate::ln::onion_utils::INVALID_ONION_BLINDING;
2323
use crate::ln::outbound_payment::Retry;
24+
use crate::offers::invoice::BlindedPayInfo;
2425
use crate::prelude::*;
2526
use crate::routing::router::{Payee, PaymentParameters, RouteParameters};
2627
use crate::util::config::UserConfig;
2728
use crate::util::test_utils;
2829

29-
pub fn get_blinded_route_parameters(
30-
amt_msat: u64, payment_secret: PaymentSecret, node_ids: Vec<PublicKey>,
30+
fn blinded_payment_path(
31+
payment_secret: PaymentSecret, node_ids: Vec<PublicKey>,
3132
channel_upds: &[&msgs::UnsignedChannelUpdate], keys_manager: &test_utils::TestKeysInterface
32-
) -> RouteParameters {
33+
) -> (BlindedPayInfo, BlindedPath) {
3334
let mut intermediate_nodes = Vec::new();
3435
for (node_id, chan_upd) in node_ids.iter().zip(channel_upds) {
3536
intermediate_nodes.push(ForwardNode {
@@ -58,13 +59,20 @@ pub fn get_blinded_route_parameters(
5859
},
5960
};
6061
let mut secp_ctx = Secp256k1::new();
61-
let blinded_path = BlindedPath::new_for_payment(
62+
BlindedPath::new_for_payment(
6263
&intermediate_nodes[..], *node_ids.last().unwrap(), payee_tlvs,
6364
channel_upds.last().unwrap().htlc_maximum_msat, keys_manager, &secp_ctx
64-
).unwrap();
65+
).unwrap()
66+
}
6567

68+
pub fn get_blinded_route_parameters(
69+
amt_msat: u64, payment_secret: PaymentSecret, node_ids: Vec<PublicKey>,
70+
channel_upds: &[&msgs::UnsignedChannelUpdate], keys_manager: &test_utils::TestKeysInterface
71+
) -> RouteParameters {
6672
RouteParameters::from_payment_params_and_value(
67-
PaymentParameters::blinded(vec![blinded_path]), amt_msat
73+
PaymentParameters::blinded(vec![
74+
blinded_payment_path(payment_secret, node_ids, channel_upds, keys_manager)
75+
]), amt_msat
6876
)
6977
}
7078

@@ -725,3 +733,108 @@ fn do_multi_hop_receiver_fail(check: ReceiveCheckFail) {
725733
expect_payment_failed_conditions(&nodes[0], payment_hash, false,
726734
PaymentFailedConditions::new().expected_htlc_error_data(INVALID_ONION_BLINDING, &[0; 32]));
727735
}
736+
737+
#[test]
738+
fn blinded_path_retries() {
739+
let chanmon_cfgs = create_chanmon_cfgs(4);
740+
// Make one blinded path's fees slightly higher so they are tried in a deterministic order.
741+
let mut higher_fee_chan_cfg = test_default_channel_config();
742+
higher_fee_chan_cfg.channel_config.forwarding_fee_base_msat += 1;
743+
let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
744+
let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, Some(higher_fee_chan_cfg), None]);
745+
let mut nodes = create_network(4, &node_cfgs, &node_chanmgrs);
746+
747+
// Create this network topology so nodes[0] has a blinded route hint to retry over.
748+
// n1
749+
// / \
750+
// n0 n3
751+
// \ /
752+
// n2
753+
create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1_000_000, 0);
754+
create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 1_000_000, 0);
755+
let chan_1_3 = create_announced_chan_between_nodes_with_value(&nodes, 1, 3, 1_000_000, 0);
756+
let chan_2_3 = create_announced_chan_between_nodes_with_value(&nodes, 2, 3, 1_000_000, 0);
757+
758+
let amt_msat = 5000;
759+
let (_, payment_hash, payment_secret) = get_payment_preimage_hash(&nodes[3], Some(amt_msat), None);
760+
let route_params = {
761+
let pay_params = PaymentParameters::blinded(
762+
vec![
763+
blinded_payment_path(payment_secret,
764+
vec![nodes[1].node.get_our_node_id(), nodes[3].node.get_our_node_id()], &[&chan_1_3.0.contents],
765+
&chanmon_cfgs[3].keys_manager
766+
),
767+
blinded_payment_path(payment_secret,
768+
vec![nodes[2].node.get_our_node_id(), nodes[3].node.get_our_node_id()], &[&chan_2_3.0.contents],
769+
&chanmon_cfgs[3].keys_manager
770+
),
771+
]
772+
)
773+
.with_bolt12_features(channelmanager::provided_bolt12_invoice_features(&UserConfig::default()))
774+
.unwrap();
775+
RouteParameters::from_payment_params_and_value(pay_params, amt_msat)
776+
};
777+
778+
nodes[0].node.send_payment(payment_hash, RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0), route_params.clone(), Retry::Attempts(2)).unwrap();
779+
check_added_monitors(&nodes[0], 1);
780+
pass_along_route(&nodes[0], &[&[&nodes[1], &nodes[3]]], amt_msat, payment_hash, payment_secret);
781+
782+
macro_rules! fail_payment_back {
783+
($intro_node: expr) => {
784+
nodes[3].node.fail_htlc_backwards(&payment_hash);
785+
expect_pending_htlcs_forwardable_conditions(
786+
nodes[3].node.get_and_clear_pending_events(), &[HTLCDestination::FailedPayment { payment_hash }]
787+
);
788+
nodes[3].node.process_pending_htlc_forwards();
789+
check_added_monitors!(nodes[3], 1);
790+
791+
let updates = get_htlc_update_msgs!(nodes[3], $intro_node.node.get_our_node_id());
792+
assert_eq!(updates.update_fail_malformed_htlcs.len(), 1);
793+
let update_malformed = &updates.update_fail_malformed_htlcs[0];
794+
assert_eq!(update_malformed.sha256_of_onion, [0; 32]);
795+
assert_eq!(update_malformed.failure_code, INVALID_ONION_BLINDING);
796+
$intro_node.node.handle_update_fail_malformed_htlc(&nodes[3].node.get_our_node_id(), update_malformed);
797+
do_commitment_signed_dance(&$intro_node, &nodes[3], &updates.commitment_signed, true, false);
798+
799+
let updates = get_htlc_update_msgs!($intro_node, nodes[0].node.get_our_node_id());
800+
assert_eq!(updates.update_fail_htlcs.len(), 1);
801+
nodes[0].node.handle_update_fail_htlc(&$intro_node.node.get_our_node_id(), &updates.update_fail_htlcs[0]);
802+
do_commitment_signed_dance(&nodes[0], &$intro_node, &updates.commitment_signed, false, false);
803+
804+
let mut events = nodes[0].node.get_and_clear_pending_events();
805+
assert_eq!(events.len(), 2);
806+
match events[0] {
807+
Event::PaymentPathFailed { payment_hash: ev_payment_hash, payment_failed_permanently, .. } => {
808+
assert_eq!(payment_hash, ev_payment_hash);
809+
assert_eq!(payment_failed_permanently, false);
810+
},
811+
_ => panic!("Unexpected event"),
812+
}
813+
match events[1] {
814+
Event::PendingHTLCsForwardable { .. } => {},
815+
_ => panic!("Unexpected event"),
816+
}
817+
nodes[0].node.process_pending_htlc_forwards();
818+
}
819+
}
820+
821+
fail_payment_back!(nodes[1]);
822+
823+
// Pass the retry along.
824+
check_added_monitors!(nodes[0], 1);
825+
let mut msg_events = nodes[0].node.get_and_clear_pending_msg_events();
826+
assert_eq!(msg_events.len(), 1);
827+
pass_along_path(&nodes[0], &[&nodes[2], &nodes[3]], amt_msat, payment_hash, Some(payment_secret), msg_events.pop().unwrap(), true, None);
828+
829+
fail_payment_back!(nodes[2]);
830+
let evs = nodes[0].node.get_and_clear_pending_events();
831+
assert_eq!(evs.len(), 1);
832+
match evs[0] {
833+
Event::PaymentFailed { payment_hash: ev_payment_hash, reason, .. } => {
834+
assert_eq!(ev_payment_hash, payment_hash);
835+
// We have 1 retry attempt remaining, but we're out of blinded paths to try.
836+
assert_eq!(reason, Some(PaymentFailureReason::RouteNotFound));
837+
},
838+
_ => panic!()
839+
}
840+
}

lightning/src/ln/onion_utils.rs

+14-6
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@ pub(crate) struct DecodedOnionFailure {
429429
pub(crate) network_update: Option<NetworkUpdate>,
430430
pub(crate) short_channel_id: Option<u64>,
431431
pub(crate) payment_failed_permanently: bool,
432+
pub(crate) failed_within_blinded_path: bool,
432433
#[cfg(test)]
433434
pub(crate) onion_error_code: Option<u16>,
434435
#[cfg(test)]
@@ -463,6 +464,7 @@ pub(super) fn process_onion_failure<T: secp256k1::Signing, L: Deref>(
463464
network_update: Option<NetworkUpdate>,
464465
short_channel_id: Option<u64>,
465466
payment_failed_permanently: bool,
467+
failed_within_blinded_path: bool,
466468
}
467469
let mut res: Option<FailureLearnings> = None;
468470
let mut htlc_msat = *first_hop_htlc_msat;
@@ -488,7 +490,8 @@ pub(super) fn process_onion_failure<T: secp256k1::Signing, L: Deref>(
488490
error_code_ret = Some(BADONION | PERM | 24); // invalid_onion_blinding
489491
error_packet_ret = Some(vec![0; 32]);
490492
res = Some(FailureLearnings {
491-
network_update: None, short_channel_id: None, payment_failed_permanently: false
493+
network_update: None, short_channel_id: None, payment_failed_permanently: false,
494+
failed_within_blinded_path: true,
492495
});
493496
return
494497
},
@@ -520,7 +523,8 @@ pub(super) fn process_onion_failure<T: secp256k1::Signing, L: Deref>(
520523
}
521524

522525
res = Some(FailureLearnings {
523-
network_update: None, short_channel_id: None, payment_failed_permanently: false
526+
network_update: None, short_channel_id: None, payment_failed_permanently: false,
527+
failed_within_blinded_path: true,
524528
});
525529
return
526530
}
@@ -550,7 +554,8 @@ pub(super) fn process_onion_failure<T: secp256k1::Signing, L: Deref>(
550554
});
551555
let short_channel_id = Some(route_hop.short_channel_id);
552556
res = Some(FailureLearnings {
553-
network_update, short_channel_id, payment_failed_permanently: is_from_final_node
557+
network_update, short_channel_id, payment_failed_permanently: is_from_final_node,
558+
failed_within_blinded_path: false
554559
});
555560
return
556561
}
@@ -706,7 +711,8 @@ pub(super) fn process_onion_failure<T: secp256k1::Signing, L: Deref>(
706711

707712
res = Some(FailureLearnings {
708713
network_update, short_channel_id,
709-
payment_failed_permanently: error_code & PERM == PERM && is_from_final_node
714+
payment_failed_permanently: error_code & PERM == PERM && is_from_final_node,
715+
failed_within_blinded_path: false
710716
});
711717

712718
let (description, title) = errors::get_onion_error_description(error_code);
@@ -717,10 +723,10 @@ pub(super) fn process_onion_failure<T: secp256k1::Signing, L: Deref>(
717723
}
718724
}).expect("Route that we sent via spontaneously grew invalid keys in the middle of it?");
719725
if let Some(FailureLearnings {
720-
network_update, short_channel_id, payment_failed_permanently
726+
network_update, short_channel_id, payment_failed_permanently, failed_within_blinded_path
721727
}) = res {
722728
DecodedOnionFailure {
723-
network_update, short_channel_id, payment_failed_permanently,
729+
network_update, short_channel_id, payment_failed_permanently, failed_within_blinded_path,
724730
#[cfg(test)]
725731
onion_error_code: error_code_ret,
726732
#[cfg(test)]
@@ -731,6 +737,7 @@ pub(super) fn process_onion_failure<T: secp256k1::Signing, L: Deref>(
731737
// payment not retryable only when garbage is from the final node
732738
DecodedOnionFailure {
733739
network_update: None, short_channel_id: None, payment_failed_permanently: is_from_final_node,
740+
failed_within_blinded_path: false,
734741
#[cfg(test)]
735742
onion_error_code: None,
736743
#[cfg(test)]
@@ -878,6 +885,7 @@ impl HTLCFailReason {
878885
network_update: None,
879886
payment_failed_permanently: false,
880887
short_channel_id: Some(path.hops[0].short_channel_id),
888+
failed_within_blinded_path: false,
881889
#[cfg(test)]
882890
onion_error_code: Some(*failure_code),
883891
#[cfg(test)]

lightning/src/ln/outbound_payment.rs

+16-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use crate::ln::{PaymentHash, PaymentPreimage, PaymentSecret};
1919
use crate::ln::channelmanager::{ChannelDetails, EventCompletionAction, HTLCSource, PaymentId};
2020
use crate::ln::onion_utils::{DecodedOnionFailure, HTLCFailReason};
2121
use crate::offers::invoice::Bolt12Invoice;
22-
use crate::routing::router::{InFlightHtlcs, Path, PaymentParameters, Route, RouteParameters, Router};
22+
use crate::routing::router::{BlindedTail, InFlightHtlcs, Path, PaymentParameters, Route, RouteParameters, Router};
2323
use crate::util::errors::APIError;
2424
use crate::util::logger::Logger;
2525
use crate::util::time::Time;
@@ -129,6 +129,11 @@ impl PendingOutboundPayment {
129129
params.previously_failed_channels.push(scid);
130130
}
131131
}
132+
pub fn insert_previously_failed_blinded_path(&mut self, blinded_tail: &BlindedTail) {
133+
if let PendingOutboundPayment::Retryable { payment_params: Some(params), .. } = self {
134+
params.insert_previously_failed_blinded_path(blinded_tail);
135+
}
136+
}
132137
fn is_awaiting_invoice(&self) -> bool {
133138
match self {
134139
PendingOutboundPayment::AwaitingInvoice { .. } => true,
@@ -1604,11 +1609,12 @@ impl OutboundPayments {
16041609
#[cfg(test)]
16051610
let DecodedOnionFailure {
16061611
network_update, short_channel_id, payment_failed_permanently, onion_error_code,
1607-
onion_error_data
1612+
onion_error_data, failed_within_blinded_path
16081613
} = onion_error.decode_onion_failure(secp_ctx, logger, &source);
16091614
#[cfg(not(test))]
1610-
let DecodedOnionFailure { network_update, short_channel_id, payment_failed_permanently } =
1611-
onion_error.decode_onion_failure(secp_ctx, logger, &source);
1615+
let DecodedOnionFailure {
1616+
network_update, short_channel_id, payment_failed_permanently, failed_within_blinded_path
1617+
} = onion_error.decode_onion_failure(secp_ctx, logger, &source);
16121618

16131619
let payment_is_probe = payment_is_probe(payment_hash, &payment_id, probing_cookie_secret);
16141620
let mut session_priv_bytes = [0; 32];
@@ -1647,6 +1653,12 @@ impl OutboundPayments {
16471653
// next-hop is needlessly blaming us!
16481654
payment.get_mut().insert_previously_failed_scid(scid);
16491655
}
1656+
if failed_within_blinded_path {
1657+
debug_assert!(short_channel_id.is_none());
1658+
if let Some(bt) = &path.blinded_tail {
1659+
payment.get_mut().insert_previously_failed_blinded_path(&bt);
1660+
} else { debug_assert!(false); }
1661+
}
16501662

16511663
if payment_is_probe || !is_retryable_now || payment_failed_permanently {
16521664
let reason = if payment_failed_permanently {

0 commit comments

Comments
 (0)