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