Fix import order in gossip.rs.
[rust-lightning] / lightning / src / routing / router.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! The router finds paths within a [`NetworkGraph`] for a payment.
11
12 use bitcoin::secp256k1::{PublicKey, Secp256k1, self};
13
14 use crate::blinded_path::{BlindedHop, BlindedPath, Direction, IntroductionNode};
15 use crate::blinded_path::payment::{ForwardNode, ForwardTlvs, PaymentConstraints, PaymentRelay, ReceiveTlvs};
16 use crate::ln::{PaymentHash, PaymentPreimage};
17 use crate::ln::channelmanager::{ChannelDetails, PaymentId, MIN_FINAL_CLTV_EXPIRY_DELTA, RecipientOnionFields};
18 use crate::ln::features::{BlindedHopFeatures, Bolt11InvoiceFeatures, Bolt12InvoiceFeatures, ChannelFeatures, NodeFeatures};
19 use crate::ln::msgs::{DecodeError, ErrorAction, LightningError, MAX_VALUE_MSAT};
20 use crate::ln::onion_utils;
21 use crate::offers::invoice::{BlindedPayInfo, Bolt12Invoice};
22 use crate::onion_message::messenger::{DefaultMessageRouter, Destination, MessageRouter, OnionMessagePath};
23 use crate::routing::gossip::{DirectedChannelInfo, EffectiveCapacity, ReadOnlyNetworkGraph, NetworkGraph, NodeId, RoutingFees};
24 use crate::routing::scoring::{ChannelUsage, LockableScore, ScoreLookUp};
25 use crate::sign::EntropySource;
26 use crate::util::ser::{Writeable, Readable, ReadableArgs, Writer};
27 use crate::util::logger::{Level, Logger};
28 use crate::crypto::chacha20::ChaCha20;
29
30 use crate::io;
31 use crate::prelude::*;
32 use alloc::collections::BinaryHeap;
33 use core::{cmp, fmt};
34 use core::ops::Deref;
35
36 /// A [`Router`] implemented using [`find_route`].
37 pub struct DefaultRouter<G: Deref<Target = NetworkGraph<L>> + Clone, L: Deref, ES: Deref, S: Deref, SP: Sized, Sc: ScoreLookUp<ScoreParams = SP>> where
38         L::Target: Logger,
39         S::Target: for <'a> LockableScore<'a, ScoreLookUp = Sc>,
40         ES::Target: EntropySource,
41 {
42         network_graph: G,
43         logger: L,
44         entropy_source: ES,
45         scorer: S,
46         score_params: SP,
47         message_router: DefaultMessageRouter<G, L, ES>,
48 }
49
50 impl<G: Deref<Target = NetworkGraph<L>> + Clone, L: Deref, ES: Deref + Clone, S: Deref, SP: Sized, Sc: ScoreLookUp<ScoreParams = SP>> DefaultRouter<G, L, ES, S, SP, Sc> where
51         L::Target: Logger,
52         S::Target: for <'a> LockableScore<'a, ScoreLookUp = Sc>,
53         ES::Target: EntropySource,
54 {
55         /// Creates a new router.
56         pub fn new(network_graph: G, logger: L, entropy_source: ES, scorer: S, score_params: SP) -> Self {
57                 let message_router = DefaultMessageRouter::new(network_graph.clone(), entropy_source.clone());
58                 Self { network_graph, logger, entropy_source, scorer, score_params, message_router }
59         }
60 }
61
62 impl<G: Deref<Target = NetworkGraph<L>> + Clone, L: Deref, ES: Deref, S: Deref, SP: Sized, Sc: ScoreLookUp<ScoreParams = SP>> Router for DefaultRouter<G, L, ES, S, SP, Sc> where
63         L::Target: Logger,
64         S::Target: for <'a> LockableScore<'a, ScoreLookUp = Sc>,
65         ES::Target: EntropySource,
66 {
67         fn find_route(
68                 &self,
69                 payer: &PublicKey,
70                 params: &RouteParameters,
71                 first_hops: Option<&[&ChannelDetails]>,
72                 inflight_htlcs: InFlightHtlcs
73         ) -> Result<Route, LightningError> {
74                 let random_seed_bytes = self.entropy_source.get_secure_random_bytes();
75                 find_route(
76                         payer, params, &self.network_graph, first_hops, &*self.logger,
77                         &ScorerAccountingForInFlightHtlcs::new(self.scorer.read_lock(), &inflight_htlcs),
78                         &self.score_params,
79                         &random_seed_bytes
80                 )
81         }
82
83         fn create_blinded_payment_paths<
84                 T: secp256k1::Signing + secp256k1::Verification
85         > (
86                 &self, recipient: PublicKey, first_hops: Vec<ChannelDetails>, tlvs: ReceiveTlvs,
87                 amount_msats: u64, secp_ctx: &Secp256k1<T>
88         ) -> Result<Vec<(BlindedPayInfo, BlindedPath)>, ()> {
89                 // Limit the number of blinded paths that are computed.
90                 const MAX_PAYMENT_PATHS: usize = 3;
91
92                 // Ensure peers have at least three channels so that it is more difficult to infer the
93                 // recipient's node_id.
94                 const MIN_PEER_CHANNELS: usize = 3;
95
96                 let network_graph = self.network_graph.deref().read_only();
97                 let paths = first_hops.into_iter()
98                         .filter(|details| details.counterparty.features.supports_route_blinding())
99                         .filter(|details| amount_msats <= details.inbound_capacity_msat)
100                         .filter(|details| amount_msats >= details.inbound_htlc_minimum_msat.unwrap_or(0))
101                         .filter(|details| amount_msats <= details.inbound_htlc_maximum_msat.unwrap_or(u64::MAX))
102                         .filter(|details| network_graph
103                                         .node(&NodeId::from_pubkey(&details.counterparty.node_id))
104                                         .map(|node_info| node_info.channels.len() >= MIN_PEER_CHANNELS)
105                                         .unwrap_or(false)
106                         )
107                         .filter_map(|details| {
108                                 let short_channel_id = match details.get_inbound_payment_scid() {
109                                         Some(short_channel_id) => short_channel_id,
110                                         None => return None,
111                                 };
112                                 let payment_relay: PaymentRelay = match details.counterparty.forwarding_info {
113                                         Some(forwarding_info) => match forwarding_info.try_into() {
114                                                 Ok(payment_relay) => payment_relay,
115                                                 Err(()) => return None,
116                                         },
117                                         None => return None,
118                                 };
119
120                                 let cltv_expiry_delta = payment_relay.cltv_expiry_delta as u32;
121                                 let payment_constraints = PaymentConstraints {
122                                         max_cltv_expiry: tlvs.payment_constraints.max_cltv_expiry + cltv_expiry_delta,
123                                         htlc_minimum_msat: details.inbound_htlc_minimum_msat.unwrap_or(0),
124                                 };
125                                 Some(ForwardNode {
126                                         tlvs: ForwardTlvs {
127                                                 short_channel_id,
128                                                 payment_relay,
129                                                 payment_constraints,
130                                                 features: BlindedHopFeatures::empty(),
131                                         },
132                                         node_id: details.counterparty.node_id,
133                                         htlc_maximum_msat: details.inbound_htlc_maximum_msat.unwrap_or(u64::MAX),
134                                 })
135                         })
136                         .map(|forward_node| {
137                                 BlindedPath::new_for_payment(
138                                         &[forward_node], recipient, tlvs.clone(), u64::MAX, MIN_FINAL_CLTV_EXPIRY_DELTA,
139                                         &*self.entropy_source, secp_ctx
140                                 )
141                         })
142                         .take(MAX_PAYMENT_PATHS)
143                         .collect::<Result<Vec<_>, _>>();
144
145                 match paths {
146                         Ok(paths) if !paths.is_empty() => Ok(paths),
147                         _ => {
148                                 if network_graph.nodes().contains_key(&NodeId::from_pubkey(&recipient)) {
149                                         BlindedPath::one_hop_for_payment(
150                                                 recipient, tlvs, MIN_FINAL_CLTV_EXPIRY_DELTA, &*self.entropy_source, secp_ctx
151                                         ).map(|path| vec![path])
152                                 } else {
153                                         Err(())
154                                 }
155                         },
156                 }
157         }
158 }
159
160 impl< G: Deref<Target = NetworkGraph<L>> + Clone, L: Deref, ES: Deref, S: Deref, SP: Sized, Sc: ScoreLookUp<ScoreParams = SP>> MessageRouter for DefaultRouter<G, L, ES, S, SP, Sc> where
161         L::Target: Logger,
162         S::Target: for <'a> LockableScore<'a, ScoreLookUp = Sc>,
163         ES::Target: EntropySource,
164 {
165         fn find_path(
166                 &self, sender: PublicKey, peers: Vec<PublicKey>, destination: Destination
167         ) -> Result<OnionMessagePath, ()> {
168                 self.message_router.find_path(sender, peers, destination)
169         }
170
171         fn create_blinded_paths<
172                 T: secp256k1::Signing + secp256k1::Verification
173         > (
174                 &self, recipient: PublicKey, peers: Vec<PublicKey>, secp_ctx: &Secp256k1<T>,
175         ) -> Result<Vec<BlindedPath>, ()> {
176                 self.message_router.create_blinded_paths(recipient, peers, secp_ctx)
177         }
178 }
179
180 /// A trait defining behavior for routing a payment.
181 pub trait Router: MessageRouter {
182         /// Finds a [`Route`] for a payment between the given `payer` and a payee.
183         ///
184         /// The `payee` and the payment's value are given in [`RouteParameters::payment_params`]
185         /// and [`RouteParameters::final_value_msat`], respectively.
186         fn find_route(
187                 &self, payer: &PublicKey, route_params: &RouteParameters,
188                 first_hops: Option<&[&ChannelDetails]>, inflight_htlcs: InFlightHtlcs
189         ) -> Result<Route, LightningError>;
190
191         /// Finds a [`Route`] for a payment between the given `payer` and a payee.
192         ///
193         /// The `payee` and the payment's value are given in [`RouteParameters::payment_params`]
194         /// and [`RouteParameters::final_value_msat`], respectively.
195         ///
196         /// Includes a [`PaymentHash`] and a [`PaymentId`] to be able to correlate the request with a specific
197         /// payment.
198         fn find_route_with_id(
199                 &self, payer: &PublicKey, route_params: &RouteParameters,
200                 first_hops: Option<&[&ChannelDetails]>, inflight_htlcs: InFlightHtlcs,
201                 _payment_hash: PaymentHash, _payment_id: PaymentId
202         ) -> Result<Route, LightningError> {
203                 self.find_route(payer, route_params, first_hops, inflight_htlcs)
204         }
205
206         /// Creates [`BlindedPath`]s for payment to the `recipient` node. The channels in `first_hops`
207         /// are assumed to be with the `recipient`'s peers. The payment secret and any constraints are
208         /// given in `tlvs`.
209         fn create_blinded_payment_paths<
210                 T: secp256k1::Signing + secp256k1::Verification
211         > (
212                 &self, recipient: PublicKey, first_hops: Vec<ChannelDetails>, tlvs: ReceiveTlvs,
213                 amount_msats: u64, secp_ctx: &Secp256k1<T>
214         ) -> Result<Vec<(BlindedPayInfo, BlindedPath)>, ()>;
215 }
216
217 /// [`ScoreLookUp`] implementation that factors in in-flight HTLC liquidity.
218 ///
219 /// Useful for custom [`Router`] implementations to wrap their [`ScoreLookUp`] on-the-fly when calling
220 /// [`find_route`].
221 ///
222 /// [`ScoreLookUp`]: crate::routing::scoring::ScoreLookUp
223 pub struct ScorerAccountingForInFlightHtlcs<'a, S: Deref> where S::Target: ScoreLookUp {
224         scorer: S,
225         // Maps a channel's short channel id and its direction to the liquidity used up.
226         inflight_htlcs: &'a InFlightHtlcs,
227 }
228 impl<'a, S: Deref> ScorerAccountingForInFlightHtlcs<'a, S> where S::Target: ScoreLookUp {
229         /// Initialize a new `ScorerAccountingForInFlightHtlcs`.
230         pub fn new(scorer: S, inflight_htlcs: &'a InFlightHtlcs) -> Self {
231                 ScorerAccountingForInFlightHtlcs {
232                         scorer,
233                         inflight_htlcs
234                 }
235         }
236 }
237
238 impl<'a, S: Deref> ScoreLookUp for ScorerAccountingForInFlightHtlcs<'a, S> where S::Target: ScoreLookUp {
239         type ScoreParams = <S::Target as ScoreLookUp>::ScoreParams;
240         fn channel_penalty_msat(&self, candidate: &CandidateRouteHop, usage: ChannelUsage, score_params: &Self::ScoreParams) -> u64 {
241                 let target = match candidate.target() {
242                         Some(target) => target,
243                         None => return self.scorer.channel_penalty_msat(candidate, usage, score_params),
244                 };
245                 let short_channel_id = match candidate.short_channel_id() {
246                         Some(short_channel_id) => short_channel_id,
247                         None => return self.scorer.channel_penalty_msat(candidate, usage, score_params),
248                 };
249                 let source = candidate.source();
250                 if let Some(used_liquidity) = self.inflight_htlcs.used_liquidity_msat(
251                         &source, &target, short_channel_id
252                 ) {
253                         let usage = ChannelUsage {
254                                 inflight_htlc_msat: usage.inflight_htlc_msat.saturating_add(used_liquidity),
255                                 ..usage
256                         };
257
258                         self.scorer.channel_penalty_msat(candidate, usage, score_params)
259                 } else {
260                         self.scorer.channel_penalty_msat(candidate, usage, score_params)
261                 }
262         }
263 }
264
265 /// A data structure for tracking in-flight HTLCs. May be used during pathfinding to account for
266 /// in-use channel liquidity.
267 #[derive(Clone)]
268 pub struct InFlightHtlcs(
269         // A map with liquidity value (in msat) keyed by a short channel id and the direction the HTLC
270         // is traveling in. The direction boolean is determined by checking if the HTLC source's public
271         // key is less than its destination. See `InFlightHtlcs::used_liquidity_msat` for more
272         // details.
273         HashMap<(u64, bool), u64>
274 );
275
276 impl InFlightHtlcs {
277         /// Constructs an empty `InFlightHtlcs`.
278         pub fn new() -> Self { InFlightHtlcs(new_hash_map()) }
279
280         /// Takes in a path with payer's node id and adds the path's details to `InFlightHtlcs`.
281         pub fn process_path(&mut self, path: &Path, payer_node_id: PublicKey) {
282                 if path.hops.is_empty() { return };
283
284                 let mut cumulative_msat = 0;
285                 if let Some(tail) = &path.blinded_tail {
286                         cumulative_msat += tail.final_value_msat;
287                 }
288
289                 // total_inflight_map needs to be direction-sensitive when keeping track of the HTLC value
290                 // that is held up. However, the `hops` array, which is a path returned by `find_route` in
291                 // the router excludes the payer node. In the following lines, the payer's information is
292                 // hardcoded with an inflight value of 0 so that we can correctly represent the first hop
293                 // in our sliding window of two.
294                 let reversed_hops_with_payer = path.hops.iter().rev().skip(1)
295                         .map(|hop| hop.pubkey)
296                         .chain(core::iter::once(payer_node_id));
297
298                 // Taking the reversed vector from above, we zip it with just the reversed hops list to
299                 // work "backwards" of the given path, since the last hop's `fee_msat` actually represents
300                 // the total amount sent.
301                 for (next_hop, prev_hop) in path.hops.iter().rev().zip(reversed_hops_with_payer) {
302                         cumulative_msat += next_hop.fee_msat;
303                         self.0
304                                 .entry((next_hop.short_channel_id, NodeId::from_pubkey(&prev_hop) < NodeId::from_pubkey(&next_hop.pubkey)))
305                                 .and_modify(|used_liquidity_msat| *used_liquidity_msat += cumulative_msat)
306                                 .or_insert(cumulative_msat);
307                 }
308         }
309
310         /// Adds a known HTLC given the public key of the HTLC source, target, and short channel
311         /// id.
312         pub fn add_inflight_htlc(&mut self, source: &NodeId, target: &NodeId, channel_scid: u64, used_msat: u64){
313                 self.0
314                         .entry((channel_scid, source < target))
315                         .and_modify(|used_liquidity_msat| *used_liquidity_msat += used_msat)
316                         .or_insert(used_msat);
317         }
318
319         /// Returns liquidity in msat given the public key of the HTLC source, target, and short channel
320         /// id.
321         pub fn used_liquidity_msat(&self, source: &NodeId, target: &NodeId, channel_scid: u64) -> Option<u64> {
322                 self.0.get(&(channel_scid, source < target)).map(|v| *v)
323         }
324 }
325
326 impl Writeable for InFlightHtlcs {
327         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> { self.0.write(writer) }
328 }
329
330 impl Readable for InFlightHtlcs {
331         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
332                 let infight_map: HashMap<(u64, bool), u64> = Readable::read(reader)?;
333                 Ok(Self(infight_map))
334         }
335 }
336
337 /// A hop in a route, and additional metadata about it. "Hop" is defined as a node and the channel
338 /// that leads to it.
339 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
340 pub struct RouteHop {
341         /// The node_id of the node at this hop.
342         pub pubkey: PublicKey,
343         /// The node_announcement features of the node at this hop. For the last hop, these may be
344         /// amended to match the features present in the invoice this node generated.
345         pub node_features: NodeFeatures,
346         /// The channel that should be used from the previous hop to reach this node.
347         pub short_channel_id: u64,
348         /// The channel_announcement features of the channel that should be used from the previous hop
349         /// to reach this node.
350         pub channel_features: ChannelFeatures,
351         /// The fee taken on this hop (for paying for the use of the *next* channel in the path).
352         /// If this is the last hop in [`Path::hops`]:
353         /// * if we're sending to a [`BlindedPath`], this is the fee paid for use of the entire blinded path
354         /// * otherwise, this is the full value of this [`Path`]'s part of the payment
355         ///
356         /// [`BlindedPath`]: crate::blinded_path::BlindedPath
357         pub fee_msat: u64,
358         /// The CLTV delta added for this hop.
359         /// If this is the last hop in [`Path::hops`]:
360         /// * if we're sending to a [`BlindedPath`], this is the CLTV delta for the entire blinded path
361         /// * otherwise, this is the CLTV delta expected at the destination
362         ///
363         /// [`BlindedPath`]: crate::blinded_path::BlindedPath
364         pub cltv_expiry_delta: u32,
365         /// Indicates whether this hop is possibly announced in the public network graph.
366         ///
367         /// Will be `true` if there is a possibility that the channel is publicly known, i.e., if we
368         /// either know for sure it's announced in the public graph, or if any public channels exist
369         /// for which the given `short_channel_id` could be an alias for. Will be `false` if we believe
370         /// the channel to be unannounced.
371         ///
372         /// Will be `true` for objects serialized with LDK version 0.0.116 and before.
373         pub maybe_announced_channel: bool,
374 }
375
376 impl_writeable_tlv_based!(RouteHop, {
377         (0, pubkey, required),
378         (1, maybe_announced_channel, (default_value, true)),
379         (2, node_features, required),
380         (4, short_channel_id, required),
381         (6, channel_features, required),
382         (8, fee_msat, required),
383         (10, cltv_expiry_delta, required),
384 });
385
386 /// The blinded portion of a [`Path`], if we're routing to a recipient who provided blinded paths in
387 /// their [`Bolt12Invoice`].
388 ///
389 /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
390 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
391 pub struct BlindedTail {
392         /// The hops of the [`BlindedPath`] provided by the recipient.
393         ///
394         /// [`BlindedPath`]: crate::blinded_path::BlindedPath
395         pub hops: Vec<BlindedHop>,
396         /// The blinding point of the [`BlindedPath`] provided by the recipient.
397         ///
398         /// [`BlindedPath`]: crate::blinded_path::BlindedPath
399         pub blinding_point: PublicKey,
400         /// Excess CLTV delta added to the recipient's CLTV expiry to deter intermediate nodes from
401         /// inferring the destination. May be 0.
402         pub excess_final_cltv_expiry_delta: u32,
403         /// The total amount paid on this [`Path`], excluding the fees.
404         pub final_value_msat: u64,
405 }
406
407 impl_writeable_tlv_based!(BlindedTail, {
408         (0, hops, required_vec),
409         (2, blinding_point, required),
410         (4, excess_final_cltv_expiry_delta, required),
411         (6, final_value_msat, required),
412 });
413
414 /// A path in a [`Route`] to the payment recipient. Must always be at least length one.
415 /// If no [`Path::blinded_tail`] is present, then [`Path::hops`] length may be up to 19.
416 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
417 pub struct Path {
418         /// The list of unblinded hops in this [`Path`]. Must be at least length one.
419         pub hops: Vec<RouteHop>,
420         /// The blinded path at which this path terminates, if we're sending to one, and its metadata.
421         pub blinded_tail: Option<BlindedTail>,
422 }
423
424 impl Path {
425         /// Gets the fees for a given path, excluding any excess paid to the recipient.
426         pub fn fee_msat(&self) -> u64 {
427                 match &self.blinded_tail {
428                         Some(_) => self.hops.iter().map(|hop| hop.fee_msat).sum::<u64>(),
429                         None => {
430                                 // Do not count last hop of each path since that's the full value of the payment
431                                 self.hops.split_last().map_or(0,
432                                         |(_, path_prefix)| path_prefix.iter().map(|hop| hop.fee_msat).sum())
433                         }
434                 }
435         }
436
437         /// Gets the total amount paid on this [`Path`], excluding the fees.
438         pub fn final_value_msat(&self) -> u64 {
439                 match &self.blinded_tail {
440                         Some(blinded_tail) => blinded_tail.final_value_msat,
441                         None => self.hops.last().map_or(0, |hop| hop.fee_msat)
442                 }
443         }
444
445         /// Gets the final hop's CLTV expiry delta.
446         pub fn final_cltv_expiry_delta(&self) -> Option<u32> {
447                 match &self.blinded_tail {
448                         Some(_) => None,
449                         None => self.hops.last().map(|hop| hop.cltv_expiry_delta)
450                 }
451         }
452 }
453
454 /// A route directs a payment from the sender (us) to the recipient. If the recipient supports MPP,
455 /// it can take multiple paths. Each path is composed of one or more hops through the network.
456 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
457 pub struct Route {
458         /// The list of [`Path`]s taken for a single (potentially-)multi-part payment. If no
459         /// [`BlindedTail`]s are present, then the pubkey of the last [`RouteHop`] in each path must be
460         /// the same.
461         pub paths: Vec<Path>,
462         /// The `route_params` parameter passed to [`find_route`].
463         ///
464         /// This is used by `ChannelManager` to track information which may be required for retries.
465         ///
466         /// Will be `None` for objects serialized with LDK versions prior to 0.0.117.
467         pub route_params: Option<RouteParameters>,
468 }
469
470 impl Route {
471         /// Returns the total amount of fees paid on this [`Route`].
472         ///
473         /// For objects serialized with LDK 0.0.117 and after, this includes any extra payment made to
474         /// the recipient, which can happen in excess of the amount passed to [`find_route`] via
475         /// [`RouteParameters::final_value_msat`], if we had to reach the [`htlc_minimum_msat`] limits.
476         ///
477         /// [`htlc_minimum_msat`]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md#the-channel_update-message
478         pub fn get_total_fees(&self) -> u64 {
479                 let overpaid_value_msat = self.route_params.as_ref()
480                         .map_or(0, |p| self.get_total_amount().saturating_sub(p.final_value_msat));
481                 overpaid_value_msat + self.paths.iter().map(|path| path.fee_msat()).sum::<u64>()
482         }
483
484         /// Returns the total amount paid on this [`Route`], excluding the fees.
485         ///
486         /// Might be more than requested as part of the given [`RouteParameters::final_value_msat`] if
487         /// we had to reach the [`htlc_minimum_msat`] limits.
488         ///
489         /// [`htlc_minimum_msat`]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md#the-channel_update-message
490         pub fn get_total_amount(&self) -> u64 {
491                 self.paths.iter().map(|path| path.final_value_msat()).sum()
492         }
493 }
494
495 impl fmt::Display for Route {
496         fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
497                 log_route!(self).fmt(f)
498         }
499 }
500
501 const SERIALIZATION_VERSION: u8 = 1;
502 const MIN_SERIALIZATION_VERSION: u8 = 1;
503
504 impl Writeable for Route {
505         fn write<W: crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
506                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
507                 (self.paths.len() as u64).write(writer)?;
508                 let mut blinded_tails = Vec::new();
509                 for (idx, path) in self.paths.iter().enumerate() {
510                         (path.hops.len() as u8).write(writer)?;
511                         for hop in path.hops.iter() {
512                                 hop.write(writer)?;
513                         }
514                         if let Some(blinded_tail) = &path.blinded_tail {
515                                 if blinded_tails.is_empty() {
516                                         blinded_tails = Vec::with_capacity(path.hops.len());
517                                         for _ in 0..idx {
518                                                 blinded_tails.push(None);
519                                         }
520                                 }
521                                 blinded_tails.push(Some(blinded_tail));
522                         } else if !blinded_tails.is_empty() { blinded_tails.push(None); }
523                 }
524                 write_tlv_fields!(writer, {
525                         // For compatibility with LDK versions prior to 0.0.117, we take the individual
526                         // RouteParameters' fields and reconstruct them on read.
527                         (1, self.route_params.as_ref().map(|p| &p.payment_params), option),
528                         (2, blinded_tails, optional_vec),
529                         (3, self.route_params.as_ref().map(|p| p.final_value_msat), option),
530                         (5, self.route_params.as_ref().and_then(|p| p.max_total_routing_fee_msat), option),
531                 });
532                 Ok(())
533         }
534 }
535
536 impl Readable for Route {
537         fn read<R: io::Read>(reader: &mut R) -> Result<Route, DecodeError> {
538                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
539                 let path_count: u64 = Readable::read(reader)?;
540                 if path_count == 0 { return Err(DecodeError::InvalidValue); }
541                 let mut paths = Vec::with_capacity(cmp::min(path_count, 128) as usize);
542                 let mut min_final_cltv_expiry_delta = u32::max_value();
543                 for _ in 0..path_count {
544                         let hop_count: u8 = Readable::read(reader)?;
545                         let mut hops: Vec<RouteHop> = Vec::with_capacity(hop_count as usize);
546                         for _ in 0..hop_count {
547                                 hops.push(Readable::read(reader)?);
548                         }
549                         if hops.is_empty() { return Err(DecodeError::InvalidValue); }
550                         min_final_cltv_expiry_delta =
551                                 cmp::min(min_final_cltv_expiry_delta, hops.last().unwrap().cltv_expiry_delta);
552                         paths.push(Path { hops, blinded_tail: None });
553                 }
554                 _init_and_read_len_prefixed_tlv_fields!(reader, {
555                         (1, payment_params, (option: ReadableArgs, min_final_cltv_expiry_delta)),
556                         (2, blinded_tails, optional_vec),
557                         (3, final_value_msat, option),
558                         (5, max_total_routing_fee_msat, option)
559                 });
560                 let blinded_tails = blinded_tails.unwrap_or(Vec::new());
561                 if blinded_tails.len() != 0 {
562                         if blinded_tails.len() != paths.len() { return Err(DecodeError::InvalidValue) }
563                         for (path, blinded_tail_opt) in paths.iter_mut().zip(blinded_tails.into_iter()) {
564                                 path.blinded_tail = blinded_tail_opt;
565                         }
566                 }
567
568                 // If we previously wrote the corresponding fields, reconstruct RouteParameters.
569                 let route_params = match (payment_params, final_value_msat) {
570                         (Some(payment_params), Some(final_value_msat)) => {
571                                 Some(RouteParameters { payment_params, final_value_msat, max_total_routing_fee_msat })
572                         }
573                         _ => None,
574                 };
575
576                 Ok(Route { paths, route_params })
577         }
578 }
579
580 /// Parameters needed to find a [`Route`].
581 ///
582 /// Passed to [`find_route`] and [`build_route_from_hops`].
583 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
584 pub struct RouteParameters {
585         /// The parameters of the failed payment path.
586         pub payment_params: PaymentParameters,
587
588         /// The amount in msats sent on the failed payment path.
589         pub final_value_msat: u64,
590
591         /// The maximum total fees, in millisatoshi, that may accrue during route finding.
592         ///
593         /// This limit also applies to the total fees that may arise while retrying failed payment
594         /// paths.
595         ///
596         /// Note that values below a few sats may result in some paths being spuriously ignored.
597         pub max_total_routing_fee_msat: Option<u64>,
598 }
599
600 impl RouteParameters {
601         /// Constructs [`RouteParameters`] from the given [`PaymentParameters`] and a payment amount.
602         ///
603         /// [`Self::max_total_routing_fee_msat`] defaults to 1% of the payment amount + 50 sats
604         pub fn from_payment_params_and_value(payment_params: PaymentParameters, final_value_msat: u64) -> Self {
605                 Self { payment_params, final_value_msat, max_total_routing_fee_msat: Some(final_value_msat / 100 + 50_000) }
606         }
607
608         /// Sets the maximum number of hops that can be included in a payment path, based on the provided
609         /// [`RecipientOnionFields`] and blinded paths.
610         pub fn set_max_path_length(
611                 &mut self, recipient_onion: &RecipientOnionFields, is_keysend: bool, best_block_height: u32
612         ) -> Result<(), ()> {
613                 let keysend_preimage_opt = is_keysend.then(|| PaymentPreimage([42; 32]));
614                 onion_utils::set_max_path_length(
615                         self, recipient_onion, keysend_preimage_opt, best_block_height
616                 )
617         }
618 }
619
620 impl Writeable for RouteParameters {
621         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
622                 write_tlv_fields!(writer, {
623                         (0, self.payment_params, required),
624                         (1, self.max_total_routing_fee_msat, option),
625                         (2, self.final_value_msat, required),
626                         // LDK versions prior to 0.0.114 had the `final_cltv_expiry_delta` parameter in
627                         // `RouteParameters` directly. For compatibility, we write it here.
628                         (4, self.payment_params.payee.final_cltv_expiry_delta(), option),
629                 });
630                 Ok(())
631         }
632 }
633
634 impl Readable for RouteParameters {
635         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
636                 _init_and_read_len_prefixed_tlv_fields!(reader, {
637                         (0, payment_params, (required: ReadableArgs, 0)),
638                         (1, max_total_routing_fee_msat, option),
639                         (2, final_value_msat, required),
640                         (4, final_cltv_delta, option),
641                 });
642                 let mut payment_params: PaymentParameters = payment_params.0.unwrap();
643                 if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = payment_params.payee {
644                         if final_cltv_expiry_delta == &0 {
645                                 *final_cltv_expiry_delta = final_cltv_delta.ok_or(DecodeError::InvalidValue)?;
646                         }
647                 }
648                 Ok(Self {
649                         payment_params,
650                         final_value_msat: final_value_msat.0.unwrap(),
651                         max_total_routing_fee_msat,
652                 })
653         }
654 }
655
656 /// Maximum total CTLV difference we allow for a full payment path.
657 pub const DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA: u32 = 1008;
658
659 /// Maximum number of paths we allow an (MPP) payment to have.
660 // The default limit is currently set rather arbitrary - there aren't any real fundamental path-count
661 // limits, but for now more than 10 paths likely carries too much one-path failure.
662 pub const DEFAULT_MAX_PATH_COUNT: u8 = 10;
663
664 const DEFAULT_MAX_CHANNEL_SATURATION_POW_HALF: u8 = 2;
665
666 // The median hop CLTV expiry delta currently seen in the network.
667 const MEDIAN_HOP_CLTV_EXPIRY_DELTA: u32 = 40;
668
669 /// Estimated maximum number of hops that can be included in a payment path. May be inaccurate if
670 /// payment metadata, custom TLVs, or blinded paths are included in the payment.
671 // During routing, we only consider paths shorter than our maximum length estimate.
672 // In the TLV onion format, there is no fixed maximum length, but the `hop_payloads`
673 // field is always 1300 bytes. As the `tlv_payload` for each hop may vary in length, we have to
674 // estimate how many hops the route may have so that it actually fits the `hop_payloads` field.
675 //
676 // We estimate 3+32 (payload length and HMAC) + 2+8 (amt_to_forward) + 2+4 (outgoing_cltv_value) +
677 // 2+8 (short_channel_id) = 61 bytes for each intermediate hop and 3+32
678 // (payload length and HMAC) + 2+8 (amt_to_forward) + 2+4 (outgoing_cltv_value) + 2+32+8
679 // (payment_secret and total_msat) = 93 bytes for the final hop.
680 // Since the length of the potentially included `payment_metadata` is unknown to us, we round
681 // down from (1300-93) / 61 = 19.78... to arrive at a conservative estimate of 19.
682 pub const MAX_PATH_LENGTH_ESTIMATE: u8 = 19;
683
684 /// Information used to route a payment.
685 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
686 pub struct PaymentParameters {
687         /// Information about the payee, such as their features and route hints for their channels.
688         pub payee: Payee,
689
690         /// Expiration of a payment to the payee, in seconds relative to the UNIX epoch.
691         pub expiry_time: Option<u64>,
692
693         /// The maximum total CLTV delta we accept for the route.
694         /// Defaults to [`DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA`].
695         pub max_total_cltv_expiry_delta: u32,
696
697         /// The maximum number of paths that may be used by (MPP) payments.
698         /// Defaults to [`DEFAULT_MAX_PATH_COUNT`].
699         pub max_path_count: u8,
700
701         /// The maximum number of [`Path::hops`] in any returned path.
702         /// Defaults to [`MAX_PATH_LENGTH_ESTIMATE`].
703         pub max_path_length: u8,
704
705         /// Selects the maximum share of a channel's total capacity which will be sent over a channel,
706         /// as a power of 1/2. A higher value prefers to send the payment using more MPP parts whereas
707         /// a lower value prefers to send larger MPP parts, potentially saturating channels and
708         /// increasing failure probability for those paths.
709         ///
710         /// Note that this restriction will be relaxed during pathfinding after paths which meet this
711         /// restriction have been found. While paths which meet this criteria will be searched for, it
712         /// is ultimately up to the scorer to select them over other paths.
713         ///
714         /// A value of 0 will allow payments up to and including a channel's total announced usable
715         /// capacity, a value of one will only use up to half its capacity, two 1/4, etc.
716         ///
717         /// Default value: 2
718         pub max_channel_saturation_power_of_half: u8,
719
720         /// A list of SCIDs which this payment was previously attempted over and which caused the
721         /// payment to fail. Future attempts for the same payment shouldn't be relayed through any of
722         /// these SCIDs.
723         pub previously_failed_channels: Vec<u64>,
724
725         /// A list of indices corresponding to blinded paths in [`Payee::Blinded::route_hints`] which this
726         /// payment was previously attempted over and which caused the payment to fail. Future attempts
727         /// for the same payment shouldn't be relayed through any of these blinded paths.
728         pub previously_failed_blinded_path_idxs: Vec<u64>,
729 }
730
731 impl Writeable for PaymentParameters {
732         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
733                 let mut clear_hints = &vec![];
734                 let mut blinded_hints = &vec![];
735                 match &self.payee {
736                         Payee::Clear { route_hints, .. } => clear_hints = route_hints,
737                         Payee::Blinded { route_hints, .. } => blinded_hints = route_hints,
738                 }
739                 write_tlv_fields!(writer, {
740                         (0, self.payee.node_id(), option),
741                         (1, self.max_total_cltv_expiry_delta, required),
742                         (2, self.payee.features(), option),
743                         (3, self.max_path_count, required),
744                         (4, *clear_hints, required_vec),
745                         (5, self.max_channel_saturation_power_of_half, required),
746                         (6, self.expiry_time, option),
747                         (7, self.previously_failed_channels, required_vec),
748                         (8, *blinded_hints, optional_vec),
749                         (9, self.payee.final_cltv_expiry_delta(), option),
750                         (11, self.previously_failed_blinded_path_idxs, required_vec),
751                         (13, self.max_path_length, required),
752                 });
753                 Ok(())
754         }
755 }
756
757 impl ReadableArgs<u32> for PaymentParameters {
758         fn read<R: io::Read>(reader: &mut R, default_final_cltv_expiry_delta: u32) -> Result<Self, DecodeError> {
759                 _init_and_read_len_prefixed_tlv_fields!(reader, {
760                         (0, payee_pubkey, option),
761                         (1, max_total_cltv_expiry_delta, (default_value, DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA)),
762                         (2, features, (option: ReadableArgs, payee_pubkey.is_some())),
763                         (3, max_path_count, (default_value, DEFAULT_MAX_PATH_COUNT)),
764                         (4, clear_route_hints, required_vec),
765                         (5, max_channel_saturation_power_of_half, (default_value, DEFAULT_MAX_CHANNEL_SATURATION_POW_HALF)),
766                         (6, expiry_time, option),
767                         (7, previously_failed_channels, optional_vec),
768                         (8, blinded_route_hints, optional_vec),
769                         (9, final_cltv_expiry_delta, (default_value, default_final_cltv_expiry_delta)),
770                         (11, previously_failed_blinded_path_idxs, optional_vec),
771                         (13, max_path_length, (default_value, MAX_PATH_LENGTH_ESTIMATE)),
772                 });
773                 let blinded_route_hints = blinded_route_hints.unwrap_or(vec![]);
774                 let payee = if blinded_route_hints.len() != 0 {
775                         if clear_route_hints.len() != 0 || payee_pubkey.is_some() { return Err(DecodeError::InvalidValue) }
776                         Payee::Blinded {
777                                 route_hints: blinded_route_hints,
778                                 features: features.and_then(|f: Features| f.bolt12()),
779                         }
780                 } else {
781                         Payee::Clear {
782                                 route_hints: clear_route_hints,
783                                 node_id: payee_pubkey.ok_or(DecodeError::InvalidValue)?,
784                                 features: features.and_then(|f| f.bolt11()),
785                                 final_cltv_expiry_delta: final_cltv_expiry_delta.0.unwrap(),
786                         }
787                 };
788                 Ok(Self {
789                         max_total_cltv_expiry_delta: _init_tlv_based_struct_field!(max_total_cltv_expiry_delta, (default_value, unused)),
790                         max_path_count: _init_tlv_based_struct_field!(max_path_count, (default_value, unused)),
791                         payee,
792                         max_channel_saturation_power_of_half: _init_tlv_based_struct_field!(max_channel_saturation_power_of_half, (default_value, unused)),
793                         expiry_time,
794                         previously_failed_channels: previously_failed_channels.unwrap_or(Vec::new()),
795                         previously_failed_blinded_path_idxs: previously_failed_blinded_path_idxs.unwrap_or(Vec::new()),
796                         max_path_length: _init_tlv_based_struct_field!(max_path_length, (default_value, unused)),
797                 })
798         }
799 }
800
801
802 impl PaymentParameters {
803         /// Creates a payee with the node id of the given `pubkey`.
804         ///
805         /// The `final_cltv_expiry_delta` should match the expected final CLTV delta the recipient has
806         /// provided.
807         pub fn from_node_id(payee_pubkey: PublicKey, final_cltv_expiry_delta: u32) -> Self {
808                 Self {
809                         payee: Payee::Clear { node_id: payee_pubkey, route_hints: vec![], features: None, final_cltv_expiry_delta },
810                         expiry_time: None,
811                         max_total_cltv_expiry_delta: DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA,
812                         max_path_count: DEFAULT_MAX_PATH_COUNT,
813                         max_path_length: MAX_PATH_LENGTH_ESTIMATE,
814                         max_channel_saturation_power_of_half: DEFAULT_MAX_CHANNEL_SATURATION_POW_HALF,
815                         previously_failed_channels: Vec::new(),
816                         previously_failed_blinded_path_idxs: Vec::new(),
817                 }
818         }
819
820         /// Creates a payee with the node id of the given `pubkey` to use for keysend payments.
821         ///
822         /// The `final_cltv_expiry_delta` should match the expected final CLTV delta the recipient has
823         /// provided.
824         ///
825         /// Note that MPP keysend is not widely supported yet. The `allow_mpp` lets you choose
826         /// whether your router will be allowed to find a multi-part route for this payment. If you
827         /// set `allow_mpp` to true, you should ensure a payment secret is set on send, likely via
828         /// [`RecipientOnionFields::secret_only`].
829         ///
830         /// [`RecipientOnionFields::secret_only`]: crate::ln::channelmanager::RecipientOnionFields::secret_only
831         pub fn for_keysend(payee_pubkey: PublicKey, final_cltv_expiry_delta: u32, allow_mpp: bool) -> Self {
832                 Self::from_node_id(payee_pubkey, final_cltv_expiry_delta)
833                         .with_bolt11_features(Bolt11InvoiceFeatures::for_keysend(allow_mpp))
834                         .expect("PaymentParameters::from_node_id should always initialize the payee as unblinded")
835         }
836
837         /// Creates parameters for paying to a blinded payee from the provided invoice. Sets
838         /// [`Payee::Blinded::route_hints`], [`Payee::Blinded::features`], and
839         /// [`PaymentParameters::expiry_time`].
840         pub fn from_bolt12_invoice(invoice: &Bolt12Invoice) -> Self {
841                 Self::blinded(invoice.payment_paths().to_vec())
842                         .with_bolt12_features(invoice.invoice_features().clone()).unwrap()
843                         .with_expiry_time(invoice.created_at().as_secs().saturating_add(invoice.relative_expiry().as_secs()))
844         }
845
846         /// Creates parameters for paying to a blinded payee from the provided blinded route hints.
847         pub fn blinded(blinded_route_hints: Vec<(BlindedPayInfo, BlindedPath)>) -> Self {
848                 Self {
849                         payee: Payee::Blinded { route_hints: blinded_route_hints, features: None },
850                         expiry_time: None,
851                         max_total_cltv_expiry_delta: DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA,
852                         max_path_count: DEFAULT_MAX_PATH_COUNT,
853                         max_path_length: MAX_PATH_LENGTH_ESTIMATE,
854                         max_channel_saturation_power_of_half: DEFAULT_MAX_CHANNEL_SATURATION_POW_HALF,
855                         previously_failed_channels: Vec::new(),
856                         previously_failed_blinded_path_idxs: Vec::new(),
857                 }
858         }
859
860         /// Includes the payee's features. Errors if the parameters were not initialized with
861         /// [`PaymentParameters::from_bolt12_invoice`].
862         ///
863         /// This is not exported to bindings users since bindings don't support move semantics
864         pub fn with_bolt12_features(self, features: Bolt12InvoiceFeatures) -> Result<Self, ()> {
865                 match self.payee {
866                         Payee::Clear { .. } => Err(()),
867                         Payee::Blinded { route_hints, .. } =>
868                                 Ok(Self { payee: Payee::Blinded { route_hints, features: Some(features) }, ..self })
869                 }
870         }
871
872         /// Includes the payee's features. Errors if the parameters were initialized with
873         /// [`PaymentParameters::from_bolt12_invoice`].
874         ///
875         /// This is not exported to bindings users since bindings don't support move semantics
876         pub fn with_bolt11_features(self, features: Bolt11InvoiceFeatures) -> Result<Self, ()> {
877                 match self.payee {
878                         Payee::Blinded { .. } => Err(()),
879                         Payee::Clear { route_hints, node_id, final_cltv_expiry_delta, .. } =>
880                                 Ok(Self {
881                                         payee: Payee::Clear {
882                                                 route_hints, node_id, features: Some(features), final_cltv_expiry_delta
883                                         }, ..self
884                                 })
885                 }
886         }
887
888         /// Includes hints for routing to the payee. Errors if the parameters were initialized with
889         /// [`PaymentParameters::from_bolt12_invoice`].
890         ///
891         /// This is not exported to bindings users since bindings don't support move semantics
892         pub fn with_route_hints(self, route_hints: Vec<RouteHint>) -> Result<Self, ()> {
893                 match self.payee {
894                         Payee::Blinded { .. } => Err(()),
895                         Payee::Clear { node_id, features, final_cltv_expiry_delta, .. } =>
896                                 Ok(Self {
897                                         payee: Payee::Clear {
898                                                 route_hints, node_id, features, final_cltv_expiry_delta,
899                                         }, ..self
900                                 })
901                 }
902         }
903
904         /// Includes a payment expiration in seconds relative to the UNIX epoch.
905         ///
906         /// This is not exported to bindings users since bindings don't support move semantics
907         pub fn with_expiry_time(self, expiry_time: u64) -> Self {
908                 Self { expiry_time: Some(expiry_time), ..self }
909         }
910
911         /// Includes a limit for the total CLTV expiry delta which is considered during routing
912         ///
913         /// This is not exported to bindings users since bindings don't support move semantics
914         pub fn with_max_total_cltv_expiry_delta(self, max_total_cltv_expiry_delta: u32) -> Self {
915                 Self { max_total_cltv_expiry_delta, ..self }
916         }
917
918         /// Includes a limit for the maximum number of payment paths that may be used.
919         ///
920         /// This is not exported to bindings users since bindings don't support move semantics
921         pub fn with_max_path_count(self, max_path_count: u8) -> Self {
922                 Self { max_path_count, ..self }
923         }
924
925         /// Includes a limit for the maximum share of a channel's total capacity that can be sent over, as
926         /// a power of 1/2. See [`PaymentParameters::max_channel_saturation_power_of_half`].
927         ///
928         /// This is not exported to bindings users since bindings don't support move semantics
929         pub fn with_max_channel_saturation_power_of_half(self, max_channel_saturation_power_of_half: u8) -> Self {
930                 Self { max_channel_saturation_power_of_half, ..self }
931         }
932
933         pub(crate) fn insert_previously_failed_blinded_path(&mut self, failed_blinded_tail: &BlindedTail) {
934                 let mut found_blinded_tail = false;
935                 for (idx, (_, path)) in self.payee.blinded_route_hints().iter().enumerate() {
936                         if failed_blinded_tail.hops == path.blinded_hops &&
937                                 failed_blinded_tail.blinding_point == path.blinding_point
938                         {
939                                 self.previously_failed_blinded_path_idxs.push(idx as u64);
940                                 found_blinded_tail = true;
941                         }
942                 }
943                 debug_assert!(found_blinded_tail);
944         }
945 }
946
947 /// The recipient of a payment, differing based on whether they've hidden their identity with route
948 /// blinding.
949 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
950 pub enum Payee {
951         /// The recipient provided blinded paths and payinfo to reach them. The blinded paths themselves
952         /// will be included in the final [`Route`].
953         Blinded {
954                 /// Aggregated routing info and blinded paths, for routing to the payee without knowing their
955                 /// node id.
956                 route_hints: Vec<(BlindedPayInfo, BlindedPath)>,
957                 /// Features supported by the payee.
958                 ///
959                 /// May be set from the payee's invoice. May be `None` if the invoice does not contain any
960                 /// features.
961                 features: Option<Bolt12InvoiceFeatures>,
962         },
963         /// The recipient included these route hints in their BOLT11 invoice.
964         Clear {
965                 /// The node id of the payee.
966                 node_id: PublicKey,
967                 /// Hints for routing to the payee, containing channels connecting the payee to public nodes.
968                 route_hints: Vec<RouteHint>,
969                 /// Features supported by the payee.
970                 ///
971                 /// May be set from the payee's invoice or via [`for_keysend`]. May be `None` if the invoice
972                 /// does not contain any features.
973                 ///
974                 /// [`for_keysend`]: PaymentParameters::for_keysend
975                 features: Option<Bolt11InvoiceFeatures>,
976                 /// The minimum CLTV delta at the end of the route. This value must not be zero.
977                 final_cltv_expiry_delta: u32,
978         },
979 }
980
981 impl Payee {
982         fn node_id(&self) -> Option<PublicKey> {
983                 match self {
984                         Self::Clear { node_id, .. } => Some(*node_id),
985                         _ => None,
986                 }
987         }
988         fn node_features(&self) -> Option<NodeFeatures> {
989                 match self {
990                         Self::Clear { features, .. } => features.as_ref().map(|f| f.to_context()),
991                         Self::Blinded { features, .. } => features.as_ref().map(|f| f.to_context()),
992                 }
993         }
994         fn supports_basic_mpp(&self) -> bool {
995                 match self {
996                         Self::Clear { features, .. } => features.as_ref().map_or(false, |f| f.supports_basic_mpp()),
997                         Self::Blinded { features, .. } => features.as_ref().map_or(false, |f| f.supports_basic_mpp()),
998                 }
999         }
1000         fn features(&self) -> Option<FeaturesRef> {
1001                 match self {
1002                         Self::Clear { features, .. } => features.as_ref().map(|f| FeaturesRef::Bolt11(f)),
1003                         Self::Blinded { features, .. } => features.as_ref().map(|f| FeaturesRef::Bolt12(f)),
1004                 }
1005         }
1006         fn final_cltv_expiry_delta(&self) -> Option<u32> {
1007                 match self {
1008                         Self::Clear { final_cltv_expiry_delta, .. } => Some(*final_cltv_expiry_delta),
1009                         _ => None,
1010                 }
1011         }
1012         pub(crate) fn blinded_route_hints(&self) -> &[(BlindedPayInfo, BlindedPath)] {
1013                 match self {
1014                         Self::Blinded { route_hints, .. } => &route_hints[..],
1015                         Self::Clear { .. } => &[]
1016                 }
1017         }
1018
1019         fn unblinded_route_hints(&self) -> &[RouteHint] {
1020                 match self {
1021                         Self::Blinded { .. } => &[],
1022                         Self::Clear { route_hints, .. } => &route_hints[..]
1023                 }
1024         }
1025 }
1026
1027 enum FeaturesRef<'a> {
1028         Bolt11(&'a Bolt11InvoiceFeatures),
1029         Bolt12(&'a Bolt12InvoiceFeatures),
1030 }
1031 enum Features {
1032         Bolt11(Bolt11InvoiceFeatures),
1033         Bolt12(Bolt12InvoiceFeatures),
1034 }
1035
1036 impl Features {
1037         fn bolt12(self) -> Option<Bolt12InvoiceFeatures> {
1038                 match self {
1039                         Self::Bolt12(f) => Some(f),
1040                         _ => None,
1041                 }
1042         }
1043         fn bolt11(self) -> Option<Bolt11InvoiceFeatures> {
1044                 match self {
1045                         Self::Bolt11(f) => Some(f),
1046                         _ => None,
1047                 }
1048         }
1049 }
1050
1051 impl<'a> Writeable for FeaturesRef<'a> {
1052         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1053                 match self {
1054                         Self::Bolt11(f) => Ok(f.write(w)?),
1055                         Self::Bolt12(f) => Ok(f.write(w)?),
1056                 }
1057         }
1058 }
1059
1060 impl ReadableArgs<bool> for Features {
1061         fn read<R: io::Read>(reader: &mut R, bolt11: bool) -> Result<Self, DecodeError> {
1062                 if bolt11 { return Ok(Self::Bolt11(Readable::read(reader)?)) }
1063                 Ok(Self::Bolt12(Readable::read(reader)?))
1064         }
1065 }
1066
1067 /// A list of hops along a payment path terminating with a channel to the recipient.
1068 #[derive(Clone, Debug, Hash, Eq, PartialEq, Ord, PartialOrd)]
1069 pub struct RouteHint(pub Vec<RouteHintHop>);
1070
1071 impl Writeable for RouteHint {
1072         fn write<W: crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
1073                 (self.0.len() as u64).write(writer)?;
1074                 for hop in self.0.iter() {
1075                         hop.write(writer)?;
1076                 }
1077                 Ok(())
1078         }
1079 }
1080
1081 impl Readable for RouteHint {
1082         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
1083                 let hop_count: u64 = Readable::read(reader)?;
1084                 let mut hops = Vec::with_capacity(cmp::min(hop_count, 16) as usize);
1085                 for _ in 0..hop_count {
1086                         hops.push(Readable::read(reader)?);
1087                 }
1088                 Ok(Self(hops))
1089         }
1090 }
1091
1092 /// A channel descriptor for a hop along a payment path.
1093 ///
1094 /// While this generally comes from BOLT 11's `r` field, this struct includes more fields than are
1095 /// available in BOLT 11. Thus, encoding and decoding this via `lightning-invoice` is lossy, as
1096 /// fields not supported in BOLT 11 will be stripped.
1097 #[derive(Clone, Debug, Hash, Eq, PartialEq, Ord, PartialOrd)]
1098 pub struct RouteHintHop {
1099         /// The node_id of the non-target end of the route
1100         pub src_node_id: PublicKey,
1101         /// The short_channel_id of this channel
1102         pub short_channel_id: u64,
1103         /// The fees which must be paid to use this channel
1104         pub fees: RoutingFees,
1105         /// The difference in CLTV values between this node and the next node.
1106         pub cltv_expiry_delta: u16,
1107         /// The minimum value, in msat, which must be relayed to the next hop.
1108         pub htlc_minimum_msat: Option<u64>,
1109         /// The maximum value in msat available for routing with a single HTLC.
1110         pub htlc_maximum_msat: Option<u64>,
1111 }
1112
1113 impl_writeable_tlv_based!(RouteHintHop, {
1114         (0, src_node_id, required),
1115         (1, htlc_minimum_msat, option),
1116         (2, short_channel_id, required),
1117         (3, htlc_maximum_msat, option),
1118         (4, fees, required),
1119         (6, cltv_expiry_delta, required),
1120 });
1121
1122 #[derive(Eq, PartialEq)]
1123 #[repr(align(64))] // Force the size to 64 bytes
1124 struct RouteGraphNode {
1125         node_id: NodeId,
1126         score: u64,
1127         // The maximum value a yet-to-be-constructed payment path might flow through this node.
1128         // This value is upper-bounded by us by:
1129         // - how much is needed for a path being constructed
1130         // - how much value can channels following this node (up to the destination) can contribute,
1131         //   considering their capacity and fees
1132         value_contribution_msat: u64,
1133         total_cltv_delta: u32,
1134         /// The number of hops walked up to this node.
1135         path_length_to_node: u8,
1136 }
1137
1138 impl cmp::Ord for RouteGraphNode {
1139         fn cmp(&self, other: &RouteGraphNode) -> cmp::Ordering {
1140                 other.score.cmp(&self.score).then_with(|| other.node_id.cmp(&self.node_id))
1141         }
1142 }
1143
1144 impl cmp::PartialOrd for RouteGraphNode {
1145         fn partial_cmp(&self, other: &RouteGraphNode) -> Option<cmp::Ordering> {
1146                 Some(self.cmp(other))
1147         }
1148 }
1149
1150 // While RouteGraphNode can be laid out with fewer bytes, performance appears to be improved
1151 // substantially when it is laid out at exactly 64 bytes.
1152 //
1153 // Thus, we use `#[repr(C)]` on the struct to force a suboptimal layout and check that it stays 64
1154 // bytes here.
1155 #[cfg(any(ldk_bench, not(any(test, fuzzing))))]
1156 const _GRAPH_NODE_SMALL: usize = 64 - core::mem::size_of::<RouteGraphNode>();
1157 #[cfg(any(ldk_bench, not(any(test, fuzzing))))]
1158 const _GRAPH_NODE_FIXED_SIZE: usize = core::mem::size_of::<RouteGraphNode>() - 64;
1159
1160 /// A [`CandidateRouteHop::FirstHop`] entry.
1161 #[derive(Clone, Debug)]
1162 pub struct FirstHopCandidate<'a> {
1163         /// Channel details of the first hop
1164         ///
1165         /// [`ChannelDetails::get_outbound_payment_scid`] MUST be `Some` (indicating the channel
1166         /// has been funded and is able to pay), and accessor methods may panic otherwise.
1167         ///
1168         /// [`find_route`] validates this prior to constructing a [`CandidateRouteHop`].
1169         ///
1170         /// This is not exported to bindings users as lifetimes are not expressible in most languages.
1171         pub details: &'a ChannelDetails,
1172         /// The node id of the payer, which is also the source side of this candidate route hop.
1173         ///
1174         /// This is not exported to bindings users as lifetimes are not expressible in most languages.
1175         pub payer_node_id: &'a NodeId,
1176 }
1177
1178 /// A [`CandidateRouteHop::PublicHop`] entry.
1179 #[derive(Clone, Debug)]
1180 pub struct PublicHopCandidate<'a> {
1181         /// Information about the channel, including potentially its capacity and
1182         /// direction-specific information.
1183         ///
1184         /// This is not exported to bindings users as lifetimes are not expressible in most languages.
1185         pub info: DirectedChannelInfo<'a>,
1186         /// The short channel ID of the channel, i.e. the identifier by which we refer to this
1187         /// channel.
1188         pub short_channel_id: u64,
1189 }
1190
1191 /// A [`CandidateRouteHop::PrivateHop`] entry.
1192 #[derive(Clone, Debug)]
1193 pub struct PrivateHopCandidate<'a> {
1194         /// Information about the private hop communicated via BOLT 11.
1195         ///
1196         /// This is not exported to bindings users as lifetimes are not expressible in most languages.
1197         pub hint: &'a RouteHintHop,
1198         /// Node id of the next hop in BOLT 11 route hint.
1199         ///
1200         /// This is not exported to bindings users as lifetimes are not expressible in most languages.
1201         pub target_node_id: &'a NodeId
1202 }
1203
1204 /// A [`CandidateRouteHop::Blinded`] entry.
1205 #[derive(Clone, Debug)]
1206 pub struct BlindedPathCandidate<'a> {
1207         /// The node id of the introduction node, resolved from either the [`NetworkGraph`] or first
1208         /// hops.
1209         ///
1210         /// This is not exported to bindings users as lifetimes are not expressible in most languages.
1211         pub source_node_id: &'a NodeId,
1212         /// Information about the blinded path including the fee, HTLC amount limits, and
1213         /// cryptographic material required to build an HTLC through the given path.
1214         ///
1215         /// This is not exported to bindings users as lifetimes are not expressible in most languages.
1216         pub hint: &'a (BlindedPayInfo, BlindedPath),
1217         /// Index of the hint in the original list of blinded hints.
1218         ///
1219         /// This is used to cheaply uniquely identify this blinded path, even though we don't have
1220         /// a short channel ID for this hop.
1221         hint_idx: usize,
1222 }
1223
1224 /// A [`CandidateRouteHop::OneHopBlinded`] entry.
1225 #[derive(Clone, Debug)]
1226 pub struct OneHopBlindedPathCandidate<'a> {
1227         /// The node id of the introduction node, resolved from either the [`NetworkGraph`] or first
1228         /// hops.
1229         ///
1230         /// This is not exported to bindings users as lifetimes are not expressible in most languages.
1231         pub source_node_id: &'a NodeId,
1232         /// Information about the blinded path including the fee, HTLC amount limits, and
1233         /// cryptographic material required to build an HTLC terminating with the given path.
1234         ///
1235         /// Note that the [`BlindedPayInfo`] is ignored here.
1236         ///
1237         /// This is not exported to bindings users as lifetimes are not expressible in most languages.
1238         pub hint: &'a (BlindedPayInfo, BlindedPath),
1239         /// Index of the hint in the original list of blinded hints.
1240         ///
1241         /// This is used to cheaply uniquely identify this blinded path, even though we don't have
1242         /// a short channel ID for this hop.
1243         hint_idx: usize,
1244 }
1245
1246 /// A wrapper around the various hop representations.
1247 ///
1248 /// Can be used to examine the properties of a hop,
1249 /// potentially to decide whether to include it in a route.
1250 #[derive(Clone, Debug)]
1251 pub enum CandidateRouteHop<'a> {
1252         /// A hop from the payer, where the outbound liquidity is known.
1253         FirstHop(FirstHopCandidate<'a>),
1254         /// A hop found in the [`ReadOnlyNetworkGraph`].
1255         PublicHop(PublicHopCandidate<'a>),
1256         /// A private hop communicated by the payee, generally via a BOLT 11 invoice.
1257         ///
1258         /// Because BOLT 11 route hints can take multiple hops to get to the destination, this may not
1259         /// terminate at the payee.
1260         PrivateHop(PrivateHopCandidate<'a>),
1261         /// A blinded path which starts with an introduction point and ultimately terminates with the
1262         /// payee.
1263         ///
1264         /// Because we don't know the payee's identity, [`CandidateRouteHop::target`] will return
1265         /// `None` in this state.
1266         ///
1267         /// Because blinded paths are "all or nothing", and we cannot use just one part of a blinded
1268         /// path, the full path is treated as a single [`CandidateRouteHop`].
1269         Blinded(BlindedPathCandidate<'a>),
1270         /// Similar to [`Self::Blinded`], but the path here only has one hop.
1271         ///
1272         /// While we treat this similarly to [`CandidateRouteHop::Blinded`] in many respects (e.g.
1273         /// returning `None` from [`CandidateRouteHop::target`]), in this case we do actually know the
1274         /// payee's identity - it's the introduction point!
1275         ///
1276         /// [`BlindedPayInfo`] provided for 1-hop blinded paths is ignored because it is meant to apply
1277         /// to the hops *between* the introduction node and the destination.
1278         ///
1279         /// This primarily exists to track that we need to included a blinded path at the end of our
1280         /// [`Route`], even though it doesn't actually add an additional hop in the payment.
1281         OneHopBlinded(OneHopBlindedPathCandidate<'a>),
1282 }
1283
1284 impl<'a> CandidateRouteHop<'a> {
1285         /// Returns the short channel ID for this hop, if one is known.
1286         ///
1287         /// This SCID could be an alias or a globally unique SCID, and thus is only expected to
1288         /// uniquely identify this channel in conjunction with the [`CandidateRouteHop::source`].
1289         ///
1290         /// Returns `Some` as long as the candidate is a [`CandidateRouteHop::PublicHop`], a
1291         /// [`CandidateRouteHop::PrivateHop`] from a BOLT 11 route hint, or a
1292         /// [`CandidateRouteHop::FirstHop`] with a known [`ChannelDetails::get_outbound_payment_scid`]
1293         /// (which is always true for channels which are funded and ready for use).
1294         ///
1295         /// In other words, this should always return `Some` as long as the candidate hop is not a
1296         /// [`CandidateRouteHop::Blinded`] or a [`CandidateRouteHop::OneHopBlinded`].
1297         ///
1298         /// Note that this is deliberately not public as it is somewhat of a footgun because it doesn't
1299         /// define a global namespace.
1300         #[inline]
1301         fn short_channel_id(&self) -> Option<u64> {
1302                 match self {
1303                         CandidateRouteHop::FirstHop(hop) => hop.details.get_outbound_payment_scid(),
1304                         CandidateRouteHop::PublicHop(hop) => Some(hop.short_channel_id),
1305                         CandidateRouteHop::PrivateHop(hop) => Some(hop.hint.short_channel_id),
1306                         CandidateRouteHop::Blinded(_) => None,
1307                         CandidateRouteHop::OneHopBlinded(_) => None,
1308                 }
1309         }
1310
1311         /// Returns the globally unique short channel ID for this hop, if one is known.
1312         ///
1313         /// This only returns `Some` if the channel is public (either our own, or one we've learned
1314         /// from the public network graph), and thus the short channel ID we have for this channel is
1315         /// globally unique and identifies this channel in a global namespace.
1316         #[inline]
1317         pub fn globally_unique_short_channel_id(&self) -> Option<u64> {
1318                 match self {
1319                         CandidateRouteHop::FirstHop(hop) => if hop.details.is_public { hop.details.short_channel_id } else { None },
1320                         CandidateRouteHop::PublicHop(hop) => Some(hop.short_channel_id),
1321                         CandidateRouteHop::PrivateHop(_) => None,
1322                         CandidateRouteHop::Blinded(_) => None,
1323                         CandidateRouteHop::OneHopBlinded(_) => None,
1324                 }
1325         }
1326
1327         // NOTE: This may alloc memory so avoid calling it in a hot code path.
1328         fn features(&self) -> ChannelFeatures {
1329                 match self {
1330                         CandidateRouteHop::FirstHop(hop) => hop.details.counterparty.features.to_context(),
1331                         CandidateRouteHop::PublicHop(hop) => hop.info.channel().features.clone(),
1332                         CandidateRouteHop::PrivateHop(_) => ChannelFeatures::empty(),
1333                         CandidateRouteHop::Blinded(_) => ChannelFeatures::empty(),
1334                         CandidateRouteHop::OneHopBlinded(_) => ChannelFeatures::empty(),
1335                 }
1336         }
1337
1338         /// Returns the required difference in HTLC CLTV expiry between the [`Self::source`] and the
1339         /// next-hop for an HTLC taking this hop.
1340         ///
1341         /// This is the time that the node(s) in this hop have to claim the HTLC on-chain if the
1342         /// next-hop goes on chain with a payment preimage.
1343         #[inline]
1344         pub fn cltv_expiry_delta(&self) -> u32 {
1345                 match self {
1346                         CandidateRouteHop::FirstHop(_) => 0,
1347                         CandidateRouteHop::PublicHop(hop) => hop.info.direction().cltv_expiry_delta as u32,
1348                         CandidateRouteHop::PrivateHop(hop) => hop.hint.cltv_expiry_delta as u32,
1349                         CandidateRouteHop::Blinded(hop) => hop.hint.0.cltv_expiry_delta as u32,
1350                         CandidateRouteHop::OneHopBlinded(_) => 0,
1351                 }
1352         }
1353
1354         /// Returns the minimum amount that can be sent over this hop, in millisatoshis.
1355         #[inline]
1356         pub fn htlc_minimum_msat(&self) -> u64 {
1357                 match self {
1358                         CandidateRouteHop::FirstHop(hop) => hop.details.next_outbound_htlc_minimum_msat,
1359                         CandidateRouteHop::PublicHop(hop) => hop.info.direction().htlc_minimum_msat,
1360                         CandidateRouteHop::PrivateHop(hop) => hop.hint.htlc_minimum_msat.unwrap_or(0),
1361                         CandidateRouteHop::Blinded(hop) => hop.hint.0.htlc_minimum_msat,
1362                         CandidateRouteHop::OneHopBlinded { .. } => 0,
1363                 }
1364         }
1365
1366         /// Returns the fees that must be paid to route an HTLC over this channel.
1367         #[inline]
1368         pub fn fees(&self) -> RoutingFees {
1369                 match self {
1370                         CandidateRouteHop::FirstHop(_) => RoutingFees {
1371                                 base_msat: 0, proportional_millionths: 0,
1372                         },
1373                         CandidateRouteHop::PublicHop(hop) => hop.info.direction().fees,
1374                         CandidateRouteHop::PrivateHop(hop) => hop.hint.fees,
1375                         CandidateRouteHop::Blinded(hop) => {
1376                                 RoutingFees {
1377                                         base_msat: hop.hint.0.fee_base_msat,
1378                                         proportional_millionths: hop.hint.0.fee_proportional_millionths
1379                                 }
1380                         },
1381                         CandidateRouteHop::OneHopBlinded(_) =>
1382                                 RoutingFees { base_msat: 0, proportional_millionths: 0 },
1383                 }
1384         }
1385
1386         /// Fetch the effective capacity of this hop.
1387         ///
1388         /// Note that this may be somewhat expensive, so calls to this should be limited and results
1389         /// cached!
1390         fn effective_capacity(&self) -> EffectiveCapacity {
1391                 match self {
1392                         CandidateRouteHop::FirstHop(hop) => EffectiveCapacity::ExactLiquidity {
1393                                 liquidity_msat: hop.details.next_outbound_htlc_limit_msat,
1394                         },
1395                         CandidateRouteHop::PublicHop(hop) => hop.info.effective_capacity(),
1396                         CandidateRouteHop::PrivateHop(PrivateHopCandidate { hint: RouteHintHop { htlc_maximum_msat: Some(max), .. }, .. }) =>
1397                                 EffectiveCapacity::HintMaxHTLC { amount_msat: *max },
1398                         CandidateRouteHop::PrivateHop(PrivateHopCandidate { hint: RouteHintHop { htlc_maximum_msat: None, .. }, .. }) =>
1399                                 EffectiveCapacity::Infinite,
1400                         CandidateRouteHop::Blinded(hop) =>
1401                                 EffectiveCapacity::HintMaxHTLC { amount_msat: hop.hint.0.htlc_maximum_msat },
1402                         CandidateRouteHop::OneHopBlinded(_) => EffectiveCapacity::Infinite,
1403                 }
1404         }
1405
1406         /// Returns an ID describing the given hop.
1407         ///
1408         /// See the docs on [`CandidateHopId`] for when this is, or is not, unique.
1409         #[inline]
1410         fn id(&self) -> CandidateHopId {
1411                 match self {
1412                         CandidateRouteHop::Blinded(hop) => CandidateHopId::Blinded(hop.hint_idx),
1413                         CandidateRouteHop::OneHopBlinded(hop) => CandidateHopId::Blinded(hop.hint_idx),
1414                         _ => CandidateHopId::Clear((self.short_channel_id().unwrap(), self.source() < self.target().unwrap())),
1415                 }
1416         }
1417         fn blinded_path(&self) -> Option<&'a BlindedPath> {
1418                 match self {
1419                         CandidateRouteHop::Blinded(BlindedPathCandidate { hint, .. }) | CandidateRouteHop::OneHopBlinded(OneHopBlindedPathCandidate { hint, .. }) => {
1420                                 Some(&hint.1)
1421                         },
1422                         _ => None,
1423                 }
1424         }
1425         fn blinded_hint_idx(&self) -> Option<usize> {
1426                 match self {
1427                         Self::Blinded(BlindedPathCandidate { hint_idx, .. }) |
1428                         Self::OneHopBlinded(OneHopBlindedPathCandidate { hint_idx, .. }) => {
1429                                 Some(*hint_idx)
1430                         },
1431                         _ => None,
1432                 }
1433         }
1434         /// Returns the source node id of current hop.
1435         ///
1436         /// Source node id refers to the node forwarding the HTLC through this hop.
1437         ///
1438         /// For [`Self::FirstHop`] we return payer's node id.
1439         #[inline]
1440         pub fn source(&self) -> NodeId {
1441                 match self {
1442                         CandidateRouteHop::FirstHop(hop) => *hop.payer_node_id,
1443                         CandidateRouteHop::PublicHop(hop) => *hop.info.source(),
1444                         CandidateRouteHop::PrivateHop(hop) => hop.hint.src_node_id.into(),
1445                         CandidateRouteHop::Blinded(hop) => *hop.source_node_id,
1446                         CandidateRouteHop::OneHopBlinded(hop) => *hop.source_node_id,
1447                 }
1448         }
1449         /// Returns the target node id of this hop, if known.
1450         ///
1451         /// Target node id refers to the node receiving the HTLC after this hop.
1452         ///
1453         /// For [`Self::Blinded`] we return `None` because the ultimate destination after the blinded
1454         /// path is unknown.
1455         ///
1456         /// For [`Self::OneHopBlinded`] we return `None` because the target is the same as the source,
1457         /// and such a return value would be somewhat nonsensical.
1458         #[inline]
1459         pub fn target(&self) -> Option<NodeId> {
1460                 match self {
1461                         CandidateRouteHop::FirstHop(hop) => Some(hop.details.counterparty.node_id.into()),
1462                         CandidateRouteHop::PublicHop(hop) => Some(*hop.info.target()),
1463                         CandidateRouteHop::PrivateHop(hop) => Some(*hop.target_node_id),
1464                         CandidateRouteHop::Blinded(_) => None,
1465                         CandidateRouteHop::OneHopBlinded(_) => None,
1466                 }
1467         }
1468 }
1469
1470 /// A unique(ish) identifier for a specific [`CandidateRouteHop`].
1471 ///
1472 /// For blinded paths, this ID is unique only within a given [`find_route`] call.
1473 ///
1474 /// For other hops, because SCIDs between private channels and public channels can conflict, this
1475 /// isn't guaranteed to be unique at all.
1476 ///
1477 /// For our uses, this is generally fine, but it is not public as it is otherwise a rather
1478 /// difficult-to-use API.
1479 #[derive(Clone, Copy, Eq, Hash, Ord, PartialOrd, PartialEq)]
1480 enum CandidateHopId {
1481         /// Contains (scid, src_node_id < target_node_id)
1482         Clear((u64, bool)),
1483         /// Index of the blinded route hint in [`Payee::Blinded::route_hints`].
1484         Blinded(usize),
1485 }
1486
1487 #[inline]
1488 fn max_htlc_from_capacity(capacity: EffectiveCapacity, max_channel_saturation_power_of_half: u8) -> u64 {
1489         let saturation_shift: u32 = max_channel_saturation_power_of_half as u32;
1490         match capacity {
1491                 EffectiveCapacity::ExactLiquidity { liquidity_msat } => liquidity_msat,
1492                 EffectiveCapacity::Infinite => u64::max_value(),
1493                 EffectiveCapacity::Unknown => EffectiveCapacity::Unknown.as_msat(),
1494                 EffectiveCapacity::AdvertisedMaxHTLC { amount_msat } =>
1495                         amount_msat.checked_shr(saturation_shift).unwrap_or(0),
1496                 // Treat htlc_maximum_msat from a route hint as an exact liquidity amount, since the invoice is
1497                 // expected to have been generated from up-to-date capacity information.
1498                 EffectiveCapacity::HintMaxHTLC { amount_msat } => amount_msat,
1499                 EffectiveCapacity::Total { capacity_msat, htlc_maximum_msat } =>
1500                         cmp::min(capacity_msat.checked_shr(saturation_shift).unwrap_or(0), htlc_maximum_msat),
1501         }
1502 }
1503
1504 fn iter_equal<I1: Iterator, I2: Iterator>(mut iter_a: I1, mut iter_b: I2)
1505 -> bool where I1::Item: PartialEq<I2::Item> {
1506         loop {
1507                 let a = iter_a.next();
1508                 let b = iter_b.next();
1509                 if a.is_none() && b.is_none() { return true; }
1510                 if a.is_none() || b.is_none() { return false; }
1511                 if a.unwrap().ne(&b.unwrap()) { return false; }
1512         }
1513 }
1514
1515 /// It's useful to keep track of the hops associated with the fees required to use them,
1516 /// so that we can choose cheaper paths (as per Dijkstra's algorithm).
1517 /// Fee values should be updated only in the context of the whole path, see update_value_and_recompute_fees.
1518 /// These fee values are useful to choose hops as we traverse the graph "payee-to-payer".
1519 #[derive(Clone)]
1520 #[repr(C)] // Force fields to appear in the order we define them.
1521 struct PathBuildingHop<'a> {
1522         candidate: CandidateRouteHop<'a>,
1523         /// If we've already processed a node as the best node, we shouldn't process it again. Normally
1524         /// we'd just ignore it if we did as all channels would have a higher new fee, but because we
1525         /// may decrease the amounts in use as we walk the graph, the actual calculated fee may
1526         /// decrease as well. Thus, we have to explicitly track which nodes have been processed and
1527         /// avoid processing them again.
1528         was_processed: bool,
1529         /// Used to compare channels when choosing the for routing.
1530         /// Includes paying for the use of a hop and the following hops, as well as
1531         /// an estimated cost of reaching this hop.
1532         /// Might get stale when fees are recomputed. Primarily for internal use.
1533         total_fee_msat: u64,
1534         /// A mirror of the same field in RouteGraphNode. Note that this is only used during the graph
1535         /// walk and may be invalid thereafter.
1536         path_htlc_minimum_msat: u64,
1537         /// All penalties incurred from this channel on the way to the destination, as calculated using
1538         /// channel scoring.
1539         path_penalty_msat: u64,
1540
1541         // The last 16 bytes are on the next cache line by default in glibc's malloc. Thus, we should
1542         // only place fields which are not hot there. Luckily, the next three fields are only read if
1543         // we end up on the selected path, and only in the final path layout phase, so we don't care
1544         // too much if reading them is slow.
1545
1546         fee_msat: u64,
1547
1548         /// All the fees paid *after* this channel on the way to the destination
1549         next_hops_fee_msat: u64,
1550         /// Fee paid for the use of the current channel (see candidate.fees()).
1551         /// The value will be actually deducted from the counterparty balance on the previous link.
1552         hop_use_fee_msat: u64,
1553
1554         #[cfg(all(not(ldk_bench), any(test, fuzzing)))]
1555         // In tests, we apply further sanity checks on cases where we skip nodes we already processed
1556         // to ensure it is specifically in cases where the fee has gone down because of a decrease in
1557         // value_contribution_msat, which requires tracking it here. See comments below where it is
1558         // used for more info.
1559         value_contribution_msat: u64,
1560 }
1561
1562 // Checks that the entries in the `find_route` `dist` map fit in (exactly) two standard x86-64
1563 // cache lines. Sadly, they're not guaranteed to actually lie on a cache line (and in fact,
1564 // generally won't, because at least glibc's malloc will align to a nice, big, round
1565 // boundary...plus 16), but at least it will reduce the amount of data we'll need to load.
1566 //
1567 // Note that these assertions only pass on somewhat recent rustc, and thus are gated on the
1568 // ldk_bench flag.
1569 #[cfg(ldk_bench)]
1570 const _NODE_MAP_SIZE_TWO_CACHE_LINES: usize = 128 - core::mem::size_of::<(NodeId, PathBuildingHop)>();
1571 #[cfg(ldk_bench)]
1572 const _NODE_MAP_SIZE_EXACTLY_CACHE_LINES: usize = core::mem::size_of::<(NodeId, PathBuildingHop)>() - 128;
1573
1574 impl<'a> core::fmt::Debug for PathBuildingHop<'a> {
1575         fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
1576                 let mut debug_struct = f.debug_struct("PathBuildingHop");
1577                 debug_struct
1578                         .field("node_id", &self.candidate.target())
1579                         .field("short_channel_id", &self.candidate.short_channel_id())
1580                         .field("total_fee_msat", &self.total_fee_msat)
1581                         .field("next_hops_fee_msat", &self.next_hops_fee_msat)
1582                         .field("hop_use_fee_msat", &self.hop_use_fee_msat)
1583                         .field("total_fee_msat - (next_hops_fee_msat + hop_use_fee_msat)", &(&self.total_fee_msat - (&self.next_hops_fee_msat + &self.hop_use_fee_msat)))
1584                         .field("path_penalty_msat", &self.path_penalty_msat)
1585                         .field("path_htlc_minimum_msat", &self.path_htlc_minimum_msat)
1586                         .field("cltv_expiry_delta", &self.candidate.cltv_expiry_delta());
1587                 #[cfg(all(not(ldk_bench), any(test, fuzzing)))]
1588                 let debug_struct = debug_struct
1589                         .field("value_contribution_msat", &self.value_contribution_msat);
1590                 debug_struct.finish()
1591         }
1592 }
1593
1594 // Instantiated with a list of hops with correct data in them collected during path finding,
1595 // an instance of this struct should be further modified only via given methods.
1596 #[derive(Clone)]
1597 struct PaymentPath<'a> {
1598         hops: Vec<(PathBuildingHop<'a>, NodeFeatures)>,
1599 }
1600
1601 impl<'a> PaymentPath<'a> {
1602         // TODO: Add a value_msat field to PaymentPath and use it instead of this function.
1603         fn get_value_msat(&self) -> u64 {
1604                 self.hops.last().unwrap().0.fee_msat
1605         }
1606
1607         fn get_path_penalty_msat(&self) -> u64 {
1608                 self.hops.first().map(|h| h.0.path_penalty_msat).unwrap_or(u64::max_value())
1609         }
1610
1611         fn get_total_fee_paid_msat(&self) -> u64 {
1612                 if self.hops.len() < 1 {
1613                         return 0;
1614                 }
1615                 let mut result = 0;
1616                 // Can't use next_hops_fee_msat because it gets outdated.
1617                 for (i, (hop, _)) in self.hops.iter().enumerate() {
1618                         if i != self.hops.len() - 1 {
1619                                 result += hop.fee_msat;
1620                         }
1621                 }
1622                 return result;
1623         }
1624
1625         fn get_cost_msat(&self) -> u64 {
1626                 self.get_total_fee_paid_msat().saturating_add(self.get_path_penalty_msat())
1627         }
1628
1629         // If the amount transferred by the path is updated, the fees should be adjusted. Any other way
1630         // to change fees may result in an inconsistency.
1631         //
1632         // Sometimes we call this function right after constructing a path which is inconsistent in
1633         // that it the value being transferred has decreased while we were doing path finding, leading
1634         // to the fees being paid not lining up with the actual limits.
1635         //
1636         // Note that this function is not aware of the available_liquidity limit, and thus does not
1637         // support increasing the value being transferred beyond what was selected during the initial
1638         // routing passes.
1639         //
1640         // Returns the amount that this path contributes to the total payment value, which may be greater
1641         // than `value_msat` if we had to overpay to meet the final node's `htlc_minimum_msat`.
1642         fn update_value_and_recompute_fees(&mut self, value_msat: u64) -> u64 {
1643                 let mut extra_contribution_msat = 0;
1644                 let mut total_fee_paid_msat = 0 as u64;
1645                 for i in (0..self.hops.len()).rev() {
1646                         let last_hop = i == self.hops.len() - 1;
1647
1648                         // For non-last-hop, this value will represent the fees paid on the current hop. It
1649                         // will consist of the fees for the use of the next hop, and extra fees to match
1650                         // htlc_minimum_msat of the current channel. Last hop is handled separately.
1651                         let mut cur_hop_fees_msat = 0;
1652                         if !last_hop {
1653                                 cur_hop_fees_msat = self.hops.get(i + 1).unwrap().0.hop_use_fee_msat;
1654                         }
1655
1656                         let cur_hop = &mut self.hops.get_mut(i).unwrap().0;
1657                         cur_hop.next_hops_fee_msat = total_fee_paid_msat;
1658                         cur_hop.path_penalty_msat += extra_contribution_msat;
1659                         // Overpay in fees if we can't save these funds due to htlc_minimum_msat.
1660                         // We try to account for htlc_minimum_msat in scoring (add_entry!), so that nodes don't
1661                         // set it too high just to maliciously take more fees by exploiting this
1662                         // match htlc_minimum_msat logic.
1663                         let mut cur_hop_transferred_amount_msat = total_fee_paid_msat + value_msat;
1664                         if let Some(extra_fees_msat) = cur_hop.candidate.htlc_minimum_msat().checked_sub(cur_hop_transferred_amount_msat) {
1665                                 // Note that there is a risk that *previous hops* (those closer to us, as we go
1666                                 // payee->our_node here) would exceed their htlc_maximum_msat or available balance.
1667                                 //
1668                                 // This might make us end up with a broken route, although this should be super-rare
1669                                 // in practice, both because of how healthy channels look like, and how we pick
1670                                 // channels in add_entry.
1671                                 // Also, this can't be exploited more heavily than *announce a free path and fail
1672                                 // all payments*.
1673                                 cur_hop_transferred_amount_msat += extra_fees_msat;
1674
1675                                 // We remember and return the extra fees on the final hop to allow accounting for
1676                                 // them in the path's value contribution.
1677                                 if last_hop {
1678                                         extra_contribution_msat = extra_fees_msat;
1679                                 } else {
1680                                         total_fee_paid_msat += extra_fees_msat;
1681                                         cur_hop_fees_msat += extra_fees_msat;
1682                                 }
1683                         }
1684
1685                         if last_hop {
1686                                 // Final hop is a special case: it usually has just value_msat (by design), but also
1687                                 // it still could overpay for the htlc_minimum_msat.
1688                                 cur_hop.fee_msat = cur_hop_transferred_amount_msat;
1689                         } else {
1690                                 // Propagate updated fees for the use of the channels to one hop back, where they
1691                                 // will be actually paid (fee_msat). The last hop is handled above separately.
1692                                 cur_hop.fee_msat = cur_hop_fees_msat;
1693                         }
1694
1695                         // Fee for the use of the current hop which will be deducted on the previous hop.
1696                         // Irrelevant for the first hop, as it doesn't have the previous hop, and the use of
1697                         // this channel is free for us.
1698                         if i != 0 {
1699                                 if let Some(new_fee) = compute_fees(cur_hop_transferred_amount_msat, cur_hop.candidate.fees()) {
1700                                         cur_hop.hop_use_fee_msat = new_fee;
1701                                         total_fee_paid_msat += new_fee;
1702                                 } else {
1703                                         // It should not be possible because this function is called only to reduce the
1704                                         // value. In that case, compute_fee was already called with the same fees for
1705                                         // larger amount and there was no overflow.
1706                                         unreachable!();
1707                                 }
1708                         }
1709                 }
1710                 value_msat + extra_contribution_msat
1711         }
1712 }
1713
1714 #[inline(always)]
1715 /// Calculate the fees required to route the given amount over a channel with the given fees.
1716 fn compute_fees(amount_msat: u64, channel_fees: RoutingFees) -> Option<u64> {
1717         amount_msat.checked_mul(channel_fees.proportional_millionths as u64)
1718                 .and_then(|part| (channel_fees.base_msat as u64).checked_add(part / 1_000_000))
1719 }
1720
1721 #[inline(always)]
1722 /// Calculate the fees required to route the given amount over a channel with the given fees,
1723 /// saturating to [`u64::max_value`].
1724 fn compute_fees_saturating(amount_msat: u64, channel_fees: RoutingFees) -> u64 {
1725         amount_msat.checked_mul(channel_fees.proportional_millionths as u64)
1726                 .map(|prop| prop / 1_000_000).unwrap_or(u64::max_value())
1727                 .saturating_add(channel_fees.base_msat as u64)
1728 }
1729
1730 /// The default `features` we assume for a node in a route, when no `features` are known about that
1731 /// specific node.
1732 ///
1733 /// Default features are:
1734 /// * variable_length_onion_optional
1735 fn default_node_features() -> NodeFeatures {
1736         let mut features = NodeFeatures::empty();
1737         features.set_variable_length_onion_optional();
1738         features
1739 }
1740
1741 struct LoggedPayeePubkey(Option<PublicKey>);
1742 impl fmt::Display for LoggedPayeePubkey {
1743         fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1744                 match self.0 {
1745                         Some(pk) => {
1746                                 "payee node id ".fmt(f)?;
1747                                 pk.fmt(f)
1748                         },
1749                         None => {
1750                                 "blinded payee".fmt(f)
1751                         },
1752                 }
1753         }
1754 }
1755
1756 struct LoggedCandidateHop<'a>(&'a CandidateRouteHop<'a>);
1757 impl<'a> fmt::Display for LoggedCandidateHop<'a> {
1758         fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1759                 match self.0 {
1760                         CandidateRouteHop::Blinded(BlindedPathCandidate { hint, .. }) | CandidateRouteHop::OneHopBlinded(OneHopBlindedPathCandidate { hint, .. }) => {
1761                                 "blinded route hint with introduction node ".fmt(f)?;
1762                                 match &hint.1.introduction_node {
1763                                         IntroductionNode::NodeId(pubkey) => write!(f, "id {}", pubkey)?,
1764                                         IntroductionNode::DirectedShortChannelId(direction, scid) => {
1765                                                 match direction {
1766                                                         Direction::NodeOne => {
1767                                                                 write!(f, "one on channel with SCID {}", scid)?;
1768                                                         },
1769                                                         Direction::NodeTwo => {
1770                                                                 write!(f, "two on channel with SCID {}", scid)?;
1771                                                         },
1772                                                 }
1773                                         }
1774                                 }
1775                                 " and blinding point ".fmt(f)?;
1776                                 hint.1.blinding_point.fmt(f)
1777                         },
1778                         CandidateRouteHop::FirstHop(_) => {
1779                                 "first hop with SCID ".fmt(f)?;
1780                                 self.0.short_channel_id().unwrap().fmt(f)
1781                         },
1782                         CandidateRouteHop::PrivateHop(_) => {
1783                                 "route hint with SCID ".fmt(f)?;
1784                                 self.0.short_channel_id().unwrap().fmt(f)
1785                         },
1786                         _ => {
1787                                 "SCID ".fmt(f)?;
1788                                 self.0.short_channel_id().unwrap().fmt(f)
1789                         },
1790                 }
1791         }
1792 }
1793
1794 #[inline]
1795 fn sort_first_hop_channels(
1796         channels: &mut Vec<&ChannelDetails>, used_liquidities: &HashMap<CandidateHopId, u64>,
1797         recommended_value_msat: u64, our_node_pubkey: &PublicKey
1798 ) {
1799         // Sort the first_hops channels to the same node(s) in priority order of which channel we'd
1800         // most like to use.
1801         //
1802         // First, if channels are below `recommended_value_msat`, sort them in descending order,
1803         // preferring larger channels to avoid splitting the payment into more MPP parts than is
1804         // required.
1805         //
1806         // Second, because simply always sorting in descending order would always use our largest
1807         // available outbound capacity, needlessly fragmenting our available channel capacities,
1808         // sort channels above `recommended_value_msat` in ascending order, preferring channels
1809         // which have enough, but not too much, capacity for the payment.
1810         //
1811         // Available outbound balances factor in liquidity already reserved for previously found paths.
1812         channels.sort_unstable_by(|chan_a, chan_b| {
1813                 let chan_a_outbound_limit_msat = chan_a.next_outbound_htlc_limit_msat
1814                         .saturating_sub(*used_liquidities.get(&CandidateHopId::Clear((chan_a.get_outbound_payment_scid().unwrap(),
1815                         our_node_pubkey < &chan_a.counterparty.node_id))).unwrap_or(&0));
1816                 let chan_b_outbound_limit_msat = chan_b.next_outbound_htlc_limit_msat
1817                         .saturating_sub(*used_liquidities.get(&CandidateHopId::Clear((chan_b.get_outbound_payment_scid().unwrap(),
1818                         our_node_pubkey < &chan_b.counterparty.node_id))).unwrap_or(&0));
1819                 if chan_b_outbound_limit_msat < recommended_value_msat || chan_a_outbound_limit_msat < recommended_value_msat {
1820                         // Sort in descending order
1821                         chan_b_outbound_limit_msat.cmp(&chan_a_outbound_limit_msat)
1822                 } else {
1823                         // Sort in ascending order
1824                         chan_a_outbound_limit_msat.cmp(&chan_b_outbound_limit_msat)
1825                 }
1826         });
1827 }
1828
1829 /// Finds a route from us (payer) to the given target node (payee).
1830 ///
1831 /// If the payee provided features in their invoice, they should be provided via the `payee` field
1832 /// in the given [`RouteParameters::payment_params`].
1833 /// Without this, MPP will only be used if the payee's features are available in the network graph.
1834 ///
1835 /// Private routing paths between a public node and the target may be included in the `payee` field
1836 /// of [`RouteParameters::payment_params`].
1837 ///
1838 /// If some channels aren't announced, it may be useful to fill in `first_hops` with the results
1839 /// from [`ChannelManager::list_usable_channels`]. If it is filled in, the view of these channels
1840 /// from `network_graph` will be ignored, and only those in `first_hops` will be used.
1841 ///
1842 /// The fees on channels from us to the next hop are ignored as they are assumed to all be equal.
1843 /// However, the enabled/disabled bit on such channels as well as the `htlc_minimum_msat` /
1844 /// `htlc_maximum_msat` *are* checked as they may change based on the receiving node.
1845 ///
1846 /// # Panics
1847 ///
1848 /// Panics if first_hops contains channels without `short_channel_id`s;
1849 /// [`ChannelManager::list_usable_channels`] will never include such channels.
1850 ///
1851 /// [`ChannelManager::list_usable_channels`]: crate::ln::channelmanager::ChannelManager::list_usable_channels
1852 /// [`Event::PaymentPathFailed`]: crate::events::Event::PaymentPathFailed
1853 /// [`NetworkGraph`]: crate::routing::gossip::NetworkGraph
1854 pub fn find_route<L: Deref, GL: Deref, S: ScoreLookUp>(
1855         our_node_pubkey: &PublicKey, route_params: &RouteParameters,
1856         network_graph: &NetworkGraph<GL>, first_hops: Option<&[&ChannelDetails]>, logger: L,
1857         scorer: &S, score_params: &S::ScoreParams, random_seed_bytes: &[u8; 32]
1858 ) -> Result<Route, LightningError>
1859 where L::Target: Logger, GL::Target: Logger {
1860         let graph_lock = network_graph.read_only();
1861         let mut route = get_route(our_node_pubkey, &route_params, &graph_lock, first_hops, logger,
1862                 scorer, score_params, random_seed_bytes)?;
1863         add_random_cltv_offset(&mut route, &route_params.payment_params, &graph_lock, random_seed_bytes);
1864         Ok(route)
1865 }
1866
1867 pub(crate) fn get_route<L: Deref, S: ScoreLookUp>(
1868         our_node_pubkey: &PublicKey, route_params: &RouteParameters, network_graph: &ReadOnlyNetworkGraph,
1869         first_hops: Option<&[&ChannelDetails]>, logger: L, scorer: &S, score_params: &S::ScoreParams,
1870         _random_seed_bytes: &[u8; 32]
1871 ) -> Result<Route, LightningError>
1872 where L::Target: Logger {
1873
1874         let payment_params = &route_params.payment_params;
1875         let max_path_length = core::cmp::min(payment_params.max_path_length, MAX_PATH_LENGTH_ESTIMATE);
1876         let final_value_msat = route_params.final_value_msat;
1877         // If we're routing to a blinded recipient, we won't have their node id. Therefore, keep the
1878         // unblinded payee id as an option. We also need a non-optional "payee id" for path construction,
1879         // so use a dummy id for this in the blinded case.
1880         let payee_node_id_opt = payment_params.payee.node_id().map(|pk| NodeId::from_pubkey(&pk));
1881         const DUMMY_BLINDED_PAYEE_ID: [u8; 33] = [2; 33];
1882         let maybe_dummy_payee_pk = payment_params.payee.node_id().unwrap_or_else(|| PublicKey::from_slice(&DUMMY_BLINDED_PAYEE_ID).unwrap());
1883         let maybe_dummy_payee_node_id = NodeId::from_pubkey(&maybe_dummy_payee_pk);
1884         let our_node_id = NodeId::from_pubkey(&our_node_pubkey);
1885
1886         if payee_node_id_opt.map_or(false, |payee| payee == our_node_id) {
1887                 return Err(LightningError{err: "Cannot generate a route to ourselves".to_owned(), action: ErrorAction::IgnoreError});
1888         }
1889         if our_node_id == maybe_dummy_payee_node_id {
1890                 return Err(LightningError{err: "Invalid origin node id provided, use a different one".to_owned(), action: ErrorAction::IgnoreError});
1891         }
1892
1893         if final_value_msat > MAX_VALUE_MSAT {
1894                 return Err(LightningError{err: "Cannot generate a route of more value than all existing satoshis".to_owned(), action: ErrorAction::IgnoreError});
1895         }
1896
1897         if final_value_msat == 0 {
1898                 return Err(LightningError{err: "Cannot send a payment of 0 msat".to_owned(), action: ErrorAction::IgnoreError});
1899         }
1900
1901         let introduction_node_id_cache = payment_params.payee.blinded_route_hints().iter()
1902                 .map(|(_, path)| path.public_introduction_node_id(network_graph))
1903                 .collect::<Vec<_>>();
1904         match &payment_params.payee {
1905                 Payee::Clear { route_hints, node_id, .. } => {
1906                         for route in route_hints.iter() {
1907                                 for hop in &route.0 {
1908                                         if hop.src_node_id == *node_id {
1909                                                 return Err(LightningError{err: "Route hint cannot have the payee as the source.".to_owned(), action: ErrorAction::IgnoreError});
1910                                         }
1911                                 }
1912                         }
1913                 },
1914                 Payee::Blinded { route_hints, .. } => {
1915                         if introduction_node_id_cache.iter().all(|introduction_node_id| *introduction_node_id == Some(&our_node_id)) {
1916                                 return Err(LightningError{err: "Cannot generate a route to blinded paths if we are the introduction node to all of them".to_owned(), action: ErrorAction::IgnoreError});
1917                         }
1918                         for ((_, blinded_path), introduction_node_id) in route_hints.iter().zip(introduction_node_id_cache.iter()) {
1919                                 if blinded_path.blinded_hops.len() == 0 {
1920                                         return Err(LightningError{err: "0-hop blinded path provided".to_owned(), action: ErrorAction::IgnoreError});
1921                                 } else if *introduction_node_id == Some(&our_node_id) {
1922                                         log_info!(logger, "Got blinded path with ourselves as the introduction node, ignoring");
1923                                 } else if blinded_path.blinded_hops.len() == 1 &&
1924                                         route_hints
1925                                                 .iter().zip(introduction_node_id_cache.iter())
1926                                                 .filter(|((_, p), _)| p.blinded_hops.len() == 1)
1927                                                 .any(|(_, p_introduction_node_id)| p_introduction_node_id != introduction_node_id)
1928                                 {
1929                                         return Err(LightningError{err: format!("1-hop blinded paths must all have matching introduction node ids"), action: ErrorAction::IgnoreError});
1930                                 }
1931                         }
1932                 }
1933         }
1934         let final_cltv_expiry_delta = payment_params.payee.final_cltv_expiry_delta().unwrap_or(0);
1935         if payment_params.max_total_cltv_expiry_delta <= final_cltv_expiry_delta {
1936                 return Err(LightningError{err: "Can't find a route where the maximum total CLTV expiry delta is below the final CLTV expiry.".to_owned(), action: ErrorAction::IgnoreError});
1937         }
1938
1939         // The general routing idea is the following:
1940         // 1. Fill first/last hops communicated by the caller.
1941         // 2. Attempt to construct a path from payer to payee for transferring
1942         //    any ~sufficient (described later) value.
1943         //    If succeed, remember which channels were used and how much liquidity they have available,
1944         //    so that future paths don't rely on the same liquidity.
1945         // 3. Proceed to the next step if:
1946         //    - we hit the recommended target value;
1947         //    - OR if we could not construct a new path. Any next attempt will fail too.
1948         //    Otherwise, repeat step 2.
1949         // 4. See if we managed to collect paths which aggregately are able to transfer target value
1950         //    (not recommended value).
1951         // 5. If yes, proceed. If not, fail routing.
1952         // 6. Select the paths which have the lowest cost (fee plus scorer penalty) per amount
1953         //    transferred up to the transfer target value.
1954         // 7. Reduce the value of the last path until we are sending only the target value.
1955         // 8. If our maximum channel saturation limit caused us to pick two identical paths, combine
1956         //    them so that we're not sending two HTLCs along the same path.
1957
1958         // As for the actual search algorithm, we do a payee-to-payer Dijkstra's sorting by each node's
1959         // distance from the payee
1960         //
1961         // We are not a faithful Dijkstra's implementation because we can change values which impact
1962         // earlier nodes while processing later nodes. Specifically, if we reach a channel with a lower
1963         // liquidity limit (via htlc_maximum_msat, on-chain capacity or assumed liquidity limits) than
1964         // the value we are currently attempting to send over a path, we simply reduce the value being
1965         // sent along the path for any hops after that channel. This may imply that later fees (which
1966         // we've already tabulated) are lower because a smaller value is passing through the channels
1967         // (and the proportional fee is thus lower). There isn't a trivial way to recalculate the
1968         // channels which were selected earlier (and which may still be used for other paths without a
1969         // lower liquidity limit), so we simply accept that some liquidity-limited paths may be
1970         // de-preferenced.
1971         //
1972         // One potentially problematic case for this algorithm would be if there are many
1973         // liquidity-limited paths which are liquidity-limited near the destination (ie early in our
1974         // graph walking), we may never find a path which is not liquidity-limited and has lower
1975         // proportional fee (and only lower absolute fee when considering the ultimate value sent).
1976         // Because we only consider paths with at least 5% of the total value being sent, the damage
1977         // from such a case should be limited, however this could be further reduced in the future by
1978         // calculating fees on the amount we wish to route over a path, ie ignoring the liquidity
1979         // limits for the purposes of fee calculation.
1980         //
1981         // Alternatively, we could store more detailed path information in the heap (targets, below)
1982         // and index the best-path map (dist, below) by node *and* HTLC limits, however that would blow
1983         // up the runtime significantly both algorithmically (as we'd traverse nodes multiple times)
1984         // and practically (as we would need to store dynamically-allocated path information in heap
1985         // objects, increasing malloc traffic and indirect memory access significantly). Further, the
1986         // results of such an algorithm would likely be biased towards lower-value paths.
1987         //
1988         // Further, we could return to a faithful Dijkstra's algorithm by rejecting paths with limits
1989         // outside of our current search value, running a path search more times to gather candidate
1990         // paths at different values. While this may be acceptable, further path searches may increase
1991         // runtime for little gain. Specifically, the current algorithm rather efficiently explores the
1992         // graph for candidate paths, calculating the maximum value which can realistically be sent at
1993         // the same time, remaining generic across different payment values.
1994
1995         let network_channels = network_graph.channels();
1996         let network_nodes = network_graph.nodes();
1997
1998         if payment_params.max_path_count == 0 {
1999                 return Err(LightningError{err: "Can't find a route with no paths allowed.".to_owned(), action: ErrorAction::IgnoreError});
2000         }
2001
2002         // Allow MPP only if we have a features set from somewhere that indicates the payee supports
2003         // it. If the payee supports it they're supposed to include it in the invoice, so that should
2004         // work reliably.
2005         let allow_mpp = if payment_params.max_path_count == 1 {
2006                 false
2007         } else if payment_params.payee.supports_basic_mpp() {
2008                 true
2009         } else if let Some(payee) = payee_node_id_opt {
2010                 network_nodes.get(&payee).map_or(false, |node| node.announcement_info.as_ref().map_or(false,
2011                         |info| info.features.supports_basic_mpp()))
2012         } else { false };
2013
2014         let max_total_routing_fee_msat = route_params.max_total_routing_fee_msat.unwrap_or(u64::max_value());
2015
2016         log_trace!(logger, "Searching for a route from payer {} to {} {} MPP and {} first hops {}overriding the network graph of {} nodes and {} channels with a fee limit of {} msat",
2017                 our_node_pubkey, LoggedPayeePubkey(payment_params.payee.node_id()),
2018                 if allow_mpp { "with" } else { "without" },
2019                 first_hops.map(|hops| hops.len()).unwrap_or(0), if first_hops.is_some() { "" } else { "not " },
2020                 network_graph.nodes().len(), network_graph.channels().len(),
2021                 max_total_routing_fee_msat);
2022
2023         // Step (1).
2024         // Prepare the data we'll use for payee-to-payer search by
2025         // inserting first hops suggested by the caller as targets.
2026         // Our search will then attempt to reach them while traversing from the payee node.
2027         let mut first_hop_targets: HashMap<_, Vec<&ChannelDetails>> =
2028                 hash_map_with_capacity(if first_hops.is_some() { first_hops.as_ref().unwrap().len() } else { 0 });
2029         if let Some(hops) = first_hops {
2030                 for chan in hops {
2031                         if chan.get_outbound_payment_scid().is_none() {
2032                                 panic!("first_hops should be filled in with usable channels, not pending ones");
2033                         }
2034                         if chan.counterparty.node_id == *our_node_pubkey {
2035                                 return Err(LightningError{err: "First hop cannot have our_node_pubkey as a destination.".to_owned(), action: ErrorAction::IgnoreError});
2036                         }
2037                         first_hop_targets
2038                                 .entry(NodeId::from_pubkey(&chan.counterparty.node_id))
2039                                 .or_insert(Vec::new())
2040                                 .push(chan);
2041                 }
2042                 if first_hop_targets.is_empty() {
2043                         return Err(LightningError{err: "Cannot route when there are no outbound routes away from us".to_owned(), action: ErrorAction::IgnoreError});
2044                 }
2045         }
2046
2047         let mut private_hop_key_cache = hash_map_with_capacity(
2048                 payment_params.payee.unblinded_route_hints().iter().map(|path| path.0.len()).sum()
2049         );
2050
2051         // Because we store references to private hop node_ids in `dist`, below, we need them to exist
2052         // (as `NodeId`, not `PublicKey`) for the lifetime of `dist`. Thus, we calculate all the keys
2053         // we'll need here and simply fetch them when routing.
2054         private_hop_key_cache.insert(maybe_dummy_payee_pk, NodeId::from_pubkey(&maybe_dummy_payee_pk));
2055         for route in payment_params.payee.unblinded_route_hints().iter() {
2056                 for hop in route.0.iter() {
2057                         private_hop_key_cache.insert(hop.src_node_id, NodeId::from_pubkey(&hop.src_node_id));
2058                 }
2059         }
2060
2061         // The main heap containing all candidate next-hops sorted by their score (max(fee,
2062         // htlc_minimum)). Ideally this would be a heap which allowed cheap score reduction instead of
2063         // adding duplicate entries when we find a better path to a given node.
2064         let mut targets: BinaryHeap<RouteGraphNode> = BinaryHeap::new();
2065
2066         // Map from node_id to information about the best current path to that node, including feerate
2067         // information.
2068         let mut dist: HashMap<NodeId, PathBuildingHop> = hash_map_with_capacity(network_nodes.len());
2069
2070         // During routing, if we ignore a path due to an htlc_minimum_msat limit, we set this,
2071         // indicating that we may wish to try again with a higher value, potentially paying to meet an
2072         // htlc_minimum with extra fees while still finding a cheaper path.
2073         let mut hit_minimum_limit;
2074
2075         // When arranging a route, we select multiple paths so that we can make a multi-path payment.
2076         // We start with a path_value of the exact amount we want, and if that generates a route we may
2077         // return it immediately. Otherwise, we don't stop searching for paths until we have 3x the
2078         // amount we want in total across paths, selecting the best subset at the end.
2079         const ROUTE_CAPACITY_PROVISION_FACTOR: u64 = 3;
2080         let recommended_value_msat = final_value_msat * ROUTE_CAPACITY_PROVISION_FACTOR as u64;
2081         let mut path_value_msat = final_value_msat;
2082
2083         // Routing Fragmentation Mitigation heuristic:
2084         //
2085         // Routing fragmentation across many payment paths increases the overall routing
2086         // fees as you have irreducible routing fees per-link used (`fee_base_msat`).
2087         // Taking too many smaller paths also increases the chance of payment failure.
2088         // Thus to avoid this effect, we require from our collected links to provide
2089         // at least a minimal contribution to the recommended value yet-to-be-fulfilled.
2090         // This requirement is currently set to be 1/max_path_count of the payment
2091         // value to ensure we only ever return routes that do not violate this limit.
2092         let minimal_value_contribution_msat: u64 = if allow_mpp {
2093                 (final_value_msat + (payment_params.max_path_count as u64 - 1)) / payment_params.max_path_count as u64
2094         } else {
2095                 final_value_msat
2096         };
2097
2098         // When we start collecting routes we enforce the max_channel_saturation_power_of_half
2099         // requirement strictly. After we've collected enough (or if we fail to find new routes) we
2100         // drop the requirement by setting this to 0.
2101         let mut channel_saturation_pow_half = payment_params.max_channel_saturation_power_of_half;
2102
2103         // Keep track of how much liquidity has been used in selected channels or blinded paths. Used to
2104         // determine if the channel can be used by additional MPP paths or to inform path finding
2105         // decisions. It is aware of direction *only* to ensure that the correct htlc_maximum_msat value
2106         // is used. Hence, liquidity used in one direction will not offset any used in the opposite
2107         // direction.
2108         let mut used_liquidities: HashMap<CandidateHopId, u64> =
2109                 hash_map_with_capacity(network_nodes.len());
2110
2111         // Keeping track of how much value we already collected across other paths. Helps to decide
2112         // when we want to stop looking for new paths.
2113         let mut already_collected_value_msat = 0;
2114
2115         for (_, channels) in first_hop_targets.iter_mut() {
2116                 sort_first_hop_channels(channels, &used_liquidities, recommended_value_msat,
2117                         our_node_pubkey);
2118         }
2119
2120         log_trace!(logger, "Building path from {} to payer {} for value {} msat.",
2121                 LoggedPayeePubkey(payment_params.payee.node_id()), our_node_pubkey, final_value_msat);
2122
2123         // Remember how many candidates we ignored to allow for some logging afterwards.
2124         let mut num_ignored_value_contribution: u32 = 0;
2125         let mut num_ignored_path_length_limit: u32 = 0;
2126         let mut num_ignored_cltv_delta_limit: u32 = 0;
2127         let mut num_ignored_previously_failed: u32 = 0;
2128         let mut num_ignored_total_fee_limit: u32 = 0;
2129         let mut num_ignored_avoid_overpayment: u32 = 0;
2130         let mut num_ignored_htlc_minimum_msat_limit: u32 = 0;
2131
2132         macro_rules! add_entry {
2133                 // Adds entry which goes from $candidate.source() to $candidate.target() over the $candidate hop.
2134                 // $next_hops_fee_msat represents the fees paid for using all the channels *after* this one,
2135                 // since that value has to be transferred over this channel.
2136                 // Returns the contribution amount of $candidate if the channel caused an update to `targets`.
2137                 ( $candidate: expr, $next_hops_fee_msat: expr,
2138                         $next_hops_value_contribution: expr, $next_hops_path_htlc_minimum_msat: expr,
2139                         $next_hops_path_penalty_msat: expr, $next_hops_cltv_delta: expr, $next_hops_path_length: expr ) => { {
2140                         // We "return" whether we updated the path at the end, and how much we can route via
2141                         // this channel, via this:
2142                         let mut hop_contribution_amt_msat = None;
2143                         // Channels to self should not be used. This is more of belt-and-suspenders, because in
2144                         // practice these cases should be caught earlier:
2145                         // - for regular channels at channel announcement (TODO)
2146                         // - for first and last hops early in get_route
2147                         let src_node_id = $candidate.source();
2148                         if Some(src_node_id) != $candidate.target() {
2149                                 let scid_opt = $candidate.short_channel_id();
2150                                 let effective_capacity = $candidate.effective_capacity();
2151                                 let htlc_maximum_msat = max_htlc_from_capacity(effective_capacity, channel_saturation_pow_half);
2152
2153                                 // It is tricky to subtract $next_hops_fee_msat from available liquidity here.
2154                                 // It may be misleading because we might later choose to reduce the value transferred
2155                                 // over these channels, and the channel which was insufficient might become sufficient.
2156                                 // Worst case: we drop a good channel here because it can't cover the high following
2157                                 // fees caused by one expensive channel, but then this channel could have been used
2158                                 // if the amount being transferred over this path is lower.
2159                                 // We do this for now, but this is a subject for removal.
2160                                 if let Some(mut available_value_contribution_msat) = htlc_maximum_msat.checked_sub($next_hops_fee_msat) {
2161                                         let used_liquidity_msat = used_liquidities
2162                                                 .get(&$candidate.id())
2163                                                 .map_or(0, |used_liquidity_msat| {
2164                                                         available_value_contribution_msat = available_value_contribution_msat
2165                                                                 .saturating_sub(*used_liquidity_msat);
2166                                                         *used_liquidity_msat
2167                                                 });
2168
2169                                         // Verify the liquidity offered by this channel complies to the minimal contribution.
2170                                         let contributes_sufficient_value = available_value_contribution_msat >= minimal_value_contribution_msat;
2171                                         // Do not consider candidate hops that would exceed the maximum path length.
2172                                         let path_length_to_node = $next_hops_path_length
2173                                                 + if $candidate.blinded_hint_idx().is_some() { 0 } else { 1 };
2174                                         let exceeds_max_path_length = path_length_to_node > max_path_length;
2175
2176                                         // Do not consider candidates that exceed the maximum total cltv expiry limit.
2177                                         // In order to already account for some of the privacy enhancing random CLTV
2178                                         // expiry delta offset we add on top later, we subtract a rough estimate
2179                                         // (2*MEDIAN_HOP_CLTV_EXPIRY_DELTA) here.
2180                                         let max_total_cltv_expiry_delta = (payment_params.max_total_cltv_expiry_delta - final_cltv_expiry_delta)
2181                                                 .checked_sub(2*MEDIAN_HOP_CLTV_EXPIRY_DELTA)
2182                                                 .unwrap_or(payment_params.max_total_cltv_expiry_delta - final_cltv_expiry_delta);
2183                                         let hop_total_cltv_delta = ($next_hops_cltv_delta as u32)
2184                                                 .saturating_add($candidate.cltv_expiry_delta());
2185                                         let exceeds_cltv_delta_limit = hop_total_cltv_delta > max_total_cltv_expiry_delta;
2186
2187                                         let value_contribution_msat = cmp::min(available_value_contribution_msat, $next_hops_value_contribution);
2188                                         // Includes paying fees for the use of the following channels.
2189                                         let amount_to_transfer_over_msat: u64 = match value_contribution_msat.checked_add($next_hops_fee_msat) {
2190                                                 Some(result) => result,
2191                                                 // Can't overflow due to how the values were computed right above.
2192                                                 None => unreachable!(),
2193                                         };
2194                                         #[allow(unused_comparisons)] // $next_hops_path_htlc_minimum_msat is 0 in some calls so rustc complains
2195                                         let over_path_minimum_msat = amount_to_transfer_over_msat >= $candidate.htlc_minimum_msat() &&
2196                                                 amount_to_transfer_over_msat >= $next_hops_path_htlc_minimum_msat;
2197
2198                                         #[allow(unused_comparisons)] // $next_hops_path_htlc_minimum_msat is 0 in some calls so rustc complains
2199                                         let may_overpay_to_meet_path_minimum_msat =
2200                                                 ((amount_to_transfer_over_msat < $candidate.htlc_minimum_msat() &&
2201                                                   recommended_value_msat >= $candidate.htlc_minimum_msat()) ||
2202                                                  (amount_to_transfer_over_msat < $next_hops_path_htlc_minimum_msat &&
2203                                                   recommended_value_msat >= $next_hops_path_htlc_minimum_msat));
2204
2205                                         let payment_failed_on_this_channel = match scid_opt {
2206                                                 Some(scid) => payment_params.previously_failed_channels.contains(&scid),
2207                                                 None => match $candidate.blinded_hint_idx() {
2208                                                         Some(idx) => {
2209                                                                 payment_params.previously_failed_blinded_path_idxs.contains(&(idx as u64))
2210                                                         },
2211                                                         None => false,
2212                                                 },
2213                                         };
2214
2215                                         let (should_log_candidate, first_hop_details) = match $candidate {
2216                                                 CandidateRouteHop::FirstHop(hop) => (true, Some(hop.details)),
2217                                                 CandidateRouteHop::PrivateHop(_) => (true, None),
2218                                                 CandidateRouteHop::Blinded(_) => (true, None),
2219                                                 CandidateRouteHop::OneHopBlinded(_) => (true, None),
2220                                                 _ => (false, None),
2221                                         };
2222
2223                                         // If HTLC minimum is larger than the amount we're going to transfer, we shouldn't
2224                                         // bother considering this channel. If retrying with recommended_value_msat may
2225                                         // allow us to hit the HTLC minimum limit, set htlc_minimum_limit so that we go
2226                                         // around again with a higher amount.
2227                                         if !contributes_sufficient_value {
2228                                                 if should_log_candidate {
2229                                                         log_trace!(logger, "Ignoring {} due to insufficient value contribution.", LoggedCandidateHop(&$candidate));
2230
2231                                                         if let Some(details) = first_hop_details {
2232                                                                 log_trace!(logger,
2233                                                                         "First hop candidate next_outbound_htlc_limit_msat: {}",
2234                                                                         details.next_outbound_htlc_limit_msat,
2235                                                                 );
2236                                                         }
2237                                                 }
2238                                                 num_ignored_value_contribution += 1;
2239                                         } else if exceeds_max_path_length {
2240                                                 if should_log_candidate {
2241                                                         log_trace!(logger, "Ignoring {} due to exceeding maximum path length limit.", LoggedCandidateHop(&$candidate));
2242                                                 }
2243                                                 num_ignored_path_length_limit += 1;
2244                                         } else if exceeds_cltv_delta_limit {
2245                                                 if should_log_candidate {
2246                                                         log_trace!(logger, "Ignoring {} due to exceeding CLTV delta limit.", LoggedCandidateHop(&$candidate));
2247
2248                                                         if let Some(_) = first_hop_details {
2249                                                                 log_trace!(logger,
2250                                                                         "First hop candidate cltv_expiry_delta: {}. Limit: {}",
2251                                                                         hop_total_cltv_delta,
2252                                                                         max_total_cltv_expiry_delta,
2253                                                                 );
2254                                                         }
2255                                                 }
2256                                                 num_ignored_cltv_delta_limit += 1;
2257                                         } else if payment_failed_on_this_channel {
2258                                                 if should_log_candidate {
2259                                                         log_trace!(logger, "Ignoring {} due to a failed previous payment attempt.", LoggedCandidateHop(&$candidate));
2260                                                 }
2261                                                 num_ignored_previously_failed += 1;
2262                                         } else if may_overpay_to_meet_path_minimum_msat {
2263                                                 if should_log_candidate {
2264                                                         log_trace!(logger,
2265                                                                 "Ignoring {} to avoid overpaying to meet htlc_minimum_msat limit.",
2266                                                                 LoggedCandidateHop(&$candidate));
2267
2268                                                         if let Some(details) = first_hop_details {
2269                                                                 log_trace!(logger,
2270                                                                         "First hop candidate next_outbound_htlc_minimum_msat: {}",
2271                                                                         details.next_outbound_htlc_minimum_msat,
2272                                                                 );
2273                                                         }
2274                                                 }
2275                                                 num_ignored_avoid_overpayment += 1;
2276                                                 hit_minimum_limit = true;
2277                                         } else if over_path_minimum_msat {
2278                                                 // Note that low contribution here (limited by available_liquidity_msat)
2279                                                 // might violate htlc_minimum_msat on the hops which are next along the
2280                                                 // payment path (upstream to the payee). To avoid that, we recompute
2281                                                 // path fees knowing the final path contribution after constructing it.
2282                                                 let curr_min = cmp::max(
2283                                                         $next_hops_path_htlc_minimum_msat, $candidate.htlc_minimum_msat()
2284                                                 );
2285                                                 let path_htlc_minimum_msat = compute_fees_saturating(curr_min, $candidate.fees())
2286                                                         .saturating_add(curr_min);
2287                                                 let hm_entry = dist.entry(src_node_id);
2288                                                 let old_entry = hm_entry.or_insert_with(|| {
2289                                                         // If there was previously no known way to access the source node
2290                                                         // (recall it goes payee-to-payer) of short_channel_id, first add a
2291                                                         // semi-dummy record just to compute the fees to reach the source node.
2292                                                         // This will affect our decision on selecting short_channel_id
2293                                                         // as a way to reach the $candidate.target() node.
2294                                                         PathBuildingHop {
2295                                                                 candidate: $candidate.clone(),
2296                                                                 fee_msat: 0,
2297                                                                 next_hops_fee_msat: u64::max_value(),
2298                                                                 hop_use_fee_msat: u64::max_value(),
2299                                                                 total_fee_msat: u64::max_value(),
2300                                                                 path_htlc_minimum_msat,
2301                                                                 path_penalty_msat: u64::max_value(),
2302                                                                 was_processed: false,
2303                                                                 #[cfg(all(not(ldk_bench), any(test, fuzzing)))]
2304                                                                 value_contribution_msat,
2305                                                         }
2306                                                 });
2307
2308                                                 #[allow(unused_mut)] // We only use the mut in cfg(test)
2309                                                 let mut should_process = !old_entry.was_processed;
2310                                                 #[cfg(all(not(ldk_bench), any(test, fuzzing)))]
2311                                                 {
2312                                                         // In test/fuzzing builds, we do extra checks to make sure the skipping
2313                                                         // of already-seen nodes only happens in cases we expect (see below).
2314                                                         if !should_process { should_process = true; }
2315                                                 }
2316
2317                                                 if should_process {
2318                                                         let mut hop_use_fee_msat = 0;
2319                                                         let mut total_fee_msat: u64 = $next_hops_fee_msat;
2320
2321                                                         // Ignore hop_use_fee_msat for channel-from-us as we assume all channels-from-us
2322                                                         // will have the same effective-fee
2323                                                         if src_node_id != our_node_id {
2324                                                                 // Note that `u64::max_value` means we'll always fail the
2325                                                                 // `old_entry.total_fee_msat > total_fee_msat` check below
2326                                                                 hop_use_fee_msat = compute_fees_saturating(amount_to_transfer_over_msat, $candidate.fees());
2327                                                                 total_fee_msat = total_fee_msat.saturating_add(hop_use_fee_msat);
2328                                                         }
2329
2330                                                         // Ignore hops if augmenting the current path to them would put us over `max_total_routing_fee_msat`
2331                                                         if total_fee_msat > max_total_routing_fee_msat {
2332                                                                 if should_log_candidate {
2333                                                                         log_trace!(logger, "Ignoring {} due to exceeding max total routing fee limit.", LoggedCandidateHop(&$candidate));
2334
2335                                                                         if let Some(_) = first_hop_details {
2336                                                                                 log_trace!(logger,
2337                                                                                         "First hop candidate routing fee: {}. Limit: {}",
2338                                                                                         total_fee_msat,
2339                                                                                         max_total_routing_fee_msat,
2340                                                                                 );
2341                                                                         }
2342                                                                 }
2343                                                                 num_ignored_total_fee_limit += 1;
2344                                                         } else {
2345                                                                 let channel_usage = ChannelUsage {
2346                                                                         amount_msat: amount_to_transfer_over_msat,
2347                                                                         inflight_htlc_msat: used_liquidity_msat,
2348                                                                         effective_capacity,
2349                                                                 };
2350                                                                 let channel_penalty_msat =
2351                                                                         scorer.channel_penalty_msat($candidate,
2352                                                                                 channel_usage,
2353                                                                                 score_params);
2354                                                                 let path_penalty_msat = $next_hops_path_penalty_msat
2355                                                                         .saturating_add(channel_penalty_msat);
2356
2357                                                                 // Update the way of reaching $candidate.source()
2358                                                                 // with the given short_channel_id (from $candidate.target()),
2359                                                                 // if this way is cheaper than the already known
2360                                                                 // (considering the cost to "reach" this channel from the route destination,
2361                                                                 // the cost of using this channel,
2362                                                                 // and the cost of routing to the source node of this channel).
2363                                                                 // Also, consider that htlc_minimum_msat_difference, because we might end up
2364                                                                 // paying it. Consider the following exploit:
2365                                                                 // we use 2 paths to transfer 1.5 BTC. One of them is 0-fee normal 1 BTC path,
2366                                                                 // and for the other one we picked a 1sat-fee path with htlc_minimum_msat of
2367                                                                 // 1 BTC. Now, since the latter is more expensive, we gonna try to cut it
2368                                                                 // by 0.5 BTC, but then match htlc_minimum_msat by paying a fee of 0.5 BTC
2369                                                                 // to this channel.
2370                                                                 // Ideally the scoring could be smarter (e.g. 0.5*htlc_minimum_msat here),
2371                                                                 // but it may require additional tracking - we don't want to double-count
2372                                                                 // the fees included in $next_hops_path_htlc_minimum_msat, but also
2373                                                                 // can't use something that may decrease on future hops.
2374                                                                 let old_cost = cmp::max(old_entry.total_fee_msat, old_entry.path_htlc_minimum_msat)
2375                                                                         .saturating_add(old_entry.path_penalty_msat);
2376                                                                 let new_cost = cmp::max(total_fee_msat, path_htlc_minimum_msat)
2377                                                                         .saturating_add(path_penalty_msat);
2378
2379                                                                 if !old_entry.was_processed && new_cost < old_cost {
2380                                                                         let new_graph_node = RouteGraphNode {
2381                                                                                 node_id: src_node_id,
2382                                                                                 score: cmp::max(total_fee_msat, path_htlc_minimum_msat).saturating_add(path_penalty_msat),
2383                                                                                 total_cltv_delta: hop_total_cltv_delta,
2384                                                                                 value_contribution_msat,
2385                                                                                 path_length_to_node,
2386                                                                         };
2387                                                                         targets.push(new_graph_node);
2388                                                                         old_entry.next_hops_fee_msat = $next_hops_fee_msat;
2389                                                                         old_entry.hop_use_fee_msat = hop_use_fee_msat;
2390                                                                         old_entry.total_fee_msat = total_fee_msat;
2391                                                                         old_entry.candidate = $candidate.clone();
2392                                                                         old_entry.fee_msat = 0; // This value will be later filled with hop_use_fee_msat of the following channel
2393                                                                         old_entry.path_htlc_minimum_msat = path_htlc_minimum_msat;
2394                                                                         old_entry.path_penalty_msat = path_penalty_msat;
2395                                                                         #[cfg(all(not(ldk_bench), any(test, fuzzing)))]
2396                                                                         {
2397                                                                                 old_entry.value_contribution_msat = value_contribution_msat;
2398                                                                         }
2399                                                                         hop_contribution_amt_msat = Some(value_contribution_msat);
2400                                                                 } else if old_entry.was_processed && new_cost < old_cost {
2401                                                                         #[cfg(all(not(ldk_bench), any(test, fuzzing)))]
2402                                                                         {
2403                                                                                 // If we're skipping processing a node which was previously
2404                                                                                 // processed even though we found another path to it with a
2405                                                                                 // cheaper fee, check that it was because the second path we
2406                                                                                 // found (which we are processing now) has a lower value
2407                                                                                 // contribution due to an HTLC minimum limit.
2408                                                                                 //
2409                                                                                 // e.g. take a graph with two paths from node 1 to node 2, one
2410                                                                                 // through channel A, and one through channel B. Channel A and
2411                                                                                 // B are both in the to-process heap, with their scores set by
2412                                                                                 // a higher htlc_minimum than fee.
2413                                                                                 // Channel A is processed first, and the channels onwards from
2414                                                                                 // node 1 are added to the to-process heap. Thereafter, we pop
2415                                                                                 // Channel B off of the heap, note that it has a much more
2416                                                                                 // restrictive htlc_maximum_msat, and recalculate the fees for
2417                                                                                 // all of node 1's channels using the new, reduced, amount.
2418                                                                                 //
2419                                                                                 // This would be bogus - we'd be selecting a higher-fee path
2420                                                                                 // with a lower htlc_maximum_msat instead of the one we'd
2421                                                                                 // already decided to use.
2422                                                                                 debug_assert!(path_htlc_minimum_msat < old_entry.path_htlc_minimum_msat);
2423                                                                                 debug_assert!(
2424                                                                                         value_contribution_msat + path_penalty_msat <
2425                                                                                         old_entry.value_contribution_msat + old_entry.path_penalty_msat
2426                                                                                 );
2427                                                                         }
2428                                                                 }
2429                                                         }
2430                                                 }
2431                                         } else {
2432                                                 if should_log_candidate {
2433                                                         log_trace!(logger,
2434                                                                 "Ignoring {} due to its htlc_minimum_msat limit.",
2435                                                                 LoggedCandidateHop(&$candidate));
2436
2437                                                         if let Some(details) = first_hop_details {
2438                                                                 log_trace!(logger,
2439                                                                         "First hop candidate next_outbound_htlc_minimum_msat: {}",
2440                                                                         details.next_outbound_htlc_minimum_msat,
2441                                                                 );
2442                                                         }
2443                                                 }
2444                                                 num_ignored_htlc_minimum_msat_limit += 1;
2445                                         }
2446                                 }
2447                         }
2448                         hop_contribution_amt_msat
2449                 } }
2450         }
2451
2452         let default_node_features = default_node_features();
2453
2454         // Find ways (channels with destination) to reach a given node and store them
2455         // in the corresponding data structures (routing graph etc).
2456         // $fee_to_target_msat represents how much it costs to reach to this node from the payee,
2457         // meaning how much will be paid in fees after this node (to the best of our knowledge).
2458         // This data can later be helpful to optimize routing (pay lower fees).
2459         macro_rules! add_entries_to_cheapest_to_target_node {
2460                 ( $node: expr, $node_id: expr, $next_hops_value_contribution: expr,
2461                   $next_hops_cltv_delta: expr, $next_hops_path_length: expr ) => {
2462                         let fee_to_target_msat;
2463                         let next_hops_path_htlc_minimum_msat;
2464                         let next_hops_path_penalty_msat;
2465                         let skip_node = if let Some(elem) = dist.get_mut(&$node_id) {
2466                                 let was_processed = elem.was_processed;
2467                                 elem.was_processed = true;
2468                                 fee_to_target_msat = elem.total_fee_msat;
2469                                 next_hops_path_htlc_minimum_msat = elem.path_htlc_minimum_msat;
2470                                 next_hops_path_penalty_msat = elem.path_penalty_msat;
2471                                 was_processed
2472                         } else {
2473                                 // Entries are added to dist in add_entry!() when there is a channel from a node.
2474                                 // Because there are no channels from payee, it will not have a dist entry at this point.
2475                                 // If we're processing any other node, it is always be the result of a channel from it.
2476                                 debug_assert_eq!($node_id, maybe_dummy_payee_node_id);
2477                                 fee_to_target_msat = 0;
2478                                 next_hops_path_htlc_minimum_msat = 0;
2479                                 next_hops_path_penalty_msat = 0;
2480                                 false
2481                         };
2482
2483                         if !skip_node {
2484                                 if let Some(first_channels) = first_hop_targets.get(&$node_id) {
2485                                         for details in first_channels {
2486                                                 let candidate = CandidateRouteHop::FirstHop(FirstHopCandidate {
2487                                                         details, payer_node_id: &our_node_id,
2488                                                 });
2489                                                 add_entry!(&candidate, fee_to_target_msat,
2490                                                         $next_hops_value_contribution,
2491                                                         next_hops_path_htlc_minimum_msat, next_hops_path_penalty_msat,
2492                                                         $next_hops_cltv_delta, $next_hops_path_length);
2493                                         }
2494                                 }
2495
2496                                 let features = if let Some(node_info) = $node.announcement_info.as_ref() {
2497                                         &node_info.features
2498                                 } else {
2499                                         &default_node_features
2500                                 };
2501
2502                                 if !features.requires_unknown_bits() {
2503                                         for chan_id in $node.channels.iter() {
2504                                                 let chan = network_channels.get(chan_id).unwrap();
2505                                                 if !chan.features.requires_unknown_bits() {
2506                                                         if let Some((directed_channel, source)) = chan.as_directed_to(&$node_id) {
2507                                                                 if first_hops.is_none() || *source != our_node_id {
2508                                                                         if directed_channel.direction().enabled {
2509                                                                                 let candidate = CandidateRouteHop::PublicHop(PublicHopCandidate {
2510                                                                                         info: directed_channel,
2511                                                                                         short_channel_id: *chan_id,
2512                                                                                 });
2513                                                                                 add_entry!(&candidate,
2514                                                                                         fee_to_target_msat,
2515                                                                                         $next_hops_value_contribution,
2516                                                                                         next_hops_path_htlc_minimum_msat,
2517                                                                                         next_hops_path_penalty_msat,
2518                                                                                         $next_hops_cltv_delta, $next_hops_path_length);
2519                                                                         }
2520                                                                 }
2521                                                         }
2522                                                 }
2523                                         }
2524                                 }
2525                         }
2526                 };
2527         }
2528
2529         let mut payment_paths = Vec::<PaymentPath>::new();
2530
2531         // TODO: diversify by nodes (so that all paths aren't doomed if one node is offline).
2532         'paths_collection: loop {
2533                 // For every new path, start from scratch, except for used_liquidities, which
2534                 // helps to avoid reusing previously selected paths in future iterations.
2535                 targets.clear();
2536                 dist.clear();
2537                 hit_minimum_limit = false;
2538
2539                 // If first hop is a private channel and the only way to reach the payee, this is the only
2540                 // place where it could be added.
2541                 payee_node_id_opt.map(|payee| first_hop_targets.get(&payee).map(|first_channels| {
2542                         for details in first_channels {
2543                                 let candidate = CandidateRouteHop::FirstHop(FirstHopCandidate {
2544                                         details, payer_node_id: &our_node_id,
2545                                 });
2546                                 let added = add_entry!(&candidate, 0, path_value_msat,
2547                                                                         0, 0u64, 0, 0).is_some();
2548                                 log_trace!(logger, "{} direct route to payee via {}",
2549                                                 if added { "Added" } else { "Skipped" }, LoggedCandidateHop(&candidate));
2550                         }
2551                 }));
2552
2553                 // Add the payee as a target, so that the payee-to-payer
2554                 // search algorithm knows what to start with.
2555                 payee_node_id_opt.map(|payee| match network_nodes.get(&payee) {
2556                         // The payee is not in our network graph, so nothing to add here.
2557                         // There is still a chance of reaching them via last_hops though,
2558                         // so don't yet fail the payment here.
2559                         // If not, targets.pop() will not even let us enter the loop in step 2.
2560                         None => {},
2561                         Some(node) => {
2562                                 add_entries_to_cheapest_to_target_node!(node, payee, path_value_msat, 0, 0);
2563                         },
2564                 });
2565
2566                 // Step (2).
2567                 // If a caller provided us with last hops, add them to routing targets. Since this happens
2568                 // earlier than general path finding, they will be somewhat prioritized, although currently
2569                 // it matters only if the fees are exactly the same.
2570                 for (hint_idx, hint) in payment_params.payee.blinded_route_hints().iter().enumerate() {
2571                         // Only add the hops in this route to our candidate set if either
2572                         // we have a direct channel to the first hop or the first hop is
2573                         // in the regular network graph.
2574                         let source_node_id = match introduction_node_id_cache[hint_idx] {
2575                                 Some(node_id) => node_id,
2576                                 None => match &hint.1.introduction_node {
2577                                         IntroductionNode::NodeId(pubkey) => {
2578                                                 let node_id = NodeId::from_pubkey(&pubkey);
2579                                                 match first_hop_targets.get_key_value(&node_id).map(|(key, _)| key) {
2580                                                         Some(node_id) => node_id,
2581                                                         None => continue,
2582                                                 }
2583                                         },
2584                                         IntroductionNode::DirectedShortChannelId(direction, scid) => {
2585                                                 let first_hop = first_hop_targets.iter().find(|(_, channels)|
2586                                                         channels
2587                                                                 .iter()
2588                                                                 .any(|details| Some(*scid) == details.get_outbound_payment_scid())
2589                                                 );
2590                                                 match first_hop {
2591                                                         Some((counterparty_node_id, _)) => {
2592                                                                 direction.select_node_id(&our_node_id, counterparty_node_id)
2593                                                         },
2594                                                         None => continue,
2595                                                 }
2596                                         },
2597                                 },
2598                         };
2599                         if our_node_id == *source_node_id { continue }
2600                         let candidate = if hint.1.blinded_hops.len() == 1 {
2601                                 CandidateRouteHop::OneHopBlinded(
2602                                         OneHopBlindedPathCandidate { source_node_id, hint, hint_idx }
2603                                 )
2604                         } else {
2605                                 CandidateRouteHop::Blinded(BlindedPathCandidate { source_node_id, hint, hint_idx })
2606                         };
2607                         let mut path_contribution_msat = path_value_msat;
2608                         if let Some(hop_used_msat) = add_entry!(&candidate,
2609                                 0, path_contribution_msat, 0, 0_u64, 0, 0)
2610                         {
2611                                 path_contribution_msat = hop_used_msat;
2612                         } else { continue }
2613                         if let Some(first_channels) = first_hop_targets.get(source_node_id) {
2614                                 let mut first_channels = first_channels.clone();
2615                                 sort_first_hop_channels(
2616                                         &mut first_channels, &used_liquidities, recommended_value_msat, our_node_pubkey
2617                                 );
2618                                 for details in first_channels {
2619                                         let first_hop_candidate = CandidateRouteHop::FirstHop(FirstHopCandidate {
2620                                                 details, payer_node_id: &our_node_id,
2621                                         });
2622                                         let blinded_path_fee = match compute_fees(path_contribution_msat, candidate.fees()) {
2623                                                 Some(fee) => fee,
2624                                                 None => continue
2625                                         };
2626                                         let path_min = candidate.htlc_minimum_msat().saturating_add(
2627                                                 compute_fees_saturating(candidate.htlc_minimum_msat(), candidate.fees()));
2628                                         add_entry!(&first_hop_candidate, blinded_path_fee, path_contribution_msat, path_min,
2629                                                 0_u64, candidate.cltv_expiry_delta(), 0);
2630                                 }
2631                         }
2632                 }
2633                 for route in payment_params.payee.unblinded_route_hints().iter()
2634                         .filter(|route| !route.0.is_empty())
2635                 {
2636                         let first_hop_src_id = NodeId::from_pubkey(&route.0.first().unwrap().src_node_id);
2637                         let first_hop_src_is_reachable =
2638                                 // Only add the hops in this route to our candidate set if either we are part of
2639                                 // the first hop, we have a direct channel to the first hop, or the first hop is in
2640                                 // the regular network graph.
2641                                 our_node_id == first_hop_src_id ||
2642                                 first_hop_targets.get(&first_hop_src_id).is_some() ||
2643                                 network_nodes.get(&first_hop_src_id).is_some();
2644                         if first_hop_src_is_reachable {
2645                                 // We start building the path from reverse, i.e., from payee
2646                                 // to the first RouteHintHop in the path.
2647                                 let hop_iter = route.0.iter().rev();
2648                                 let prev_hop_iter = core::iter::once(&maybe_dummy_payee_pk).chain(
2649                                         route.0.iter().skip(1).rev().map(|hop| &hop.src_node_id));
2650                                 let mut hop_used = true;
2651                                 let mut aggregate_next_hops_fee_msat: u64 = 0;
2652                                 let mut aggregate_next_hops_path_htlc_minimum_msat: u64 = 0;
2653                                 let mut aggregate_next_hops_path_penalty_msat: u64 = 0;
2654                                 let mut aggregate_next_hops_cltv_delta: u32 = 0;
2655                                 let mut aggregate_next_hops_path_length: u8 = 0;
2656                                 let mut aggregate_path_contribution_msat = path_value_msat;
2657
2658                                 for (idx, (hop, prev_hop_id)) in hop_iter.zip(prev_hop_iter).enumerate() {
2659                                         let target = private_hop_key_cache.get(prev_hop_id).unwrap();
2660
2661                                         if let Some(first_channels) = first_hop_targets.get(target) {
2662                                                 if first_channels.iter().any(|d| d.outbound_scid_alias == Some(hop.short_channel_id)) {
2663                                                         log_trace!(logger, "Ignoring route hint with SCID {} (and any previous) due to it being a direct channel of ours.",
2664                                                                 hop.short_channel_id);
2665                                                         break;
2666                                                 }
2667                                         }
2668
2669                                         let candidate = network_channels
2670                                                 .get(&hop.short_channel_id)
2671                                                 .and_then(|channel| channel.as_directed_to(target))
2672                                                 .map(|(info, _)| CandidateRouteHop::PublicHop(PublicHopCandidate {
2673                                                         info,
2674                                                         short_channel_id: hop.short_channel_id,
2675                                                 }))
2676                                                 .unwrap_or_else(|| CandidateRouteHop::PrivateHop(PrivateHopCandidate { hint: hop, target_node_id: target }));
2677
2678                                         if let Some(hop_used_msat) = add_entry!(&candidate,
2679                                                 aggregate_next_hops_fee_msat, aggregate_path_contribution_msat,
2680                                                 aggregate_next_hops_path_htlc_minimum_msat, aggregate_next_hops_path_penalty_msat,
2681                                                 aggregate_next_hops_cltv_delta, aggregate_next_hops_path_length)
2682                                         {
2683                                                 aggregate_path_contribution_msat = hop_used_msat;
2684                                         } else {
2685                                                 // If this hop was not used then there is no use checking the preceding
2686                                                 // hops in the RouteHint. We can break by just searching for a direct
2687                                                 // channel between last checked hop and first_hop_targets.
2688                                                 hop_used = false;
2689                                         }
2690
2691                                         let used_liquidity_msat = used_liquidities
2692                                                 .get(&candidate.id()).copied()
2693                                                 .unwrap_or(0);
2694                                         let channel_usage = ChannelUsage {
2695                                                 amount_msat: final_value_msat + aggregate_next_hops_fee_msat,
2696                                                 inflight_htlc_msat: used_liquidity_msat,
2697                                                 effective_capacity: candidate.effective_capacity(),
2698                                         };
2699                                         let channel_penalty_msat = scorer.channel_penalty_msat(
2700                                                 &candidate, channel_usage, score_params
2701                                         );
2702                                         aggregate_next_hops_path_penalty_msat = aggregate_next_hops_path_penalty_msat
2703                                                 .saturating_add(channel_penalty_msat);
2704
2705                                         aggregate_next_hops_cltv_delta = aggregate_next_hops_cltv_delta
2706                                                 .saturating_add(hop.cltv_expiry_delta as u32);
2707
2708                                         aggregate_next_hops_path_length = aggregate_next_hops_path_length
2709                                                 .saturating_add(1);
2710
2711                                         // Searching for a direct channel between last checked hop and first_hop_targets
2712                                         if let Some(first_channels) = first_hop_targets.get(target) {
2713                                                 let mut first_channels = first_channels.clone();
2714                                                 sort_first_hop_channels(
2715                                                         &mut first_channels, &used_liquidities, recommended_value_msat, our_node_pubkey
2716                                                 );
2717                                                 for details in first_channels {
2718                                                         let first_hop_candidate = CandidateRouteHop::FirstHop(FirstHopCandidate {
2719                                                                 details, payer_node_id: &our_node_id,
2720                                                         });
2721                                                         add_entry!(&first_hop_candidate,
2722                                                                 aggregate_next_hops_fee_msat, aggregate_path_contribution_msat,
2723                                                                 aggregate_next_hops_path_htlc_minimum_msat, aggregate_next_hops_path_penalty_msat,
2724                                                                 aggregate_next_hops_cltv_delta, aggregate_next_hops_path_length);
2725                                                 }
2726                                         }
2727
2728                                         if !hop_used {
2729                                                 break;
2730                                         }
2731
2732                                         // In the next values of the iterator, the aggregate fees already reflects
2733                                         // the sum of value sent from payer (final_value_msat) and routing fees
2734                                         // for the last node in the RouteHint. We need to just add the fees to
2735                                         // route through the current node so that the preceding node (next iteration)
2736                                         // can use it.
2737                                         let hops_fee = compute_fees(aggregate_next_hops_fee_msat + final_value_msat, hop.fees)
2738                                                 .map_or(None, |inc| inc.checked_add(aggregate_next_hops_fee_msat));
2739                                         aggregate_next_hops_fee_msat = if let Some(val) = hops_fee { val } else { break; };
2740
2741                                         // The next channel will need to relay this channel's min_htlc *plus* the fees taken by
2742                                         // this route hint's source node to forward said min over this channel.
2743                                         aggregate_next_hops_path_htlc_minimum_msat = {
2744                                                 let curr_htlc_min = cmp::max(
2745                                                         candidate.htlc_minimum_msat(), aggregate_next_hops_path_htlc_minimum_msat
2746                                                 );
2747                                                 let curr_htlc_min_fee = if let Some(val) = compute_fees(curr_htlc_min, hop.fees) { val } else { break };
2748                                                 if let Some(min) = curr_htlc_min.checked_add(curr_htlc_min_fee) { min } else { break }
2749                                         };
2750
2751                                         if idx == route.0.len() - 1 {
2752                                                 // The last hop in this iterator is the first hop in
2753                                                 // overall RouteHint.
2754                                                 // If this hop connects to a node with which we have a direct channel,
2755                                                 // ignore the network graph and, if the last hop was added, add our
2756                                                 // direct channel to the candidate set.
2757                                                 //
2758                                                 // Note that we *must* check if the last hop was added as `add_entry`
2759                                                 // always assumes that the third argument is a node to which we have a
2760                                                 // path.
2761                                                 if let Some(first_channels) = first_hop_targets.get(&NodeId::from_pubkey(&hop.src_node_id)) {
2762                                                         let mut first_channels = first_channels.clone();
2763                                                         sort_first_hop_channels(
2764                                                                 &mut first_channels, &used_liquidities, recommended_value_msat, our_node_pubkey
2765                                                         );
2766                                                         for details in first_channels {
2767                                                                 let first_hop_candidate = CandidateRouteHop::FirstHop(FirstHopCandidate {
2768                                                                         details, payer_node_id: &our_node_id,
2769                                                                 });
2770                                                                 add_entry!(&first_hop_candidate,
2771                                                                         aggregate_next_hops_fee_msat,
2772                                                                         aggregate_path_contribution_msat,
2773                                                                         aggregate_next_hops_path_htlc_minimum_msat,
2774                                                                         aggregate_next_hops_path_penalty_msat,
2775                                                                         aggregate_next_hops_cltv_delta,
2776                                                                         aggregate_next_hops_path_length);
2777                                                         }
2778                                                 }
2779                                         }
2780                                 }
2781                         }
2782                 }
2783
2784                 log_trace!(logger, "Starting main path collection loop with {} nodes pre-filled from first/last hops.", targets.len());
2785
2786                 // At this point, targets are filled with the data from first and
2787                 // last hops communicated by the caller, and the payment receiver.
2788                 let mut found_new_path = false;
2789
2790                 // Step (3).
2791                 // If this loop terminates due the exhaustion of targets, two situations are possible:
2792                 // - not enough outgoing liquidity:
2793                 //   0 < already_collected_value_msat < final_value_msat
2794                 // - enough outgoing liquidity:
2795                 //   final_value_msat <= already_collected_value_msat < recommended_value_msat
2796                 // Both these cases (and other cases except reaching recommended_value_msat) mean that
2797                 // paths_collection will be stopped because found_new_path==false.
2798                 // This is not necessarily a routing failure.
2799                 'path_construction: while let Some(RouteGraphNode { node_id, total_cltv_delta, mut value_contribution_msat, path_length_to_node, .. }) = targets.pop() {
2800
2801                         // Since we're going payee-to-payer, hitting our node as a target means we should stop
2802                         // traversing the graph and arrange the path out of what we found.
2803                         if node_id == our_node_id {
2804                                 let mut new_entry = dist.remove(&our_node_id).unwrap();
2805                                 let mut ordered_hops: Vec<(PathBuildingHop, NodeFeatures)> = vec!((new_entry.clone(), default_node_features.clone()));
2806
2807                                 'path_walk: loop {
2808                                         let mut features_set = false;
2809                                         let target = ordered_hops.last().unwrap().0.candidate.target().unwrap_or(maybe_dummy_payee_node_id);
2810                                         if let Some(first_channels) = first_hop_targets.get(&target) {
2811                                                 for details in first_channels {
2812                                                         if let CandidateRouteHop::FirstHop(FirstHopCandidate { details: last_hop_details, .. })
2813                                                                 = ordered_hops.last().unwrap().0.candidate
2814                                                         {
2815                                                                 if details.get_outbound_payment_scid() == last_hop_details.get_outbound_payment_scid() {
2816                                                                         ordered_hops.last_mut().unwrap().1 = details.counterparty.features.to_context();
2817                                                                         features_set = true;
2818                                                                         break;
2819                                                                 }
2820                                                         }
2821                                                 }
2822                                         }
2823                                         if !features_set {
2824                                                 if let Some(node) = network_nodes.get(&target) {
2825                                                         if let Some(node_info) = node.announcement_info.as_ref() {
2826                                                                 ordered_hops.last_mut().unwrap().1 = node_info.features.clone();
2827                                                         } else {
2828                                                                 ordered_hops.last_mut().unwrap().1 = default_node_features.clone();
2829                                                         }
2830                                                 } else {
2831                                                         // We can fill in features for everything except hops which were
2832                                                         // provided via the invoice we're paying. We could guess based on the
2833                                                         // recipient's features but for now we simply avoid guessing at all.
2834                                                 }
2835                                         }
2836
2837                                         // Means we successfully traversed from the payer to the payee, now
2838                                         // save this path for the payment route. Also, update the liquidity
2839                                         // remaining on the used hops, so that we take them into account
2840                                         // while looking for more paths.
2841                                         if target == maybe_dummy_payee_node_id {
2842                                                 break 'path_walk;
2843                                         }
2844
2845                                         new_entry = match dist.remove(&target) {
2846                                                 Some(payment_hop) => payment_hop,
2847                                                 // We can't arrive at None because, if we ever add an entry to targets,
2848                                                 // we also fill in the entry in dist (see add_entry!).
2849                                                 None => unreachable!(),
2850                                         };
2851                                         // We "propagate" the fees one hop backward (topologically) here,
2852                                         // so that fees paid for a HTLC forwarding on the current channel are
2853                                         // associated with the previous channel (where they will be subtracted).
2854                                         ordered_hops.last_mut().unwrap().0.fee_msat = new_entry.hop_use_fee_msat;
2855                                         ordered_hops.push((new_entry.clone(), default_node_features.clone()));
2856                                 }
2857                                 ordered_hops.last_mut().unwrap().0.fee_msat = value_contribution_msat;
2858                                 ordered_hops.last_mut().unwrap().0.hop_use_fee_msat = 0;
2859
2860                                 log_trace!(logger, "Found a path back to us from the target with {} hops contributing up to {} msat: \n {:#?}",
2861                                         ordered_hops.len(), value_contribution_msat, ordered_hops.iter().map(|h| &(h.0)).collect::<Vec<&PathBuildingHop>>());
2862
2863                                 let mut payment_path = PaymentPath {hops: ordered_hops};
2864
2865                                 // We could have possibly constructed a slightly inconsistent path: since we reduce
2866                                 // value being transferred along the way, we could have violated htlc_minimum_msat
2867                                 // on some channels we already passed (assuming dest->source direction). Here, we
2868                                 // recompute the fees again, so that if that's the case, we match the currently
2869                                 // underpaid htlc_minimum_msat with fees.
2870                                 debug_assert_eq!(payment_path.get_value_msat(), value_contribution_msat);
2871                                 let desired_value_contribution = cmp::min(value_contribution_msat, final_value_msat);
2872                                 value_contribution_msat = payment_path.update_value_and_recompute_fees(desired_value_contribution);
2873
2874                                 // Since a path allows to transfer as much value as
2875                                 // the smallest channel it has ("bottleneck"), we should recompute
2876                                 // the fees so sender HTLC don't overpay fees when traversing
2877                                 // larger channels than the bottleneck. This may happen because
2878                                 // when we were selecting those channels we were not aware how much value
2879                                 // this path will transfer, and the relative fee for them
2880                                 // might have been computed considering a larger value.
2881                                 // Remember that we used these channels so that we don't rely
2882                                 // on the same liquidity in future paths.
2883                                 let mut prevented_redundant_path_selection = false;
2884                                 for (hop, _) in payment_path.hops.iter() {
2885                                         let spent_on_hop_msat = value_contribution_msat + hop.next_hops_fee_msat;
2886                                         let used_liquidity_msat = used_liquidities
2887                                                 .entry(hop.candidate.id())
2888                                                 .and_modify(|used_liquidity_msat| *used_liquidity_msat += spent_on_hop_msat)
2889                                                 .or_insert(spent_on_hop_msat);
2890                                         let hop_capacity = hop.candidate.effective_capacity();
2891                                         let hop_max_msat = max_htlc_from_capacity(hop_capacity, channel_saturation_pow_half);
2892                                         if *used_liquidity_msat == hop_max_msat {
2893                                                 // If this path used all of this channel's available liquidity, we know
2894                                                 // this path will not be selected again in the next loop iteration.
2895                                                 prevented_redundant_path_selection = true;
2896                                         }
2897                                         debug_assert!(*used_liquidity_msat <= hop_max_msat);
2898                                 }
2899                                 if !prevented_redundant_path_selection {
2900                                         // If we weren't capped by hitting a liquidity limit on a channel in the path,
2901                                         // we'll probably end up picking the same path again on the next iteration.
2902                                         // Decrease the available liquidity of a hop in the middle of the path.
2903                                         let victim_candidate = &payment_path.hops[(payment_path.hops.len()) / 2].0.candidate;
2904                                         let exhausted = u64::max_value();
2905                                         log_trace!(logger,
2906                                                 "Disabling route candidate {} for future path building iterations to avoid duplicates.",
2907                                                 LoggedCandidateHop(victim_candidate));
2908                                         if let Some(scid) = victim_candidate.short_channel_id() {
2909                                                 *used_liquidities.entry(CandidateHopId::Clear((scid, false))).or_default() = exhausted;
2910                                                 *used_liquidities.entry(CandidateHopId::Clear((scid, true))).or_default() = exhausted;
2911                                         }
2912                                 }
2913
2914                                 // Track the total amount all our collected paths allow to send so that we know
2915                                 // when to stop looking for more paths
2916                                 already_collected_value_msat += value_contribution_msat;
2917
2918                                 payment_paths.push(payment_path);
2919                                 found_new_path = true;
2920                                 break 'path_construction;
2921                         }
2922
2923                         // If we found a path back to the payee, we shouldn't try to process it again. This is
2924                         // the equivalent of the `elem.was_processed` check in
2925                         // add_entries_to_cheapest_to_target_node!() (see comment there for more info).
2926                         if node_id == maybe_dummy_payee_node_id { continue 'path_construction; }
2927
2928                         // Otherwise, since the current target node is not us,
2929                         // keep "unrolling" the payment graph from payee to payer by
2930                         // finding a way to reach the current target from the payer side.
2931                         match network_nodes.get(&node_id) {
2932                                 None => {},
2933                                 Some(node) => {
2934                                         add_entries_to_cheapest_to_target_node!(node, node_id,
2935                                                 value_contribution_msat,
2936                                                 total_cltv_delta, path_length_to_node);
2937                                 },
2938                         }
2939                 }
2940
2941                 if !allow_mpp {
2942                         if !found_new_path && channel_saturation_pow_half != 0 {
2943                                 channel_saturation_pow_half = 0;
2944                                 continue 'paths_collection;
2945                         }
2946                         // If we don't support MPP, no use trying to gather more value ever.
2947                         break 'paths_collection;
2948                 }
2949
2950                 // Step (4).
2951                 // Stop either when the recommended value is reached or if no new path was found in this
2952                 // iteration.
2953                 // In the latter case, making another path finding attempt won't help,
2954                 // because we deterministically terminated the search due to low liquidity.
2955                 if !found_new_path && channel_saturation_pow_half != 0 {
2956                         channel_saturation_pow_half = 0;
2957                 } else if !found_new_path && hit_minimum_limit && already_collected_value_msat < final_value_msat && path_value_msat != recommended_value_msat {
2958                         log_trace!(logger, "Failed to collect enough value, but running again to collect extra paths with a potentially higher limit.");
2959                         path_value_msat = recommended_value_msat;
2960                 } else if already_collected_value_msat >= recommended_value_msat || !found_new_path {
2961                         log_trace!(logger, "Have now collected {} msat (seeking {} msat) in paths. Last path loop {} a new path.",
2962                                 already_collected_value_msat, recommended_value_msat, if found_new_path { "found" } else { "did not find" });
2963                         break 'paths_collection;
2964                 } else if found_new_path && already_collected_value_msat == final_value_msat && payment_paths.len() == 1 {
2965                         // Further, if this was our first walk of the graph, and we weren't limited by an
2966                         // htlc_minimum_msat, return immediately because this path should suffice. If we were
2967                         // limited by an htlc_minimum_msat value, find another path with a higher value,
2968                         // potentially allowing us to pay fees to meet the htlc_minimum on the new path while
2969                         // still keeping a lower total fee than this path.
2970                         if !hit_minimum_limit {
2971                                 log_trace!(logger, "Collected exactly our payment amount on the first pass, without hitting an htlc_minimum_msat limit, exiting.");
2972                                 break 'paths_collection;
2973                         }
2974                         log_trace!(logger, "Collected our payment amount on the first pass, but running again to collect extra paths with a potentially higher value to meet htlc_minimum_msat limit.");
2975                         path_value_msat = recommended_value_msat;
2976                 }
2977         }
2978
2979         let num_ignored_total = num_ignored_value_contribution + num_ignored_path_length_limit +
2980                 num_ignored_cltv_delta_limit + num_ignored_previously_failed +
2981                 num_ignored_avoid_overpayment + num_ignored_htlc_minimum_msat_limit +
2982                 num_ignored_total_fee_limit;
2983         if num_ignored_total > 0 {
2984                 log_trace!(logger,
2985                         "Ignored {} candidate hops due to insufficient value contribution, {} due to path length limit, {} due to CLTV delta limit, {} due to previous payment failure, {} due to htlc_minimum_msat limit, {} to avoid overpaying, {} due to maximum total fee limit. Total: {} ignored candidates.",
2986                         num_ignored_value_contribution, num_ignored_path_length_limit,
2987                         num_ignored_cltv_delta_limit, num_ignored_previously_failed,
2988                         num_ignored_htlc_minimum_msat_limit, num_ignored_avoid_overpayment,
2989                         num_ignored_total_fee_limit, num_ignored_total);
2990         }
2991
2992         // Step (5).
2993         if payment_paths.len() == 0 {
2994                 return Err(LightningError{err: "Failed to find a path to the given destination".to_owned(), action: ErrorAction::IgnoreError});
2995         }
2996
2997         if already_collected_value_msat < final_value_msat {
2998                 return Err(LightningError{err: "Failed to find a sufficient route to the given destination".to_owned(), action: ErrorAction::IgnoreError});
2999         }
3000
3001         // Step (6).
3002         let mut selected_route = payment_paths;
3003
3004         debug_assert_eq!(selected_route.iter().map(|p| p.get_value_msat()).sum::<u64>(), already_collected_value_msat);
3005         let mut overpaid_value_msat = already_collected_value_msat - final_value_msat;
3006
3007         // First, sort by the cost-per-value of the path, dropping the paths that cost the most for
3008         // the value they contribute towards the payment amount.
3009         // We sort in descending order as we will remove from the front in `retain`, next.
3010         selected_route.sort_unstable_by(|a, b|
3011                 (((b.get_cost_msat() as u128) << 64) / (b.get_value_msat() as u128))
3012                         .cmp(&(((a.get_cost_msat() as u128) << 64) / (a.get_value_msat() as u128)))
3013         );
3014
3015         // We should make sure that at least 1 path left.
3016         let mut paths_left = selected_route.len();
3017         selected_route.retain(|path| {
3018                 if paths_left == 1 {
3019                         return true
3020                 }
3021                 let path_value_msat = path.get_value_msat();
3022                 if path_value_msat <= overpaid_value_msat {
3023                         overpaid_value_msat -= path_value_msat;
3024                         paths_left -= 1;
3025                         return false;
3026                 }
3027                 true
3028         });
3029         debug_assert!(selected_route.len() > 0);
3030
3031         if overpaid_value_msat != 0 {
3032                 // Step (7).
3033                 // Now, subtract the remaining overpaid value from the most-expensive path.
3034                 // TODO: this could also be optimized by also sorting by feerate_per_sat_routed,
3035                 // so that the sender pays less fees overall. And also htlc_minimum_msat.
3036                 selected_route.sort_unstable_by(|a, b| {
3037                         let a_f = a.hops.iter().map(|hop| hop.0.candidate.fees().proportional_millionths as u64).sum::<u64>();
3038                         let b_f = b.hops.iter().map(|hop| hop.0.candidate.fees().proportional_millionths as u64).sum::<u64>();
3039                         a_f.cmp(&b_f).then_with(|| b.get_cost_msat().cmp(&a.get_cost_msat()))
3040                 });
3041                 let expensive_payment_path = selected_route.first_mut().unwrap();
3042
3043                 // We already dropped all the paths with value below `overpaid_value_msat` above, thus this
3044                 // can't go negative.
3045                 let expensive_path_new_value_msat = expensive_payment_path.get_value_msat() - overpaid_value_msat;
3046                 expensive_payment_path.update_value_and_recompute_fees(expensive_path_new_value_msat);
3047         }
3048
3049         // Step (8).
3050         // Sort by the path itself and combine redundant paths.
3051         // Note that we sort by SCIDs alone as its simpler but when combining we have to ensure we
3052         // compare both SCIDs and NodeIds as individual nodes may use random aliases causing collisions
3053         // across nodes.
3054         selected_route.sort_unstable_by_key(|path| {
3055                 let mut key = [CandidateHopId::Clear((42, true)) ; MAX_PATH_LENGTH_ESTIMATE as usize];
3056                 debug_assert!(path.hops.len() <= key.len());
3057                 for (scid, key) in path.hops.iter() .map(|h| h.0.candidate.id()).zip(key.iter_mut()) {
3058                         *key = scid;
3059                 }
3060                 key
3061         });
3062         for idx in 0..(selected_route.len() - 1) {
3063                 if idx + 1 >= selected_route.len() { break; }
3064                 if iter_equal(selected_route[idx    ].hops.iter().map(|h| (h.0.candidate.id(), h.0.candidate.target())),
3065                               selected_route[idx + 1].hops.iter().map(|h| (h.0.candidate.id(), h.0.candidate.target()))) {
3066                         let new_value = selected_route[idx].get_value_msat() + selected_route[idx + 1].get_value_msat();
3067                         selected_route[idx].update_value_and_recompute_fees(new_value);
3068                         selected_route.remove(idx + 1);
3069                 }
3070         }
3071
3072         let mut paths = Vec::new();
3073         for payment_path in selected_route {
3074                 let mut hops = Vec::with_capacity(payment_path.hops.len());
3075                 for (hop, node_features) in payment_path.hops.iter()
3076                         .filter(|(h, _)| h.candidate.short_channel_id().is_some())
3077                 {
3078                         let target = hop.candidate.target().expect("target is defined when short_channel_id is defined");
3079                         let maybe_announced_channel = if let CandidateRouteHop::PublicHop(_) = hop.candidate {
3080                                 // If we sourced the hop from the graph we're sure the target node is announced.
3081                                 true
3082                         } else if let CandidateRouteHop::FirstHop(first_hop) = &hop.candidate {
3083                                 // If this is a first hop we also know if it's announced.
3084                                 first_hop.details.is_public
3085                         } else {
3086                                 // If we sourced it any other way, we double-check the network graph to see if
3087                                 // there are announced channels between the endpoints. If so, the hop might be
3088                                 // referring to any of the announced channels, as its `short_channel_id` might be
3089                                 // an alias, in which case we don't take any chances here.
3090                                 network_graph.node(&target).map_or(false, |hop_node|
3091                                         hop_node.channels.iter().any(|scid| network_graph.channel(*scid)
3092                                                         .map_or(false, |c| c.as_directed_from(&hop.candidate.source()).is_some()))
3093                                 )
3094                         };
3095
3096                         hops.push(RouteHop {
3097                                 pubkey: PublicKey::from_slice(target.as_slice()).map_err(|_| LightningError{err: format!("Public key {:?} is invalid", &target), action: ErrorAction::IgnoreAndLog(Level::Trace)})?,
3098                                 node_features: node_features.clone(),
3099                                 short_channel_id: hop.candidate.short_channel_id().unwrap(),
3100                                 channel_features: hop.candidate.features(),
3101                                 fee_msat: hop.fee_msat,
3102                                 cltv_expiry_delta: hop.candidate.cltv_expiry_delta(),
3103                                 maybe_announced_channel,
3104                         });
3105                 }
3106                 let mut final_cltv_delta = final_cltv_expiry_delta;
3107                 let blinded_tail = payment_path.hops.last().and_then(|(h, _)| {
3108                         if let Some(blinded_path) = h.candidate.blinded_path() {
3109                                 final_cltv_delta = h.candidate.cltv_expiry_delta();
3110                                 Some(BlindedTail {
3111                                         hops: blinded_path.blinded_hops.clone(),
3112                                         blinding_point: blinded_path.blinding_point,
3113                                         excess_final_cltv_expiry_delta: 0,
3114                                         final_value_msat: h.fee_msat,
3115                                 })
3116                         } else { None }
3117                 });
3118                 // Propagate the cltv_expiry_delta one hop backwards since the delta from the current hop is
3119                 // applicable for the previous hop.
3120                 hops.iter_mut().rev().fold(final_cltv_delta, |prev_cltv_expiry_delta, hop| {
3121                         core::mem::replace(&mut hop.cltv_expiry_delta, prev_cltv_expiry_delta)
3122                 });
3123
3124                 paths.push(Path { hops, blinded_tail });
3125         }
3126         // Make sure we would never create a route with more paths than we allow.
3127         debug_assert!(paths.len() <= payment_params.max_path_count.into());
3128
3129         if let Some(node_features) = payment_params.payee.node_features() {
3130                 for path in paths.iter_mut() {
3131                         path.hops.last_mut().unwrap().node_features = node_features.clone();
3132                 }
3133         }
3134
3135         let route = Route { paths, route_params: Some(route_params.clone()) };
3136
3137         // Make sure we would never create a route whose total fees exceed max_total_routing_fee_msat.
3138         if let Some(max_total_routing_fee_msat) = route_params.max_total_routing_fee_msat {
3139                 if route.get_total_fees() > max_total_routing_fee_msat {
3140                         return Err(LightningError{err: format!("Failed to find route that adheres to the maximum total fee limit of {}msat",
3141                                 max_total_routing_fee_msat), action: ErrorAction::IgnoreError});
3142                 }
3143         }
3144
3145         log_info!(logger, "Got route: {}", log_route!(route));
3146         Ok(route)
3147 }
3148
3149 // When an adversarial intermediary node observes a payment, it may be able to infer its
3150 // destination, if the remaining CLTV expiry delta exactly matches a feasible path in the network
3151 // graph. In order to improve privacy, this method obfuscates the CLTV expiry deltas along the
3152 // payment path by adding a randomized 'shadow route' offset to the final hop.
3153 fn add_random_cltv_offset(route: &mut Route, payment_params: &PaymentParameters,
3154         network_graph: &ReadOnlyNetworkGraph, random_seed_bytes: &[u8; 32]
3155 ) {
3156         let network_channels = network_graph.channels();
3157         let network_nodes = network_graph.nodes();
3158
3159         for path in route.paths.iter_mut() {
3160                 let mut shadow_ctlv_expiry_delta_offset: u32 = 0;
3161
3162                 // Remember the last three nodes of the random walk and avoid looping back on them.
3163                 // Init with the last three nodes from the actual path, if possible.
3164                 let mut nodes_to_avoid: [NodeId; 3] = [NodeId::from_pubkey(&path.hops.last().unwrap().pubkey),
3165                         NodeId::from_pubkey(&path.hops.get(path.hops.len().saturating_sub(2)).unwrap().pubkey),
3166                         NodeId::from_pubkey(&path.hops.get(path.hops.len().saturating_sub(3)).unwrap().pubkey)];
3167
3168                 // Choose the last publicly known node as the starting point for the random walk.
3169                 let mut cur_hop: Option<NodeId> = None;
3170                 let mut path_nonce = [0u8; 12];
3171                 if let Some(starting_hop) = path.hops.iter().rev()
3172                         .find(|h| network_nodes.contains_key(&NodeId::from_pubkey(&h.pubkey))) {
3173                                 cur_hop = Some(NodeId::from_pubkey(&starting_hop.pubkey));
3174                                 path_nonce.copy_from_slice(&cur_hop.unwrap().as_slice()[..12]);
3175                 }
3176
3177                 // Init PRNG with the path-dependant nonce, which is static for private paths.
3178                 let mut prng = ChaCha20::new(random_seed_bytes, &path_nonce);
3179                 let mut random_path_bytes = [0u8; ::core::mem::size_of::<usize>()];
3180
3181                 // Pick a random path length in [1 .. 3]
3182                 prng.process_in_place(&mut random_path_bytes);
3183                 let random_walk_length = usize::from_be_bytes(random_path_bytes).wrapping_rem(3).wrapping_add(1);
3184
3185                 for random_hop in 0..random_walk_length {
3186                         // If we don't find a suitable offset in the public network graph, we default to
3187                         // MEDIAN_HOP_CLTV_EXPIRY_DELTA.
3188                         let mut random_hop_offset = MEDIAN_HOP_CLTV_EXPIRY_DELTA;
3189
3190                         if let Some(cur_node_id) = cur_hop {
3191                                 if let Some(cur_node) = network_nodes.get(&cur_node_id) {
3192                                         // Randomly choose the next unvisited hop.
3193                                         prng.process_in_place(&mut random_path_bytes);
3194                                         if let Some(random_channel) = usize::from_be_bytes(random_path_bytes)
3195                                                 .checked_rem(cur_node.channels.len())
3196                                                 .and_then(|index| cur_node.channels.get(index))
3197                                                 .and_then(|id| network_channels.get(id)) {
3198                                                         random_channel.as_directed_from(&cur_node_id).map(|(dir_info, next_id)| {
3199                                                                 if !nodes_to_avoid.iter().any(|x| x == next_id) {
3200                                                                         nodes_to_avoid[random_hop] = *next_id;
3201                                                                         random_hop_offset = dir_info.direction().cltv_expiry_delta.into();
3202                                                                         cur_hop = Some(*next_id);
3203                                                                 }
3204                                                         });
3205                                                 }
3206                                 }
3207                         }
3208
3209                         shadow_ctlv_expiry_delta_offset = shadow_ctlv_expiry_delta_offset
3210                                 .checked_add(random_hop_offset)
3211                                 .unwrap_or(shadow_ctlv_expiry_delta_offset);
3212                 }
3213
3214                 // Limit the total offset to reduce the worst-case locked liquidity timevalue
3215                 const MAX_SHADOW_CLTV_EXPIRY_DELTA_OFFSET: u32 = 3*144;
3216                 shadow_ctlv_expiry_delta_offset = cmp::min(shadow_ctlv_expiry_delta_offset, MAX_SHADOW_CLTV_EXPIRY_DELTA_OFFSET);
3217
3218                 // Limit the offset so we never exceed the max_total_cltv_expiry_delta. To improve plausibility,
3219                 // we choose the limit to be the largest possible multiple of MEDIAN_HOP_CLTV_EXPIRY_DELTA.
3220                 let path_total_cltv_expiry_delta: u32 = path.hops.iter().map(|h| h.cltv_expiry_delta).sum();
3221                 let mut max_path_offset = payment_params.max_total_cltv_expiry_delta - path_total_cltv_expiry_delta;
3222                 max_path_offset = cmp::max(
3223                         max_path_offset - (max_path_offset % MEDIAN_HOP_CLTV_EXPIRY_DELTA),
3224                         max_path_offset % MEDIAN_HOP_CLTV_EXPIRY_DELTA);
3225                 shadow_ctlv_expiry_delta_offset = cmp::min(shadow_ctlv_expiry_delta_offset, max_path_offset);
3226
3227                 // Add 'shadow' CLTV offset to the final hop
3228                 if let Some(tail) = path.blinded_tail.as_mut() {
3229                         tail.excess_final_cltv_expiry_delta = tail.excess_final_cltv_expiry_delta
3230                                 .checked_add(shadow_ctlv_expiry_delta_offset).unwrap_or(tail.excess_final_cltv_expiry_delta);
3231                 }
3232                 if let Some(last_hop) = path.hops.last_mut() {
3233                         last_hop.cltv_expiry_delta = last_hop.cltv_expiry_delta
3234                                 .checked_add(shadow_ctlv_expiry_delta_offset).unwrap_or(last_hop.cltv_expiry_delta);
3235                 }
3236         }
3237 }
3238
3239 /// Construct a route from us (payer) to the target node (payee) via the given hops (which should
3240 /// exclude the payer, but include the payee). This may be useful, e.g., for probing the chosen path.
3241 ///
3242 /// Re-uses logic from `find_route`, so the restrictions described there also apply here.
3243 pub fn build_route_from_hops<L: Deref, GL: Deref>(
3244         our_node_pubkey: &PublicKey, hops: &[PublicKey], route_params: &RouteParameters,
3245         network_graph: &NetworkGraph<GL>, logger: L, random_seed_bytes: &[u8; 32]
3246 ) -> Result<Route, LightningError>
3247 where L::Target: Logger, GL::Target: Logger {
3248         let graph_lock = network_graph.read_only();
3249         let mut route = build_route_from_hops_internal(our_node_pubkey, hops, &route_params,
3250                 &graph_lock, logger, random_seed_bytes)?;
3251         add_random_cltv_offset(&mut route, &route_params.payment_params, &graph_lock, random_seed_bytes);
3252         Ok(route)
3253 }
3254
3255 fn build_route_from_hops_internal<L: Deref>(
3256         our_node_pubkey: &PublicKey, hops: &[PublicKey], route_params: &RouteParameters,
3257         network_graph: &ReadOnlyNetworkGraph, logger: L, random_seed_bytes: &[u8; 32],
3258 ) -> Result<Route, LightningError> where L::Target: Logger {
3259
3260         struct HopScorer {
3261                 our_node_id: NodeId,
3262                 hop_ids: [Option<NodeId>; MAX_PATH_LENGTH_ESTIMATE as usize],
3263         }
3264
3265         impl ScoreLookUp for HopScorer {
3266                 type ScoreParams = ();
3267                 fn channel_penalty_msat(&self, candidate: &CandidateRouteHop,
3268                         _usage: ChannelUsage, _score_params: &Self::ScoreParams) -> u64
3269                 {
3270                         let mut cur_id = self.our_node_id;
3271                         for i in 0..self.hop_ids.len() {
3272                                 if let Some(next_id) = self.hop_ids[i] {
3273                                         if cur_id == candidate.source() && Some(next_id) == candidate.target() {
3274                                                 return 0;
3275                                         }
3276                                         cur_id = next_id;
3277                                 } else {
3278                                         break;
3279                                 }
3280                         }
3281                         u64::max_value()
3282                 }
3283         }
3284
3285         impl<'a> Writeable for HopScorer {
3286                 #[inline]
3287                 fn write<W: Writer>(&self, _w: &mut W) -> Result<(), io::Error> {
3288                         unreachable!();
3289                 }
3290         }
3291
3292         if hops.len() > MAX_PATH_LENGTH_ESTIMATE.into() {
3293                 return Err(LightningError{err: "Cannot build a route exceeding the maximum path length.".to_owned(), action: ErrorAction::IgnoreError});
3294         }
3295
3296         let our_node_id = NodeId::from_pubkey(our_node_pubkey);
3297         let mut hop_ids = [None; MAX_PATH_LENGTH_ESTIMATE as usize];
3298         for i in 0..hops.len() {
3299                 hop_ids[i] = Some(NodeId::from_pubkey(&hops[i]));
3300         }
3301
3302         let scorer = HopScorer { our_node_id, hop_ids };
3303
3304         get_route(our_node_pubkey, route_params, network_graph, None, logger, &scorer, &Default::default(), random_seed_bytes)
3305 }
3306
3307 #[cfg(test)]
3308 mod tests {
3309         use crate::blinded_path::{BlindedHop, BlindedPath, IntroductionNode};
3310         use crate::routing::gossip::{NetworkGraph, P2PGossipSync, NodeId, EffectiveCapacity};
3311         use crate::routing::utxo::UtxoResult;
3312         use crate::routing::router::{get_route, build_route_from_hops_internal, add_random_cltv_offset, default_node_features,
3313                 BlindedTail, InFlightHtlcs, Path, PaymentParameters, Route, RouteHint, RouteHintHop, RouteHop, RoutingFees,
3314                 DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA, MAX_PATH_LENGTH_ESTIMATE, RouteParameters, CandidateRouteHop, PublicHopCandidate};
3315         use crate::routing::scoring::{ChannelUsage, FixedPenaltyScorer, ScoreLookUp, ProbabilisticScorer, ProbabilisticScoringFeeParameters, ProbabilisticScoringDecayParameters};
3316         use crate::routing::test_utils::{add_channel, add_or_update_node, build_graph, build_line_graph, id_to_feature_flags, get_nodes, update_channel};
3317         use crate::chain::transaction::OutPoint;
3318         use crate::sign::EntropySource;
3319         use crate::ln::types::ChannelId;
3320         use crate::ln::features::{BlindedHopFeatures, ChannelFeatures, InitFeatures, NodeFeatures};
3321         use crate::ln::msgs::{ErrorAction, LightningError, UnsignedChannelUpdate, MAX_VALUE_MSAT};
3322         use crate::ln::channelmanager;
3323         use crate::offers::invoice::BlindedPayInfo;
3324         use crate::util::config::UserConfig;
3325         use crate::util::test_utils as ln_test_utils;
3326         use crate::crypto::chacha20::ChaCha20;
3327         use crate::util::ser::{Readable, Writeable};
3328         #[cfg(c_bindings)]
3329         use crate::util::ser::Writer;
3330
3331         use bitcoin::hashes::Hash;
3332         use bitcoin::network::constants::Network;
3333         use bitcoin::blockdata::constants::ChainHash;
3334         use bitcoin::blockdata::script::Builder;
3335         use bitcoin::blockdata::opcodes;
3336         use bitcoin::blockdata::transaction::TxOut;
3337         use bitcoin::hashes::hex::FromHex;
3338         use bitcoin::secp256k1::{PublicKey,SecretKey};
3339         use bitcoin::secp256k1::Secp256k1;
3340
3341         use crate::io::Cursor;
3342         use crate::prelude::*;
3343         use crate::sync::Arc;
3344
3345         fn get_channel_details(short_channel_id: Option<u64>, node_id: PublicKey,
3346                         features: InitFeatures, outbound_capacity_msat: u64) -> channelmanager::ChannelDetails {
3347                 channelmanager::ChannelDetails {
3348                         channel_id: ChannelId::new_zero(),
3349                         counterparty: channelmanager::ChannelCounterparty {
3350                                 features,
3351                                 node_id,
3352                                 unspendable_punishment_reserve: 0,
3353                                 forwarding_info: None,
3354                                 outbound_htlc_minimum_msat: None,
3355                                 outbound_htlc_maximum_msat: None,
3356                         },
3357                         funding_txo: Some(OutPoint { txid: bitcoin::Txid::from_slice(&[0; 32]).unwrap(), index: 0 }),
3358                         channel_type: None,
3359                         short_channel_id,
3360                         outbound_scid_alias: None,
3361                         inbound_scid_alias: None,
3362                         channel_value_satoshis: 0,
3363                         user_channel_id: 0,
3364                         balance_msat: 0,
3365                         outbound_capacity_msat,
3366                         next_outbound_htlc_limit_msat: outbound_capacity_msat,
3367                         next_outbound_htlc_minimum_msat: 0,
3368                         inbound_capacity_msat: 42,
3369                         unspendable_punishment_reserve: None,
3370                         confirmations_required: None,
3371                         confirmations: None,
3372                         force_close_spend_delay: None,
3373                         is_outbound: true, is_channel_ready: true,
3374                         is_usable: true, is_public: true,
3375                         inbound_htlc_minimum_msat: None,
3376                         inbound_htlc_maximum_msat: None,
3377                         config: None,
3378                         feerate_sat_per_1000_weight: None,
3379                         channel_shutdown_state: Some(channelmanager::ChannelShutdownState::NotShuttingDown),
3380                         pending_inbound_htlcs: Vec::new(),
3381                         pending_outbound_htlcs: Vec::new(),
3382                 }
3383         }
3384
3385         #[test]
3386         fn simple_route_test() {
3387                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
3388                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
3389                 let mut payment_params = PaymentParameters::from_node_id(nodes[2], 42);
3390                 let scorer = ln_test_utils::TestScorer::new();
3391                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3392                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3393
3394                 // Simple route to 2 via 1
3395
3396                 let route_params = RouteParameters::from_payment_params_and_value(
3397                         payment_params.clone(), 0);
3398                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id,
3399                         &route_params, &network_graph.read_only(), None, Arc::clone(&logger), &scorer,
3400                         &Default::default(), &random_seed_bytes) {
3401                                 assert_eq!(err, "Cannot send a payment of 0 msat");
3402                 } else { panic!(); }
3403
3404                 payment_params.max_path_length = 2;
3405                 let mut route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
3406                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
3407                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
3408                 assert_eq!(route.paths[0].hops.len(), 2);
3409
3410                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
3411                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
3412                 assert_eq!(route.paths[0].hops[0].fee_msat, 100);
3413                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (4 << 4) | 1);
3414                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(2));
3415                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(2));
3416
3417                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
3418                 assert_eq!(route.paths[0].hops[1].short_channel_id, 4);
3419                 assert_eq!(route.paths[0].hops[1].fee_msat, 100);
3420                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 42);
3421                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
3422                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(4));
3423
3424                 route_params.payment_params.max_path_length = 1;
3425                 get_route(&our_id, &route_params, &network_graph.read_only(), None,
3426                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap_err();
3427         }
3428
3429         #[test]
3430         fn invalid_first_hop_test() {
3431                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
3432                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
3433                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
3434                 let scorer = ln_test_utils::TestScorer::new();
3435                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3436                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3437
3438                 // Simple route to 2 via 1
3439
3440                 let our_chans = vec![get_channel_details(Some(2), our_id, InitFeatures::from_le_bytes(vec![0b11]), 100000)];
3441
3442                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
3443                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id,
3444                         &route_params, &network_graph.read_only(), Some(&our_chans.iter().collect::<Vec<_>>()),
3445                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes) {
3446                                 assert_eq!(err, "First hop cannot have our_node_pubkey as a destination.");
3447                 } else { panic!(); }
3448
3449                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
3450                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
3451                 assert_eq!(route.paths[0].hops.len(), 2);
3452         }
3453
3454         #[test]
3455         fn htlc_minimum_test() {
3456                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3457                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3458                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
3459                 let scorer = ln_test_utils::TestScorer::new();
3460                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3461                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3462
3463                 // Simple route to 2 via 1
3464
3465                 // Disable other paths
3466                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3467                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3468                         short_channel_id: 12,
3469                         timestamp: 2,
3470                         flags: 2, // to disable
3471                         cltv_expiry_delta: 0,
3472                         htlc_minimum_msat: 0,
3473                         htlc_maximum_msat: MAX_VALUE_MSAT,
3474                         fee_base_msat: 0,
3475                         fee_proportional_millionths: 0,
3476                         excess_data: Vec::new()
3477                 });
3478                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
3479                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3480                         short_channel_id: 3,
3481                         timestamp: 2,
3482                         flags: 2, // to disable
3483                         cltv_expiry_delta: 0,
3484                         htlc_minimum_msat: 0,
3485                         htlc_maximum_msat: MAX_VALUE_MSAT,
3486                         fee_base_msat: 0,
3487                         fee_proportional_millionths: 0,
3488                         excess_data: Vec::new()
3489                 });
3490                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
3491                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3492                         short_channel_id: 13,
3493                         timestamp: 2,
3494                         flags: 2, // to disable
3495                         cltv_expiry_delta: 0,
3496                         htlc_minimum_msat: 0,
3497                         htlc_maximum_msat: MAX_VALUE_MSAT,
3498                         fee_base_msat: 0,
3499                         fee_proportional_millionths: 0,
3500                         excess_data: Vec::new()
3501                 });
3502                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
3503                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3504                         short_channel_id: 6,
3505                         timestamp: 2,
3506                         flags: 2, // to disable
3507                         cltv_expiry_delta: 0,
3508                         htlc_minimum_msat: 0,
3509                         htlc_maximum_msat: MAX_VALUE_MSAT,
3510                         fee_base_msat: 0,
3511                         fee_proportional_millionths: 0,
3512                         excess_data: Vec::new()
3513                 });
3514                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
3515                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3516                         short_channel_id: 7,
3517                         timestamp: 2,
3518                         flags: 2, // to disable
3519                         cltv_expiry_delta: 0,
3520                         htlc_minimum_msat: 0,
3521                         htlc_maximum_msat: MAX_VALUE_MSAT,
3522                         fee_base_msat: 0,
3523                         fee_proportional_millionths: 0,
3524                         excess_data: Vec::new()
3525                 });
3526
3527                 // Check against amount_to_transfer_over_msat.
3528                 // Set minimal HTLC of 200_000_000 msat.
3529                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3530                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3531                         short_channel_id: 2,
3532                         timestamp: 3,
3533                         flags: 0,
3534                         cltv_expiry_delta: 0,
3535                         htlc_minimum_msat: 200_000_000,
3536                         htlc_maximum_msat: MAX_VALUE_MSAT,
3537                         fee_base_msat: 0,
3538                         fee_proportional_millionths: 0,
3539                         excess_data: Vec::new()
3540                 });
3541
3542                 // Second hop only allows to forward 199_999_999 at most, thus not allowing the first hop to
3543                 // be used.
3544                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
3545                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3546                         short_channel_id: 4,
3547                         timestamp: 3,
3548                         flags: 0,
3549                         cltv_expiry_delta: 0,
3550                         htlc_minimum_msat: 0,
3551                         htlc_maximum_msat: 199_999_999,
3552                         fee_base_msat: 0,
3553                         fee_proportional_millionths: 0,
3554                         excess_data: Vec::new()
3555                 });
3556
3557                 // Not possible to send 199_999_999, because the minimum on channel=2 is 200_000_000.
3558                 let route_params = RouteParameters::from_payment_params_and_value(
3559                         payment_params, 199_999_999);
3560                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id,
3561                         &route_params, &network_graph.read_only(), None, Arc::clone(&logger), &scorer,
3562                         &Default::default(), &random_seed_bytes) {
3563                                 assert_eq!(err, "Failed to find a path to the given destination");
3564                 } else { panic!(); }
3565
3566                 // Lift the restriction on the first hop.
3567                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3568                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3569                         short_channel_id: 2,
3570                         timestamp: 4,
3571                         flags: 0,
3572                         cltv_expiry_delta: 0,
3573                         htlc_minimum_msat: 0,
3574                         htlc_maximum_msat: MAX_VALUE_MSAT,
3575                         fee_base_msat: 0,
3576                         fee_proportional_millionths: 0,
3577                         excess_data: Vec::new()
3578                 });
3579
3580                 // A payment above the minimum should pass
3581                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
3582                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
3583                 assert_eq!(route.paths[0].hops.len(), 2);
3584         }
3585
3586         #[test]
3587         fn htlc_minimum_overpay_test() {
3588                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3589                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3590                 let config = UserConfig::default();
3591                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42)
3592                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
3593                         .unwrap();
3594                 let scorer = ln_test_utils::TestScorer::new();
3595                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3596                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3597
3598                 // A route to node#2 via two paths.
3599                 // One path allows transferring 35-40 sats, another one also allows 35-40 sats.
3600                 // Thus, they can't send 60 without overpaying.
3601                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3602                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3603                         short_channel_id: 2,
3604                         timestamp: 2,
3605                         flags: 0,
3606                         cltv_expiry_delta: 0,
3607                         htlc_minimum_msat: 35_000,
3608                         htlc_maximum_msat: 40_000,
3609                         fee_base_msat: 0,
3610                         fee_proportional_millionths: 0,
3611                         excess_data: Vec::new()
3612                 });
3613                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3614                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3615                         short_channel_id: 12,
3616                         timestamp: 3,
3617                         flags: 0,
3618                         cltv_expiry_delta: 0,
3619                         htlc_minimum_msat: 35_000,
3620                         htlc_maximum_msat: 40_000,
3621                         fee_base_msat: 0,
3622                         fee_proportional_millionths: 0,
3623                         excess_data: Vec::new()
3624                 });
3625
3626                 // Make 0 fee.
3627                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
3628                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3629                         short_channel_id: 13,
3630                         timestamp: 2,
3631                         flags: 0,
3632                         cltv_expiry_delta: 0,
3633                         htlc_minimum_msat: 0,
3634                         htlc_maximum_msat: MAX_VALUE_MSAT,
3635                         fee_base_msat: 0,
3636                         fee_proportional_millionths: 0,
3637                         excess_data: Vec::new()
3638                 });
3639                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
3640                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3641                         short_channel_id: 4,
3642                         timestamp: 2,
3643                         flags: 0,
3644                         cltv_expiry_delta: 0,
3645                         htlc_minimum_msat: 0,
3646                         htlc_maximum_msat: MAX_VALUE_MSAT,
3647                         fee_base_msat: 0,
3648                         fee_proportional_millionths: 0,
3649                         excess_data: Vec::new()
3650                 });
3651
3652                 // Disable other paths
3653                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3654                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3655                         short_channel_id: 1,
3656                         timestamp: 3,
3657                         flags: 2, // to disable
3658                         cltv_expiry_delta: 0,
3659                         htlc_minimum_msat: 0,
3660                         htlc_maximum_msat: MAX_VALUE_MSAT,
3661                         fee_base_msat: 0,
3662                         fee_proportional_millionths: 0,
3663                         excess_data: Vec::new()
3664                 });
3665
3666                 let mut route_params = RouteParameters::from_payment_params_and_value(
3667                         payment_params.clone(), 60_000);
3668                 route_params.max_total_routing_fee_msat = Some(15_000);
3669                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
3670                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
3671                 // Overpay fees to hit htlc_minimum_msat.
3672                 let overpaid_fees = route.paths[0].hops[0].fee_msat + route.paths[1].hops[0].fee_msat;
3673                 // TODO: this could be better balanced to overpay 10k and not 15k.
3674                 assert_eq!(overpaid_fees, 15_000);
3675
3676                 // Now, test that if there are 2 paths, a "cheaper" by fee path wouldn't be prioritized
3677                 // while taking even more fee to match htlc_minimum_msat.
3678                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3679                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3680                         short_channel_id: 12,
3681                         timestamp: 4,
3682                         flags: 0,
3683                         cltv_expiry_delta: 0,
3684                         htlc_minimum_msat: 65_000,
3685                         htlc_maximum_msat: 80_000,
3686                         fee_base_msat: 0,
3687                         fee_proportional_millionths: 0,
3688                         excess_data: Vec::new()
3689                 });
3690                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3691                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3692                         short_channel_id: 2,
3693                         timestamp: 3,
3694                         flags: 0,
3695                         cltv_expiry_delta: 0,
3696                         htlc_minimum_msat: 0,
3697                         htlc_maximum_msat: MAX_VALUE_MSAT,
3698                         fee_base_msat: 0,
3699                         fee_proportional_millionths: 0,
3700                         excess_data: Vec::new()
3701                 });
3702                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
3703                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3704                         short_channel_id: 4,
3705                         timestamp: 4,
3706                         flags: 0,
3707                         cltv_expiry_delta: 0,
3708                         htlc_minimum_msat: 0,
3709                         htlc_maximum_msat: MAX_VALUE_MSAT,
3710                         fee_base_msat: 0,
3711                         fee_proportional_millionths: 100_000,
3712                         excess_data: Vec::new()
3713                 });
3714
3715                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
3716                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
3717                 // Fine to overpay for htlc_minimum_msat if it allows us to save fee.
3718                 assert_eq!(route.paths.len(), 1);
3719                 assert_eq!(route.paths[0].hops[0].short_channel_id, 12);
3720                 let fees = route.paths[0].hops[0].fee_msat;
3721                 assert_eq!(fees, 5_000);
3722
3723                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 50_000);
3724                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
3725                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
3726                 // Not fine to overpay for htlc_minimum_msat if it requires paying more than fee on
3727                 // the other channel.
3728                 assert_eq!(route.paths.len(), 1);
3729                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
3730                 let fees = route.paths[0].hops[0].fee_msat;
3731                 assert_eq!(fees, 5_000);
3732         }
3733
3734         #[test]
3735         fn htlc_minimum_recipient_overpay_test() {
3736                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3737                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3738                 let config = UserConfig::default();
3739                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42).with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config)).unwrap();
3740                 let scorer = ln_test_utils::TestScorer::new();
3741                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3742                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3743
3744                 // Route to node2 over a single path which requires overpaying the recipient themselves.
3745
3746                 // First disable all paths except the us -> node1 -> node2 path
3747                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
3748                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3749                         short_channel_id: 13,
3750                         timestamp: 2,
3751                         flags: 3,
3752                         cltv_expiry_delta: 0,
3753                         htlc_minimum_msat: 0,
3754                         htlc_maximum_msat: 0,
3755                         fee_base_msat: 0,
3756                         fee_proportional_millionths: 0,
3757                         excess_data: Vec::new()
3758                 });
3759
3760                 // Set channel 4 to free but with a high htlc_minimum_msat
3761                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
3762                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3763                         short_channel_id: 4,
3764                         timestamp: 2,
3765                         flags: 0,
3766                         cltv_expiry_delta: 0,
3767                         htlc_minimum_msat: 15_000,
3768                         htlc_maximum_msat: MAX_VALUE_MSAT,
3769                         fee_base_msat: 0,
3770                         fee_proportional_millionths: 0,
3771                         excess_data: Vec::new()
3772                 });
3773
3774                 // Now check that we'll fail to find a path if we fail to find a path if the htlc_minimum
3775                 // is overrun. Note that the fees are actually calculated on 3*payment amount as that's
3776                 // what we try to find a route for, so this test only just happens to work out to exactly
3777                 // the fee limit.
3778                 let mut route_params = RouteParameters::from_payment_params_and_value(
3779                         payment_params.clone(), 5_000);
3780                 route_params.max_total_routing_fee_msat = Some(9_999);
3781                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id,
3782                         &route_params, &network_graph.read_only(), None, Arc::clone(&logger), &scorer,
3783                         &Default::default(), &random_seed_bytes) {
3784                                 assert_eq!(err, "Failed to find route that adheres to the maximum total fee limit of 9999msat");
3785                 } else { panic!(); }
3786
3787                 let mut route_params = RouteParameters::from_payment_params_and_value(
3788                         payment_params.clone(), 5_000);
3789                 route_params.max_total_routing_fee_msat = Some(10_000);
3790                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
3791                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
3792                 assert_eq!(route.get_total_fees(), 10_000);
3793         }
3794
3795         #[test]
3796         fn disable_channels_test() {
3797                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3798                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3799                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
3800                 let scorer = ln_test_utils::TestScorer::new();
3801                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3802                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3803
3804                 // // Disable channels 4 and 12 by flags=2
3805                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
3806                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3807                         short_channel_id: 4,
3808                         timestamp: 2,
3809                         flags: 2, // to disable
3810                         cltv_expiry_delta: 0,
3811                         htlc_minimum_msat: 0,
3812                         htlc_maximum_msat: MAX_VALUE_MSAT,
3813                         fee_base_msat: 0,
3814                         fee_proportional_millionths: 0,
3815                         excess_data: Vec::new()
3816                 });
3817                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3818                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
3819                         short_channel_id: 12,
3820                         timestamp: 2,
3821                         flags: 2, // to disable
3822                         cltv_expiry_delta: 0,
3823                         htlc_minimum_msat: 0,
3824                         htlc_maximum_msat: MAX_VALUE_MSAT,
3825                         fee_base_msat: 0,
3826                         fee_proportional_millionths: 0,
3827                         excess_data: Vec::new()
3828                 });
3829
3830                 // If all the channels require some features we don't understand, route should fail
3831                 let mut route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
3832                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id,
3833                         &route_params, &network_graph.read_only(), None, Arc::clone(&logger), &scorer,
3834                         &Default::default(), &random_seed_bytes) {
3835                                 assert_eq!(err, "Failed to find a path to the given destination");
3836                 } else { panic!(); }
3837
3838                 // If we specify a channel to node7, that overrides our local channel view and that gets used
3839                 let our_chans = vec![get_channel_details(Some(42), nodes[7].clone(),
3840                         InitFeatures::from_le_bytes(vec![0b11]), 250_000_000)];
3841                 route_params.payment_params.max_path_length = 2;
3842                 let route = get_route(&our_id, &route_params, &network_graph.read_only(),
3843                         Some(&our_chans.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
3844                         &Default::default(), &random_seed_bytes).unwrap();
3845                 assert_eq!(route.paths[0].hops.len(), 2);
3846
3847                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[7]);
3848                 assert_eq!(route.paths[0].hops[0].short_channel_id, 42);
3849                 assert_eq!(route.paths[0].hops[0].fee_msat, 200);
3850                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (13 << 4) | 1);
3851                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &vec![0b11]); // it should also override our view of their features
3852                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &Vec::<u8>::new()); // No feature flags will meet the relevant-to-channel conversion
3853
3854                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
3855                 assert_eq!(route.paths[0].hops[1].short_channel_id, 13);
3856                 assert_eq!(route.paths[0].hops[1].fee_msat, 100);
3857                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 42);
3858                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
3859                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(13));
3860         }
3861
3862         #[test]
3863         fn disable_node_test() {
3864                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3865                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3866                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
3867                 let scorer = ln_test_utils::TestScorer::new();
3868                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3869                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3870
3871                 // Disable nodes 1, 2, and 8 by requiring unknown feature bits
3872                 let mut unknown_features = NodeFeatures::empty();
3873                 unknown_features.set_unknown_feature_required();
3874                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[0], unknown_features.clone(), 1);
3875                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[1], unknown_features.clone(), 1);
3876                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[7], unknown_features.clone(), 1);
3877
3878                 // If all nodes require some features we don't understand, route should fail
3879                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
3880                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id,
3881                         &route_params, &network_graph.read_only(), None, Arc::clone(&logger), &scorer,
3882                         &Default::default(), &random_seed_bytes) {
3883                                 assert_eq!(err, "Failed to find a path to the given destination");
3884                 } else { panic!(); }
3885
3886                 // If we specify a channel to node7, that overrides our local channel view and that gets used
3887                 let our_chans = vec![get_channel_details(Some(42), nodes[7].clone(),
3888                         InitFeatures::from_le_bytes(vec![0b11]), 250_000_000)];
3889                 let route = get_route(&our_id, &route_params, &network_graph.read_only(),
3890                         Some(&our_chans.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
3891                         &Default::default(), &random_seed_bytes).unwrap();
3892                 assert_eq!(route.paths[0].hops.len(), 2);
3893
3894                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[7]);
3895                 assert_eq!(route.paths[0].hops[0].short_channel_id, 42);
3896                 assert_eq!(route.paths[0].hops[0].fee_msat, 200);
3897                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (13 << 4) | 1);
3898                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &vec![0b11]); // it should also override our view of their features
3899                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &Vec::<u8>::new()); // No feature flags will meet the relevant-to-channel conversion
3900
3901                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
3902                 assert_eq!(route.paths[0].hops[1].short_channel_id, 13);
3903                 assert_eq!(route.paths[0].hops[1].fee_msat, 100);
3904                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 42);
3905                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
3906                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(13));
3907
3908                 // Note that we don't test disabling node 3 and failing to route to it, as we (somewhat
3909                 // naively) assume that the user checked the feature bits on the invoice, which override
3910                 // the node_announcement.
3911         }
3912
3913         #[test]
3914         fn our_chans_test() {
3915                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
3916                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
3917                 let scorer = ln_test_utils::TestScorer::new();
3918                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3919                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3920
3921                 // Route to 1 via 2 and 3 because our channel to 1 is disabled
3922                 let payment_params = PaymentParameters::from_node_id(nodes[0], 42);
3923                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
3924                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
3925                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
3926                 assert_eq!(route.paths[0].hops.len(), 3);
3927
3928                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
3929                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
3930                 assert_eq!(route.paths[0].hops[0].fee_msat, 200);
3931                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (4 << 4) | 1);
3932                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(2));
3933                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(2));
3934
3935                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
3936                 assert_eq!(route.paths[0].hops[1].short_channel_id, 4);
3937                 assert_eq!(route.paths[0].hops[1].fee_msat, 100);
3938                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, (3 << 4) | 2);
3939                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
3940                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(4));
3941
3942                 assert_eq!(route.paths[0].hops[2].pubkey, nodes[0]);
3943                 assert_eq!(route.paths[0].hops[2].short_channel_id, 3);
3944                 assert_eq!(route.paths[0].hops[2].fee_msat, 100);
3945                 assert_eq!(route.paths[0].hops[2].cltv_expiry_delta, 42);
3946                 assert_eq!(route.paths[0].hops[2].node_features.le_flags(), &id_to_feature_flags(1));
3947                 assert_eq!(route.paths[0].hops[2].channel_features.le_flags(), &id_to_feature_flags(3));
3948
3949                 // If we specify a channel to node7, that overrides our local channel view and that gets used
3950                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
3951                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
3952                 let our_chans = vec![get_channel_details(Some(42), nodes[7].clone(),
3953                         InitFeatures::from_le_bytes(vec![0b11]), 250_000_000)];
3954                 let route = get_route(&our_id, &route_params, &network_graph.read_only(),
3955                         Some(&our_chans.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
3956                         &Default::default(), &random_seed_bytes).unwrap();
3957                 assert_eq!(route.paths[0].hops.len(), 2);
3958
3959                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[7]);
3960                 assert_eq!(route.paths[0].hops[0].short_channel_id, 42);
3961                 assert_eq!(route.paths[0].hops[0].fee_msat, 200);
3962                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (13 << 4) | 1);
3963                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &vec![0b11]);
3964                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &Vec::<u8>::new()); // No feature flags will meet the relevant-to-channel conversion
3965
3966                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
3967                 assert_eq!(route.paths[0].hops[1].short_channel_id, 13);
3968                 assert_eq!(route.paths[0].hops[1].fee_msat, 100);
3969                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 42);
3970                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
3971                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(13));
3972         }
3973
3974         fn last_hops(nodes: &Vec<PublicKey>) -> Vec<RouteHint> {
3975                 let zero_fees = RoutingFees {
3976                         base_msat: 0,
3977                         proportional_millionths: 0,
3978                 };
3979                 vec![RouteHint(vec![RouteHintHop {
3980                         src_node_id: nodes[3],
3981                         short_channel_id: 8,
3982                         fees: zero_fees,
3983                         cltv_expiry_delta: (8 << 4) | 1,
3984                         htlc_minimum_msat: None,
3985                         htlc_maximum_msat: None,
3986                 }
3987                 ]), RouteHint(vec![RouteHintHop {
3988                         src_node_id: nodes[4],
3989                         short_channel_id: 9,
3990                         fees: RoutingFees {
3991                                 base_msat: 1001,
3992                                 proportional_millionths: 0,
3993                         },
3994                         cltv_expiry_delta: (9 << 4) | 1,
3995                         htlc_minimum_msat: None,
3996                         htlc_maximum_msat: None,
3997                 }]), RouteHint(vec![RouteHintHop {
3998                         src_node_id: nodes[5],
3999                         short_channel_id: 10,
4000                         fees: zero_fees,
4001                         cltv_expiry_delta: (10 << 4) | 1,
4002                         htlc_minimum_msat: None,
4003                         htlc_maximum_msat: None,
4004                 }])]
4005         }
4006
4007         fn last_hops_multi_private_channels(nodes: &Vec<PublicKey>) -> Vec<RouteHint> {
4008                 let zero_fees = RoutingFees {
4009                         base_msat: 0,
4010                         proportional_millionths: 0,
4011                 };
4012                 vec![RouteHint(vec![RouteHintHop {
4013                         src_node_id: nodes[2],
4014                         short_channel_id: 5,
4015                         fees: RoutingFees {
4016                                 base_msat: 100,
4017                                 proportional_millionths: 0,
4018                         },
4019                         cltv_expiry_delta: (5 << 4) | 1,
4020                         htlc_minimum_msat: None,
4021                         htlc_maximum_msat: None,
4022                 }, RouteHintHop {
4023                         src_node_id: nodes[3],
4024                         short_channel_id: 8,
4025                         fees: zero_fees,
4026                         cltv_expiry_delta: (8 << 4) | 1,
4027                         htlc_minimum_msat: None,
4028                         htlc_maximum_msat: None,
4029                 }
4030                 ]), RouteHint(vec![RouteHintHop {
4031                         src_node_id: nodes[4],
4032                         short_channel_id: 9,
4033                         fees: RoutingFees {
4034                                 base_msat: 1001,
4035                                 proportional_millionths: 0,
4036                         },
4037                         cltv_expiry_delta: (9 << 4) | 1,
4038                         htlc_minimum_msat: None,
4039                         htlc_maximum_msat: None,
4040                 }]), RouteHint(vec![RouteHintHop {
4041                         src_node_id: nodes[5],
4042                         short_channel_id: 10,
4043                         fees: zero_fees,
4044                         cltv_expiry_delta: (10 << 4) | 1,
4045                         htlc_minimum_msat: None,
4046                         htlc_maximum_msat: None,
4047                 }])]
4048         }
4049
4050         #[test]
4051         fn partial_route_hint_test() {
4052                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
4053                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
4054                 let scorer = ln_test_utils::TestScorer::new();
4055                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4056                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4057
4058                 // Simple test across 2, 3, 5, and 4 via a last_hop channel
4059                 // Tests the behaviour when the RouteHint contains a suboptimal hop.
4060                 // RouteHint may be partially used by the algo to build the best path.
4061
4062                 // First check that last hop can't have its source as the payee.
4063                 let invalid_last_hop = RouteHint(vec![RouteHintHop {
4064                         src_node_id: nodes[6],
4065                         short_channel_id: 8,
4066                         fees: RoutingFees {
4067                                 base_msat: 1000,
4068                                 proportional_millionths: 0,
4069                         },
4070                         cltv_expiry_delta: (8 << 4) | 1,
4071                         htlc_minimum_msat: None,
4072                         htlc_maximum_msat: None,
4073                 }]);
4074
4075                 let mut invalid_last_hops = last_hops_multi_private_channels(&nodes);
4076                 invalid_last_hops.push(invalid_last_hop);
4077                 {
4078                         let payment_params = PaymentParameters::from_node_id(nodes[6], 42)
4079                                 .with_route_hints(invalid_last_hops).unwrap();
4080                         let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
4081                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id,
4082                                 &route_params, &network_graph.read_only(), None, Arc::clone(&logger), &scorer,
4083                                 &Default::default(), &random_seed_bytes) {
4084                                         assert_eq!(err, "Route hint cannot have the payee as the source.");
4085                         } else { panic!(); }
4086                 }
4087
4088                 let mut payment_params = PaymentParameters::from_node_id(nodes[6], 42)
4089                         .with_route_hints(last_hops_multi_private_channels(&nodes)).unwrap();
4090                 payment_params.max_path_length = 5;
4091                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
4092                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4093                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4094                 assert_eq!(route.paths[0].hops.len(), 5);
4095
4096                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
4097                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
4098                 assert_eq!(route.paths[0].hops[0].fee_msat, 100);
4099                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (4 << 4) | 1);
4100                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(2));
4101                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(2));
4102
4103                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
4104                 assert_eq!(route.paths[0].hops[1].short_channel_id, 4);
4105                 assert_eq!(route.paths[0].hops[1].fee_msat, 0);
4106                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, (6 << 4) | 1);
4107                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
4108                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(4));
4109
4110                 assert_eq!(route.paths[0].hops[2].pubkey, nodes[4]);
4111                 assert_eq!(route.paths[0].hops[2].short_channel_id, 6);
4112                 assert_eq!(route.paths[0].hops[2].fee_msat, 0);
4113                 assert_eq!(route.paths[0].hops[2].cltv_expiry_delta, (11 << 4) | 1);
4114                 assert_eq!(route.paths[0].hops[2].node_features.le_flags(), &id_to_feature_flags(5));
4115                 assert_eq!(route.paths[0].hops[2].channel_features.le_flags(), &id_to_feature_flags(6));
4116
4117                 assert_eq!(route.paths[0].hops[3].pubkey, nodes[3]);
4118                 assert_eq!(route.paths[0].hops[3].short_channel_id, 11);
4119                 assert_eq!(route.paths[0].hops[3].fee_msat, 0);
4120                 assert_eq!(route.paths[0].hops[3].cltv_expiry_delta, (8 << 4) | 1);
4121                 // If we have a peer in the node map, we'll use their features here since we don't have
4122                 // a way of figuring out their features from the invoice:
4123                 assert_eq!(route.paths[0].hops[3].node_features.le_flags(), &id_to_feature_flags(4));
4124                 assert_eq!(route.paths[0].hops[3].channel_features.le_flags(), &id_to_feature_flags(11));
4125
4126                 assert_eq!(route.paths[0].hops[4].pubkey, nodes[6]);
4127                 assert_eq!(route.paths[0].hops[4].short_channel_id, 8);
4128                 assert_eq!(route.paths[0].hops[4].fee_msat, 100);
4129                 assert_eq!(route.paths[0].hops[4].cltv_expiry_delta, 42);
4130                 assert_eq!(route.paths[0].hops[4].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4131                 assert_eq!(route.paths[0].hops[4].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4132         }
4133
4134         fn empty_last_hop(nodes: &Vec<PublicKey>) -> Vec<RouteHint> {
4135                 let zero_fees = RoutingFees {
4136                         base_msat: 0,
4137                         proportional_millionths: 0,
4138                 };
4139                 vec![RouteHint(vec![RouteHintHop {
4140                         src_node_id: nodes[3],
4141                         short_channel_id: 8,
4142                         fees: zero_fees,
4143                         cltv_expiry_delta: (8 << 4) | 1,
4144                         htlc_minimum_msat: None,
4145                         htlc_maximum_msat: None,
4146                 }]), RouteHint(vec![
4147
4148                 ]), RouteHint(vec![RouteHintHop {
4149                         src_node_id: nodes[5],
4150                         short_channel_id: 10,
4151                         fees: zero_fees,
4152                         cltv_expiry_delta: (10 << 4) | 1,
4153                         htlc_minimum_msat: None,
4154                         htlc_maximum_msat: None,
4155                 }])]
4156         }
4157
4158         #[test]
4159         fn ignores_empty_last_hops_test() {
4160                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
4161                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
4162                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(empty_last_hop(&nodes)).unwrap();
4163                 let scorer = ln_test_utils::TestScorer::new();
4164                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4165                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4166
4167                 // Test handling of an empty RouteHint passed in Invoice.
4168                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
4169                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4170                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4171                 assert_eq!(route.paths[0].hops.len(), 5);
4172
4173                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
4174                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
4175                 assert_eq!(route.paths[0].hops[0].fee_msat, 100);
4176                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (4 << 4) | 1);
4177                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(2));
4178                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(2));
4179
4180                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
4181                 assert_eq!(route.paths[0].hops[1].short_channel_id, 4);
4182                 assert_eq!(route.paths[0].hops[1].fee_msat, 0);
4183                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, (6 << 4) | 1);
4184                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
4185                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(4));
4186
4187                 assert_eq!(route.paths[0].hops[2].pubkey, nodes[4]);
4188                 assert_eq!(route.paths[0].hops[2].short_channel_id, 6);
4189                 assert_eq!(route.paths[0].hops[2].fee_msat, 0);
4190                 assert_eq!(route.paths[0].hops[2].cltv_expiry_delta, (11 << 4) | 1);
4191                 assert_eq!(route.paths[0].hops[2].node_features.le_flags(), &id_to_feature_flags(5));
4192                 assert_eq!(route.paths[0].hops[2].channel_features.le_flags(), &id_to_feature_flags(6));
4193
4194                 assert_eq!(route.paths[0].hops[3].pubkey, nodes[3]);
4195                 assert_eq!(route.paths[0].hops[3].short_channel_id, 11);
4196                 assert_eq!(route.paths[0].hops[3].fee_msat, 0);
4197                 assert_eq!(route.paths[0].hops[3].cltv_expiry_delta, (8 << 4) | 1);
4198                 // If we have a peer in the node map, we'll use their features here since we don't have
4199                 // a way of figuring out their features from the invoice:
4200                 assert_eq!(route.paths[0].hops[3].node_features.le_flags(), &id_to_feature_flags(4));
4201                 assert_eq!(route.paths[0].hops[3].channel_features.le_flags(), &id_to_feature_flags(11));
4202
4203                 assert_eq!(route.paths[0].hops[4].pubkey, nodes[6]);
4204                 assert_eq!(route.paths[0].hops[4].short_channel_id, 8);
4205                 assert_eq!(route.paths[0].hops[4].fee_msat, 100);
4206                 assert_eq!(route.paths[0].hops[4].cltv_expiry_delta, 42);
4207                 assert_eq!(route.paths[0].hops[4].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4208                 assert_eq!(route.paths[0].hops[4].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4209         }
4210
4211         /// Builds a trivial last-hop hint that passes through the two nodes given, with channel 0xff00
4212         /// and 0xff01.
4213         fn multi_hop_last_hops_hint(hint_hops: [PublicKey; 2]) -> Vec<RouteHint> {
4214                 let zero_fees = RoutingFees {
4215                         base_msat: 0,
4216                         proportional_millionths: 0,
4217                 };
4218                 vec![RouteHint(vec![RouteHintHop {
4219                         src_node_id: hint_hops[0],
4220                         short_channel_id: 0xff00,
4221                         fees: RoutingFees {
4222                                 base_msat: 100,
4223                                 proportional_millionths: 0,
4224                         },
4225                         cltv_expiry_delta: (5 << 4) | 1,
4226                         htlc_minimum_msat: None,
4227                         htlc_maximum_msat: None,
4228                 }, RouteHintHop {
4229                         src_node_id: hint_hops[1],
4230                         short_channel_id: 0xff01,
4231                         fees: zero_fees,
4232                         cltv_expiry_delta: (8 << 4) | 1,
4233                         htlc_minimum_msat: None,
4234                         htlc_maximum_msat: None,
4235                 }])]
4236         }
4237
4238         #[test]
4239         fn multi_hint_last_hops_test() {
4240                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
4241                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4242                 let last_hops = multi_hop_last_hops_hint([nodes[2], nodes[3]]);
4243                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops.clone()).unwrap();
4244                 let scorer = ln_test_utils::TestScorer::new();
4245                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4246                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4247                 // Test through channels 2, 3, 0xff00, 0xff01.
4248                 // Test shows that multi-hop route hints are considered and factored correctly into the
4249                 // max path length.
4250
4251                 // Disabling channels 6 & 7 by flags=2
4252                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4253                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4254                         short_channel_id: 6,
4255                         timestamp: 2,
4256                         flags: 2, // to disable
4257                         cltv_expiry_delta: 0,
4258                         htlc_minimum_msat: 0,
4259                         htlc_maximum_msat: MAX_VALUE_MSAT,
4260                         fee_base_msat: 0,
4261                         fee_proportional_millionths: 0,
4262                         excess_data: Vec::new()
4263                 });
4264                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4265                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4266                         short_channel_id: 7,
4267                         timestamp: 2,
4268                         flags: 2, // to disable
4269                         cltv_expiry_delta: 0,
4270                         htlc_minimum_msat: 0,
4271                         htlc_maximum_msat: MAX_VALUE_MSAT,
4272                         fee_base_msat: 0,
4273                         fee_proportional_millionths: 0,
4274                         excess_data: Vec::new()
4275                 });
4276
4277                 let mut route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
4278                 route_params.payment_params.max_path_length = 4;
4279                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4280                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4281                 assert_eq!(route.paths[0].hops.len(), 4);
4282
4283                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
4284                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
4285                 assert_eq!(route.paths[0].hops[0].fee_msat, 200);
4286                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, 65);
4287                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(2));
4288                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(2));
4289
4290                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
4291                 assert_eq!(route.paths[0].hops[1].short_channel_id, 4);
4292                 assert_eq!(route.paths[0].hops[1].fee_msat, 100);
4293                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 81);
4294                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
4295                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(4));
4296
4297                 assert_eq!(route.paths[0].hops[2].pubkey, nodes[3]);
4298                 assert_eq!(route.paths[0].hops[2].short_channel_id, last_hops[0].0[0].short_channel_id);
4299                 assert_eq!(route.paths[0].hops[2].fee_msat, 0);
4300                 assert_eq!(route.paths[0].hops[2].cltv_expiry_delta, 129);
4301                 assert_eq!(route.paths[0].hops[2].node_features.le_flags(), &id_to_feature_flags(4));
4302                 assert_eq!(route.paths[0].hops[2].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4303
4304                 assert_eq!(route.paths[0].hops[3].pubkey, nodes[6]);
4305                 assert_eq!(route.paths[0].hops[3].short_channel_id, last_hops[0].0[1].short_channel_id);
4306                 assert_eq!(route.paths[0].hops[3].fee_msat, 100);
4307                 assert_eq!(route.paths[0].hops[3].cltv_expiry_delta, 42);
4308                 assert_eq!(route.paths[0].hops[3].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4309                 assert_eq!(route.paths[0].hops[3].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4310                 route_params.payment_params.max_path_length = 3;
4311                 get_route(&our_id, &route_params, &network_graph.read_only(), None,
4312                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap_err();
4313         }
4314
4315         #[test]
4316         fn private_multi_hint_last_hops_test() {
4317                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
4318                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4319
4320                 let non_announced_privkey = SecretKey::from_slice(&<Vec<u8>>::from_hex(&format!("{:02x}", 0xf0).repeat(32)).unwrap()[..]).unwrap();
4321                 let non_announced_pubkey = PublicKey::from_secret_key(&secp_ctx, &non_announced_privkey);
4322
4323                 let last_hops = multi_hop_last_hops_hint([nodes[2], non_announced_pubkey]);
4324                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops.clone()).unwrap();
4325                 let scorer = ln_test_utils::TestScorer::new();
4326                 // Test through channels 2, 3, 0xff00, 0xff01.
4327                 // Test shows that multiple hop hints are considered.
4328
4329                 // Disabling channels 6 & 7 by flags=2
4330                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4331                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4332                         short_channel_id: 6,
4333                         timestamp: 2,
4334                         flags: 2, // to disable
4335                         cltv_expiry_delta: 0,
4336                         htlc_minimum_msat: 0,
4337                         htlc_maximum_msat: MAX_VALUE_MSAT,
4338                         fee_base_msat: 0,
4339                         fee_proportional_millionths: 0,
4340                         excess_data: Vec::new()
4341                 });
4342                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4343                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4344                         short_channel_id: 7,
4345                         timestamp: 2,
4346                         flags: 2, // to disable
4347                         cltv_expiry_delta: 0,
4348                         htlc_minimum_msat: 0,
4349                         htlc_maximum_msat: MAX_VALUE_MSAT,
4350                         fee_base_msat: 0,
4351                         fee_proportional_millionths: 0,
4352                         excess_data: Vec::new()
4353                 });
4354
4355                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
4356                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4357                         Arc::clone(&logger), &scorer, &Default::default(), &[42u8; 32]).unwrap();
4358                 assert_eq!(route.paths[0].hops.len(), 4);
4359
4360                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
4361                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
4362                 assert_eq!(route.paths[0].hops[0].fee_msat, 200);
4363                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, 65);
4364                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(2));
4365                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(2));
4366
4367                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
4368                 assert_eq!(route.paths[0].hops[1].short_channel_id, 4);
4369                 assert_eq!(route.paths[0].hops[1].fee_msat, 100);
4370                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 81);
4371                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
4372                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(4));
4373
4374                 assert_eq!(route.paths[0].hops[2].pubkey, non_announced_pubkey);
4375                 assert_eq!(route.paths[0].hops[2].short_channel_id, last_hops[0].0[0].short_channel_id);
4376                 assert_eq!(route.paths[0].hops[2].fee_msat, 0);
4377                 assert_eq!(route.paths[0].hops[2].cltv_expiry_delta, 129);
4378                 assert_eq!(route.paths[0].hops[2].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4379                 assert_eq!(route.paths[0].hops[2].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4380
4381                 assert_eq!(route.paths[0].hops[3].pubkey, nodes[6]);
4382                 assert_eq!(route.paths[0].hops[3].short_channel_id, last_hops[0].0[1].short_channel_id);
4383                 assert_eq!(route.paths[0].hops[3].fee_msat, 100);
4384                 assert_eq!(route.paths[0].hops[3].cltv_expiry_delta, 42);
4385                 assert_eq!(route.paths[0].hops[3].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4386                 assert_eq!(route.paths[0].hops[3].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4387         }
4388
4389         fn last_hops_with_public_channel(nodes: &Vec<PublicKey>) -> Vec<RouteHint> {
4390                 let zero_fees = RoutingFees {
4391                         base_msat: 0,
4392                         proportional_millionths: 0,
4393                 };
4394                 vec![RouteHint(vec![RouteHintHop {
4395                         src_node_id: nodes[4],
4396                         short_channel_id: 11,
4397                         fees: zero_fees,
4398                         cltv_expiry_delta: (11 << 4) | 1,
4399                         htlc_minimum_msat: None,
4400                         htlc_maximum_msat: None,
4401                 }, RouteHintHop {
4402                         src_node_id: nodes[3],
4403                         short_channel_id: 8,
4404                         fees: zero_fees,
4405                         cltv_expiry_delta: (8 << 4) | 1,
4406                         htlc_minimum_msat: None,
4407                         htlc_maximum_msat: None,
4408                 }]), RouteHint(vec![RouteHintHop {
4409                         src_node_id: nodes[4],
4410                         short_channel_id: 9,
4411                         fees: RoutingFees {
4412                                 base_msat: 1001,
4413                                 proportional_millionths: 0,
4414                         },
4415                         cltv_expiry_delta: (9 << 4) | 1,
4416                         htlc_minimum_msat: None,
4417                         htlc_maximum_msat: None,
4418                 }]), RouteHint(vec![RouteHintHop {
4419                         src_node_id: nodes[5],
4420                         short_channel_id: 10,
4421                         fees: zero_fees,
4422                         cltv_expiry_delta: (10 << 4) | 1,
4423                         htlc_minimum_msat: None,
4424                         htlc_maximum_msat: None,
4425                 }])]
4426         }
4427
4428         #[test]
4429         fn last_hops_with_public_channel_test() {
4430                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
4431                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
4432                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops_with_public_channel(&nodes)).unwrap();
4433                 let scorer = ln_test_utils::TestScorer::new();
4434                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4435                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4436                 // This test shows that public routes can be present in the invoice
4437                 // which would be handled in the same manner.
4438
4439                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
4440                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4441                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4442                 assert_eq!(route.paths[0].hops.len(), 5);
4443
4444                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
4445                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
4446                 assert_eq!(route.paths[0].hops[0].fee_msat, 100);
4447                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (4 << 4) | 1);
4448                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(2));
4449                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(2));
4450
4451                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
4452                 assert_eq!(route.paths[0].hops[1].short_channel_id, 4);
4453                 assert_eq!(route.paths[0].hops[1].fee_msat, 0);
4454                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, (6 << 4) | 1);
4455                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
4456                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(4));
4457
4458                 assert_eq!(route.paths[0].hops[2].pubkey, nodes[4]);
4459                 assert_eq!(route.paths[0].hops[2].short_channel_id, 6);
4460                 assert_eq!(route.paths[0].hops[2].fee_msat, 0);
4461                 assert_eq!(route.paths[0].hops[2].cltv_expiry_delta, (11 << 4) | 1);
4462                 assert_eq!(route.paths[0].hops[2].node_features.le_flags(), &id_to_feature_flags(5));
4463                 assert_eq!(route.paths[0].hops[2].channel_features.le_flags(), &id_to_feature_flags(6));
4464
4465                 assert_eq!(route.paths[0].hops[3].pubkey, nodes[3]);
4466                 assert_eq!(route.paths[0].hops[3].short_channel_id, 11);
4467                 assert_eq!(route.paths[0].hops[3].fee_msat, 0);
4468                 assert_eq!(route.paths[0].hops[3].cltv_expiry_delta, (8 << 4) | 1);
4469                 // If we have a peer in the node map, we'll use their features here since we don't have
4470                 // a way of figuring out their features from the invoice:
4471                 assert_eq!(route.paths[0].hops[3].node_features.le_flags(), &id_to_feature_flags(4));
4472                 assert_eq!(route.paths[0].hops[3].channel_features.le_flags(), &id_to_feature_flags(11));
4473
4474                 assert_eq!(route.paths[0].hops[4].pubkey, nodes[6]);
4475                 assert_eq!(route.paths[0].hops[4].short_channel_id, 8);
4476                 assert_eq!(route.paths[0].hops[4].fee_msat, 100);
4477                 assert_eq!(route.paths[0].hops[4].cltv_expiry_delta, 42);
4478                 assert_eq!(route.paths[0].hops[4].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4479                 assert_eq!(route.paths[0].hops[4].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4480         }
4481
4482         #[test]
4483         fn our_chans_last_hop_connect_test() {
4484                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
4485                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
4486                 let scorer = ln_test_utils::TestScorer::new();
4487                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4488                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4489
4490                 // Simple test with outbound channel to 4 to test that last_hops and first_hops connect
4491                 let our_chans = vec![get_channel_details(Some(42), nodes[3].clone(), InitFeatures::from_le_bytes(vec![0b11]), 250_000_000)];
4492                 let mut last_hops = last_hops(&nodes);
4493                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42)
4494                         .with_route_hints(last_hops.clone()).unwrap();
4495                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
4496                 let route = get_route(&our_id, &route_params, &network_graph.read_only(),
4497                         Some(&our_chans.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
4498                         &Default::default(), &random_seed_bytes).unwrap();
4499                 assert_eq!(route.paths[0].hops.len(), 2);
4500
4501                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[3]);
4502                 assert_eq!(route.paths[0].hops[0].short_channel_id, 42);
4503                 assert_eq!(route.paths[0].hops[0].fee_msat, 0);
4504                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (8 << 4) | 1);
4505                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &vec![0b11]);
4506                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &Vec::<u8>::new()); // No feature flags will meet the relevant-to-channel conversion
4507
4508                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[6]);
4509                 assert_eq!(route.paths[0].hops[1].short_channel_id, 8);
4510                 assert_eq!(route.paths[0].hops[1].fee_msat, 100);
4511                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 42);
4512                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4513                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4514
4515                 last_hops[0].0[0].fees.base_msat = 1000;
4516
4517                 // Revert to via 6 as the fee on 8 goes up
4518                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42)
4519                         .with_route_hints(last_hops).unwrap();
4520                 let route_params = RouteParameters::from_payment_params_and_value(
4521                         payment_params.clone(), 100);
4522                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4523                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4524                 assert_eq!(route.paths[0].hops.len(), 4);
4525
4526                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
4527                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
4528                 assert_eq!(route.paths[0].hops[0].fee_msat, 200); // fee increased as its % of value transferred across node
4529                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (4 << 4) | 1);
4530                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(2));
4531                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(2));
4532
4533                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
4534                 assert_eq!(route.paths[0].hops[1].short_channel_id, 4);
4535                 assert_eq!(route.paths[0].hops[1].fee_msat, 100);
4536                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, (7 << 4) | 1);
4537                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
4538                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(4));
4539
4540                 assert_eq!(route.paths[0].hops[2].pubkey, nodes[5]);
4541                 assert_eq!(route.paths[0].hops[2].short_channel_id, 7);
4542                 assert_eq!(route.paths[0].hops[2].fee_msat, 0);
4543                 assert_eq!(route.paths[0].hops[2].cltv_expiry_delta, (10 << 4) | 1);
4544                 // If we have a peer in the node map, we'll use their features here since we don't have
4545                 // a way of figuring out their features from the invoice:
4546                 assert_eq!(route.paths[0].hops[2].node_features.le_flags(), &id_to_feature_flags(6));
4547                 assert_eq!(route.paths[0].hops[2].channel_features.le_flags(), &id_to_feature_flags(7));
4548
4549                 assert_eq!(route.paths[0].hops[3].pubkey, nodes[6]);
4550                 assert_eq!(route.paths[0].hops[3].short_channel_id, 10);
4551                 assert_eq!(route.paths[0].hops[3].fee_msat, 100);
4552                 assert_eq!(route.paths[0].hops[3].cltv_expiry_delta, 42);
4553                 assert_eq!(route.paths[0].hops[3].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4554                 assert_eq!(route.paths[0].hops[3].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4555
4556                 // ...but still use 8 for larger payments as 6 has a variable feerate
4557                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 2000);
4558                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4559                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4560                 assert_eq!(route.paths[0].hops.len(), 5);
4561
4562                 assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
4563                 assert_eq!(route.paths[0].hops[0].short_channel_id, 2);
4564                 assert_eq!(route.paths[0].hops[0].fee_msat, 3000);
4565                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (4 << 4) | 1);
4566                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(2));
4567                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(2));
4568
4569                 assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
4570                 assert_eq!(route.paths[0].hops[1].short_channel_id, 4);
4571                 assert_eq!(route.paths[0].hops[1].fee_msat, 0);
4572                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, (6 << 4) | 1);
4573                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
4574                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(4));
4575
4576                 assert_eq!(route.paths[0].hops[2].pubkey, nodes[4]);
4577                 assert_eq!(route.paths[0].hops[2].short_channel_id, 6);
4578                 assert_eq!(route.paths[0].hops[2].fee_msat, 0);
4579                 assert_eq!(route.paths[0].hops[2].cltv_expiry_delta, (11 << 4) | 1);
4580                 assert_eq!(route.paths[0].hops[2].node_features.le_flags(), &id_to_feature_flags(5));
4581                 assert_eq!(route.paths[0].hops[2].channel_features.le_flags(), &id_to_feature_flags(6));
4582
4583                 assert_eq!(route.paths[0].hops[3].pubkey, nodes[3]);
4584                 assert_eq!(route.paths[0].hops[3].short_channel_id, 11);
4585                 assert_eq!(route.paths[0].hops[3].fee_msat, 1000);
4586                 assert_eq!(route.paths[0].hops[3].cltv_expiry_delta, (8 << 4) | 1);
4587                 // If we have a peer in the node map, we'll use their features here since we don't have
4588                 // a way of figuring out their features from the invoice:
4589                 assert_eq!(route.paths[0].hops[3].node_features.le_flags(), &id_to_feature_flags(4));
4590                 assert_eq!(route.paths[0].hops[3].channel_features.le_flags(), &id_to_feature_flags(11));
4591
4592                 assert_eq!(route.paths[0].hops[4].pubkey, nodes[6]);
4593                 assert_eq!(route.paths[0].hops[4].short_channel_id, 8);
4594                 assert_eq!(route.paths[0].hops[4].fee_msat, 2000);
4595                 assert_eq!(route.paths[0].hops[4].cltv_expiry_delta, 42);
4596                 assert_eq!(route.paths[0].hops[4].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4597                 assert_eq!(route.paths[0].hops[4].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
4598         }
4599
4600         fn do_unannounced_path_test(last_hop_htlc_max: Option<u64>, last_hop_fee_prop: u32, outbound_capacity_msat: u64, route_val: u64) -> Result<Route, LightningError> {
4601                 let source_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&<Vec<u8>>::from_hex(&format!("{:02}", 41).repeat(32)).unwrap()[..]).unwrap());
4602                 let middle_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&<Vec<u8>>::from_hex(&format!("{:02}", 42).repeat(32)).unwrap()[..]).unwrap());
4603                 let target_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&<Vec<u8>>::from_hex(&format!("{:02}", 43).repeat(32)).unwrap()[..]).unwrap());
4604
4605                 // If we specify a channel to a middle hop, that overrides our local channel view and that gets used
4606                 let last_hops = RouteHint(vec![RouteHintHop {
4607                         src_node_id: middle_node_id,
4608                         short_channel_id: 8,
4609                         fees: RoutingFees {
4610                                 base_msat: 1000,
4611                                 proportional_millionths: last_hop_fee_prop,
4612                         },
4613                         cltv_expiry_delta: (8 << 4) | 1,
4614                         htlc_minimum_msat: None,
4615                         htlc_maximum_msat: last_hop_htlc_max,
4616                 }]);
4617                 let payment_params = PaymentParameters::from_node_id(target_node_id, 42).with_route_hints(vec![last_hops]).unwrap();
4618                 let our_chans = vec![get_channel_details(Some(42), middle_node_id, InitFeatures::from_le_bytes(vec![0b11]), outbound_capacity_msat)];
4619                 let scorer = ln_test_utils::TestScorer::new();
4620                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4621                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4622                 let logger = ln_test_utils::TestLogger::new();
4623                 let network_graph = NetworkGraph::new(Network::Testnet, &logger);
4624                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, route_val);
4625                 let route = get_route(&source_node_id, &route_params, &network_graph.read_only(),
4626                                 Some(&our_chans.iter().collect::<Vec<_>>()), &logger, &scorer, &Default::default(),
4627                                 &random_seed_bytes);
4628                 route
4629         }
4630
4631         #[test]
4632         fn unannounced_path_test() {
4633                 // We should be able to send a payment to a destination without any help of a routing graph
4634                 // if we have a channel with a common counterparty that appears in the first and last hop
4635                 // hints.
4636                 let route = do_unannounced_path_test(None, 1, 2000000, 1000000).unwrap();
4637
4638                 let middle_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&<Vec<u8>>::from_hex(&format!("{:02}", 42).repeat(32)).unwrap()[..]).unwrap());
4639                 let target_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&<Vec<u8>>::from_hex(&format!("{:02}", 43).repeat(32)).unwrap()[..]).unwrap());
4640                 assert_eq!(route.paths[0].hops.len(), 2);
4641
4642                 assert_eq!(route.paths[0].hops[0].pubkey, middle_node_id);
4643                 assert_eq!(route.paths[0].hops[0].short_channel_id, 42);
4644                 assert_eq!(route.paths[0].hops[0].fee_msat, 1001);
4645                 assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (8 << 4) | 1);
4646                 assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &[0b11]);
4647                 assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &[0; 0]); // We can't learn any flags from invoices, sadly
4648
4649                 assert_eq!(route.paths[0].hops[1].pubkey, target_node_id);
4650                 assert_eq!(route.paths[0].hops[1].short_channel_id, 8);
4651                 assert_eq!(route.paths[0].hops[1].fee_msat, 1000000);
4652                 assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 42);
4653                 assert_eq!(route.paths[0].hops[1].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
4654                 assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &[0; 0]); // We can't learn any flags from invoices, sadly
4655         }
4656
4657         #[test]
4658         fn overflow_unannounced_path_test_liquidity_underflow() {
4659                 // Previously, when we had a last-hop hint connected directly to a first-hop channel, where
4660                 // the last-hop had a fee which overflowed a u64, we'd panic.
4661                 // This was due to us adding the first-hop from us unconditionally, causing us to think
4662                 // we'd built a path (as our node is in the "best candidate" set), when we had not.
4663                 // In this test, we previously hit a subtraction underflow due to having less available
4664                 // liquidity at the last hop than 0.
4665                 assert!(do_unannounced_path_test(Some(21_000_000_0000_0000_000), 0, 21_000_000_0000_0000_000, 21_000_000_0000_0000_000).is_err());
4666         }
4667
4668         #[test]
4669         fn overflow_unannounced_path_test_feerate_overflow() {
4670                 // This tests for the same case as above, except instead of hitting a subtraction
4671                 // underflow, we hit a case where the fee charged at a hop overflowed.
4672                 assert!(do_unannounced_path_test(Some(21_000_000_0000_0000_000), 50000, 21_000_000_0000_0000_000, 21_000_000_0000_0000_000).is_err());
4673         }
4674
4675         #[test]
4676         fn available_amount_while_routing_test() {
4677                 // Tests whether we choose the correct available channel amount while routing.
4678
4679                 let (secp_ctx, network_graph, gossip_sync, chain_monitor, logger) = build_graph();
4680                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4681                 let scorer = ln_test_utils::TestScorer::new();
4682                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4683                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4684                 let config = UserConfig::default();
4685                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42)
4686                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
4687                         .unwrap();
4688
4689                 // We will use a simple single-path route from
4690                 // our node to node2 via node0: channels {1, 3}.
4691
4692                 // First disable all other paths.
4693                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4694                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4695                         short_channel_id: 2,
4696                         timestamp: 2,
4697                         flags: 2,
4698                         cltv_expiry_delta: 0,
4699                         htlc_minimum_msat: 0,
4700                         htlc_maximum_msat: 100_000,
4701                         fee_base_msat: 0,
4702                         fee_proportional_millionths: 0,
4703                         excess_data: Vec::new()
4704                 });
4705                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4706                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4707                         short_channel_id: 12,
4708                         timestamp: 2,
4709                         flags: 2,
4710                         cltv_expiry_delta: 0,
4711                         htlc_minimum_msat: 0,
4712                         htlc_maximum_msat: 100_000,
4713                         fee_base_msat: 0,
4714                         fee_proportional_millionths: 0,
4715                         excess_data: Vec::new()
4716                 });
4717
4718                 // Make the first channel (#1) very permissive,
4719                 // and we will be testing all limits on the second channel.
4720                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4721                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4722                         short_channel_id: 1,
4723                         timestamp: 2,
4724                         flags: 0,
4725                         cltv_expiry_delta: 0,
4726                         htlc_minimum_msat: 0,
4727                         htlc_maximum_msat: 1_000_000_000,
4728                         fee_base_msat: 0,
4729                         fee_proportional_millionths: 0,
4730                         excess_data: Vec::new()
4731                 });
4732
4733                 // First, let's see if routing works if we have absolutely no idea about the available amount.
4734                 // In this case, it should be set to 250_000 sats.
4735                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
4736                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4737                         short_channel_id: 3,
4738                         timestamp: 2,
4739                         flags: 0,
4740                         cltv_expiry_delta: 0,
4741                         htlc_minimum_msat: 0,
4742                         htlc_maximum_msat: 250_000_000,
4743                         fee_base_msat: 0,
4744                         fee_proportional_millionths: 0,
4745                         excess_data: Vec::new()
4746                 });
4747
4748                 {
4749                         // Attempt to route more than available results in a failure.
4750                         let route_params = RouteParameters::from_payment_params_and_value(
4751                                 payment_params.clone(), 250_000_001);
4752                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
4753                                         &our_id, &route_params, &network_graph.read_only(), None,
4754                                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes) {
4755                                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
4756                         } else { panic!(); }
4757                 }
4758
4759                 {
4760                         // Now, attempt to route an exact amount we have should be fine.
4761                         let route_params = RouteParameters::from_payment_params_and_value(
4762                                 payment_params.clone(), 250_000_000);
4763                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4764                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4765                         assert_eq!(route.paths.len(), 1);
4766                         let path = route.paths.last().unwrap();
4767                         assert_eq!(path.hops.len(), 2);
4768                         assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
4769                         assert_eq!(path.final_value_msat(), 250_000_000);
4770                 }
4771
4772                 // Check that setting next_outbound_htlc_limit_msat in first_hops limits the channels.
4773                 // Disable channel #1 and use another first hop.
4774                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4775                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4776                         short_channel_id: 1,
4777                         timestamp: 3,
4778                         flags: 2,
4779                         cltv_expiry_delta: 0,
4780                         htlc_minimum_msat: 0,
4781                         htlc_maximum_msat: 1_000_000_000,
4782                         fee_base_msat: 0,
4783                         fee_proportional_millionths: 0,
4784                         excess_data: Vec::new()
4785                 });
4786
4787                 // Now, limit the first_hop by the next_outbound_htlc_limit_msat of 200_000 sats.
4788                 let our_chans = vec![get_channel_details(Some(42), nodes[0].clone(), InitFeatures::from_le_bytes(vec![0b11]), 200_000_000)];
4789
4790                 {
4791                         // Attempt to route more than available results in a failure.
4792                         let route_params = RouteParameters::from_payment_params_and_value(
4793                                 payment_params.clone(), 200_000_001);
4794                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
4795                                         &our_id, &route_params, &network_graph.read_only(),
4796                                         Some(&our_chans.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
4797                                         &Default::default(), &random_seed_bytes) {
4798                                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
4799                         } else { panic!(); }
4800                 }
4801
4802                 {
4803                         // Now, attempt to route an exact amount we have should be fine.
4804                         let route_params = RouteParameters::from_payment_params_and_value(
4805                                 payment_params.clone(), 200_000_000);
4806                         let route = get_route(&our_id, &route_params, &network_graph.read_only(),
4807                                 Some(&our_chans.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
4808                                 &Default::default(), &random_seed_bytes).unwrap();
4809                         assert_eq!(route.paths.len(), 1);
4810                         let path = route.paths.last().unwrap();
4811                         assert_eq!(path.hops.len(), 2);
4812                         assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
4813                         assert_eq!(path.final_value_msat(), 200_000_000);
4814                 }
4815
4816                 // Enable channel #1 back.
4817                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4818                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4819                         short_channel_id: 1,
4820                         timestamp: 4,
4821                         flags: 0,
4822                         cltv_expiry_delta: 0,
4823                         htlc_minimum_msat: 0,
4824                         htlc_maximum_msat: 1_000_000_000,
4825                         fee_base_msat: 0,
4826                         fee_proportional_millionths: 0,
4827                         excess_data: Vec::new()
4828                 });
4829
4830
4831                 // Now let's see if routing works if we know only htlc_maximum_msat.
4832                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
4833                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4834                         short_channel_id: 3,
4835                         timestamp: 3,
4836                         flags: 0,
4837                         cltv_expiry_delta: 0,
4838                         htlc_minimum_msat: 0,
4839                         htlc_maximum_msat: 15_000,
4840                         fee_base_msat: 0,
4841                         fee_proportional_millionths: 0,
4842                         excess_data: Vec::new()
4843                 });
4844
4845                 {
4846                         // Attempt to route more than available results in a failure.
4847                         let route_params = RouteParameters::from_payment_params_and_value(
4848                                 payment_params.clone(), 15_001);
4849                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
4850                                         &our_id, &route_params, &network_graph.read_only(), None, Arc::clone(&logger),
4851                                         &scorer, &Default::default(), &random_seed_bytes) {
4852                                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
4853                         } else { panic!(); }
4854                 }
4855
4856                 {
4857                         // Now, attempt to route an exact amount we have should be fine.
4858                         let route_params = RouteParameters::from_payment_params_and_value(
4859                                 payment_params.clone(), 15_000);
4860                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4861                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4862                         assert_eq!(route.paths.len(), 1);
4863                         let path = route.paths.last().unwrap();
4864                         assert_eq!(path.hops.len(), 2);
4865                         assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
4866                         assert_eq!(path.final_value_msat(), 15_000);
4867                 }
4868
4869                 // Now let's see if routing works if we know only capacity from the UTXO.
4870
4871                 // We can't change UTXO capacity on the fly, so we'll disable
4872                 // the existing channel and add another one with the capacity we need.
4873                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
4874                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4875                         short_channel_id: 3,
4876                         timestamp: 4,
4877                         flags: 2,
4878                         cltv_expiry_delta: 0,
4879                         htlc_minimum_msat: 0,
4880                         htlc_maximum_msat: MAX_VALUE_MSAT,
4881                         fee_base_msat: 0,
4882                         fee_proportional_millionths: 0,
4883                         excess_data: Vec::new()
4884                 });
4885
4886                 let good_script = Builder::new().push_opcode(opcodes::all::OP_PUSHNUM_2)
4887                 .push_slice(&PublicKey::from_secret_key(&secp_ctx, &privkeys[0]).serialize())
4888                 .push_slice(&PublicKey::from_secret_key(&secp_ctx, &privkeys[2]).serialize())
4889                 .push_opcode(opcodes::all::OP_PUSHNUM_2)
4890                 .push_opcode(opcodes::all::OP_CHECKMULTISIG).into_script().to_v0_p2wsh();
4891
4892                 *chain_monitor.utxo_ret.lock().unwrap() =
4893                         UtxoResult::Sync(Ok(TxOut { value: 15, script_pubkey: good_script.clone() }));
4894                 gossip_sync.add_utxo_lookup(Some(chain_monitor));
4895
4896                 add_channel(&gossip_sync, &secp_ctx, &privkeys[0], &privkeys[2], ChannelFeatures::from_le_bytes(id_to_feature_flags(3)), 333);
4897                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
4898                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4899                         short_channel_id: 333,
4900                         timestamp: 1,
4901                         flags: 0,
4902                         cltv_expiry_delta: (3 << 4) | 1,
4903                         htlc_minimum_msat: 0,
4904                         htlc_maximum_msat: 15_000,
4905                         fee_base_msat: 0,
4906                         fee_proportional_millionths: 0,
4907                         excess_data: Vec::new()
4908                 });
4909                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4910                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4911                         short_channel_id: 333,
4912                         timestamp: 1,
4913                         flags: 1,
4914                         cltv_expiry_delta: (3 << 4) | 2,
4915                         htlc_minimum_msat: 0,
4916                         htlc_maximum_msat: 15_000,
4917                         fee_base_msat: 100,
4918                         fee_proportional_millionths: 0,
4919                         excess_data: Vec::new()
4920                 });
4921
4922                 {
4923                         // Attempt to route more than available results in a failure.
4924                         let route_params = RouteParameters::from_payment_params_and_value(
4925                                 payment_params.clone(), 15_001);
4926                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
4927                                         &our_id, &route_params, &network_graph.read_only(), None, Arc::clone(&logger),
4928                                         &scorer, &Default::default(), &random_seed_bytes) {
4929                                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
4930                         } else { panic!(); }
4931                 }
4932
4933                 {
4934                         // Now, attempt to route an exact amount we have should be fine.
4935                         let route_params = RouteParameters::from_payment_params_and_value(
4936                                 payment_params.clone(), 15_000);
4937                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4938                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4939                         assert_eq!(route.paths.len(), 1);
4940                         let path = route.paths.last().unwrap();
4941                         assert_eq!(path.hops.len(), 2);
4942                         assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
4943                         assert_eq!(path.final_value_msat(), 15_000);
4944                 }
4945
4946                 // Now let's see if routing chooses htlc_maximum_msat over UTXO capacity.
4947                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
4948                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
4949                         short_channel_id: 333,
4950                         timestamp: 6,
4951                         flags: 0,
4952                         cltv_expiry_delta: 0,
4953                         htlc_minimum_msat: 0,
4954                         htlc_maximum_msat: 10_000,
4955                         fee_base_msat: 0,
4956                         fee_proportional_millionths: 0,
4957                         excess_data: Vec::new()
4958                 });
4959
4960                 {
4961                         // Attempt to route more than available results in a failure.
4962                         let route_params = RouteParameters::from_payment_params_and_value(
4963                                 payment_params.clone(), 10_001);
4964                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
4965                                         &our_id, &route_params, &network_graph.read_only(), None, Arc::clone(&logger),
4966                                         &scorer, &Default::default(), &random_seed_bytes) {
4967                                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
4968                         } else { panic!(); }
4969                 }
4970
4971                 {
4972                         // Now, attempt to route an exact amount we have should be fine.
4973                         let route_params = RouteParameters::from_payment_params_and_value(
4974                                 payment_params.clone(), 10_000);
4975                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
4976                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
4977                         assert_eq!(route.paths.len(), 1);
4978                         let path = route.paths.last().unwrap();
4979                         assert_eq!(path.hops.len(), 2);
4980                         assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
4981                         assert_eq!(path.final_value_msat(), 10_000);
4982                 }
4983         }
4984
4985         #[test]
4986         fn available_liquidity_last_hop_test() {
4987                 // Check that available liquidity properly limits the path even when only
4988                 // one of the latter hops is limited.
4989                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
4990                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4991                 let scorer = ln_test_utils::TestScorer::new();
4992                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4993                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4994                 let config = UserConfig::default();
4995                 let payment_params = PaymentParameters::from_node_id(nodes[3], 42)
4996                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
4997                         .unwrap();
4998
4999                 // Path via {node7, node2, node4} is channels {12, 13, 6, 11}.
5000                 // {12, 13, 11} have the capacities of 100, {6} has a capacity of 50.
5001                 // Total capacity: 50 sats.
5002
5003                 // Disable other potential paths.
5004                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5005                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5006                         short_channel_id: 2,
5007                         timestamp: 2,
5008                         flags: 2,
5009                         cltv_expiry_delta: 0,
5010                         htlc_minimum_msat: 0,
5011                         htlc_maximum_msat: 100_000,
5012                         fee_base_msat: 0,
5013                         fee_proportional_millionths: 0,
5014                         excess_data: Vec::new()
5015                 });
5016                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5017                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5018                         short_channel_id: 7,
5019                         timestamp: 2,
5020                         flags: 2,
5021                         cltv_expiry_delta: 0,
5022                         htlc_minimum_msat: 0,
5023                         htlc_maximum_msat: 100_000,
5024                         fee_base_msat: 0,
5025                         fee_proportional_millionths: 0,
5026                         excess_data: Vec::new()
5027                 });
5028
5029                 // Limit capacities
5030
5031                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5032                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5033                         short_channel_id: 12,
5034                         timestamp: 2,
5035                         flags: 0,
5036                         cltv_expiry_delta: 0,
5037                         htlc_minimum_msat: 0,
5038                         htlc_maximum_msat: 100_000,
5039                         fee_base_msat: 0,
5040                         fee_proportional_millionths: 0,
5041                         excess_data: Vec::new()
5042                 });
5043                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
5044                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5045                         short_channel_id: 13,
5046                         timestamp: 2,
5047                         flags: 0,
5048                         cltv_expiry_delta: 0,
5049                         htlc_minimum_msat: 0,
5050                         htlc_maximum_msat: 100_000,
5051                         fee_base_msat: 0,
5052                         fee_proportional_millionths: 0,
5053                         excess_data: Vec::new()
5054                 });
5055
5056                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5057                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5058                         short_channel_id: 6,
5059                         timestamp: 2,
5060                         flags: 0,
5061                         cltv_expiry_delta: 0,
5062                         htlc_minimum_msat: 0,
5063                         htlc_maximum_msat: 50_000,
5064                         fee_base_msat: 0,
5065                         fee_proportional_millionths: 0,
5066                         excess_data: Vec::new()
5067                 });
5068                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
5069                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5070                         short_channel_id: 11,
5071                         timestamp: 2,
5072                         flags: 0,
5073                         cltv_expiry_delta: 0,
5074                         htlc_minimum_msat: 0,
5075                         htlc_maximum_msat: 100_000,
5076                         fee_base_msat: 0,
5077                         fee_proportional_millionths: 0,
5078                         excess_data: Vec::new()
5079                 });
5080                 {
5081                         // Attempt to route more than available results in a failure.
5082                         let route_params = RouteParameters::from_payment_params_and_value(
5083                                 payment_params.clone(), 60_000);
5084                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
5085                                         &our_id, &route_params, &network_graph.read_only(), None, Arc::clone(&logger),
5086                                         &scorer, &Default::default(), &random_seed_bytes) {
5087                                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
5088                         } else { panic!(); }
5089                 }
5090
5091                 {
5092                         // Now, attempt to route 49 sats (just a bit below the capacity).
5093                         let route_params = RouteParameters::from_payment_params_and_value(
5094                                 payment_params.clone(), 49_000);
5095                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
5096                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
5097                         assert_eq!(route.paths.len(), 1);
5098                         let mut total_amount_paid_msat = 0;
5099                         for path in &route.paths {
5100                                 assert_eq!(path.hops.len(), 4);
5101                                 assert_eq!(path.hops.last().unwrap().pubkey, nodes[3]);
5102                                 total_amount_paid_msat += path.final_value_msat();
5103                         }
5104                         assert_eq!(total_amount_paid_msat, 49_000);
5105                 }
5106
5107                 {
5108                         // Attempt to route an exact amount is also fine
5109                         let route_params = RouteParameters::from_payment_params_and_value(
5110                                 payment_params, 50_000);
5111                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
5112                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
5113                         assert_eq!(route.paths.len(), 1);
5114                         let mut total_amount_paid_msat = 0;
5115                         for path in &route.paths {
5116                                 assert_eq!(path.hops.len(), 4);
5117                                 assert_eq!(path.hops.last().unwrap().pubkey, nodes[3]);
5118                                 total_amount_paid_msat += path.final_value_msat();
5119                         }
5120                         assert_eq!(total_amount_paid_msat, 50_000);
5121                 }
5122         }
5123
5124         #[test]
5125         fn ignore_fee_first_hop_test() {
5126                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
5127                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
5128                 let scorer = ln_test_utils::TestScorer::new();
5129                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5130                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5131                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
5132
5133                 // Path via node0 is channels {1, 3}. Limit them to 100 and 50 sats (total limit 50).
5134                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5135                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5136                         short_channel_id: 1,
5137                         timestamp: 2,
5138                         flags: 0,
5139                         cltv_expiry_delta: 0,
5140                         htlc_minimum_msat: 0,
5141                         htlc_maximum_msat: 100_000,
5142                         fee_base_msat: 1_000_000,
5143                         fee_proportional_millionths: 0,
5144                         excess_data: Vec::new()
5145                 });
5146                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
5147                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5148                         short_channel_id: 3,
5149                         timestamp: 2,
5150                         flags: 0,
5151                         cltv_expiry_delta: 0,
5152                         htlc_minimum_msat: 0,
5153                         htlc_maximum_msat: 50_000,
5154                         fee_base_msat: 0,
5155                         fee_proportional_millionths: 0,
5156                         excess_data: Vec::new()
5157                 });
5158
5159                 {
5160                         let route_params = RouteParameters::from_payment_params_and_value(
5161                                 payment_params, 50_000);
5162                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
5163                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
5164                         assert_eq!(route.paths.len(), 1);
5165                         let mut total_amount_paid_msat = 0;
5166                         for path in &route.paths {
5167                                 assert_eq!(path.hops.len(), 2);
5168                                 assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
5169                                 total_amount_paid_msat += path.final_value_msat();
5170                         }
5171                         assert_eq!(total_amount_paid_msat, 50_000);
5172                 }
5173         }
5174
5175         #[test]
5176         fn simple_mpp_route_test() {
5177                 let (secp_ctx, _, _, _, _) = build_graph();
5178                 let (_, _, _, nodes) = get_nodes(&secp_ctx);
5179                 let config = UserConfig::default();
5180                 let clear_payment_params = PaymentParameters::from_node_id(nodes[2], 42)
5181                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
5182                         .unwrap();
5183                 do_simple_mpp_route_test(clear_payment_params);
5184
5185                 // MPP to a 1-hop blinded path for nodes[2]
5186                 let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
5187                 let blinded_path = BlindedPath {
5188                         introduction_node: IntroductionNode::NodeId(nodes[2]),
5189                         blinding_point: ln_test_utils::pubkey(42),
5190                         blinded_hops: vec![BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }],
5191                 };
5192                 let blinded_payinfo = BlindedPayInfo { // These fields are ignored for 1-hop blinded paths
5193                         fee_base_msat: 0,
5194                         fee_proportional_millionths: 0,
5195                         htlc_minimum_msat: 0,
5196                         htlc_maximum_msat: 0,
5197                         cltv_expiry_delta: 0,
5198                         features: BlindedHopFeatures::empty(),
5199                 };
5200                 let one_hop_blinded_payment_params = PaymentParameters::blinded(vec![(blinded_payinfo.clone(), blinded_path.clone())])
5201                         .with_bolt12_features(bolt12_features.clone()).unwrap();
5202                 do_simple_mpp_route_test(one_hop_blinded_payment_params.clone());
5203
5204                 // MPP to 3 2-hop blinded paths
5205                 let mut blinded_path_node_0 = blinded_path.clone();
5206                 blinded_path_node_0.introduction_node = IntroductionNode::NodeId(nodes[0]);
5207                 blinded_path_node_0.blinded_hops.push(blinded_path.blinded_hops[0].clone());
5208                 let mut node_0_payinfo = blinded_payinfo.clone();
5209                 node_0_payinfo.htlc_maximum_msat = 50_000;
5210
5211                 let mut blinded_path_node_7 = blinded_path_node_0.clone();
5212                 blinded_path_node_7.introduction_node = IntroductionNode::NodeId(nodes[7]);
5213                 let mut node_7_payinfo = blinded_payinfo.clone();
5214                 node_7_payinfo.htlc_maximum_msat = 60_000;
5215
5216                 let mut blinded_path_node_1 = blinded_path_node_0.clone();
5217                 blinded_path_node_1.introduction_node = IntroductionNode::NodeId(nodes[1]);
5218                 let mut node_1_payinfo = blinded_payinfo.clone();
5219                 node_1_payinfo.htlc_maximum_msat = 180_000;
5220
5221                 let two_hop_blinded_payment_params = PaymentParameters::blinded(
5222                         vec![
5223                                 (node_0_payinfo, blinded_path_node_0),
5224                                 (node_7_payinfo, blinded_path_node_7),
5225                                 (node_1_payinfo, blinded_path_node_1)
5226                         ])
5227                         .with_bolt12_features(bolt12_features).unwrap();
5228                 do_simple_mpp_route_test(two_hop_blinded_payment_params);
5229         }
5230
5231
5232         fn do_simple_mpp_route_test(payment_params: PaymentParameters) {
5233                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
5234                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
5235                 let scorer = ln_test_utils::TestScorer::new();
5236                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5237                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5238
5239                 // We need a route consisting of 3 paths:
5240                 // From our node to node2 via node0, node7, node1 (three paths one hop each).
5241                 // To achieve this, the amount being transferred should be around
5242                 // the total capacity of these 3 paths.
5243
5244                 // First, we set limits on these (previously unlimited) channels.
5245                 // Their aggregate capacity will be 50 + 60 + 180 = 290 sats.
5246
5247                 // Path via node0 is channels {1, 3}. Limit them to 100 and 50 sats (total limit 50).
5248                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5249                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5250                         short_channel_id: 1,
5251                         timestamp: 2,
5252                         flags: 0,
5253                         cltv_expiry_delta: 0,
5254                         htlc_minimum_msat: 0,
5255                         htlc_maximum_msat: 100_000,
5256                         fee_base_msat: 0,
5257                         fee_proportional_millionths: 0,
5258                         excess_data: Vec::new()
5259                 });
5260                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
5261                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5262                         short_channel_id: 3,
5263                         timestamp: 2,
5264                         flags: 0,
5265                         cltv_expiry_delta: 0,
5266                         htlc_minimum_msat: 0,
5267                         htlc_maximum_msat: 50_000,
5268                         fee_base_msat: 0,
5269                         fee_proportional_millionths: 0,
5270                         excess_data: Vec::new()
5271                 });
5272
5273                 // Path via node7 is channels {12, 13}. Limit them to 60 and 60 sats
5274                 // (total limit 60).
5275                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5276                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5277                         short_channel_id: 12,
5278                         timestamp: 2,
5279                         flags: 0,
5280                         cltv_expiry_delta: 0,
5281                         htlc_minimum_msat: 0,
5282                         htlc_maximum_msat: 60_000,
5283                         fee_base_msat: 0,
5284                         fee_proportional_millionths: 0,
5285                         excess_data: Vec::new()
5286                 });
5287                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
5288                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5289                         short_channel_id: 13,
5290                         timestamp: 2,
5291                         flags: 0,
5292                         cltv_expiry_delta: 0,
5293                         htlc_minimum_msat: 0,
5294                         htlc_maximum_msat: 60_000,
5295                         fee_base_msat: 0,
5296                         fee_proportional_millionths: 0,
5297                         excess_data: Vec::new()
5298                 });
5299
5300                 // Path via node1 is channels {2, 4}. Limit them to 200 and 180 sats
5301                 // (total capacity 180 sats).
5302                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5303                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5304                         short_channel_id: 2,
5305                         timestamp: 2,
5306                         flags: 0,
5307                         cltv_expiry_delta: 0,
5308                         htlc_minimum_msat: 0,
5309                         htlc_maximum_msat: 200_000,
5310                         fee_base_msat: 0,
5311                         fee_proportional_millionths: 0,
5312                         excess_data: Vec::new()
5313                 });
5314                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
5315                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5316                         short_channel_id: 4,
5317                         timestamp: 2,
5318                         flags: 0,
5319                         cltv_expiry_delta: 0,
5320                         htlc_minimum_msat: 0,
5321                         htlc_maximum_msat: 180_000,
5322                         fee_base_msat: 0,
5323                         fee_proportional_millionths: 0,
5324                         excess_data: Vec::new()
5325                 });
5326
5327                 {
5328                         // Attempt to route more than available results in a failure.
5329                         let route_params = RouteParameters::from_payment_params_and_value(
5330                                 payment_params.clone(), 300_000);
5331                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
5332                                 &our_id, &route_params, &network_graph.read_only(), None,
5333                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes) {
5334                                         assert_eq!(err, "Failed to find a sufficient route to the given destination");
5335                         } else { panic!(); }
5336                 }
5337
5338                 {
5339                         // Attempt to route while setting max_path_count to 0 results in a failure.
5340                         let zero_payment_params = payment_params.clone().with_max_path_count(0);
5341                         let route_params = RouteParameters::from_payment_params_and_value(
5342                                 zero_payment_params, 100);
5343                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
5344                                 &our_id, &route_params, &network_graph.read_only(), None,
5345                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes) {
5346                                         assert_eq!(err, "Can't find a route with no paths allowed.");
5347                         } else { panic!(); }
5348                 }
5349
5350                 {
5351                         // Attempt to route while setting max_path_count to 3 results in a failure.
5352                         // This is the case because the minimal_value_contribution_msat would require each path
5353                         // to account for 1/3 of the total value, which is violated by 2 out of 3 paths.
5354                         let fail_payment_params = payment_params.clone().with_max_path_count(3);
5355                         let route_params = RouteParameters::from_payment_params_and_value(
5356                                 fail_payment_params, 250_000);
5357                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
5358                                 &our_id, &route_params, &network_graph.read_only(), None,
5359                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes) {
5360                                         assert_eq!(err, "Failed to find a sufficient route to the given destination");
5361                         } else { panic!(); }
5362                 }
5363
5364                 {
5365                         // Now, attempt to route 250 sats (just a bit below the capacity).
5366                         // Our algorithm should provide us with these 3 paths.
5367                         let route_params = RouteParameters::from_payment_params_and_value(
5368                                 payment_params.clone(), 250_000);
5369                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
5370                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
5371                         assert_eq!(route.paths.len(), 3);
5372                         let mut total_amount_paid_msat = 0;
5373                         for path in &route.paths {
5374                                 if let Some(bt) = &path.blinded_tail {
5375                                         assert_eq!(path.hops.len() + if bt.hops.len() == 1 { 0 } else { 1 }, 2);
5376                                 } else {
5377                                         assert_eq!(path.hops.len(), 2);
5378                                         assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
5379                                 }
5380                                 total_amount_paid_msat += path.final_value_msat();
5381                         }
5382                         assert_eq!(total_amount_paid_msat, 250_000);
5383                 }
5384
5385                 {
5386                         // Attempt to route an exact amount is also fine
5387                         let route_params = RouteParameters::from_payment_params_and_value(
5388                                 payment_params.clone(), 290_000);
5389                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
5390                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
5391                         assert_eq!(route.paths.len(), 3);
5392                         let mut total_amount_paid_msat = 0;
5393                         for path in &route.paths {
5394                                 if payment_params.payee.blinded_route_hints().len() != 0 {
5395                                         assert!(path.blinded_tail.is_some()) } else { assert!(path.blinded_tail.is_none()) }
5396                                 if let Some(bt) = &path.blinded_tail {
5397                                         assert_eq!(path.hops.len() + if bt.hops.len() == 1 { 0 } else { 1 }, 2);
5398                                         if bt.hops.len() > 1 {
5399                                                 let network_graph = network_graph.read_only();
5400                                                 assert_eq!(
5401                                                         NodeId::from_pubkey(&path.hops.last().unwrap().pubkey),
5402                                                         payment_params.payee.blinded_route_hints().iter()
5403                                                                 .find(|(p, _)| p.htlc_maximum_msat == path.final_value_msat())
5404                                                                 .and_then(|(_, p)| p.public_introduction_node_id(&network_graph))
5405                                                                 .copied()
5406                                                                 .unwrap()
5407                                                 );
5408                                         } else {
5409                                                 assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
5410                                         }
5411                                 } else {
5412                                         assert_eq!(path.hops.len(), 2);
5413                                         assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
5414                                 }
5415                                 total_amount_paid_msat += path.final_value_msat();
5416                         }
5417                         assert_eq!(total_amount_paid_msat, 290_000);
5418                 }
5419         }
5420
5421         #[test]
5422         fn long_mpp_route_test() {
5423                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
5424                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
5425                 let scorer = ln_test_utils::TestScorer::new();
5426                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5427                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5428                 let config = UserConfig::default();
5429                 let payment_params = PaymentParameters::from_node_id(nodes[3], 42)
5430                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
5431                         .unwrap();
5432
5433                 // We need a route consisting of 3 paths:
5434                 // From our node to node3 via {node0, node2}, {node7, node2, node4} and {node7, node2}.
5435                 // Note that these paths overlap (channels 5, 12, 13).
5436                 // We will route 300 sats.
5437                 // Each path will have 100 sats capacity, those channels which
5438                 // are used twice will have 200 sats capacity.
5439
5440                 // Disable other potential paths.
5441                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5442                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5443                         short_channel_id: 2,
5444                         timestamp: 2,
5445                         flags: 2,
5446                         cltv_expiry_delta: 0,
5447                         htlc_minimum_msat: 0,
5448                         htlc_maximum_msat: 100_000,
5449                         fee_base_msat: 0,
5450                         fee_proportional_millionths: 0,
5451                         excess_data: Vec::new()
5452                 });
5453                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5454                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5455                         short_channel_id: 7,
5456                         timestamp: 2,
5457                         flags: 2,
5458                         cltv_expiry_delta: 0,
5459                         htlc_minimum_msat: 0,
5460                         htlc_maximum_msat: 100_000,
5461                         fee_base_msat: 0,
5462                         fee_proportional_millionths: 0,
5463                         excess_data: Vec::new()
5464                 });
5465
5466                 // Path via {node0, node2} is channels {1, 3, 5}.
5467                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5468                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5469                         short_channel_id: 1,
5470                         timestamp: 2,
5471                         flags: 0,
5472                         cltv_expiry_delta: 0,
5473                         htlc_minimum_msat: 0,
5474                         htlc_maximum_msat: 100_000,
5475                         fee_base_msat: 0,
5476                         fee_proportional_millionths: 0,
5477                         excess_data: Vec::new()
5478                 });
5479                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
5480                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5481                         short_channel_id: 3,
5482                         timestamp: 2,
5483                         flags: 0,
5484                         cltv_expiry_delta: 0,
5485                         htlc_minimum_msat: 0,
5486                         htlc_maximum_msat: 100_000,
5487                         fee_base_msat: 0,
5488                         fee_proportional_millionths: 0,
5489                         excess_data: Vec::new()
5490                 });
5491
5492                 // Capacity of 200 sats because this channel will be used by 3rd path as well.
5493                 add_channel(&gossip_sync, &secp_ctx, &privkeys[2], &privkeys[3], ChannelFeatures::from_le_bytes(id_to_feature_flags(5)), 5);
5494                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5495                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5496                         short_channel_id: 5,
5497                         timestamp: 2,
5498                         flags: 0,
5499                         cltv_expiry_delta: 0,
5500                         htlc_minimum_msat: 0,
5501                         htlc_maximum_msat: 200_000,
5502                         fee_base_msat: 0,
5503                         fee_proportional_millionths: 0,
5504                         excess_data: Vec::new()
5505                 });
5506                 update_channel(&gossip_sync, &secp_ctx, &privkeys[3], UnsignedChannelUpdate {
5507                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5508                         short_channel_id: 5,
5509                         timestamp: 2,
5510                         flags: 3, // disable direction 1
5511                         cltv_expiry_delta: 0,
5512                         htlc_minimum_msat: 0,
5513                         htlc_maximum_msat: 200_000,
5514                         fee_base_msat: 0,
5515                         fee_proportional_millionths: 0,
5516                         excess_data: Vec::new()
5517                 });
5518
5519                 // Path via {node7, node2, node4} is channels {12, 13, 6, 11}.
5520                 // Add 100 sats to the capacities of {12, 13}, because these channels
5521                 // are also used for 3rd path. 100 sats for the rest. Total capacity: 100 sats.
5522                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5523                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5524                         short_channel_id: 12,
5525                         timestamp: 2,
5526                         flags: 0,
5527                         cltv_expiry_delta: 0,
5528                         htlc_minimum_msat: 0,
5529                         htlc_maximum_msat: 200_000,
5530                         fee_base_msat: 0,
5531                         fee_proportional_millionths: 0,
5532                         excess_data: Vec::new()
5533                 });
5534                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
5535                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5536                         short_channel_id: 13,
5537                         timestamp: 2,
5538                         flags: 0,
5539                         cltv_expiry_delta: 0,
5540                         htlc_minimum_msat: 0,
5541                         htlc_maximum_msat: 200_000,
5542                         fee_base_msat: 0,
5543                         fee_proportional_millionths: 0,
5544                         excess_data: Vec::new()
5545                 });
5546
5547                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5548                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5549                         short_channel_id: 6,
5550                         timestamp: 2,
5551                         flags: 0,
5552                         cltv_expiry_delta: 0,
5553                         htlc_minimum_msat: 0,
5554                         htlc_maximum_msat: 100_000,
5555                         fee_base_msat: 0,
5556                         fee_proportional_millionths: 0,
5557                         excess_data: Vec::new()
5558                 });
5559                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
5560                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5561                         short_channel_id: 11,
5562                         timestamp: 2,
5563                         flags: 0,
5564                         cltv_expiry_delta: 0,
5565                         htlc_minimum_msat: 0,
5566                         htlc_maximum_msat: 100_000,
5567                         fee_base_msat: 0,
5568                         fee_proportional_millionths: 0,
5569                         excess_data: Vec::new()
5570                 });
5571
5572                 // Path via {node7, node2} is channels {12, 13, 5}.
5573                 // We already limited them to 200 sats (they are used twice for 100 sats).
5574                 // Nothing to do here.
5575
5576                 {
5577                         // Attempt to route more than available results in a failure.
5578                         let route_params = RouteParameters::from_payment_params_and_value(
5579                                 payment_params.clone(), 350_000);
5580                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
5581                                         &our_id, &route_params, &network_graph.read_only(), None, Arc::clone(&logger),
5582                                         &scorer, &Default::default(), &random_seed_bytes) {
5583                                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
5584                         } else { panic!(); }
5585                 }
5586
5587                 {
5588                         // Now, attempt to route 300 sats (exact amount we can route).
5589                         // Our algorithm should provide us with these 3 paths, 100 sats each.
5590                         let route_params = RouteParameters::from_payment_params_and_value(
5591                                 payment_params, 300_000);
5592                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
5593                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
5594                         assert_eq!(route.paths.len(), 3);
5595
5596                         let mut total_amount_paid_msat = 0;
5597                         for path in &route.paths {
5598                                 assert_eq!(path.hops.last().unwrap().pubkey, nodes[3]);
5599                                 total_amount_paid_msat += path.final_value_msat();
5600                         }
5601                         assert_eq!(total_amount_paid_msat, 300_000);
5602                 }
5603
5604         }
5605
5606         #[test]
5607         fn mpp_cheaper_route_test() {
5608                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
5609                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
5610                 let scorer = ln_test_utils::TestScorer::new();
5611                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5612                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5613                 let config = UserConfig::default();
5614                 let payment_params = PaymentParameters::from_node_id(nodes[3], 42)
5615                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
5616                         .unwrap();
5617
5618                 // This test checks that if we have two cheaper paths and one more expensive path,
5619                 // so that liquidity-wise any 2 of 3 combination is sufficient,
5620                 // two cheaper paths will be taken.
5621                 // These paths have equal available liquidity.
5622
5623                 // We need a combination of 3 paths:
5624                 // From our node to node3 via {node0, node2}, {node7, node2, node4} and {node7, node2}.
5625                 // Note that these paths overlap (channels 5, 12, 13).
5626                 // Each path will have 100 sats capacity, those channels which
5627                 // are used twice will have 200 sats capacity.
5628
5629                 // Disable other potential paths.
5630                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5631                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5632                         short_channel_id: 2,
5633                         timestamp: 2,
5634                         flags: 2,
5635                         cltv_expiry_delta: 0,
5636                         htlc_minimum_msat: 0,
5637                         htlc_maximum_msat: 100_000,
5638                         fee_base_msat: 0,
5639                         fee_proportional_millionths: 0,
5640                         excess_data: Vec::new()
5641                 });
5642                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5643                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5644                         short_channel_id: 7,
5645                         timestamp: 2,
5646                         flags: 2,
5647                         cltv_expiry_delta: 0,
5648                         htlc_minimum_msat: 0,
5649                         htlc_maximum_msat: 100_000,
5650                         fee_base_msat: 0,
5651                         fee_proportional_millionths: 0,
5652                         excess_data: Vec::new()
5653                 });
5654
5655                 // Path via {node0, node2} is channels {1, 3, 5}.
5656                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5657                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5658                         short_channel_id: 1,
5659                         timestamp: 2,
5660                         flags: 0,
5661                         cltv_expiry_delta: 0,
5662                         htlc_minimum_msat: 0,
5663                         htlc_maximum_msat: 100_000,
5664                         fee_base_msat: 0,
5665                         fee_proportional_millionths: 0,
5666                         excess_data: Vec::new()
5667                 });
5668                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
5669                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5670                         short_channel_id: 3,
5671                         timestamp: 2,
5672                         flags: 0,
5673                         cltv_expiry_delta: 0,
5674                         htlc_minimum_msat: 0,
5675                         htlc_maximum_msat: 100_000,
5676                         fee_base_msat: 0,
5677                         fee_proportional_millionths: 0,
5678                         excess_data: Vec::new()
5679                 });
5680
5681                 // Capacity of 200 sats because this channel will be used by 3rd path as well.
5682                 add_channel(&gossip_sync, &secp_ctx, &privkeys[2], &privkeys[3], ChannelFeatures::from_le_bytes(id_to_feature_flags(5)), 5);
5683                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5684                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5685                         short_channel_id: 5,
5686                         timestamp: 2,
5687                         flags: 0,
5688                         cltv_expiry_delta: 0,
5689                         htlc_minimum_msat: 0,
5690                         htlc_maximum_msat: 200_000,
5691                         fee_base_msat: 0,
5692                         fee_proportional_millionths: 0,
5693                         excess_data: Vec::new()
5694                 });
5695                 update_channel(&gossip_sync, &secp_ctx, &privkeys[3], UnsignedChannelUpdate {
5696                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5697                         short_channel_id: 5,
5698                         timestamp: 2,
5699                         flags: 3, // disable direction 1
5700                         cltv_expiry_delta: 0,
5701                         htlc_minimum_msat: 0,
5702                         htlc_maximum_msat: 200_000,
5703                         fee_base_msat: 0,
5704                         fee_proportional_millionths: 0,
5705                         excess_data: Vec::new()
5706                 });
5707
5708                 // Path via {node7, node2, node4} is channels {12, 13, 6, 11}.
5709                 // Add 100 sats to the capacities of {12, 13}, because these channels
5710                 // are also used for 3rd path. 100 sats for the rest. Total capacity: 100 sats.
5711                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5712                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5713                         short_channel_id: 12,
5714                         timestamp: 2,
5715                         flags: 0,
5716                         cltv_expiry_delta: 0,
5717                         htlc_minimum_msat: 0,
5718                         htlc_maximum_msat: 200_000,
5719                         fee_base_msat: 0,
5720                         fee_proportional_millionths: 0,
5721                         excess_data: Vec::new()
5722                 });
5723                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
5724                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5725                         short_channel_id: 13,
5726                         timestamp: 2,
5727                         flags: 0,
5728                         cltv_expiry_delta: 0,
5729                         htlc_minimum_msat: 0,
5730                         htlc_maximum_msat: 200_000,
5731                         fee_base_msat: 0,
5732                         fee_proportional_millionths: 0,
5733                         excess_data: Vec::new()
5734                 });
5735
5736                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5737                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5738                         short_channel_id: 6,
5739                         timestamp: 2,
5740                         flags: 0,
5741                         cltv_expiry_delta: 0,
5742                         htlc_minimum_msat: 0,
5743                         htlc_maximum_msat: 100_000,
5744                         fee_base_msat: 1_000,
5745                         fee_proportional_millionths: 0,
5746                         excess_data: Vec::new()
5747                 });
5748                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
5749                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5750                         short_channel_id: 11,
5751                         timestamp: 2,
5752                         flags: 0,
5753                         cltv_expiry_delta: 0,
5754                         htlc_minimum_msat: 0,
5755                         htlc_maximum_msat: 100_000,
5756                         fee_base_msat: 0,
5757                         fee_proportional_millionths: 0,
5758                         excess_data: Vec::new()
5759                 });
5760
5761                 // Path via {node7, node2} is channels {12, 13, 5}.
5762                 // We already limited them to 200 sats (they are used twice for 100 sats).
5763                 // Nothing to do here.
5764
5765                 {
5766                         // Now, attempt to route 180 sats.
5767                         // Our algorithm should provide us with these 2 paths.
5768                         let route_params = RouteParameters::from_payment_params_and_value(
5769                                 payment_params, 180_000);
5770                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
5771                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
5772                         assert_eq!(route.paths.len(), 2);
5773
5774                         let mut total_value_transferred_msat = 0;
5775                         let mut total_paid_msat = 0;
5776                         for path in &route.paths {
5777                                 assert_eq!(path.hops.last().unwrap().pubkey, nodes[3]);
5778                                 total_value_transferred_msat += path.final_value_msat();
5779                                 for hop in &path.hops {
5780                                         total_paid_msat += hop.fee_msat;
5781                                 }
5782                         }
5783                         // If we paid fee, this would be higher.
5784                         assert_eq!(total_value_transferred_msat, 180_000);
5785                         let total_fees_paid = total_paid_msat - total_value_transferred_msat;
5786                         assert_eq!(total_fees_paid, 0);
5787                 }
5788         }
5789
5790         #[test]
5791         fn fees_on_mpp_route_test() {
5792                 // This test makes sure that MPP algorithm properly takes into account
5793                 // fees charged on the channels, by making the fees impactful:
5794                 // if the fee is not properly accounted for, the behavior is different.
5795                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
5796                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
5797                 let scorer = ln_test_utils::TestScorer::new();
5798                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5799                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5800                 let config = UserConfig::default();
5801                 let payment_params = PaymentParameters::from_node_id(nodes[3], 42)
5802                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
5803                         .unwrap();
5804
5805                 // We need a route consisting of 2 paths:
5806                 // From our node to node3 via {node0, node2} and {node7, node2, node4}.
5807                 // We will route 200 sats, Each path will have 100 sats capacity.
5808
5809                 // This test is not particularly stable: e.g.,
5810                 // there's a way to route via {node0, node2, node4}.
5811                 // It works while pathfinding is deterministic, but can be broken otherwise.
5812                 // It's fine to ignore this concern for now.
5813
5814                 // Disable other potential paths.
5815                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5816                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5817                         short_channel_id: 2,
5818                         timestamp: 2,
5819                         flags: 2,
5820                         cltv_expiry_delta: 0,
5821                         htlc_minimum_msat: 0,
5822                         htlc_maximum_msat: 100_000,
5823                         fee_base_msat: 0,
5824                         fee_proportional_millionths: 0,
5825                         excess_data: Vec::new()
5826                 });
5827
5828                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5829                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5830                         short_channel_id: 7,
5831                         timestamp: 2,
5832                         flags: 2,
5833                         cltv_expiry_delta: 0,
5834                         htlc_minimum_msat: 0,
5835                         htlc_maximum_msat: 100_000,
5836                         fee_base_msat: 0,
5837                         fee_proportional_millionths: 0,
5838                         excess_data: Vec::new()
5839                 });
5840
5841                 // Path via {node0, node2} is channels {1, 3, 5}.
5842                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5843                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5844                         short_channel_id: 1,
5845                         timestamp: 2,
5846                         flags: 0,
5847                         cltv_expiry_delta: 0,
5848                         htlc_minimum_msat: 0,
5849                         htlc_maximum_msat: 100_000,
5850                         fee_base_msat: 0,
5851                         fee_proportional_millionths: 0,
5852                         excess_data: Vec::new()
5853                 });
5854                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
5855                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5856                         short_channel_id: 3,
5857                         timestamp: 2,
5858                         flags: 0,
5859                         cltv_expiry_delta: 0,
5860                         htlc_minimum_msat: 0,
5861                         htlc_maximum_msat: 100_000,
5862                         fee_base_msat: 0,
5863                         fee_proportional_millionths: 0,
5864                         excess_data: Vec::new()
5865                 });
5866
5867                 add_channel(&gossip_sync, &secp_ctx, &privkeys[2], &privkeys[3], ChannelFeatures::from_le_bytes(id_to_feature_flags(5)), 5);
5868                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5869                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5870                         short_channel_id: 5,
5871                         timestamp: 2,
5872                         flags: 0,
5873                         cltv_expiry_delta: 0,
5874                         htlc_minimum_msat: 0,
5875                         htlc_maximum_msat: 100_000,
5876                         fee_base_msat: 0,
5877                         fee_proportional_millionths: 0,
5878                         excess_data: Vec::new()
5879                 });
5880                 update_channel(&gossip_sync, &secp_ctx, &privkeys[3], UnsignedChannelUpdate {
5881                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5882                         short_channel_id: 5,
5883                         timestamp: 2,
5884                         flags: 3, // Disable direction 1
5885                         cltv_expiry_delta: 0,
5886                         htlc_minimum_msat: 0,
5887                         htlc_maximum_msat: 100_000,
5888                         fee_base_msat: 0,
5889                         fee_proportional_millionths: 0,
5890                         excess_data: Vec::new()
5891                 });
5892
5893                 // Path via {node7, node2, node4} is channels {12, 13, 6, 11}.
5894                 // All channels should be 100 sats capacity. But for the fee experiment,
5895                 // we'll add absolute fee of 150 sats paid for the use channel 6 (paid to node2 on channel 13).
5896                 // Since channel 12 allows to deliver only 250 sats to channel 13, channel 13 can transfer only
5897                 // 100 sats (and pay 150 sats in fees for the use of channel 6),
5898                 // so no matter how large are other channels,
5899                 // the whole path will be limited by 100 sats with just these 2 conditions:
5900                 // - channel 12 capacity is 250 sats
5901                 // - fee for channel 6 is 150 sats
5902                 // Let's test this by enforcing these 2 conditions and removing other limits.
5903                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
5904                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5905                         short_channel_id: 12,
5906                         timestamp: 2,
5907                         flags: 0,
5908                         cltv_expiry_delta: 0,
5909                         htlc_minimum_msat: 0,
5910                         htlc_maximum_msat: 250_000,
5911                         fee_base_msat: 0,
5912                         fee_proportional_millionths: 0,
5913                         excess_data: Vec::new()
5914                 });
5915                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
5916                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5917                         short_channel_id: 13,
5918                         timestamp: 2,
5919                         flags: 0,
5920                         cltv_expiry_delta: 0,
5921                         htlc_minimum_msat: 0,
5922                         htlc_maximum_msat: MAX_VALUE_MSAT,
5923                         fee_base_msat: 0,
5924                         fee_proportional_millionths: 0,
5925                         excess_data: Vec::new()
5926                 });
5927
5928                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
5929                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5930                         short_channel_id: 6,
5931                         timestamp: 2,
5932                         flags: 0,
5933                         cltv_expiry_delta: 0,
5934                         htlc_minimum_msat: 0,
5935                         htlc_maximum_msat: MAX_VALUE_MSAT,
5936                         fee_base_msat: 150_000,
5937                         fee_proportional_millionths: 0,
5938                         excess_data: Vec::new()
5939                 });
5940                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
5941                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
5942                         short_channel_id: 11,
5943                         timestamp: 2,
5944                         flags: 0,
5945                         cltv_expiry_delta: 0,
5946                         htlc_minimum_msat: 0,
5947                         htlc_maximum_msat: MAX_VALUE_MSAT,
5948                         fee_base_msat: 0,
5949                         fee_proportional_millionths: 0,
5950                         excess_data: Vec::new()
5951                 });
5952
5953                 {
5954                         // Attempt to route more than available results in a failure.
5955                         let route_params = RouteParameters::from_payment_params_and_value(
5956                                 payment_params.clone(), 210_000);
5957                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
5958                                         &our_id, &route_params, &network_graph.read_only(), None, Arc::clone(&logger),
5959                                         &scorer, &Default::default(), &random_seed_bytes) {
5960                                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
5961                         } else { panic!(); }
5962                 }
5963
5964                 {
5965                         // Attempt to route while setting max_total_routing_fee_msat to 149_999 results in a failure.
5966                         let route_params = RouteParameters { payment_params: payment_params.clone(), final_value_msat: 200_000,
5967                                 max_total_routing_fee_msat: Some(149_999) };
5968                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
5969                                 &our_id, &route_params, &network_graph.read_only(), None, Arc::clone(&logger),
5970                                 &scorer, &Default::default(), &random_seed_bytes) {
5971                                         assert_eq!(err, "Failed to find a sufficient route to the given destination");
5972                         } else { panic!(); }
5973                 }
5974
5975                 {
5976                         // Now, attempt to route 200 sats (exact amount we can route).
5977                         let route_params = RouteParameters { payment_params: payment_params.clone(), final_value_msat: 200_000,
5978                                 max_total_routing_fee_msat: Some(150_000) };
5979                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
5980                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
5981                         assert_eq!(route.paths.len(), 2);
5982
5983                         let mut total_amount_paid_msat = 0;
5984                         for path in &route.paths {
5985                                 assert_eq!(path.hops.last().unwrap().pubkey, nodes[3]);
5986                                 total_amount_paid_msat += path.final_value_msat();
5987                         }
5988                         assert_eq!(total_amount_paid_msat, 200_000);
5989                         assert_eq!(route.get_total_fees(), 150_000);
5990                 }
5991         }
5992
5993         #[test]
5994         fn mpp_with_last_hops() {
5995                 // Previously, if we tried to send an MPP payment to a destination which was only reachable
5996                 // via a single last-hop route hint, we'd fail to route if we first collected routes
5997                 // totaling close but not quite enough to fund the full payment.
5998                 //
5999                 // This was because we considered last-hop hints to have exactly the sought payment amount
6000                 // instead of the amount we were trying to collect, needlessly limiting our path searching
6001                 // at the very first hop.
6002                 //
6003                 // Specifically, this interacted with our "all paths must fund at least 5% of total target"
6004                 // criterion to cause us to refuse all routes at the last hop hint which would be considered
6005                 // to only have the remaining to-collect amount in available liquidity.
6006                 //
6007                 // This bug appeared in production in some specific channel configurations.
6008                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
6009                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
6010                 let scorer = ln_test_utils::TestScorer::new();
6011                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6012                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6013                 let config = UserConfig::default();
6014                 let payment_params = PaymentParameters::from_node_id(PublicKey::from_slice(&[02; 33]).unwrap(), 42)
6015                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config)).unwrap()
6016                         .with_route_hints(vec![RouteHint(vec![RouteHintHop {
6017                                 src_node_id: nodes[2],
6018                                 short_channel_id: 42,
6019                                 fees: RoutingFees { base_msat: 0, proportional_millionths: 0 },
6020                                 cltv_expiry_delta: 42,
6021                                 htlc_minimum_msat: None,
6022                                 htlc_maximum_msat: None,
6023                         }])]).unwrap().with_max_channel_saturation_power_of_half(0);
6024
6025                 // Keep only two paths from us to nodes[2], both with a 99sat HTLC maximum, with one with
6026                 // no fee and one with a 1msat fee. Previously, trying to route 100 sats to nodes[2] here
6027                 // would first use the no-fee route and then fail to find a path along the second route as
6028                 // we think we can only send up to 1 additional sat over the last-hop but refuse to as its
6029                 // under 5% of our payment amount.
6030                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
6031                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6032                         short_channel_id: 1,
6033                         timestamp: 2,
6034                         flags: 0,
6035                         cltv_expiry_delta: (5 << 4) | 5,
6036                         htlc_minimum_msat: 0,
6037                         htlc_maximum_msat: 99_000,
6038                         fee_base_msat: u32::max_value(),
6039                         fee_proportional_millionths: u32::max_value(),
6040                         excess_data: Vec::new()
6041                 });
6042                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
6043                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6044                         short_channel_id: 2,
6045                         timestamp: 2,
6046                         flags: 0,
6047                         cltv_expiry_delta: (5 << 4) | 3,
6048                         htlc_minimum_msat: 0,
6049                         htlc_maximum_msat: 99_000,
6050                         fee_base_msat: u32::max_value(),
6051                         fee_proportional_millionths: u32::max_value(),
6052                         excess_data: Vec::new()
6053                 });
6054                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
6055                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6056                         short_channel_id: 4,
6057                         timestamp: 2,
6058                         flags: 0,
6059                         cltv_expiry_delta: (4 << 4) | 1,
6060                         htlc_minimum_msat: 0,
6061                         htlc_maximum_msat: MAX_VALUE_MSAT,
6062                         fee_base_msat: 1,
6063                         fee_proportional_millionths: 0,
6064                         excess_data: Vec::new()
6065                 });
6066                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
6067                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6068                         short_channel_id: 13,
6069                         timestamp: 2,
6070                         flags: 0|2, // Channel disabled
6071                         cltv_expiry_delta: (13 << 4) | 1,
6072                         htlc_minimum_msat: 0,
6073                         htlc_maximum_msat: MAX_VALUE_MSAT,
6074                         fee_base_msat: 0,
6075                         fee_proportional_millionths: 2000000,
6076                         excess_data: Vec::new()
6077                 });
6078
6079                 // Get a route for 100 sats and check that we found the MPP route no problem and didn't
6080                 // overpay at all.
6081                 let route_params = RouteParameters::from_payment_params_and_value(
6082                         payment_params, 100_000);
6083                 let mut route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
6084                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6085                 assert_eq!(route.paths.len(), 2);
6086                 route.paths.sort_by_key(|path| path.hops[0].short_channel_id);
6087                 // Paths are manually ordered ordered by SCID, so:
6088                 // * the first is channel 1 (0 fee, but 99 sat maximum) -> channel 3 -> channel 42
6089                 // * the second is channel 2 (1 msat fee) -> channel 4 -> channel 42
6090                 assert_eq!(route.paths[0].hops[0].short_channel_id, 1);
6091                 assert_eq!(route.paths[0].hops[0].fee_msat, 0);
6092                 assert_eq!(route.paths[0].hops[2].fee_msat, 99_000);
6093                 assert_eq!(route.paths[1].hops[0].short_channel_id, 2);
6094                 assert_eq!(route.paths[1].hops[0].fee_msat, 1);
6095                 assert_eq!(route.paths[1].hops[2].fee_msat, 1_000);
6096                 assert_eq!(route.get_total_fees(), 1);
6097                 assert_eq!(route.get_total_amount(), 100_000);
6098         }
6099
6100         #[test]
6101         fn drop_lowest_channel_mpp_route_test() {
6102                 // This test checks that low-capacity channel is dropped when after
6103                 // path finding we realize that we found more capacity than we need.
6104                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
6105                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
6106                 let scorer = ln_test_utils::TestScorer::new();
6107                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6108                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6109                 let config = UserConfig::default();
6110                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42)
6111                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
6112                         .unwrap()
6113                         .with_max_channel_saturation_power_of_half(0);
6114
6115                 // We need a route consisting of 3 paths:
6116                 // From our node to node2 via node0, node7, node1 (three paths one hop each).
6117
6118                 // The first and the second paths should be sufficient, but the third should be
6119                 // cheaper, so that we select it but drop later.
6120
6121                 // First, we set limits on these (previously unlimited) channels.
6122                 // Their aggregate capacity will be 50 + 60 + 20 = 130 sats.
6123
6124                 // Path via node0 is channels {1, 3}. Limit them to 100 and 50 sats (total limit 50);
6125                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
6126                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6127                         short_channel_id: 1,
6128                         timestamp: 2,
6129                         flags: 0,
6130                         cltv_expiry_delta: 0,
6131                         htlc_minimum_msat: 0,
6132                         htlc_maximum_msat: 100_000,
6133                         fee_base_msat: 0,
6134                         fee_proportional_millionths: 0,
6135                         excess_data: Vec::new()
6136                 });
6137                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
6138                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6139                         short_channel_id: 3,
6140                         timestamp: 2,
6141                         flags: 0,
6142                         cltv_expiry_delta: 0,
6143                         htlc_minimum_msat: 0,
6144                         htlc_maximum_msat: 50_000,
6145                         fee_base_msat: 100,
6146                         fee_proportional_millionths: 0,
6147                         excess_data: Vec::new()
6148                 });
6149
6150                 // Path via node7 is channels {12, 13}. Limit them to 60 and 60 sats (total limit 60);
6151                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
6152                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6153                         short_channel_id: 12,
6154                         timestamp: 2,
6155                         flags: 0,
6156                         cltv_expiry_delta: 0,
6157                         htlc_minimum_msat: 0,
6158                         htlc_maximum_msat: 60_000,
6159                         fee_base_msat: 100,
6160                         fee_proportional_millionths: 0,
6161                         excess_data: Vec::new()
6162                 });
6163                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
6164                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6165                         short_channel_id: 13,
6166                         timestamp: 2,
6167                         flags: 0,
6168                         cltv_expiry_delta: 0,
6169                         htlc_minimum_msat: 0,
6170                         htlc_maximum_msat: 60_000,
6171                         fee_base_msat: 0,
6172                         fee_proportional_millionths: 0,
6173                         excess_data: Vec::new()
6174                 });
6175
6176                 // Path via node1 is channels {2, 4}. Limit them to 20 and 20 sats (total capacity 20 sats).
6177                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
6178                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6179                         short_channel_id: 2,
6180                         timestamp: 2,
6181                         flags: 0,
6182                         cltv_expiry_delta: 0,
6183                         htlc_minimum_msat: 0,
6184                         htlc_maximum_msat: 20_000,
6185                         fee_base_msat: 0,
6186                         fee_proportional_millionths: 0,
6187                         excess_data: Vec::new()
6188                 });
6189                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
6190                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6191                         short_channel_id: 4,
6192                         timestamp: 2,
6193                         flags: 0,
6194                         cltv_expiry_delta: 0,
6195                         htlc_minimum_msat: 0,
6196                         htlc_maximum_msat: 20_000,
6197                         fee_base_msat: 0,
6198                         fee_proportional_millionths: 0,
6199                         excess_data: Vec::new()
6200                 });
6201
6202                 {
6203                         // Attempt to route more than available results in a failure.
6204                         let route_params = RouteParameters::from_payment_params_and_value(
6205                                 payment_params.clone(), 150_000);
6206                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
6207                                         &our_id, &route_params, &network_graph.read_only(), None, Arc::clone(&logger),
6208                                         &scorer, &Default::default(), &random_seed_bytes) {
6209                                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
6210                         } else { panic!(); }
6211                 }
6212
6213                 {
6214                         // Now, attempt to route 125 sats (just a bit below the capacity of 3 channels).
6215                         // Our algorithm should provide us with these 3 paths.
6216                         let route_params = RouteParameters::from_payment_params_and_value(
6217                                 payment_params.clone(), 125_000);
6218                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
6219                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6220                         assert_eq!(route.paths.len(), 3);
6221                         let mut total_amount_paid_msat = 0;
6222                         for path in &route.paths {
6223                                 assert_eq!(path.hops.len(), 2);
6224                                 assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
6225                                 total_amount_paid_msat += path.final_value_msat();
6226                         }
6227                         assert_eq!(total_amount_paid_msat, 125_000);
6228                 }
6229
6230                 {
6231                         // Attempt to route without the last small cheap channel
6232                         let route_params = RouteParameters::from_payment_params_and_value(
6233                                 payment_params, 90_000);
6234                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
6235                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6236                         assert_eq!(route.paths.len(), 2);
6237                         let mut total_amount_paid_msat = 0;
6238                         for path in &route.paths {
6239                                 assert_eq!(path.hops.len(), 2);
6240                                 assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
6241                                 total_amount_paid_msat += path.final_value_msat();
6242                         }
6243                         assert_eq!(total_amount_paid_msat, 90_000);
6244                 }
6245         }
6246
6247         #[test]
6248         fn min_criteria_consistency() {
6249                 // Test that we don't use an inconsistent metric between updating and walking nodes during
6250                 // our Dijkstra's pass. In the initial version of MPP, the "best source" for a given node
6251                 // was updated with a different criterion from the heap sorting, resulting in loops in
6252                 // calculated paths. We test for that specific case here.
6253
6254                 // We construct a network that looks like this:
6255                 //
6256                 //            node2 -1(3)2- node3
6257                 //              2          2
6258                 //               (2)     (4)
6259                 //                  1   1
6260                 //    node1 -1(5)2- node4 -1(1)2- node6
6261                 //    2
6262                 //   (6)
6263                 //        1
6264                 // our_node
6265                 //
6266                 // We create a loop on the side of our real path - our destination is node 6, with a
6267                 // previous hop of node 4. From 4, the cheapest previous path is channel 2 from node 2,
6268                 // followed by node 3 over channel 3. Thereafter, the cheapest next-hop is back to node 4
6269                 // (this time over channel 4). Channel 4 has 0 htlc_minimum_msat whereas channel 1 (the
6270                 // other channel with a previous-hop of node 4) has a high (but irrelevant to the overall
6271                 // payment) htlc_minimum_msat. In the original algorithm, this resulted in node4's
6272                 // "previous hop" being set to node 3, creating a loop in the path.
6273                 let secp_ctx = Secp256k1::new();
6274                 let logger = Arc::new(ln_test_utils::TestLogger::new());
6275                 let network = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
6276                 let gossip_sync = P2PGossipSync::new(Arc::clone(&network), None, Arc::clone(&logger));
6277                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
6278                 let scorer = ln_test_utils::TestScorer::new();
6279                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6280                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6281                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42);
6282
6283                 add_channel(&gossip_sync, &secp_ctx, &our_privkey, &privkeys[1], ChannelFeatures::from_le_bytes(id_to_feature_flags(6)), 6);
6284                 for (key, flags) in [(&our_privkey, 0), (&privkeys[1], 3)] {
6285                         update_channel(&gossip_sync, &secp_ctx, key, UnsignedChannelUpdate {
6286                                 chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6287                                 short_channel_id: 6,
6288                                 timestamp: 1,
6289                                 flags,
6290                                 cltv_expiry_delta: (6 << 4) | 0,
6291                                 htlc_minimum_msat: 0,
6292                                 htlc_maximum_msat: MAX_VALUE_MSAT,
6293                                 fee_base_msat: 0,
6294                                 fee_proportional_millionths: 0,
6295                                 excess_data: Vec::new()
6296                         });
6297                 }
6298                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[1], NodeFeatures::from_le_bytes(id_to_feature_flags(1)), 0);
6299
6300                 add_channel(&gossip_sync, &secp_ctx, &privkeys[1], &privkeys[4], ChannelFeatures::from_le_bytes(id_to_feature_flags(5)), 5);
6301                 for (key, flags) in [(&privkeys[1], 0), (&privkeys[4], 3)] {
6302                         update_channel(&gossip_sync, &secp_ctx, key, UnsignedChannelUpdate {
6303                                 chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6304                                 short_channel_id: 5,
6305                                 timestamp: 1,
6306                                 flags,
6307                                 cltv_expiry_delta: (5 << 4) | 0,
6308                                 htlc_minimum_msat: 0,
6309                                 htlc_maximum_msat: MAX_VALUE_MSAT,
6310                                 fee_base_msat: 100,
6311                                 fee_proportional_millionths: 0,
6312                                 excess_data: Vec::new()
6313                         });
6314                 }
6315                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[4], NodeFeatures::from_le_bytes(id_to_feature_flags(4)), 0);
6316
6317                 add_channel(&gossip_sync, &secp_ctx, &privkeys[4], &privkeys[3], ChannelFeatures::from_le_bytes(id_to_feature_flags(4)), 4);
6318                 for (key, flags) in [(&privkeys[4], 0), (&privkeys[3], 3)] {
6319                         update_channel(&gossip_sync, &secp_ctx, key, UnsignedChannelUpdate {
6320                                 chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6321                                 short_channel_id: 4,
6322                                 timestamp: 1,
6323                                 flags,
6324                                 cltv_expiry_delta: (4 << 4) | 0,
6325                                 htlc_minimum_msat: 0,
6326                                 htlc_maximum_msat: MAX_VALUE_MSAT,
6327                                 fee_base_msat: 0,
6328                                 fee_proportional_millionths: 0,
6329                                 excess_data: Vec::new()
6330                         });
6331                 }
6332                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[3], NodeFeatures::from_le_bytes(id_to_feature_flags(3)), 0);
6333
6334                 add_channel(&gossip_sync, &secp_ctx, &privkeys[3], &privkeys[2], ChannelFeatures::from_le_bytes(id_to_feature_flags(3)), 3);
6335                 for (key, flags) in [(&privkeys[3], 0), (&privkeys[2], 3)] {
6336                         update_channel(&gossip_sync, &secp_ctx, key, UnsignedChannelUpdate {
6337                                 chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6338                                 short_channel_id: 3,
6339                                 timestamp: 1,
6340                                 flags,
6341                                 cltv_expiry_delta: (3 << 4) | 0,
6342                                 htlc_minimum_msat: 0,
6343                                 htlc_maximum_msat: MAX_VALUE_MSAT,
6344                                 fee_base_msat: 0,
6345                                 fee_proportional_millionths: 0,
6346                                 excess_data: Vec::new()
6347                         });
6348                 }
6349                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[2], NodeFeatures::from_le_bytes(id_to_feature_flags(2)), 0);
6350
6351                 add_channel(&gossip_sync, &secp_ctx, &privkeys[2], &privkeys[4], ChannelFeatures::from_le_bytes(id_to_feature_flags(2)), 2);
6352                 for (key, flags) in [(&privkeys[2], 0), (&privkeys[4], 3)] {
6353                         update_channel(&gossip_sync, &secp_ctx, key, UnsignedChannelUpdate {
6354                                 chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6355                                 short_channel_id: 2,
6356                                 timestamp: 1,
6357                                 flags,
6358                                 cltv_expiry_delta: (2 << 4) | 0,
6359                                 htlc_minimum_msat: 0,
6360                                 htlc_maximum_msat: MAX_VALUE_MSAT,
6361                                 fee_base_msat: 0,
6362                                 fee_proportional_millionths: 0,
6363                                 excess_data: Vec::new()
6364                         });
6365                 }
6366
6367                 add_channel(&gossip_sync, &secp_ctx, &privkeys[4], &privkeys[6], ChannelFeatures::from_le_bytes(id_to_feature_flags(1)), 1);
6368                 for (key, flags) in [(&privkeys[4], 0), (&privkeys[6], 3)] {
6369                         update_channel(&gossip_sync, &secp_ctx, key, UnsignedChannelUpdate {
6370                                 chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6371                                 short_channel_id: 1,
6372                                 timestamp: 1,
6373                                 flags,
6374                                 cltv_expiry_delta: (1 << 4) | 0,
6375                                 htlc_minimum_msat: 100,
6376                                 htlc_maximum_msat: MAX_VALUE_MSAT,
6377                                 fee_base_msat: 0,
6378                                 fee_proportional_millionths: 0,
6379                                 excess_data: Vec::new()
6380                         });
6381                 }
6382                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[6], NodeFeatures::from_le_bytes(id_to_feature_flags(6)), 0);
6383
6384                 {
6385                         // Now ensure the route flows simply over nodes 1 and 4 to 6.
6386                         let route_params = RouteParameters::from_payment_params_and_value(
6387                                 payment_params, 10_000);
6388                         let route = get_route(&our_id, &route_params, &network.read_only(), None,
6389                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6390                         assert_eq!(route.paths.len(), 1);
6391                         assert_eq!(route.paths[0].hops.len(), 3);
6392
6393                         assert_eq!(route.paths[0].hops[0].pubkey, nodes[1]);
6394                         assert_eq!(route.paths[0].hops[0].short_channel_id, 6);
6395                         assert_eq!(route.paths[0].hops[0].fee_msat, 100);
6396                         assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (5 << 4) | 0);
6397                         assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(1));
6398                         assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(6));
6399
6400                         assert_eq!(route.paths[0].hops[1].pubkey, nodes[4]);
6401                         assert_eq!(route.paths[0].hops[1].short_channel_id, 5);
6402                         assert_eq!(route.paths[0].hops[1].fee_msat, 0);
6403                         assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, (1 << 4) | 0);
6404                         assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(4));
6405                         assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(5));
6406
6407                         assert_eq!(route.paths[0].hops[2].pubkey, nodes[6]);
6408                         assert_eq!(route.paths[0].hops[2].short_channel_id, 1);
6409                         assert_eq!(route.paths[0].hops[2].fee_msat, 10_000);
6410                         assert_eq!(route.paths[0].hops[2].cltv_expiry_delta, 42);
6411                         assert_eq!(route.paths[0].hops[2].node_features.le_flags(), &id_to_feature_flags(6));
6412                         assert_eq!(route.paths[0].hops[2].channel_features.le_flags(), &id_to_feature_flags(1));
6413                 }
6414         }
6415
6416
6417         #[test]
6418         fn exact_fee_liquidity_limit() {
6419                 // Test that if, while walking the graph, we find a hop that has exactly enough liquidity
6420                 // for us, including later hop fees, we take it. In the first version of our MPP algorithm
6421                 // we calculated fees on a higher value, resulting in us ignoring such paths.
6422                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
6423                 let (our_privkey, our_id, _, nodes) = get_nodes(&secp_ctx);
6424                 let scorer = ln_test_utils::TestScorer::new();
6425                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6426                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6427                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
6428
6429                 // We modify the graph to set the htlc_maximum of channel 2 to below the value we wish to
6430                 // send.
6431                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
6432                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6433                         short_channel_id: 2,
6434                         timestamp: 2,
6435                         flags: 0,
6436                         cltv_expiry_delta: 0,
6437                         htlc_minimum_msat: 0,
6438                         htlc_maximum_msat: 85_000,
6439                         fee_base_msat: 0,
6440                         fee_proportional_millionths: 0,
6441                         excess_data: Vec::new()
6442                 });
6443
6444                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
6445                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6446                         short_channel_id: 12,
6447                         timestamp: 2,
6448                         flags: 0,
6449                         cltv_expiry_delta: (4 << 4) | 1,
6450                         htlc_minimum_msat: 0,
6451                         htlc_maximum_msat: 270_000,
6452                         fee_base_msat: 0,
6453                         fee_proportional_millionths: 1000000,
6454                         excess_data: Vec::new()
6455                 });
6456
6457                 {
6458                         // Now, attempt to route 90 sats, which is exactly 90 sats at the last hop, plus the
6459                         // 200% fee charged channel 13 in the 1-to-2 direction.
6460                         let mut route_params = RouteParameters::from_payment_params_and_value(
6461                                 payment_params, 90_000);
6462                         route_params.max_total_routing_fee_msat = Some(90_000*2);
6463                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
6464                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6465                         assert_eq!(route.paths.len(), 1);
6466                         assert_eq!(route.paths[0].hops.len(), 2);
6467
6468                         assert_eq!(route.paths[0].hops[0].pubkey, nodes[7]);
6469                         assert_eq!(route.paths[0].hops[0].short_channel_id, 12);
6470                         assert_eq!(route.paths[0].hops[0].fee_msat, 90_000*2);
6471                         assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (13 << 4) | 1);
6472                         assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(8));
6473                         assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(12));
6474
6475                         assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
6476                         assert_eq!(route.paths[0].hops[1].short_channel_id, 13);
6477                         assert_eq!(route.paths[0].hops[1].fee_msat, 90_000);
6478                         assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 42);
6479                         assert_eq!(route.paths[0].hops[1].node_features.le_flags(), &id_to_feature_flags(3));
6480                         assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(13));
6481                 }
6482         }
6483
6484         #[test]
6485         fn htlc_max_reduction_below_min() {
6486                 // Test that if, while walking the graph, we reduce the value being sent to meet an
6487                 // htlc_maximum_msat, we don't end up undershooting a later htlc_minimum_msat. In the
6488                 // initial version of MPP we'd accept such routes but reject them while recalculating fees,
6489                 // resulting in us thinking there is no possible path, even if other paths exist.
6490                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
6491                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
6492                 let scorer = ln_test_utils::TestScorer::new();
6493                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6494                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6495                 let config = UserConfig::default();
6496                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42)
6497                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
6498                         .unwrap();
6499
6500                 // We modify the graph to set the htlc_minimum of channel 2 and 4 as needed - channel 2
6501                 // gets an htlc_maximum_msat of 80_000 and channel 4 an htlc_minimum_msat of 90_000. We
6502                 // then try to send 90_000.
6503                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
6504                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6505                         short_channel_id: 2,
6506                         timestamp: 2,
6507                         flags: 0,
6508                         cltv_expiry_delta: 0,
6509                         htlc_minimum_msat: 0,
6510                         htlc_maximum_msat: 80_000,
6511                         fee_base_msat: 0,
6512                         fee_proportional_millionths: 0,
6513                         excess_data: Vec::new()
6514                 });
6515                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
6516                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
6517                         short_channel_id: 4,
6518                         timestamp: 2,
6519                         flags: 0,
6520                         cltv_expiry_delta: (4 << 4) | 1,
6521                         htlc_minimum_msat: 90_000,
6522                         htlc_maximum_msat: MAX_VALUE_MSAT,
6523                         fee_base_msat: 0,
6524                         fee_proportional_millionths: 0,
6525                         excess_data: Vec::new()
6526                 });
6527
6528                 {
6529                         // Now, attempt to route 90 sats, hitting the htlc_minimum on channel 4, but
6530                         // overshooting the htlc_maximum on channel 2. Thus, we should pick the (absurdly
6531                         // expensive) channels 12-13 path.
6532                         let mut route_params = RouteParameters::from_payment_params_and_value(
6533                                 payment_params, 90_000);
6534                         route_params.max_total_routing_fee_msat = Some(90_000*2);
6535                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
6536                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6537                         assert_eq!(route.paths.len(), 1);
6538                         assert_eq!(route.paths[0].hops.len(), 2);
6539
6540                         assert_eq!(route.paths[0].hops[0].pubkey, nodes[7]);
6541                         assert_eq!(route.paths[0].hops[0].short_channel_id, 12);
6542                         assert_eq!(route.paths[0].hops[0].fee_msat, 90_000*2);
6543                         assert_eq!(route.paths[0].hops[0].cltv_expiry_delta, (13 << 4) | 1);
6544                         assert_eq!(route.paths[0].hops[0].node_features.le_flags(), &id_to_feature_flags(8));
6545                         assert_eq!(route.paths[0].hops[0].channel_features.le_flags(), &id_to_feature_flags(12));
6546
6547                         assert_eq!(route.paths[0].hops[1].pubkey, nodes[2]);
6548                         assert_eq!(route.paths[0].hops[1].short_channel_id, 13);
6549                         assert_eq!(route.paths[0].hops[1].fee_msat, 90_000);
6550                         assert_eq!(route.paths[0].hops[1].cltv_expiry_delta, 42);
6551                         assert_eq!(route.paths[0].hops[1].node_features.le_flags(), channelmanager::provided_bolt11_invoice_features(&config).le_flags());
6552                         assert_eq!(route.paths[0].hops[1].channel_features.le_flags(), &id_to_feature_flags(13));
6553                 }
6554         }
6555
6556         #[test]
6557         fn multiple_direct_first_hops() {
6558                 // Previously we'd only ever considered one first hop path per counterparty.
6559                 // However, as we don't restrict users to one channel per peer, we really need to support
6560                 // looking at all first hop paths.
6561                 // Here we test that we do not ignore all-but-the-last first hop paths per counterparty (as
6562                 // we used to do by overwriting the `first_hop_targets` hashmap entry) and that we can MPP
6563                 // route over multiple channels with the same first hop.
6564                 let secp_ctx = Secp256k1::new();
6565                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
6566                 let logger = Arc::new(ln_test_utils::TestLogger::new());
6567                 let network_graph = NetworkGraph::new(Network::Testnet, Arc::clone(&logger));
6568                 let scorer = ln_test_utils::TestScorer::new();
6569                 let config = UserConfig::default();
6570                 let payment_params = PaymentParameters::from_node_id(nodes[0], 42)
6571                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
6572                         .unwrap();
6573                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6574                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6575
6576                 {
6577                         let route_params = RouteParameters::from_payment_params_and_value(
6578                                 payment_params.clone(), 100_000);
6579                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), Some(&[
6580                                 &get_channel_details(Some(3), nodes[0], channelmanager::provided_init_features(&config), 200_000),
6581                                 &get_channel_details(Some(2), nodes[0], channelmanager::provided_init_features(&config), 10_000),
6582                         ]), Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6583                         assert_eq!(route.paths.len(), 1);
6584                         assert_eq!(route.paths[0].hops.len(), 1);
6585
6586                         assert_eq!(route.paths[0].hops[0].pubkey, nodes[0]);
6587                         assert_eq!(route.paths[0].hops[0].short_channel_id, 3);
6588                         assert_eq!(route.paths[0].hops[0].fee_msat, 100_000);
6589                 }
6590                 {
6591                         let route_params = RouteParameters::from_payment_params_and_value(
6592                                 payment_params.clone(), 100_000);
6593                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), Some(&[
6594                                 &get_channel_details(Some(3), nodes[0], channelmanager::provided_init_features(&config), 50_000),
6595                                 &get_channel_details(Some(2), nodes[0], channelmanager::provided_init_features(&config), 50_000),
6596                         ]), Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6597                         assert_eq!(route.paths.len(), 2);
6598                         assert_eq!(route.paths[0].hops.len(), 1);
6599                         assert_eq!(route.paths[1].hops.len(), 1);
6600
6601                         assert!((route.paths[0].hops[0].short_channel_id == 3 && route.paths[1].hops[0].short_channel_id == 2) ||
6602                                 (route.paths[0].hops[0].short_channel_id == 2 && route.paths[1].hops[0].short_channel_id == 3));
6603
6604                         assert_eq!(route.paths[0].hops[0].pubkey, nodes[0]);
6605                         assert_eq!(route.paths[0].hops[0].fee_msat, 50_000);
6606
6607                         assert_eq!(route.paths[1].hops[0].pubkey, nodes[0]);
6608                         assert_eq!(route.paths[1].hops[0].fee_msat, 50_000);
6609                 }
6610
6611                 {
6612                         // If we have a bunch of outbound channels to the same node, where most are not
6613                         // sufficient to pay the full payment, but one is, we should default to just using the
6614                         // one single channel that has sufficient balance, avoiding MPP.
6615                         //
6616                         // If we have several options above the 3xpayment value threshold, we should pick the
6617                         // smallest of them, avoiding further fragmenting our available outbound balance to
6618                         // this node.
6619                         let route_params = RouteParameters::from_payment_params_and_value(
6620                                 payment_params, 100_000);
6621                         let route = get_route(&our_id, &route_params, &network_graph.read_only(), Some(&[
6622                                 &get_channel_details(Some(2), nodes[0], channelmanager::provided_init_features(&config), 50_000),
6623                                 &get_channel_details(Some(3), nodes[0], channelmanager::provided_init_features(&config), 50_000),
6624                                 &get_channel_details(Some(5), nodes[0], channelmanager::provided_init_features(&config), 50_000),
6625                                 &get_channel_details(Some(6), nodes[0], channelmanager::provided_init_features(&config), 300_000),
6626                                 &get_channel_details(Some(7), nodes[0], channelmanager::provided_init_features(&config), 50_000),
6627                                 &get_channel_details(Some(8), nodes[0], channelmanager::provided_init_features(&config), 50_000),
6628                                 &get_channel_details(Some(9), nodes[0], channelmanager::provided_init_features(&config), 50_000),
6629                                 &get_channel_details(Some(4), nodes[0], channelmanager::provided_init_features(&config), 1_000_000),
6630                         ]), Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6631                         assert_eq!(route.paths.len(), 1);
6632                         assert_eq!(route.paths[0].hops.len(), 1);
6633
6634                         assert_eq!(route.paths[0].hops[0].pubkey, nodes[0]);
6635                         assert_eq!(route.paths[0].hops[0].short_channel_id, 6);
6636                         assert_eq!(route.paths[0].hops[0].fee_msat, 100_000);
6637                 }
6638         }
6639
6640         #[test]
6641         fn prefers_shorter_route_with_higher_fees() {
6642                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
6643                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
6644                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops(&nodes)).unwrap();
6645
6646                 // Without penalizing each hop 100 msats, a longer path with lower fees is chosen.
6647                 let scorer = ln_test_utils::TestScorer::new();
6648                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6649                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6650                 let route_params = RouteParameters::from_payment_params_and_value(
6651                         payment_params.clone(), 100);
6652                 let route = get_route( &our_id, &route_params, &network_graph.read_only(), None,
6653                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6654                 let path = route.paths[0].hops.iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
6655
6656                 assert_eq!(route.get_total_fees(), 100);
6657                 assert_eq!(route.get_total_amount(), 100);
6658                 assert_eq!(path, vec![2, 4, 6, 11, 8]);
6659
6660                 // Applying a 100 msat penalty to each hop results in taking channels 7 and 10 to nodes[6]
6661                 // from nodes[2] rather than channel 6, 11, and 8, even though the longer path is cheaper.
6662                 let scorer = FixedPenaltyScorer::with_penalty(100);
6663                 let route_params = RouteParameters::from_payment_params_and_value(
6664                         payment_params, 100);
6665                 let route = get_route( &our_id, &route_params, &network_graph.read_only(), None,
6666                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6667                 let path = route.paths[0].hops.iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
6668
6669                 assert_eq!(route.get_total_fees(), 300);
6670                 assert_eq!(route.get_total_amount(), 100);
6671                 assert_eq!(path, vec![2, 4, 7, 10]);
6672         }
6673
6674         struct BadChannelScorer {
6675                 short_channel_id: u64,
6676         }
6677
6678         #[cfg(c_bindings)]
6679         impl Writeable for BadChannelScorer {
6680                 fn write<W: Writer>(&self, _w: &mut W) -> Result<(), crate::io::Error> { unimplemented!() }
6681         }
6682         impl ScoreLookUp for BadChannelScorer {
6683                 type ScoreParams = ();
6684                 fn channel_penalty_msat(&self, candidate: &CandidateRouteHop, _: ChannelUsage, _score_params:&Self::ScoreParams) -> u64 {
6685                         if candidate.short_channel_id() == Some(self.short_channel_id) { u64::max_value()  } else { 0  }
6686                 }
6687         }
6688
6689         struct BadNodeScorer {
6690                 node_id: NodeId,
6691         }
6692
6693         #[cfg(c_bindings)]
6694         impl Writeable for BadNodeScorer {
6695                 fn write<W: Writer>(&self, _w: &mut W) -> Result<(), crate::io::Error> { unimplemented!() }
6696         }
6697
6698         impl ScoreLookUp for BadNodeScorer {
6699                 type ScoreParams = ();
6700                 fn channel_penalty_msat(&self, candidate: &CandidateRouteHop, _: ChannelUsage, _score_params:&Self::ScoreParams) -> u64 {
6701                         if candidate.target() == Some(self.node_id) { u64::max_value() } else { 0 }
6702                 }
6703         }
6704
6705         #[test]
6706         fn avoids_routing_through_bad_channels_and_nodes() {
6707                 let (secp_ctx, network, _, _, logger) = build_graph();
6708                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
6709                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops(&nodes)).unwrap();
6710                 let network_graph = network.read_only();
6711
6712                 // A path to nodes[6] exists when no penalties are applied to any channel.
6713                 let scorer = ln_test_utils::TestScorer::new();
6714                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6715                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6716                 let route_params = RouteParameters::from_payment_params_and_value(
6717                         payment_params, 100);
6718                 let route = get_route( &our_id, &route_params, &network_graph, None, Arc::clone(&logger),
6719                         &scorer, &Default::default(), &random_seed_bytes).unwrap();
6720                 let path = route.paths[0].hops.iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
6721
6722                 assert_eq!(route.get_total_fees(), 100);
6723                 assert_eq!(route.get_total_amount(), 100);
6724                 assert_eq!(path, vec![2, 4, 6, 11, 8]);
6725
6726                 // A different path to nodes[6] exists if channel 6 cannot be routed over.
6727                 let scorer = BadChannelScorer { short_channel_id: 6 };
6728                 let route = get_route( &our_id, &route_params, &network_graph, None, Arc::clone(&logger),
6729                         &scorer, &Default::default(), &random_seed_bytes).unwrap();
6730                 let path = route.paths[0].hops.iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
6731
6732                 assert_eq!(route.get_total_fees(), 300);
6733                 assert_eq!(route.get_total_amount(), 100);
6734                 assert_eq!(path, vec![2, 4, 7, 10]);
6735
6736                 // A path to nodes[6] does not exist if nodes[2] cannot be routed through.
6737                 let scorer = BadNodeScorer { node_id: NodeId::from_pubkey(&nodes[2]) };
6738                 match get_route( &our_id, &route_params, &network_graph, None, Arc::clone(&logger),
6739                         &scorer, &Default::default(), &random_seed_bytes) {
6740                                 Err(LightningError { err, .. } ) => {
6741                                         assert_eq!(err, "Failed to find a path to the given destination");
6742                                 },
6743                                 Ok(_) => panic!("Expected error"),
6744                 }
6745         }
6746
6747         #[test]
6748         fn total_fees_single_path() {
6749                 let route = Route {
6750                         paths: vec![Path { hops: vec![
6751                                 RouteHop {
6752                                         pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("02eec7245d6b7d2ccb30380bfbe2a3648cd7a942653f5aa340edcea1f283686619").unwrap()[..]).unwrap(),
6753                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
6754                                         short_channel_id: 0, fee_msat: 100, cltv_expiry_delta: 0, maybe_announced_channel: true,
6755                                 },
6756                                 RouteHop {
6757                                         pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("0324653eac434488002cc06bbfb7f10fe18991e35f9fe4302dbea6d2353dc0ab1c").unwrap()[..]).unwrap(),
6758                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
6759                                         short_channel_id: 0, fee_msat: 150, cltv_expiry_delta: 0, maybe_announced_channel: true,
6760                                 },
6761                                 RouteHop {
6762                                         pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("027f31ebc5462c1fdce1b737ecff52d37d75dea43ce11c74d25aa297165faa2007").unwrap()[..]).unwrap(),
6763                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
6764                                         short_channel_id: 0, fee_msat: 225, cltv_expiry_delta: 0, maybe_announced_channel: true,
6765                                 },
6766                         ], blinded_tail: None }],
6767                         route_params: None,
6768                 };
6769
6770                 assert_eq!(route.get_total_fees(), 250);
6771                 assert_eq!(route.get_total_amount(), 225);
6772         }
6773
6774         #[test]
6775         fn total_fees_multi_path() {
6776                 let route = Route {
6777                         paths: vec![Path { hops: vec![
6778                                 RouteHop {
6779                                         pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("02eec7245d6b7d2ccb30380bfbe2a3648cd7a942653f5aa340edcea1f283686619").unwrap()[..]).unwrap(),
6780                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
6781                                         short_channel_id: 0, fee_msat: 100, cltv_expiry_delta: 0, maybe_announced_channel: true,
6782                                 },
6783                                 RouteHop {
6784                                         pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("0324653eac434488002cc06bbfb7f10fe18991e35f9fe4302dbea6d2353dc0ab1c").unwrap()[..]).unwrap(),
6785                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
6786                                         short_channel_id: 0, fee_msat: 150, cltv_expiry_delta: 0, maybe_announced_channel: true,
6787                                 },
6788                         ], blinded_tail: None }, Path { hops: vec![
6789                                 RouteHop {
6790                                         pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("02eec7245d6b7d2ccb30380bfbe2a3648cd7a942653f5aa340edcea1f283686619").unwrap()[..]).unwrap(),
6791                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
6792                                         short_channel_id: 0, fee_msat: 100, cltv_expiry_delta: 0, maybe_announced_channel: true,
6793                                 },
6794                                 RouteHop {
6795                                         pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("0324653eac434488002cc06bbfb7f10fe18991e35f9fe4302dbea6d2353dc0ab1c").unwrap()[..]).unwrap(),
6796                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
6797                                         short_channel_id: 0, fee_msat: 150, cltv_expiry_delta: 0, maybe_announced_channel: true,
6798                                 },
6799                         ], blinded_tail: None }],
6800                         route_params: None,
6801                 };
6802
6803                 assert_eq!(route.get_total_fees(), 200);
6804                 assert_eq!(route.get_total_amount(), 300);
6805         }
6806
6807         #[test]
6808         fn total_empty_route_no_panic() {
6809                 // In an earlier version of `Route::get_total_fees` and `Route::get_total_amount`, they
6810                 // would both panic if the route was completely empty. We test to ensure they return 0
6811                 // here, even though its somewhat nonsensical as a route.
6812                 let route = Route { paths: Vec::new(), route_params: None };
6813
6814                 assert_eq!(route.get_total_fees(), 0);
6815                 assert_eq!(route.get_total_amount(), 0);
6816         }
6817
6818         #[test]
6819         fn limits_total_cltv_delta() {
6820                 let (secp_ctx, network, _, _, logger) = build_graph();
6821                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
6822                 let network_graph = network.read_only();
6823
6824                 let scorer = ln_test_utils::TestScorer::new();
6825
6826                 // Make sure that generally there is at least one route available
6827                 let feasible_max_total_cltv_delta = 1008;
6828                 let feasible_payment_params = PaymentParameters::from_node_id(nodes[6], 0).with_route_hints(last_hops(&nodes)).unwrap()
6829                         .with_max_total_cltv_expiry_delta(feasible_max_total_cltv_delta);
6830                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6831                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6832                 let route_params = RouteParameters::from_payment_params_and_value(
6833                         feasible_payment_params, 100);
6834                 let route = get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger),
6835                         &scorer, &Default::default(), &random_seed_bytes).unwrap();
6836                 let path = route.paths[0].hops.iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
6837                 assert_ne!(path.len(), 0);
6838
6839                 // But not if we exclude all paths on the basis of their accumulated CLTV delta
6840                 let fail_max_total_cltv_delta = 23;
6841                 let fail_payment_params = PaymentParameters::from_node_id(nodes[6], 0).with_route_hints(last_hops(&nodes)).unwrap()
6842                         .with_max_total_cltv_expiry_delta(fail_max_total_cltv_delta);
6843                 let route_params = RouteParameters::from_payment_params_and_value(
6844                         fail_payment_params, 100);
6845                 match get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger), &scorer,
6846                         &Default::default(), &random_seed_bytes)
6847                 {
6848                         Err(LightningError { err, .. } ) => {
6849                                 assert_eq!(err, "Failed to find a path to the given destination");
6850                         },
6851                         Ok(_) => panic!("Expected error"),
6852                 }
6853         }
6854
6855         #[test]
6856         fn avoids_recently_failed_paths() {
6857                 // Ensure that the router always avoids all of the `previously_failed_channels` channels by
6858                 // randomly inserting channels into it until we can't find a route anymore.
6859                 let (secp_ctx, network, _, _, logger) = build_graph();
6860                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
6861                 let network_graph = network.read_only();
6862
6863                 let scorer = ln_test_utils::TestScorer::new();
6864                 let mut payment_params = PaymentParameters::from_node_id(nodes[6], 0).with_route_hints(last_hops(&nodes)).unwrap()
6865                         .with_max_path_count(1);
6866                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6867                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6868
6869                 // We should be able to find a route initially, and then after we fail a few random
6870                 // channels eventually we won't be able to any longer.
6871                 let route_params = RouteParameters::from_payment_params_and_value(
6872                         payment_params.clone(), 100);
6873                 assert!(get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger),
6874                         &scorer, &Default::default(), &random_seed_bytes).is_ok());
6875                 loop {
6876                         let route_params = RouteParameters::from_payment_params_and_value(
6877                                 payment_params.clone(), 100);
6878                         if let Ok(route) = get_route(&our_id, &route_params, &network_graph, None,
6879                                 Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes)
6880                         {
6881                                 for chan in route.paths[0].hops.iter() {
6882                                         assert!(!payment_params.previously_failed_channels.contains(&chan.short_channel_id));
6883                                 }
6884                                 let victim = (u64::from_ne_bytes(random_seed_bytes[0..8].try_into().unwrap()) as usize)
6885                                         % route.paths[0].hops.len();
6886                                 payment_params.previously_failed_channels.push(route.paths[0].hops[victim].short_channel_id);
6887                         } else { break; }
6888                 }
6889         }
6890
6891         #[test]
6892         fn limits_path_length() {
6893                 let (secp_ctx, network, _, _, logger) = build_line_graph();
6894                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
6895                 let network_graph = network.read_only();
6896
6897                 let scorer = ln_test_utils::TestScorer::new();
6898                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6899                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6900
6901                 // First check we can actually create a long route on this graph.
6902                 let feasible_payment_params = PaymentParameters::from_node_id(nodes[18], 0);
6903                 let route_params = RouteParameters::from_payment_params_and_value(
6904                         feasible_payment_params, 100);
6905                 let route = get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger),
6906                         &scorer, &Default::default(), &random_seed_bytes).unwrap();
6907                 let path = route.paths[0].hops.iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
6908                 assert!(path.len() == MAX_PATH_LENGTH_ESTIMATE.into());
6909
6910                 // But we can't create a path surpassing the MAX_PATH_LENGTH_ESTIMATE limit.
6911                 let fail_payment_params = PaymentParameters::from_node_id(nodes[19], 0);
6912                 let route_params = RouteParameters::from_payment_params_and_value(
6913                         fail_payment_params, 100);
6914                 match get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger), &scorer,
6915                         &Default::default(), &random_seed_bytes)
6916                 {
6917                         Err(LightningError { err, .. } ) => {
6918                                 assert_eq!(err, "Failed to find a path to the given destination");
6919                         },
6920                         Ok(_) => panic!("Expected error"),
6921                 }
6922         }
6923
6924         #[test]
6925         fn adds_and_limits_cltv_offset() {
6926                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
6927                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
6928
6929                 let scorer = ln_test_utils::TestScorer::new();
6930
6931                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops(&nodes)).unwrap();
6932                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
6933                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6934                 let route_params = RouteParameters::from_payment_params_and_value(
6935                         payment_params.clone(), 100);
6936                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
6937                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6938                 assert_eq!(route.paths.len(), 1);
6939
6940                 let cltv_expiry_deltas_before = route.paths[0].hops.iter().map(|h| h.cltv_expiry_delta).collect::<Vec<u32>>();
6941
6942                 // Check whether the offset added to the last hop by default is in [1 .. DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA]
6943                 let mut route_default = route.clone();
6944                 add_random_cltv_offset(&mut route_default, &payment_params, &network_graph.read_only(), &random_seed_bytes);
6945                 let cltv_expiry_deltas_default = route_default.paths[0].hops.iter().map(|h| h.cltv_expiry_delta).collect::<Vec<u32>>();
6946                 assert_eq!(cltv_expiry_deltas_before.split_last().unwrap().1, cltv_expiry_deltas_default.split_last().unwrap().1);
6947                 assert!(cltv_expiry_deltas_default.last() > cltv_expiry_deltas_before.last());
6948                 assert!(cltv_expiry_deltas_default.last().unwrap() <= &DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA);
6949
6950                 // Check that no offset is added when we restrict the max_total_cltv_expiry_delta
6951                 let mut route_limited = route.clone();
6952                 let limited_max_total_cltv_expiry_delta = cltv_expiry_deltas_before.iter().sum();
6953                 let limited_payment_params = payment_params.with_max_total_cltv_expiry_delta(limited_max_total_cltv_expiry_delta);
6954                 add_random_cltv_offset(&mut route_limited, &limited_payment_params, &network_graph.read_only(), &random_seed_bytes);
6955                 let cltv_expiry_deltas_limited = route_limited.paths[0].hops.iter().map(|h| h.cltv_expiry_delta).collect::<Vec<u32>>();
6956                 assert_eq!(cltv_expiry_deltas_before, cltv_expiry_deltas_limited);
6957         }
6958
6959         #[test]
6960         fn adds_plausible_cltv_offset() {
6961                 let (secp_ctx, network, _, _, logger) = build_graph();
6962                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
6963                 let network_graph = network.read_only();
6964                 let network_nodes = network_graph.nodes();
6965                 let network_channels = network_graph.channels();
6966                 let scorer = ln_test_utils::TestScorer::new();
6967                 let payment_params = PaymentParameters::from_node_id(nodes[3], 0);
6968                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[4u8; 32], Network::Testnet);
6969                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
6970
6971                 let route_params = RouteParameters::from_payment_params_and_value(
6972                         payment_params.clone(), 100);
6973                 let mut route = get_route(&our_id, &route_params, &network_graph, None,
6974                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap();
6975                 add_random_cltv_offset(&mut route, &payment_params, &network_graph, &random_seed_bytes);
6976
6977                 let mut path_plausibility = vec![];
6978
6979                 for p in route.paths {
6980                         // 1. Select random observation point
6981                         let mut prng = ChaCha20::new(&random_seed_bytes, &[0u8; 12]);
6982                         let mut random_bytes = [0u8; ::core::mem::size_of::<usize>()];
6983
6984                         prng.process_in_place(&mut random_bytes);
6985                         let random_path_index = usize::from_be_bytes(random_bytes).wrapping_rem(p.hops.len());
6986                         let observation_point = NodeId::from_pubkey(&p.hops.get(random_path_index).unwrap().pubkey);
6987
6988                         // 2. Calculate what CLTV expiry delta we would observe there
6989                         let observed_cltv_expiry_delta: u32 = p.hops[random_path_index..].iter().map(|h| h.cltv_expiry_delta).sum();
6990
6991                         // 3. Starting from the observation point, find candidate paths
6992                         let mut candidates: VecDeque<(NodeId, Vec<u32>)> = VecDeque::new();
6993                         candidates.push_back((observation_point, vec![]));
6994
6995                         let mut found_plausible_candidate = false;
6996
6997                         'candidate_loop: while let Some((cur_node_id, cur_path_cltv_deltas)) = candidates.pop_front() {
6998                                 if let Some(remaining) = observed_cltv_expiry_delta.checked_sub(cur_path_cltv_deltas.iter().sum::<u32>()) {
6999                                         if remaining == 0 || remaining.wrapping_rem(40) == 0 || remaining.wrapping_rem(144) == 0 {
7000                                                 found_plausible_candidate = true;
7001                                                 break 'candidate_loop;
7002                                         }
7003                                 }
7004
7005                                 if let Some(cur_node) = network_nodes.get(&cur_node_id) {
7006                                         for channel_id in &cur_node.channels {
7007                                                 if let Some(channel_info) = network_channels.get(&channel_id) {
7008                                                         if let Some((dir_info, next_id)) = channel_info.as_directed_from(&cur_node_id) {
7009                                                                 let next_cltv_expiry_delta = dir_info.direction().cltv_expiry_delta as u32;
7010                                                                 if cur_path_cltv_deltas.iter().sum::<u32>()
7011                                                                         .saturating_add(next_cltv_expiry_delta) <= observed_cltv_expiry_delta {
7012                                                                         let mut new_path_cltv_deltas = cur_path_cltv_deltas.clone();
7013                                                                         new_path_cltv_deltas.push(next_cltv_expiry_delta);
7014                                                                         candidates.push_back((*next_id, new_path_cltv_deltas));
7015                                                                 }
7016                                                         }
7017                                                 }
7018                                         }
7019                                 }
7020                         }
7021
7022                         path_plausibility.push(found_plausible_candidate);
7023                 }
7024                 assert!(path_plausibility.iter().all(|x| *x));
7025         }
7026
7027         #[test]
7028         fn builds_correct_path_from_hops() {
7029                 let (secp_ctx, network, _, _, logger) = build_graph();
7030                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
7031                 let network_graph = network.read_only();
7032
7033                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7034                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7035
7036                 let payment_params = PaymentParameters::from_node_id(nodes[3], 0);
7037                 let hops = [nodes[1], nodes[2], nodes[4], nodes[3]];
7038                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 100);
7039                 let route = build_route_from_hops_internal(&our_id, &hops, &route_params, &network_graph,
7040                         Arc::clone(&logger), &random_seed_bytes).unwrap();
7041                 let route_hop_pubkeys = route.paths[0].hops.iter().map(|hop| hop.pubkey).collect::<Vec<_>>();
7042                 assert_eq!(hops.len(), route.paths[0].hops.len());
7043                 for (idx, hop_pubkey) in hops.iter().enumerate() {
7044                         assert!(*hop_pubkey == route_hop_pubkeys[idx]);
7045                 }
7046         }
7047
7048         #[test]
7049         fn avoids_saturating_channels() {
7050                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
7051                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
7052                 let decay_params = ProbabilisticScoringDecayParameters::default();
7053                 let scorer = ProbabilisticScorer::new(decay_params, &*network_graph, Arc::clone(&logger));
7054
7055                 // Set the fee on channel 13 to 100% to match channel 4 giving us two equivalent paths (us
7056                 // -> node 7 -> node2 and us -> node 1 -> node 2) which we should balance over.
7057                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
7058                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
7059                         short_channel_id: 4,
7060                         timestamp: 2,
7061                         flags: 0,
7062                         cltv_expiry_delta: (4 << 4) | 1,
7063                         htlc_minimum_msat: 0,
7064                         htlc_maximum_msat: 250_000_000,
7065                         fee_base_msat: 0,
7066                         fee_proportional_millionths: 0,
7067                         excess_data: Vec::new()
7068                 });
7069                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
7070                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
7071                         short_channel_id: 13,
7072                         timestamp: 2,
7073                         flags: 0,
7074                         cltv_expiry_delta: (13 << 4) | 1,
7075                         htlc_minimum_msat: 0,
7076                         htlc_maximum_msat: 250_000_000,
7077                         fee_base_msat: 0,
7078                         fee_proportional_millionths: 0,
7079                         excess_data: Vec::new()
7080                 });
7081
7082                 let config = UserConfig::default();
7083                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42)
7084                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
7085                         .unwrap();
7086                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7087                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7088                 // 100,000 sats is less than the available liquidity on each channel, set above.
7089                 let route_params = RouteParameters::from_payment_params_and_value(
7090                         payment_params, 100_000_000);
7091                 let route = get_route(&our_id, &route_params, &network_graph.read_only(), None,
7092                         Arc::clone(&logger), &scorer, &ProbabilisticScoringFeeParameters::default(), &random_seed_bytes).unwrap();
7093                 assert_eq!(route.paths.len(), 2);
7094                 assert!((route.paths[0].hops[1].short_channel_id == 4 && route.paths[1].hops[1].short_channel_id == 13) ||
7095                         (route.paths[1].hops[1].short_channel_id == 4 && route.paths[0].hops[1].short_channel_id == 13));
7096         }
7097
7098         #[cfg(feature = "std")]
7099         pub(super) fn random_init_seed() -> u64 {
7100                 // Because the default HashMap in std pulls OS randomness, we can use it as a (bad) RNG.
7101                 use core::hash::{BuildHasher, Hasher};
7102                 let seed = std::collections::hash_map::RandomState::new().build_hasher().finish();
7103                 println!("Using seed of {}", seed);
7104                 seed
7105         }
7106
7107         #[test]
7108         #[cfg(feature = "std")]
7109         fn generate_routes() {
7110                 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
7111
7112                 let logger = ln_test_utils::TestLogger::new();
7113                 let graph = match super::bench_utils::read_network_graph(&logger) {
7114                         Ok(f) => f,
7115                         Err(e) => {
7116                                 eprintln!("{}", e);
7117                                 return;
7118                         },
7119                 };
7120
7121                 let params = ProbabilisticScoringFeeParameters::default();
7122                 let mut scorer = ProbabilisticScorer::new(ProbabilisticScoringDecayParameters::default(), &graph, &logger);
7123                 let features = super::Bolt11InvoiceFeatures::empty();
7124
7125                 super::bench_utils::generate_test_routes(&graph, &mut scorer, &params, features, random_init_seed(), 0, 2);
7126         }
7127
7128         #[test]
7129         #[cfg(feature = "std")]
7130         fn generate_routes_mpp() {
7131                 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
7132
7133                 let logger = ln_test_utils::TestLogger::new();
7134                 let graph = match super::bench_utils::read_network_graph(&logger) {
7135                         Ok(f) => f,
7136                         Err(e) => {
7137                                 eprintln!("{}", e);
7138                                 return;
7139                         },
7140                 };
7141
7142                 let params = ProbabilisticScoringFeeParameters::default();
7143                 let mut scorer = ProbabilisticScorer::new(ProbabilisticScoringDecayParameters::default(), &graph, &logger);
7144                 let features = channelmanager::provided_bolt11_invoice_features(&UserConfig::default());
7145
7146                 super::bench_utils::generate_test_routes(&graph, &mut scorer, &params, features, random_init_seed(), 0, 2);
7147         }
7148
7149         #[test]
7150         #[cfg(feature = "std")]
7151         fn generate_large_mpp_routes() {
7152                 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
7153
7154                 let logger = ln_test_utils::TestLogger::new();
7155                 let graph = match super::bench_utils::read_network_graph(&logger) {
7156                         Ok(f) => f,
7157                         Err(e) => {
7158                                 eprintln!("{}", e);
7159                                 return;
7160                         },
7161                 };
7162
7163                 let params = ProbabilisticScoringFeeParameters::default();
7164                 let mut scorer = ProbabilisticScorer::new(ProbabilisticScoringDecayParameters::default(), &graph, &logger);
7165                 let features = channelmanager::provided_bolt11_invoice_features(&UserConfig::default());
7166
7167                 super::bench_utils::generate_test_routes(&graph, &mut scorer, &params, features, random_init_seed(), 1_000_000, 2);
7168         }
7169
7170         #[test]
7171         fn honors_manual_penalties() {
7172                 let (secp_ctx, network_graph, _, _, logger) = build_line_graph();
7173                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
7174
7175                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7176                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7177
7178                 let mut scorer_params = ProbabilisticScoringFeeParameters::default();
7179                 let scorer = ProbabilisticScorer::new(ProbabilisticScoringDecayParameters::default(), Arc::clone(&network_graph), Arc::clone(&logger));
7180
7181                 // First check set manual penalties are returned by the scorer.
7182                 let usage = ChannelUsage {
7183                         amount_msat: 0,
7184                         inflight_htlc_msat: 0,
7185                         effective_capacity: EffectiveCapacity::Total { capacity_msat: 1_024_000, htlc_maximum_msat: 1_000 },
7186                 };
7187                 scorer_params.set_manual_penalty(&NodeId::from_pubkey(&nodes[3]), 123);
7188                 scorer_params.set_manual_penalty(&NodeId::from_pubkey(&nodes[4]), 456);
7189                 let network_graph = network_graph.read_only();
7190                 let channels = network_graph.channels();
7191                 let channel = channels.get(&5).unwrap();
7192                 let info = channel.as_directed_from(&NodeId::from_pubkey(&nodes[3])).unwrap();
7193                 let candidate: CandidateRouteHop = CandidateRouteHop::PublicHop(PublicHopCandidate {
7194                         info: info.0,
7195                         short_channel_id: 5,
7196                 });
7197                 assert_eq!(scorer.channel_penalty_msat(&candidate, usage, &scorer_params), 456);
7198
7199                 // Then check we can get a normal route
7200                 let payment_params = PaymentParameters::from_node_id(nodes[10], 42);
7201                 let route_params = RouteParameters::from_payment_params_and_value(
7202                         payment_params, 100);
7203                 let route = get_route(&our_id, &route_params, &network_graph, None,
7204                         Arc::clone(&logger), &scorer, &scorer_params, &random_seed_bytes);
7205                 assert!(route.is_ok());
7206
7207                 // Then check that we can't get a route if we ban an intermediate node.
7208                 scorer_params.add_banned(&NodeId::from_pubkey(&nodes[3]));
7209                 let route = get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger), &scorer, &scorer_params,&random_seed_bytes);
7210                 assert!(route.is_err());
7211
7212                 // Finally make sure we can route again, when we remove the ban.
7213                 scorer_params.remove_banned(&NodeId::from_pubkey(&nodes[3]));
7214                 let route = get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger), &scorer, &scorer_params,&random_seed_bytes);
7215                 assert!(route.is_ok());
7216         }
7217
7218         #[test]
7219         fn abide_by_route_hint_max_htlc() {
7220                 // Check that we abide by any htlc_maximum_msat provided in the route hints of the payment
7221                 // params in the final route.
7222                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
7223                 let netgraph = network_graph.read_only();
7224                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
7225                 let scorer = ln_test_utils::TestScorer::new();
7226                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7227                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7228                 let config = UserConfig::default();
7229
7230                 let max_htlc_msat = 50_000;
7231                 let route_hint_1 = RouteHint(vec![RouteHintHop {
7232                         src_node_id: nodes[2],
7233                         short_channel_id: 42,
7234                         fees: RoutingFees {
7235                                 base_msat: 100,
7236                                 proportional_millionths: 0,
7237                         },
7238                         cltv_expiry_delta: 10,
7239                         htlc_minimum_msat: None,
7240                         htlc_maximum_msat: Some(max_htlc_msat),
7241                 }]);
7242                 let dest_node_id = ln_test_utils::pubkey(42);
7243                 let payment_params = PaymentParameters::from_node_id(dest_node_id, 42)
7244                         .with_route_hints(vec![route_hint_1.clone()]).unwrap()
7245                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
7246                         .unwrap();
7247
7248                 // Make sure we'll error if our route hints don't have enough liquidity according to their
7249                 // htlc_maximum_msat.
7250                 let mut route_params = RouteParameters::from_payment_params_and_value(
7251                         payment_params, max_htlc_msat + 1);
7252                 route_params.max_total_routing_fee_msat = None;
7253                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id,
7254                         &route_params, &netgraph, None, Arc::clone(&logger), &scorer, &Default::default(),
7255                         &random_seed_bytes)
7256                 {
7257                         assert_eq!(err, "Failed to find a sufficient route to the given destination");
7258                 } else { panic!(); }
7259
7260                 // Make sure we'll split an MPP payment across route hints if their htlc_maximum_msat warrants.
7261                 let mut route_hint_2 = route_hint_1.clone();
7262                 route_hint_2.0[0].short_channel_id = 43;
7263                 let payment_params = PaymentParameters::from_node_id(dest_node_id, 42)
7264                         .with_route_hints(vec![route_hint_1, route_hint_2]).unwrap()
7265                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
7266                         .unwrap();
7267                 let mut route_params = RouteParameters::from_payment_params_and_value(
7268                         payment_params, max_htlc_msat + 1);
7269                 route_params.max_total_routing_fee_msat = Some(max_htlc_msat * 2);
7270                 let route = get_route(&our_id, &route_params, &netgraph, None, Arc::clone(&logger),
7271                         &scorer, &Default::default(), &random_seed_bytes).unwrap();
7272                 assert_eq!(route.paths.len(), 2);
7273                 assert!(route.paths[0].hops.last().unwrap().fee_msat <= max_htlc_msat);
7274                 assert!(route.paths[1].hops.last().unwrap().fee_msat <= max_htlc_msat);
7275         }
7276
7277         #[test]
7278         fn direct_channel_to_hints_with_max_htlc() {
7279                 // Check that if we have a first hop channel peer that's connected to multiple provided route
7280                 // hints, that we properly split the payment between the route hints if needed.
7281                 let logger = Arc::new(ln_test_utils::TestLogger::new());
7282                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
7283                 let scorer = ln_test_utils::TestScorer::new();
7284                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7285                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7286                 let config = UserConfig::default();
7287
7288                 let our_node_id = ln_test_utils::pubkey(42);
7289                 let intermed_node_id = ln_test_utils::pubkey(43);
7290                 let first_hop = vec![get_channel_details(Some(42), intermed_node_id, InitFeatures::from_le_bytes(vec![0b11]), 10_000_000)];
7291
7292                 let amt_msat = 900_000;
7293                 let max_htlc_msat = 500_000;
7294                 let route_hint_1 = RouteHint(vec![RouteHintHop {
7295                         src_node_id: intermed_node_id,
7296                         short_channel_id: 44,
7297                         fees: RoutingFees {
7298                                 base_msat: 100,
7299                                 proportional_millionths: 0,
7300                         },
7301                         cltv_expiry_delta: 10,
7302                         htlc_minimum_msat: None,
7303                         htlc_maximum_msat: Some(max_htlc_msat),
7304                 }, RouteHintHop {
7305                         src_node_id: intermed_node_id,
7306                         short_channel_id: 45,
7307                         fees: RoutingFees {
7308                                 base_msat: 100,
7309                                 proportional_millionths: 0,
7310                         },
7311                         cltv_expiry_delta: 10,
7312                         htlc_minimum_msat: None,
7313                         // Check that later route hint max htlcs don't override earlier ones
7314                         htlc_maximum_msat: Some(max_htlc_msat - 50),
7315                 }]);
7316                 let mut route_hint_2 = route_hint_1.clone();
7317                 route_hint_2.0[0].short_channel_id = 46;
7318                 route_hint_2.0[1].short_channel_id = 47;
7319                 let dest_node_id = ln_test_utils::pubkey(44);
7320                 let payment_params = PaymentParameters::from_node_id(dest_node_id, 42)
7321                         .with_route_hints(vec![route_hint_1, route_hint_2]).unwrap()
7322                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config))
7323                         .unwrap();
7324
7325                 let route_params = RouteParameters::from_payment_params_and_value(
7326                         payment_params, amt_msat);
7327                 let route = get_route(&our_node_id, &route_params, &network_graph.read_only(),
7328                         Some(&first_hop.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
7329                         &Default::default(), &random_seed_bytes).unwrap();
7330                 assert_eq!(route.paths.len(), 2);
7331                 assert!(route.paths[0].hops.last().unwrap().fee_msat <= max_htlc_msat);
7332                 assert!(route.paths[1].hops.last().unwrap().fee_msat <= max_htlc_msat);
7333                 assert_eq!(route.get_total_amount(), amt_msat);
7334
7335                 // Re-run but with two first hop channels connected to the same route hint peers that must be
7336                 // split between.
7337                 let first_hops = vec![
7338                         get_channel_details(Some(42), intermed_node_id, InitFeatures::from_le_bytes(vec![0b11]), amt_msat - 10),
7339                         get_channel_details(Some(43), intermed_node_id, InitFeatures::from_le_bytes(vec![0b11]), amt_msat - 10),
7340                 ];
7341                 let route = get_route(&our_node_id, &route_params, &network_graph.read_only(),
7342                         Some(&first_hops.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
7343                         &Default::default(), &random_seed_bytes).unwrap();
7344                 assert_eq!(route.paths.len(), 2);
7345                 assert!(route.paths[0].hops.last().unwrap().fee_msat <= max_htlc_msat);
7346                 assert!(route.paths[1].hops.last().unwrap().fee_msat <= max_htlc_msat);
7347                 assert_eq!(route.get_total_amount(), amt_msat);
7348
7349                 // Make sure this works for blinded route hints.
7350                 let blinded_path = BlindedPath {
7351                         introduction_node: IntroductionNode::NodeId(intermed_node_id),
7352                         blinding_point: ln_test_utils::pubkey(42),
7353                         blinded_hops: vec![
7354                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42), encrypted_payload: vec![] },
7355                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(43), encrypted_payload: vec![] },
7356                         ],
7357                 };
7358                 let blinded_payinfo = BlindedPayInfo {
7359                         fee_base_msat: 100,
7360                         fee_proportional_millionths: 0,
7361                         htlc_minimum_msat: 1,
7362                         htlc_maximum_msat: max_htlc_msat,
7363                         cltv_expiry_delta: 10,
7364                         features: BlindedHopFeatures::empty(),
7365                 };
7366                 let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
7367                 let payment_params = PaymentParameters::blinded(vec![
7368                         (blinded_payinfo.clone(), blinded_path.clone()),
7369                         (blinded_payinfo.clone(), blinded_path.clone())])
7370                         .with_bolt12_features(bolt12_features).unwrap();
7371                 let route_params = RouteParameters::from_payment_params_and_value(
7372                         payment_params, amt_msat);
7373                 let route = get_route(&our_node_id, &route_params, &network_graph.read_only(),
7374                         Some(&first_hops.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
7375                         &Default::default(), &random_seed_bytes).unwrap();
7376                 assert_eq!(route.paths.len(), 2);
7377                 assert!(route.paths[0].hops.last().unwrap().fee_msat <= max_htlc_msat);
7378                 assert!(route.paths[1].hops.last().unwrap().fee_msat <= max_htlc_msat);
7379                 assert_eq!(route.get_total_amount(), amt_msat);
7380         }
7381
7382         #[test]
7383         fn blinded_route_ser() {
7384                 let blinded_path_1 = BlindedPath {
7385                         introduction_node: IntroductionNode::NodeId(ln_test_utils::pubkey(42)),
7386                         blinding_point: ln_test_utils::pubkey(43),
7387                         blinded_hops: vec![
7388                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(44), encrypted_payload: Vec::new() },
7389                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(45), encrypted_payload: Vec::new() }
7390                         ],
7391                 };
7392                 let blinded_path_2 = BlindedPath {
7393                         introduction_node: IntroductionNode::NodeId(ln_test_utils::pubkey(46)),
7394                         blinding_point: ln_test_utils::pubkey(47),
7395                         blinded_hops: vec![
7396                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(48), encrypted_payload: Vec::new() },
7397                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(49), encrypted_payload: Vec::new() }
7398                         ],
7399                 };
7400                 // (De)serialize a Route with 1 blinded path out of two total paths.
7401                 let mut route = Route { paths: vec![Path {
7402                         hops: vec![RouteHop {
7403                                 pubkey: ln_test_utils::pubkey(50),
7404                                 node_features: NodeFeatures::empty(),
7405                                 short_channel_id: 42,
7406                                 channel_features: ChannelFeatures::empty(),
7407                                 fee_msat: 100,
7408                                 cltv_expiry_delta: 0,
7409                                 maybe_announced_channel: true,
7410                         }],
7411                         blinded_tail: Some(BlindedTail {
7412                                 hops: blinded_path_1.blinded_hops,
7413                                 blinding_point: blinded_path_1.blinding_point,
7414                                 excess_final_cltv_expiry_delta: 40,
7415                                 final_value_msat: 100,
7416                         })}, Path {
7417                         hops: vec![RouteHop {
7418                                 pubkey: ln_test_utils::pubkey(51),
7419                                 node_features: NodeFeatures::empty(),
7420                                 short_channel_id: 43,
7421                                 channel_features: ChannelFeatures::empty(),
7422                                 fee_msat: 100,
7423                                 cltv_expiry_delta: 0,
7424                                 maybe_announced_channel: true,
7425                         }], blinded_tail: None }],
7426                         route_params: None,
7427                 };
7428                 let encoded_route = route.encode();
7429                 let decoded_route: Route = Readable::read(&mut Cursor::new(&encoded_route[..])).unwrap();
7430                 assert_eq!(decoded_route.paths[0].blinded_tail, route.paths[0].blinded_tail);
7431                 assert_eq!(decoded_route.paths[1].blinded_tail, route.paths[1].blinded_tail);
7432
7433                 // (De)serialize a Route with two paths, each containing a blinded tail.
7434                 route.paths[1].blinded_tail = Some(BlindedTail {
7435                         hops: blinded_path_2.blinded_hops,
7436                         blinding_point: blinded_path_2.blinding_point,
7437                         excess_final_cltv_expiry_delta: 41,
7438                         final_value_msat: 101,
7439                 });
7440                 let encoded_route = route.encode();
7441                 let decoded_route: Route = Readable::read(&mut Cursor::new(&encoded_route[..])).unwrap();
7442                 assert_eq!(decoded_route.paths[0].blinded_tail, route.paths[0].blinded_tail);
7443                 assert_eq!(decoded_route.paths[1].blinded_tail, route.paths[1].blinded_tail);
7444         }
7445
7446         #[test]
7447         fn blinded_path_inflight_processing() {
7448                 // Ensure we'll score the channel that's inbound to a blinded path's introduction node, and
7449                 // account for the blinded tail's final amount_msat.
7450                 let mut inflight_htlcs = InFlightHtlcs::new();
7451                 let blinded_path = BlindedPath {
7452                         introduction_node: IntroductionNode::NodeId(ln_test_utils::pubkey(43)),
7453                         blinding_point: ln_test_utils::pubkey(48),
7454                         blinded_hops: vec![BlindedHop { blinded_node_id: ln_test_utils::pubkey(49), encrypted_payload: Vec::new() }],
7455                 };
7456                 let path = Path {
7457                         hops: vec![RouteHop {
7458                                 pubkey: ln_test_utils::pubkey(42),
7459                                 node_features: NodeFeatures::empty(),
7460                                 short_channel_id: 42,
7461                                 channel_features: ChannelFeatures::empty(),
7462                                 fee_msat: 100,
7463                                 cltv_expiry_delta: 0,
7464                                 maybe_announced_channel: false,
7465                         },
7466                         RouteHop {
7467                                 pubkey: ln_test_utils::pubkey(43),
7468                                 node_features: NodeFeatures::empty(),
7469                                 short_channel_id: 43,
7470                                 channel_features: ChannelFeatures::empty(),
7471                                 fee_msat: 1,
7472                                 cltv_expiry_delta: 0,
7473                                 maybe_announced_channel: false,
7474                         }],
7475                         blinded_tail: Some(BlindedTail {
7476                                 hops: blinded_path.blinded_hops,
7477                                 blinding_point: blinded_path.blinding_point,
7478                                 excess_final_cltv_expiry_delta: 0,
7479                                 final_value_msat: 200,
7480                         }),
7481                 };
7482                 inflight_htlcs.process_path(&path, ln_test_utils::pubkey(44));
7483                 assert_eq!(*inflight_htlcs.0.get(&(42, true)).unwrap(), 301);
7484                 assert_eq!(*inflight_htlcs.0.get(&(43, false)).unwrap(), 201);
7485         }
7486
7487         #[test]
7488         fn blinded_path_cltv_shadow_offset() {
7489                 // Make sure we add a shadow offset when sending to blinded paths.
7490                 let blinded_path = BlindedPath {
7491                         introduction_node: IntroductionNode::NodeId(ln_test_utils::pubkey(43)),
7492                         blinding_point: ln_test_utils::pubkey(44),
7493                         blinded_hops: vec![
7494                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(45), encrypted_payload: Vec::new() },
7495                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(46), encrypted_payload: Vec::new() }
7496                         ],
7497                 };
7498                 let mut route = Route { paths: vec![Path {
7499                         hops: vec![RouteHop {
7500                                 pubkey: ln_test_utils::pubkey(42),
7501                                 node_features: NodeFeatures::empty(),
7502                                 short_channel_id: 42,
7503                                 channel_features: ChannelFeatures::empty(),
7504                                 fee_msat: 100,
7505                                 cltv_expiry_delta: 0,
7506                                 maybe_announced_channel: false,
7507                         },
7508                         RouteHop {
7509                                 pubkey: ln_test_utils::pubkey(43),
7510                                 node_features: NodeFeatures::empty(),
7511                                 short_channel_id: 43,
7512                                 channel_features: ChannelFeatures::empty(),
7513                                 fee_msat: 1,
7514                                 cltv_expiry_delta: 0,
7515                                 maybe_announced_channel: false,
7516                         }
7517                         ],
7518                         blinded_tail: Some(BlindedTail {
7519                                 hops: blinded_path.blinded_hops,
7520                                 blinding_point: blinded_path.blinding_point,
7521                                 excess_final_cltv_expiry_delta: 0,
7522                                 final_value_msat: 200,
7523                         }),
7524                 }], route_params: None};
7525
7526                 let payment_params = PaymentParameters::from_node_id(ln_test_utils::pubkey(47), 18);
7527                 let (_, network_graph, _, _, _) = build_line_graph();
7528                 add_random_cltv_offset(&mut route, &payment_params, &network_graph.read_only(), &[0; 32]);
7529                 assert_eq!(route.paths[0].blinded_tail.as_ref().unwrap().excess_final_cltv_expiry_delta, 40);
7530                 assert_eq!(route.paths[0].hops.last().unwrap().cltv_expiry_delta, 40);
7531         }
7532
7533         #[test]
7534         fn simple_blinded_route_hints() {
7535                 do_simple_blinded_route_hints(1);
7536                 do_simple_blinded_route_hints(2);
7537                 do_simple_blinded_route_hints(3);
7538         }
7539
7540         fn do_simple_blinded_route_hints(num_blinded_hops: usize) {
7541                 // Check that we can generate a route to a blinded path with the expected hops.
7542                 let (secp_ctx, network, _, _, logger) = build_graph();
7543                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
7544                 let network_graph = network.read_only();
7545
7546                 let scorer = ln_test_utils::TestScorer::new();
7547                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7548                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7549
7550                 let mut blinded_path = BlindedPath {
7551                         introduction_node: IntroductionNode::NodeId(nodes[2]),
7552                         blinding_point: ln_test_utils::pubkey(42),
7553                         blinded_hops: Vec::with_capacity(num_blinded_hops),
7554                 };
7555                 for i in 0..num_blinded_hops {
7556                         blinded_path.blinded_hops.push(
7557                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 + i as u8), encrypted_payload: Vec::new() },
7558                         );
7559                 }
7560                 let blinded_payinfo = BlindedPayInfo {
7561                         fee_base_msat: 100,
7562                         fee_proportional_millionths: 500,
7563                         htlc_minimum_msat: 1000,
7564                         htlc_maximum_msat: 100_000_000,
7565                         cltv_expiry_delta: 15,
7566                         features: BlindedHopFeatures::empty(),
7567                 };
7568
7569                 let payment_params = PaymentParameters::blinded(vec![(blinded_payinfo.clone(), blinded_path.clone())]);
7570                 let route_params = RouteParameters::from_payment_params_and_value(
7571                         payment_params, 1001);
7572                 let route = get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger),
7573                         &scorer, &Default::default(), &random_seed_bytes).unwrap();
7574                 assert_eq!(route.paths.len(), 1);
7575                 assert_eq!(route.paths[0].hops.len(), 2);
7576
7577                 let tail = route.paths[0].blinded_tail.as_ref().unwrap();
7578                 assert_eq!(tail.hops, blinded_path.blinded_hops);
7579                 assert_eq!(tail.excess_final_cltv_expiry_delta, 0);
7580                 assert_eq!(tail.final_value_msat, 1001);
7581
7582                 let final_hop = route.paths[0].hops.last().unwrap();
7583                 assert_eq!(
7584                         NodeId::from_pubkey(&final_hop.pubkey),
7585                         *blinded_path.public_introduction_node_id(&network_graph).unwrap()
7586                 );
7587                 if tail.hops.len() > 1 {
7588                         assert_eq!(final_hop.fee_msat,
7589                                 blinded_payinfo.fee_base_msat as u64 + blinded_payinfo.fee_proportional_millionths as u64 * tail.final_value_msat / 1000000);
7590                         assert_eq!(final_hop.cltv_expiry_delta, blinded_payinfo.cltv_expiry_delta as u32);
7591                 } else {
7592                         assert_eq!(final_hop.fee_msat, 0);
7593                         assert_eq!(final_hop.cltv_expiry_delta, 0);
7594                 }
7595         }
7596
7597         #[test]
7598         fn blinded_path_routing_errors() {
7599                 // Check that we can generate a route to a blinded path with the expected hops.
7600                 let (secp_ctx, network, _, _, logger) = build_graph();
7601                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
7602                 let network_graph = network.read_only();
7603
7604                 let scorer = ln_test_utils::TestScorer::new();
7605                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7606                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7607
7608                 let mut invalid_blinded_path = BlindedPath {
7609                         introduction_node: IntroductionNode::NodeId(nodes[2]),
7610                         blinding_point: ln_test_utils::pubkey(42),
7611                         blinded_hops: vec![
7612                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(43), encrypted_payload: vec![0; 43] },
7613                         ],
7614                 };
7615                 let blinded_payinfo = BlindedPayInfo {
7616                         fee_base_msat: 100,
7617                         fee_proportional_millionths: 500,
7618                         htlc_minimum_msat: 1000,
7619                         htlc_maximum_msat: 100_000_000,
7620                         cltv_expiry_delta: 15,
7621                         features: BlindedHopFeatures::empty(),
7622                 };
7623
7624                 let mut invalid_blinded_path_2 = invalid_blinded_path.clone();
7625                 invalid_blinded_path_2.introduction_node = IntroductionNode::NodeId(ln_test_utils::pubkey(45));
7626                 let payment_params = PaymentParameters::blinded(vec![
7627                         (blinded_payinfo.clone(), invalid_blinded_path.clone()),
7628                         (blinded_payinfo.clone(), invalid_blinded_path_2)]);
7629                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 1001);
7630                 match get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger),
7631                         &scorer, &Default::default(), &random_seed_bytes)
7632                 {
7633                         Err(LightningError { err, .. }) => {
7634                                 assert_eq!(err, "1-hop blinded paths must all have matching introduction node ids");
7635                         },
7636                         _ => panic!("Expected error")
7637                 }
7638
7639                 invalid_blinded_path.introduction_node = IntroductionNode::NodeId(our_id);
7640                 let payment_params = PaymentParameters::blinded(vec![(blinded_payinfo.clone(), invalid_blinded_path.clone())]);
7641                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 1001);
7642                 match get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger), &scorer,
7643                         &Default::default(), &random_seed_bytes)
7644                 {
7645                         Err(LightningError { err, .. }) => {
7646                                 assert_eq!(err, "Cannot generate a route to blinded paths if we are the introduction node to all of them");
7647                         },
7648                         _ => panic!("Expected error")
7649                 }
7650
7651                 invalid_blinded_path.introduction_node = IntroductionNode::NodeId(ln_test_utils::pubkey(46));
7652                 invalid_blinded_path.blinded_hops.clear();
7653                 let payment_params = PaymentParameters::blinded(vec![(blinded_payinfo, invalid_blinded_path)]);
7654                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, 1001);
7655                 match get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger), &scorer,
7656                         &Default::default(), &random_seed_bytes)
7657                 {
7658                         Err(LightningError { err, .. }) => {
7659                                 assert_eq!(err, "0-hop blinded path provided");
7660                         },
7661                         _ => panic!("Expected error")
7662                 }
7663         }
7664
7665         #[test]
7666         fn matching_intro_node_paths_provided() {
7667                 // Check that if multiple blinded paths with the same intro node are provided in payment
7668                 // parameters, we'll return the correct paths in the resulting MPP route.
7669                 let (secp_ctx, network, _, _, logger) = build_graph();
7670                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
7671                 let network_graph = network.read_only();
7672
7673                 let scorer = ln_test_utils::TestScorer::new();
7674                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7675                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7676                 let config = UserConfig::default();
7677
7678                 let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
7679                 let blinded_path_1 = BlindedPath {
7680                         introduction_node: IntroductionNode::NodeId(nodes[2]),
7681                         blinding_point: ln_test_utils::pubkey(42),
7682                         blinded_hops: vec![
7683                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() },
7684                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }
7685                         ],
7686                 };
7687                 let blinded_payinfo_1 = BlindedPayInfo {
7688                         fee_base_msat: 0,
7689                         fee_proportional_millionths: 0,
7690                         htlc_minimum_msat: 0,
7691                         htlc_maximum_msat: 30_000,
7692                         cltv_expiry_delta: 0,
7693                         features: BlindedHopFeatures::empty(),
7694                 };
7695
7696                 let mut blinded_path_2 = blinded_path_1.clone();
7697                 blinded_path_2.blinding_point = ln_test_utils::pubkey(43);
7698                 let mut blinded_payinfo_2 = blinded_payinfo_1.clone();
7699                 blinded_payinfo_2.htlc_maximum_msat = 70_000;
7700
7701                 let blinded_hints = vec![
7702                         (blinded_payinfo_1.clone(), blinded_path_1.clone()),
7703                         (blinded_payinfo_2.clone(), blinded_path_2.clone()),
7704                 ];
7705                 let payment_params = PaymentParameters::blinded(blinded_hints.clone())
7706                         .with_bolt12_features(bolt12_features).unwrap();
7707
7708                 let mut route_params = RouteParameters::from_payment_params_and_value(payment_params, 100_000);
7709                 route_params.max_total_routing_fee_msat = Some(100_000);
7710                 let route = get_route(&our_id, &route_params, &network_graph, None, Arc::clone(&logger),
7711                         &scorer, &Default::default(), &random_seed_bytes).unwrap();
7712                 assert_eq!(route.paths.len(), 2);
7713                 let mut total_amount_paid_msat = 0;
7714                 for path in route.paths.into_iter() {
7715                         assert_eq!(path.hops.last().unwrap().pubkey, nodes[2]);
7716                         if let Some(bt) = &path.blinded_tail {
7717                                 assert_eq!(bt.blinding_point,
7718                                         blinded_hints.iter().find(|(p, _)| p.htlc_maximum_msat == path.final_value_msat())
7719                                                 .map(|(_, bp)| bp.blinding_point).unwrap());
7720                         } else { panic!(); }
7721                         total_amount_paid_msat += path.final_value_msat();
7722                 }
7723                 assert_eq!(total_amount_paid_msat, 100_000);
7724         }
7725
7726         #[test]
7727         fn direct_to_intro_node() {
7728                 // This previously caused a debug panic in the router when asserting
7729                 // `used_liquidity_msat <= hop_max_msat`, because when adding first_hop<>blinded_route_hint
7730                 // direct channels we failed to account for the fee charged for use of the blinded path.
7731
7732                 // Build a graph:
7733                 // node0 -1(1)2 - node1
7734                 // such that there isn't enough liquidity to reach node1, but the router thinks there is if it
7735                 // doesn't account for the blinded path fee.
7736
7737                 let secp_ctx = Secp256k1::new();
7738                 let logger = Arc::new(ln_test_utils::TestLogger::new());
7739                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
7740                 let gossip_sync = P2PGossipSync::new(Arc::clone(&network_graph), None, Arc::clone(&logger));
7741                 let scorer = ln_test_utils::TestScorer::new();
7742                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7743                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7744
7745                 let amt_msat = 10_000_000;
7746                 let (_, _, privkeys, nodes) = get_nodes(&secp_ctx);
7747                 add_channel(&gossip_sync, &secp_ctx, &privkeys[0], &privkeys[1],
7748                         ChannelFeatures::from_le_bytes(id_to_feature_flags(1)), 1);
7749                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
7750                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
7751                         short_channel_id: 1,
7752                         timestamp: 1,
7753                         flags: 0,
7754                         cltv_expiry_delta: 42,
7755                         htlc_minimum_msat: 1_000,
7756                         htlc_maximum_msat: 10_000_000,
7757                         fee_base_msat: 800,
7758                         fee_proportional_millionths: 0,
7759                         excess_data: Vec::new()
7760                 });
7761                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
7762                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
7763                         short_channel_id: 1,
7764                         timestamp: 1,
7765                         flags: 1,
7766                         cltv_expiry_delta: 42,
7767                         htlc_minimum_msat: 1_000,
7768                         htlc_maximum_msat: 10_000_000,
7769                         fee_base_msat: 800,
7770                         fee_proportional_millionths: 0,
7771                         excess_data: Vec::new()
7772                 });
7773                 let first_hops = vec![
7774                         get_channel_details(Some(1), nodes[1], InitFeatures::from_le_bytes(vec![0b11]), 10_000_000)];
7775
7776                 let blinded_path = BlindedPath {
7777                         introduction_node: IntroductionNode::NodeId(nodes[1]),
7778                         blinding_point: ln_test_utils::pubkey(42),
7779                         blinded_hops: vec![
7780                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() },
7781                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }
7782                         ],
7783                 };
7784                 let blinded_payinfo = BlindedPayInfo {
7785                         fee_base_msat: 1000,
7786                         fee_proportional_millionths: 0,
7787                         htlc_minimum_msat: 1000,
7788                         htlc_maximum_msat: MAX_VALUE_MSAT,
7789                         cltv_expiry_delta: 0,
7790                         features: BlindedHopFeatures::empty(),
7791                 };
7792                 let blinded_hints = vec![(blinded_payinfo.clone(), blinded_path)];
7793
7794                 let payment_params = PaymentParameters::blinded(blinded_hints.clone());
7795
7796                 let netgraph = network_graph.read_only();
7797                 let route_params = RouteParameters::from_payment_params_and_value(
7798                         payment_params.clone(), amt_msat);
7799                 if let Err(LightningError { err, .. }) = get_route(&nodes[0], &route_params, &netgraph,
7800                         Some(&first_hops.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
7801                         &Default::default(), &random_seed_bytes) {
7802                                 assert_eq!(err, "Failed to find a path to the given destination");
7803                 } else { panic!("Expected error") }
7804
7805                 // Sending an exact amount accounting for the blinded path fee works.
7806                 let amt_minus_blinded_path_fee = amt_msat - blinded_payinfo.fee_base_msat as u64;
7807                 let route_params = RouteParameters::from_payment_params_and_value(
7808                         payment_params, amt_minus_blinded_path_fee);
7809                 let route = get_route(&nodes[0], &route_params, &netgraph,
7810                         Some(&first_hops.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
7811                         &Default::default(), &random_seed_bytes).unwrap();
7812                 assert_eq!(route.get_total_fees(), blinded_payinfo.fee_base_msat as u64);
7813                 assert_eq!(route.get_total_amount(), amt_minus_blinded_path_fee);
7814         }
7815
7816         #[test]
7817         fn direct_to_matching_intro_nodes() {
7818                 // This previously caused us to enter `unreachable` code in the following situation:
7819                 // 1. We add a route candidate for intro_node contributing a high amount
7820                 // 2. We add a first_hop<>intro_node route candidate for the same high amount
7821                 // 3. We see a cheaper blinded route hint for the same intro node but a much lower contribution
7822                 //    amount, and update our route candidate for intro_node for the lower amount
7823                 // 4. We then attempt to update the aforementioned first_hop<>intro_node route candidate for the
7824                 //    lower contribution amount, but fail (this was previously caused by failure to account for
7825                 //    blinded path fees when adding first_hop<>intro_node candidates)
7826                 // 5. We go to construct the path from these route candidates and our first_hop<>intro_node
7827                 //    candidate still thinks its path is contributing the original higher amount. This caused us
7828                 //    to hit an `unreachable` overflow when calculating the cheaper intro_node fees over the
7829                 //    larger amount
7830                 let secp_ctx = Secp256k1::new();
7831                 let logger = Arc::new(ln_test_utils::TestLogger::new());
7832                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
7833                 let scorer = ln_test_utils::TestScorer::new();
7834                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7835                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7836                 let config = UserConfig::default();
7837
7838                 // Values are taken from the fuzz input that uncovered this panic.
7839                 let amt_msat = 21_7020_5185_1403_2640;
7840                 let (_, _, _, nodes) = get_nodes(&secp_ctx);
7841                 let first_hops = vec![
7842                         get_channel_details(Some(1), nodes[1], channelmanager::provided_init_features(&config),
7843                                 18446744073709551615)];
7844
7845                 let blinded_path = BlindedPath {
7846                         introduction_node: IntroductionNode::NodeId(nodes[1]),
7847                         blinding_point: ln_test_utils::pubkey(42),
7848                         blinded_hops: vec![
7849                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() },
7850                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }
7851                         ],
7852                 };
7853                 let blinded_payinfo = BlindedPayInfo {
7854                         fee_base_msat: 5046_2720,
7855                         fee_proportional_millionths: 0,
7856                         htlc_minimum_msat: 4503_5996_2737_0496,
7857                         htlc_maximum_msat: 45_0359_9627_3704_9600,
7858                         cltv_expiry_delta: 0,
7859                         features: BlindedHopFeatures::empty(),
7860                 };
7861                 let mut blinded_hints = vec![
7862                         (blinded_payinfo.clone(), blinded_path.clone()),
7863                         (blinded_payinfo.clone(), blinded_path.clone()),
7864                 ];
7865                 blinded_hints[1].0.fee_base_msat = 419_4304;
7866                 blinded_hints[1].0.fee_proportional_millionths = 257;
7867                 blinded_hints[1].0.htlc_minimum_msat = 280_8908_6115_8400;
7868                 blinded_hints[1].0.htlc_maximum_msat = 2_8089_0861_1584_0000;
7869                 blinded_hints[1].0.cltv_expiry_delta = 0;
7870
7871                 let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
7872                 let payment_params = PaymentParameters::blinded(blinded_hints.clone())
7873                         .with_bolt12_features(bolt12_features).unwrap();
7874
7875                 let netgraph = network_graph.read_only();
7876                 let route_params = RouteParameters::from_payment_params_and_value(
7877                         payment_params, amt_msat);
7878                 let route = get_route(&nodes[0], &route_params, &netgraph,
7879                         Some(&first_hops.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
7880                         &Default::default(), &random_seed_bytes).unwrap();
7881                 assert_eq!(route.get_total_fees(), blinded_payinfo.fee_base_msat as u64);
7882                 assert_eq!(route.get_total_amount(), amt_msat);
7883         }
7884
7885         #[test]
7886         fn we_are_intro_node_candidate_hops() {
7887                 // This previously led to a panic in the router because we'd generate a Path with only a
7888                 // BlindedTail and 0 unblinded hops, due to the only candidate hops being blinded route hints
7889                 // where the origin node is the intro node. We now fully disallow considering candidate hops
7890                 // where the origin node is the intro node.
7891                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
7892                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
7893                 let scorer = ln_test_utils::TestScorer::new();
7894                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7895                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7896                 let config = UserConfig::default();
7897
7898                 // Values are taken from the fuzz input that uncovered this panic.
7899                 let amt_msat = 21_7020_5185_1423_0019;
7900
7901                 let blinded_path = BlindedPath {
7902                         introduction_node: IntroductionNode::NodeId(our_id),
7903                         blinding_point: ln_test_utils::pubkey(42),
7904                         blinded_hops: vec![
7905                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() },
7906                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }
7907                         ],
7908                 };
7909                 let blinded_payinfo = BlindedPayInfo {
7910                         fee_base_msat: 5052_9027,
7911                         fee_proportional_millionths: 0,
7912                         htlc_minimum_msat: 21_7020_5185_1423_0019,
7913                         htlc_maximum_msat: 1844_6744_0737_0955_1615,
7914                         cltv_expiry_delta: 0,
7915                         features: BlindedHopFeatures::empty(),
7916                 };
7917                 let mut blinded_hints = vec![
7918                         (blinded_payinfo.clone(), blinded_path.clone()),
7919                         (blinded_payinfo.clone(), blinded_path.clone()),
7920                 ];
7921                 blinded_hints[1].1.introduction_node = IntroductionNode::NodeId(nodes[6]);
7922
7923                 let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
7924                 let payment_params = PaymentParameters::blinded(blinded_hints.clone())
7925                         .with_bolt12_features(bolt12_features.clone()).unwrap();
7926
7927                 let netgraph = network_graph.read_only();
7928                 let route_params = RouteParameters::from_payment_params_and_value(
7929                         payment_params, amt_msat);
7930                 if let Err(LightningError { err, .. }) = get_route(
7931                         &our_id, &route_params, &netgraph, None, Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes
7932                 ) {
7933                         assert_eq!(err, "Failed to find a path to the given destination");
7934                 } else { panic!() }
7935         }
7936
7937         #[test]
7938         fn we_are_intro_node_bp_in_final_path_fee_calc() {
7939                 // This previously led to a debug panic in the router because we'd find an invalid Path with
7940                 // 0 unblinded hops and a blinded tail, leading to the generation of a final
7941                 // PaymentPathHop::fee_msat that included both the blinded path fees and the final value of
7942                 // the payment, when it was intended to only include the final value of the payment.
7943                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
7944                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
7945                 let scorer = ln_test_utils::TestScorer::new();
7946                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
7947                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
7948                 let config = UserConfig::default();
7949
7950                 // Values are taken from the fuzz input that uncovered this panic.
7951                 let amt_msat = 21_7020_5185_1423_0019;
7952
7953                 let blinded_path = BlindedPath {
7954                         introduction_node: IntroductionNode::NodeId(our_id),
7955                         blinding_point: ln_test_utils::pubkey(42),
7956                         blinded_hops: vec![
7957                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() },
7958                                 BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }
7959                         ],
7960                 };
7961                 let blinded_payinfo = BlindedPayInfo {
7962                         fee_base_msat: 10_4425_1395,
7963                         fee_proportional_millionths: 0,
7964                         htlc_minimum_msat: 21_7301_9934_9094_0931,
7965                         htlc_maximum_msat: 1844_6744_0737_0955_1615,
7966                         cltv_expiry_delta: 0,
7967                         features: BlindedHopFeatures::empty(),
7968                 };
7969                 let mut blinded_hints = vec![
7970                         (blinded_payinfo.clone(), blinded_path.clone()),
7971                         (blinded_payinfo.clone(), blinded_path.clone()),
7972                         (blinded_payinfo.clone(), blinded_path.clone()),
7973                 ];
7974                 blinded_hints[1].0.fee_base_msat = 5052_9027;
7975                 blinded_hints[1].0.htlc_minimum_msat = 21_7020_5185_1423_0019;
7976                 blinded_hints[1].0.htlc_maximum_msat = 1844_6744_0737_0955_1615;
7977
7978                 blinded_hints[2].1.introduction_node = IntroductionNode::NodeId(nodes[6]);
7979
7980                 let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
7981                 let payment_params = PaymentParameters::blinded(blinded_hints.clone())
7982                         .with_bolt12_features(bolt12_features.clone()).unwrap();
7983
7984                 let netgraph = network_graph.read_only();
7985                 let route_params = RouteParameters::from_payment_params_and_value(
7986                         payment_params, amt_msat);
7987                 if let Err(LightningError { err, .. }) = get_route(
7988                         &our_id, &route_params, &netgraph, None, Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes
7989                 ) {
7990                         assert_eq!(err, "Failed to find a path to the given destination");
7991                 } else { panic!() }
7992         }
7993
7994         #[test]
7995         fn min_htlc_overpay_violates_max_htlc() {
7996                 do_min_htlc_overpay_violates_max_htlc(true);
7997                 do_min_htlc_overpay_violates_max_htlc(false);
7998         }
7999         fn do_min_htlc_overpay_violates_max_htlc(blinded_payee: bool) {
8000                 // Test that if overpaying to meet a later hop's min_htlc and causes us to violate an earlier
8001                 // hop's max_htlc, we don't consider that candidate hop valid. Previously we would add this hop
8002                 // to `targets` and build an invalid path with it, and subsequently hit a debug panic asserting
8003                 // that the used liquidity for a hop was less than its available liquidity limit.
8004                 let secp_ctx = Secp256k1::new();
8005                 let logger = Arc::new(ln_test_utils::TestLogger::new());
8006                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
8007                 let scorer = ln_test_utils::TestScorer::new();
8008                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
8009                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8010                 let config = UserConfig::default();
8011
8012                 // Values are taken from the fuzz input that uncovered this panic.
8013                 let amt_msat = 7_4009_8048;
8014                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
8015                 let first_hop_outbound_capacity = 2_7345_2000;
8016                 let first_hops = vec![get_channel_details(
8017                         Some(200), nodes[0], channelmanager::provided_init_features(&config),
8018                         first_hop_outbound_capacity
8019                 )];
8020
8021                 let base_fee = 1_6778_3453;
8022                 let htlc_min = 2_5165_8240;
8023                 let payment_params = if blinded_payee {
8024                         let blinded_path = BlindedPath {
8025                                 introduction_node: IntroductionNode::NodeId(nodes[0]),
8026                                 blinding_point: ln_test_utils::pubkey(42),
8027                                 blinded_hops: vec![
8028                                         BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() },
8029                                         BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }
8030                                 ],
8031                         };
8032                         let blinded_payinfo = BlindedPayInfo {
8033                                 fee_base_msat: base_fee,
8034                                 fee_proportional_millionths: 0,
8035                                 htlc_minimum_msat: htlc_min,
8036                                 htlc_maximum_msat: htlc_min * 1000,
8037                                 cltv_expiry_delta: 0,
8038                                 features: BlindedHopFeatures::empty(),
8039                         };
8040                         let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
8041                         PaymentParameters::blinded(vec![(blinded_payinfo, blinded_path)])
8042                                 .with_bolt12_features(bolt12_features.clone()).unwrap()
8043                 } else {
8044                         let route_hint = RouteHint(vec![RouteHintHop {
8045                                 src_node_id: nodes[0],
8046                                 short_channel_id: 42,
8047                                 fees: RoutingFees {
8048                                         base_msat: base_fee,
8049                                         proportional_millionths: 0,
8050                                 },
8051                                 cltv_expiry_delta: 10,
8052                                 htlc_minimum_msat: Some(htlc_min),
8053                                 htlc_maximum_msat: None,
8054                         }]);
8055
8056                         PaymentParameters::from_node_id(nodes[1], 42)
8057                                 .with_route_hints(vec![route_hint]).unwrap()
8058                                 .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config)).unwrap()
8059                 };
8060
8061                 let netgraph = network_graph.read_only();
8062                 let route_params = RouteParameters::from_payment_params_and_value(
8063                         payment_params, amt_msat);
8064                 if let Err(LightningError { err, .. }) = get_route(
8065                         &our_id, &route_params, &netgraph, Some(&first_hops.iter().collect::<Vec<_>>()),
8066                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes
8067                 ) {
8068                         assert_eq!(err, "Failed to find a path to the given destination");
8069                 } else { panic!() }
8070         }
8071
8072         #[test]
8073         fn previously_used_liquidity_violates_max_htlc() {
8074                 do_previously_used_liquidity_violates_max_htlc(true);
8075                 do_previously_used_liquidity_violates_max_htlc(false);
8076
8077         }
8078         fn do_previously_used_liquidity_violates_max_htlc(blinded_payee: bool) {
8079                 // Test that if a candidate first_hop<>route_hint_src_node channel does not have enough
8080                 // contribution amount to cover the next hop's min_htlc plus fees, we will not consider that
8081                 // candidate. In this case, the candidate does not have enough due to a previous path taking up
8082                 // some of its liquidity. Previously we would construct an invalid path and hit a debug panic
8083                 // asserting that the used liquidity for a hop was less than its available liquidity limit.
8084                 let secp_ctx = Secp256k1::new();
8085                 let logger = Arc::new(ln_test_utils::TestLogger::new());
8086                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
8087                 let scorer = ln_test_utils::TestScorer::new();
8088                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
8089                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8090                 let config = UserConfig::default();
8091
8092                 // Values are taken from the fuzz input that uncovered this panic.
8093                 let amt_msat = 52_4288;
8094                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
8095                 let first_hops = vec![get_channel_details(
8096                         Some(161), nodes[0], channelmanager::provided_init_features(&config), 486_4000
8097                 ), get_channel_details(
8098                         Some(122), nodes[0], channelmanager::provided_init_features(&config), 179_5000
8099                 )];
8100
8101                 let base_fees = [0, 425_9840, 0, 0];
8102                 let htlc_mins = [1_4392, 19_7401, 1027, 6_5535];
8103                 let payment_params = if blinded_payee {
8104                         let blinded_path = BlindedPath {
8105                                 introduction_node: IntroductionNode::NodeId(nodes[0]),
8106                                 blinding_point: ln_test_utils::pubkey(42),
8107                                 blinded_hops: vec![
8108                                         BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() },
8109                                         BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }
8110                                 ],
8111                         };
8112                         let mut blinded_hints = Vec::new();
8113                         for (base_fee, htlc_min) in base_fees.iter().zip(htlc_mins.iter()) {
8114                                 blinded_hints.push((BlindedPayInfo {
8115                                         fee_base_msat: *base_fee,
8116                                         fee_proportional_millionths: 0,
8117                                         htlc_minimum_msat: *htlc_min,
8118                                         htlc_maximum_msat: htlc_min * 100,
8119                                         cltv_expiry_delta: 10,
8120                                         features: BlindedHopFeatures::empty(),
8121                                 }, blinded_path.clone()));
8122                         }
8123                         let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
8124                         PaymentParameters::blinded(blinded_hints.clone())
8125                                 .with_bolt12_features(bolt12_features.clone()).unwrap()
8126                 } else {
8127                         let mut route_hints = Vec::new();
8128                         for (idx, (base_fee, htlc_min)) in base_fees.iter().zip(htlc_mins.iter()).enumerate() {
8129                                 route_hints.push(RouteHint(vec![RouteHintHop {
8130                                         src_node_id: nodes[0],
8131                                         short_channel_id: 42 + idx as u64,
8132                                         fees: RoutingFees {
8133                                                 base_msat: *base_fee,
8134                                                 proportional_millionths: 0,
8135                                         },
8136                                         cltv_expiry_delta: 10,
8137                                         htlc_minimum_msat: Some(*htlc_min),
8138                                         htlc_maximum_msat: Some(htlc_min * 100),
8139                                 }]));
8140                         }
8141                         PaymentParameters::from_node_id(nodes[1], 42)
8142                                 .with_route_hints(route_hints).unwrap()
8143                                 .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config)).unwrap()
8144                 };
8145
8146                 let netgraph = network_graph.read_only();
8147                 let route_params = RouteParameters::from_payment_params_and_value(
8148                         payment_params, amt_msat);
8149
8150                 let route = get_route(
8151                         &our_id, &route_params, &netgraph, Some(&first_hops.iter().collect::<Vec<_>>()),
8152                         Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes
8153                 ).unwrap();
8154                 assert_eq!(route.paths.len(), 1);
8155                 assert_eq!(route.get_total_amount(), amt_msat);
8156         }
8157
8158         #[test]
8159         fn candidate_path_min() {
8160                 // Test that if a candidate first_hop<>network_node channel does not have enough contribution
8161                 // amount to cover the next channel's min htlc plus fees, we will not consider that candidate.
8162                 // Previously, we were storing RouteGraphNodes with a path_min that did not include fees, and
8163                 // would add a connecting first_hop node that did not have enough contribution amount, leading
8164                 // to a debug panic upon invalid path construction.
8165                 let secp_ctx = Secp256k1::new();
8166                 let logger = Arc::new(ln_test_utils::TestLogger::new());
8167                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
8168                 let gossip_sync = P2PGossipSync::new(network_graph.clone(), None, logger.clone());
8169                 let scorer = ProbabilisticScorer::new(ProbabilisticScoringDecayParameters::default(), network_graph.clone(), logger.clone());
8170                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
8171                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8172                 let config = UserConfig::default();
8173
8174                 // Values are taken from the fuzz input that uncovered this panic.
8175                 let amt_msat = 7_4009_8048;
8176                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
8177                 let first_hops = vec![get_channel_details(
8178                         Some(200), nodes[0], channelmanager::provided_init_features(&config), 2_7345_2000
8179                 )];
8180
8181                 add_channel(&gossip_sync, &secp_ctx, &privkeys[0], &privkeys[6], ChannelFeatures::from_le_bytes(id_to_feature_flags(6)), 6);
8182                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
8183                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
8184                         short_channel_id: 6,
8185                         timestamp: 1,
8186                         flags: 0,
8187                         cltv_expiry_delta: (6 << 4) | 0,
8188                         htlc_minimum_msat: 0,
8189                         htlc_maximum_msat: MAX_VALUE_MSAT,
8190                         fee_base_msat: 0,
8191                         fee_proportional_millionths: 0,
8192                         excess_data: Vec::new()
8193                 });
8194                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[0], NodeFeatures::from_le_bytes(id_to_feature_flags(1)), 0);
8195
8196                 let htlc_min = 2_5165_8240;
8197                 let blinded_hints = vec![
8198                         (BlindedPayInfo {
8199                                 fee_base_msat: 1_6778_3453,
8200                                 fee_proportional_millionths: 0,
8201                                 htlc_minimum_msat: htlc_min,
8202                                 htlc_maximum_msat: htlc_min * 100,
8203                                 cltv_expiry_delta: 10,
8204                                 features: BlindedHopFeatures::empty(),
8205                         }, BlindedPath {
8206                                 introduction_node: IntroductionNode::NodeId(nodes[0]),
8207                                 blinding_point: ln_test_utils::pubkey(42),
8208                                 blinded_hops: vec![
8209                                         BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() },
8210                                         BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }
8211                                 ],
8212                         })
8213                 ];
8214                 let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
8215                 let payment_params = PaymentParameters::blinded(blinded_hints.clone())
8216                         .with_bolt12_features(bolt12_features.clone()).unwrap();
8217                 let route_params = RouteParameters::from_payment_params_and_value(
8218                         payment_params, amt_msat);
8219                 let netgraph = network_graph.read_only();
8220
8221                 if let Err(LightningError { err, .. }) = get_route(
8222                         &our_id, &route_params, &netgraph, Some(&first_hops.iter().collect::<Vec<_>>()),
8223                         Arc::clone(&logger), &scorer, &ProbabilisticScoringFeeParameters::default(),
8224                         &random_seed_bytes
8225                 ) {
8226                         assert_eq!(err, "Failed to find a path to the given destination");
8227                 } else { panic!() }
8228         }
8229
8230         #[test]
8231         fn path_contribution_includes_min_htlc_overpay() {
8232                 // Previously, the fuzzer hit a debug panic because we wouldn't include the amount overpaid to
8233                 // meet a last hop's min_htlc in the total collected paths value. We now include this value and
8234                 // also penalize hops along the overpaying path to ensure that it gets deprioritized in path
8235                 // selection, both tested here.
8236                 let secp_ctx = Secp256k1::new();
8237                 let logger = Arc::new(ln_test_utils::TestLogger::new());
8238                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
8239                 let scorer = ProbabilisticScorer::new(ProbabilisticScoringDecayParameters::default(), network_graph.clone(), logger.clone());
8240                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
8241                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8242                 let config = UserConfig::default();
8243
8244                 // Values are taken from the fuzz input that uncovered this panic.
8245                 let amt_msat = 562_0000;
8246                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
8247                 let first_hops = vec![
8248                         get_channel_details(
8249                                 Some(83), nodes[0], channelmanager::provided_init_features(&config), 2199_0000,
8250                         ),
8251                 ];
8252
8253                 let htlc_mins = [49_0000, 1125_0000];
8254                 let payment_params = {
8255                         let blinded_path = BlindedPath {
8256                                 introduction_node: IntroductionNode::NodeId(nodes[0]),
8257                                 blinding_point: ln_test_utils::pubkey(42),
8258                                 blinded_hops: vec![
8259                                         BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() },
8260                                         BlindedHop { blinded_node_id: ln_test_utils::pubkey(42 as u8), encrypted_payload: Vec::new() }
8261                                 ],
8262                         };
8263                         let mut blinded_hints = Vec::new();
8264                         for htlc_min in htlc_mins.iter() {
8265                                 blinded_hints.push((BlindedPayInfo {
8266                                         fee_base_msat: 0,
8267                                         fee_proportional_millionths: 0,
8268                                         htlc_minimum_msat: *htlc_min,
8269                                         htlc_maximum_msat: *htlc_min * 100,
8270                                         cltv_expiry_delta: 10,
8271                                         features: BlindedHopFeatures::empty(),
8272                                 }, blinded_path.clone()));
8273                         }
8274                         let bolt12_features = channelmanager::provided_bolt12_invoice_features(&config);
8275                         PaymentParameters::blinded(blinded_hints.clone())
8276                                 .with_bolt12_features(bolt12_features.clone()).unwrap()
8277                 };
8278
8279                 let netgraph = network_graph.read_only();
8280                 let route_params = RouteParameters::from_payment_params_and_value(
8281                         payment_params, amt_msat);
8282                 let route = get_route(
8283                         &our_id, &route_params, &netgraph, Some(&first_hops.iter().collect::<Vec<_>>()),
8284                         Arc::clone(&logger), &scorer, &ProbabilisticScoringFeeParameters::default(),
8285                         &random_seed_bytes
8286                 ).unwrap();
8287                 assert_eq!(route.paths.len(), 1);
8288                 assert_eq!(route.get_total_amount(), amt_msat);
8289         }
8290
8291         #[test]
8292         fn first_hop_preferred_over_hint() {
8293                 // Check that if we have a first hop to a peer we'd always prefer that over a route hint
8294                 // they gave us, but we'd still consider all subsequent hints if they are more attractive.
8295                 let secp_ctx = Secp256k1::new();
8296                 let logger = Arc::new(ln_test_utils::TestLogger::new());
8297                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
8298                 let gossip_sync = P2PGossipSync::new(Arc::clone(&network_graph), None, Arc::clone(&logger));
8299                 let scorer = ln_test_utils::TestScorer::new();
8300                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
8301                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8302                 let config = UserConfig::default();
8303
8304                 let amt_msat = 1_000_000;
8305                 let (our_privkey, our_node_id, privkeys, nodes) = get_nodes(&secp_ctx);
8306
8307                 add_channel(&gossip_sync, &secp_ctx, &our_privkey, &privkeys[0],
8308                         ChannelFeatures::from_le_bytes(id_to_feature_flags(1)), 1);
8309                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
8310                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
8311                         short_channel_id: 1,
8312                         timestamp: 1,
8313                         flags: 0,
8314                         cltv_expiry_delta: 42,
8315                         htlc_minimum_msat: 1_000,
8316                         htlc_maximum_msat: 10_000_000,
8317                         fee_base_msat: 800,
8318                         fee_proportional_millionths: 0,
8319                         excess_data: Vec::new()
8320                 });
8321                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
8322                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
8323                         short_channel_id: 1,
8324                         timestamp: 1,
8325                         flags: 1,
8326                         cltv_expiry_delta: 42,
8327                         htlc_minimum_msat: 1_000,
8328                         htlc_maximum_msat: 10_000_000,
8329                         fee_base_msat: 800,
8330                         fee_proportional_millionths: 0,
8331                         excess_data: Vec::new()
8332                 });
8333
8334                 add_channel(&gossip_sync, &secp_ctx, &privkeys[0], &privkeys[1],
8335                         ChannelFeatures::from_le_bytes(id_to_feature_flags(1)), 2);
8336                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
8337                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
8338                         short_channel_id: 2,
8339                         timestamp: 2,
8340                         flags: 0,
8341                         cltv_expiry_delta: 42,
8342                         htlc_minimum_msat: 1_000,
8343                         htlc_maximum_msat: 10_000_000,
8344                         fee_base_msat: 800,
8345                         fee_proportional_millionths: 0,
8346                         excess_data: Vec::new()
8347                 });
8348                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
8349                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
8350                         short_channel_id: 2,
8351                         timestamp: 2,
8352                         flags: 1,
8353                         cltv_expiry_delta: 42,
8354                         htlc_minimum_msat: 1_000,
8355                         htlc_maximum_msat: 10_000_000,
8356                         fee_base_msat: 800,
8357                         fee_proportional_millionths: 0,
8358                         excess_data: Vec::new()
8359                 });
8360
8361                 let dest_node_id = nodes[2];
8362
8363                 let route_hint = RouteHint(vec![RouteHintHop {
8364                         src_node_id: our_node_id,
8365                         short_channel_id: 44,
8366                         fees: RoutingFees {
8367                                 base_msat: 234,
8368                                 proportional_millionths: 0,
8369                         },
8370                         cltv_expiry_delta: 10,
8371                         htlc_minimum_msat: None,
8372                         htlc_maximum_msat: Some(5_000_000),
8373                 },
8374                 RouteHintHop {
8375                         src_node_id: nodes[0],
8376                         short_channel_id: 45,
8377                         fees: RoutingFees {
8378                                 base_msat: 123,
8379                                 proportional_millionths: 0,
8380                         },
8381                         cltv_expiry_delta: 10,
8382                         htlc_minimum_msat: None,
8383                         htlc_maximum_msat: None,
8384                 }]);
8385
8386                 let payment_params = PaymentParameters::from_node_id(dest_node_id, 42)
8387                         .with_route_hints(vec![route_hint]).unwrap()
8388                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config)).unwrap();
8389                 let route_params = RouteParameters::from_payment_params_and_value(
8390                         payment_params, amt_msat);
8391
8392                 // First create an insufficient first hop for channel with SCID 1 and check we'd use the
8393                 // route hint.
8394                 let first_hop = get_channel_details(Some(1), nodes[0],
8395                         channelmanager::provided_init_features(&config), 999_999);
8396                 let first_hops = vec![first_hop];
8397
8398                 let route = get_route(&our_node_id, &route_params.clone(), &network_graph.read_only(),
8399                         Some(&first_hops.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
8400                         &Default::default(), &random_seed_bytes).unwrap();
8401                 assert_eq!(route.paths.len(), 1);
8402                 assert_eq!(route.get_total_amount(), amt_msat);
8403                 assert_eq!(route.paths[0].hops.len(), 2);
8404                 assert_eq!(route.paths[0].hops[0].short_channel_id, 44);
8405                 assert_eq!(route.paths[0].hops[1].short_channel_id, 45);
8406                 assert_eq!(route.get_total_fees(), 123);
8407
8408                 // Now check we would trust our first hop info, i.e., fail if we detect the route hint is
8409                 // for a first hop channel.
8410                 let mut first_hop = get_channel_details(Some(1), nodes[0], channelmanager::provided_init_features(&config), 999_999);
8411                 first_hop.outbound_scid_alias = Some(44);
8412                 let first_hops = vec![first_hop];
8413
8414                 let route_res = get_route(&our_node_id, &route_params.clone(), &network_graph.read_only(),
8415                         Some(&first_hops.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
8416                         &Default::default(), &random_seed_bytes);
8417                 assert!(route_res.is_err());
8418
8419                 // Finally check we'd use the first hop if has sufficient outbound capacity. But we'd stil
8420                 // use the cheaper second hop of the route hint.
8421                 let mut first_hop = get_channel_details(Some(1), nodes[0],
8422                         channelmanager::provided_init_features(&config), 10_000_000);
8423                 first_hop.outbound_scid_alias = Some(44);
8424                 let first_hops = vec![first_hop];
8425
8426                 let route = get_route(&our_node_id, &route_params.clone(), &network_graph.read_only(),
8427                         Some(&first_hops.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
8428                         &Default::default(), &random_seed_bytes).unwrap();
8429                 assert_eq!(route.paths.len(), 1);
8430                 assert_eq!(route.get_total_amount(), amt_msat);
8431                 assert_eq!(route.paths[0].hops.len(), 2);
8432                 assert_eq!(route.paths[0].hops[0].short_channel_id, 1);
8433                 assert_eq!(route.paths[0].hops[1].short_channel_id, 45);
8434                 assert_eq!(route.get_total_fees(), 123);
8435         }
8436
8437         #[test]
8438         fn allow_us_being_first_hint() {
8439                 // Check that we consider a route hint even if we are the src of the first hop.
8440                 let secp_ctx = Secp256k1::new();
8441                 let logger = Arc::new(ln_test_utils::TestLogger::new());
8442                 let network_graph = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
8443                 let scorer = ln_test_utils::TestScorer::new();
8444                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
8445                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8446                 let config = UserConfig::default();
8447
8448                 let (_, our_node_id, _, nodes) = get_nodes(&secp_ctx);
8449
8450                 let amt_msat = 1_000_000;
8451                 let dest_node_id = nodes[1];
8452
8453                 let first_hop = get_channel_details(Some(1), nodes[0], channelmanager::provided_init_features(&config), 10_000_000);
8454                 let first_hops = vec![first_hop];
8455
8456                 let route_hint = RouteHint(vec![RouteHintHop {
8457                         src_node_id: our_node_id,
8458                         short_channel_id: 44,
8459                         fees: RoutingFees {
8460                                 base_msat: 123,
8461                                 proportional_millionths: 0,
8462                         },
8463                         cltv_expiry_delta: 10,
8464                         htlc_minimum_msat: None,
8465                         htlc_maximum_msat: None,
8466                 }]);
8467
8468                 let payment_params = PaymentParameters::from_node_id(dest_node_id, 42)
8469                         .with_route_hints(vec![route_hint]).unwrap()
8470                         .with_bolt11_features(channelmanager::provided_bolt11_invoice_features(&config)).unwrap();
8471
8472                 let route_params = RouteParameters::from_payment_params_and_value(
8473                         payment_params, amt_msat);
8474
8475
8476                 let route = get_route(&our_node_id, &route_params, &network_graph.read_only(),
8477                         Some(&first_hops.iter().collect::<Vec<_>>()), Arc::clone(&logger), &scorer,
8478                         &Default::default(), &random_seed_bytes).unwrap();
8479
8480                 assert_eq!(route.paths.len(), 1);
8481                 assert_eq!(route.get_total_amount(), amt_msat);
8482                 assert_eq!(route.get_total_fees(), 0);
8483                 assert_eq!(route.paths[0].hops.len(), 1);
8484
8485                 assert_eq!(route.paths[0].hops[0].short_channel_id, 44);
8486         }
8487 }
8488
8489 #[cfg(all(any(test, ldk_bench), feature = "std"))]
8490 pub(crate) mod bench_utils {
8491         use super::*;
8492         use std::fs::File;
8493         use std::time::Duration;
8494
8495         use bitcoin::hashes::Hash;
8496         use bitcoin::secp256k1::SecretKey;
8497
8498         use crate::chain::transaction::OutPoint;
8499         use crate::routing::scoring::ScoreUpdate;
8500         use crate::sign::KeysManager;
8501         use crate::ln::types::ChannelId;
8502         use crate::ln::channelmanager::{self, ChannelCounterparty};
8503         use crate::util::config::UserConfig;
8504         use crate::util::test_utils::TestLogger;
8505
8506         /// Tries to open a network graph file, or panics with a URL to fetch it.
8507         pub(crate) fn get_route_file() -> Result<std::fs::File, &'static str> {
8508                 let res = File::open("net_graph-2023-01-18.bin") // By default we're run in RL/lightning
8509                         .or_else(|_| File::open("lightning/net_graph-2023-01-18.bin")) // We may be run manually in RL/
8510                         .or_else(|_| { // Fall back to guessing based on the binary location
8511                                 // path is likely something like .../rust-lightning/target/debug/deps/lightning-...
8512                                 let mut path = std::env::current_exe().unwrap();
8513                                 path.pop(); // lightning-...
8514                                 path.pop(); // deps
8515                                 path.pop(); // debug
8516                                 path.pop(); // target
8517                                 path.push("lightning");
8518                                 path.push("net_graph-2023-01-18.bin");
8519                                 File::open(path)
8520                         })
8521                         .or_else(|_| { // Fall back to guessing based on the binary location for a subcrate
8522                                 // path is likely something like .../rust-lightning/bench/target/debug/deps/bench..
8523                                 let mut path = std::env::current_exe().unwrap();
8524                                 path.pop(); // bench...
8525                                 path.pop(); // deps
8526                                 path.pop(); // debug
8527                                 path.pop(); // target
8528                                 path.pop(); // bench
8529                                 path.push("lightning");
8530                                 path.push("net_graph-2023-01-18.bin");
8531                                 File::open(path)
8532                         })
8533                 .map_err(|_| "Please fetch https://bitcoin.ninja/ldk-net_graph-v0.0.113-2023-01-18.bin and place it at lightning/net_graph-2023-01-18.bin");
8534                 #[cfg(require_route_graph_test)]
8535                 return Ok(res.unwrap());
8536                 #[cfg(not(require_route_graph_test))]
8537                 return res;
8538         }
8539
8540         pub(crate) fn read_network_graph(logger: &TestLogger) -> Result<NetworkGraph<&TestLogger>, &'static str> {
8541                 get_route_file().map(|mut f| NetworkGraph::read(&mut f, logger).unwrap())
8542         }
8543
8544         pub(crate) fn payer_pubkey() -> PublicKey {
8545                 let secp_ctx = Secp256k1::new();
8546                 PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap())
8547         }
8548
8549         #[inline]
8550         pub(crate) fn first_hop(node_id: PublicKey) -> ChannelDetails {
8551                 ChannelDetails {
8552                         channel_id: ChannelId::new_zero(),
8553                         counterparty: ChannelCounterparty {
8554                                 features: channelmanager::provided_init_features(&UserConfig::default()),
8555                                 node_id,
8556                                 unspendable_punishment_reserve: 0,
8557                                 forwarding_info: None,
8558                                 outbound_htlc_minimum_msat: None,
8559                                 outbound_htlc_maximum_msat: None,
8560                         },
8561                         funding_txo: Some(OutPoint {
8562                                 txid: bitcoin::Txid::from_slice(&[0; 32]).unwrap(), index: 0
8563                         }),
8564                         channel_type: None,
8565                         short_channel_id: Some(1),
8566                         inbound_scid_alias: None,
8567                         outbound_scid_alias: None,
8568                         channel_value_satoshis: 10_000_000_000,
8569                         user_channel_id: 0,
8570                         balance_msat: 10_000_000_000,
8571                         outbound_capacity_msat: 10_000_000_000,
8572                         next_outbound_htlc_minimum_msat: 0,
8573                         next_outbound_htlc_limit_msat: 10_000_000_000,
8574                         inbound_capacity_msat: 0,
8575                         unspendable_punishment_reserve: None,
8576                         confirmations_required: None,
8577                         confirmations: None,
8578                         force_close_spend_delay: None,
8579                         is_outbound: true,
8580                         is_channel_ready: true,
8581                         is_usable: true,
8582                         is_public: true,
8583                         inbound_htlc_minimum_msat: None,
8584                         inbound_htlc_maximum_msat: None,
8585                         config: None,
8586                         feerate_sat_per_1000_weight: None,
8587                         channel_shutdown_state: Some(channelmanager::ChannelShutdownState::NotShuttingDown),
8588                         pending_inbound_htlcs: Vec::new(),
8589                         pending_outbound_htlcs: Vec::new(),
8590                 }
8591         }
8592
8593         pub(crate) fn generate_test_routes<S: ScoreLookUp + ScoreUpdate>(graph: &NetworkGraph<&TestLogger>, scorer: &mut S,
8594                 score_params: &S::ScoreParams, features: Bolt11InvoiceFeatures, mut seed: u64,
8595                 starting_amount: u64, route_count: usize,
8596         ) -> Vec<(ChannelDetails, PaymentParameters, u64)> {
8597                 let payer = payer_pubkey();
8598                 let keys_manager = KeysManager::new(&[0u8; 32], 42, 42);
8599                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8600
8601                 let nodes = graph.read_only().nodes().clone();
8602                 let mut route_endpoints = Vec::new();
8603                 // Fetch 1.5x more routes than we need as after we do some scorer updates we may end up
8604                 // with some routes we picked being un-routable.
8605                 for _ in 0..route_count * 3 / 2 {
8606                         loop {
8607                                 seed = seed.overflowing_mul(6364136223846793005).0.overflowing_add(1).0;
8608                                 let src = PublicKey::from_slice(nodes.unordered_keys()
8609                                         .skip((seed as usize) % nodes.len()).next().unwrap().as_slice()).unwrap();
8610                                 seed = seed.overflowing_mul(6364136223846793005).0.overflowing_add(1).0;
8611                                 let dst = PublicKey::from_slice(nodes.unordered_keys()
8612                                         .skip((seed as usize) % nodes.len()).next().unwrap().as_slice()).unwrap();
8613                                 let params = PaymentParameters::from_node_id(dst, 42)
8614                                         .with_bolt11_features(features.clone()).unwrap();
8615                                 let first_hop = first_hop(src);
8616                                 let amt_msat = starting_amount + seed % 1_000_000;
8617                                 let route_params = RouteParameters::from_payment_params_and_value(
8618                                         params.clone(), amt_msat);
8619                                 let path_exists =
8620                                         get_route(&payer, &route_params, &graph.read_only(), Some(&[&first_hop]),
8621                                                 &TestLogger::new(), scorer, score_params, &random_seed_bytes).is_ok();
8622                                 if path_exists {
8623                                         // ...and seed the scorer with success and failure data...
8624                                         seed = seed.overflowing_mul(6364136223846793005).0.overflowing_add(1).0;
8625                                         let mut score_amt = seed % 1_000_000_000;
8626                                         loop {
8627                                                 // Generate fail/success paths for a wider range of potential amounts with
8628                                                 // MPP enabled to give us a chance to apply penalties for more potential
8629                                                 // routes.
8630                                                 let mpp_features = channelmanager::provided_bolt11_invoice_features(&UserConfig::default());
8631                                                 let params = PaymentParameters::from_node_id(dst, 42)
8632                                                         .with_bolt11_features(mpp_features).unwrap();
8633                                                 let route_params = RouteParameters::from_payment_params_and_value(
8634                                                         params.clone(), score_amt);
8635                                                 let route_res = get_route(&payer, &route_params, &graph.read_only(),
8636                                                         Some(&[&first_hop]), &TestLogger::new(), scorer, score_params,
8637                                                         &random_seed_bytes);
8638                                                 if let Ok(route) = route_res {
8639                                                         for path in route.paths {
8640                                                                 if seed & 0x80 == 0 {
8641                                                                         scorer.payment_path_successful(&path, Duration::ZERO);
8642                                                                 } else {
8643                                                                         let short_channel_id = path.hops[path.hops.len() / 2].short_channel_id;
8644                                                                         scorer.payment_path_failed(&path, short_channel_id, Duration::ZERO);
8645                                                                 }
8646                                                                 seed = seed.overflowing_mul(6364136223846793005).0.overflowing_add(1).0;
8647                                                         }
8648                                                         break;
8649                                                 }
8650                                                 // If we couldn't find a path with a higher amount, reduce and try again.
8651                                                 score_amt /= 100;
8652                                         }
8653
8654                                         route_endpoints.push((first_hop, params, amt_msat));
8655                                         break;
8656                                 }
8657                         }
8658                 }
8659
8660                 // Because we've changed channel scores, it's possible we'll take different routes to the
8661                 // selected destinations, possibly causing us to fail because, eg, the newly-selected path
8662                 // requires a too-high CLTV delta.
8663                 route_endpoints.retain(|(first_hop, params, amt_msat)| {
8664                         let route_params = RouteParameters::from_payment_params_and_value(
8665                                 params.clone(), *amt_msat);
8666                         get_route(&payer, &route_params, &graph.read_only(), Some(&[first_hop]),
8667                                 &TestLogger::new(), scorer, score_params, &random_seed_bytes).is_ok()
8668                 });
8669                 route_endpoints.truncate(route_count);
8670                 assert_eq!(route_endpoints.len(), route_count);
8671                 route_endpoints
8672         }
8673 }
8674
8675 #[cfg(ldk_bench)]
8676 pub mod benches {
8677         use super::*;
8678         use crate::routing::scoring::{ScoreUpdate, ScoreLookUp};
8679         use crate::sign::{EntropySource, KeysManager};
8680         use crate::ln::channelmanager;
8681         use crate::ln::features::Bolt11InvoiceFeatures;
8682         use crate::routing::gossip::NetworkGraph;
8683         use crate::routing::scoring::{FixedPenaltyScorer, ProbabilisticScorer, ProbabilisticScoringFeeParameters, ProbabilisticScoringDecayParameters};
8684         use crate::util::config::UserConfig;
8685         use crate::util::logger::{Logger, Record};
8686         use crate::util::test_utils::TestLogger;
8687
8688         use criterion::Criterion;
8689
8690         struct DummyLogger {}
8691         impl Logger for DummyLogger {
8692                 fn log(&self, _record: Record) {}
8693         }
8694
8695         pub fn generate_routes_with_zero_penalty_scorer(bench: &mut Criterion) {
8696                 let logger = TestLogger::new();
8697                 let network_graph = bench_utils::read_network_graph(&logger).unwrap();
8698                 let scorer = FixedPenaltyScorer::with_penalty(0);
8699                 generate_routes(bench, &network_graph, scorer, &Default::default(),
8700                         Bolt11InvoiceFeatures::empty(), 0, "generate_routes_with_zero_penalty_scorer");
8701         }
8702
8703         pub fn generate_mpp_routes_with_zero_penalty_scorer(bench: &mut Criterion) {
8704                 let logger = TestLogger::new();
8705                 let network_graph = bench_utils::read_network_graph(&logger).unwrap();
8706                 let scorer = FixedPenaltyScorer::with_penalty(0);
8707                 generate_routes(bench, &network_graph, scorer, &Default::default(),
8708                         channelmanager::provided_bolt11_invoice_features(&UserConfig::default()), 0,
8709                         "generate_mpp_routes_with_zero_penalty_scorer");
8710         }
8711
8712         pub fn generate_routes_with_probabilistic_scorer(bench: &mut Criterion) {
8713                 let logger = TestLogger::new();
8714                 let network_graph = bench_utils::read_network_graph(&logger).unwrap();
8715                 let params = ProbabilisticScoringFeeParameters::default();
8716                 let scorer = ProbabilisticScorer::new(ProbabilisticScoringDecayParameters::default(), &network_graph, &logger);
8717                 generate_routes(bench, &network_graph, scorer, &params, Bolt11InvoiceFeatures::empty(), 0,
8718                         "generate_routes_with_probabilistic_scorer");
8719         }
8720
8721         pub fn generate_mpp_routes_with_probabilistic_scorer(bench: &mut Criterion) {
8722                 let logger = TestLogger::new();
8723                 let network_graph = bench_utils::read_network_graph(&logger).unwrap();
8724                 let params = ProbabilisticScoringFeeParameters::default();
8725                 let scorer = ProbabilisticScorer::new(ProbabilisticScoringDecayParameters::default(), &network_graph, &logger);
8726                 generate_routes(bench, &network_graph, scorer, &params,
8727                         channelmanager::provided_bolt11_invoice_features(&UserConfig::default()), 0,
8728                         "generate_mpp_routes_with_probabilistic_scorer");
8729         }
8730
8731         pub fn generate_large_mpp_routes_with_probabilistic_scorer(bench: &mut Criterion) {
8732                 let logger = TestLogger::new();
8733                 let network_graph = bench_utils::read_network_graph(&logger).unwrap();
8734                 let params = ProbabilisticScoringFeeParameters::default();
8735                 let scorer = ProbabilisticScorer::new(ProbabilisticScoringDecayParameters::default(), &network_graph, &logger);
8736                 generate_routes(bench, &network_graph, scorer, &params,
8737                         channelmanager::provided_bolt11_invoice_features(&UserConfig::default()), 100_000_000,
8738                         "generate_large_mpp_routes_with_probabilistic_scorer");
8739         }
8740
8741         pub fn generate_routes_with_nonlinear_probabilistic_scorer(bench: &mut Criterion) {
8742                 let logger = TestLogger::new();
8743                 let network_graph = bench_utils::read_network_graph(&logger).unwrap();
8744                 let mut params = ProbabilisticScoringFeeParameters::default();
8745                 params.linear_success_probability = false;
8746                 let scorer = ProbabilisticScorer::new(
8747                         ProbabilisticScoringDecayParameters::default(), &network_graph, &logger);
8748                 generate_routes(bench, &network_graph, scorer, &params,
8749                         channelmanager::provided_bolt11_invoice_features(&UserConfig::default()), 0,
8750                         "generate_routes_with_nonlinear_probabilistic_scorer");
8751         }
8752
8753         pub fn generate_mpp_routes_with_nonlinear_probabilistic_scorer(bench: &mut Criterion) {
8754                 let logger = TestLogger::new();
8755                 let network_graph = bench_utils::read_network_graph(&logger).unwrap();
8756                 let mut params = ProbabilisticScoringFeeParameters::default();
8757                 params.linear_success_probability = false;
8758                 let scorer = ProbabilisticScorer::new(
8759                         ProbabilisticScoringDecayParameters::default(), &network_graph, &logger);
8760                 generate_routes(bench, &network_graph, scorer, &params,
8761                         channelmanager::provided_bolt11_invoice_features(&UserConfig::default()), 0,
8762                         "generate_mpp_routes_with_nonlinear_probabilistic_scorer");
8763         }
8764
8765         pub fn generate_large_mpp_routes_with_nonlinear_probabilistic_scorer(bench: &mut Criterion) {
8766                 let logger = TestLogger::new();
8767                 let network_graph = bench_utils::read_network_graph(&logger).unwrap();
8768                 let mut params = ProbabilisticScoringFeeParameters::default();
8769                 params.linear_success_probability = false;
8770                 let scorer = ProbabilisticScorer::new(
8771                         ProbabilisticScoringDecayParameters::default(), &network_graph, &logger);
8772                 generate_routes(bench, &network_graph, scorer, &params,
8773                         channelmanager::provided_bolt11_invoice_features(&UserConfig::default()), 100_000_000,
8774                         "generate_large_mpp_routes_with_nonlinear_probabilistic_scorer");
8775         }
8776
8777         fn generate_routes<S: ScoreLookUp + ScoreUpdate>(
8778                 bench: &mut Criterion, graph: &NetworkGraph<&TestLogger>, mut scorer: S,
8779                 score_params: &S::ScoreParams, features: Bolt11InvoiceFeatures, starting_amount: u64,
8780                 bench_name: &'static str,
8781         ) {
8782                 let payer = bench_utils::payer_pubkey();
8783                 let keys_manager = KeysManager::new(&[0u8; 32], 42, 42);
8784                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8785
8786                 // First, get 100 (source, destination) pairs for which route-getting actually succeeds...
8787                 let route_endpoints = bench_utils::generate_test_routes(graph, &mut scorer, score_params, features, 0xdeadbeef, starting_amount, 50);
8788
8789                 // ...then benchmark finding paths between the nodes we learned.
8790                 let mut idx = 0;
8791                 bench.bench_function(bench_name, |b| b.iter(|| {
8792                         let (first_hop, params, amt) = &route_endpoints[idx % route_endpoints.len()];
8793                         let route_params = RouteParameters::from_payment_params_and_value(params.clone(), *amt);
8794                         assert!(get_route(&payer, &route_params, &graph.read_only(), Some(&[first_hop]),
8795                                 &DummyLogger{}, &scorer, score_params, &random_seed_bytes).is_ok());
8796                         idx += 1;
8797                 }));
8798         }
8799 }