Remove the `final_cltv_expiry_delta` in `RouteParameters` entirely
[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::ln::PaymentHash;
17 use crate::ln::channelmanager::{ChannelDetails, PaymentId};
18 use crate::ln::features::{ChannelFeatures, InvoiceFeatures, NodeFeatures};
19 use crate::ln::msgs::{DecodeError, ErrorAction, LightningError, MAX_VALUE_MSAT};
20 use crate::routing::gossip::{DirectedChannelInfo, EffectiveCapacity, ReadOnlyNetworkGraph, NetworkGraph, NodeId, RoutingFees};
21 use crate::routing::scoring::{ChannelUsage, LockableScore, Score};
22 use crate::util::ser::{Writeable, Readable, ReadableArgs, Writer};
23 use crate::util::logger::{Level, Logger};
24 use crate::util::chacha20::ChaCha20;
25
26 use crate::io;
27 use crate::prelude::*;
28 use crate::sync::Mutex;
29 use alloc::collections::BinaryHeap;
30 use core::cmp;
31 use core::ops::Deref;
32
33 /// A [`Router`] implemented using [`find_route`].
34 pub struct DefaultRouter<G: Deref<Target = NetworkGraph<L>>, L: Deref, S: Deref> where
35         L::Target: Logger,
36         S::Target: for <'a> LockableScore<'a>,
37 {
38         network_graph: G,
39         logger: L,
40         random_seed_bytes: Mutex<[u8; 32]>,
41         scorer: S
42 }
43
44 impl<G: Deref<Target = NetworkGraph<L>>, L: Deref, S: Deref> DefaultRouter<G, L, S> where
45         L::Target: Logger,
46         S::Target: for <'a> LockableScore<'a>,
47 {
48         /// Creates a new router.
49         pub fn new(network_graph: G, logger: L, random_seed_bytes: [u8; 32], scorer: S) -> Self {
50                 let random_seed_bytes = Mutex::new(random_seed_bytes);
51                 Self { network_graph, logger, random_seed_bytes, scorer }
52         }
53 }
54
55 impl<G: Deref<Target = NetworkGraph<L>>, L: Deref, S: Deref> Router for DefaultRouter<G, L, S> where
56         L::Target: Logger,
57         S::Target: for <'a> LockableScore<'a>,
58 {
59         fn find_route(
60                 &self, payer: &PublicKey, params: &RouteParameters, first_hops: Option<&[&ChannelDetails]>,
61                 inflight_htlcs: &InFlightHtlcs
62         ) -> Result<Route, LightningError> {
63                 let random_seed_bytes = {
64                         let mut locked_random_seed_bytes = self.random_seed_bytes.lock().unwrap();
65                         *locked_random_seed_bytes = Sha256::hash(&*locked_random_seed_bytes).into_inner();
66                         *locked_random_seed_bytes
67                 };
68
69                 find_route(
70                         payer, params, &self.network_graph, first_hops, &*self.logger,
71                         &ScorerAccountingForInFlightHtlcs::new(self.scorer.lock(), inflight_htlcs),
72                         &random_seed_bytes
73                 )
74         }
75 }
76
77 /// A trait defining behavior for routing a payment.
78 pub trait Router {
79         /// Finds a [`Route`] between `payer` and `payee` for a payment with the given values.
80         fn find_route(
81                 &self, payer: &PublicKey, route_params: &RouteParameters,
82                 first_hops: Option<&[&ChannelDetails]>, inflight_htlcs: &InFlightHtlcs
83         ) -> Result<Route, LightningError>;
84         /// Finds a [`Route`] between `payer` and `payee` for a payment with the given values. Includes
85         /// `PaymentHash` and `PaymentId` to be able to correlate the request with a specific payment.
86         fn find_route_with_id(
87                 &self, payer: &PublicKey, route_params: &RouteParameters,
88                 first_hops: Option<&[&ChannelDetails]>, inflight_htlcs: &InFlightHtlcs,
89                 _payment_hash: PaymentHash, _payment_id: PaymentId
90         ) -> Result<Route, LightningError> {
91                 self.find_route(payer, route_params, first_hops, inflight_htlcs)
92         }
93 }
94
95 /// [`Score`] implementation that factors in in-flight HTLC liquidity.
96 ///
97 /// Useful for custom [`Router`] implementations to wrap their [`Score`] on-the-fly when calling
98 /// [`find_route`].
99 ///
100 /// [`Score`]: crate::routing::scoring::Score
101 pub struct ScorerAccountingForInFlightHtlcs<'a, S: Score> {
102         scorer: S,
103         // Maps a channel's short channel id and its direction to the liquidity used up.
104         inflight_htlcs: &'a InFlightHtlcs,
105 }
106
107 impl<'a, S: Score> ScorerAccountingForInFlightHtlcs<'a, S> {
108         /// Initialize a new `ScorerAccountingForInFlightHtlcs`.
109         pub fn new(scorer: S, inflight_htlcs: &'a InFlightHtlcs) -> Self {
110                 ScorerAccountingForInFlightHtlcs {
111                         scorer,
112                         inflight_htlcs
113                 }
114         }
115 }
116
117 #[cfg(c_bindings)]
118 impl<'a, S: Score> Writeable for ScorerAccountingForInFlightHtlcs<'a, S> {
119         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> { self.scorer.write(writer) }
120 }
121
122 impl<'a, S: Score> Score for ScorerAccountingForInFlightHtlcs<'a, S> {
123         fn channel_penalty_msat(&self, short_channel_id: u64, source: &NodeId, target: &NodeId, usage: ChannelUsage) -> u64 {
124                 if let Some(used_liquidity) = self.inflight_htlcs.used_liquidity_msat(
125                         source, target, short_channel_id
126                 ) {
127                         let usage = ChannelUsage {
128                                 inflight_htlc_msat: usage.inflight_htlc_msat + used_liquidity,
129                                 ..usage
130                         };
131
132                         self.scorer.channel_penalty_msat(short_channel_id, source, target, usage)
133                 } else {
134                         self.scorer.channel_penalty_msat(short_channel_id, source, target, usage)
135                 }
136         }
137
138         fn payment_path_failed(&mut self, path: &[&RouteHop], short_channel_id: u64) {
139                 self.scorer.payment_path_failed(path, short_channel_id)
140         }
141
142         fn payment_path_successful(&mut self, path: &[&RouteHop]) {
143                 self.scorer.payment_path_successful(path)
144         }
145
146         fn probe_failed(&mut self, path: &[&RouteHop], short_channel_id: u64) {
147                 self.scorer.probe_failed(path, short_channel_id)
148         }
149
150         fn probe_successful(&mut self, path: &[&RouteHop]) {
151                 self.scorer.probe_successful(path)
152         }
153 }
154
155 /// A data structure for tracking in-flight HTLCs. May be used during pathfinding to account for
156 /// in-use channel liquidity.
157 #[derive(Clone)]
158 pub struct InFlightHtlcs(
159         // A map with liquidity value (in msat) keyed by a short channel id and the direction the HTLC
160         // is traveling in. The direction boolean is determined by checking if the HTLC source's public
161         // key is less than its destination. See `InFlightHtlcs::used_liquidity_msat` for more
162         // details.
163         HashMap<(u64, bool), u64>
164 );
165
166 impl InFlightHtlcs {
167         /// Constructs an empty `InFlightHtlcs`.
168         pub fn new() -> Self { InFlightHtlcs(HashMap::new()) }
169
170         /// Takes in a path with payer's node id and adds the path's details to `InFlightHtlcs`.
171         pub fn process_path(&mut self, path: &[RouteHop], payer_node_id: PublicKey) {
172                 if path.is_empty() { return };
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.iter().rev().skip(1)
179                         .map(|hop| hop.pubkey)
180                         .chain(core::iter::once(payer_node_id));
181                 let mut cumulative_msat = 0;
182
183                 // Taking the reversed vector from above, we zip it with just the reversed hops list to
184                 // work "backwards" of the given path, since the last hop's `fee_msat` actually represents
185                 // the total amount sent.
186                 for (next_hop, prev_hop) in path.iter().rev().zip(reversed_hops_with_payer) {
187                         cumulative_msat += next_hop.fee_msat;
188                         self.0
189                                 .entry((next_hop.short_channel_id, NodeId::from_pubkey(&prev_hop) < NodeId::from_pubkey(&next_hop.pubkey)))
190                                 .and_modify(|used_liquidity_msat| *used_liquidity_msat += cumulative_msat)
191                                 .or_insert(cumulative_msat);
192                 }
193         }
194
195         /// Returns liquidity in msat given the public key of the HTLC source, target, and short channel
196         /// id.
197         pub fn used_liquidity_msat(&self, source: &NodeId, target: &NodeId, channel_scid: u64) -> Option<u64> {
198                 self.0.get(&(channel_scid, source < target)).map(|v| *v)
199         }
200 }
201
202 impl Writeable for InFlightHtlcs {
203         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> { self.0.write(writer) }
204 }
205
206 impl Readable for InFlightHtlcs {
207         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
208                 let infight_map: HashMap<(u64, bool), u64> = Readable::read(reader)?;
209                 Ok(Self(infight_map))
210         }
211 }
212
213 /// A hop in a route
214 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
215 pub struct RouteHop {
216         /// The node_id of the node at this hop.
217         pub pubkey: PublicKey,
218         /// The node_announcement features of the node at this hop. For the last hop, these may be
219         /// amended to match the features present in the invoice this node generated.
220         pub node_features: NodeFeatures,
221         /// The channel that should be used from the previous hop to reach this node.
222         pub short_channel_id: u64,
223         /// The channel_announcement features of the channel that should be used from the previous hop
224         /// to reach this node.
225         pub channel_features: ChannelFeatures,
226         /// The fee taken on this hop (for paying for the use of the *next* channel in the path).
227         /// For the last hop, this should be the full value of the payment (might be more than
228         /// requested if we had to match htlc_minimum_msat).
229         pub fee_msat: u64,
230         /// The CLTV delta added for this hop. For the last hop, this should be the full CLTV value
231         /// expected at the destination, in excess of the current block height.
232         pub cltv_expiry_delta: u32,
233 }
234
235 impl_writeable_tlv_based!(RouteHop, {
236         (0, pubkey, required),
237         (2, node_features, required),
238         (4, short_channel_id, required),
239         (6, channel_features, required),
240         (8, fee_msat, required),
241         (10, cltv_expiry_delta, required),
242 });
243
244 /// A route directs a payment from the sender (us) to the recipient. If the recipient supports MPP,
245 /// it can take multiple paths. Each path is composed of one or more hops through the network.
246 #[derive(Clone, Hash, PartialEq, Eq)]
247 pub struct Route {
248         /// The list of routes taken for a single (potentially-)multi-part payment. The pubkey of the
249         /// last RouteHop in each path must be the same. Each entry represents a list of hops, NOT
250         /// INCLUDING our own, where the last hop is the destination. Thus, this must always be at
251         /// least length one. While the maximum length of any given path is variable, keeping the length
252         /// of any path less or equal to 19 should currently ensure it is viable.
253         pub paths: Vec<Vec<RouteHop>>,
254         /// The `payment_params` parameter passed to [`find_route`].
255         /// This is used by `ChannelManager` to track information which may be required for retries,
256         /// provided back to you via [`Event::PaymentPathFailed`].
257         ///
258         /// [`Event::PaymentPathFailed`]: crate::util::events::Event::PaymentPathFailed
259         pub payment_params: Option<PaymentParameters>,
260 }
261
262 pub(crate) trait RoutePath {
263         /// Gets the fees for a given path, excluding any excess paid to the recipient.
264         fn get_path_fees(&self) -> u64;
265 }
266 impl RoutePath for Vec<RouteHop> {
267         fn get_path_fees(&self) -> u64 {
268                 // Do not count last hop of each path since that's the full value of the payment
269                 self.split_last().map(|(_, path_prefix)| path_prefix).unwrap_or(&[])
270                         .iter().map(|hop| &hop.fee_msat)
271                         .sum()
272         }
273 }
274
275 impl Route {
276         /// Returns the total amount of fees paid on this [`Route`].
277         ///
278         /// This doesn't include any extra payment made to the recipient, which can happen in excess of
279         /// the amount passed to [`find_route`]'s `params.final_value_msat`.
280         pub fn get_total_fees(&self) -> u64 {
281                 self.paths.iter().map(|path| path.get_path_fees()).sum()
282         }
283
284         /// Returns the total amount paid on this [`Route`], excluding the fees.
285         pub fn get_total_amount(&self) -> u64 {
286                 return self.paths.iter()
287                         .map(|path| path.split_last().map(|(hop, _)| hop.fee_msat).unwrap_or(0))
288                         .sum();
289         }
290 }
291
292 const SERIALIZATION_VERSION: u8 = 1;
293 const MIN_SERIALIZATION_VERSION: u8 = 1;
294
295 impl Writeable for Route {
296         fn write<W: crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
297                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
298                 (self.paths.len() as u64).write(writer)?;
299                 for hops in self.paths.iter() {
300                         (hops.len() as u8).write(writer)?;
301                         for hop in hops.iter() {
302                                 hop.write(writer)?;
303                         }
304                 }
305                 write_tlv_fields!(writer, {
306                         (1, self.payment_params, option),
307                 });
308                 Ok(())
309         }
310 }
311
312 impl Readable for Route {
313         fn read<R: io::Read>(reader: &mut R) -> Result<Route, DecodeError> {
314                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
315                 let path_count: u64 = Readable::read(reader)?;
316                 if path_count == 0 { return Err(DecodeError::InvalidValue); }
317                 let mut paths = Vec::with_capacity(cmp::min(path_count, 128) as usize);
318                 let mut min_final_cltv_expiry_delta = u32::max_value();
319                 for _ in 0..path_count {
320                         let hop_count: u8 = Readable::read(reader)?;
321                         let mut hops: Vec<RouteHop> = Vec::with_capacity(hop_count as usize);
322                         for _ in 0..hop_count {
323                                 hops.push(Readable::read(reader)?);
324                         }
325                         if hops.is_empty() { return Err(DecodeError::InvalidValue); }
326                         min_final_cltv_expiry_delta =
327                                 cmp::min(min_final_cltv_expiry_delta, hops.last().unwrap().cltv_expiry_delta);
328                         paths.push(hops);
329                 }
330                 let mut payment_params = None;
331                 read_tlv_fields!(reader, {
332                         (1, payment_params, (option: ReadableArgs, min_final_cltv_expiry_delta)),
333                 });
334                 Ok(Route { paths, payment_params })
335         }
336 }
337
338 /// Parameters needed to find a [`Route`].
339 ///
340 /// Passed to [`find_route`] and [`build_route_from_hops`], but also provided in
341 /// [`Event::PaymentPathFailed`].
342 ///
343 /// [`Event::PaymentPathFailed`]: crate::util::events::Event::PaymentPathFailed
344 #[derive(Clone, Debug, PartialEq, Eq)]
345 pub struct RouteParameters {
346         /// The parameters of the failed payment path.
347         pub payment_params: PaymentParameters,
348
349         /// The amount in msats sent on the failed payment path.
350         pub final_value_msat: u64,
351 }
352
353 impl Writeable for RouteParameters {
354         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
355                 write_tlv_fields!(writer, {
356                         (0, self.payment_params, required),
357                         (2, self.final_value_msat, required),
358                         // LDK versions prior to 0.0.114 had the `final_cltv_expiry_delta` parameter in
359                         // `RouteParameters` directly. For compatibility, we write it here.
360                         (4, self.payment_params.final_cltv_expiry_delta, required),
361                 });
362                 Ok(())
363         }
364 }
365
366 impl Readable for RouteParameters {
367         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
368                 _init_and_read_tlv_fields!(reader, {
369                         (0, payment_params, (required: ReadableArgs, 0)),
370                         (2, final_value_msat, required),
371                         (4, final_cltv_expiry_delta, required),
372                 });
373                 let mut payment_params: PaymentParameters = payment_params.0.unwrap();
374                 if payment_params.final_cltv_expiry_delta == 0 {
375                         payment_params.final_cltv_expiry_delta = final_cltv_expiry_delta.0.unwrap();
376                 }
377                 Ok(Self {
378                         payment_params,
379                         final_value_msat: final_value_msat.0.unwrap(),
380                 })
381         }
382 }
383
384 /// Maximum total CTLV difference we allow for a full payment path.
385 pub const DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA: u32 = 1008;
386
387 /// Maximum number of paths we allow an (MPP) payment to have.
388 // The default limit is currently set rather arbitrary - there aren't any real fundamental path-count
389 // limits, but for now more than 10 paths likely carries too much one-path failure.
390 pub const DEFAULT_MAX_PATH_COUNT: u8 = 10;
391
392 // The median hop CLTV expiry delta currently seen in the network.
393 const MEDIAN_HOP_CLTV_EXPIRY_DELTA: u32 = 40;
394
395 // During routing, we only consider paths shorter than our maximum length estimate.
396 // In the TLV onion format, there is no fixed maximum length, but the `hop_payloads`
397 // field is always 1300 bytes. As the `tlv_payload` for each hop may vary in length, we have to
398 // estimate how many hops the route may have so that it actually fits the `hop_payloads` field.
399 //
400 // We estimate 3+32 (payload length and HMAC) + 2+8 (amt_to_forward) + 2+4 (outgoing_cltv_value) +
401 // 2+8 (short_channel_id) = 61 bytes for each intermediate hop and 3+32
402 // (payload length and HMAC) + 2+8 (amt_to_forward) + 2+4 (outgoing_cltv_value) + 2+32+8
403 // (payment_secret and total_msat) = 93 bytes for the final hop.
404 // Since the length of the potentially included `payment_metadata` is unknown to us, we round
405 // down from (1300-93) / 61 = 19.78... to arrive at a conservative estimate of 19.
406 const MAX_PATH_LENGTH_ESTIMATE: u8 = 19;
407
408 /// The recipient of a payment.
409 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
410 pub struct PaymentParameters {
411         /// The node id of the payee.
412         pub payee_pubkey: PublicKey,
413
414         /// Features supported by the payee.
415         ///
416         /// May be set from the payee's invoice or via [`for_keysend`]. May be `None` if the invoice
417         /// does not contain any features.
418         ///
419         /// [`for_keysend`]: Self::for_keysend
420         pub features: Option<InvoiceFeatures>,
421
422         /// Hints for routing to the payee, containing channels connecting the payee to public nodes.
423         pub route_hints: Vec<RouteHint>,
424
425         /// Expiration of a payment to the payee, in seconds relative to the UNIX epoch.
426         pub expiry_time: Option<u64>,
427
428         /// The maximum total CLTV delta we accept for the route.
429         /// Defaults to [`DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA`].
430         pub max_total_cltv_expiry_delta: u32,
431
432         /// The maximum number of paths that may be used by (MPP) payments.
433         /// Defaults to [`DEFAULT_MAX_PATH_COUNT`].
434         pub max_path_count: u8,
435
436         /// Selects the maximum share of a channel's total capacity which will be sent over a channel,
437         /// as a power of 1/2. A higher value prefers to send the payment using more MPP parts whereas
438         /// a lower value prefers to send larger MPP parts, potentially saturating channels and
439         /// increasing failure probability for those paths.
440         ///
441         /// Note that this restriction will be relaxed during pathfinding after paths which meet this
442         /// restriction have been found. While paths which meet this criteria will be searched for, it
443         /// is ultimately up to the scorer to select them over other paths.
444         ///
445         /// A value of 0 will allow payments up to and including a channel's total announced usable
446         /// capacity, a value of one will only use up to half its capacity, two 1/4, etc.
447         ///
448         /// Default value: 2
449         pub max_channel_saturation_power_of_half: u8,
450
451         /// A list of SCIDs which this payment was previously attempted over and which caused the
452         /// payment to fail. Future attempts for the same payment shouldn't be relayed through any of
453         /// these SCIDs.
454         pub previously_failed_channels: Vec<u64>,
455
456         /// The minimum CLTV delta at the end of the route. This value must not be zero.
457         pub final_cltv_expiry_delta: u32,
458 }
459
460 impl Writeable for PaymentParameters {
461         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
462                 write_tlv_fields!(writer, {
463                         (0, self.payee_pubkey, required),
464                         (1, self.max_total_cltv_expiry_delta, required),
465                         (2, self.features, option),
466                         (3, self.max_path_count, required),
467                         (4, self.route_hints, vec_type),
468                         (5, self.max_channel_saturation_power_of_half, required),
469                         (6, self.expiry_time, option),
470                         (7, self.previously_failed_channels, vec_type),
471                         (9, self.final_cltv_expiry_delta, required),
472                 });
473                 Ok(())
474         }
475 }
476
477 impl ReadableArgs<u32> for PaymentParameters {
478         fn read<R: io::Read>(reader: &mut R, default_final_cltv_expiry_delta: u32) -> Result<Self, DecodeError> {
479                 _init_and_read_tlv_fields!(reader, {
480                         (0, payee_pubkey, required),
481                         (1, max_total_cltv_expiry_delta, (default_value, DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA)),
482                         (2, features, option),
483                         (3, max_path_count, (default_value, DEFAULT_MAX_PATH_COUNT)),
484                         (4, route_hints, vec_type),
485                         (5, max_channel_saturation_power_of_half, (default_value, 2)),
486                         (6, expiry_time, option),
487                         (7, previously_failed_channels, vec_type),
488                         (9, final_cltv_expiry_delta, (default_value, default_final_cltv_expiry_delta)),
489                 });
490                 Ok(Self {
491                         payee_pubkey: _init_tlv_based_struct_field!(payee_pubkey, required),
492                         max_total_cltv_expiry_delta: _init_tlv_based_struct_field!(max_total_cltv_expiry_delta, (default_value, unused)),
493                         features,
494                         max_path_count: _init_tlv_based_struct_field!(max_path_count, (default_value, unused)),
495                         route_hints: route_hints.unwrap_or(Vec::new()),
496                         max_channel_saturation_power_of_half: _init_tlv_based_struct_field!(max_channel_saturation_power_of_half, (default_value, unused)),
497                         expiry_time,
498                         previously_failed_channels: previously_failed_channels.unwrap_or(Vec::new()),
499                         final_cltv_expiry_delta: _init_tlv_based_struct_field!(final_cltv_expiry_delta, (default_value, unused)),
500                 })
501         }
502 }
503
504
505 impl PaymentParameters {
506         /// Creates a payee with the node id of the given `pubkey`.
507         ///
508         /// The `final_cltv_expiry_delta` should match the expected final CLTV delta the recipient has
509         /// provided.
510         pub fn from_node_id(payee_pubkey: PublicKey, final_cltv_expiry_delta: u32) -> Self {
511                 Self {
512                         payee_pubkey,
513                         features: None,
514                         route_hints: vec![],
515                         expiry_time: None,
516                         max_total_cltv_expiry_delta: DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA,
517                         max_path_count: DEFAULT_MAX_PATH_COUNT,
518                         max_channel_saturation_power_of_half: 2,
519                         previously_failed_channels: Vec::new(),
520                         final_cltv_expiry_delta,
521                 }
522         }
523
524         /// Creates a payee with the node id of the given `pubkey` to use for keysend payments.
525         ///
526         /// The `final_cltv_expiry_delta` should match the expected final CLTV delta the recipient has
527         /// provided.
528         pub fn for_keysend(payee_pubkey: PublicKey, final_cltv_expiry_delta: u32) -> Self {
529                 Self::from_node_id(payee_pubkey, final_cltv_expiry_delta).with_features(InvoiceFeatures::for_keysend())
530         }
531
532         /// Includes the payee's features.
533         ///
534         /// (C-not exported) since bindings don't support move semantics
535         pub fn with_features(self, features: InvoiceFeatures) -> Self {
536                 Self { features: Some(features), ..self }
537         }
538
539         /// Includes hints for routing to the payee.
540         ///
541         /// (C-not exported) since bindings don't support move semantics
542         pub fn with_route_hints(self, route_hints: Vec<RouteHint>) -> Self {
543                 Self { route_hints, ..self }
544         }
545
546         /// Includes a payment expiration in seconds relative to the UNIX epoch.
547         ///
548         /// (C-not exported) since bindings don't support move semantics
549         pub fn with_expiry_time(self, expiry_time: u64) -> Self {
550                 Self { expiry_time: Some(expiry_time), ..self }
551         }
552
553         /// Includes a limit for the total CLTV expiry delta which is considered during routing
554         ///
555         /// (C-not exported) since bindings don't support move semantics
556         pub fn with_max_total_cltv_expiry_delta(self, max_total_cltv_expiry_delta: u32) -> Self {
557                 Self { max_total_cltv_expiry_delta, ..self }
558         }
559
560         /// Includes a limit for the maximum number of payment paths that may be used.
561         ///
562         /// (C-not exported) since bindings don't support move semantics
563         pub fn with_max_path_count(self, max_path_count: u8) -> Self {
564                 Self { max_path_count, ..self }
565         }
566
567         /// Includes a limit for the maximum number of payment paths that may be used.
568         ///
569         /// (C-not exported) since bindings don't support move semantics
570         pub fn with_max_channel_saturation_power_of_half(self, max_channel_saturation_power_of_half: u8) -> Self {
571                 Self { max_channel_saturation_power_of_half, ..self }
572         }
573 }
574
575 /// A list of hops along a payment path terminating with a channel to the recipient.
576 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
577 pub struct RouteHint(pub Vec<RouteHintHop>);
578
579 impl Writeable for RouteHint {
580         fn write<W: crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
581                 (self.0.len() as u64).write(writer)?;
582                 for hop in self.0.iter() {
583                         hop.write(writer)?;
584                 }
585                 Ok(())
586         }
587 }
588
589 impl Readable for RouteHint {
590         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
591                 let hop_count: u64 = Readable::read(reader)?;
592                 let mut hops = Vec::with_capacity(cmp::min(hop_count, 16) as usize);
593                 for _ in 0..hop_count {
594                         hops.push(Readable::read(reader)?);
595                 }
596                 Ok(Self(hops))
597         }
598 }
599
600 /// A channel descriptor for a hop along a payment path.
601 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
602 pub struct RouteHintHop {
603         /// The node_id of the non-target end of the route
604         pub src_node_id: PublicKey,
605         /// The short_channel_id of this channel
606         pub short_channel_id: u64,
607         /// The fees which must be paid to use this channel
608         pub fees: RoutingFees,
609         /// The difference in CLTV values between this node and the next node.
610         pub cltv_expiry_delta: u16,
611         /// The minimum value, in msat, which must be relayed to the next hop.
612         pub htlc_minimum_msat: Option<u64>,
613         /// The maximum value in msat available for routing with a single HTLC.
614         pub htlc_maximum_msat: Option<u64>,
615 }
616
617 impl_writeable_tlv_based!(RouteHintHop, {
618         (0, src_node_id, required),
619         (1, htlc_minimum_msat, option),
620         (2, short_channel_id, required),
621         (3, htlc_maximum_msat, option),
622         (4, fees, required),
623         (6, cltv_expiry_delta, required),
624 });
625
626 #[derive(Eq, PartialEq)]
627 struct RouteGraphNode {
628         node_id: NodeId,
629         lowest_fee_to_node: u64,
630         total_cltv_delta: u32,
631         // The maximum value a yet-to-be-constructed payment path might flow through this node.
632         // This value is upper-bounded by us by:
633         // - how much is needed for a path being constructed
634         // - how much value can channels following this node (up to the destination) can contribute,
635         //   considering their capacity and fees
636         value_contribution_msat: u64,
637         /// The effective htlc_minimum_msat at this hop. If a later hop on the path had a higher HTLC
638         /// minimum, we use it, plus the fees required at each earlier hop to meet it.
639         path_htlc_minimum_msat: u64,
640         /// All penalties incurred from this hop on the way to the destination, as calculated using
641         /// channel scoring.
642         path_penalty_msat: u64,
643         /// The number of hops walked up to this node.
644         path_length_to_node: u8,
645 }
646
647 impl cmp::Ord for RouteGraphNode {
648         fn cmp(&self, other: &RouteGraphNode) -> cmp::Ordering {
649                 let other_score = cmp::max(other.lowest_fee_to_node, other.path_htlc_minimum_msat)
650                         .saturating_add(other.path_penalty_msat);
651                 let self_score = cmp::max(self.lowest_fee_to_node, self.path_htlc_minimum_msat)
652                         .saturating_add(self.path_penalty_msat);
653                 other_score.cmp(&self_score).then_with(|| other.node_id.cmp(&self.node_id))
654         }
655 }
656
657 impl cmp::PartialOrd for RouteGraphNode {
658         fn partial_cmp(&self, other: &RouteGraphNode) -> Option<cmp::Ordering> {
659                 Some(self.cmp(other))
660         }
661 }
662
663 /// A wrapper around the various hop representations.
664 ///
665 /// Used to construct a [`PathBuildingHop`] and to estimate [`EffectiveCapacity`].
666 #[derive(Clone, Debug)]
667 enum CandidateRouteHop<'a> {
668         /// A hop from the payer, where the outbound liquidity is known.
669         FirstHop {
670                 details: &'a ChannelDetails,
671         },
672         /// A hop found in the [`ReadOnlyNetworkGraph`], where the channel capacity may be unknown.
673         PublicHop {
674                 info: DirectedChannelInfo<'a>,
675                 short_channel_id: u64,
676         },
677         /// A hop to the payee found in the payment invoice, though not necessarily a direct channel.
678         PrivateHop {
679                 hint: &'a RouteHintHop,
680         }
681 }
682
683 impl<'a> CandidateRouteHop<'a> {
684         fn short_channel_id(&self) -> u64 {
685                 match self {
686                         CandidateRouteHop::FirstHop { details } => details.get_outbound_payment_scid().unwrap(),
687                         CandidateRouteHop::PublicHop { short_channel_id, .. } => *short_channel_id,
688                         CandidateRouteHop::PrivateHop { hint } => hint.short_channel_id,
689                 }
690         }
691
692         // NOTE: This may alloc memory so avoid calling it in a hot code path.
693         fn features(&self) -> ChannelFeatures {
694                 match self {
695                         CandidateRouteHop::FirstHop { details } => details.counterparty.features.to_context(),
696                         CandidateRouteHop::PublicHop { info, .. } => info.channel().features.clone(),
697                         CandidateRouteHop::PrivateHop { .. } => ChannelFeatures::empty(),
698                 }
699         }
700
701         fn cltv_expiry_delta(&self) -> u32 {
702                 match self {
703                         CandidateRouteHop::FirstHop { .. } => 0,
704                         CandidateRouteHop::PublicHop { info, .. } => info.direction().cltv_expiry_delta as u32,
705                         CandidateRouteHop::PrivateHop { hint } => hint.cltv_expiry_delta as u32,
706                 }
707         }
708
709         fn htlc_minimum_msat(&self) -> u64 {
710                 match self {
711                         CandidateRouteHop::FirstHop { .. } => 0,
712                         CandidateRouteHop::PublicHop { info, .. } => info.direction().htlc_minimum_msat,
713                         CandidateRouteHop::PrivateHop { hint } => hint.htlc_minimum_msat.unwrap_or(0),
714                 }
715         }
716
717         fn fees(&self) -> RoutingFees {
718                 match self {
719                         CandidateRouteHop::FirstHop { .. } => RoutingFees {
720                                 base_msat: 0, proportional_millionths: 0,
721                         },
722                         CandidateRouteHop::PublicHop { info, .. } => info.direction().fees,
723                         CandidateRouteHop::PrivateHop { hint } => hint.fees,
724                 }
725         }
726
727         fn effective_capacity(&self) -> EffectiveCapacity {
728                 match self {
729                         CandidateRouteHop::FirstHop { details } => EffectiveCapacity::ExactLiquidity {
730                                 liquidity_msat: details.next_outbound_htlc_limit_msat,
731                         },
732                         CandidateRouteHop::PublicHop { info, .. } => info.effective_capacity(),
733                         CandidateRouteHop::PrivateHop { .. } => EffectiveCapacity::Infinite,
734                 }
735         }
736 }
737
738 #[inline]
739 fn max_htlc_from_capacity(capacity: EffectiveCapacity, max_channel_saturation_power_of_half: u8) -> u64 {
740         let saturation_shift: u32 = max_channel_saturation_power_of_half as u32;
741         match capacity {
742                 EffectiveCapacity::ExactLiquidity { liquidity_msat } => liquidity_msat,
743                 EffectiveCapacity::Infinite => u64::max_value(),
744                 EffectiveCapacity::Unknown => EffectiveCapacity::Unknown.as_msat(),
745                 EffectiveCapacity::MaximumHTLC { amount_msat } =>
746                         amount_msat.checked_shr(saturation_shift).unwrap_or(0),
747                 EffectiveCapacity::Total { capacity_msat, htlc_maximum_msat } =>
748                         cmp::min(capacity_msat.checked_shr(saturation_shift).unwrap_or(0), htlc_maximum_msat),
749         }
750 }
751
752 fn iter_equal<I1: Iterator, I2: Iterator>(mut iter_a: I1, mut iter_b: I2)
753 -> bool where I1::Item: PartialEq<I2::Item> {
754         loop {
755                 let a = iter_a.next();
756                 let b = iter_b.next();
757                 if a.is_none() && b.is_none() { return true; }
758                 if a.is_none() || b.is_none() { return false; }
759                 if a.unwrap().ne(&b.unwrap()) { return false; }
760         }
761 }
762
763 /// It's useful to keep track of the hops associated with the fees required to use them,
764 /// so that we can choose cheaper paths (as per Dijkstra's algorithm).
765 /// Fee values should be updated only in the context of the whole path, see update_value_and_recompute_fees.
766 /// These fee values are useful to choose hops as we traverse the graph "payee-to-payer".
767 #[derive(Clone)]
768 struct PathBuildingHop<'a> {
769         // Note that this should be dropped in favor of loading it from CandidateRouteHop, but doing so
770         // is a larger refactor and will require careful performance analysis.
771         node_id: NodeId,
772         candidate: CandidateRouteHop<'a>,
773         fee_msat: u64,
774
775         /// All the fees paid *after* this channel on the way to the destination
776         next_hops_fee_msat: u64,
777         /// Fee paid for the use of the current channel (see candidate.fees()).
778         /// The value will be actually deducted from the counterparty balance on the previous link.
779         hop_use_fee_msat: u64,
780         /// Used to compare channels when choosing the for routing.
781         /// Includes paying for the use of a hop and the following hops, as well as
782         /// an estimated cost of reaching this hop.
783         /// Might get stale when fees are recomputed. Primarily for internal use.
784         total_fee_msat: u64,
785         /// A mirror of the same field in RouteGraphNode. Note that this is only used during the graph
786         /// walk and may be invalid thereafter.
787         path_htlc_minimum_msat: u64,
788         /// All penalties incurred from this channel on the way to the destination, as calculated using
789         /// channel scoring.
790         path_penalty_msat: u64,
791         /// If we've already processed a node as the best node, we shouldn't process it again. Normally
792         /// we'd just ignore it if we did as all channels would have a higher new fee, but because we
793         /// may decrease the amounts in use as we walk the graph, the actual calculated fee may
794         /// decrease as well. Thus, we have to explicitly track which nodes have been processed and
795         /// avoid processing them again.
796         was_processed: bool,
797         #[cfg(all(not(feature = "_bench_unstable"), any(test, fuzzing)))]
798         // In tests, we apply further sanity checks on cases where we skip nodes we already processed
799         // to ensure it is specifically in cases where the fee has gone down because of a decrease in
800         // value_contribution_msat, which requires tracking it here. See comments below where it is
801         // used for more info.
802         value_contribution_msat: u64,
803 }
804
805 impl<'a> core::fmt::Debug for PathBuildingHop<'a> {
806         fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
807                 let mut debug_struct = f.debug_struct("PathBuildingHop");
808                 debug_struct
809                         .field("node_id", &self.node_id)
810                         .field("short_channel_id", &self.candidate.short_channel_id())
811                         .field("total_fee_msat", &self.total_fee_msat)
812                         .field("next_hops_fee_msat", &self.next_hops_fee_msat)
813                         .field("hop_use_fee_msat", &self.hop_use_fee_msat)
814                         .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)))
815                         .field("path_penalty_msat", &self.path_penalty_msat)
816                         .field("path_htlc_minimum_msat", &self.path_htlc_minimum_msat)
817                         .field("cltv_expiry_delta", &self.candidate.cltv_expiry_delta());
818                 #[cfg(all(not(feature = "_bench_unstable"), any(test, fuzzing)))]
819                 let debug_struct = debug_struct
820                         .field("value_contribution_msat", &self.value_contribution_msat);
821                 debug_struct.finish()
822         }
823 }
824
825 // Instantiated with a list of hops with correct data in them collected during path finding,
826 // an instance of this struct should be further modified only via given methods.
827 #[derive(Clone)]
828 struct PaymentPath<'a> {
829         hops: Vec<(PathBuildingHop<'a>, NodeFeatures)>,
830 }
831
832 impl<'a> PaymentPath<'a> {
833         // TODO: Add a value_msat field to PaymentPath and use it instead of this function.
834         fn get_value_msat(&self) -> u64 {
835                 self.hops.last().unwrap().0.fee_msat
836         }
837
838         fn get_path_penalty_msat(&self) -> u64 {
839                 self.hops.first().map(|h| h.0.path_penalty_msat).unwrap_or(u64::max_value())
840         }
841
842         fn get_total_fee_paid_msat(&self) -> u64 {
843                 if self.hops.len() < 1 {
844                         return 0;
845                 }
846                 let mut result = 0;
847                 // Can't use next_hops_fee_msat because it gets outdated.
848                 for (i, (hop, _)) in self.hops.iter().enumerate() {
849                         if i != self.hops.len() - 1 {
850                                 result += hop.fee_msat;
851                         }
852                 }
853                 return result;
854         }
855
856         fn get_cost_msat(&self) -> u64 {
857                 self.get_total_fee_paid_msat().saturating_add(self.get_path_penalty_msat())
858         }
859
860         // If the amount transferred by the path is updated, the fees should be adjusted. Any other way
861         // to change fees may result in an inconsistency.
862         //
863         // Sometimes we call this function right after constructing a path which is inconsistent in
864         // that it the value being transferred has decreased while we were doing path finding, leading
865         // to the fees being paid not lining up with the actual limits.
866         //
867         // Note that this function is not aware of the available_liquidity limit, and thus does not
868         // support increasing the value being transferred beyond what was selected during the initial
869         // routing passes.
870         fn update_value_and_recompute_fees(&mut self, value_msat: u64) {
871                 let mut total_fee_paid_msat = 0 as u64;
872                 for i in (0..self.hops.len()).rev() {
873                         let last_hop = i == self.hops.len() - 1;
874
875                         // For non-last-hop, this value will represent the fees paid on the current hop. It
876                         // will consist of the fees for the use of the next hop, and extra fees to match
877                         // htlc_minimum_msat of the current channel. Last hop is handled separately.
878                         let mut cur_hop_fees_msat = 0;
879                         if !last_hop {
880                                 cur_hop_fees_msat = self.hops.get(i + 1).unwrap().0.hop_use_fee_msat;
881                         }
882
883                         let mut cur_hop = &mut self.hops.get_mut(i).unwrap().0;
884                         cur_hop.next_hops_fee_msat = total_fee_paid_msat;
885                         // Overpay in fees if we can't save these funds due to htlc_minimum_msat.
886                         // We try to account for htlc_minimum_msat in scoring (add_entry!), so that nodes don't
887                         // set it too high just to maliciously take more fees by exploiting this
888                         // match htlc_minimum_msat logic.
889                         let mut cur_hop_transferred_amount_msat = total_fee_paid_msat + value_msat;
890                         if let Some(extra_fees_msat) = cur_hop.candidate.htlc_minimum_msat().checked_sub(cur_hop_transferred_amount_msat) {
891                                 // Note that there is a risk that *previous hops* (those closer to us, as we go
892                                 // payee->our_node here) would exceed their htlc_maximum_msat or available balance.
893                                 //
894                                 // This might make us end up with a broken route, although this should be super-rare
895                                 // in practice, both because of how healthy channels look like, and how we pick
896                                 // channels in add_entry.
897                                 // Also, this can't be exploited more heavily than *announce a free path and fail
898                                 // all payments*.
899                                 cur_hop_transferred_amount_msat += extra_fees_msat;
900                                 total_fee_paid_msat += extra_fees_msat;
901                                 cur_hop_fees_msat += extra_fees_msat;
902                         }
903
904                         if last_hop {
905                                 // Final hop is a special case: it usually has just value_msat (by design), but also
906                                 // it still could overpay for the htlc_minimum_msat.
907                                 cur_hop.fee_msat = cur_hop_transferred_amount_msat;
908                         } else {
909                                 // Propagate updated fees for the use of the channels to one hop back, where they
910                                 // will be actually paid (fee_msat). The last hop is handled above separately.
911                                 cur_hop.fee_msat = cur_hop_fees_msat;
912                         }
913
914                         // Fee for the use of the current hop which will be deducted on the previous hop.
915                         // Irrelevant for the first hop, as it doesn't have the previous hop, and the use of
916                         // this channel is free for us.
917                         if i != 0 {
918                                 if let Some(new_fee) = compute_fees(cur_hop_transferred_amount_msat, cur_hop.candidate.fees()) {
919                                         cur_hop.hop_use_fee_msat = new_fee;
920                                         total_fee_paid_msat += new_fee;
921                                 } else {
922                                         // It should not be possible because this function is called only to reduce the
923                                         // value. In that case, compute_fee was already called with the same fees for
924                                         // larger amount and there was no overflow.
925                                         unreachable!();
926                                 }
927                         }
928                 }
929         }
930 }
931
932 #[inline(always)]
933 /// Calculate the fees required to route the given amount over a channel with the given fees.
934 fn compute_fees(amount_msat: u64, channel_fees: RoutingFees) -> Option<u64> {
935         amount_msat.checked_mul(channel_fees.proportional_millionths as u64)
936                 .and_then(|part| (channel_fees.base_msat as u64).checked_add(part / 1_000_000))
937 }
938
939 #[inline(always)]
940 /// Calculate the fees required to route the given amount over a channel with the given fees,
941 /// saturating to [`u64::max_value`].
942 fn compute_fees_saturating(amount_msat: u64, channel_fees: RoutingFees) -> u64 {
943         amount_msat.checked_mul(channel_fees.proportional_millionths as u64)
944                 .map(|prop| prop / 1_000_000).unwrap_or(u64::max_value())
945                 .saturating_add(channel_fees.base_msat as u64)
946 }
947
948 /// The default `features` we assume for a node in a route, when no `features` are known about that
949 /// specific node.
950 ///
951 /// Default features are:
952 /// * variable_length_onion_optional
953 fn default_node_features() -> NodeFeatures {
954         let mut features = NodeFeatures::empty();
955         features.set_variable_length_onion_optional();
956         features
957 }
958
959 /// Finds a route from us (payer) to the given target node (payee).
960 ///
961 /// If the payee provided features in their invoice, they should be provided via `params.payee`.
962 /// Without this, MPP will only be used if the payee's features are available in the network graph.
963 ///
964 /// Private routing paths between a public node and the target may be included in `params.payee`.
965 ///
966 /// If some channels aren't announced, it may be useful to fill in `first_hops` with the results
967 /// from [`ChannelManager::list_usable_channels`]. If it is filled in, the view of these channels
968 /// from `network_graph` will be ignored, and only those in `first_hops` will be used.
969 ///
970 /// The fees on channels from us to the next hop are ignored as they are assumed to all be equal.
971 /// However, the enabled/disabled bit on such channels as well as the `htlc_minimum_msat` /
972 /// `htlc_maximum_msat` *are* checked as they may change based on the receiving node.
973 ///
974 /// # Note
975 ///
976 /// May be used to re-compute a [`Route`] when handling a [`Event::PaymentPathFailed`]. Any
977 /// adjustments to the [`NetworkGraph`] and channel scores should be made prior to calling this
978 /// function.
979 ///
980 /// # Panics
981 ///
982 /// Panics if first_hops contains channels without short_channel_ids;
983 /// [`ChannelManager::list_usable_channels`] will never include such channels.
984 ///
985 /// [`ChannelManager::list_usable_channels`]: crate::ln::channelmanager::ChannelManager::list_usable_channels
986 /// [`Event::PaymentPathFailed`]: crate::util::events::Event::PaymentPathFailed
987 /// [`NetworkGraph`]: crate::routing::gossip::NetworkGraph
988 pub fn find_route<L: Deref, GL: Deref, S: Score>(
989         our_node_pubkey: &PublicKey, route_params: &RouteParameters,
990         network_graph: &NetworkGraph<GL>, first_hops: Option<&[&ChannelDetails]>, logger: L,
991         scorer: &S, random_seed_bytes: &[u8; 32]
992 ) -> Result<Route, LightningError>
993 where L::Target: Logger, GL::Target: Logger {
994         let graph_lock = network_graph.read_only();
995         let final_cltv_expiry_delta = route_params.payment_params.final_cltv_expiry_delta;
996         let mut route = get_route(our_node_pubkey, &route_params.payment_params, &graph_lock, first_hops,
997                 route_params.final_value_msat, final_cltv_expiry_delta, logger, scorer,
998                 random_seed_bytes)?;
999         add_random_cltv_offset(&mut route, &route_params.payment_params, &graph_lock, random_seed_bytes);
1000         Ok(route)
1001 }
1002
1003 pub(crate) fn get_route<L: Deref, S: Score>(
1004         our_node_pubkey: &PublicKey, payment_params: &PaymentParameters, network_graph: &ReadOnlyNetworkGraph,
1005         first_hops: Option<&[&ChannelDetails]>, final_value_msat: u64, final_cltv_expiry_delta: u32,
1006         logger: L, scorer: &S, _random_seed_bytes: &[u8; 32]
1007 ) -> Result<Route, LightningError>
1008 where L::Target: Logger {
1009         let payee_node_id = NodeId::from_pubkey(&payment_params.payee_pubkey);
1010         let our_node_id = NodeId::from_pubkey(&our_node_pubkey);
1011
1012         if payee_node_id == our_node_id {
1013                 return Err(LightningError{err: "Cannot generate a route to ourselves".to_owned(), action: ErrorAction::IgnoreError});
1014         }
1015
1016         if final_value_msat > MAX_VALUE_MSAT {
1017                 return Err(LightningError{err: "Cannot generate a route of more value than all existing satoshis".to_owned(), action: ErrorAction::IgnoreError});
1018         }
1019
1020         if final_value_msat == 0 {
1021                 return Err(LightningError{err: "Cannot send a payment of 0 msat".to_owned(), action: ErrorAction::IgnoreError});
1022         }
1023
1024         for route in payment_params.route_hints.iter() {
1025                 for hop in &route.0 {
1026                         if hop.src_node_id == payment_params.payee_pubkey {
1027                                 return Err(LightningError{err: "Route hint cannot have the payee as the source.".to_owned(), action: ErrorAction::IgnoreError});
1028                         }
1029                 }
1030         }
1031         if payment_params.max_total_cltv_expiry_delta <= final_cltv_expiry_delta {
1032                 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});
1033         }
1034
1035         // TODO: Remove the explicit final_cltv_expiry_delta parameter
1036         debug_assert_eq!(final_cltv_expiry_delta, payment_params.final_cltv_expiry_delta);
1037
1038         // The general routing idea is the following:
1039         // 1. Fill first/last hops communicated by the caller.
1040         // 2. Attempt to construct a path from payer to payee for transferring
1041         //    any ~sufficient (described later) value.
1042         //    If succeed, remember which channels were used and how much liquidity they have available,
1043         //    so that future paths don't rely on the same liquidity.
1044         // 3. Proceed to the next step if:
1045         //    - we hit the recommended target value;
1046         //    - OR if we could not construct a new path. Any next attempt will fail too.
1047         //    Otherwise, repeat step 2.
1048         // 4. See if we managed to collect paths which aggregately are able to transfer target value
1049         //    (not recommended value).
1050         // 5. If yes, proceed. If not, fail routing.
1051         // 6. Select the paths which have the lowest cost (fee plus scorer penalty) per amount
1052         //    transferred up to the transfer target value.
1053         // 7. Reduce the value of the last path until we are sending only the target value.
1054         // 8. If our maximum channel saturation limit caused us to pick two identical paths, combine
1055         //    them so that we're not sending two HTLCs along the same path.
1056
1057         // As for the actual search algorithm, we do a payee-to-payer Dijkstra's sorting by each node's
1058         // distance from the payee
1059         //
1060         // We are not a faithful Dijkstra's implementation because we can change values which impact
1061         // earlier nodes while processing later nodes. Specifically, if we reach a channel with a lower
1062         // liquidity limit (via htlc_maximum_msat, on-chain capacity or assumed liquidity limits) than
1063         // the value we are currently attempting to send over a path, we simply reduce the value being
1064         // sent along the path for any hops after that channel. This may imply that later fees (which
1065         // we've already tabulated) are lower because a smaller value is passing through the channels
1066         // (and the proportional fee is thus lower). There isn't a trivial way to recalculate the
1067         // channels which were selected earlier (and which may still be used for other paths without a
1068         // lower liquidity limit), so we simply accept that some liquidity-limited paths may be
1069         // de-preferenced.
1070         //
1071         // One potentially problematic case for this algorithm would be if there are many
1072         // liquidity-limited paths which are liquidity-limited near the destination (ie early in our
1073         // graph walking), we may never find a path which is not liquidity-limited and has lower
1074         // proportional fee (and only lower absolute fee when considering the ultimate value sent).
1075         // Because we only consider paths with at least 5% of the total value being sent, the damage
1076         // from such a case should be limited, however this could be further reduced in the future by
1077         // calculating fees on the amount we wish to route over a path, ie ignoring the liquidity
1078         // limits for the purposes of fee calculation.
1079         //
1080         // Alternatively, we could store more detailed path information in the heap (targets, below)
1081         // and index the best-path map (dist, below) by node *and* HTLC limits, however that would blow
1082         // up the runtime significantly both algorithmically (as we'd traverse nodes multiple times)
1083         // and practically (as we would need to store dynamically-allocated path information in heap
1084         // objects, increasing malloc traffic and indirect memory access significantly). Further, the
1085         // results of such an algorithm would likely be biased towards lower-value paths.
1086         //
1087         // Further, we could return to a faithful Dijkstra's algorithm by rejecting paths with limits
1088         // outside of our current search value, running a path search more times to gather candidate
1089         // paths at different values. While this may be acceptable, further path searches may increase
1090         // runtime for little gain. Specifically, the current algorithm rather efficiently explores the
1091         // graph for candidate paths, calculating the maximum value which can realistically be sent at
1092         // the same time, remaining generic across different payment values.
1093
1094         let network_channels = network_graph.channels();
1095         let network_nodes = network_graph.nodes();
1096
1097         if payment_params.max_path_count == 0 {
1098                 return Err(LightningError{err: "Can't find a route with no paths allowed.".to_owned(), action: ErrorAction::IgnoreError});
1099         }
1100
1101         // Allow MPP only if we have a features set from somewhere that indicates the payee supports
1102         // it. If the payee supports it they're supposed to include it in the invoice, so that should
1103         // work reliably.
1104         let allow_mpp = if payment_params.max_path_count == 1 {
1105                 false
1106         } else if let Some(features) = &payment_params.features {
1107                 features.supports_basic_mpp()
1108         } else if let Some(node) = network_nodes.get(&payee_node_id) {
1109                 if let Some(node_info) = node.announcement_info.as_ref() {
1110                         node_info.features.supports_basic_mpp()
1111                 } else { false }
1112         } else { false };
1113
1114         log_trace!(logger, "Searching for a route from payer {} to payee {} {} MPP and {} first hops {}overriding the network graph", our_node_pubkey,
1115                 payment_params.payee_pubkey, if allow_mpp { "with" } else { "without" },
1116                 first_hops.map(|hops| hops.len()).unwrap_or(0), if first_hops.is_some() { "" } else { "not " });
1117
1118         // Step (1).
1119         // Prepare the data we'll use for payee-to-payer search by
1120         // inserting first hops suggested by the caller as targets.
1121         // Our search will then attempt to reach them while traversing from the payee node.
1122         let mut first_hop_targets: HashMap<_, Vec<&ChannelDetails>> =
1123                 HashMap::with_capacity(if first_hops.is_some() { first_hops.as_ref().unwrap().len() } else { 0 });
1124         if let Some(hops) = first_hops {
1125                 for chan in hops {
1126                         if chan.get_outbound_payment_scid().is_none() {
1127                                 panic!("first_hops should be filled in with usable channels, not pending ones");
1128                         }
1129                         if chan.counterparty.node_id == *our_node_pubkey {
1130                                 return Err(LightningError{err: "First hop cannot have our_node_pubkey as a destination.".to_owned(), action: ErrorAction::IgnoreError});
1131                         }
1132                         first_hop_targets
1133                                 .entry(NodeId::from_pubkey(&chan.counterparty.node_id))
1134                                 .or_insert(Vec::new())
1135                                 .push(chan);
1136                 }
1137                 if first_hop_targets.is_empty() {
1138                         return Err(LightningError{err: "Cannot route when there are no outbound routes away from us".to_owned(), action: ErrorAction::IgnoreError});
1139                 }
1140         }
1141
1142         // The main heap containing all candidate next-hops sorted by their score (max(fee,
1143         // htlc_minimum)). Ideally this would be a heap which allowed cheap score reduction instead of
1144         // adding duplicate entries when we find a better path to a given node.
1145         let mut targets: BinaryHeap<RouteGraphNode> = BinaryHeap::new();
1146
1147         // Map from node_id to information about the best current path to that node, including feerate
1148         // information.
1149         let mut dist: HashMap<NodeId, PathBuildingHop> = HashMap::with_capacity(network_nodes.len());
1150
1151         // During routing, if we ignore a path due to an htlc_minimum_msat limit, we set this,
1152         // indicating that we may wish to try again with a higher value, potentially paying to meet an
1153         // htlc_minimum with extra fees while still finding a cheaper path.
1154         let mut hit_minimum_limit;
1155
1156         // When arranging a route, we select multiple paths so that we can make a multi-path payment.
1157         // We start with a path_value of the exact amount we want, and if that generates a route we may
1158         // return it immediately. Otherwise, we don't stop searching for paths until we have 3x the
1159         // amount we want in total across paths, selecting the best subset at the end.
1160         const ROUTE_CAPACITY_PROVISION_FACTOR: u64 = 3;
1161         let recommended_value_msat = final_value_msat * ROUTE_CAPACITY_PROVISION_FACTOR as u64;
1162         let mut path_value_msat = final_value_msat;
1163
1164         // Routing Fragmentation Mitigation heuristic:
1165         //
1166         // Routing fragmentation across many payment paths increases the overall routing
1167         // fees as you have irreducible routing fees per-link used (`fee_base_msat`).
1168         // Taking too many smaller paths also increases the chance of payment failure.
1169         // Thus to avoid this effect, we require from our collected links to provide
1170         // at least a minimal contribution to the recommended value yet-to-be-fulfilled.
1171         // This requirement is currently set to be 1/max_path_count of the payment
1172         // value to ensure we only ever return routes that do not violate this limit.
1173         let minimal_value_contribution_msat: u64 = if allow_mpp {
1174                 (final_value_msat + (payment_params.max_path_count as u64 - 1)) / payment_params.max_path_count as u64
1175         } else {
1176                 final_value_msat
1177         };
1178
1179         // When we start collecting routes we enforce the max_channel_saturation_power_of_half
1180         // requirement strictly. After we've collected enough (or if we fail to find new routes) we
1181         // drop the requirement by setting this to 0.
1182         let mut channel_saturation_pow_half = payment_params.max_channel_saturation_power_of_half;
1183
1184         // Keep track of how much liquidity has been used in selected channels. Used to determine
1185         // if the channel can be used by additional MPP paths or to inform path finding decisions. It is
1186         // aware of direction *only* to ensure that the correct htlc_maximum_msat value is used. Hence,
1187         // liquidity used in one direction will not offset any used in the opposite direction.
1188         let mut used_channel_liquidities: HashMap<(u64, bool), u64> =
1189                 HashMap::with_capacity(network_nodes.len());
1190
1191         // Keeping track of how much value we already collected across other paths. Helps to decide
1192         // when we want to stop looking for new paths.
1193         let mut already_collected_value_msat = 0;
1194
1195         for (_, channels) in first_hop_targets.iter_mut() {
1196                 // Sort the first_hops channels to the same node(s) in priority order of which channel we'd
1197                 // most like to use.
1198                 //
1199                 // First, if channels are below `recommended_value_msat`, sort them in descending order,
1200                 // preferring larger channels to avoid splitting the payment into more MPP parts than is
1201                 // required.
1202                 //
1203                 // Second, because simply always sorting in descending order would always use our largest
1204                 // available outbound capacity, needlessly fragmenting our available channel capacities,
1205                 // sort channels above `recommended_value_msat` in ascending order, preferring channels
1206                 // which have enough, but not too much, capacity for the payment.
1207                 channels.sort_unstable_by(|chan_a, chan_b| {
1208                         if chan_b.next_outbound_htlc_limit_msat < recommended_value_msat || chan_a.next_outbound_htlc_limit_msat < recommended_value_msat {
1209                                 // Sort in descending order
1210                                 chan_b.next_outbound_htlc_limit_msat.cmp(&chan_a.next_outbound_htlc_limit_msat)
1211                         } else {
1212                                 // Sort in ascending order
1213                                 chan_a.next_outbound_htlc_limit_msat.cmp(&chan_b.next_outbound_htlc_limit_msat)
1214                         }
1215                 });
1216         }
1217
1218         log_trace!(logger, "Building path from {} (payee) to {} (us/payer) for value {} msat.", payment_params.payee_pubkey, our_node_pubkey, final_value_msat);
1219
1220         macro_rules! add_entry {
1221                 // Adds entry which goes from $src_node_id to $dest_node_id over the $candidate hop.
1222                 // $next_hops_fee_msat represents the fees paid for using all the channels *after* this one,
1223                 // since that value has to be transferred over this channel.
1224                 // Returns whether this channel caused an update to `targets`.
1225                 ( $candidate: expr, $src_node_id: expr, $dest_node_id: expr, $next_hops_fee_msat: expr,
1226                         $next_hops_value_contribution: expr, $next_hops_path_htlc_minimum_msat: expr,
1227                         $next_hops_path_penalty_msat: expr, $next_hops_cltv_delta: expr, $next_hops_path_length: expr ) => { {
1228                         // We "return" whether we updated the path at the end, via this:
1229                         let mut did_add_update_path_to_src_node = false;
1230                         // Channels to self should not be used. This is more of belt-and-suspenders, because in
1231                         // practice these cases should be caught earlier:
1232                         // - for regular channels at channel announcement (TODO)
1233                         // - for first and last hops early in get_route
1234                         if $src_node_id != $dest_node_id {
1235                                 let short_channel_id = $candidate.short_channel_id();
1236                                 let effective_capacity = $candidate.effective_capacity();
1237                                 let htlc_maximum_msat = max_htlc_from_capacity(effective_capacity, channel_saturation_pow_half);
1238
1239                                 // It is tricky to subtract $next_hops_fee_msat from available liquidity here.
1240                                 // It may be misleading because we might later choose to reduce the value transferred
1241                                 // over these channels, and the channel which was insufficient might become sufficient.
1242                                 // Worst case: we drop a good channel here because it can't cover the high following
1243                                 // fees caused by one expensive channel, but then this channel could have been used
1244                                 // if the amount being transferred over this path is lower.
1245                                 // We do this for now, but this is a subject for removal.
1246                                 if let Some(mut available_value_contribution_msat) = htlc_maximum_msat.checked_sub($next_hops_fee_msat) {
1247                                         let used_liquidity_msat = used_channel_liquidities
1248                                                 .get(&(short_channel_id, $src_node_id < $dest_node_id))
1249                                                 .map_or(0, |used_liquidity_msat| {
1250                                                         available_value_contribution_msat = available_value_contribution_msat
1251                                                                 .saturating_sub(*used_liquidity_msat);
1252                                                         *used_liquidity_msat
1253                                                 });
1254
1255                                         // Verify the liquidity offered by this channel complies to the minimal contribution.
1256                                         let contributes_sufficient_value = available_value_contribution_msat >= minimal_value_contribution_msat;
1257                                         // Do not consider candidate hops that would exceed the maximum path length.
1258                                         let path_length_to_node = $next_hops_path_length + 1;
1259                                         let exceeds_max_path_length = path_length_to_node > MAX_PATH_LENGTH_ESTIMATE;
1260
1261                                         // Do not consider candidates that exceed the maximum total cltv expiry limit.
1262                                         // In order to already account for some of the privacy enhancing random CLTV
1263                                         // expiry delta offset we add on top later, we subtract a rough estimate
1264                                         // (2*MEDIAN_HOP_CLTV_EXPIRY_DELTA) here.
1265                                         let max_total_cltv_expiry_delta = (payment_params.max_total_cltv_expiry_delta - final_cltv_expiry_delta)
1266                                                 .checked_sub(2*MEDIAN_HOP_CLTV_EXPIRY_DELTA)
1267                                                 .unwrap_or(payment_params.max_total_cltv_expiry_delta - final_cltv_expiry_delta);
1268                                         let hop_total_cltv_delta = ($next_hops_cltv_delta as u32)
1269                                                 .saturating_add($candidate.cltv_expiry_delta());
1270                                         let exceeds_cltv_delta_limit = hop_total_cltv_delta > max_total_cltv_expiry_delta;
1271
1272                                         let value_contribution_msat = cmp::min(available_value_contribution_msat, $next_hops_value_contribution);
1273                                         // Includes paying fees for the use of the following channels.
1274                                         let amount_to_transfer_over_msat: u64 = match value_contribution_msat.checked_add($next_hops_fee_msat) {
1275                                                 Some(result) => result,
1276                                                 // Can't overflow due to how the values were computed right above.
1277                                                 None => unreachable!(),
1278                                         };
1279                                         #[allow(unused_comparisons)] // $next_hops_path_htlc_minimum_msat is 0 in some calls so rustc complains
1280                                         let over_path_minimum_msat = amount_to_transfer_over_msat >= $candidate.htlc_minimum_msat() &&
1281                                                 amount_to_transfer_over_msat >= $next_hops_path_htlc_minimum_msat;
1282
1283                                         #[allow(unused_comparisons)] // $next_hops_path_htlc_minimum_msat is 0 in some calls so rustc complains
1284                                         let may_overpay_to_meet_path_minimum_msat =
1285                                                 ((amount_to_transfer_over_msat < $candidate.htlc_minimum_msat() &&
1286                                                   recommended_value_msat > $candidate.htlc_minimum_msat()) ||
1287                                                  (amount_to_transfer_over_msat < $next_hops_path_htlc_minimum_msat &&
1288                                                   recommended_value_msat > $next_hops_path_htlc_minimum_msat));
1289
1290                                         let payment_failed_on_this_channel =
1291                                                 payment_params.previously_failed_channels.contains(&short_channel_id);
1292
1293                                         // If HTLC minimum is larger than the amount we're going to transfer, we shouldn't
1294                                         // bother considering this channel. If retrying with recommended_value_msat may
1295                                         // allow us to hit the HTLC minimum limit, set htlc_minimum_limit so that we go
1296                                         // around again with a higher amount.
1297                                         if !contributes_sufficient_value || exceeds_max_path_length ||
1298                                                 exceeds_cltv_delta_limit || payment_failed_on_this_channel {
1299                                                 // Path isn't useful, ignore it and move on.
1300                                         } else if may_overpay_to_meet_path_minimum_msat {
1301                                                 hit_minimum_limit = true;
1302                                         } else if over_path_minimum_msat {
1303                                                 // Note that low contribution here (limited by available_liquidity_msat)
1304                                                 // might violate htlc_minimum_msat on the hops which are next along the
1305                                                 // payment path (upstream to the payee). To avoid that, we recompute
1306                                                 // path fees knowing the final path contribution after constructing it.
1307                                                 let path_htlc_minimum_msat = cmp::max(
1308                                                         compute_fees_saturating($next_hops_path_htlc_minimum_msat, $candidate.fees())
1309                                                                 .saturating_add($next_hops_path_htlc_minimum_msat),
1310                                                         $candidate.htlc_minimum_msat());
1311                                                 let hm_entry = dist.entry($src_node_id);
1312                                                 let old_entry = hm_entry.or_insert_with(|| {
1313                                                         // If there was previously no known way to access the source node
1314                                                         // (recall it goes payee-to-payer) of short_channel_id, first add a
1315                                                         // semi-dummy record just to compute the fees to reach the source node.
1316                                                         // This will affect our decision on selecting short_channel_id
1317                                                         // as a way to reach the $dest_node_id.
1318                                                         PathBuildingHop {
1319                                                                 node_id: $dest_node_id.clone(),
1320                                                                 candidate: $candidate.clone(),
1321                                                                 fee_msat: 0,
1322                                                                 next_hops_fee_msat: u64::max_value(),
1323                                                                 hop_use_fee_msat: u64::max_value(),
1324                                                                 total_fee_msat: u64::max_value(),
1325                                                                 path_htlc_minimum_msat,
1326                                                                 path_penalty_msat: u64::max_value(),
1327                                                                 was_processed: false,
1328                                                                 #[cfg(all(not(feature = "_bench_unstable"), any(test, fuzzing)))]
1329                                                                 value_contribution_msat,
1330                                                         }
1331                                                 });
1332
1333                                                 #[allow(unused_mut)] // We only use the mut in cfg(test)
1334                                                 let mut should_process = !old_entry.was_processed;
1335                                                 #[cfg(all(not(feature = "_bench_unstable"), any(test, fuzzing)))]
1336                                                 {
1337                                                         // In test/fuzzing builds, we do extra checks to make sure the skipping
1338                                                         // of already-seen nodes only happens in cases we expect (see below).
1339                                                         if !should_process { should_process = true; }
1340                                                 }
1341
1342                                                 if should_process {
1343                                                         let mut hop_use_fee_msat = 0;
1344                                                         let mut total_fee_msat: u64 = $next_hops_fee_msat;
1345
1346                                                         // Ignore hop_use_fee_msat for channel-from-us as we assume all channels-from-us
1347                                                         // will have the same effective-fee
1348                                                         if $src_node_id != our_node_id {
1349                                                                 // Note that `u64::max_value` means we'll always fail the
1350                                                                 // `old_entry.total_fee_msat > total_fee_msat` check below
1351                                                                 hop_use_fee_msat = compute_fees_saturating(amount_to_transfer_over_msat, $candidate.fees());
1352                                                                 total_fee_msat = total_fee_msat.saturating_add(hop_use_fee_msat);
1353                                                         }
1354
1355                                                         let channel_usage = ChannelUsage {
1356                                                                 amount_msat: amount_to_transfer_over_msat,
1357                                                                 inflight_htlc_msat: used_liquidity_msat,
1358                                                                 effective_capacity,
1359                                                         };
1360                                                         let channel_penalty_msat = scorer.channel_penalty_msat(
1361                                                                 short_channel_id, &$src_node_id, &$dest_node_id, channel_usage
1362                                                         );
1363                                                         let path_penalty_msat = $next_hops_path_penalty_msat
1364                                                                 .saturating_add(channel_penalty_msat);
1365                                                         let new_graph_node = RouteGraphNode {
1366                                                                 node_id: $src_node_id,
1367                                                                 lowest_fee_to_node: total_fee_msat,
1368                                                                 total_cltv_delta: hop_total_cltv_delta,
1369                                                                 value_contribution_msat,
1370                                                                 path_htlc_minimum_msat,
1371                                                                 path_penalty_msat,
1372                                                                 path_length_to_node,
1373                                                         };
1374
1375                                                         // Update the way of reaching $src_node_id with the given short_channel_id (from $dest_node_id),
1376                                                         // if this way is cheaper than the already known
1377                                                         // (considering the cost to "reach" this channel from the route destination,
1378                                                         // the cost of using this channel,
1379                                                         // and the cost of routing to the source node of this channel).
1380                                                         // Also, consider that htlc_minimum_msat_difference, because we might end up
1381                                                         // paying it. Consider the following exploit:
1382                                                         // we use 2 paths to transfer 1.5 BTC. One of them is 0-fee normal 1 BTC path,
1383                                                         // and for the other one we picked a 1sat-fee path with htlc_minimum_msat of
1384                                                         // 1 BTC. Now, since the latter is more expensive, we gonna try to cut it
1385                                                         // by 0.5 BTC, but then match htlc_minimum_msat by paying a fee of 0.5 BTC
1386                                                         // to this channel.
1387                                                         // Ideally the scoring could be smarter (e.g. 0.5*htlc_minimum_msat here),
1388                                                         // but it may require additional tracking - we don't want to double-count
1389                                                         // the fees included in $next_hops_path_htlc_minimum_msat, but also
1390                                                         // can't use something that may decrease on future hops.
1391                                                         let old_cost = cmp::max(old_entry.total_fee_msat, old_entry.path_htlc_minimum_msat)
1392                                                                 .saturating_add(old_entry.path_penalty_msat);
1393                                                         let new_cost = cmp::max(total_fee_msat, path_htlc_minimum_msat)
1394                                                                 .saturating_add(path_penalty_msat);
1395
1396                                                         if !old_entry.was_processed && new_cost < old_cost {
1397                                                                 targets.push(new_graph_node);
1398                                                                 old_entry.next_hops_fee_msat = $next_hops_fee_msat;
1399                                                                 old_entry.hop_use_fee_msat = hop_use_fee_msat;
1400                                                                 old_entry.total_fee_msat = total_fee_msat;
1401                                                                 old_entry.node_id = $dest_node_id.clone();
1402                                                                 old_entry.candidate = $candidate.clone();
1403                                                                 old_entry.fee_msat = 0; // This value will be later filled with hop_use_fee_msat of the following channel
1404                                                                 old_entry.path_htlc_minimum_msat = path_htlc_minimum_msat;
1405                                                                 old_entry.path_penalty_msat = path_penalty_msat;
1406                                                                 #[cfg(all(not(feature = "_bench_unstable"), any(test, fuzzing)))]
1407                                                                 {
1408                                                                         old_entry.value_contribution_msat = value_contribution_msat;
1409                                                                 }
1410                                                                 did_add_update_path_to_src_node = true;
1411                                                         } else if old_entry.was_processed && new_cost < old_cost {
1412                                                                 #[cfg(all(not(feature = "_bench_unstable"), any(test, fuzzing)))]
1413                                                                 {
1414                                                                         // If we're skipping processing a node which was previously
1415                                                                         // processed even though we found another path to it with a
1416                                                                         // cheaper fee, check that it was because the second path we
1417                                                                         // found (which we are processing now) has a lower value
1418                                                                         // contribution due to an HTLC minimum limit.
1419                                                                         //
1420                                                                         // e.g. take a graph with two paths from node 1 to node 2, one
1421                                                                         // through channel A, and one through channel B. Channel A and
1422                                                                         // B are both in the to-process heap, with their scores set by
1423                                                                         // a higher htlc_minimum than fee.
1424                                                                         // Channel A is processed first, and the channels onwards from
1425                                                                         // node 1 are added to the to-process heap. Thereafter, we pop
1426                                                                         // Channel B off of the heap, note that it has a much more
1427                                                                         // restrictive htlc_maximum_msat, and recalculate the fees for
1428                                                                         // all of node 1's channels using the new, reduced, amount.
1429                                                                         //
1430                                                                         // This would be bogus - we'd be selecting a higher-fee path
1431                                                                         // with a lower htlc_maximum_msat instead of the one we'd
1432                                                                         // already decided to use.
1433                                                                         debug_assert!(path_htlc_minimum_msat < old_entry.path_htlc_minimum_msat);
1434                                                                         debug_assert!(
1435                                                                                 value_contribution_msat + path_penalty_msat <
1436                                                                                 old_entry.value_contribution_msat + old_entry.path_penalty_msat
1437                                                                         );
1438                                                                 }
1439                                                         }
1440                                                 }
1441                                         }
1442                                 }
1443                         }
1444                         did_add_update_path_to_src_node
1445                 } }
1446         }
1447
1448         let default_node_features = default_node_features();
1449
1450         // Find ways (channels with destination) to reach a given node and store them
1451         // in the corresponding data structures (routing graph etc).
1452         // $fee_to_target_msat represents how much it costs to reach to this node from the payee,
1453         // meaning how much will be paid in fees after this node (to the best of our knowledge).
1454         // This data can later be helpful to optimize routing (pay lower fees).
1455         macro_rules! add_entries_to_cheapest_to_target_node {
1456                 ( $node: expr, $node_id: expr, $fee_to_target_msat: expr, $next_hops_value_contribution: expr,
1457                   $next_hops_path_htlc_minimum_msat: expr, $next_hops_path_penalty_msat: expr,
1458                   $next_hops_cltv_delta: expr, $next_hops_path_length: expr ) => {
1459                         let skip_node = if let Some(elem) = dist.get_mut(&$node_id) {
1460                                 let was_processed = elem.was_processed;
1461                                 elem.was_processed = true;
1462                                 was_processed
1463                         } else {
1464                                 // Entries are added to dist in add_entry!() when there is a channel from a node.
1465                                 // Because there are no channels from payee, it will not have a dist entry at this point.
1466                                 // If we're processing any other node, it is always be the result of a channel from it.
1467                                 assert_eq!($node_id, payee_node_id);
1468                                 false
1469                         };
1470
1471                         if !skip_node {
1472                                 if let Some(first_channels) = first_hop_targets.get(&$node_id) {
1473                                         for details in first_channels {
1474                                                 let candidate = CandidateRouteHop::FirstHop { details };
1475                                                 add_entry!(candidate, our_node_id, $node_id, $fee_to_target_msat,
1476                                                         $next_hops_value_contribution,
1477                                                         $next_hops_path_htlc_minimum_msat, $next_hops_path_penalty_msat,
1478                                                         $next_hops_cltv_delta, $next_hops_path_length);
1479                                         }
1480                                 }
1481
1482                                 let features = if let Some(node_info) = $node.announcement_info.as_ref() {
1483                                         &node_info.features
1484                                 } else {
1485                                         &default_node_features
1486                                 };
1487
1488                                 if !features.requires_unknown_bits() {
1489                                         for chan_id in $node.channels.iter() {
1490                                                 let chan = network_channels.get(chan_id).unwrap();
1491                                                 if !chan.features.requires_unknown_bits() {
1492                                                         if let Some((directed_channel, source)) = chan.as_directed_to(&$node_id) {
1493                                                                 if first_hops.is_none() || *source != our_node_id {
1494                                                                         if directed_channel.direction().enabled {
1495                                                                                 let candidate = CandidateRouteHop::PublicHop {
1496                                                                                         info: directed_channel,
1497                                                                                         short_channel_id: *chan_id,
1498                                                                                 };
1499                                                                                 add_entry!(candidate, *source, $node_id,
1500                                                                                         $fee_to_target_msat,
1501                                                                                         $next_hops_value_contribution,
1502                                                                                         $next_hops_path_htlc_minimum_msat,
1503                                                                                         $next_hops_path_penalty_msat,
1504                                                                                         $next_hops_cltv_delta, $next_hops_path_length);
1505                                                                         }
1506                                                                 }
1507                                                         }
1508                                                 }
1509                                         }
1510                                 }
1511                         }
1512                 };
1513         }
1514
1515         let mut payment_paths = Vec::<PaymentPath>::new();
1516
1517         // TODO: diversify by nodes (so that all paths aren't doomed if one node is offline).
1518         'paths_collection: loop {
1519                 // For every new path, start from scratch, except for used_channel_liquidities, which
1520                 // helps to avoid reusing previously selected paths in future iterations.
1521                 targets.clear();
1522                 dist.clear();
1523                 hit_minimum_limit = false;
1524
1525                 // If first hop is a private channel and the only way to reach the payee, this is the only
1526                 // place where it could be added.
1527                 if let Some(first_channels) = first_hop_targets.get(&payee_node_id) {
1528                         for details in first_channels {
1529                                 let candidate = CandidateRouteHop::FirstHop { details };
1530                                 let added = add_entry!(candidate, our_node_id, payee_node_id, 0, path_value_msat,
1531                                                                         0, 0u64, 0, 0);
1532                                 log_trace!(logger, "{} direct route to payee via SCID {}",
1533                                                 if added { "Added" } else { "Skipped" }, candidate.short_channel_id());
1534                         }
1535                 }
1536
1537                 // Add the payee as a target, so that the payee-to-payer
1538                 // search algorithm knows what to start with.
1539                 match network_nodes.get(&payee_node_id) {
1540                         // The payee is not in our network graph, so nothing to add here.
1541                         // There is still a chance of reaching them via last_hops though,
1542                         // so don't yet fail the payment here.
1543                         // If not, targets.pop() will not even let us enter the loop in step 2.
1544                         None => {},
1545                         Some(node) => {
1546                                 add_entries_to_cheapest_to_target_node!(node, payee_node_id, 0, path_value_msat, 0, 0u64, 0, 0);
1547                         },
1548                 }
1549
1550                 // Step (2).
1551                 // If a caller provided us with last hops, add them to routing targets. Since this happens
1552                 // earlier than general path finding, they will be somewhat prioritized, although currently
1553                 // it matters only if the fees are exactly the same.
1554                 for route in payment_params.route_hints.iter().filter(|route| !route.0.is_empty()) {
1555                         let first_hop_in_route = &(route.0)[0];
1556                         let have_hop_src_in_graph =
1557                                 // Only add the hops in this route to our candidate set if either
1558                                 // we have a direct channel to the first hop or the first hop is
1559                                 // in the regular network graph.
1560                                 first_hop_targets.get(&NodeId::from_pubkey(&first_hop_in_route.src_node_id)).is_some() ||
1561                                 network_nodes.get(&NodeId::from_pubkey(&first_hop_in_route.src_node_id)).is_some();
1562                         if have_hop_src_in_graph {
1563                                 // We start building the path from reverse, i.e., from payee
1564                                 // to the first RouteHintHop in the path.
1565                                 let hop_iter = route.0.iter().rev();
1566                                 let prev_hop_iter = core::iter::once(&payment_params.payee_pubkey).chain(
1567                                         route.0.iter().skip(1).rev().map(|hop| &hop.src_node_id));
1568                                 let mut hop_used = true;
1569                                 let mut aggregate_next_hops_fee_msat: u64 = 0;
1570                                 let mut aggregate_next_hops_path_htlc_minimum_msat: u64 = 0;
1571                                 let mut aggregate_next_hops_path_penalty_msat: u64 = 0;
1572                                 let mut aggregate_next_hops_cltv_delta: u32 = 0;
1573                                 let mut aggregate_next_hops_path_length: u8 = 0;
1574
1575                                 for (idx, (hop, prev_hop_id)) in hop_iter.zip(prev_hop_iter).enumerate() {
1576                                         let source = NodeId::from_pubkey(&hop.src_node_id);
1577                                         let target = NodeId::from_pubkey(&prev_hop_id);
1578                                         let candidate = network_channels
1579                                                 .get(&hop.short_channel_id)
1580                                                 .and_then(|channel| channel.as_directed_to(&target))
1581                                                 .map(|(info, _)| CandidateRouteHop::PublicHop {
1582                                                         info,
1583                                                         short_channel_id: hop.short_channel_id,
1584                                                 })
1585                                                 .unwrap_or_else(|| CandidateRouteHop::PrivateHop { hint: hop });
1586
1587                                         if !add_entry!(candidate, source, target, aggregate_next_hops_fee_msat,
1588                                                                 path_value_msat, aggregate_next_hops_path_htlc_minimum_msat,
1589                                                                 aggregate_next_hops_path_penalty_msat,
1590                                                                 aggregate_next_hops_cltv_delta, aggregate_next_hops_path_length) {
1591                                                 // If this hop was not used then there is no use checking the preceding
1592                                                 // hops in the RouteHint. We can break by just searching for a direct
1593                                                 // channel between last checked hop and first_hop_targets.
1594                                                 hop_used = false;
1595                                         }
1596
1597                                         let used_liquidity_msat = used_channel_liquidities
1598                                                 .get(&(hop.short_channel_id, source < target)).copied().unwrap_or(0);
1599                                         let channel_usage = ChannelUsage {
1600                                                 amount_msat: final_value_msat + aggregate_next_hops_fee_msat,
1601                                                 inflight_htlc_msat: used_liquidity_msat,
1602                                                 effective_capacity: candidate.effective_capacity(),
1603                                         };
1604                                         let channel_penalty_msat = scorer.channel_penalty_msat(
1605                                                 hop.short_channel_id, &source, &target, channel_usage
1606                                         );
1607                                         aggregate_next_hops_path_penalty_msat = aggregate_next_hops_path_penalty_msat
1608                                                 .saturating_add(channel_penalty_msat);
1609
1610                                         aggregate_next_hops_cltv_delta = aggregate_next_hops_cltv_delta
1611                                                 .saturating_add(hop.cltv_expiry_delta as u32);
1612
1613                                         aggregate_next_hops_path_length = aggregate_next_hops_path_length
1614                                                 .saturating_add(1);
1615
1616                                         // Searching for a direct channel between last checked hop and first_hop_targets
1617                                         if let Some(first_channels) = first_hop_targets.get(&NodeId::from_pubkey(&prev_hop_id)) {
1618                                                 for details in first_channels {
1619                                                         let candidate = CandidateRouteHop::FirstHop { details };
1620                                                         add_entry!(candidate, our_node_id, NodeId::from_pubkey(&prev_hop_id),
1621                                                                 aggregate_next_hops_fee_msat, path_value_msat,
1622                                                                 aggregate_next_hops_path_htlc_minimum_msat,
1623                                                                 aggregate_next_hops_path_penalty_msat, aggregate_next_hops_cltv_delta,
1624                                                                 aggregate_next_hops_path_length);
1625                                                 }
1626                                         }
1627
1628                                         if !hop_used {
1629                                                 break;
1630                                         }
1631
1632                                         // In the next values of the iterator, the aggregate fees already reflects
1633                                         // the sum of value sent from payer (final_value_msat) and routing fees
1634                                         // for the last node in the RouteHint. We need to just add the fees to
1635                                         // route through the current node so that the preceding node (next iteration)
1636                                         // can use it.
1637                                         let hops_fee = compute_fees(aggregate_next_hops_fee_msat + final_value_msat, hop.fees)
1638                                                 .map_or(None, |inc| inc.checked_add(aggregate_next_hops_fee_msat));
1639                                         aggregate_next_hops_fee_msat = if let Some(val) = hops_fee { val } else { break; };
1640
1641                                         let hop_htlc_minimum_msat = candidate.htlc_minimum_msat();
1642                                         let hop_htlc_minimum_msat_inc = if let Some(val) = compute_fees(aggregate_next_hops_path_htlc_minimum_msat, hop.fees) { val } else { break; };
1643                                         let hops_path_htlc_minimum = aggregate_next_hops_path_htlc_minimum_msat
1644                                                 .checked_add(hop_htlc_minimum_msat_inc);
1645                                         aggregate_next_hops_path_htlc_minimum_msat = if let Some(val) = hops_path_htlc_minimum { cmp::max(hop_htlc_minimum_msat, val) } else { break; };
1646
1647                                         if idx == route.0.len() - 1 {
1648                                                 // The last hop in this iterator is the first hop in
1649                                                 // overall RouteHint.
1650                                                 // If this hop connects to a node with which we have a direct channel,
1651                                                 // ignore the network graph and, if the last hop was added, add our
1652                                                 // direct channel to the candidate set.
1653                                                 //
1654                                                 // Note that we *must* check if the last hop was added as `add_entry`
1655                                                 // always assumes that the third argument is a node to which we have a
1656                                                 // path.
1657                                                 if let Some(first_channels) = first_hop_targets.get(&NodeId::from_pubkey(&hop.src_node_id)) {
1658                                                         for details in first_channels {
1659                                                                 let candidate = CandidateRouteHop::FirstHop { details };
1660                                                                 add_entry!(candidate, our_node_id,
1661                                                                         NodeId::from_pubkey(&hop.src_node_id),
1662                                                                         aggregate_next_hops_fee_msat, path_value_msat,
1663                                                                         aggregate_next_hops_path_htlc_minimum_msat,
1664                                                                         aggregate_next_hops_path_penalty_msat,
1665                                                                         aggregate_next_hops_cltv_delta,
1666                                                                         aggregate_next_hops_path_length);
1667                                                         }
1668                                                 }
1669                                         }
1670                                 }
1671                         }
1672                 }
1673
1674                 log_trace!(logger, "Starting main path collection loop with {} nodes pre-filled from first/last hops.", targets.len());
1675
1676                 // At this point, targets are filled with the data from first and
1677                 // last hops communicated by the caller, and the payment receiver.
1678                 let mut found_new_path = false;
1679
1680                 // Step (3).
1681                 // If this loop terminates due the exhaustion of targets, two situations are possible:
1682                 // - not enough outgoing liquidity:
1683                 //   0 < already_collected_value_msat < final_value_msat
1684                 // - enough outgoing liquidity:
1685                 //   final_value_msat <= already_collected_value_msat < recommended_value_msat
1686                 // Both these cases (and other cases except reaching recommended_value_msat) mean that
1687                 // paths_collection will be stopped because found_new_path==false.
1688                 // This is not necessarily a routing failure.
1689                 '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() {
1690
1691                         // Since we're going payee-to-payer, hitting our node as a target means we should stop
1692                         // traversing the graph and arrange the path out of what we found.
1693                         if node_id == our_node_id {
1694                                 let mut new_entry = dist.remove(&our_node_id).unwrap();
1695                                 let mut ordered_hops: Vec<(PathBuildingHop, NodeFeatures)> = vec!((new_entry.clone(), default_node_features.clone()));
1696
1697                                 'path_walk: loop {
1698                                         let mut features_set = false;
1699                                         if let Some(first_channels) = first_hop_targets.get(&ordered_hops.last().unwrap().0.node_id) {
1700                                                 for details in first_channels {
1701                                                         if details.get_outbound_payment_scid().unwrap() == ordered_hops.last().unwrap().0.candidate.short_channel_id() {
1702                                                                 ordered_hops.last_mut().unwrap().1 = details.counterparty.features.to_context();
1703                                                                 features_set = true;
1704                                                                 break;
1705                                                         }
1706                                                 }
1707                                         }
1708                                         if !features_set {
1709                                                 if let Some(node) = network_nodes.get(&ordered_hops.last().unwrap().0.node_id) {
1710                                                         if let Some(node_info) = node.announcement_info.as_ref() {
1711                                                                 ordered_hops.last_mut().unwrap().1 = node_info.features.clone();
1712                                                         } else {
1713                                                                 ordered_hops.last_mut().unwrap().1 = default_node_features.clone();
1714                                                         }
1715                                                 } else {
1716                                                         // We can fill in features for everything except hops which were
1717                                                         // provided via the invoice we're paying. We could guess based on the
1718                                                         // recipient's features but for now we simply avoid guessing at all.
1719                                                 }
1720                                         }
1721
1722                                         // Means we succesfully traversed from the payer to the payee, now
1723                                         // save this path for the payment route. Also, update the liquidity
1724                                         // remaining on the used hops, so that we take them into account
1725                                         // while looking for more paths.
1726                                         if ordered_hops.last().unwrap().0.node_id == payee_node_id {
1727                                                 break 'path_walk;
1728                                         }
1729
1730                                         new_entry = match dist.remove(&ordered_hops.last().unwrap().0.node_id) {
1731                                                 Some(payment_hop) => payment_hop,
1732                                                 // We can't arrive at None because, if we ever add an entry to targets,
1733                                                 // we also fill in the entry in dist (see add_entry!).
1734                                                 None => unreachable!(),
1735                                         };
1736                                         // We "propagate" the fees one hop backward (topologically) here,
1737                                         // so that fees paid for a HTLC forwarding on the current channel are
1738                                         // associated with the previous channel (where they will be subtracted).
1739                                         ordered_hops.last_mut().unwrap().0.fee_msat = new_entry.hop_use_fee_msat;
1740                                         ordered_hops.push((new_entry.clone(), default_node_features.clone()));
1741                                 }
1742                                 ordered_hops.last_mut().unwrap().0.fee_msat = value_contribution_msat;
1743                                 ordered_hops.last_mut().unwrap().0.hop_use_fee_msat = 0;
1744
1745                                 log_trace!(logger, "Found a path back to us from the target with {} hops contributing up to {} msat: \n {:#?}",
1746                                         ordered_hops.len(), value_contribution_msat, ordered_hops.iter().map(|h| &(h.0)).collect::<Vec<&PathBuildingHop>>());
1747
1748                                 let mut payment_path = PaymentPath {hops: ordered_hops};
1749
1750                                 // We could have possibly constructed a slightly inconsistent path: since we reduce
1751                                 // value being transferred along the way, we could have violated htlc_minimum_msat
1752                                 // on some channels we already passed (assuming dest->source direction). Here, we
1753                                 // recompute the fees again, so that if that's the case, we match the currently
1754                                 // underpaid htlc_minimum_msat with fees.
1755                                 debug_assert_eq!(payment_path.get_value_msat(), value_contribution_msat);
1756                                 value_contribution_msat = cmp::min(value_contribution_msat, final_value_msat);
1757                                 payment_path.update_value_and_recompute_fees(value_contribution_msat);
1758
1759                                 // Since a path allows to transfer as much value as
1760                                 // the smallest channel it has ("bottleneck"), we should recompute
1761                                 // the fees so sender HTLC don't overpay fees when traversing
1762                                 // larger channels than the bottleneck. This may happen because
1763                                 // when we were selecting those channels we were not aware how much value
1764                                 // this path will transfer, and the relative fee for them
1765                                 // might have been computed considering a larger value.
1766                                 // Remember that we used these channels so that we don't rely
1767                                 // on the same liquidity in future paths.
1768                                 let mut prevented_redundant_path_selection = false;
1769                                 let prev_hop_iter = core::iter::once(&our_node_id)
1770                                         .chain(payment_path.hops.iter().map(|(hop, _)| &hop.node_id));
1771                                 for (prev_hop, (hop, _)) in prev_hop_iter.zip(payment_path.hops.iter()) {
1772                                         let spent_on_hop_msat = value_contribution_msat + hop.next_hops_fee_msat;
1773                                         let used_liquidity_msat = used_channel_liquidities
1774                                                 .entry((hop.candidate.short_channel_id(), *prev_hop < hop.node_id))
1775                                                 .and_modify(|used_liquidity_msat| *used_liquidity_msat += spent_on_hop_msat)
1776                                                 .or_insert(spent_on_hop_msat);
1777                                         let hop_capacity = hop.candidate.effective_capacity();
1778                                         let hop_max_msat = max_htlc_from_capacity(hop_capacity, channel_saturation_pow_half);
1779                                         if *used_liquidity_msat == hop_max_msat {
1780                                                 // If this path used all of this channel's available liquidity, we know
1781                                                 // this path will not be selected again in the next loop iteration.
1782                                                 prevented_redundant_path_selection = true;
1783                                         }
1784                                         debug_assert!(*used_liquidity_msat <= hop_max_msat);
1785                                 }
1786                                 if !prevented_redundant_path_selection {
1787                                         // If we weren't capped by hitting a liquidity limit on a channel in the path,
1788                                         // we'll probably end up picking the same path again on the next iteration.
1789                                         // Decrease the available liquidity of a hop in the middle of the path.
1790                                         let victim_scid = payment_path.hops[(payment_path.hops.len()) / 2].0.candidate.short_channel_id();
1791                                         let exhausted = u64::max_value();
1792                                         log_trace!(logger, "Disabling channel {} for future path building iterations to avoid duplicates.", victim_scid);
1793                                         *used_channel_liquidities.entry((victim_scid, false)).or_default() = exhausted;
1794                                         *used_channel_liquidities.entry((victim_scid, true)).or_default() = exhausted;
1795                                 }
1796
1797                                 // Track the total amount all our collected paths allow to send so that we know
1798                                 // when to stop looking for more paths
1799                                 already_collected_value_msat += value_contribution_msat;
1800
1801                                 payment_paths.push(payment_path);
1802                                 found_new_path = true;
1803                                 break 'path_construction;
1804                         }
1805
1806                         // If we found a path back to the payee, we shouldn't try to process it again. This is
1807                         // the equivalent of the `elem.was_processed` check in
1808                         // add_entries_to_cheapest_to_target_node!() (see comment there for more info).
1809                         if node_id == payee_node_id { continue 'path_construction; }
1810
1811                         // Otherwise, since the current target node is not us,
1812                         // keep "unrolling" the payment graph from payee to payer by
1813                         // finding a way to reach the current target from the payer side.
1814                         match network_nodes.get(&node_id) {
1815                                 None => {},
1816                                 Some(node) => {
1817                                         add_entries_to_cheapest_to_target_node!(node, node_id, lowest_fee_to_node,
1818                                                 value_contribution_msat, path_htlc_minimum_msat, path_penalty_msat,
1819                                                 total_cltv_delta, path_length_to_node);
1820                                 },
1821                         }
1822                 }
1823
1824                 if !allow_mpp {
1825                         if !found_new_path && channel_saturation_pow_half != 0 {
1826                                 channel_saturation_pow_half = 0;
1827                                 continue 'paths_collection;
1828                         }
1829                         // If we don't support MPP, no use trying to gather more value ever.
1830                         break 'paths_collection;
1831                 }
1832
1833                 // Step (4).
1834                 // Stop either when the recommended value is reached or if no new path was found in this
1835                 // iteration.
1836                 // In the latter case, making another path finding attempt won't help,
1837                 // because we deterministically terminated the search due to low liquidity.
1838                 if !found_new_path && channel_saturation_pow_half != 0 {
1839                         channel_saturation_pow_half = 0;
1840                 } else if already_collected_value_msat >= recommended_value_msat || !found_new_path {
1841                         log_trace!(logger, "Have now collected {} msat (seeking {} msat) in paths. Last path loop {} a new path.",
1842                                 already_collected_value_msat, recommended_value_msat, if found_new_path { "found" } else { "did not find" });
1843                         break 'paths_collection;
1844                 } else if found_new_path && already_collected_value_msat == final_value_msat && payment_paths.len() == 1 {
1845                         // Further, if this was our first walk of the graph, and we weren't limited by an
1846                         // htlc_minimum_msat, return immediately because this path should suffice. If we were
1847                         // limited by an htlc_minimum_msat value, find another path with a higher value,
1848                         // potentially allowing us to pay fees to meet the htlc_minimum on the new path while
1849                         // still keeping a lower total fee than this path.
1850                         if !hit_minimum_limit {
1851                                 log_trace!(logger, "Collected exactly our payment amount on the first pass, without hitting an htlc_minimum_msat limit, exiting.");
1852                                 break 'paths_collection;
1853                         }
1854                         log_trace!(logger, "Collected our payment amount on the first pass, but running again to collect extra paths with a potentially higher limit.");
1855                         path_value_msat = recommended_value_msat;
1856                 }
1857         }
1858
1859         // Step (5).
1860         if payment_paths.len() == 0 {
1861                 return Err(LightningError{err: "Failed to find a path to the given destination".to_owned(), action: ErrorAction::IgnoreError});
1862         }
1863
1864         if already_collected_value_msat < final_value_msat {
1865                 return Err(LightningError{err: "Failed to find a sufficient route to the given destination".to_owned(), action: ErrorAction::IgnoreError});
1866         }
1867
1868         // Step (6).
1869         let mut selected_route = payment_paths;
1870
1871         debug_assert_eq!(selected_route.iter().map(|p| p.get_value_msat()).sum::<u64>(), already_collected_value_msat);
1872         let mut overpaid_value_msat = already_collected_value_msat - final_value_msat;
1873
1874         // First, sort by the cost-per-value of the path, dropping the paths that cost the most for
1875         // the value they contribute towards the payment amount.
1876         // We sort in descending order as we will remove from the front in `retain`, next.
1877         selected_route.sort_unstable_by(|a, b|
1878                 (((b.get_cost_msat() as u128) << 64) / (b.get_value_msat() as u128))
1879                         .cmp(&(((a.get_cost_msat() as u128) << 64) / (a.get_value_msat() as u128)))
1880         );
1881
1882         // We should make sure that at least 1 path left.
1883         let mut paths_left = selected_route.len();
1884         selected_route.retain(|path| {
1885                 if paths_left == 1 {
1886                         return true
1887                 }
1888                 let path_value_msat = path.get_value_msat();
1889                 if path_value_msat <= overpaid_value_msat {
1890                         overpaid_value_msat -= path_value_msat;
1891                         paths_left -= 1;
1892                         return false;
1893                 }
1894                 true
1895         });
1896         debug_assert!(selected_route.len() > 0);
1897
1898         if overpaid_value_msat != 0 {
1899                 // Step (7).
1900                 // Now, subtract the remaining overpaid value from the most-expensive path.
1901                 // TODO: this could also be optimized by also sorting by feerate_per_sat_routed,
1902                 // so that the sender pays less fees overall. And also htlc_minimum_msat.
1903                 selected_route.sort_unstable_by(|a, b| {
1904                         let a_f = a.hops.iter().map(|hop| hop.0.candidate.fees().proportional_millionths as u64).sum::<u64>();
1905                         let b_f = b.hops.iter().map(|hop| hop.0.candidate.fees().proportional_millionths as u64).sum::<u64>();
1906                         a_f.cmp(&b_f).then_with(|| b.get_cost_msat().cmp(&a.get_cost_msat()))
1907                 });
1908                 let expensive_payment_path = selected_route.first_mut().unwrap();
1909
1910                 // We already dropped all the paths with value below `overpaid_value_msat` above, thus this
1911                 // can't go negative.
1912                 let expensive_path_new_value_msat = expensive_payment_path.get_value_msat() - overpaid_value_msat;
1913                 expensive_payment_path.update_value_and_recompute_fees(expensive_path_new_value_msat);
1914         }
1915
1916         // Step (8).
1917         // Sort by the path itself and combine redundant paths.
1918         // Note that we sort by SCIDs alone as its simpler but when combining we have to ensure we
1919         // compare both SCIDs and NodeIds as individual nodes may use random aliases causing collisions
1920         // across nodes.
1921         selected_route.sort_unstable_by_key(|path| {
1922                 let mut key = [0u64; MAX_PATH_LENGTH_ESTIMATE as usize];
1923                 debug_assert!(path.hops.len() <= key.len());
1924                 for (scid, key) in path.hops.iter().map(|h| h.0.candidate.short_channel_id()).zip(key.iter_mut()) {
1925                         *key = scid;
1926                 }
1927                 key
1928         });
1929         for idx in 0..(selected_route.len() - 1) {
1930                 if idx + 1 >= selected_route.len() { break; }
1931                 if iter_equal(selected_route[idx    ].hops.iter().map(|h| (h.0.candidate.short_channel_id(), h.0.node_id)),
1932                               selected_route[idx + 1].hops.iter().map(|h| (h.0.candidate.short_channel_id(), h.0.node_id))) {
1933                         let new_value = selected_route[idx].get_value_msat() + selected_route[idx + 1].get_value_msat();
1934                         selected_route[idx].update_value_and_recompute_fees(new_value);
1935                         selected_route.remove(idx + 1);
1936                 }
1937         }
1938
1939         let mut selected_paths = Vec::<Vec<Result<RouteHop, LightningError>>>::new();
1940         for payment_path in selected_route {
1941                 let mut path = payment_path.hops.iter().map(|(payment_hop, node_features)| {
1942                         Ok(RouteHop {
1943                                 pubkey: PublicKey::from_slice(payment_hop.node_id.as_slice()).map_err(|_| LightningError{err: format!("Public key {:?} is invalid", &payment_hop.node_id), action: ErrorAction::IgnoreAndLog(Level::Trace)})?,
1944                                 node_features: node_features.clone(),
1945                                 short_channel_id: payment_hop.candidate.short_channel_id(),
1946                                 channel_features: payment_hop.candidate.features(),
1947                                 fee_msat: payment_hop.fee_msat,
1948                                 cltv_expiry_delta: payment_hop.candidate.cltv_expiry_delta(),
1949                         })
1950                 }).collect::<Vec<_>>();
1951                 // Propagate the cltv_expiry_delta one hop backwards since the delta from the current hop is
1952                 // applicable for the previous hop.
1953                 path.iter_mut().rev().fold(final_cltv_expiry_delta, |prev_cltv_expiry_delta, hop| {
1954                         core::mem::replace(&mut hop.as_mut().unwrap().cltv_expiry_delta, prev_cltv_expiry_delta)
1955                 });
1956                 selected_paths.push(path);
1957         }
1958         // Make sure we would never create a route with more paths than we allow.
1959         debug_assert!(selected_paths.len() <= payment_params.max_path_count.into());
1960
1961         if let Some(features) = &payment_params.features {
1962                 for path in selected_paths.iter_mut() {
1963                         if let Ok(route_hop) = path.last_mut().unwrap() {
1964                                 route_hop.node_features = features.to_context();
1965                         }
1966                 }
1967         }
1968
1969         let route = Route {
1970                 paths: selected_paths.into_iter().map(|path| path.into_iter().collect()).collect::<Result<Vec<_>, _>>()?,
1971                 payment_params: Some(payment_params.clone()),
1972         };
1973         log_info!(logger, "Got route to {}: {}", payment_params.payee_pubkey, log_route!(route));
1974         Ok(route)
1975 }
1976
1977 // When an adversarial intermediary node observes a payment, it may be able to infer its
1978 // destination, if the remaining CLTV expiry delta exactly matches a feasible path in the network
1979 // graph. In order to improve privacy, this method obfuscates the CLTV expiry deltas along the
1980 // payment path by adding a randomized 'shadow route' offset to the final hop.
1981 fn add_random_cltv_offset(route: &mut Route, payment_params: &PaymentParameters,
1982         network_graph: &ReadOnlyNetworkGraph, random_seed_bytes: &[u8; 32]
1983 ) {
1984         let network_channels = network_graph.channels();
1985         let network_nodes = network_graph.nodes();
1986
1987         for path in route.paths.iter_mut() {
1988                 let mut shadow_ctlv_expiry_delta_offset: u32 = 0;
1989
1990                 // Remember the last three nodes of the random walk and avoid looping back on them.
1991                 // Init with the last three nodes from the actual path, if possible.
1992                 let mut nodes_to_avoid: [NodeId; 3] = [NodeId::from_pubkey(&path.last().unwrap().pubkey),
1993                         NodeId::from_pubkey(&path.get(path.len().saturating_sub(2)).unwrap().pubkey),
1994                         NodeId::from_pubkey(&path.get(path.len().saturating_sub(3)).unwrap().pubkey)];
1995
1996                 // Choose the last publicly known node as the starting point for the random walk.
1997                 let mut cur_hop: Option<NodeId> = None;
1998                 let mut path_nonce = [0u8; 12];
1999                 if let Some(starting_hop) = path.iter().rev()
2000                         .find(|h| network_nodes.contains_key(&NodeId::from_pubkey(&h.pubkey))) {
2001                                 cur_hop = Some(NodeId::from_pubkey(&starting_hop.pubkey));
2002                                 path_nonce.copy_from_slice(&cur_hop.unwrap().as_slice()[..12]);
2003                 }
2004
2005                 // Init PRNG with the path-dependant nonce, which is static for private paths.
2006                 let mut prng = ChaCha20::new(random_seed_bytes, &path_nonce);
2007                 let mut random_path_bytes = [0u8; ::core::mem::size_of::<usize>()];
2008
2009                 // Pick a random path length in [1 .. 3]
2010                 prng.process_in_place(&mut random_path_bytes);
2011                 let random_walk_length = usize::from_be_bytes(random_path_bytes).wrapping_rem(3).wrapping_add(1);
2012
2013                 for random_hop in 0..random_walk_length {
2014                         // If we don't find a suitable offset in the public network graph, we default to
2015                         // MEDIAN_HOP_CLTV_EXPIRY_DELTA.
2016                         let mut random_hop_offset = MEDIAN_HOP_CLTV_EXPIRY_DELTA;
2017
2018                         if let Some(cur_node_id) = cur_hop {
2019                                 if let Some(cur_node) = network_nodes.get(&cur_node_id) {
2020                                         // Randomly choose the next unvisited hop.
2021                                         prng.process_in_place(&mut random_path_bytes);
2022                                         if let Some(random_channel) = usize::from_be_bytes(random_path_bytes)
2023                                                 .checked_rem(cur_node.channels.len())
2024                                                 .and_then(|index| cur_node.channels.get(index))
2025                                                 .and_then(|id| network_channels.get(id)) {
2026                                                         random_channel.as_directed_from(&cur_node_id).map(|(dir_info, next_id)| {
2027                                                                 if !nodes_to_avoid.iter().any(|x| x == next_id) {
2028                                                                         nodes_to_avoid[random_hop] = *next_id;
2029                                                                         random_hop_offset = dir_info.direction().cltv_expiry_delta.into();
2030                                                                         cur_hop = Some(*next_id);
2031                                                                 }
2032                                                         });
2033                                                 }
2034                                 }
2035                         }
2036
2037                         shadow_ctlv_expiry_delta_offset = shadow_ctlv_expiry_delta_offset
2038                                 .checked_add(random_hop_offset)
2039                                 .unwrap_or(shadow_ctlv_expiry_delta_offset);
2040                 }
2041
2042                 // Limit the total offset to reduce the worst-case locked liquidity timevalue
2043                 const MAX_SHADOW_CLTV_EXPIRY_DELTA_OFFSET: u32 = 3*144;
2044                 shadow_ctlv_expiry_delta_offset = cmp::min(shadow_ctlv_expiry_delta_offset, MAX_SHADOW_CLTV_EXPIRY_DELTA_OFFSET);
2045
2046                 // Limit the offset so we never exceed the max_total_cltv_expiry_delta. To improve plausibility,
2047                 // we choose the limit to be the largest possible multiple of MEDIAN_HOP_CLTV_EXPIRY_DELTA.
2048                 let path_total_cltv_expiry_delta: u32 = path.iter().map(|h| h.cltv_expiry_delta).sum();
2049                 let mut max_path_offset = payment_params.max_total_cltv_expiry_delta - path_total_cltv_expiry_delta;
2050                 max_path_offset = cmp::max(
2051                         max_path_offset - (max_path_offset % MEDIAN_HOP_CLTV_EXPIRY_DELTA),
2052                         max_path_offset % MEDIAN_HOP_CLTV_EXPIRY_DELTA);
2053                 shadow_ctlv_expiry_delta_offset = cmp::min(shadow_ctlv_expiry_delta_offset, max_path_offset);
2054
2055                 // Add 'shadow' CLTV offset to the final hop
2056                 if let Some(last_hop) = path.last_mut() {
2057                         last_hop.cltv_expiry_delta = last_hop.cltv_expiry_delta
2058                                 .checked_add(shadow_ctlv_expiry_delta_offset).unwrap_or(last_hop.cltv_expiry_delta);
2059                 }
2060         }
2061 }
2062
2063 /// Construct a route from us (payer) to the target node (payee) via the given hops (which should
2064 /// exclude the payer, but include the payee). This may be useful, e.g., for probing the chosen path.
2065 ///
2066 /// Re-uses logic from `find_route`, so the restrictions described there also apply here.
2067 pub fn build_route_from_hops<L: Deref, GL: Deref>(
2068         our_node_pubkey: &PublicKey, hops: &[PublicKey], route_params: &RouteParameters,
2069         network_graph: &NetworkGraph<GL>, logger: L, random_seed_bytes: &[u8; 32]
2070 ) -> Result<Route, LightningError>
2071 where L::Target: Logger, GL::Target: Logger {
2072         let graph_lock = network_graph.read_only();
2073         let mut route = build_route_from_hops_internal(
2074                 our_node_pubkey, hops, &route_params.payment_params, &graph_lock,
2075                 route_params.final_value_msat, route_params.payment_params.final_cltv_expiry_delta,
2076                 logger, random_seed_bytes)?;
2077         add_random_cltv_offset(&mut route, &route_params.payment_params, &graph_lock, random_seed_bytes);
2078         Ok(route)
2079 }
2080
2081 fn build_route_from_hops_internal<L: Deref>(
2082         our_node_pubkey: &PublicKey, hops: &[PublicKey], payment_params: &PaymentParameters,
2083         network_graph: &ReadOnlyNetworkGraph, final_value_msat: u64, final_cltv_expiry_delta: u32,
2084         logger: L, random_seed_bytes: &[u8; 32]
2085 ) -> Result<Route, LightningError> where L::Target: Logger {
2086
2087         struct HopScorer {
2088                 our_node_id: NodeId,
2089                 hop_ids: [Option<NodeId>; MAX_PATH_LENGTH_ESTIMATE as usize],
2090         }
2091
2092         impl Score for HopScorer {
2093                 fn channel_penalty_msat(&self, _short_channel_id: u64, source: &NodeId, target: &NodeId,
2094                         _usage: ChannelUsage) -> u64
2095                 {
2096                         let mut cur_id = self.our_node_id;
2097                         for i in 0..self.hop_ids.len() {
2098                                 if let Some(next_id) = self.hop_ids[i] {
2099                                         if cur_id == *source && next_id == *target {
2100                                                 return 0;
2101                                         }
2102                                         cur_id = next_id;
2103                                 } else {
2104                                         break;
2105                                 }
2106                         }
2107                         u64::max_value()
2108                 }
2109
2110                 fn payment_path_failed(&mut self, _path: &[&RouteHop], _short_channel_id: u64) {}
2111
2112                 fn payment_path_successful(&mut self, _path: &[&RouteHop]) {}
2113
2114                 fn probe_failed(&mut self, _path: &[&RouteHop], _short_channel_id: u64) {}
2115
2116                 fn probe_successful(&mut self, _path: &[&RouteHop]) {}
2117         }
2118
2119         impl<'a> Writeable for HopScorer {
2120                 #[inline]
2121                 fn write<W: Writer>(&self, _w: &mut W) -> Result<(), io::Error> {
2122                         unreachable!();
2123                 }
2124         }
2125
2126         if hops.len() > MAX_PATH_LENGTH_ESTIMATE.into() {
2127                 return Err(LightningError{err: "Cannot build a route exceeding the maximum path length.".to_owned(), action: ErrorAction::IgnoreError});
2128         }
2129
2130         let our_node_id = NodeId::from_pubkey(our_node_pubkey);
2131         let mut hop_ids = [None; MAX_PATH_LENGTH_ESTIMATE as usize];
2132         for i in 0..hops.len() {
2133                 hop_ids[i] = Some(NodeId::from_pubkey(&hops[i]));
2134         }
2135
2136         let scorer = HopScorer { our_node_id, hop_ids };
2137
2138         get_route(our_node_pubkey, payment_params, network_graph, None, final_value_msat,
2139                 final_cltv_expiry_delta, logger, &scorer, random_seed_bytes)
2140 }
2141
2142 #[cfg(test)]
2143 mod tests {
2144         use crate::routing::gossip::{NetworkGraph, P2PGossipSync, NodeId, EffectiveCapacity};
2145         use crate::routing::utxo::UtxoResult;
2146         use crate::routing::router::{get_route, build_route_from_hops_internal, add_random_cltv_offset, default_node_features,
2147                 PaymentParameters, Route, RouteHint, RouteHintHop, RouteHop, RoutingFees,
2148                 DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA, MAX_PATH_LENGTH_ESTIMATE};
2149         use crate::routing::scoring::{ChannelUsage, FixedPenaltyScorer, Score, ProbabilisticScorer, ProbabilisticScoringParameters};
2150         use crate::routing::test_utils::{add_channel, add_or_update_node, build_graph, build_line_graph, id_to_feature_flags, get_nodes, update_channel};
2151         use crate::chain::transaction::OutPoint;
2152         use crate::chain::keysinterface::EntropySource;
2153         use crate::ln::features::{ChannelFeatures, InitFeatures, NodeFeatures};
2154         use crate::ln::msgs::{ErrorAction, LightningError, UnsignedChannelUpdate, MAX_VALUE_MSAT};
2155         use crate::ln::channelmanager;
2156         use crate::util::config::UserConfig;
2157         use crate::util::test_utils as ln_test_utils;
2158         use crate::util::chacha20::ChaCha20;
2159         #[cfg(c_bindings)]
2160         use crate::util::ser::{Writeable, Writer};
2161
2162         use bitcoin::hashes::Hash;
2163         use bitcoin::network::constants::Network;
2164         use bitcoin::blockdata::constants::genesis_block;
2165         use bitcoin::blockdata::script::Builder;
2166         use bitcoin::blockdata::opcodes;
2167         use bitcoin::blockdata::transaction::TxOut;
2168
2169         use hex;
2170
2171         use bitcoin::secp256k1::{PublicKey,SecretKey};
2172         use bitcoin::secp256k1::Secp256k1;
2173
2174         use crate::prelude::*;
2175         use crate::sync::Arc;
2176
2177         use core::convert::TryInto;
2178
2179         fn get_channel_details(short_channel_id: Option<u64>, node_id: PublicKey,
2180                         features: InitFeatures, outbound_capacity_msat: u64) -> channelmanager::ChannelDetails {
2181                 channelmanager::ChannelDetails {
2182                         channel_id: [0; 32],
2183                         counterparty: channelmanager::ChannelCounterparty {
2184                                 features,
2185                                 node_id,
2186                                 unspendable_punishment_reserve: 0,
2187                                 forwarding_info: None,
2188                                 outbound_htlc_minimum_msat: None,
2189                                 outbound_htlc_maximum_msat: None,
2190                         },
2191                         funding_txo: Some(OutPoint { txid: bitcoin::Txid::from_slice(&[0; 32]).unwrap(), index: 0 }),
2192                         channel_type: None,
2193                         short_channel_id,
2194                         outbound_scid_alias: None,
2195                         inbound_scid_alias: None,
2196                         channel_value_satoshis: 0,
2197                         user_channel_id: 0,
2198                         balance_msat: 0,
2199                         outbound_capacity_msat,
2200                         next_outbound_htlc_limit_msat: outbound_capacity_msat,
2201                         inbound_capacity_msat: 42,
2202                         unspendable_punishment_reserve: None,
2203                         confirmations_required: None,
2204                         confirmations: None,
2205                         force_close_spend_delay: None,
2206                         is_outbound: true, is_channel_ready: true,
2207                         is_usable: true, is_public: true,
2208                         inbound_htlc_minimum_msat: None,
2209                         inbound_htlc_maximum_msat: None,
2210                         config: None,
2211                 }
2212         }
2213
2214         #[test]
2215         fn simple_route_test() {
2216                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
2217                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
2218                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
2219                 let scorer = ln_test_utils::TestScorer::new();
2220                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2221                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2222
2223                 // Simple route to 2 via 1
2224
2225                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 0, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
2226                         assert_eq!(err, "Cannot send a payment of 0 msat");
2227                 } else { panic!(); }
2228
2229                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2230                 assert_eq!(route.paths[0].len(), 2);
2231
2232                 assert_eq!(route.paths[0][0].pubkey, nodes[1]);
2233                 assert_eq!(route.paths[0][0].short_channel_id, 2);
2234                 assert_eq!(route.paths[0][0].fee_msat, 100);
2235                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (4 << 4) | 1);
2236                 assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(2));
2237                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(2));
2238
2239                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
2240                 assert_eq!(route.paths[0][1].short_channel_id, 4);
2241                 assert_eq!(route.paths[0][1].fee_msat, 100);
2242                 assert_eq!(route.paths[0][1].cltv_expiry_delta, 42);
2243                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
2244                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(4));
2245         }
2246
2247         #[test]
2248         fn invalid_first_hop_test() {
2249                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
2250                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
2251                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
2252                 let scorer = ln_test_utils::TestScorer::new();
2253                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2254                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2255
2256                 // Simple route to 2 via 1
2257
2258                 let our_chans = vec![get_channel_details(Some(2), our_id, InitFeatures::from_le_bytes(vec![0b11]), 100000)];
2259
2260                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) =
2261                         get_route(&our_id, &payment_params, &network_graph.read_only(), Some(&our_chans.iter().collect::<Vec<_>>()), 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
2262                         assert_eq!(err, "First hop cannot have our_node_pubkey as a destination.");
2263                 } else { panic!(); }
2264
2265                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2266                 assert_eq!(route.paths[0].len(), 2);
2267         }
2268
2269         #[test]
2270         fn htlc_minimum_test() {
2271                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
2272                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
2273                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
2274                 let scorer = ln_test_utils::TestScorer::new();
2275                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2276                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2277
2278                 // Simple route to 2 via 1
2279
2280                 // Disable other paths
2281                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
2282                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2283                         short_channel_id: 12,
2284                         timestamp: 2,
2285                         flags: 2, // to disable
2286                         cltv_expiry_delta: 0,
2287                         htlc_minimum_msat: 0,
2288                         htlc_maximum_msat: MAX_VALUE_MSAT,
2289                         fee_base_msat: 0,
2290                         fee_proportional_millionths: 0,
2291                         excess_data: Vec::new()
2292                 });
2293                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
2294                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2295                         short_channel_id: 3,
2296                         timestamp: 2,
2297                         flags: 2, // to disable
2298                         cltv_expiry_delta: 0,
2299                         htlc_minimum_msat: 0,
2300                         htlc_maximum_msat: MAX_VALUE_MSAT,
2301                         fee_base_msat: 0,
2302                         fee_proportional_millionths: 0,
2303                         excess_data: Vec::new()
2304                 });
2305                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
2306                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2307                         short_channel_id: 13,
2308                         timestamp: 2,
2309                         flags: 2, // to disable
2310                         cltv_expiry_delta: 0,
2311                         htlc_minimum_msat: 0,
2312                         htlc_maximum_msat: MAX_VALUE_MSAT,
2313                         fee_base_msat: 0,
2314                         fee_proportional_millionths: 0,
2315                         excess_data: Vec::new()
2316                 });
2317                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
2318                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2319                         short_channel_id: 6,
2320                         timestamp: 2,
2321                         flags: 2, // to disable
2322                         cltv_expiry_delta: 0,
2323                         htlc_minimum_msat: 0,
2324                         htlc_maximum_msat: MAX_VALUE_MSAT,
2325                         fee_base_msat: 0,
2326                         fee_proportional_millionths: 0,
2327                         excess_data: Vec::new()
2328                 });
2329                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
2330                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2331                         short_channel_id: 7,
2332                         timestamp: 2,
2333                         flags: 2, // to disable
2334                         cltv_expiry_delta: 0,
2335                         htlc_minimum_msat: 0,
2336                         htlc_maximum_msat: MAX_VALUE_MSAT,
2337                         fee_base_msat: 0,
2338                         fee_proportional_millionths: 0,
2339                         excess_data: Vec::new()
2340                 });
2341
2342                 // Check against amount_to_transfer_over_msat.
2343                 // Set minimal HTLC of 200_000_000 msat.
2344                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
2345                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2346                         short_channel_id: 2,
2347                         timestamp: 3,
2348                         flags: 0,
2349                         cltv_expiry_delta: 0,
2350                         htlc_minimum_msat: 200_000_000,
2351                         htlc_maximum_msat: MAX_VALUE_MSAT,
2352                         fee_base_msat: 0,
2353                         fee_proportional_millionths: 0,
2354                         excess_data: Vec::new()
2355                 });
2356
2357                 // Second hop only allows to forward 199_999_999 at most, thus not allowing the first hop to
2358                 // be used.
2359                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
2360                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2361                         short_channel_id: 4,
2362                         timestamp: 3,
2363                         flags: 0,
2364                         cltv_expiry_delta: 0,
2365                         htlc_minimum_msat: 0,
2366                         htlc_maximum_msat: 199_999_999,
2367                         fee_base_msat: 0,
2368                         fee_proportional_millionths: 0,
2369                         excess_data: Vec::new()
2370                 });
2371
2372                 // Not possible to send 199_999_999, because the minimum on channel=2 is 200_000_000.
2373                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 199_999_999, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
2374                         assert_eq!(err, "Failed to find a path to the given destination");
2375                 } else { panic!(); }
2376
2377                 // Lift the restriction on the first hop.
2378                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
2379                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2380                         short_channel_id: 2,
2381                         timestamp: 4,
2382                         flags: 0,
2383                         cltv_expiry_delta: 0,
2384                         htlc_minimum_msat: 0,
2385                         htlc_maximum_msat: MAX_VALUE_MSAT,
2386                         fee_base_msat: 0,
2387                         fee_proportional_millionths: 0,
2388                         excess_data: Vec::new()
2389                 });
2390
2391                 // A payment above the minimum should pass
2392                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 199_999_999, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2393                 assert_eq!(route.paths[0].len(), 2);
2394         }
2395
2396         #[test]
2397         fn htlc_minimum_overpay_test() {
2398                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
2399                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
2400                 let config = UserConfig::default();
2401                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42).with_features(channelmanager::provided_invoice_features(&config));
2402                 let scorer = ln_test_utils::TestScorer::new();
2403                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2404                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2405
2406                 // A route to node#2 via two paths.
2407                 // One path allows transferring 35-40 sats, another one also allows 35-40 sats.
2408                 // Thus, they can't send 60 without overpaying.
2409                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
2410                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2411                         short_channel_id: 2,
2412                         timestamp: 2,
2413                         flags: 0,
2414                         cltv_expiry_delta: 0,
2415                         htlc_minimum_msat: 35_000,
2416                         htlc_maximum_msat: 40_000,
2417                         fee_base_msat: 0,
2418                         fee_proportional_millionths: 0,
2419                         excess_data: Vec::new()
2420                 });
2421                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
2422                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2423                         short_channel_id: 12,
2424                         timestamp: 3,
2425                         flags: 0,
2426                         cltv_expiry_delta: 0,
2427                         htlc_minimum_msat: 35_000,
2428                         htlc_maximum_msat: 40_000,
2429                         fee_base_msat: 0,
2430                         fee_proportional_millionths: 0,
2431                         excess_data: Vec::new()
2432                 });
2433
2434                 // Make 0 fee.
2435                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
2436                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2437                         short_channel_id: 13,
2438                         timestamp: 2,
2439                         flags: 0,
2440                         cltv_expiry_delta: 0,
2441                         htlc_minimum_msat: 0,
2442                         htlc_maximum_msat: MAX_VALUE_MSAT,
2443                         fee_base_msat: 0,
2444                         fee_proportional_millionths: 0,
2445                         excess_data: Vec::new()
2446                 });
2447                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
2448                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2449                         short_channel_id: 4,
2450                         timestamp: 2,
2451                         flags: 0,
2452                         cltv_expiry_delta: 0,
2453                         htlc_minimum_msat: 0,
2454                         htlc_maximum_msat: MAX_VALUE_MSAT,
2455                         fee_base_msat: 0,
2456                         fee_proportional_millionths: 0,
2457                         excess_data: Vec::new()
2458                 });
2459
2460                 // Disable other paths
2461                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
2462                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2463                         short_channel_id: 1,
2464                         timestamp: 3,
2465                         flags: 2, // to disable
2466                         cltv_expiry_delta: 0,
2467                         htlc_minimum_msat: 0,
2468                         htlc_maximum_msat: MAX_VALUE_MSAT,
2469                         fee_base_msat: 0,
2470                         fee_proportional_millionths: 0,
2471                         excess_data: Vec::new()
2472                 });
2473
2474                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 60_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2475                 // Overpay fees to hit htlc_minimum_msat.
2476                 let overpaid_fees = route.paths[0][0].fee_msat + route.paths[1][0].fee_msat;
2477                 // TODO: this could be better balanced to overpay 10k and not 15k.
2478                 assert_eq!(overpaid_fees, 15_000);
2479
2480                 // Now, test that if there are 2 paths, a "cheaper" by fee path wouldn't be prioritized
2481                 // while taking even more fee to match htlc_minimum_msat.
2482                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
2483                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2484                         short_channel_id: 12,
2485                         timestamp: 4,
2486                         flags: 0,
2487                         cltv_expiry_delta: 0,
2488                         htlc_minimum_msat: 65_000,
2489                         htlc_maximum_msat: 80_000,
2490                         fee_base_msat: 0,
2491                         fee_proportional_millionths: 0,
2492                         excess_data: Vec::new()
2493                 });
2494                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
2495                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2496                         short_channel_id: 2,
2497                         timestamp: 3,
2498                         flags: 0,
2499                         cltv_expiry_delta: 0,
2500                         htlc_minimum_msat: 0,
2501                         htlc_maximum_msat: MAX_VALUE_MSAT,
2502                         fee_base_msat: 0,
2503                         fee_proportional_millionths: 0,
2504                         excess_data: Vec::new()
2505                 });
2506                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
2507                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2508                         short_channel_id: 4,
2509                         timestamp: 4,
2510                         flags: 0,
2511                         cltv_expiry_delta: 0,
2512                         htlc_minimum_msat: 0,
2513                         htlc_maximum_msat: MAX_VALUE_MSAT,
2514                         fee_base_msat: 0,
2515                         fee_proportional_millionths: 100_000,
2516                         excess_data: Vec::new()
2517                 });
2518
2519                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 60_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2520                 // Fine to overpay for htlc_minimum_msat if it allows us to save fee.
2521                 assert_eq!(route.paths.len(), 1);
2522                 assert_eq!(route.paths[0][0].short_channel_id, 12);
2523                 let fees = route.paths[0][0].fee_msat;
2524                 assert_eq!(fees, 5_000);
2525
2526                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 50_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2527                 // Not fine to overpay for htlc_minimum_msat if it requires paying more than fee on
2528                 // the other channel.
2529                 assert_eq!(route.paths.len(), 1);
2530                 assert_eq!(route.paths[0][0].short_channel_id, 2);
2531                 let fees = route.paths[0][0].fee_msat;
2532                 assert_eq!(fees, 5_000);
2533         }
2534
2535         #[test]
2536         fn disable_channels_test() {
2537                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
2538                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
2539                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
2540                 let scorer = ln_test_utils::TestScorer::new();
2541                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2542                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2543
2544                 // // Disable channels 4 and 12 by flags=2
2545                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
2546                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2547                         short_channel_id: 4,
2548                         timestamp: 2,
2549                         flags: 2, // to disable
2550                         cltv_expiry_delta: 0,
2551                         htlc_minimum_msat: 0,
2552                         htlc_maximum_msat: MAX_VALUE_MSAT,
2553                         fee_base_msat: 0,
2554                         fee_proportional_millionths: 0,
2555                         excess_data: Vec::new()
2556                 });
2557                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
2558                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2559                         short_channel_id: 12,
2560                         timestamp: 2,
2561                         flags: 2, // to disable
2562                         cltv_expiry_delta: 0,
2563                         htlc_minimum_msat: 0,
2564                         htlc_maximum_msat: MAX_VALUE_MSAT,
2565                         fee_base_msat: 0,
2566                         fee_proportional_millionths: 0,
2567                         excess_data: Vec::new()
2568                 });
2569
2570                 // If all the channels require some features we don't understand, route should fail
2571                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
2572                         assert_eq!(err, "Failed to find a path to the given destination");
2573                 } else { panic!(); }
2574
2575                 // If we specify a channel to node7, that overrides our local channel view and that gets used
2576                 let our_chans = vec![get_channel_details(Some(42), nodes[7].clone(), InitFeatures::from_le_bytes(vec![0b11]), 250_000_000)];
2577                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), Some(&our_chans.iter().collect::<Vec<_>>()), 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2578                 assert_eq!(route.paths[0].len(), 2);
2579
2580                 assert_eq!(route.paths[0][0].pubkey, nodes[7]);
2581                 assert_eq!(route.paths[0][0].short_channel_id, 42);
2582                 assert_eq!(route.paths[0][0].fee_msat, 200);
2583                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (13 << 4) | 1);
2584                 assert_eq!(route.paths[0][0].node_features.le_flags(), &vec![0b11]); // it should also override our view of their features
2585                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &Vec::<u8>::new()); // No feature flags will meet the relevant-to-channel conversion
2586
2587                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
2588                 assert_eq!(route.paths[0][1].short_channel_id, 13);
2589                 assert_eq!(route.paths[0][1].fee_msat, 100);
2590                 assert_eq!(route.paths[0][1].cltv_expiry_delta, 42);
2591                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
2592                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(13));
2593         }
2594
2595         #[test]
2596         fn disable_node_test() {
2597                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
2598                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
2599                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
2600                 let scorer = ln_test_utils::TestScorer::new();
2601                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2602                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2603
2604                 // Disable nodes 1, 2, and 8 by requiring unknown feature bits
2605                 let mut unknown_features = NodeFeatures::empty();
2606                 unknown_features.set_unknown_feature_required();
2607                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[0], unknown_features.clone(), 1);
2608                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[1], unknown_features.clone(), 1);
2609                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[7], unknown_features.clone(), 1);
2610
2611                 // If all nodes require some features we don't understand, route should fail
2612                 if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
2613                         assert_eq!(err, "Failed to find a path to the given destination");
2614                 } else { panic!(); }
2615
2616                 // If we specify a channel to node7, that overrides our local channel view and that gets used
2617                 let our_chans = vec![get_channel_details(Some(42), nodes[7].clone(), InitFeatures::from_le_bytes(vec![0b11]), 250_000_000)];
2618                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), Some(&our_chans.iter().collect::<Vec<_>>()), 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2619                 assert_eq!(route.paths[0].len(), 2);
2620
2621                 assert_eq!(route.paths[0][0].pubkey, nodes[7]);
2622                 assert_eq!(route.paths[0][0].short_channel_id, 42);
2623                 assert_eq!(route.paths[0][0].fee_msat, 200);
2624                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (13 << 4) | 1);
2625                 assert_eq!(route.paths[0][0].node_features.le_flags(), &vec![0b11]); // it should also override our view of their features
2626                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &Vec::<u8>::new()); // No feature flags will meet the relevant-to-channel conversion
2627
2628                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
2629                 assert_eq!(route.paths[0][1].short_channel_id, 13);
2630                 assert_eq!(route.paths[0][1].fee_msat, 100);
2631                 assert_eq!(route.paths[0][1].cltv_expiry_delta, 42);
2632                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
2633                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(13));
2634
2635                 // Note that we don't test disabling node 3 and failing to route to it, as we (somewhat
2636                 // naively) assume that the user checked the feature bits on the invoice, which override
2637                 // the node_announcement.
2638         }
2639
2640         #[test]
2641         fn our_chans_test() {
2642                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
2643                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
2644                 let scorer = ln_test_utils::TestScorer::new();
2645                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2646                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2647
2648                 // Route to 1 via 2 and 3 because our channel to 1 is disabled
2649                 let payment_params = PaymentParameters::from_node_id(nodes[0], 42);
2650                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2651                 assert_eq!(route.paths[0].len(), 3);
2652
2653                 assert_eq!(route.paths[0][0].pubkey, nodes[1]);
2654                 assert_eq!(route.paths[0][0].short_channel_id, 2);
2655                 assert_eq!(route.paths[0][0].fee_msat, 200);
2656                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (4 << 4) | 1);
2657                 assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(2));
2658                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(2));
2659
2660                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
2661                 assert_eq!(route.paths[0][1].short_channel_id, 4);
2662                 assert_eq!(route.paths[0][1].fee_msat, 100);
2663                 assert_eq!(route.paths[0][1].cltv_expiry_delta, (3 << 4) | 2);
2664                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
2665                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(4));
2666
2667                 assert_eq!(route.paths[0][2].pubkey, nodes[0]);
2668                 assert_eq!(route.paths[0][2].short_channel_id, 3);
2669                 assert_eq!(route.paths[0][2].fee_msat, 100);
2670                 assert_eq!(route.paths[0][2].cltv_expiry_delta, 42);
2671                 assert_eq!(route.paths[0][2].node_features.le_flags(), &id_to_feature_flags(1));
2672                 assert_eq!(route.paths[0][2].channel_features.le_flags(), &id_to_feature_flags(3));
2673
2674                 // If we specify a channel to node7, that overrides our local channel view and that gets used
2675                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
2676                 let our_chans = vec![get_channel_details(Some(42), nodes[7].clone(), InitFeatures::from_le_bytes(vec![0b11]), 250_000_000)];
2677                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), Some(&our_chans.iter().collect::<Vec<_>>()), 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2678                 assert_eq!(route.paths[0].len(), 2);
2679
2680                 assert_eq!(route.paths[0][0].pubkey, nodes[7]);
2681                 assert_eq!(route.paths[0][0].short_channel_id, 42);
2682                 assert_eq!(route.paths[0][0].fee_msat, 200);
2683                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (13 << 4) | 1);
2684                 assert_eq!(route.paths[0][0].node_features.le_flags(), &vec![0b11]);
2685                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &Vec::<u8>::new()); // No feature flags will meet the relevant-to-channel conversion
2686
2687                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
2688                 assert_eq!(route.paths[0][1].short_channel_id, 13);
2689                 assert_eq!(route.paths[0][1].fee_msat, 100);
2690                 assert_eq!(route.paths[0][1].cltv_expiry_delta, 42);
2691                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
2692                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(13));
2693         }
2694
2695         fn last_hops(nodes: &Vec<PublicKey>) -> Vec<RouteHint> {
2696                 let zero_fees = RoutingFees {
2697                         base_msat: 0,
2698                         proportional_millionths: 0,
2699                 };
2700                 vec![RouteHint(vec![RouteHintHop {
2701                         src_node_id: nodes[3],
2702                         short_channel_id: 8,
2703                         fees: zero_fees,
2704                         cltv_expiry_delta: (8 << 4) | 1,
2705                         htlc_minimum_msat: None,
2706                         htlc_maximum_msat: None,
2707                 }
2708                 ]), RouteHint(vec![RouteHintHop {
2709                         src_node_id: nodes[4],
2710                         short_channel_id: 9,
2711                         fees: RoutingFees {
2712                                 base_msat: 1001,
2713                                 proportional_millionths: 0,
2714                         },
2715                         cltv_expiry_delta: (9 << 4) | 1,
2716                         htlc_minimum_msat: None,
2717                         htlc_maximum_msat: None,
2718                 }]), RouteHint(vec![RouteHintHop {
2719                         src_node_id: nodes[5],
2720                         short_channel_id: 10,
2721                         fees: zero_fees,
2722                         cltv_expiry_delta: (10 << 4) | 1,
2723                         htlc_minimum_msat: None,
2724                         htlc_maximum_msat: None,
2725                 }])]
2726         }
2727
2728         fn last_hops_multi_private_channels(nodes: &Vec<PublicKey>) -> Vec<RouteHint> {
2729                 let zero_fees = RoutingFees {
2730                         base_msat: 0,
2731                         proportional_millionths: 0,
2732                 };
2733                 vec![RouteHint(vec![RouteHintHop {
2734                         src_node_id: nodes[2],
2735                         short_channel_id: 5,
2736                         fees: RoutingFees {
2737                                 base_msat: 100,
2738                                 proportional_millionths: 0,
2739                         },
2740                         cltv_expiry_delta: (5 << 4) | 1,
2741                         htlc_minimum_msat: None,
2742                         htlc_maximum_msat: None,
2743                 }, RouteHintHop {
2744                         src_node_id: nodes[3],
2745                         short_channel_id: 8,
2746                         fees: zero_fees,
2747                         cltv_expiry_delta: (8 << 4) | 1,
2748                         htlc_minimum_msat: None,
2749                         htlc_maximum_msat: None,
2750                 }
2751                 ]), RouteHint(vec![RouteHintHop {
2752                         src_node_id: nodes[4],
2753                         short_channel_id: 9,
2754                         fees: RoutingFees {
2755                                 base_msat: 1001,
2756                                 proportional_millionths: 0,
2757                         },
2758                         cltv_expiry_delta: (9 << 4) | 1,
2759                         htlc_minimum_msat: None,
2760                         htlc_maximum_msat: None,
2761                 }]), RouteHint(vec![RouteHintHop {
2762                         src_node_id: nodes[5],
2763                         short_channel_id: 10,
2764                         fees: zero_fees,
2765                         cltv_expiry_delta: (10 << 4) | 1,
2766                         htlc_minimum_msat: None,
2767                         htlc_maximum_msat: None,
2768                 }])]
2769         }
2770
2771         #[test]
2772         fn partial_route_hint_test() {
2773                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
2774                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
2775                 let scorer = ln_test_utils::TestScorer::new();
2776                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2777                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2778
2779                 // Simple test across 2, 3, 5, and 4 via a last_hop channel
2780                 // Tests the behaviour when the RouteHint contains a suboptimal hop.
2781                 // RouteHint may be partially used by the algo to build the best path.
2782
2783                 // First check that last hop can't have its source as the payee.
2784                 let invalid_last_hop = RouteHint(vec![RouteHintHop {
2785                         src_node_id: nodes[6],
2786                         short_channel_id: 8,
2787                         fees: RoutingFees {
2788                                 base_msat: 1000,
2789                                 proportional_millionths: 0,
2790                         },
2791                         cltv_expiry_delta: (8 << 4) | 1,
2792                         htlc_minimum_msat: None,
2793                         htlc_maximum_msat: None,
2794                 }]);
2795
2796                 let mut invalid_last_hops = last_hops_multi_private_channels(&nodes);
2797                 invalid_last_hops.push(invalid_last_hop);
2798                 {
2799                         let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(invalid_last_hops);
2800                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
2801                                 assert_eq!(err, "Route hint cannot have the payee as the source.");
2802                         } else { panic!(); }
2803                 }
2804
2805                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops_multi_private_channels(&nodes));
2806                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2807                 assert_eq!(route.paths[0].len(), 5);
2808
2809                 assert_eq!(route.paths[0][0].pubkey, nodes[1]);
2810                 assert_eq!(route.paths[0][0].short_channel_id, 2);
2811                 assert_eq!(route.paths[0][0].fee_msat, 100);
2812                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (4 << 4) | 1);
2813                 assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(2));
2814                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(2));
2815
2816                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
2817                 assert_eq!(route.paths[0][1].short_channel_id, 4);
2818                 assert_eq!(route.paths[0][1].fee_msat, 0);
2819                 assert_eq!(route.paths[0][1].cltv_expiry_delta, (6 << 4) | 1);
2820                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
2821                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(4));
2822
2823                 assert_eq!(route.paths[0][2].pubkey, nodes[4]);
2824                 assert_eq!(route.paths[0][2].short_channel_id, 6);
2825                 assert_eq!(route.paths[0][2].fee_msat, 0);
2826                 assert_eq!(route.paths[0][2].cltv_expiry_delta, (11 << 4) | 1);
2827                 assert_eq!(route.paths[0][2].node_features.le_flags(), &id_to_feature_flags(5));
2828                 assert_eq!(route.paths[0][2].channel_features.le_flags(), &id_to_feature_flags(6));
2829
2830                 assert_eq!(route.paths[0][3].pubkey, nodes[3]);
2831                 assert_eq!(route.paths[0][3].short_channel_id, 11);
2832                 assert_eq!(route.paths[0][3].fee_msat, 0);
2833                 assert_eq!(route.paths[0][3].cltv_expiry_delta, (8 << 4) | 1);
2834                 // If we have a peer in the node map, we'll use their features here since we don't have
2835                 // a way of figuring out their features from the invoice:
2836                 assert_eq!(route.paths[0][3].node_features.le_flags(), &id_to_feature_flags(4));
2837                 assert_eq!(route.paths[0][3].channel_features.le_flags(), &id_to_feature_flags(11));
2838
2839                 assert_eq!(route.paths[0][4].pubkey, nodes[6]);
2840                 assert_eq!(route.paths[0][4].short_channel_id, 8);
2841                 assert_eq!(route.paths[0][4].fee_msat, 100);
2842                 assert_eq!(route.paths[0][4].cltv_expiry_delta, 42);
2843                 assert_eq!(route.paths[0][4].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
2844                 assert_eq!(route.paths[0][4].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
2845         }
2846
2847         fn empty_last_hop(nodes: &Vec<PublicKey>) -> Vec<RouteHint> {
2848                 let zero_fees = RoutingFees {
2849                         base_msat: 0,
2850                         proportional_millionths: 0,
2851                 };
2852                 vec![RouteHint(vec![RouteHintHop {
2853                         src_node_id: nodes[3],
2854                         short_channel_id: 8,
2855                         fees: zero_fees,
2856                         cltv_expiry_delta: (8 << 4) | 1,
2857                         htlc_minimum_msat: None,
2858                         htlc_maximum_msat: None,
2859                 }]), RouteHint(vec![
2860
2861                 ]), RouteHint(vec![RouteHintHop {
2862                         src_node_id: nodes[5],
2863                         short_channel_id: 10,
2864                         fees: zero_fees,
2865                         cltv_expiry_delta: (10 << 4) | 1,
2866                         htlc_minimum_msat: None,
2867                         htlc_maximum_msat: None,
2868                 }])]
2869         }
2870
2871         #[test]
2872         fn ignores_empty_last_hops_test() {
2873                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
2874                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
2875                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(empty_last_hop(&nodes));
2876                 let scorer = ln_test_utils::TestScorer::new();
2877                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2878                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2879
2880                 // Test handling of an empty RouteHint passed in Invoice.
2881
2882                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2883                 assert_eq!(route.paths[0].len(), 5);
2884
2885                 assert_eq!(route.paths[0][0].pubkey, nodes[1]);
2886                 assert_eq!(route.paths[0][0].short_channel_id, 2);
2887                 assert_eq!(route.paths[0][0].fee_msat, 100);
2888                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (4 << 4) | 1);
2889                 assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(2));
2890                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(2));
2891
2892                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
2893                 assert_eq!(route.paths[0][1].short_channel_id, 4);
2894                 assert_eq!(route.paths[0][1].fee_msat, 0);
2895                 assert_eq!(route.paths[0][1].cltv_expiry_delta, (6 << 4) | 1);
2896                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
2897                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(4));
2898
2899                 assert_eq!(route.paths[0][2].pubkey, nodes[4]);
2900                 assert_eq!(route.paths[0][2].short_channel_id, 6);
2901                 assert_eq!(route.paths[0][2].fee_msat, 0);
2902                 assert_eq!(route.paths[0][2].cltv_expiry_delta, (11 << 4) | 1);
2903                 assert_eq!(route.paths[0][2].node_features.le_flags(), &id_to_feature_flags(5));
2904                 assert_eq!(route.paths[0][2].channel_features.le_flags(), &id_to_feature_flags(6));
2905
2906                 assert_eq!(route.paths[0][3].pubkey, nodes[3]);
2907                 assert_eq!(route.paths[0][3].short_channel_id, 11);
2908                 assert_eq!(route.paths[0][3].fee_msat, 0);
2909                 assert_eq!(route.paths[0][3].cltv_expiry_delta, (8 << 4) | 1);
2910                 // If we have a peer in the node map, we'll use their features here since we don't have
2911                 // a way of figuring out their features from the invoice:
2912                 assert_eq!(route.paths[0][3].node_features.le_flags(), &id_to_feature_flags(4));
2913                 assert_eq!(route.paths[0][3].channel_features.le_flags(), &id_to_feature_flags(11));
2914
2915                 assert_eq!(route.paths[0][4].pubkey, nodes[6]);
2916                 assert_eq!(route.paths[0][4].short_channel_id, 8);
2917                 assert_eq!(route.paths[0][4].fee_msat, 100);
2918                 assert_eq!(route.paths[0][4].cltv_expiry_delta, 42);
2919                 assert_eq!(route.paths[0][4].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
2920                 assert_eq!(route.paths[0][4].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
2921         }
2922
2923         /// Builds a trivial last-hop hint that passes through the two nodes given, with channel 0xff00
2924         /// and 0xff01.
2925         fn multi_hop_last_hops_hint(hint_hops: [PublicKey; 2]) -> Vec<RouteHint> {
2926                 let zero_fees = RoutingFees {
2927                         base_msat: 0,
2928                         proportional_millionths: 0,
2929                 };
2930                 vec![RouteHint(vec![RouteHintHop {
2931                         src_node_id: hint_hops[0],
2932                         short_channel_id: 0xff00,
2933                         fees: RoutingFees {
2934                                 base_msat: 100,
2935                                 proportional_millionths: 0,
2936                         },
2937                         cltv_expiry_delta: (5 << 4) | 1,
2938                         htlc_minimum_msat: None,
2939                         htlc_maximum_msat: None,
2940                 }, RouteHintHop {
2941                         src_node_id: hint_hops[1],
2942                         short_channel_id: 0xff01,
2943                         fees: zero_fees,
2944                         cltv_expiry_delta: (8 << 4) | 1,
2945                         htlc_minimum_msat: None,
2946                         htlc_maximum_msat: None,
2947                 }])]
2948         }
2949
2950         #[test]
2951         fn multi_hint_last_hops_test() {
2952                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
2953                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
2954                 let last_hops = multi_hop_last_hops_hint([nodes[2], nodes[3]]);
2955                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops.clone());
2956                 let scorer = ln_test_utils::TestScorer::new();
2957                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
2958                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
2959                 // Test through channels 2, 3, 0xff00, 0xff01.
2960                 // Test shows that multiple hop hints are considered.
2961
2962                 // Disabling channels 6 & 7 by flags=2
2963                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
2964                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2965                         short_channel_id: 6,
2966                         timestamp: 2,
2967                         flags: 2, // to disable
2968                         cltv_expiry_delta: 0,
2969                         htlc_minimum_msat: 0,
2970                         htlc_maximum_msat: MAX_VALUE_MSAT,
2971                         fee_base_msat: 0,
2972                         fee_proportional_millionths: 0,
2973                         excess_data: Vec::new()
2974                 });
2975                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
2976                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
2977                         short_channel_id: 7,
2978                         timestamp: 2,
2979                         flags: 2, // to disable
2980                         cltv_expiry_delta: 0,
2981                         htlc_minimum_msat: 0,
2982                         htlc_maximum_msat: MAX_VALUE_MSAT,
2983                         fee_base_msat: 0,
2984                         fee_proportional_millionths: 0,
2985                         excess_data: Vec::new()
2986                 });
2987
2988                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
2989                 assert_eq!(route.paths[0].len(), 4);
2990
2991                 assert_eq!(route.paths[0][0].pubkey, nodes[1]);
2992                 assert_eq!(route.paths[0][0].short_channel_id, 2);
2993                 assert_eq!(route.paths[0][0].fee_msat, 200);
2994                 assert_eq!(route.paths[0][0].cltv_expiry_delta, 65);
2995                 assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(2));
2996                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(2));
2997
2998                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
2999                 assert_eq!(route.paths[0][1].short_channel_id, 4);
3000                 assert_eq!(route.paths[0][1].fee_msat, 100);
3001                 assert_eq!(route.paths[0][1].cltv_expiry_delta, 81);
3002                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
3003                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(4));
3004
3005                 assert_eq!(route.paths[0][2].pubkey, nodes[3]);
3006                 assert_eq!(route.paths[0][2].short_channel_id, last_hops[0].0[0].short_channel_id);
3007                 assert_eq!(route.paths[0][2].fee_msat, 0);
3008                 assert_eq!(route.paths[0][2].cltv_expiry_delta, 129);
3009                 assert_eq!(route.paths[0][2].node_features.le_flags(), &id_to_feature_flags(4));
3010                 assert_eq!(route.paths[0][2].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
3011
3012                 assert_eq!(route.paths[0][3].pubkey, nodes[6]);
3013                 assert_eq!(route.paths[0][3].short_channel_id, last_hops[0].0[1].short_channel_id);
3014                 assert_eq!(route.paths[0][3].fee_msat, 100);
3015                 assert_eq!(route.paths[0][3].cltv_expiry_delta, 42);
3016                 assert_eq!(route.paths[0][3].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
3017                 assert_eq!(route.paths[0][3].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
3018         }
3019
3020         #[test]
3021         fn private_multi_hint_last_hops_test() {
3022                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3023                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3024
3025                 let non_announced_privkey = SecretKey::from_slice(&hex::decode(format!("{:02x}", 0xf0).repeat(32)).unwrap()[..]).unwrap();
3026                 let non_announced_pubkey = PublicKey::from_secret_key(&secp_ctx, &non_announced_privkey);
3027
3028                 let last_hops = multi_hop_last_hops_hint([nodes[2], non_announced_pubkey]);
3029                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops.clone());
3030                 let scorer = ln_test_utils::TestScorer::new();
3031                 // Test through channels 2, 3, 0xff00, 0xff01.
3032                 // Test shows that multiple hop hints are considered.
3033
3034                 // Disabling channels 6 & 7 by flags=2
3035                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
3036                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3037                         short_channel_id: 6,
3038                         timestamp: 2,
3039                         flags: 2, // to disable
3040                         cltv_expiry_delta: 0,
3041                         htlc_minimum_msat: 0,
3042                         htlc_maximum_msat: MAX_VALUE_MSAT,
3043                         fee_base_msat: 0,
3044                         fee_proportional_millionths: 0,
3045                         excess_data: Vec::new()
3046                 });
3047                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
3048                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3049                         short_channel_id: 7,
3050                         timestamp: 2,
3051                         flags: 2, // to disable
3052                         cltv_expiry_delta: 0,
3053                         htlc_minimum_msat: 0,
3054                         htlc_maximum_msat: MAX_VALUE_MSAT,
3055                         fee_base_msat: 0,
3056                         fee_proportional_millionths: 0,
3057                         excess_data: Vec::new()
3058                 });
3059
3060                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &[42u8; 32]).unwrap();
3061                 assert_eq!(route.paths[0].len(), 4);
3062
3063                 assert_eq!(route.paths[0][0].pubkey, nodes[1]);
3064                 assert_eq!(route.paths[0][0].short_channel_id, 2);
3065                 assert_eq!(route.paths[0][0].fee_msat, 200);
3066                 assert_eq!(route.paths[0][0].cltv_expiry_delta, 65);
3067                 assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(2));
3068                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(2));
3069
3070                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
3071                 assert_eq!(route.paths[0][1].short_channel_id, 4);
3072                 assert_eq!(route.paths[0][1].fee_msat, 100);
3073                 assert_eq!(route.paths[0][1].cltv_expiry_delta, 81);
3074                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
3075                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(4));
3076
3077                 assert_eq!(route.paths[0][2].pubkey, non_announced_pubkey);
3078                 assert_eq!(route.paths[0][2].short_channel_id, last_hops[0].0[0].short_channel_id);
3079                 assert_eq!(route.paths[0][2].fee_msat, 0);
3080                 assert_eq!(route.paths[0][2].cltv_expiry_delta, 129);
3081                 assert_eq!(route.paths[0][2].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
3082                 assert_eq!(route.paths[0][2].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
3083
3084                 assert_eq!(route.paths[0][3].pubkey, nodes[6]);
3085                 assert_eq!(route.paths[0][3].short_channel_id, last_hops[0].0[1].short_channel_id);
3086                 assert_eq!(route.paths[0][3].fee_msat, 100);
3087                 assert_eq!(route.paths[0][3].cltv_expiry_delta, 42);
3088                 assert_eq!(route.paths[0][3].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
3089                 assert_eq!(route.paths[0][3].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
3090         }
3091
3092         fn last_hops_with_public_channel(nodes: &Vec<PublicKey>) -> Vec<RouteHint> {
3093                 let zero_fees = RoutingFees {
3094                         base_msat: 0,
3095                         proportional_millionths: 0,
3096                 };
3097                 vec![RouteHint(vec![RouteHintHop {
3098                         src_node_id: nodes[4],
3099                         short_channel_id: 11,
3100                         fees: zero_fees,
3101                         cltv_expiry_delta: (11 << 4) | 1,
3102                         htlc_minimum_msat: None,
3103                         htlc_maximum_msat: None,
3104                 }, RouteHintHop {
3105                         src_node_id: nodes[3],
3106                         short_channel_id: 8,
3107                         fees: zero_fees,
3108                         cltv_expiry_delta: (8 << 4) | 1,
3109                         htlc_minimum_msat: None,
3110                         htlc_maximum_msat: None,
3111                 }]), RouteHint(vec![RouteHintHop {
3112                         src_node_id: nodes[4],
3113                         short_channel_id: 9,
3114                         fees: RoutingFees {
3115                                 base_msat: 1001,
3116                                 proportional_millionths: 0,
3117                         },
3118                         cltv_expiry_delta: (9 << 4) | 1,
3119                         htlc_minimum_msat: None,
3120                         htlc_maximum_msat: None,
3121                 }]), RouteHint(vec![RouteHintHop {
3122                         src_node_id: nodes[5],
3123                         short_channel_id: 10,
3124                         fees: zero_fees,
3125                         cltv_expiry_delta: (10 << 4) | 1,
3126                         htlc_minimum_msat: None,
3127                         htlc_maximum_msat: None,
3128                 }])]
3129         }
3130
3131         #[test]
3132         fn last_hops_with_public_channel_test() {
3133                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
3134                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
3135                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops_with_public_channel(&nodes));
3136                 let scorer = ln_test_utils::TestScorer::new();
3137                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3138                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3139                 // This test shows that public routes can be present in the invoice
3140                 // which would be handled in the same manner.
3141
3142                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3143                 assert_eq!(route.paths[0].len(), 5);
3144
3145                 assert_eq!(route.paths[0][0].pubkey, nodes[1]);
3146                 assert_eq!(route.paths[0][0].short_channel_id, 2);
3147                 assert_eq!(route.paths[0][0].fee_msat, 100);
3148                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (4 << 4) | 1);
3149                 assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(2));
3150                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(2));
3151
3152                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
3153                 assert_eq!(route.paths[0][1].short_channel_id, 4);
3154                 assert_eq!(route.paths[0][1].fee_msat, 0);
3155                 assert_eq!(route.paths[0][1].cltv_expiry_delta, (6 << 4) | 1);
3156                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
3157                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(4));
3158
3159                 assert_eq!(route.paths[0][2].pubkey, nodes[4]);
3160                 assert_eq!(route.paths[0][2].short_channel_id, 6);
3161                 assert_eq!(route.paths[0][2].fee_msat, 0);
3162                 assert_eq!(route.paths[0][2].cltv_expiry_delta, (11 << 4) | 1);
3163                 assert_eq!(route.paths[0][2].node_features.le_flags(), &id_to_feature_flags(5));
3164                 assert_eq!(route.paths[0][2].channel_features.le_flags(), &id_to_feature_flags(6));
3165
3166                 assert_eq!(route.paths[0][3].pubkey, nodes[3]);
3167                 assert_eq!(route.paths[0][3].short_channel_id, 11);
3168                 assert_eq!(route.paths[0][3].fee_msat, 0);
3169                 assert_eq!(route.paths[0][3].cltv_expiry_delta, (8 << 4) | 1);
3170                 // If we have a peer in the node map, we'll use their features here since we don't have
3171                 // a way of figuring out their features from the invoice:
3172                 assert_eq!(route.paths[0][3].node_features.le_flags(), &id_to_feature_flags(4));
3173                 assert_eq!(route.paths[0][3].channel_features.le_flags(), &id_to_feature_flags(11));
3174
3175                 assert_eq!(route.paths[0][4].pubkey, nodes[6]);
3176                 assert_eq!(route.paths[0][4].short_channel_id, 8);
3177                 assert_eq!(route.paths[0][4].fee_msat, 100);
3178                 assert_eq!(route.paths[0][4].cltv_expiry_delta, 42);
3179                 assert_eq!(route.paths[0][4].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
3180                 assert_eq!(route.paths[0][4].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
3181         }
3182
3183         #[test]
3184         fn our_chans_last_hop_connect_test() {
3185                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
3186                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
3187                 let scorer = ln_test_utils::TestScorer::new();
3188                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3189                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3190
3191                 // Simple test with outbound channel to 4 to test that last_hops and first_hops connect
3192                 let our_chans = vec![get_channel_details(Some(42), nodes[3].clone(), InitFeatures::from_le_bytes(vec![0b11]), 250_000_000)];
3193                 let mut last_hops = last_hops(&nodes);
3194                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops.clone());
3195                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), Some(&our_chans.iter().collect::<Vec<_>>()), 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3196                 assert_eq!(route.paths[0].len(), 2);
3197
3198                 assert_eq!(route.paths[0][0].pubkey, nodes[3]);
3199                 assert_eq!(route.paths[0][0].short_channel_id, 42);
3200                 assert_eq!(route.paths[0][0].fee_msat, 0);
3201                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (8 << 4) | 1);
3202                 assert_eq!(route.paths[0][0].node_features.le_flags(), &vec![0b11]);
3203                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &Vec::<u8>::new()); // No feature flags will meet the relevant-to-channel conversion
3204
3205                 assert_eq!(route.paths[0][1].pubkey, nodes[6]);
3206                 assert_eq!(route.paths[0][1].short_channel_id, 8);
3207                 assert_eq!(route.paths[0][1].fee_msat, 100);
3208                 assert_eq!(route.paths[0][1].cltv_expiry_delta, 42);
3209                 assert_eq!(route.paths[0][1].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
3210                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
3211
3212                 last_hops[0].0[0].fees.base_msat = 1000;
3213
3214                 // Revert to via 6 as the fee on 8 goes up
3215                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops);
3216                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3217                 assert_eq!(route.paths[0].len(), 4);
3218
3219                 assert_eq!(route.paths[0][0].pubkey, nodes[1]);
3220                 assert_eq!(route.paths[0][0].short_channel_id, 2);
3221                 assert_eq!(route.paths[0][0].fee_msat, 200); // fee increased as its % of value transferred across node
3222                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (4 << 4) | 1);
3223                 assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(2));
3224                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(2));
3225
3226                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
3227                 assert_eq!(route.paths[0][1].short_channel_id, 4);
3228                 assert_eq!(route.paths[0][1].fee_msat, 100);
3229                 assert_eq!(route.paths[0][1].cltv_expiry_delta, (7 << 4) | 1);
3230                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
3231                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(4));
3232
3233                 assert_eq!(route.paths[0][2].pubkey, nodes[5]);
3234                 assert_eq!(route.paths[0][2].short_channel_id, 7);
3235                 assert_eq!(route.paths[0][2].fee_msat, 0);
3236                 assert_eq!(route.paths[0][2].cltv_expiry_delta, (10 << 4) | 1);
3237                 // If we have a peer in the node map, we'll use their features here since we don't have
3238                 // a way of figuring out their features from the invoice:
3239                 assert_eq!(route.paths[0][2].node_features.le_flags(), &id_to_feature_flags(6));
3240                 assert_eq!(route.paths[0][2].channel_features.le_flags(), &id_to_feature_flags(7));
3241
3242                 assert_eq!(route.paths[0][3].pubkey, nodes[6]);
3243                 assert_eq!(route.paths[0][3].short_channel_id, 10);
3244                 assert_eq!(route.paths[0][3].fee_msat, 100);
3245                 assert_eq!(route.paths[0][3].cltv_expiry_delta, 42);
3246                 assert_eq!(route.paths[0][3].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
3247                 assert_eq!(route.paths[0][3].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
3248
3249                 // ...but still use 8 for larger payments as 6 has a variable feerate
3250                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 2000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3251                 assert_eq!(route.paths[0].len(), 5);
3252
3253                 assert_eq!(route.paths[0][0].pubkey, nodes[1]);
3254                 assert_eq!(route.paths[0][0].short_channel_id, 2);
3255                 assert_eq!(route.paths[0][0].fee_msat, 3000);
3256                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (4 << 4) | 1);
3257                 assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(2));
3258                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(2));
3259
3260                 assert_eq!(route.paths[0][1].pubkey, nodes[2]);
3261                 assert_eq!(route.paths[0][1].short_channel_id, 4);
3262                 assert_eq!(route.paths[0][1].fee_msat, 0);
3263                 assert_eq!(route.paths[0][1].cltv_expiry_delta, (6 << 4) | 1);
3264                 assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
3265                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(4));
3266
3267                 assert_eq!(route.paths[0][2].pubkey, nodes[4]);
3268                 assert_eq!(route.paths[0][2].short_channel_id, 6);
3269                 assert_eq!(route.paths[0][2].fee_msat, 0);
3270                 assert_eq!(route.paths[0][2].cltv_expiry_delta, (11 << 4) | 1);
3271                 assert_eq!(route.paths[0][2].node_features.le_flags(), &id_to_feature_flags(5));
3272                 assert_eq!(route.paths[0][2].channel_features.le_flags(), &id_to_feature_flags(6));
3273
3274                 assert_eq!(route.paths[0][3].pubkey, nodes[3]);
3275                 assert_eq!(route.paths[0][3].short_channel_id, 11);
3276                 assert_eq!(route.paths[0][3].fee_msat, 1000);
3277                 assert_eq!(route.paths[0][3].cltv_expiry_delta, (8 << 4) | 1);
3278                 // If we have a peer in the node map, we'll use their features here since we don't have
3279                 // a way of figuring out their features from the invoice:
3280                 assert_eq!(route.paths[0][3].node_features.le_flags(), &id_to_feature_flags(4));
3281                 assert_eq!(route.paths[0][3].channel_features.le_flags(), &id_to_feature_flags(11));
3282
3283                 assert_eq!(route.paths[0][4].pubkey, nodes[6]);
3284                 assert_eq!(route.paths[0][4].short_channel_id, 8);
3285                 assert_eq!(route.paths[0][4].fee_msat, 2000);
3286                 assert_eq!(route.paths[0][4].cltv_expiry_delta, 42);
3287                 assert_eq!(route.paths[0][4].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
3288                 assert_eq!(route.paths[0][4].channel_features.le_flags(), &Vec::<u8>::new()); // We can't learn any flags from invoices, sadly
3289         }
3290
3291         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> {
3292                 let source_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&hex::decode(format!("{:02}", 41).repeat(32)).unwrap()[..]).unwrap());
3293                 let middle_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&hex::decode(format!("{:02}", 42).repeat(32)).unwrap()[..]).unwrap());
3294                 let target_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&hex::decode(format!("{:02}", 43).repeat(32)).unwrap()[..]).unwrap());
3295
3296                 // If we specify a channel to a middle hop, that overrides our local channel view and that gets used
3297                 let last_hops = RouteHint(vec![RouteHintHop {
3298                         src_node_id: middle_node_id,
3299                         short_channel_id: 8,
3300                         fees: RoutingFees {
3301                                 base_msat: 1000,
3302                                 proportional_millionths: last_hop_fee_prop,
3303                         },
3304                         cltv_expiry_delta: (8 << 4) | 1,
3305                         htlc_minimum_msat: None,
3306                         htlc_maximum_msat: last_hop_htlc_max,
3307                 }]);
3308                 let payment_params = PaymentParameters::from_node_id(target_node_id, 42).with_route_hints(vec![last_hops]);
3309                 let our_chans = vec![get_channel_details(Some(42), middle_node_id, InitFeatures::from_le_bytes(vec![0b11]), outbound_capacity_msat)];
3310                 let scorer = ln_test_utils::TestScorer::new();
3311                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3312                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3313                 let logger = ln_test_utils::TestLogger::new();
3314                 let network_graph = NetworkGraph::new(Network::Testnet, &logger);
3315                 let route = get_route(&source_node_id, &payment_params, &network_graph.read_only(),
3316                                 Some(&our_chans.iter().collect::<Vec<_>>()), route_val, 42, &logger, &scorer, &random_seed_bytes);
3317                 route
3318         }
3319
3320         #[test]
3321         fn unannounced_path_test() {
3322                 // We should be able to send a payment to a destination without any help of a routing graph
3323                 // if we have a channel with a common counterparty that appears in the first and last hop
3324                 // hints.
3325                 let route = do_unannounced_path_test(None, 1, 2000000, 1000000).unwrap();
3326
3327                 let middle_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&hex::decode(format!("{:02}", 42).repeat(32)).unwrap()[..]).unwrap());
3328                 let target_node_id = PublicKey::from_secret_key(&Secp256k1::new(), &SecretKey::from_slice(&hex::decode(format!("{:02}", 43).repeat(32)).unwrap()[..]).unwrap());
3329                 assert_eq!(route.paths[0].len(), 2);
3330
3331                 assert_eq!(route.paths[0][0].pubkey, middle_node_id);
3332                 assert_eq!(route.paths[0][0].short_channel_id, 42);
3333                 assert_eq!(route.paths[0][0].fee_msat, 1001);
3334                 assert_eq!(route.paths[0][0].cltv_expiry_delta, (8 << 4) | 1);
3335                 assert_eq!(route.paths[0][0].node_features.le_flags(), &[0b11]);
3336                 assert_eq!(route.paths[0][0].channel_features.le_flags(), &[0; 0]); // We can't learn any flags from invoices, sadly
3337
3338                 assert_eq!(route.paths[0][1].pubkey, target_node_id);
3339                 assert_eq!(route.paths[0][1].short_channel_id, 8);
3340                 assert_eq!(route.paths[0][1].fee_msat, 1000000);
3341                 assert_eq!(route.paths[0][1].cltv_expiry_delta, 42);
3342                 assert_eq!(route.paths[0][1].node_features.le_flags(), default_node_features().le_flags()); // We dont pass flags in from invoices yet
3343                 assert_eq!(route.paths[0][1].channel_features.le_flags(), &[0; 0]); // We can't learn any flags from invoices, sadly
3344         }
3345
3346         #[test]
3347         fn overflow_unannounced_path_test_liquidity_underflow() {
3348                 // Previously, when we had a last-hop hint connected directly to a first-hop channel, where
3349                 // the last-hop had a fee which overflowed a u64, we'd panic.
3350                 // This was due to us adding the first-hop from us unconditionally, causing us to think
3351                 // we'd built a path (as our node is in the "best candidate" set), when we had not.
3352                 // In this test, we previously hit a subtraction underflow due to having less available
3353                 // liquidity at the last hop than 0.
3354                 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());
3355         }
3356
3357         #[test]
3358         fn overflow_unannounced_path_test_feerate_overflow() {
3359                 // This tests for the same case as above, except instead of hitting a subtraction
3360                 // underflow, we hit a case where the fee charged at a hop overflowed.
3361                 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());
3362         }
3363
3364         #[test]
3365         fn available_amount_while_routing_test() {
3366                 // Tests whether we choose the correct available channel amount while routing.
3367
3368                 let (secp_ctx, network_graph, mut gossip_sync, chain_monitor, logger) = build_graph();
3369                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3370                 let scorer = ln_test_utils::TestScorer::new();
3371                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3372                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3373                 let config = UserConfig::default();
3374                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42).with_features(channelmanager::provided_invoice_features(&config));
3375
3376                 // We will use a simple single-path route from
3377                 // our node to node2 via node0: channels {1, 3}.
3378
3379                 // First disable all other paths.
3380                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3381                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3382                         short_channel_id: 2,
3383                         timestamp: 2,
3384                         flags: 2,
3385                         cltv_expiry_delta: 0,
3386                         htlc_minimum_msat: 0,
3387                         htlc_maximum_msat: 100_000,
3388                         fee_base_msat: 0,
3389                         fee_proportional_millionths: 0,
3390                         excess_data: Vec::new()
3391                 });
3392                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3393                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3394                         short_channel_id: 12,
3395                         timestamp: 2,
3396                         flags: 2,
3397                         cltv_expiry_delta: 0,
3398                         htlc_minimum_msat: 0,
3399                         htlc_maximum_msat: 100_000,
3400                         fee_base_msat: 0,
3401                         fee_proportional_millionths: 0,
3402                         excess_data: Vec::new()
3403                 });
3404
3405                 // Make the first channel (#1) very permissive,
3406                 // and we will be testing all limits on the second channel.
3407                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3408                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3409                         short_channel_id: 1,
3410                         timestamp: 2,
3411                         flags: 0,
3412                         cltv_expiry_delta: 0,
3413                         htlc_minimum_msat: 0,
3414                         htlc_maximum_msat: 1_000_000_000,
3415                         fee_base_msat: 0,
3416                         fee_proportional_millionths: 0,
3417                         excess_data: Vec::new()
3418                 });
3419
3420                 // First, let's see if routing works if we have absolutely no idea about the available amount.
3421                 // In this case, it should be set to 250_000 sats.
3422                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
3423                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3424                         short_channel_id: 3,
3425                         timestamp: 2,
3426                         flags: 0,
3427                         cltv_expiry_delta: 0,
3428                         htlc_minimum_msat: 0,
3429                         htlc_maximum_msat: 250_000_000,
3430                         fee_base_msat: 0,
3431                         fee_proportional_millionths: 0,
3432                         excess_data: Vec::new()
3433                 });
3434
3435                 {
3436                         // Attempt to route more than available results in a failure.
3437                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
3438                                         &our_id, &payment_params, &network_graph.read_only(), None, 250_000_001, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
3439                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
3440                         } else { panic!(); }
3441                 }
3442
3443                 {
3444                         // Now, attempt to route an exact amount we have should be fine.
3445                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 250_000_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3446                         assert_eq!(route.paths.len(), 1);
3447                         let path = route.paths.last().unwrap();
3448                         assert_eq!(path.len(), 2);
3449                         assert_eq!(path.last().unwrap().pubkey, nodes[2]);
3450                         assert_eq!(path.last().unwrap().fee_msat, 250_000_000);
3451                 }
3452
3453                 // Check that setting next_outbound_htlc_limit_msat in first_hops limits the channels.
3454                 // Disable channel #1 and use another first hop.
3455                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3456                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3457                         short_channel_id: 1,
3458                         timestamp: 3,
3459                         flags: 2,
3460                         cltv_expiry_delta: 0,
3461                         htlc_minimum_msat: 0,
3462                         htlc_maximum_msat: 1_000_000_000,
3463                         fee_base_msat: 0,
3464                         fee_proportional_millionths: 0,
3465                         excess_data: Vec::new()
3466                 });
3467
3468                 // Now, limit the first_hop by the next_outbound_htlc_limit_msat of 200_000 sats.
3469                 let our_chans = vec![get_channel_details(Some(42), nodes[0].clone(), InitFeatures::from_le_bytes(vec![0b11]), 200_000_000)];
3470
3471                 {
3472                         // Attempt to route more than available results in a failure.
3473                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
3474                                         &our_id, &payment_params, &network_graph.read_only(), Some(&our_chans.iter().collect::<Vec<_>>()), 200_000_001, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
3475                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
3476                         } else { panic!(); }
3477                 }
3478
3479                 {
3480                         // Now, attempt to route an exact amount we have should be fine.
3481                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), Some(&our_chans.iter().collect::<Vec<_>>()), 200_000_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3482                         assert_eq!(route.paths.len(), 1);
3483                         let path = route.paths.last().unwrap();
3484                         assert_eq!(path.len(), 2);
3485                         assert_eq!(path.last().unwrap().pubkey, nodes[2]);
3486                         assert_eq!(path.last().unwrap().fee_msat, 200_000_000);
3487                 }
3488
3489                 // Enable channel #1 back.
3490                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3491                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3492                         short_channel_id: 1,
3493                         timestamp: 4,
3494                         flags: 0,
3495                         cltv_expiry_delta: 0,
3496                         htlc_minimum_msat: 0,
3497                         htlc_maximum_msat: 1_000_000_000,
3498                         fee_base_msat: 0,
3499                         fee_proportional_millionths: 0,
3500                         excess_data: Vec::new()
3501                 });
3502
3503
3504                 // Now let's see if routing works if we know only htlc_maximum_msat.
3505                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
3506                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3507                         short_channel_id: 3,
3508                         timestamp: 3,
3509                         flags: 0,
3510                         cltv_expiry_delta: 0,
3511                         htlc_minimum_msat: 0,
3512                         htlc_maximum_msat: 15_000,
3513                         fee_base_msat: 0,
3514                         fee_proportional_millionths: 0,
3515                         excess_data: Vec::new()
3516                 });
3517
3518                 {
3519                         // Attempt to route more than available results in a failure.
3520                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
3521                                         &our_id, &payment_params, &network_graph.read_only(), None, 15_001, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
3522                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
3523                         } else { panic!(); }
3524                 }
3525
3526                 {
3527                         // Now, attempt to route an exact amount we have should be fine.
3528                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 15_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3529                         assert_eq!(route.paths.len(), 1);
3530                         let path = route.paths.last().unwrap();
3531                         assert_eq!(path.len(), 2);
3532                         assert_eq!(path.last().unwrap().pubkey, nodes[2]);
3533                         assert_eq!(path.last().unwrap().fee_msat, 15_000);
3534                 }
3535
3536                 // Now let's see if routing works if we know only capacity from the UTXO.
3537
3538                 // We can't change UTXO capacity on the fly, so we'll disable
3539                 // the existing channel and add another one with the capacity we need.
3540                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
3541                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3542                         short_channel_id: 3,
3543                         timestamp: 4,
3544                         flags: 2,
3545                         cltv_expiry_delta: 0,
3546                         htlc_minimum_msat: 0,
3547                         htlc_maximum_msat: MAX_VALUE_MSAT,
3548                         fee_base_msat: 0,
3549                         fee_proportional_millionths: 0,
3550                         excess_data: Vec::new()
3551                 });
3552
3553                 let good_script = Builder::new().push_opcode(opcodes::all::OP_PUSHNUM_2)
3554                 .push_slice(&PublicKey::from_secret_key(&secp_ctx, &privkeys[0]).serialize())
3555                 .push_slice(&PublicKey::from_secret_key(&secp_ctx, &privkeys[2]).serialize())
3556                 .push_opcode(opcodes::all::OP_PUSHNUM_2)
3557                 .push_opcode(opcodes::all::OP_CHECKMULTISIG).into_script().to_v0_p2wsh();
3558
3559                 *chain_monitor.utxo_ret.lock().unwrap() =
3560                         UtxoResult::Sync(Ok(TxOut { value: 15, script_pubkey: good_script.clone() }));
3561                 gossip_sync.add_utxo_lookup(Some(chain_monitor));
3562
3563                 add_channel(&gossip_sync, &secp_ctx, &privkeys[0], &privkeys[2], ChannelFeatures::from_le_bytes(id_to_feature_flags(3)), 333);
3564                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
3565                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3566                         short_channel_id: 333,
3567                         timestamp: 1,
3568                         flags: 0,
3569                         cltv_expiry_delta: (3 << 4) | 1,
3570                         htlc_minimum_msat: 0,
3571                         htlc_maximum_msat: 15_000,
3572                         fee_base_msat: 0,
3573                         fee_proportional_millionths: 0,
3574                         excess_data: Vec::new()
3575                 });
3576                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
3577                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3578                         short_channel_id: 333,
3579                         timestamp: 1,
3580                         flags: 1,
3581                         cltv_expiry_delta: (3 << 4) | 2,
3582                         htlc_minimum_msat: 0,
3583                         htlc_maximum_msat: 15_000,
3584                         fee_base_msat: 100,
3585                         fee_proportional_millionths: 0,
3586                         excess_data: Vec::new()
3587                 });
3588
3589                 {
3590                         // Attempt to route more than available results in a failure.
3591                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
3592                                         &our_id, &payment_params, &network_graph.read_only(), None, 15_001, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
3593                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
3594                         } else { panic!(); }
3595                 }
3596
3597                 {
3598                         // Now, attempt to route an exact amount we have should be fine.
3599                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 15_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3600                         assert_eq!(route.paths.len(), 1);
3601                         let path = route.paths.last().unwrap();
3602                         assert_eq!(path.len(), 2);
3603                         assert_eq!(path.last().unwrap().pubkey, nodes[2]);
3604                         assert_eq!(path.last().unwrap().fee_msat, 15_000);
3605                 }
3606
3607                 // Now let's see if routing chooses htlc_maximum_msat over UTXO capacity.
3608                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
3609                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3610                         short_channel_id: 333,
3611                         timestamp: 6,
3612                         flags: 0,
3613                         cltv_expiry_delta: 0,
3614                         htlc_minimum_msat: 0,
3615                         htlc_maximum_msat: 10_000,
3616                         fee_base_msat: 0,
3617                         fee_proportional_millionths: 0,
3618                         excess_data: Vec::new()
3619                 });
3620
3621                 {
3622                         // Attempt to route more than available results in a failure.
3623                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
3624                                         &our_id, &payment_params, &network_graph.read_only(), None, 10_001, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
3625                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
3626                         } else { panic!(); }
3627                 }
3628
3629                 {
3630                         // Now, attempt to route an exact amount we have should be fine.
3631                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 10_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3632                         assert_eq!(route.paths.len(), 1);
3633                         let path = route.paths.last().unwrap();
3634                         assert_eq!(path.len(), 2);
3635                         assert_eq!(path.last().unwrap().pubkey, nodes[2]);
3636                         assert_eq!(path.last().unwrap().fee_msat, 10_000);
3637                 }
3638         }
3639
3640         #[test]
3641         fn available_liquidity_last_hop_test() {
3642                 // Check that available liquidity properly limits the path even when only
3643                 // one of the latter hops is limited.
3644                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3645                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3646                 let scorer = ln_test_utils::TestScorer::new();
3647                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3648                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3649                 let config = UserConfig::default();
3650                 let payment_params = PaymentParameters::from_node_id(nodes[3], 42).with_features(channelmanager::provided_invoice_features(&config));
3651
3652                 // Path via {node7, node2, node4} is channels {12, 13, 6, 11}.
3653                 // {12, 13, 11} have the capacities of 100, {6} has a capacity of 50.
3654                 // Total capacity: 50 sats.
3655
3656                 // Disable other potential paths.
3657                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3658                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3659                         short_channel_id: 2,
3660                         timestamp: 2,
3661                         flags: 2,
3662                         cltv_expiry_delta: 0,
3663                         htlc_minimum_msat: 0,
3664                         htlc_maximum_msat: 100_000,
3665                         fee_base_msat: 0,
3666                         fee_proportional_millionths: 0,
3667                         excess_data: Vec::new()
3668                 });
3669                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
3670                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3671                         short_channel_id: 7,
3672                         timestamp: 2,
3673                         flags: 2,
3674                         cltv_expiry_delta: 0,
3675                         htlc_minimum_msat: 0,
3676                         htlc_maximum_msat: 100_000,
3677                         fee_base_msat: 0,
3678                         fee_proportional_millionths: 0,
3679                         excess_data: Vec::new()
3680                 });
3681
3682                 // Limit capacities
3683
3684                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3685                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3686                         short_channel_id: 12,
3687                         timestamp: 2,
3688                         flags: 0,
3689                         cltv_expiry_delta: 0,
3690                         htlc_minimum_msat: 0,
3691                         htlc_maximum_msat: 100_000,
3692                         fee_base_msat: 0,
3693                         fee_proportional_millionths: 0,
3694                         excess_data: Vec::new()
3695                 });
3696                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
3697                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3698                         short_channel_id: 13,
3699                         timestamp: 2,
3700                         flags: 0,
3701                         cltv_expiry_delta: 0,
3702                         htlc_minimum_msat: 0,
3703                         htlc_maximum_msat: 100_000,
3704                         fee_base_msat: 0,
3705                         fee_proportional_millionths: 0,
3706                         excess_data: Vec::new()
3707                 });
3708
3709                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
3710                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3711                         short_channel_id: 6,
3712                         timestamp: 2,
3713                         flags: 0,
3714                         cltv_expiry_delta: 0,
3715                         htlc_minimum_msat: 0,
3716                         htlc_maximum_msat: 50_000,
3717                         fee_base_msat: 0,
3718                         fee_proportional_millionths: 0,
3719                         excess_data: Vec::new()
3720                 });
3721                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
3722                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3723                         short_channel_id: 11,
3724                         timestamp: 2,
3725                         flags: 0,
3726                         cltv_expiry_delta: 0,
3727                         htlc_minimum_msat: 0,
3728                         htlc_maximum_msat: 100_000,
3729                         fee_base_msat: 0,
3730                         fee_proportional_millionths: 0,
3731                         excess_data: Vec::new()
3732                 });
3733                 {
3734                         // Attempt to route more than available results in a failure.
3735                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
3736                                         &our_id, &payment_params, &network_graph.read_only(), None, 60_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
3737                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
3738                         } else { panic!(); }
3739                 }
3740
3741                 {
3742                         // Now, attempt to route 49 sats (just a bit below the capacity).
3743                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 49_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3744                         assert_eq!(route.paths.len(), 1);
3745                         let mut total_amount_paid_msat = 0;
3746                         for path in &route.paths {
3747                                 assert_eq!(path.len(), 4);
3748                                 assert_eq!(path.last().unwrap().pubkey, nodes[3]);
3749                                 total_amount_paid_msat += path.last().unwrap().fee_msat;
3750                         }
3751                         assert_eq!(total_amount_paid_msat, 49_000);
3752                 }
3753
3754                 {
3755                         // Attempt to route an exact amount is also fine
3756                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 50_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3757                         assert_eq!(route.paths.len(), 1);
3758                         let mut total_amount_paid_msat = 0;
3759                         for path in &route.paths {
3760                                 assert_eq!(path.len(), 4);
3761                                 assert_eq!(path.last().unwrap().pubkey, nodes[3]);
3762                                 total_amount_paid_msat += path.last().unwrap().fee_msat;
3763                         }
3764                         assert_eq!(total_amount_paid_msat, 50_000);
3765                 }
3766         }
3767
3768         #[test]
3769         fn ignore_fee_first_hop_test() {
3770                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3771                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3772                 let scorer = ln_test_utils::TestScorer::new();
3773                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3774                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3775                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
3776
3777                 // Path via node0 is channels {1, 3}. Limit them to 100 and 50 sats (total limit 50).
3778                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3779                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3780                         short_channel_id: 1,
3781                         timestamp: 2,
3782                         flags: 0,
3783                         cltv_expiry_delta: 0,
3784                         htlc_minimum_msat: 0,
3785                         htlc_maximum_msat: 100_000,
3786                         fee_base_msat: 1_000_000,
3787                         fee_proportional_millionths: 0,
3788                         excess_data: Vec::new()
3789                 });
3790                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
3791                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3792                         short_channel_id: 3,
3793                         timestamp: 2,
3794                         flags: 0,
3795                         cltv_expiry_delta: 0,
3796                         htlc_minimum_msat: 0,
3797                         htlc_maximum_msat: 50_000,
3798                         fee_base_msat: 0,
3799                         fee_proportional_millionths: 0,
3800                         excess_data: Vec::new()
3801                 });
3802
3803                 {
3804                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 50_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3805                         assert_eq!(route.paths.len(), 1);
3806                         let mut total_amount_paid_msat = 0;
3807                         for path in &route.paths {
3808                                 assert_eq!(path.len(), 2);
3809                                 assert_eq!(path.last().unwrap().pubkey, nodes[2]);
3810                                 total_amount_paid_msat += path.last().unwrap().fee_msat;
3811                         }
3812                         assert_eq!(total_amount_paid_msat, 50_000);
3813                 }
3814         }
3815
3816         #[test]
3817         fn simple_mpp_route_test() {
3818                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3819                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3820                 let scorer = ln_test_utils::TestScorer::new();
3821                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3822                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3823                 let config = UserConfig::default();
3824                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42)
3825                         .with_features(channelmanager::provided_invoice_features(&config));
3826
3827                 // We need a route consisting of 3 paths:
3828                 // From our node to node2 via node0, node7, node1 (three paths one hop each).
3829                 // To achieve this, the amount being transferred should be around
3830                 // the total capacity of these 3 paths.
3831
3832                 // First, we set limits on these (previously unlimited) channels.
3833                 // Their aggregate capacity will be 50 + 60 + 180 = 290 sats.
3834
3835                 // Path via node0 is channels {1, 3}. Limit them to 100 and 50 sats (total limit 50).
3836                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3837                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3838                         short_channel_id: 1,
3839                         timestamp: 2,
3840                         flags: 0,
3841                         cltv_expiry_delta: 0,
3842                         htlc_minimum_msat: 0,
3843                         htlc_maximum_msat: 100_000,
3844                         fee_base_msat: 0,
3845                         fee_proportional_millionths: 0,
3846                         excess_data: Vec::new()
3847                 });
3848                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
3849                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3850                         short_channel_id: 3,
3851                         timestamp: 2,
3852                         flags: 0,
3853                         cltv_expiry_delta: 0,
3854                         htlc_minimum_msat: 0,
3855                         htlc_maximum_msat: 50_000,
3856                         fee_base_msat: 0,
3857                         fee_proportional_millionths: 0,
3858                         excess_data: Vec::new()
3859                 });
3860
3861                 // Path via node7 is channels {12, 13}. Limit them to 60 and 60 sats
3862                 // (total limit 60).
3863                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3864                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3865                         short_channel_id: 12,
3866                         timestamp: 2,
3867                         flags: 0,
3868                         cltv_expiry_delta: 0,
3869                         htlc_minimum_msat: 0,
3870                         htlc_maximum_msat: 60_000,
3871                         fee_base_msat: 0,
3872                         fee_proportional_millionths: 0,
3873                         excess_data: Vec::new()
3874                 });
3875                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
3876                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3877                         short_channel_id: 13,
3878                         timestamp: 2,
3879                         flags: 0,
3880                         cltv_expiry_delta: 0,
3881                         htlc_minimum_msat: 0,
3882                         htlc_maximum_msat: 60_000,
3883                         fee_base_msat: 0,
3884                         fee_proportional_millionths: 0,
3885                         excess_data: Vec::new()
3886                 });
3887
3888                 // Path via node1 is channels {2, 4}. Limit them to 200 and 180 sats
3889                 // (total capacity 180 sats).
3890                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3891                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3892                         short_channel_id: 2,
3893                         timestamp: 2,
3894                         flags: 0,
3895                         cltv_expiry_delta: 0,
3896                         htlc_minimum_msat: 0,
3897                         htlc_maximum_msat: 200_000,
3898                         fee_base_msat: 0,
3899                         fee_proportional_millionths: 0,
3900                         excess_data: Vec::new()
3901                 });
3902                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
3903                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3904                         short_channel_id: 4,
3905                         timestamp: 2,
3906                         flags: 0,
3907                         cltv_expiry_delta: 0,
3908                         htlc_minimum_msat: 0,
3909                         htlc_maximum_msat: 180_000,
3910                         fee_base_msat: 0,
3911                         fee_proportional_millionths: 0,
3912                         excess_data: Vec::new()
3913                 });
3914
3915                 {
3916                         // Attempt to route more than available results in a failure.
3917                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
3918                                 &our_id, &payment_params, &network_graph.read_only(), None, 300_000, 42,
3919                                 Arc::clone(&logger), &scorer, &random_seed_bytes) {
3920                                         assert_eq!(err, "Failed to find a sufficient route to the given destination");
3921                         } else { panic!(); }
3922                 }
3923
3924                 {
3925                         // Attempt to route while setting max_path_count to 0 results in a failure.
3926                         let zero_payment_params = payment_params.clone().with_max_path_count(0);
3927                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
3928                                 &our_id, &zero_payment_params, &network_graph.read_only(), None, 100, 42,
3929                                 Arc::clone(&logger), &scorer, &random_seed_bytes) {
3930                                         assert_eq!(err, "Can't find a route with no paths allowed.");
3931                         } else { panic!(); }
3932                 }
3933
3934                 {
3935                         // Attempt to route while setting max_path_count to 3 results in a failure.
3936                         // This is the case because the minimal_value_contribution_msat would require each path
3937                         // to account for 1/3 of the total value, which is violated by 2 out of 3 paths.
3938                         let fail_payment_params = payment_params.clone().with_max_path_count(3);
3939                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
3940                                 &our_id, &fail_payment_params, &network_graph.read_only(), None, 250_000, 42,
3941                                 Arc::clone(&logger), &scorer, &random_seed_bytes) {
3942                                         assert_eq!(err, "Failed to find a sufficient route to the given destination");
3943                         } else { panic!(); }
3944                 }
3945
3946                 {
3947                         // Now, attempt to route 250 sats (just a bit below the capacity).
3948                         // Our algorithm should provide us with these 3 paths.
3949                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None,
3950                                 250_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3951                         assert_eq!(route.paths.len(), 3);
3952                         let mut total_amount_paid_msat = 0;
3953                         for path in &route.paths {
3954                                 assert_eq!(path.len(), 2);
3955                                 assert_eq!(path.last().unwrap().pubkey, nodes[2]);
3956                                 total_amount_paid_msat += path.last().unwrap().fee_msat;
3957                         }
3958                         assert_eq!(total_amount_paid_msat, 250_000);
3959                 }
3960
3961                 {
3962                         // Attempt to route an exact amount is also fine
3963                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None,
3964                                 290_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
3965                         assert_eq!(route.paths.len(), 3);
3966                         let mut total_amount_paid_msat = 0;
3967                         for path in &route.paths {
3968                                 assert_eq!(path.len(), 2);
3969                                 assert_eq!(path.last().unwrap().pubkey, nodes[2]);
3970                                 total_amount_paid_msat += path.last().unwrap().fee_msat;
3971                         }
3972                         assert_eq!(total_amount_paid_msat, 290_000);
3973                 }
3974         }
3975
3976         #[test]
3977         fn long_mpp_route_test() {
3978                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
3979                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
3980                 let scorer = ln_test_utils::TestScorer::new();
3981                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
3982                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
3983                 let config = UserConfig::default();
3984                 let payment_params = PaymentParameters::from_node_id(nodes[3], 42).with_features(channelmanager::provided_invoice_features(&config));
3985
3986                 // We need a route consisting of 3 paths:
3987                 // From our node to node3 via {node0, node2}, {node7, node2, node4} and {node7, node2}.
3988                 // Note that these paths overlap (channels 5, 12, 13).
3989                 // We will route 300 sats.
3990                 // Each path will have 100 sats capacity, those channels which
3991                 // are used twice will have 200 sats capacity.
3992
3993                 // Disable other potential paths.
3994                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
3995                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
3996                         short_channel_id: 2,
3997                         timestamp: 2,
3998                         flags: 2,
3999                         cltv_expiry_delta: 0,
4000                         htlc_minimum_msat: 0,
4001                         htlc_maximum_msat: 100_000,
4002                         fee_base_msat: 0,
4003                         fee_proportional_millionths: 0,
4004                         excess_data: Vec::new()
4005                 });
4006                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4007                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4008                         short_channel_id: 7,
4009                         timestamp: 2,
4010                         flags: 2,
4011                         cltv_expiry_delta: 0,
4012                         htlc_minimum_msat: 0,
4013                         htlc_maximum_msat: 100_000,
4014                         fee_base_msat: 0,
4015                         fee_proportional_millionths: 0,
4016                         excess_data: Vec::new()
4017                 });
4018
4019                 // Path via {node0, node2} is channels {1, 3, 5}.
4020                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4021                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4022                         short_channel_id: 1,
4023                         timestamp: 2,
4024                         flags: 0,
4025                         cltv_expiry_delta: 0,
4026                         htlc_minimum_msat: 0,
4027                         htlc_maximum_msat: 100_000,
4028                         fee_base_msat: 0,
4029                         fee_proportional_millionths: 0,
4030                         excess_data: Vec::new()
4031                 });
4032                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
4033                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4034                         short_channel_id: 3,
4035                         timestamp: 2,
4036                         flags: 0,
4037                         cltv_expiry_delta: 0,
4038                         htlc_minimum_msat: 0,
4039                         htlc_maximum_msat: 100_000,
4040                         fee_base_msat: 0,
4041                         fee_proportional_millionths: 0,
4042                         excess_data: Vec::new()
4043                 });
4044
4045                 // Capacity of 200 sats because this channel will be used by 3rd path as well.
4046                 add_channel(&gossip_sync, &secp_ctx, &privkeys[2], &privkeys[3], ChannelFeatures::from_le_bytes(id_to_feature_flags(5)), 5);
4047                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4048                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4049                         short_channel_id: 5,
4050                         timestamp: 2,
4051                         flags: 0,
4052                         cltv_expiry_delta: 0,
4053                         htlc_minimum_msat: 0,
4054                         htlc_maximum_msat: 200_000,
4055                         fee_base_msat: 0,
4056                         fee_proportional_millionths: 0,
4057                         excess_data: Vec::new()
4058                 });
4059
4060                 // Path via {node7, node2, node4} is channels {12, 13, 6, 11}.
4061                 // Add 100 sats to the capacities of {12, 13}, because these channels
4062                 // are also used for 3rd path. 100 sats for the rest. Total capacity: 100 sats.
4063                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4064                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4065                         short_channel_id: 12,
4066                         timestamp: 2,
4067                         flags: 0,
4068                         cltv_expiry_delta: 0,
4069                         htlc_minimum_msat: 0,
4070                         htlc_maximum_msat: 200_000,
4071                         fee_base_msat: 0,
4072                         fee_proportional_millionths: 0,
4073                         excess_data: Vec::new()
4074                 });
4075                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
4076                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4077                         short_channel_id: 13,
4078                         timestamp: 2,
4079                         flags: 0,
4080                         cltv_expiry_delta: 0,
4081                         htlc_minimum_msat: 0,
4082                         htlc_maximum_msat: 200_000,
4083                         fee_base_msat: 0,
4084                         fee_proportional_millionths: 0,
4085                         excess_data: Vec::new()
4086                 });
4087
4088                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4089                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4090                         short_channel_id: 6,
4091                         timestamp: 2,
4092                         flags: 0,
4093                         cltv_expiry_delta: 0,
4094                         htlc_minimum_msat: 0,
4095                         htlc_maximum_msat: 100_000,
4096                         fee_base_msat: 0,
4097                         fee_proportional_millionths: 0,
4098                         excess_data: Vec::new()
4099                 });
4100                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
4101                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4102                         short_channel_id: 11,
4103                         timestamp: 2,
4104                         flags: 0,
4105                         cltv_expiry_delta: 0,
4106                         htlc_minimum_msat: 0,
4107                         htlc_maximum_msat: 100_000,
4108                         fee_base_msat: 0,
4109                         fee_proportional_millionths: 0,
4110                         excess_data: Vec::new()
4111                 });
4112
4113                 // Path via {node7, node2} is channels {12, 13, 5}.
4114                 // We already limited them to 200 sats (they are used twice for 100 sats).
4115                 // Nothing to do here.
4116
4117                 {
4118                         // Attempt to route more than available results in a failure.
4119                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
4120                                         &our_id, &payment_params, &network_graph.read_only(), None, 350_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
4121                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
4122                         } else { panic!(); }
4123                 }
4124
4125                 {
4126                         // Now, attempt to route 300 sats (exact amount we can route).
4127                         // Our algorithm should provide us with these 3 paths, 100 sats each.
4128                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 300_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
4129                         assert_eq!(route.paths.len(), 3);
4130
4131                         let mut total_amount_paid_msat = 0;
4132                         for path in &route.paths {
4133                                 assert_eq!(path.last().unwrap().pubkey, nodes[3]);
4134                                 total_amount_paid_msat += path.last().unwrap().fee_msat;
4135                         }
4136                         assert_eq!(total_amount_paid_msat, 300_000);
4137                 }
4138
4139         }
4140
4141         #[test]
4142         fn mpp_cheaper_route_test() {
4143                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
4144                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4145                 let scorer = ln_test_utils::TestScorer::new();
4146                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4147                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4148                 let config = UserConfig::default();
4149                 let payment_params = PaymentParameters::from_node_id(nodes[3], 42).with_features(channelmanager::provided_invoice_features(&config));
4150
4151                 // This test checks that if we have two cheaper paths and one more expensive path,
4152                 // so that liquidity-wise any 2 of 3 combination is sufficient,
4153                 // two cheaper paths will be taken.
4154                 // These paths have equal available liquidity.
4155
4156                 // We need a combination of 3 paths:
4157                 // From our node to node3 via {node0, node2}, {node7, node2, node4} and {node7, node2}.
4158                 // Note that these paths overlap (channels 5, 12, 13).
4159                 // Each path will have 100 sats capacity, those channels which
4160                 // are used twice will have 200 sats capacity.
4161
4162                 // Disable other potential paths.
4163                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4164                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4165                         short_channel_id: 2,
4166                         timestamp: 2,
4167                         flags: 2,
4168                         cltv_expiry_delta: 0,
4169                         htlc_minimum_msat: 0,
4170                         htlc_maximum_msat: 100_000,
4171                         fee_base_msat: 0,
4172                         fee_proportional_millionths: 0,
4173                         excess_data: Vec::new()
4174                 });
4175                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4176                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4177                         short_channel_id: 7,
4178                         timestamp: 2,
4179                         flags: 2,
4180                         cltv_expiry_delta: 0,
4181                         htlc_minimum_msat: 0,
4182                         htlc_maximum_msat: 100_000,
4183                         fee_base_msat: 0,
4184                         fee_proportional_millionths: 0,
4185                         excess_data: Vec::new()
4186                 });
4187
4188                 // Path via {node0, node2} is channels {1, 3, 5}.
4189                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4190                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4191                         short_channel_id: 1,
4192                         timestamp: 2,
4193                         flags: 0,
4194                         cltv_expiry_delta: 0,
4195                         htlc_minimum_msat: 0,
4196                         htlc_maximum_msat: 100_000,
4197                         fee_base_msat: 0,
4198                         fee_proportional_millionths: 0,
4199                         excess_data: Vec::new()
4200                 });
4201                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
4202                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4203                         short_channel_id: 3,
4204                         timestamp: 2,
4205                         flags: 0,
4206                         cltv_expiry_delta: 0,
4207                         htlc_minimum_msat: 0,
4208                         htlc_maximum_msat: 100_000,
4209                         fee_base_msat: 0,
4210                         fee_proportional_millionths: 0,
4211                         excess_data: Vec::new()
4212                 });
4213
4214                 // Capacity of 200 sats because this channel will be used by 3rd path as well.
4215                 add_channel(&gossip_sync, &secp_ctx, &privkeys[2], &privkeys[3], ChannelFeatures::from_le_bytes(id_to_feature_flags(5)), 5);
4216                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4217                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4218                         short_channel_id: 5,
4219                         timestamp: 2,
4220                         flags: 0,
4221                         cltv_expiry_delta: 0,
4222                         htlc_minimum_msat: 0,
4223                         htlc_maximum_msat: 200_000,
4224                         fee_base_msat: 0,
4225                         fee_proportional_millionths: 0,
4226                         excess_data: Vec::new()
4227                 });
4228
4229                 // Path via {node7, node2, node4} is channels {12, 13, 6, 11}.
4230                 // Add 100 sats to the capacities of {12, 13}, because these channels
4231                 // are also used for 3rd path. 100 sats for the rest. Total capacity: 100 sats.
4232                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4233                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4234                         short_channel_id: 12,
4235                         timestamp: 2,
4236                         flags: 0,
4237                         cltv_expiry_delta: 0,
4238                         htlc_minimum_msat: 0,
4239                         htlc_maximum_msat: 200_000,
4240                         fee_base_msat: 0,
4241                         fee_proportional_millionths: 0,
4242                         excess_data: Vec::new()
4243                 });
4244                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
4245                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4246                         short_channel_id: 13,
4247                         timestamp: 2,
4248                         flags: 0,
4249                         cltv_expiry_delta: 0,
4250                         htlc_minimum_msat: 0,
4251                         htlc_maximum_msat: 200_000,
4252                         fee_base_msat: 0,
4253                         fee_proportional_millionths: 0,
4254                         excess_data: Vec::new()
4255                 });
4256
4257                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4258                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4259                         short_channel_id: 6,
4260                         timestamp: 2,
4261                         flags: 0,
4262                         cltv_expiry_delta: 0,
4263                         htlc_minimum_msat: 0,
4264                         htlc_maximum_msat: 100_000,
4265                         fee_base_msat: 1_000,
4266                         fee_proportional_millionths: 0,
4267                         excess_data: Vec::new()
4268                 });
4269                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
4270                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4271                         short_channel_id: 11,
4272                         timestamp: 2,
4273                         flags: 0,
4274                         cltv_expiry_delta: 0,
4275                         htlc_minimum_msat: 0,
4276                         htlc_maximum_msat: 100_000,
4277                         fee_base_msat: 0,
4278                         fee_proportional_millionths: 0,
4279                         excess_data: Vec::new()
4280                 });
4281
4282                 // Path via {node7, node2} is channels {12, 13, 5}.
4283                 // We already limited them to 200 sats (they are used twice for 100 sats).
4284                 // Nothing to do here.
4285
4286                 {
4287                         // Now, attempt to route 180 sats.
4288                         // Our algorithm should provide us with these 2 paths.
4289                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 180_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
4290                         assert_eq!(route.paths.len(), 2);
4291
4292                         let mut total_value_transferred_msat = 0;
4293                         let mut total_paid_msat = 0;
4294                         for path in &route.paths {
4295                                 assert_eq!(path.last().unwrap().pubkey, nodes[3]);
4296                                 total_value_transferred_msat += path.last().unwrap().fee_msat;
4297                                 for hop in path {
4298                                         total_paid_msat += hop.fee_msat;
4299                                 }
4300                         }
4301                         // If we paid fee, this would be higher.
4302                         assert_eq!(total_value_transferred_msat, 180_000);
4303                         let total_fees_paid = total_paid_msat - total_value_transferred_msat;
4304                         assert_eq!(total_fees_paid, 0);
4305                 }
4306         }
4307
4308         #[test]
4309         fn fees_on_mpp_route_test() {
4310                 // This test makes sure that MPP algorithm properly takes into account
4311                 // fees charged on the channels, by making the fees impactful:
4312                 // if the fee is not properly accounted for, the behavior is different.
4313                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
4314                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4315                 let scorer = ln_test_utils::TestScorer::new();
4316                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4317                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4318                 let config = UserConfig::default();
4319                 let payment_params = PaymentParameters::from_node_id(nodes[3], 42).with_features(channelmanager::provided_invoice_features(&config));
4320
4321                 // We need a route consisting of 2 paths:
4322                 // From our node to node3 via {node0, node2} and {node7, node2, node4}.
4323                 // We will route 200 sats, Each path will have 100 sats capacity.
4324
4325                 // This test is not particularly stable: e.g.,
4326                 // there's a way to route via {node0, node2, node4}.
4327                 // It works while pathfinding is deterministic, but can be broken otherwise.
4328                 // It's fine to ignore this concern for now.
4329
4330                 // Disable other potential paths.
4331                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4332                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4333                         short_channel_id: 2,
4334                         timestamp: 2,
4335                         flags: 2,
4336                         cltv_expiry_delta: 0,
4337                         htlc_minimum_msat: 0,
4338                         htlc_maximum_msat: 100_000,
4339                         fee_base_msat: 0,
4340                         fee_proportional_millionths: 0,
4341                         excess_data: Vec::new()
4342                 });
4343
4344                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4345                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4346                         short_channel_id: 7,
4347                         timestamp: 2,
4348                         flags: 2,
4349                         cltv_expiry_delta: 0,
4350                         htlc_minimum_msat: 0,
4351                         htlc_maximum_msat: 100_000,
4352                         fee_base_msat: 0,
4353                         fee_proportional_millionths: 0,
4354                         excess_data: Vec::new()
4355                 });
4356
4357                 // Path via {node0, node2} is channels {1, 3, 5}.
4358                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4359                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4360                         short_channel_id: 1,
4361                         timestamp: 2,
4362                         flags: 0,
4363                         cltv_expiry_delta: 0,
4364                         htlc_minimum_msat: 0,
4365                         htlc_maximum_msat: 100_000,
4366                         fee_base_msat: 0,
4367                         fee_proportional_millionths: 0,
4368                         excess_data: Vec::new()
4369                 });
4370                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
4371                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4372                         short_channel_id: 3,
4373                         timestamp: 2,
4374                         flags: 0,
4375                         cltv_expiry_delta: 0,
4376                         htlc_minimum_msat: 0,
4377                         htlc_maximum_msat: 100_000,
4378                         fee_base_msat: 0,
4379                         fee_proportional_millionths: 0,
4380                         excess_data: Vec::new()
4381                 });
4382
4383                 add_channel(&gossip_sync, &secp_ctx, &privkeys[2], &privkeys[3], ChannelFeatures::from_le_bytes(id_to_feature_flags(5)), 5);
4384                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4385                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4386                         short_channel_id: 5,
4387                         timestamp: 2,
4388                         flags: 0,
4389                         cltv_expiry_delta: 0,
4390                         htlc_minimum_msat: 0,
4391                         htlc_maximum_msat: 100_000,
4392                         fee_base_msat: 0,
4393                         fee_proportional_millionths: 0,
4394                         excess_data: Vec::new()
4395                 });
4396
4397                 // Path via {node7, node2, node4} is channels {12, 13, 6, 11}.
4398                 // All channels should be 100 sats capacity. But for the fee experiment,
4399                 // we'll add absolute fee of 150 sats paid for the use channel 6 (paid to node2 on channel 13).
4400                 // Since channel 12 allows to deliver only 250 sats to channel 13, channel 13 can transfer only
4401                 // 100 sats (and pay 150 sats in fees for the use of channel 6),
4402                 // so no matter how large are other channels,
4403                 // the whole path will be limited by 100 sats with just these 2 conditions:
4404                 // - channel 12 capacity is 250 sats
4405                 // - fee for channel 6 is 150 sats
4406                 // Let's test this by enforcing these 2 conditions and removing other limits.
4407                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4408                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4409                         short_channel_id: 12,
4410                         timestamp: 2,
4411                         flags: 0,
4412                         cltv_expiry_delta: 0,
4413                         htlc_minimum_msat: 0,
4414                         htlc_maximum_msat: 250_000,
4415                         fee_base_msat: 0,
4416                         fee_proportional_millionths: 0,
4417                         excess_data: Vec::new()
4418                 });
4419                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
4420                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4421                         short_channel_id: 13,
4422                         timestamp: 2,
4423                         flags: 0,
4424                         cltv_expiry_delta: 0,
4425                         htlc_minimum_msat: 0,
4426                         htlc_maximum_msat: MAX_VALUE_MSAT,
4427                         fee_base_msat: 0,
4428                         fee_proportional_millionths: 0,
4429                         excess_data: Vec::new()
4430                 });
4431
4432                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4433                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4434                         short_channel_id: 6,
4435                         timestamp: 2,
4436                         flags: 0,
4437                         cltv_expiry_delta: 0,
4438                         htlc_minimum_msat: 0,
4439                         htlc_maximum_msat: MAX_VALUE_MSAT,
4440                         fee_base_msat: 150_000,
4441                         fee_proportional_millionths: 0,
4442                         excess_data: Vec::new()
4443                 });
4444                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
4445                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4446                         short_channel_id: 11,
4447                         timestamp: 2,
4448                         flags: 0,
4449                         cltv_expiry_delta: 0,
4450                         htlc_minimum_msat: 0,
4451                         htlc_maximum_msat: MAX_VALUE_MSAT,
4452                         fee_base_msat: 0,
4453                         fee_proportional_millionths: 0,
4454                         excess_data: Vec::new()
4455                 });
4456
4457                 {
4458                         // Attempt to route more than available results in a failure.
4459                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
4460                                         &our_id, &payment_params, &network_graph.read_only(), None, 210_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
4461                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
4462                         } else { panic!(); }
4463                 }
4464
4465                 {
4466                         // Now, attempt to route 200 sats (exact amount we can route).
4467                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 200_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
4468                         assert_eq!(route.paths.len(), 2);
4469
4470                         let mut total_amount_paid_msat = 0;
4471                         for path in &route.paths {
4472                                 assert_eq!(path.last().unwrap().pubkey, nodes[3]);
4473                                 total_amount_paid_msat += path.last().unwrap().fee_msat;
4474                         }
4475                         assert_eq!(total_amount_paid_msat, 200_000);
4476                         assert_eq!(route.get_total_fees(), 150_000);
4477                 }
4478         }
4479
4480         #[test]
4481         fn mpp_with_last_hops() {
4482                 // Previously, if we tried to send an MPP payment to a destination which was only reachable
4483                 // via a single last-hop route hint, we'd fail to route if we first collected routes
4484                 // totaling close but not quite enough to fund the full payment.
4485                 //
4486                 // This was because we considered last-hop hints to have exactly the sought payment amount
4487                 // instead of the amount we were trying to collect, needlessly limiting our path searching
4488                 // at the very first hop.
4489                 //
4490                 // Specifically, this interacted with our "all paths must fund at least 5% of total target"
4491                 // criterion to cause us to refuse all routes at the last hop hint which would be considered
4492                 // to only have the remaining to-collect amount in available liquidity.
4493                 //
4494                 // This bug appeared in production in some specific channel configurations.
4495                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
4496                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4497                 let scorer = ln_test_utils::TestScorer::new();
4498                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4499                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4500                 let config = UserConfig::default();
4501                 let payment_params = PaymentParameters::from_node_id(PublicKey::from_slice(&[02; 33]).unwrap(), 42).with_features(channelmanager::provided_invoice_features(&config))
4502                         .with_route_hints(vec![RouteHint(vec![RouteHintHop {
4503                                 src_node_id: nodes[2],
4504                                 short_channel_id: 42,
4505                                 fees: RoutingFees { base_msat: 0, proportional_millionths: 0 },
4506                                 cltv_expiry_delta: 42,
4507                                 htlc_minimum_msat: None,
4508                                 htlc_maximum_msat: None,
4509                         }])]).with_max_channel_saturation_power_of_half(0);
4510
4511                 // Keep only two paths from us to nodes[2], both with a 99sat HTLC maximum, with one with
4512                 // no fee and one with a 1msat fee. Previously, trying to route 100 sats to nodes[2] here
4513                 // would first use the no-fee route and then fail to find a path along the second route as
4514                 // we think we can only send up to 1 additional sat over the last-hop but refuse to as its
4515                 // under 5% of our payment amount.
4516                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4517                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4518                         short_channel_id: 1,
4519                         timestamp: 2,
4520                         flags: 0,
4521                         cltv_expiry_delta: (5 << 4) | 5,
4522                         htlc_minimum_msat: 0,
4523                         htlc_maximum_msat: 99_000,
4524                         fee_base_msat: u32::max_value(),
4525                         fee_proportional_millionths: u32::max_value(),
4526                         excess_data: Vec::new()
4527                 });
4528                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4529                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4530                         short_channel_id: 2,
4531                         timestamp: 2,
4532                         flags: 0,
4533                         cltv_expiry_delta: (5 << 4) | 3,
4534                         htlc_minimum_msat: 0,
4535                         htlc_maximum_msat: 99_000,
4536                         fee_base_msat: u32::max_value(),
4537                         fee_proportional_millionths: u32::max_value(),
4538                         excess_data: Vec::new()
4539                 });
4540                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
4541                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4542                         short_channel_id: 4,
4543                         timestamp: 2,
4544                         flags: 0,
4545                         cltv_expiry_delta: (4 << 4) | 1,
4546                         htlc_minimum_msat: 0,
4547                         htlc_maximum_msat: MAX_VALUE_MSAT,
4548                         fee_base_msat: 1,
4549                         fee_proportional_millionths: 0,
4550                         excess_data: Vec::new()
4551                 });
4552                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
4553                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4554                         short_channel_id: 13,
4555                         timestamp: 2,
4556                         flags: 0|2, // Channel disabled
4557                         cltv_expiry_delta: (13 << 4) | 1,
4558                         htlc_minimum_msat: 0,
4559                         htlc_maximum_msat: MAX_VALUE_MSAT,
4560                         fee_base_msat: 0,
4561                         fee_proportional_millionths: 2000000,
4562                         excess_data: Vec::new()
4563                 });
4564
4565                 // Get a route for 100 sats and check that we found the MPP route no problem and didn't
4566                 // overpay at all.
4567                 let mut route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
4568                 assert_eq!(route.paths.len(), 2);
4569                 route.paths.sort_by_key(|path| path[0].short_channel_id);
4570                 // Paths are manually ordered ordered by SCID, so:
4571                 // * the first is channel 1 (0 fee, but 99 sat maximum) -> channel 3 -> channel 42
4572                 // * the second is channel 2 (1 msat fee) -> channel 4 -> channel 42
4573                 assert_eq!(route.paths[0][0].short_channel_id, 1);
4574                 assert_eq!(route.paths[0][0].fee_msat, 0);
4575                 assert_eq!(route.paths[0][2].fee_msat, 99_000);
4576                 assert_eq!(route.paths[1][0].short_channel_id, 2);
4577                 assert_eq!(route.paths[1][0].fee_msat, 1);
4578                 assert_eq!(route.paths[1][2].fee_msat, 1_000);
4579                 assert_eq!(route.get_total_fees(), 1);
4580                 assert_eq!(route.get_total_amount(), 100_000);
4581         }
4582
4583         #[test]
4584         fn drop_lowest_channel_mpp_route_test() {
4585                 // This test checks that low-capacity channel is dropped when after
4586                 // path finding we realize that we found more capacity than we need.
4587                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
4588                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4589                 let scorer = ln_test_utils::TestScorer::new();
4590                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4591                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4592                 let config = UserConfig::default();
4593                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42).with_features(channelmanager::provided_invoice_features(&config))
4594                         .with_max_channel_saturation_power_of_half(0);
4595
4596                 // We need a route consisting of 3 paths:
4597                 // From our node to node2 via node0, node7, node1 (three paths one hop each).
4598
4599                 // The first and the second paths should be sufficient, but the third should be
4600                 // cheaper, so that we select it but drop later.
4601
4602                 // First, we set limits on these (previously unlimited) channels.
4603                 // Their aggregate capacity will be 50 + 60 + 20 = 130 sats.
4604
4605                 // Path via node0 is channels {1, 3}. Limit them to 100 and 50 sats (total limit 50);
4606                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4607                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4608                         short_channel_id: 1,
4609                         timestamp: 2,
4610                         flags: 0,
4611                         cltv_expiry_delta: 0,
4612                         htlc_minimum_msat: 0,
4613                         htlc_maximum_msat: 100_000,
4614                         fee_base_msat: 0,
4615                         fee_proportional_millionths: 0,
4616                         excess_data: Vec::new()
4617                 });
4618                 update_channel(&gossip_sync, &secp_ctx, &privkeys[0], UnsignedChannelUpdate {
4619                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4620                         short_channel_id: 3,
4621                         timestamp: 2,
4622                         flags: 0,
4623                         cltv_expiry_delta: 0,
4624                         htlc_minimum_msat: 0,
4625                         htlc_maximum_msat: 50_000,
4626                         fee_base_msat: 100,
4627                         fee_proportional_millionths: 0,
4628                         excess_data: Vec::new()
4629                 });
4630
4631                 // Path via node7 is channels {12, 13}. Limit them to 60 and 60 sats (total limit 60);
4632                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4633                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4634                         short_channel_id: 12,
4635                         timestamp: 2,
4636                         flags: 0,
4637                         cltv_expiry_delta: 0,
4638                         htlc_minimum_msat: 0,
4639                         htlc_maximum_msat: 60_000,
4640                         fee_base_msat: 100,
4641                         fee_proportional_millionths: 0,
4642                         excess_data: Vec::new()
4643                 });
4644                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
4645                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4646                         short_channel_id: 13,
4647                         timestamp: 2,
4648                         flags: 0,
4649                         cltv_expiry_delta: 0,
4650                         htlc_minimum_msat: 0,
4651                         htlc_maximum_msat: 60_000,
4652                         fee_base_msat: 0,
4653                         fee_proportional_millionths: 0,
4654                         excess_data: Vec::new()
4655                 });
4656
4657                 // Path via node1 is channels {2, 4}. Limit them to 20 and 20 sats (total capacity 20 sats).
4658                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4659                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4660                         short_channel_id: 2,
4661                         timestamp: 2,
4662                         flags: 0,
4663                         cltv_expiry_delta: 0,
4664                         htlc_minimum_msat: 0,
4665                         htlc_maximum_msat: 20_000,
4666                         fee_base_msat: 0,
4667                         fee_proportional_millionths: 0,
4668                         excess_data: Vec::new()
4669                 });
4670                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
4671                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4672                         short_channel_id: 4,
4673                         timestamp: 2,
4674                         flags: 0,
4675                         cltv_expiry_delta: 0,
4676                         htlc_minimum_msat: 0,
4677                         htlc_maximum_msat: 20_000,
4678                         fee_base_msat: 0,
4679                         fee_proportional_millionths: 0,
4680                         excess_data: Vec::new()
4681                 });
4682
4683                 {
4684                         // Attempt to route more than available results in a failure.
4685                         if let Err(LightningError{err, action: ErrorAction::IgnoreError}) = get_route(
4686                                         &our_id, &payment_params, &network_graph.read_only(), None, 150_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes) {
4687                                 assert_eq!(err, "Failed to find a sufficient route to the given destination");
4688                         } else { panic!(); }
4689                 }
4690
4691                 {
4692                         // Now, attempt to route 125 sats (just a bit below the capacity of 3 channels).
4693                         // Our algorithm should provide us with these 3 paths.
4694                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 125_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
4695                         assert_eq!(route.paths.len(), 3);
4696                         let mut total_amount_paid_msat = 0;
4697                         for path in &route.paths {
4698                                 assert_eq!(path.len(), 2);
4699                                 assert_eq!(path.last().unwrap().pubkey, nodes[2]);
4700                                 total_amount_paid_msat += path.last().unwrap().fee_msat;
4701                         }
4702                         assert_eq!(total_amount_paid_msat, 125_000);
4703                 }
4704
4705                 {
4706                         // Attempt to route without the last small cheap channel
4707                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 90_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
4708                         assert_eq!(route.paths.len(), 2);
4709                         let mut total_amount_paid_msat = 0;
4710                         for path in &route.paths {
4711                                 assert_eq!(path.len(), 2);
4712                                 assert_eq!(path.last().unwrap().pubkey, nodes[2]);
4713                                 total_amount_paid_msat += path.last().unwrap().fee_msat;
4714                         }
4715                         assert_eq!(total_amount_paid_msat, 90_000);
4716                 }
4717         }
4718
4719         #[test]
4720         fn min_criteria_consistency() {
4721                 // Test that we don't use an inconsistent metric between updating and walking nodes during
4722                 // our Dijkstra's pass. In the initial version of MPP, the "best source" for a given node
4723                 // was updated with a different criterion from the heap sorting, resulting in loops in
4724                 // calculated paths. We test for that specific case here.
4725
4726                 // We construct a network that looks like this:
4727                 //
4728                 //            node2 -1(3)2- node3
4729                 //              2          2
4730                 //               (2)     (4)
4731                 //                  1   1
4732                 //    node1 -1(5)2- node4 -1(1)2- node6
4733                 //    2
4734                 //   (6)
4735                 //        1
4736                 // our_node
4737                 //
4738                 // We create a loop on the side of our real path - our destination is node 6, with a
4739                 // previous hop of node 4. From 4, the cheapest previous path is channel 2 from node 2,
4740                 // followed by node 3 over channel 3. Thereafter, the cheapest next-hop is back to node 4
4741                 // (this time over channel 4). Channel 4 has 0 htlc_minimum_msat whereas channel 1 (the
4742                 // other channel with a previous-hop of node 4) has a high (but irrelevant to the overall
4743                 // payment) htlc_minimum_msat. In the original algorithm, this resulted in node4's
4744                 // "previous hop" being set to node 3, creating a loop in the path.
4745                 let secp_ctx = Secp256k1::new();
4746                 let logger = Arc::new(ln_test_utils::TestLogger::new());
4747                 let network = Arc::new(NetworkGraph::new(Network::Testnet, Arc::clone(&logger)));
4748                 let gossip_sync = P2PGossipSync::new(Arc::clone(&network), None, Arc::clone(&logger));
4749                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4750                 let scorer = ln_test_utils::TestScorer::new();
4751                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4752                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4753                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42);
4754
4755                 add_channel(&gossip_sync, &secp_ctx, &our_privkey, &privkeys[1], ChannelFeatures::from_le_bytes(id_to_feature_flags(6)), 6);
4756                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4757                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4758                         short_channel_id: 6,
4759                         timestamp: 1,
4760                         flags: 0,
4761                         cltv_expiry_delta: (6 << 4) | 0,
4762                         htlc_minimum_msat: 0,
4763                         htlc_maximum_msat: MAX_VALUE_MSAT,
4764                         fee_base_msat: 0,
4765                         fee_proportional_millionths: 0,
4766                         excess_data: Vec::new()
4767                 });
4768                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[1], NodeFeatures::from_le_bytes(id_to_feature_flags(1)), 0);
4769
4770                 add_channel(&gossip_sync, &secp_ctx, &privkeys[1], &privkeys[4], ChannelFeatures::from_le_bytes(id_to_feature_flags(5)), 5);
4771                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
4772                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4773                         short_channel_id: 5,
4774                         timestamp: 1,
4775                         flags: 0,
4776                         cltv_expiry_delta: (5 << 4) | 0,
4777                         htlc_minimum_msat: 0,
4778                         htlc_maximum_msat: MAX_VALUE_MSAT,
4779                         fee_base_msat: 100,
4780                         fee_proportional_millionths: 0,
4781                         excess_data: Vec::new()
4782                 });
4783                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[4], NodeFeatures::from_le_bytes(id_to_feature_flags(4)), 0);
4784
4785                 add_channel(&gossip_sync, &secp_ctx, &privkeys[4], &privkeys[3], ChannelFeatures::from_le_bytes(id_to_feature_flags(4)), 4);
4786                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
4787                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4788                         short_channel_id: 4,
4789                         timestamp: 1,
4790                         flags: 0,
4791                         cltv_expiry_delta: (4 << 4) | 0,
4792                         htlc_minimum_msat: 0,
4793                         htlc_maximum_msat: MAX_VALUE_MSAT,
4794                         fee_base_msat: 0,
4795                         fee_proportional_millionths: 0,
4796                         excess_data: Vec::new()
4797                 });
4798                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[3], NodeFeatures::from_le_bytes(id_to_feature_flags(3)), 0);
4799
4800                 add_channel(&gossip_sync, &secp_ctx, &privkeys[3], &privkeys[2], ChannelFeatures::from_le_bytes(id_to_feature_flags(3)), 3);
4801                 update_channel(&gossip_sync, &secp_ctx, &privkeys[3], UnsignedChannelUpdate {
4802                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4803                         short_channel_id: 3,
4804                         timestamp: 1,
4805                         flags: 0,
4806                         cltv_expiry_delta: (3 << 4) | 0,
4807                         htlc_minimum_msat: 0,
4808                         htlc_maximum_msat: MAX_VALUE_MSAT,
4809                         fee_base_msat: 0,
4810                         fee_proportional_millionths: 0,
4811                         excess_data: Vec::new()
4812                 });
4813                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[2], NodeFeatures::from_le_bytes(id_to_feature_flags(2)), 0);
4814
4815                 add_channel(&gossip_sync, &secp_ctx, &privkeys[2], &privkeys[4], ChannelFeatures::from_le_bytes(id_to_feature_flags(2)), 2);
4816                 update_channel(&gossip_sync, &secp_ctx, &privkeys[2], UnsignedChannelUpdate {
4817                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4818                         short_channel_id: 2,
4819                         timestamp: 1,
4820                         flags: 0,
4821                         cltv_expiry_delta: (2 << 4) | 0,
4822                         htlc_minimum_msat: 0,
4823                         htlc_maximum_msat: MAX_VALUE_MSAT,
4824                         fee_base_msat: 0,
4825                         fee_proportional_millionths: 0,
4826                         excess_data: Vec::new()
4827                 });
4828
4829                 add_channel(&gossip_sync, &secp_ctx, &privkeys[4], &privkeys[6], ChannelFeatures::from_le_bytes(id_to_feature_flags(1)), 1);
4830                 update_channel(&gossip_sync, &secp_ctx, &privkeys[4], UnsignedChannelUpdate {
4831                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4832                         short_channel_id: 1,
4833                         timestamp: 1,
4834                         flags: 0,
4835                         cltv_expiry_delta: (1 << 4) | 0,
4836                         htlc_minimum_msat: 100,
4837                         htlc_maximum_msat: MAX_VALUE_MSAT,
4838                         fee_base_msat: 0,
4839                         fee_proportional_millionths: 0,
4840                         excess_data: Vec::new()
4841                 });
4842                 add_or_update_node(&gossip_sync, &secp_ctx, &privkeys[6], NodeFeatures::from_le_bytes(id_to_feature_flags(6)), 0);
4843
4844                 {
4845                         // Now ensure the route flows simply over nodes 1 and 4 to 6.
4846                         let route = get_route(&our_id, &payment_params, &network.read_only(), None, 10_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
4847                         assert_eq!(route.paths.len(), 1);
4848                         assert_eq!(route.paths[0].len(), 3);
4849
4850                         assert_eq!(route.paths[0][0].pubkey, nodes[1]);
4851                         assert_eq!(route.paths[0][0].short_channel_id, 6);
4852                         assert_eq!(route.paths[0][0].fee_msat, 100);
4853                         assert_eq!(route.paths[0][0].cltv_expiry_delta, (5 << 4) | 0);
4854                         assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(1));
4855                         assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(6));
4856
4857                         assert_eq!(route.paths[0][1].pubkey, nodes[4]);
4858                         assert_eq!(route.paths[0][1].short_channel_id, 5);
4859                         assert_eq!(route.paths[0][1].fee_msat, 0);
4860                         assert_eq!(route.paths[0][1].cltv_expiry_delta, (1 << 4) | 0);
4861                         assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(4));
4862                         assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(5));
4863
4864                         assert_eq!(route.paths[0][2].pubkey, nodes[6]);
4865                         assert_eq!(route.paths[0][2].short_channel_id, 1);
4866                         assert_eq!(route.paths[0][2].fee_msat, 10_000);
4867                         assert_eq!(route.paths[0][2].cltv_expiry_delta, 42);
4868                         assert_eq!(route.paths[0][2].node_features.le_flags(), &id_to_feature_flags(6));
4869                         assert_eq!(route.paths[0][2].channel_features.le_flags(), &id_to_feature_flags(1));
4870                 }
4871         }
4872
4873
4874         #[test]
4875         fn exact_fee_liquidity_limit() {
4876                 // Test that if, while walking the graph, we find a hop that has exactly enough liquidity
4877                 // for us, including later hop fees, we take it. In the first version of our MPP algorithm
4878                 // we calculated fees on a higher value, resulting in us ignoring such paths.
4879                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
4880                 let (our_privkey, our_id, _, nodes) = get_nodes(&secp_ctx);
4881                 let scorer = ln_test_utils::TestScorer::new();
4882                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4883                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4884                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42);
4885
4886                 // We modify the graph to set the htlc_maximum of channel 2 to below the value we wish to
4887                 // send.
4888                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4889                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4890                         short_channel_id: 2,
4891                         timestamp: 2,
4892                         flags: 0,
4893                         cltv_expiry_delta: 0,
4894                         htlc_minimum_msat: 0,
4895                         htlc_maximum_msat: 85_000,
4896                         fee_base_msat: 0,
4897                         fee_proportional_millionths: 0,
4898                         excess_data: Vec::new()
4899                 });
4900
4901                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4902                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4903                         short_channel_id: 12,
4904                         timestamp: 2,
4905                         flags: 0,
4906                         cltv_expiry_delta: (4 << 4) | 1,
4907                         htlc_minimum_msat: 0,
4908                         htlc_maximum_msat: 270_000,
4909                         fee_base_msat: 0,
4910                         fee_proportional_millionths: 1000000,
4911                         excess_data: Vec::new()
4912                 });
4913
4914                 {
4915                         // Now, attempt to route 90 sats, which is exactly 90 sats at the last hop, plus the
4916                         // 200% fee charged channel 13 in the 1-to-2 direction.
4917                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 90_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
4918                         assert_eq!(route.paths.len(), 1);
4919                         assert_eq!(route.paths[0].len(), 2);
4920
4921                         assert_eq!(route.paths[0][0].pubkey, nodes[7]);
4922                         assert_eq!(route.paths[0][0].short_channel_id, 12);
4923                         assert_eq!(route.paths[0][0].fee_msat, 90_000*2);
4924                         assert_eq!(route.paths[0][0].cltv_expiry_delta, (13 << 4) | 1);
4925                         assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(8));
4926                         assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(12));
4927
4928                         assert_eq!(route.paths[0][1].pubkey, nodes[2]);
4929                         assert_eq!(route.paths[0][1].short_channel_id, 13);
4930                         assert_eq!(route.paths[0][1].fee_msat, 90_000);
4931                         assert_eq!(route.paths[0][1].cltv_expiry_delta, 42);
4932                         assert_eq!(route.paths[0][1].node_features.le_flags(), &id_to_feature_flags(3));
4933                         assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(13));
4934                 }
4935         }
4936
4937         #[test]
4938         fn htlc_max_reduction_below_min() {
4939                 // Test that if, while walking the graph, we reduce the value being sent to meet an
4940                 // htlc_maximum_msat, we don't end up undershooting a later htlc_minimum_msat. In the
4941                 // initial version of MPP we'd accept such routes but reject them while recalculating fees,
4942                 // resulting in us thinking there is no possible path, even if other paths exist.
4943                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
4944                 let (our_privkey, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
4945                 let scorer = ln_test_utils::TestScorer::new();
4946                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
4947                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
4948                 let config = UserConfig::default();
4949                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42).with_features(channelmanager::provided_invoice_features(&config));
4950
4951                 // We modify the graph to set the htlc_minimum of channel 2 and 4 as needed - channel 2
4952                 // gets an htlc_maximum_msat of 80_000 and channel 4 an htlc_minimum_msat of 90_000. We
4953                 // then try to send 90_000.
4954                 update_channel(&gossip_sync, &secp_ctx, &our_privkey, UnsignedChannelUpdate {
4955                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4956                         short_channel_id: 2,
4957                         timestamp: 2,
4958                         flags: 0,
4959                         cltv_expiry_delta: 0,
4960                         htlc_minimum_msat: 0,
4961                         htlc_maximum_msat: 80_000,
4962                         fee_base_msat: 0,
4963                         fee_proportional_millionths: 0,
4964                         excess_data: Vec::new()
4965                 });
4966                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
4967                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
4968                         short_channel_id: 4,
4969                         timestamp: 2,
4970                         flags: 0,
4971                         cltv_expiry_delta: (4 << 4) | 1,
4972                         htlc_minimum_msat: 90_000,
4973                         htlc_maximum_msat: MAX_VALUE_MSAT,
4974                         fee_base_msat: 0,
4975                         fee_proportional_millionths: 0,
4976                         excess_data: Vec::new()
4977                 });
4978
4979                 {
4980                         // Now, attempt to route 90 sats, hitting the htlc_minimum on channel 4, but
4981                         // overshooting the htlc_maximum on channel 2. Thus, we should pick the (absurdly
4982                         // expensive) channels 12-13 path.
4983                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 90_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
4984                         assert_eq!(route.paths.len(), 1);
4985                         assert_eq!(route.paths[0].len(), 2);
4986
4987                         assert_eq!(route.paths[0][0].pubkey, nodes[7]);
4988                         assert_eq!(route.paths[0][0].short_channel_id, 12);
4989                         assert_eq!(route.paths[0][0].fee_msat, 90_000*2);
4990                         assert_eq!(route.paths[0][0].cltv_expiry_delta, (13 << 4) | 1);
4991                         assert_eq!(route.paths[0][0].node_features.le_flags(), &id_to_feature_flags(8));
4992                         assert_eq!(route.paths[0][0].channel_features.le_flags(), &id_to_feature_flags(12));
4993
4994                         assert_eq!(route.paths[0][1].pubkey, nodes[2]);
4995                         assert_eq!(route.paths[0][1].short_channel_id, 13);
4996                         assert_eq!(route.paths[0][1].fee_msat, 90_000);
4997                         assert_eq!(route.paths[0][1].cltv_expiry_delta, 42);
4998                         assert_eq!(route.paths[0][1].node_features.le_flags(), channelmanager::provided_invoice_features(&config).le_flags());
4999                         assert_eq!(route.paths[0][1].channel_features.le_flags(), &id_to_feature_flags(13));
5000                 }
5001         }
5002
5003         #[test]
5004         fn multiple_direct_first_hops() {
5005                 // Previously we'd only ever considered one first hop path per counterparty.
5006                 // However, as we don't restrict users to one channel per peer, we really need to support
5007                 // looking at all first hop paths.
5008                 // Here we test that we do not ignore all-but-the-last first hop paths per counterparty (as
5009                 // we used to do by overwriting the `first_hop_targets` hashmap entry) and that we can MPP
5010                 // route over multiple channels with the same first hop.
5011                 let secp_ctx = Secp256k1::new();
5012                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5013                 let logger = Arc::new(ln_test_utils::TestLogger::new());
5014                 let network_graph = NetworkGraph::new(Network::Testnet, Arc::clone(&logger));
5015                 let scorer = ln_test_utils::TestScorer::new();
5016                 let config = UserConfig::default();
5017                 let payment_params = PaymentParameters::from_node_id(nodes[0], 42).with_features(channelmanager::provided_invoice_features(&config));
5018                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5019                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5020
5021                 {
5022                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), Some(&[
5023                                 &get_channel_details(Some(3), nodes[0], channelmanager::provided_init_features(&config), 200_000),
5024                                 &get_channel_details(Some(2), nodes[0], channelmanager::provided_init_features(&config), 10_000),
5025                         ]), 100_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
5026                         assert_eq!(route.paths.len(), 1);
5027                         assert_eq!(route.paths[0].len(), 1);
5028
5029                         assert_eq!(route.paths[0][0].pubkey, nodes[0]);
5030                         assert_eq!(route.paths[0][0].short_channel_id, 3);
5031                         assert_eq!(route.paths[0][0].fee_msat, 100_000);
5032                 }
5033                 {
5034                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), Some(&[
5035                                 &get_channel_details(Some(3), nodes[0], channelmanager::provided_init_features(&config), 50_000),
5036                                 &get_channel_details(Some(2), nodes[0], channelmanager::provided_init_features(&config), 50_000),
5037                         ]), 100_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
5038                         assert_eq!(route.paths.len(), 2);
5039                         assert_eq!(route.paths[0].len(), 1);
5040                         assert_eq!(route.paths[1].len(), 1);
5041
5042                         assert!((route.paths[0][0].short_channel_id == 3 && route.paths[1][0].short_channel_id == 2) ||
5043                                 (route.paths[0][0].short_channel_id == 2 && route.paths[1][0].short_channel_id == 3));
5044
5045                         assert_eq!(route.paths[0][0].pubkey, nodes[0]);
5046                         assert_eq!(route.paths[0][0].fee_msat, 50_000);
5047
5048                         assert_eq!(route.paths[1][0].pubkey, nodes[0]);
5049                         assert_eq!(route.paths[1][0].fee_msat, 50_000);
5050                 }
5051
5052                 {
5053                         // If we have a bunch of outbound channels to the same node, where most are not
5054                         // sufficient to pay the full payment, but one is, we should default to just using the
5055                         // one single channel that has sufficient balance, avoiding MPP.
5056                         //
5057                         // If we have several options above the 3xpayment value threshold, we should pick the
5058                         // smallest of them, avoiding further fragmenting our available outbound balance to
5059                         // this node.
5060                         let route = get_route(&our_id, &payment_params, &network_graph.read_only(), Some(&[
5061                                 &get_channel_details(Some(2), nodes[0], channelmanager::provided_init_features(&config), 50_000),
5062                                 &get_channel_details(Some(3), nodes[0], channelmanager::provided_init_features(&config), 50_000),
5063                                 &get_channel_details(Some(5), nodes[0], channelmanager::provided_init_features(&config), 50_000),
5064                                 &get_channel_details(Some(6), nodes[0], channelmanager::provided_init_features(&config), 300_000),
5065                                 &get_channel_details(Some(7), nodes[0], channelmanager::provided_init_features(&config), 50_000),
5066                                 &get_channel_details(Some(8), nodes[0], channelmanager::provided_init_features(&config), 50_000),
5067                                 &get_channel_details(Some(9), nodes[0], channelmanager::provided_init_features(&config), 50_000),
5068                                 &get_channel_details(Some(4), nodes[0], channelmanager::provided_init_features(&config), 1_000_000),
5069                         ]), 100_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
5070                         assert_eq!(route.paths.len(), 1);
5071                         assert_eq!(route.paths[0].len(), 1);
5072
5073                         assert_eq!(route.paths[0][0].pubkey, nodes[0]);
5074                         assert_eq!(route.paths[0][0].short_channel_id, 6);
5075                         assert_eq!(route.paths[0][0].fee_msat, 100_000);
5076                 }
5077         }
5078
5079         #[test]
5080         fn prefers_shorter_route_with_higher_fees() {
5081                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
5082                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5083                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops(&nodes));
5084
5085                 // Without penalizing each hop 100 msats, a longer path with lower fees is chosen.
5086                 let scorer = ln_test_utils::TestScorer::new();
5087                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5088                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5089                 let route = get_route(
5090                         &our_id, &payment_params, &network_graph.read_only(), None, 100, 42,
5091                         Arc::clone(&logger), &scorer, &random_seed_bytes
5092                 ).unwrap();
5093                 let path = route.paths[0].iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
5094
5095                 assert_eq!(route.get_total_fees(), 100);
5096                 assert_eq!(route.get_total_amount(), 100);
5097                 assert_eq!(path, vec![2, 4, 6, 11, 8]);
5098
5099                 // Applying a 100 msat penalty to each hop results in taking channels 7 and 10 to nodes[6]
5100                 // from nodes[2] rather than channel 6, 11, and 8, even though the longer path is cheaper.
5101                 let scorer = FixedPenaltyScorer::with_penalty(100);
5102                 let route = get_route(
5103                         &our_id, &payment_params, &network_graph.read_only(), None, 100, 42,
5104                         Arc::clone(&logger), &scorer, &random_seed_bytes
5105                 ).unwrap();
5106                 let path = route.paths[0].iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
5107
5108                 assert_eq!(route.get_total_fees(), 300);
5109                 assert_eq!(route.get_total_amount(), 100);
5110                 assert_eq!(path, vec![2, 4, 7, 10]);
5111         }
5112
5113         struct BadChannelScorer {
5114                 short_channel_id: u64,
5115         }
5116
5117         #[cfg(c_bindings)]
5118         impl Writeable for BadChannelScorer {
5119                 fn write<W: Writer>(&self, _w: &mut W) -> Result<(), crate::io::Error> { unimplemented!() }
5120         }
5121         impl Score for BadChannelScorer {
5122                 fn channel_penalty_msat(&self, short_channel_id: u64, _: &NodeId, _: &NodeId, _: ChannelUsage) -> u64 {
5123                         if short_channel_id == self.short_channel_id { u64::max_value() } else { 0 }
5124                 }
5125
5126                 fn payment_path_failed(&mut self, _path: &[&RouteHop], _short_channel_id: u64) {}
5127                 fn payment_path_successful(&mut self, _path: &[&RouteHop]) {}
5128                 fn probe_failed(&mut self, _path: &[&RouteHop], _short_channel_id: u64) {}
5129                 fn probe_successful(&mut self, _path: &[&RouteHop]) {}
5130         }
5131
5132         struct BadNodeScorer {
5133                 node_id: NodeId,
5134         }
5135
5136         #[cfg(c_bindings)]
5137         impl Writeable for BadNodeScorer {
5138                 fn write<W: Writer>(&self, _w: &mut W) -> Result<(), crate::io::Error> { unimplemented!() }
5139         }
5140
5141         impl Score for BadNodeScorer {
5142                 fn channel_penalty_msat(&self, _: u64, _: &NodeId, target: &NodeId, _: ChannelUsage) -> u64 {
5143                         if *target == self.node_id { u64::max_value() } else { 0 }
5144                 }
5145
5146                 fn payment_path_failed(&mut self, _path: &[&RouteHop], _short_channel_id: u64) {}
5147                 fn payment_path_successful(&mut self, _path: &[&RouteHop]) {}
5148                 fn probe_failed(&mut self, _path: &[&RouteHop], _short_channel_id: u64) {}
5149                 fn probe_successful(&mut self, _path: &[&RouteHop]) {}
5150         }
5151
5152         #[test]
5153         fn avoids_routing_through_bad_channels_and_nodes() {
5154                 let (secp_ctx, network, _, _, logger) = build_graph();
5155                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5156                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops(&nodes));
5157                 let network_graph = network.read_only();
5158
5159                 // A path to nodes[6] exists when no penalties are applied to any channel.
5160                 let scorer = ln_test_utils::TestScorer::new();
5161                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5162                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5163                 let route = get_route(
5164                         &our_id, &payment_params, &network_graph, None, 100, 42,
5165                         Arc::clone(&logger), &scorer, &random_seed_bytes
5166                 ).unwrap();
5167                 let path = route.paths[0].iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
5168
5169                 assert_eq!(route.get_total_fees(), 100);
5170                 assert_eq!(route.get_total_amount(), 100);
5171                 assert_eq!(path, vec![2, 4, 6, 11, 8]);
5172
5173                 // A different path to nodes[6] exists if channel 6 cannot be routed over.
5174                 let scorer = BadChannelScorer { short_channel_id: 6 };
5175                 let route = get_route(
5176                         &our_id, &payment_params, &network_graph, None, 100, 42,
5177                         Arc::clone(&logger), &scorer, &random_seed_bytes
5178                 ).unwrap();
5179                 let path = route.paths[0].iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
5180
5181                 assert_eq!(route.get_total_fees(), 300);
5182                 assert_eq!(route.get_total_amount(), 100);
5183                 assert_eq!(path, vec![2, 4, 7, 10]);
5184
5185                 // A path to nodes[6] does not exist if nodes[2] cannot be routed through.
5186                 let scorer = BadNodeScorer { node_id: NodeId::from_pubkey(&nodes[2]) };
5187                 match get_route(
5188                         &our_id, &payment_params, &network_graph, None, 100, 42,
5189                         Arc::clone(&logger), &scorer, &random_seed_bytes
5190                 ) {
5191                         Err(LightningError { err, .. } ) => {
5192                                 assert_eq!(err, "Failed to find a path to the given destination");
5193                         },
5194                         Ok(_) => panic!("Expected error"),
5195                 }
5196         }
5197
5198         #[test]
5199         fn total_fees_single_path() {
5200                 let route = Route {
5201                         paths: vec![vec![
5202                                 RouteHop {
5203                                         pubkey: PublicKey::from_slice(&hex::decode("02eec7245d6b7d2ccb30380bfbe2a3648cd7a942653f5aa340edcea1f283686619").unwrap()[..]).unwrap(),
5204                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
5205                                         short_channel_id: 0, fee_msat: 100, cltv_expiry_delta: 0
5206                                 },
5207                                 RouteHop {
5208                                         pubkey: PublicKey::from_slice(&hex::decode("0324653eac434488002cc06bbfb7f10fe18991e35f9fe4302dbea6d2353dc0ab1c").unwrap()[..]).unwrap(),
5209                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
5210                                         short_channel_id: 0, fee_msat: 150, cltv_expiry_delta: 0
5211                                 },
5212                                 RouteHop {
5213                                         pubkey: PublicKey::from_slice(&hex::decode("027f31ebc5462c1fdce1b737ecff52d37d75dea43ce11c74d25aa297165faa2007").unwrap()[..]).unwrap(),
5214                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
5215                                         short_channel_id: 0, fee_msat: 225, cltv_expiry_delta: 0
5216                                 },
5217                         ]],
5218                         payment_params: None,
5219                 };
5220
5221                 assert_eq!(route.get_total_fees(), 250);
5222                 assert_eq!(route.get_total_amount(), 225);
5223         }
5224
5225         #[test]
5226         fn total_fees_multi_path() {
5227                 let route = Route {
5228                         paths: vec![vec![
5229                                 RouteHop {
5230                                         pubkey: PublicKey::from_slice(&hex::decode("02eec7245d6b7d2ccb30380bfbe2a3648cd7a942653f5aa340edcea1f283686619").unwrap()[..]).unwrap(),
5231                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
5232                                         short_channel_id: 0, fee_msat: 100, cltv_expiry_delta: 0
5233                                 },
5234                                 RouteHop {
5235                                         pubkey: PublicKey::from_slice(&hex::decode("0324653eac434488002cc06bbfb7f10fe18991e35f9fe4302dbea6d2353dc0ab1c").unwrap()[..]).unwrap(),
5236                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
5237                                         short_channel_id: 0, fee_msat: 150, cltv_expiry_delta: 0
5238                                 },
5239                         ],vec![
5240                                 RouteHop {
5241                                         pubkey: PublicKey::from_slice(&hex::decode("02eec7245d6b7d2ccb30380bfbe2a3648cd7a942653f5aa340edcea1f283686619").unwrap()[..]).unwrap(),
5242                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
5243                                         short_channel_id: 0, fee_msat: 100, cltv_expiry_delta: 0
5244                                 },
5245                                 RouteHop {
5246                                         pubkey: PublicKey::from_slice(&hex::decode("0324653eac434488002cc06bbfb7f10fe18991e35f9fe4302dbea6d2353dc0ab1c").unwrap()[..]).unwrap(),
5247                                         channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
5248                                         short_channel_id: 0, fee_msat: 150, cltv_expiry_delta: 0
5249                                 },
5250                         ]],
5251                         payment_params: None,
5252                 };
5253
5254                 assert_eq!(route.get_total_fees(), 200);
5255                 assert_eq!(route.get_total_amount(), 300);
5256         }
5257
5258         #[test]
5259         fn total_empty_route_no_panic() {
5260                 // In an earlier version of `Route::get_total_fees` and `Route::get_total_amount`, they
5261                 // would both panic if the route was completely empty. We test to ensure they return 0
5262                 // here, even though its somewhat nonsensical as a route.
5263                 let route = Route { paths: Vec::new(), payment_params: None };
5264
5265                 assert_eq!(route.get_total_fees(), 0);
5266                 assert_eq!(route.get_total_amount(), 0);
5267         }
5268
5269         #[test]
5270         fn limits_total_cltv_delta() {
5271                 let (secp_ctx, network, _, _, logger) = build_graph();
5272                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5273                 let network_graph = network.read_only();
5274
5275                 let scorer = ln_test_utils::TestScorer::new();
5276
5277                 // Make sure that generally there is at least one route available
5278                 let feasible_max_total_cltv_delta = 1008;
5279                 let feasible_payment_params = PaymentParameters::from_node_id(nodes[6], 0).with_route_hints(last_hops(&nodes))
5280                         .with_max_total_cltv_expiry_delta(feasible_max_total_cltv_delta);
5281                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5282                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5283                 let route = get_route(&our_id, &feasible_payment_params, &network_graph, None, 100, 0, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
5284                 let path = route.paths[0].iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
5285                 assert_ne!(path.len(), 0);
5286
5287                 // But not if we exclude all paths on the basis of their accumulated CLTV delta
5288                 let fail_max_total_cltv_delta = 23;
5289                 let fail_payment_params = PaymentParameters::from_node_id(nodes[6], 0).with_route_hints(last_hops(&nodes))
5290                         .with_max_total_cltv_expiry_delta(fail_max_total_cltv_delta);
5291                 match get_route(&our_id, &fail_payment_params, &network_graph, None, 100, 0, Arc::clone(&logger), &scorer, &random_seed_bytes)
5292                 {
5293                         Err(LightningError { err, .. } ) => {
5294                                 assert_eq!(err, "Failed to find a path to the given destination");
5295                         },
5296                         Ok(_) => panic!("Expected error"),
5297                 }
5298         }
5299
5300         #[test]
5301         fn avoids_recently_failed_paths() {
5302                 // Ensure that the router always avoids all of the `previously_failed_channels` channels by
5303                 // randomly inserting channels into it until we can't find a route anymore.
5304                 let (secp_ctx, network, _, _, logger) = build_graph();
5305                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5306                 let network_graph = network.read_only();
5307
5308                 let scorer = ln_test_utils::TestScorer::new();
5309                 let mut payment_params = PaymentParameters::from_node_id(nodes[6], 0).with_route_hints(last_hops(&nodes))
5310                         .with_max_path_count(1);
5311                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5312                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5313
5314                 // We should be able to find a route initially, and then after we fail a few random
5315                 // channels eventually we won't be able to any longer.
5316                 assert!(get_route(&our_id, &payment_params, &network_graph, None, 100, 0, Arc::clone(&logger), &scorer, &random_seed_bytes).is_ok());
5317                 loop {
5318                         if let Ok(route) = get_route(&our_id, &payment_params, &network_graph, None, 100, 0, Arc::clone(&logger), &scorer, &random_seed_bytes) {
5319                                 for chan in route.paths[0].iter() {
5320                                         assert!(!payment_params.previously_failed_channels.contains(&chan.short_channel_id));
5321                                 }
5322                                 let victim = (u64::from_ne_bytes(random_seed_bytes[0..8].try_into().unwrap()) as usize)
5323                                         % route.paths[0].len();
5324                                 payment_params.previously_failed_channels.push(route.paths[0][victim].short_channel_id);
5325                         } else { break; }
5326                 }
5327         }
5328
5329         #[test]
5330         fn limits_path_length() {
5331                 let (secp_ctx, network, _, _, logger) = build_line_graph();
5332                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5333                 let network_graph = network.read_only();
5334
5335                 let scorer = ln_test_utils::TestScorer::new();
5336                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5337                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5338
5339                 // First check we can actually create a long route on this graph.
5340                 let feasible_payment_params = PaymentParameters::from_node_id(nodes[18], 0);
5341                 let route = get_route(&our_id, &feasible_payment_params, &network_graph, None, 100, 0,
5342                         Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
5343                 let path = route.paths[0].iter().map(|hop| hop.short_channel_id).collect::<Vec<_>>();
5344                 assert!(path.len() == MAX_PATH_LENGTH_ESTIMATE.into());
5345
5346                 // But we can't create a path surpassing the MAX_PATH_LENGTH_ESTIMATE limit.
5347                 let fail_payment_params = PaymentParameters::from_node_id(nodes[19], 0);
5348                 match get_route(&our_id, &fail_payment_params, &network_graph, None, 100, 0,
5349                         Arc::clone(&logger), &scorer, &random_seed_bytes)
5350                 {
5351                         Err(LightningError { err, .. } ) => {
5352                                 assert_eq!(err, "Failed to find a path to the given destination");
5353                         },
5354                         Ok(_) => panic!("Expected error"),
5355                 }
5356         }
5357
5358         #[test]
5359         fn adds_and_limits_cltv_offset() {
5360                 let (secp_ctx, network_graph, _, _, logger) = build_graph();
5361                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5362
5363                 let scorer = ln_test_utils::TestScorer::new();
5364
5365                 let payment_params = PaymentParameters::from_node_id(nodes[6], 42).with_route_hints(last_hops(&nodes));
5366                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5367                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5368                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
5369                 assert_eq!(route.paths.len(), 1);
5370
5371                 let cltv_expiry_deltas_before = route.paths[0].iter().map(|h| h.cltv_expiry_delta).collect::<Vec<u32>>();
5372
5373                 // Check whether the offset added to the last hop by default is in [1 .. DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA]
5374                 let mut route_default = route.clone();
5375                 add_random_cltv_offset(&mut route_default, &payment_params, &network_graph.read_only(), &random_seed_bytes);
5376                 let cltv_expiry_deltas_default = route_default.paths[0].iter().map(|h| h.cltv_expiry_delta).collect::<Vec<u32>>();
5377                 assert_eq!(cltv_expiry_deltas_before.split_last().unwrap().1, cltv_expiry_deltas_default.split_last().unwrap().1);
5378                 assert!(cltv_expiry_deltas_default.last() > cltv_expiry_deltas_before.last());
5379                 assert!(cltv_expiry_deltas_default.last().unwrap() <= &DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA);
5380
5381                 // Check that no offset is added when we restrict the max_total_cltv_expiry_delta
5382                 let mut route_limited = route.clone();
5383                 let limited_max_total_cltv_expiry_delta = cltv_expiry_deltas_before.iter().sum();
5384                 let limited_payment_params = payment_params.with_max_total_cltv_expiry_delta(limited_max_total_cltv_expiry_delta);
5385                 add_random_cltv_offset(&mut route_limited, &limited_payment_params, &network_graph.read_only(), &random_seed_bytes);
5386                 let cltv_expiry_deltas_limited = route_limited.paths[0].iter().map(|h| h.cltv_expiry_delta).collect::<Vec<u32>>();
5387                 assert_eq!(cltv_expiry_deltas_before, cltv_expiry_deltas_limited);
5388         }
5389
5390         #[test]
5391         fn adds_plausible_cltv_offset() {
5392                 let (secp_ctx, network, _, _, logger) = build_graph();
5393                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5394                 let network_graph = network.read_only();
5395                 let network_nodes = network_graph.nodes();
5396                 let network_channels = network_graph.channels();
5397                 let scorer = ln_test_utils::TestScorer::new();
5398                 let payment_params = PaymentParameters::from_node_id(nodes[3], 0);
5399                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[4u8; 32], Network::Testnet);
5400                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5401
5402                 let mut route = get_route(&our_id, &payment_params, &network_graph, None, 100, 0,
5403                                                                   Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
5404                 add_random_cltv_offset(&mut route, &payment_params, &network_graph, &random_seed_bytes);
5405
5406                 let mut path_plausibility = vec![];
5407
5408                 for p in route.paths {
5409                         // 1. Select random observation point
5410                         let mut prng = ChaCha20::new(&random_seed_bytes, &[0u8; 12]);
5411                         let mut random_bytes = [0u8; ::core::mem::size_of::<usize>()];
5412
5413                         prng.process_in_place(&mut random_bytes);
5414                         let random_path_index = usize::from_be_bytes(random_bytes).wrapping_rem(p.len());
5415                         let observation_point = NodeId::from_pubkey(&p.get(random_path_index).unwrap().pubkey);
5416
5417                         // 2. Calculate what CLTV expiry delta we would observe there
5418                         let observed_cltv_expiry_delta: u32 = p[random_path_index..].iter().map(|h| h.cltv_expiry_delta).sum();
5419
5420                         // 3. Starting from the observation point, find candidate paths
5421                         let mut candidates: VecDeque<(NodeId, Vec<u32>)> = VecDeque::new();
5422                         candidates.push_back((observation_point, vec![]));
5423
5424                         let mut found_plausible_candidate = false;
5425
5426                         'candidate_loop: while let Some((cur_node_id, cur_path_cltv_deltas)) = candidates.pop_front() {
5427                                 if let Some(remaining) = observed_cltv_expiry_delta.checked_sub(cur_path_cltv_deltas.iter().sum::<u32>()) {
5428                                         if remaining == 0 || remaining.wrapping_rem(40) == 0 || remaining.wrapping_rem(144) == 0 {
5429                                                 found_plausible_candidate = true;
5430                                                 break 'candidate_loop;
5431                                         }
5432                                 }
5433
5434                                 if let Some(cur_node) = network_nodes.get(&cur_node_id) {
5435                                         for channel_id in &cur_node.channels {
5436                                                 if let Some(channel_info) = network_channels.get(&channel_id) {
5437                                                         if let Some((dir_info, next_id)) = channel_info.as_directed_from(&cur_node_id) {
5438                                                                 let next_cltv_expiry_delta = dir_info.direction().cltv_expiry_delta as u32;
5439                                                                 if cur_path_cltv_deltas.iter().sum::<u32>()
5440                                                                         .saturating_add(next_cltv_expiry_delta) <= observed_cltv_expiry_delta {
5441                                                                         let mut new_path_cltv_deltas = cur_path_cltv_deltas.clone();
5442                                                                         new_path_cltv_deltas.push(next_cltv_expiry_delta);
5443                                                                         candidates.push_back((*next_id, new_path_cltv_deltas));
5444                                                                 }
5445                                                         }
5446                                                 }
5447                                         }
5448                                 }
5449                         }
5450
5451                         path_plausibility.push(found_plausible_candidate);
5452                 }
5453                 assert!(path_plausibility.iter().all(|x| *x));
5454         }
5455
5456         #[test]
5457         fn builds_correct_path_from_hops() {
5458                 let (secp_ctx, network, _, _, logger) = build_graph();
5459                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5460                 let network_graph = network.read_only();
5461
5462                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5463                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5464
5465                 let payment_params = PaymentParameters::from_node_id(nodes[3], 0);
5466                 let hops = [nodes[1], nodes[2], nodes[4], nodes[3]];
5467                 let route = build_route_from_hops_internal(&our_id, &hops, &payment_params,
5468                          &network_graph, 100, 0, Arc::clone(&logger), &random_seed_bytes).unwrap();
5469                 let route_hop_pubkeys = route.paths[0].iter().map(|hop| hop.pubkey).collect::<Vec<_>>();
5470                 assert_eq!(hops.len(), route.paths[0].len());
5471                 for (idx, hop_pubkey) in hops.iter().enumerate() {
5472                         assert!(*hop_pubkey == route_hop_pubkeys[idx]);
5473                 }
5474         }
5475
5476         #[test]
5477         fn avoids_saturating_channels() {
5478                 let (secp_ctx, network_graph, gossip_sync, _, logger) = build_graph();
5479                 let (_, our_id, privkeys, nodes) = get_nodes(&secp_ctx);
5480
5481                 let scorer = ProbabilisticScorer::new(Default::default(), &*network_graph, Arc::clone(&logger));
5482
5483                 // Set the fee on channel 13 to 100% to match channel 4 giving us two equivalent paths (us
5484                 // -> node 7 -> node2 and us -> node 1 -> node 2) which we should balance over.
5485                 update_channel(&gossip_sync, &secp_ctx, &privkeys[1], UnsignedChannelUpdate {
5486                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
5487                         short_channel_id: 4,
5488                         timestamp: 2,
5489                         flags: 0,
5490                         cltv_expiry_delta: (4 << 4) | 1,
5491                         htlc_minimum_msat: 0,
5492                         htlc_maximum_msat: 250_000_000,
5493                         fee_base_msat: 0,
5494                         fee_proportional_millionths: 0,
5495                         excess_data: Vec::new()
5496                 });
5497                 update_channel(&gossip_sync, &secp_ctx, &privkeys[7], UnsignedChannelUpdate {
5498                         chain_hash: genesis_block(Network::Testnet).header.block_hash(),
5499                         short_channel_id: 13,
5500                         timestamp: 2,
5501                         flags: 0,
5502                         cltv_expiry_delta: (13 << 4) | 1,
5503                         htlc_minimum_msat: 0,
5504                         htlc_maximum_msat: 250_000_000,
5505                         fee_base_msat: 0,
5506                         fee_proportional_millionths: 0,
5507                         excess_data: Vec::new()
5508                 });
5509
5510                 let config = UserConfig::default();
5511                 let payment_params = PaymentParameters::from_node_id(nodes[2], 42).with_features(channelmanager::provided_invoice_features(&config));
5512                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5513                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5514                 // 100,000 sats is less than the available liquidity on each channel, set above.
5515                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100_000_000, 42, Arc::clone(&logger), &scorer, &random_seed_bytes).unwrap();
5516                 assert_eq!(route.paths.len(), 2);
5517                 assert!((route.paths[0][1].short_channel_id == 4 && route.paths[1][1].short_channel_id == 13) ||
5518                         (route.paths[1][1].short_channel_id == 4 && route.paths[0][1].short_channel_id == 13));
5519         }
5520
5521         #[cfg(not(feature = "no-std"))]
5522         pub(super) fn random_init_seed() -> u64 {
5523                 // Because the default HashMap in std pulls OS randomness, we can use it as a (bad) RNG.
5524                 use core::hash::{BuildHasher, Hasher};
5525                 let seed = std::collections::hash_map::RandomState::new().build_hasher().finish();
5526                 println!("Using seed of {}", seed);
5527                 seed
5528         }
5529         #[cfg(not(feature = "no-std"))]
5530         use crate::util::ser::ReadableArgs;
5531
5532         #[test]
5533         #[cfg(not(feature = "no-std"))]
5534         fn generate_routes() {
5535                 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringParameters};
5536
5537                 let mut d = match super::bench_utils::get_route_file() {
5538                         Ok(f) => f,
5539                         Err(e) => {
5540                                 eprintln!("{}", e);
5541                                 return;
5542                         },
5543                 };
5544                 let logger = ln_test_utils::TestLogger::new();
5545                 let graph = NetworkGraph::read(&mut d, &logger).unwrap();
5546                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5547                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5548
5549                 // First, get 100 (source, destination) pairs for which route-getting actually succeeds...
5550                 let mut seed = random_init_seed() as usize;
5551                 let nodes = graph.read_only().nodes().clone();
5552                 'load_endpoints: for _ in 0..10 {
5553                         loop {
5554                                 seed = seed.overflowing_mul(0xdeadbeef).0;
5555                                 let src = &PublicKey::from_slice(nodes.unordered_keys().skip(seed % nodes.len()).next().unwrap().as_slice()).unwrap();
5556                                 seed = seed.overflowing_mul(0xdeadbeef).0;
5557                                 let dst = PublicKey::from_slice(nodes.unordered_keys().skip(seed % nodes.len()).next().unwrap().as_slice()).unwrap();
5558                                 let payment_params = PaymentParameters::from_node_id(dst, 42);
5559                                 let amt = seed as u64 % 200_000_000;
5560                                 let params = ProbabilisticScoringParameters::default();
5561                                 let scorer = ProbabilisticScorer::new(params, &graph, &logger);
5562                                 if get_route(src, &payment_params, &graph.read_only(), None, amt, 42, &logger, &scorer, &random_seed_bytes).is_ok() {
5563                                         continue 'load_endpoints;
5564                                 }
5565                         }
5566                 }
5567         }
5568
5569         #[test]
5570         #[cfg(not(feature = "no-std"))]
5571         fn generate_routes_mpp() {
5572                 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringParameters};
5573
5574                 let mut d = match super::bench_utils::get_route_file() {
5575                         Ok(f) => f,
5576                         Err(e) => {
5577                                 eprintln!("{}", e);
5578                                 return;
5579                         },
5580                 };
5581                 let logger = ln_test_utils::TestLogger::new();
5582                 let graph = NetworkGraph::read(&mut d, &logger).unwrap();
5583                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5584                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5585                 let config = UserConfig::default();
5586
5587                 // First, get 100 (source, destination) pairs for which route-getting actually succeeds...
5588                 let mut seed = random_init_seed() as usize;
5589                 let nodes = graph.read_only().nodes().clone();
5590                 'load_endpoints: for _ in 0..10 {
5591                         loop {
5592                                 seed = seed.overflowing_mul(0xdeadbeef).0;
5593                                 let src = &PublicKey::from_slice(nodes.unordered_keys().skip(seed % nodes.len()).next().unwrap().as_slice()).unwrap();
5594                                 seed = seed.overflowing_mul(0xdeadbeef).0;
5595                                 let dst = PublicKey::from_slice(nodes.unordered_keys().skip(seed % nodes.len()).next().unwrap().as_slice()).unwrap();
5596                                 let payment_params = PaymentParameters::from_node_id(dst, 42).with_features(channelmanager::provided_invoice_features(&config));
5597                                 let amt = seed as u64 % 200_000_000;
5598                                 let params = ProbabilisticScoringParameters::default();
5599                                 let scorer = ProbabilisticScorer::new(params, &graph, &logger);
5600                                 if get_route(src, &payment_params, &graph.read_only(), None, amt, 42, &logger, &scorer, &random_seed_bytes).is_ok() {
5601                                         continue 'load_endpoints;
5602                                 }
5603                         }
5604                 }
5605         }
5606
5607         #[test]
5608         fn honors_manual_penalties() {
5609                 let (secp_ctx, network_graph, _, _, logger) = build_line_graph();
5610                 let (_, our_id, _, nodes) = get_nodes(&secp_ctx);
5611
5612                 let keys_manager = ln_test_utils::TestKeysInterface::new(&[0u8; 32], Network::Testnet);
5613                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5614
5615                 let scorer_params = ProbabilisticScoringParameters::default();
5616                 let mut scorer = ProbabilisticScorer::new(scorer_params, Arc::clone(&network_graph), Arc::clone(&logger));
5617
5618                 // First check set manual penalties are returned by the scorer.
5619                 let usage = ChannelUsage {
5620                         amount_msat: 0,
5621                         inflight_htlc_msat: 0,
5622                         effective_capacity: EffectiveCapacity::Total { capacity_msat: 1_024_000, htlc_maximum_msat: 1_000 },
5623                 };
5624                 scorer.set_manual_penalty(&NodeId::from_pubkey(&nodes[3]), 123);
5625                 scorer.set_manual_penalty(&NodeId::from_pubkey(&nodes[4]), 456);
5626                 assert_eq!(scorer.channel_penalty_msat(42, &NodeId::from_pubkey(&nodes[3]), &NodeId::from_pubkey(&nodes[4]), usage), 456);
5627
5628                 // Then check we can get a normal route
5629                 let payment_params = PaymentParameters::from_node_id(nodes[10], 42);
5630                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes);
5631                 assert!(route.is_ok());
5632
5633                 // Then check that we can't get a route if we ban an intermediate node.
5634                 scorer.add_banned(&NodeId::from_pubkey(&nodes[3]));
5635                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes);
5636                 assert!(route.is_err());
5637
5638                 // Finally make sure we can route again, when we remove the ban.
5639                 scorer.remove_banned(&NodeId::from_pubkey(&nodes[3]));
5640                 let route = get_route(&our_id, &payment_params, &network_graph.read_only(), None, 100, 42, Arc::clone(&logger), &scorer, &random_seed_bytes);
5641                 assert!(route.is_ok());
5642         }
5643 }
5644
5645 #[cfg(all(test, not(feature = "no-std")))]
5646 pub(crate) mod bench_utils {
5647         use std::fs::File;
5648         /// Tries to open a network graph file, or panics with a URL to fetch it.
5649         pub(crate) fn get_route_file() -> Result<std::fs::File, &'static str> {
5650                 let res = File::open("net_graph-2023-01-18.bin") // By default we're run in RL/lightning
5651                         .or_else(|_| File::open("lightning/net_graph-2023-01-18.bin")) // We may be run manually in RL/
5652                         .or_else(|_| { // Fall back to guessing based on the binary location
5653                                 // path is likely something like .../rust-lightning/target/debug/deps/lightning-...
5654                                 let mut path = std::env::current_exe().unwrap();
5655                                 path.pop(); // lightning-...
5656                                 path.pop(); // deps
5657                                 path.pop(); // debug
5658                                 path.pop(); // target
5659                                 path.push("lightning");
5660                                 path.push("net_graph-2023-01-18.bin");
5661                                 eprintln!("{}", path.to_str().unwrap());
5662                                 File::open(path)
5663                         })
5664                 .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");
5665                 #[cfg(require_route_graph_test)]
5666                 return Ok(res.unwrap());
5667                 #[cfg(not(require_route_graph_test))]
5668                 return res;
5669         }
5670 }
5671
5672 #[cfg(all(test, feature = "_bench_unstable", not(feature = "no-std")))]
5673 mod benches {
5674         use super::*;
5675         use bitcoin::hashes::Hash;
5676         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
5677         use crate::chain::transaction::OutPoint;
5678         use crate::chain::keysinterface::{EntropySource, KeysManager};
5679         use crate::ln::channelmanager::{self, ChannelCounterparty, ChannelDetails};
5680         use crate::ln::features::InvoiceFeatures;
5681         use crate::routing::gossip::NetworkGraph;
5682         use crate::routing::scoring::{FixedPenaltyScorer, ProbabilisticScorer, ProbabilisticScoringParameters};
5683         use crate::util::config::UserConfig;
5684         use crate::util::logger::{Logger, Record};
5685         use crate::util::ser::ReadableArgs;
5686
5687         use test::Bencher;
5688
5689         struct DummyLogger {}
5690         impl Logger for DummyLogger {
5691                 fn log(&self, _record: &Record) {}
5692         }
5693
5694         fn read_network_graph(logger: &DummyLogger) -> NetworkGraph<&DummyLogger> {
5695                 let mut d = bench_utils::get_route_file().unwrap();
5696                 NetworkGraph::read(&mut d, logger).unwrap()
5697         }
5698
5699         fn payer_pubkey() -> PublicKey {
5700                 let secp_ctx = Secp256k1::new();
5701                 PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap())
5702         }
5703
5704         #[inline]
5705         fn first_hop(node_id: PublicKey) -> ChannelDetails {
5706                 ChannelDetails {
5707                         channel_id: [0; 32],
5708                         counterparty: ChannelCounterparty {
5709                                 features: channelmanager::provided_init_features(&UserConfig::default()),
5710                                 node_id,
5711                                 unspendable_punishment_reserve: 0,
5712                                 forwarding_info: None,
5713                                 outbound_htlc_minimum_msat: None,
5714                                 outbound_htlc_maximum_msat: None,
5715                         },
5716                         funding_txo: Some(OutPoint {
5717                                 txid: bitcoin::Txid::from_slice(&[0; 32]).unwrap(), index: 0
5718                         }),
5719                         channel_type: None,
5720                         short_channel_id: Some(1),
5721                         inbound_scid_alias: None,
5722                         outbound_scid_alias: None,
5723                         channel_value_satoshis: 10_000_000,
5724                         user_channel_id: 0,
5725                         balance_msat: 10_000_000,
5726                         outbound_capacity_msat: 10_000_000,
5727                         next_outbound_htlc_limit_msat: 10_000_000,
5728                         inbound_capacity_msat: 0,
5729                         unspendable_punishment_reserve: None,
5730                         confirmations_required: None,
5731                         confirmations: None,
5732                         force_close_spend_delay: None,
5733                         is_outbound: true,
5734                         is_channel_ready: true,
5735                         is_usable: true,
5736                         is_public: true,
5737                         inbound_htlc_minimum_msat: None,
5738                         inbound_htlc_maximum_msat: None,
5739                         config: None,
5740                 }
5741         }
5742
5743         #[bench]
5744         fn generate_routes_with_zero_penalty_scorer(bench: &mut Bencher) {
5745                 let logger = DummyLogger {};
5746                 let network_graph = read_network_graph(&logger);
5747                 let scorer = FixedPenaltyScorer::with_penalty(0);
5748                 generate_routes(bench, &network_graph, scorer, InvoiceFeatures::empty());
5749         }
5750
5751         #[bench]
5752         fn generate_mpp_routes_with_zero_penalty_scorer(bench: &mut Bencher) {
5753                 let logger = DummyLogger {};
5754                 let network_graph = read_network_graph(&logger);
5755                 let scorer = FixedPenaltyScorer::with_penalty(0);
5756                 generate_routes(bench, &network_graph, scorer, channelmanager::provided_invoice_features(&UserConfig::default()));
5757         }
5758
5759         #[bench]
5760         fn generate_routes_with_probabilistic_scorer(bench: &mut Bencher) {
5761                 let logger = DummyLogger {};
5762                 let network_graph = read_network_graph(&logger);
5763                 let params = ProbabilisticScoringParameters::default();
5764                 let scorer = ProbabilisticScorer::new(params, &network_graph, &logger);
5765                 generate_routes(bench, &network_graph, scorer, InvoiceFeatures::empty());
5766         }
5767
5768         #[bench]
5769         fn generate_mpp_routes_with_probabilistic_scorer(bench: &mut Bencher) {
5770                 let logger = DummyLogger {};
5771                 let network_graph = read_network_graph(&logger);
5772                 let params = ProbabilisticScoringParameters::default();
5773                 let scorer = ProbabilisticScorer::new(params, &network_graph, &logger);
5774                 generate_routes(bench, &network_graph, scorer, channelmanager::provided_invoice_features(&UserConfig::default()));
5775         }
5776
5777         fn generate_routes<S: Score>(
5778                 bench: &mut Bencher, graph: &NetworkGraph<&DummyLogger>, mut scorer: S,
5779                 features: InvoiceFeatures
5780         ) {
5781                 let nodes = graph.read_only().nodes().clone();
5782                 let payer = payer_pubkey();
5783                 let keys_manager = KeysManager::new(&[0u8; 32], 42, 42);
5784                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
5785
5786                 // First, get 100 (source, destination) pairs for which route-getting actually succeeds...
5787                 let mut routes = Vec::new();
5788                 let mut route_endpoints = Vec::new();
5789                 let mut seed: usize = 0xdeadbeef;
5790                 'load_endpoints: for _ in 0..150 {
5791                         loop {
5792                                 seed *= 0xdeadbeef;
5793                                 let src = PublicKey::from_slice(nodes.unordered_keys().skip(seed % nodes.len()).next().unwrap().as_slice()).unwrap();
5794                                 seed *= 0xdeadbeef;
5795                                 let dst = PublicKey::from_slice(nodes.unordered_keys().skip(seed % nodes.len()).next().unwrap().as_slice()).unwrap();
5796                                 let params = PaymentParameters::from_node_id(dst, 42).with_features(features.clone());
5797                                 let first_hop = first_hop(src);
5798                                 let amt = seed as u64 % 1_000_000;
5799                                 if let Ok(route) = get_route(&payer, &params, &graph.read_only(), Some(&[&first_hop]), amt, 42, &DummyLogger{}, &scorer, &random_seed_bytes) {
5800                                         routes.push(route);
5801                                         route_endpoints.push((first_hop, params, amt));
5802                                         continue 'load_endpoints;
5803                                 }
5804                         }
5805                 }
5806
5807                 // ...and seed the scorer with success and failure data...
5808                 for route in routes {
5809                         let amount = route.get_total_amount();
5810                         if amount < 250_000 {
5811                                 for path in route.paths {
5812                                         scorer.payment_path_successful(&path.iter().collect::<Vec<_>>());
5813                                 }
5814                         } else if amount > 750_000 {
5815                                 for path in route.paths {
5816                                         let short_channel_id = path[path.len() / 2].short_channel_id;
5817                                         scorer.payment_path_failed(&path.iter().collect::<Vec<_>>(), short_channel_id);
5818                                 }
5819                         }
5820                 }
5821
5822                 // Because we've changed channel scores, its possible we'll take different routes to the
5823                 // selected destinations, possibly causing us to fail because, eg, the newly-selected path
5824                 // requires a too-high CLTV delta.
5825                 route_endpoints.retain(|(first_hop, params, amt)| {
5826                         get_route(&payer, params, &graph.read_only(), Some(&[first_hop]), *amt, 42, &DummyLogger{}, &scorer, &random_seed_bytes).is_ok()
5827                 });
5828                 route_endpoints.truncate(100);
5829                 assert_eq!(route_endpoints.len(), 100);
5830
5831                 // ...then benchmark finding paths between the nodes we learned.
5832                 let mut idx = 0;
5833                 bench.iter(|| {
5834                         let (first_hop, params, amt) = &route_endpoints[idx % route_endpoints.len()];
5835                         assert!(get_route(&payer, params, &graph.read_only(), Some(&[first_hop]), *amt, 42, &DummyLogger{}, &scorer, &random_seed_bytes).is_ok());
5836                         idx += 1;
5837                 });
5838         }
5839 }