Merge pull request #1351 from TheBlueMatt/2022-03-scid-privacy
[rust-lightning] / lightning / src / routing / scoring.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 //! Utilities for scoring payment channels.
11 //!
12 //! [`ProbabilisticScorer`] may be given to [`find_route`] to score payment channels during path
13 //! finding when a custom [`Score`] implementation is not needed.
14 //!
15 //! # Example
16 //!
17 //! ```
18 //! # extern crate secp256k1;
19 //! #
20 //! # use lightning::routing::network_graph::NetworkGraph;
21 //! # use lightning::routing::router::{RouteParameters, find_route};
22 //! # use lightning::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringParameters, Scorer, ScoringParameters};
23 //! # use lightning::chain::keysinterface::{KeysManager, KeysInterface};
24 //! # use lightning::util::logger::{Logger, Record};
25 //! # use secp256k1::key::PublicKey;
26 //! #
27 //! # struct FakeLogger {};
28 //! # impl Logger for FakeLogger {
29 //! #     fn log(&self, record: &Record) { unimplemented!() }
30 //! # }
31 //! # fn find_scored_route(payer: PublicKey, route_params: RouteParameters, network_graph: NetworkGraph) {
32 //! # let logger = FakeLogger {};
33 //! #
34 //! // Use the default channel penalties.
35 //! let params = ProbabilisticScoringParameters::default();
36 //! let scorer = ProbabilisticScorer::new(params, &network_graph);
37 //!
38 //! // Or use custom channel penalties.
39 //! let params = ProbabilisticScoringParameters {
40 //!     liquidity_penalty_multiplier_msat: 2 * 1000,
41 //!     ..ProbabilisticScoringParameters::default()
42 //! };
43 //! let scorer = ProbabilisticScorer::new(params, &network_graph);
44 //! # let random_seed_bytes = [42u8; 32];
45 //!
46 //! let route = find_route(&payer, &route_params, &network_graph, None, &logger, &scorer, &random_seed_bytes);
47 //! # }
48 //! ```
49 //!
50 //! # Note
51 //!
52 //! Persisting when built with feature `no-std` and restoring without it, or vice versa, uses
53 //! different types and thus is undefined.
54 //!
55 //! [`find_route`]: crate::routing::router::find_route
56
57 use ln::msgs::DecodeError;
58 use routing::network_graph::{NetworkGraph, NodeId};
59 use routing::router::RouteHop;
60 use util::ser::{Readable, ReadableArgs, Writeable, Writer};
61
62 use prelude::*;
63 use core::cell::{RefCell, RefMut};
64 use core::ops::{Deref, DerefMut};
65 use core::time::Duration;
66 use io::{self, Read};
67 use sync::{Mutex, MutexGuard};
68
69 /// We define Score ever-so-slightly differently based on whether we are being built for C bindings
70 /// or not. For users, `LockableScore` must somehow be writeable to disk. For Rust users, this is
71 /// no problem - you move a `Score` that implements `Writeable` into a `Mutex`, lock it, and now
72 /// you have the original, concrete, `Score` type, which presumably implements `Writeable`.
73 ///
74 /// For C users, once you've moved the `Score` into a `LockableScore` all you have after locking it
75 /// is an opaque trait object with an opaque pointer with no type info. Users could take the unsafe
76 /// approach of blindly casting that opaque pointer to a concrete type and calling `Writeable` from
77 /// there, but other languages downstream of the C bindings (e.g. Java) can't even do that.
78 /// Instead, we really want `Score` and `LockableScore` to implement `Writeable` directly, which we
79 /// do here by defining `Score` differently for `cfg(c_bindings)`.
80 macro_rules! define_score { ($($supertrait: path)*) => {
81 /// An interface used to score payment channels for path finding.
82 ///
83 ///     Scoring is in terms of fees willing to be paid in order to avoid routing through a channel.
84 pub trait Score $(: $supertrait)* {
85         /// Returns the fee in msats willing to be paid to avoid routing `send_amt_msat` through the
86         /// given channel in the direction from `source` to `target`.
87         ///
88         /// The channel's capacity (less any other MPP parts that are also being considered for use in
89         /// the same payment) is given by `capacity_msat`. It may be determined from various sources
90         /// such as a chain data, network gossip, or invoice hints. For invoice hints, a capacity near
91         /// [`u64::max_value`] is given to indicate sufficient capacity for the invoice's full amount.
92         /// Thus, implementations should be overflow-safe.
93         fn channel_penalty_msat(&self, short_channel_id: u64, send_amt_msat: u64, capacity_msat: u64, source: &NodeId, target: &NodeId) -> u64;
94
95         /// Handles updating channel penalties after failing to route through a channel.
96         fn payment_path_failed(&mut self, path: &[&RouteHop], short_channel_id: u64);
97
98         /// Handles updating channel penalties after successfully routing along a path.
99         fn payment_path_successful(&mut self, path: &[&RouteHop]);
100 }
101
102 impl<S: Score, T: DerefMut<Target=S> $(+ $supertrait)*> Score for T {
103         fn channel_penalty_msat(&self, short_channel_id: u64, send_amt_msat: u64, capacity_msat: u64, source: &NodeId, target: &NodeId) -> u64 {
104                 self.deref().channel_penalty_msat(short_channel_id, send_amt_msat, capacity_msat, source, target)
105         }
106
107         fn payment_path_failed(&mut self, path: &[&RouteHop], short_channel_id: u64) {
108                 self.deref_mut().payment_path_failed(path, short_channel_id)
109         }
110
111         fn payment_path_successful(&mut self, path: &[&RouteHop]) {
112                 self.deref_mut().payment_path_successful(path)
113         }
114 }
115 } }
116
117 #[cfg(c_bindings)]
118 define_score!(Writeable);
119 #[cfg(not(c_bindings))]
120 define_score!();
121
122 /// A scorer that is accessed under a lock.
123 ///
124 /// Needed so that calls to [`Score::channel_penalty_msat`] in [`find_route`] can be made while
125 /// having shared ownership of a scorer but without requiring internal locking in [`Score`]
126 /// implementations. Internal locking would be detrimental to route finding performance and could
127 /// result in [`Score::channel_penalty_msat`] returning a different value for the same channel.
128 ///
129 /// [`find_route`]: crate::routing::router::find_route
130 pub trait LockableScore<'a> {
131         /// The locked [`Score`] type.
132         type Locked: 'a + Score;
133
134         /// Returns the locked scorer.
135         fn lock(&'a self) -> Self::Locked;
136 }
137
138 /// (C-not exported)
139 impl<'a, T: 'a + Score> LockableScore<'a> for Mutex<T> {
140         type Locked = MutexGuard<'a, T>;
141
142         fn lock(&'a self) -> MutexGuard<'a, T> {
143                 Mutex::lock(self).unwrap()
144         }
145 }
146
147 impl<'a, T: 'a + Score> LockableScore<'a> for RefCell<T> {
148         type Locked = RefMut<'a, T>;
149
150         fn lock(&'a self) -> RefMut<'a, T> {
151                 self.borrow_mut()
152         }
153 }
154
155 #[cfg(c_bindings)]
156 /// A concrete implementation of [`LockableScore`] which supports multi-threading.
157 pub struct MultiThreadedLockableScore<S: Score> {
158         score: Mutex<S>,
159 }
160 #[cfg(c_bindings)]
161 /// (C-not exported)
162 impl<'a, T: Score + 'a> LockableScore<'a> for MultiThreadedLockableScore<T> {
163         type Locked = MutexGuard<'a, T>;
164
165         fn lock(&'a self) -> MutexGuard<'a, T> {
166                 Mutex::lock(&self.score).unwrap()
167         }
168 }
169
170 #[cfg(c_bindings)]
171 impl<T: Score> MultiThreadedLockableScore<T> {
172         /// Creates a new [`MultiThreadedLockableScore`] given an underlying [`Score`].
173         pub fn new(score: T) -> Self {
174                 MultiThreadedLockableScore { score: Mutex::new(score) }
175         }
176 }
177
178 #[cfg(c_bindings)]
179 /// (C-not exported)
180 impl<'a, T: Writeable> Writeable for RefMut<'a, T> {
181         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
182                 T::write(&**self, writer)
183         }
184 }
185
186 #[cfg(c_bindings)]
187 /// (C-not exported)
188 impl<'a, S: Writeable> Writeable for MutexGuard<'a, S> {
189         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
190                 S::write(&**self, writer)
191         }
192 }
193
194 #[derive(Clone)]
195 /// [`Score`] implementation that uses a fixed penalty.
196 pub struct FixedPenaltyScorer {
197         penalty_msat: u64,
198 }
199
200 impl FixedPenaltyScorer {
201         /// Creates a new scorer using `penalty_msat`.
202         pub fn with_penalty(penalty_msat: u64) -> Self {
203                 Self { penalty_msat }
204         }
205 }
206
207 impl Score for FixedPenaltyScorer {
208         fn channel_penalty_msat(&self, _: u64, _: u64, _: u64, _: &NodeId, _: &NodeId) -> u64 {
209                 self.penalty_msat
210         }
211
212         fn payment_path_failed(&mut self, _path: &[&RouteHop], _short_channel_id: u64) {}
213
214         fn payment_path_successful(&mut self, _path: &[&RouteHop]) {}
215 }
216
217 impl Writeable for FixedPenaltyScorer {
218         #[inline]
219         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
220                 write_tlv_fields!(w, {});
221                 Ok(())
222         }
223 }
224
225 impl ReadableArgs<u64> for FixedPenaltyScorer {
226         #[inline]
227         fn read<R: Read>(r: &mut R, penalty_msat: u64) -> Result<Self, DecodeError> {
228                 read_tlv_fields!(r, {});
229                 Ok(Self { penalty_msat })
230         }
231 }
232
233 /// [`Score`] implementation that provides reasonable default behavior.
234 ///
235 /// Used to apply a fixed penalty to each channel, thus avoiding long paths when shorter paths with
236 /// slightly higher fees are available. Will further penalize channels that fail to relay payments.
237 ///
238 /// See [module-level documentation] for usage and [`ScoringParameters`] for customization.
239 ///
240 /// # Note
241 ///
242 /// Mixing the `no-std` feature between serialization and deserialization results in undefined
243 /// behavior.
244 ///
245 /// [module-level documentation]: crate::routing::scoring
246 #[deprecated(
247         since = "0.0.105",
248         note = "ProbabilisticScorer should be used instead of Scorer.",
249 )]
250 pub type Scorer = ScorerUsingTime::<ConfiguredTime>;
251
252 #[cfg(not(feature = "no-std"))]
253 type ConfiguredTime = std::time::Instant;
254 #[cfg(feature = "no-std")]
255 type ConfiguredTime = time::Eternity;
256
257 // Note that ideally we'd hide ScorerUsingTime from public view by sealing it as well, but rustdoc
258 // doesn't handle this well - instead exposing a `Scorer` which has no trait implementation(s) or
259 // methods at all.
260
261 /// [`Score`] implementation.
262 ///
263 /// (C-not exported) generally all users should use the [`Scorer`] type alias.
264 pub struct ScorerUsingTime<T: Time> {
265         params: ScoringParameters,
266         // TODO: Remove entries of closed channels.
267         channel_failures: HashMap<u64, ChannelFailure<T>>,
268 }
269
270 #[derive(Clone)]
271 /// Parameters for configuring [`Scorer`].
272 pub struct ScoringParameters {
273         /// A fixed penalty in msats to apply to each channel.
274         ///
275         /// Default value: 500 msat
276         pub base_penalty_msat: u64,
277
278         /// A penalty in msats to apply to a channel upon failing to relay a payment.
279         ///
280         /// This accumulates for each failure but may be reduced over time based on
281         /// [`failure_penalty_half_life`] or when successfully routing through a channel.
282         ///
283         /// Default value: 1,024,000 msat
284         ///
285         /// [`failure_penalty_half_life`]: Self::failure_penalty_half_life
286         pub failure_penalty_msat: u64,
287
288         /// When the amount being sent over a channel is this many 1024ths of the total channel
289         /// capacity, we begin applying [`overuse_penalty_msat_per_1024th`].
290         ///
291         /// Default value: 128 1024ths (i.e. begin penalizing when an HTLC uses 1/8th of a channel)
292         ///
293         /// [`overuse_penalty_msat_per_1024th`]: Self::overuse_penalty_msat_per_1024th
294         pub overuse_penalty_start_1024th: u16,
295
296         /// A penalty applied, per whole 1024ths of the channel capacity which the amount being sent
297         /// over the channel exceeds [`overuse_penalty_start_1024th`] by.
298         ///
299         /// Default value: 20 msat (i.e. 2560 msat penalty to use 1/4th of a channel, 7680 msat penalty
300         ///                to use half a channel, and 12,560 msat penalty to use 3/4ths of a channel)
301         ///
302         /// [`overuse_penalty_start_1024th`]: Self::overuse_penalty_start_1024th
303         pub overuse_penalty_msat_per_1024th: u64,
304
305         /// The time required to elapse before any accumulated [`failure_penalty_msat`] penalties are
306         /// cut in half.
307         ///
308         /// Successfully routing through a channel will immediately cut the penalty in half as well.
309         ///
310         /// Default value: 1 hour
311         ///
312         /// # Note
313         ///
314         /// When built with the `no-std` feature, time will never elapse. Therefore, this penalty will
315         /// never decay.
316         ///
317         /// [`failure_penalty_msat`]: Self::failure_penalty_msat
318         pub failure_penalty_half_life: Duration,
319 }
320
321 impl_writeable_tlv_based!(ScoringParameters, {
322         (0, base_penalty_msat, required),
323         (1, overuse_penalty_start_1024th, (default_value, 128)),
324         (2, failure_penalty_msat, required),
325         (3, overuse_penalty_msat_per_1024th, (default_value, 20)),
326         (4, failure_penalty_half_life, required),
327 });
328
329 /// Accounting for penalties against a channel for failing to relay any payments.
330 ///
331 /// Penalties decay over time, though accumulate as more failures occur.
332 struct ChannelFailure<T: Time> {
333         /// Accumulated penalty in msats for the channel as of `last_updated`.
334         undecayed_penalty_msat: u64,
335
336         /// Last time the channel either failed to route or successfully routed a payment. Used to decay
337         /// `undecayed_penalty_msat`.
338         last_updated: T,
339 }
340
341 impl<T: Time> ScorerUsingTime<T> {
342         /// Creates a new scorer using the given scoring parameters.
343         pub fn new(params: ScoringParameters) -> Self {
344                 Self {
345                         params,
346                         channel_failures: HashMap::new(),
347                 }
348         }
349 }
350
351 impl<T: Time> ChannelFailure<T> {
352         fn new(failure_penalty_msat: u64) -> Self {
353                 Self {
354                         undecayed_penalty_msat: failure_penalty_msat,
355                         last_updated: T::now(),
356                 }
357         }
358
359         fn add_penalty(&mut self, failure_penalty_msat: u64, half_life: Duration) {
360                 self.undecayed_penalty_msat = self.decayed_penalty_msat(half_life) + failure_penalty_msat;
361                 self.last_updated = T::now();
362         }
363
364         fn reduce_penalty(&mut self, half_life: Duration) {
365                 self.undecayed_penalty_msat = self.decayed_penalty_msat(half_life) >> 1;
366                 self.last_updated = T::now();
367         }
368
369         fn decayed_penalty_msat(&self, half_life: Duration) -> u64 {
370                 self.last_updated.elapsed().as_secs()
371                         .checked_div(half_life.as_secs())
372                         .and_then(|decays| self.undecayed_penalty_msat.checked_shr(decays as u32))
373                         .unwrap_or(0)
374         }
375 }
376
377 impl<T: Time> Default for ScorerUsingTime<T> {
378         fn default() -> Self {
379                 Self::new(ScoringParameters::default())
380         }
381 }
382
383 impl Default for ScoringParameters {
384         fn default() -> Self {
385                 Self {
386                         base_penalty_msat: 500,
387                         failure_penalty_msat: 1024 * 1000,
388                         failure_penalty_half_life: Duration::from_secs(3600),
389                         overuse_penalty_start_1024th: 1024 / 8,
390                         overuse_penalty_msat_per_1024th: 20,
391                 }
392         }
393 }
394
395 impl<T: Time> Score for ScorerUsingTime<T> {
396         fn channel_penalty_msat(
397                 &self, short_channel_id: u64, send_amt_msat: u64, capacity_msat: u64, _source: &NodeId, _target: &NodeId
398         ) -> u64 {
399                 let failure_penalty_msat = self.channel_failures
400                         .get(&short_channel_id)
401                         .map_or(0, |value| value.decayed_penalty_msat(self.params.failure_penalty_half_life));
402
403                 let mut penalty_msat = self.params.base_penalty_msat + failure_penalty_msat;
404                 let send_1024ths = send_amt_msat.checked_mul(1024).unwrap_or(u64::max_value()) / capacity_msat;
405                 if send_1024ths > self.params.overuse_penalty_start_1024th as u64 {
406                         penalty_msat = penalty_msat.checked_add(
407                                         (send_1024ths - self.params.overuse_penalty_start_1024th as u64)
408                                         .checked_mul(self.params.overuse_penalty_msat_per_1024th).unwrap_or(u64::max_value()))
409                                 .unwrap_or(u64::max_value());
410                 }
411
412                 penalty_msat
413         }
414
415         fn payment_path_failed(&mut self, _path: &[&RouteHop], short_channel_id: u64) {
416                 let failure_penalty_msat = self.params.failure_penalty_msat;
417                 let half_life = self.params.failure_penalty_half_life;
418                 self.channel_failures
419                         .entry(short_channel_id)
420                         .and_modify(|failure| failure.add_penalty(failure_penalty_msat, half_life))
421                         .or_insert_with(|| ChannelFailure::new(failure_penalty_msat));
422         }
423
424         fn payment_path_successful(&mut self, path: &[&RouteHop]) {
425                 let half_life = self.params.failure_penalty_half_life;
426                 for hop in path.iter() {
427                         self.channel_failures
428                                 .entry(hop.short_channel_id)
429                                 .and_modify(|failure| failure.reduce_penalty(half_life));
430                 }
431         }
432 }
433
434 impl<T: Time> Writeable for ScorerUsingTime<T> {
435         #[inline]
436         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
437                 self.params.write(w)?;
438                 self.channel_failures.write(w)?;
439                 write_tlv_fields!(w, {});
440                 Ok(())
441         }
442 }
443
444 impl<T: Time> Readable for ScorerUsingTime<T> {
445         #[inline]
446         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
447                 let res = Ok(Self {
448                         params: Readable::read(r)?,
449                         channel_failures: Readable::read(r)?,
450                 });
451                 read_tlv_fields!(r, {});
452                 res
453         }
454 }
455
456 impl<T: Time> Writeable for ChannelFailure<T> {
457         #[inline]
458         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
459                 let duration_since_epoch = T::duration_since_epoch() - self.last_updated.elapsed();
460                 write_tlv_fields!(w, {
461                         (0, self.undecayed_penalty_msat, required),
462                         (2, duration_since_epoch, required),
463                 });
464                 Ok(())
465         }
466 }
467
468 impl<T: Time> Readable for ChannelFailure<T> {
469         #[inline]
470         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
471                 let mut undecayed_penalty_msat = 0;
472                 let mut duration_since_epoch = Duration::from_secs(0);
473                 read_tlv_fields!(r, {
474                         (0, undecayed_penalty_msat, required),
475                         (2, duration_since_epoch, required),
476                 });
477                 Ok(Self {
478                         undecayed_penalty_msat,
479                         last_updated: T::now() - (T::duration_since_epoch() - duration_since_epoch),
480                 })
481         }
482 }
483
484 /// [`Score`] implementation using channel success probability distributions.
485 ///
486 /// Based on *Optimally Reliable & Cheap Payment Flows on the Lightning Network* by Rene Pickhardt
487 /// and Stefan Richter [[1]]. Given the uncertainty of channel liquidity balances, probability
488 /// distributions are defined based on knowledge learned from successful and unsuccessful attempts.
489 /// Then the negative `log10` of the success probability is used to determine the cost of routing a
490 /// specific HTLC amount through a channel.
491 ///
492 /// Knowledge about channel liquidity balances takes the form of upper and lower bounds on the
493 /// possible liquidity. Certainty of the bounds is decreased over time using a decay function. See
494 /// [`ProbabilisticScoringParameters`] for details.
495 ///
496 /// Since the scorer aims to learn the current channel liquidity balances, it works best for nodes
497 /// with high payment volume or that actively probe the [`NetworkGraph`]. Nodes with low payment
498 /// volume are more likely to experience failed payment paths, which would need to be retried.
499 ///
500 /// # Note
501 ///
502 /// Mixing the `no-std` feature between serialization and deserialization results in undefined
503 /// behavior.
504 ///
505 /// [1]: https://arxiv.org/abs/2107.05322
506 pub type ProbabilisticScorer<G> = ProbabilisticScorerUsingTime::<G, ConfiguredTime>;
507
508 /// Probabilistic [`Score`] implementation.
509 ///
510 /// (C-not exported) generally all users should use the [`ProbabilisticScorer`] type alias.
511 pub struct ProbabilisticScorerUsingTime<G: Deref<Target = NetworkGraph>, T: Time> {
512         params: ProbabilisticScoringParameters,
513         network_graph: G,
514         // TODO: Remove entries of closed channels.
515         channel_liquidities: HashMap<u64, ChannelLiquidity<T>>,
516 }
517
518 /// Parameters for configuring [`ProbabilisticScorer`].
519 ///
520 /// Used to configure a base penalty and a liquidity penalty, the sum of which is the channel
521 /// penalty (i.e., the amount in msats willing to be paid to avoid routing through the channel).
522 #[derive(Clone, Copy)]
523 pub struct ProbabilisticScoringParameters {
524         /// A fixed penalty in msats to apply to each channel.
525         ///
526         /// Default value: 500 msat
527         pub base_penalty_msat: u64,
528
529         /// A multiplier used in conjunction with the negative `log10` of the channel's success
530         /// probability for a payment to determine the liquidity penalty.
531         ///
532         /// The penalty is based in part by the knowledge learned from prior successful and unsuccessful
533         /// payments. This knowledge is decayed over time based on [`liquidity_offset_half_life`]. The
534         /// penalty is effectively limited to `2 * liquidity_penalty_multiplier_msat`.
535         ///
536         /// Default value: 40,000 msat
537         ///
538         /// [`liquidity_offset_half_life`]: Self::liquidity_offset_half_life
539         pub liquidity_penalty_multiplier_msat: u64,
540
541         /// The time required to elapse before any knowledge learned about channel liquidity balances is
542         /// cut in half.
543         ///
544         /// The bounds are defined in terms of offsets and are initially zero. Increasing the offsets
545         /// gives tighter bounds on the channel liquidity balance. Thus, halving the offsets decreases
546         /// the certainty of the channel liquidity balance.
547         ///
548         /// Default value: 1 hour
549         ///
550         /// # Note
551         ///
552         /// When built with the `no-std` feature, time will never elapse. Therefore, the channel
553         /// liquidity knowledge will never decay except when the bounds cross.
554         pub liquidity_offset_half_life: Duration,
555 }
556
557 /// Accounting for channel liquidity balance uncertainty.
558 ///
559 /// Direction is defined in terms of [`NodeId`] partial ordering, where the source node is the
560 /// first node in the ordering of the channel's counterparties. Thus, swapping the two liquidity
561 /// offset fields gives the opposite direction.
562 struct ChannelLiquidity<T: Time> {
563         /// Lower channel liquidity bound in terms of an offset from zero.
564         min_liquidity_offset_msat: u64,
565
566         /// Upper channel liquidity bound in terms of an offset from the effective capacity.
567         max_liquidity_offset_msat: u64,
568
569         /// Time when the liquidity bounds were last modified.
570         last_updated: T,
571 }
572
573 /// A snapshot of [`ChannelLiquidity`] in one direction assuming a certain channel capacity and
574 /// decayed with a given half life.
575 struct DirectedChannelLiquidity<L: Deref<Target = u64>, T: Time, U: Deref<Target = T>> {
576         min_liquidity_offset_msat: L,
577         max_liquidity_offset_msat: L,
578         capacity_msat: u64,
579         last_updated: U,
580         now: T,
581         half_life: Duration,
582 }
583
584 impl<G: Deref<Target = NetworkGraph>, T: Time> ProbabilisticScorerUsingTime<G, T> {
585         /// Creates a new scorer using the given scoring parameters for sending payments from a node
586         /// through a network graph.
587         pub fn new(params: ProbabilisticScoringParameters, network_graph: G) -> Self {
588                 Self {
589                         params,
590                         network_graph,
591                         channel_liquidities: HashMap::new(),
592                 }
593         }
594
595         #[cfg(test)]
596         fn with_channel(mut self, short_channel_id: u64, liquidity: ChannelLiquidity<T>) -> Self {
597                 assert!(self.channel_liquidities.insert(short_channel_id, liquidity).is_none());
598                 self
599         }
600 }
601
602 impl Default for ProbabilisticScoringParameters {
603         fn default() -> Self {
604                 Self {
605                         base_penalty_msat: 500,
606                         liquidity_penalty_multiplier_msat: 40_000,
607                         liquidity_offset_half_life: Duration::from_secs(3600),
608                 }
609         }
610 }
611
612 impl<T: Time> ChannelLiquidity<T> {
613         #[inline]
614         fn new() -> Self {
615                 Self {
616                         min_liquidity_offset_msat: 0,
617                         max_liquidity_offset_msat: 0,
618                         last_updated: T::now(),
619                 }
620         }
621
622         /// Returns a view of the channel liquidity directed from `source` to `target` assuming
623         /// `capacity_msat`.
624         fn as_directed(
625                 &self, source: &NodeId, target: &NodeId, capacity_msat: u64, half_life: Duration
626         ) -> DirectedChannelLiquidity<&u64, T, &T> {
627                 let (min_liquidity_offset_msat, max_liquidity_offset_msat) = if source < target {
628                         (&self.min_liquidity_offset_msat, &self.max_liquidity_offset_msat)
629                 } else {
630                         (&self.max_liquidity_offset_msat, &self.min_liquidity_offset_msat)
631                 };
632
633                 DirectedChannelLiquidity {
634                         min_liquidity_offset_msat,
635                         max_liquidity_offset_msat,
636                         capacity_msat,
637                         last_updated: &self.last_updated,
638                         now: T::now(),
639                         half_life,
640                 }
641         }
642
643         /// Returns a mutable view of the channel liquidity directed from `source` to `target` assuming
644         /// `capacity_msat`.
645         fn as_directed_mut(
646                 &mut self, source: &NodeId, target: &NodeId, capacity_msat: u64, half_life: Duration
647         ) -> DirectedChannelLiquidity<&mut u64, T, &mut T> {
648                 let (min_liquidity_offset_msat, max_liquidity_offset_msat) = if source < target {
649                         (&mut self.min_liquidity_offset_msat, &mut self.max_liquidity_offset_msat)
650                 } else {
651                         (&mut self.max_liquidity_offset_msat, &mut self.min_liquidity_offset_msat)
652                 };
653
654                 DirectedChannelLiquidity {
655                         min_liquidity_offset_msat,
656                         max_liquidity_offset_msat,
657                         capacity_msat,
658                         last_updated: &mut self.last_updated,
659                         now: T::now(),
660                         half_life,
661                 }
662         }
663 }
664
665 impl<L: Deref<Target = u64>, T: Time, U: Deref<Target = T>> DirectedChannelLiquidity<L, T, U> {
666         /// Returns a penalty for routing the given HTLC `amount_msat` through the channel in this
667         /// direction.
668         fn penalty_msat(&self, amount_msat: u64, liquidity_penalty_multiplier_msat: u64) -> u64 {
669                 let max_penalty_msat = liquidity_penalty_multiplier_msat.saturating_mul(2);
670                 let max_liquidity_msat = self.max_liquidity_msat();
671                 let min_liquidity_msat = core::cmp::min(self.min_liquidity_msat(), max_liquidity_msat);
672                 if amount_msat > max_liquidity_msat {
673                         max_penalty_msat
674                 } else if amount_msat <= min_liquidity_msat {
675                         0
676                 } else {
677                         let numerator = (max_liquidity_msat - amount_msat).saturating_add(1);
678                         let denominator = (max_liquidity_msat - min_liquidity_msat).saturating_add(1);
679                         let penalty_msat = approx::negative_log10_times_1024(numerator, denominator)
680                                 .saturating_mul(liquidity_penalty_multiplier_msat) / 1024;
681                         // Upper bound the penalty to ensure some channel is selected.
682                         penalty_msat.min(max_penalty_msat)
683                 }
684         }
685
686         /// Returns the lower bound of the channel liquidity balance in this direction.
687         fn min_liquidity_msat(&self) -> u64 {
688                 self.decayed_offset_msat(*self.min_liquidity_offset_msat)
689         }
690
691         /// Returns the upper bound of the channel liquidity balance in this direction.
692         fn max_liquidity_msat(&self) -> u64 {
693                 self.capacity_msat
694                         .checked_sub(self.decayed_offset_msat(*self.max_liquidity_offset_msat))
695                         .unwrap_or(0)
696         }
697
698         fn decayed_offset_msat(&self, offset_msat: u64) -> u64 {
699                 self.now.duration_since(*self.last_updated).as_secs()
700                         .checked_div(self.half_life.as_secs())
701                         .and_then(|decays| offset_msat.checked_shr(decays as u32))
702                         .unwrap_or(0)
703         }
704 }
705
706 impl<L: DerefMut<Target = u64>, T: Time, U: DerefMut<Target = T>> DirectedChannelLiquidity<L, T, U> {
707         /// Adjusts the channel liquidity balance bounds when failing to route `amount_msat`.
708         fn failed_at_channel(&mut self, amount_msat: u64) {
709                 if amount_msat < self.max_liquidity_msat() {
710                         self.set_max_liquidity_msat(amount_msat);
711                 }
712         }
713
714         /// Adjusts the channel liquidity balance bounds when failing to route `amount_msat` downstream.
715         fn failed_downstream(&mut self, amount_msat: u64) {
716                 if amount_msat > self.min_liquidity_msat() {
717                         self.set_min_liquidity_msat(amount_msat);
718                 }
719         }
720
721         /// Adjusts the channel liquidity balance bounds when successfully routing `amount_msat`.
722         fn successful(&mut self, amount_msat: u64) {
723                 let max_liquidity_msat = self.max_liquidity_msat().checked_sub(amount_msat).unwrap_or(0);
724                 self.set_max_liquidity_msat(max_liquidity_msat);
725         }
726
727         /// Adjusts the lower bound of the channel liquidity balance in this direction.
728         fn set_min_liquidity_msat(&mut self, amount_msat: u64) {
729                 *self.min_liquidity_offset_msat = amount_msat;
730                 *self.max_liquidity_offset_msat = if amount_msat > self.max_liquidity_msat() {
731                         0
732                 } else {
733                         self.decayed_offset_msat(*self.max_liquidity_offset_msat)
734                 };
735                 *self.last_updated = self.now;
736         }
737
738         /// Adjusts the upper bound of the channel liquidity balance in this direction.
739         fn set_max_liquidity_msat(&mut self, amount_msat: u64) {
740                 *self.max_liquidity_offset_msat = self.capacity_msat.checked_sub(amount_msat).unwrap_or(0);
741                 *self.min_liquidity_offset_msat = if amount_msat < self.min_liquidity_msat() {
742                         0
743                 } else {
744                         self.decayed_offset_msat(*self.min_liquidity_offset_msat)
745                 };
746                 *self.last_updated = self.now;
747         }
748 }
749
750 impl<G: Deref<Target = NetworkGraph>, T: Time> Score for ProbabilisticScorerUsingTime<G, T> {
751         fn channel_penalty_msat(
752                 &self, short_channel_id: u64, amount_msat: u64, capacity_msat: u64, source: &NodeId,
753                 target: &NodeId
754         ) -> u64 {
755                 let liquidity_penalty_multiplier_msat = self.params.liquidity_penalty_multiplier_msat;
756                 let liquidity_offset_half_life = self.params.liquidity_offset_half_life;
757                 self.channel_liquidities
758                         .get(&short_channel_id)
759                         .unwrap_or(&ChannelLiquidity::new())
760                         .as_directed(source, target, capacity_msat, liquidity_offset_half_life)
761                         .penalty_msat(amount_msat, liquidity_penalty_multiplier_msat)
762                         .saturating_add(self.params.base_penalty_msat)
763         }
764
765         fn payment_path_failed(&mut self, path: &[&RouteHop], short_channel_id: u64) {
766                 let amount_msat = path.split_last().map(|(hop, _)| hop.fee_msat).unwrap_or(0);
767                 let liquidity_offset_half_life = self.params.liquidity_offset_half_life;
768                 let network_graph = self.network_graph.read_only();
769                 for hop in path {
770                         let target = NodeId::from_pubkey(&hop.pubkey);
771                         let channel_directed_from_source = network_graph.channels()
772                                 .get(&hop.short_channel_id)
773                                 .and_then(|channel| channel.as_directed_to(&target));
774
775                         // Only score announced channels.
776                         if let Some((channel, source)) = channel_directed_from_source {
777                                 let capacity_msat = channel.effective_capacity().as_msat();
778                                 if hop.short_channel_id == short_channel_id {
779                                         self.channel_liquidities
780                                                 .entry(hop.short_channel_id)
781                                                 .or_insert_with(ChannelLiquidity::new)
782                                                 .as_directed_mut(source, &target, capacity_msat, liquidity_offset_half_life)
783                                                 .failed_at_channel(amount_msat);
784                                         break;
785                                 }
786
787                                 self.channel_liquidities
788                                         .entry(hop.short_channel_id)
789                                         .or_insert_with(ChannelLiquidity::new)
790                                         .as_directed_mut(source, &target, capacity_msat, liquidity_offset_half_life)
791                                         .failed_downstream(amount_msat);
792                         }
793                 }
794         }
795
796         fn payment_path_successful(&mut self, path: &[&RouteHop]) {
797                 let amount_msat = path.split_last().map(|(hop, _)| hop.fee_msat).unwrap_or(0);
798                 let liquidity_offset_half_life = self.params.liquidity_offset_half_life;
799                 let network_graph = self.network_graph.read_only();
800                 for hop in path {
801                         let target = NodeId::from_pubkey(&hop.pubkey);
802                         let channel_directed_from_source = network_graph.channels()
803                                 .get(&hop.short_channel_id)
804                                 .and_then(|channel| channel.as_directed_to(&target));
805
806                         // Only score announced channels.
807                         if let Some((channel, source)) = channel_directed_from_source {
808                                 let capacity_msat = channel.effective_capacity().as_msat();
809                                 self.channel_liquidities
810                                         .entry(hop.short_channel_id)
811                                         .or_insert_with(ChannelLiquidity::new)
812                                         .as_directed_mut(source, &target, capacity_msat, liquidity_offset_half_life)
813                                         .successful(amount_msat);
814                         }
815                 }
816         }
817 }
818
819 mod approx {
820         const BITS: u32 = 64;
821         const HIGHEST_BIT: u32 = BITS - 1;
822         const LOWER_BITS: u32 = 4;
823         const LOWER_BITS_BOUND: u64 = 1 << LOWER_BITS;
824         const LOWER_BITMASK: u64 = (1 << LOWER_BITS) - 1;
825
826         /// Look-up table for `log10(x) * 1024` where row `i` is used for each `x` having `i` as the
827         /// most significant bit. The next 4 bits of `x`, if applicable, are used for the second index.
828         const LOG10_TIMES_1024: [[u16; LOWER_BITS_BOUND as usize]; BITS as usize] = [
829                 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
830                 [308, 308, 308, 308, 308, 308, 308, 308, 489, 489, 489, 489, 489, 489, 489, 489],
831                 [617, 617, 617, 617, 716, 716, 716, 716, 797, 797, 797, 797, 865, 865, 865, 865],
832                 [925, 925, 977, 977, 1024, 1024, 1066, 1066, 1105, 1105, 1141, 1141, 1174, 1174, 1204, 1204],
833                 [1233, 1260, 1285, 1309, 1332, 1354, 1375, 1394, 1413, 1431, 1449, 1466, 1482, 1497, 1513, 1527],
834                 [1541, 1568, 1594, 1618, 1641, 1662, 1683, 1703, 1722, 1740, 1757, 1774, 1790, 1806, 1821, 1835],
835                 [1850, 1876, 1902, 1926, 1949, 1970, 1991, 2011, 2030, 2048, 2065, 2082, 2098, 2114, 2129, 2144],
836                 [2158, 2185, 2210, 2234, 2257, 2279, 2299, 2319, 2338, 2356, 2374, 2390, 2407, 2422, 2437, 2452],
837                 [2466, 2493, 2518, 2542, 2565, 2587, 2608, 2627, 2646, 2665, 2682, 2699, 2715, 2731, 2746, 2760],
838                 [2774, 2801, 2827, 2851, 2874, 2895, 2916, 2936, 2955, 2973, 2990, 3007, 3023, 3039, 3054, 3068],
839                 [3083, 3110, 3135, 3159, 3182, 3203, 3224, 3244, 3263, 3281, 3298, 3315, 3331, 3347, 3362, 3377],
840                 [3391, 3418, 3443, 3467, 3490, 3512, 3532, 3552, 3571, 3589, 3607, 3623, 3640, 3655, 3670, 3685],
841                 [3699, 3726, 3751, 3775, 3798, 3820, 3841, 3860, 3879, 3898, 3915, 3932, 3948, 3964, 3979, 3993],
842                 [4007, 4034, 4060, 4084, 4107, 4128, 4149, 4169, 4188, 4206, 4223, 4240, 4256, 4272, 4287, 4301],
843                 [4316, 4343, 4368, 4392, 4415, 4436, 4457, 4477, 4496, 4514, 4531, 4548, 4564, 4580, 4595, 4610],
844                 [4624, 4651, 4676, 4700, 4723, 4745, 4765, 4785, 4804, 4822, 4840, 4857, 4873, 4888, 4903, 4918],
845                 [4932, 4959, 4984, 5009, 5031, 5053, 5074, 5093, 5112, 5131, 5148, 5165, 5181, 5197, 5212, 5226],
846                 [5240, 5267, 5293, 5317, 5340, 5361, 5382, 5402, 5421, 5439, 5456, 5473, 5489, 5505, 5520, 5534],
847                 [5549, 5576, 5601, 5625, 5648, 5670, 5690, 5710, 5729, 5747, 5764, 5781, 5797, 5813, 5828, 5843],
848                 [5857, 5884, 5909, 5933, 5956, 5978, 5998, 6018, 6037, 6055, 6073, 6090, 6106, 6121, 6136, 6151],
849                 [6165, 6192, 6217, 6242, 6264, 6286, 6307, 6326, 6345, 6364, 6381, 6398, 6414, 6430, 6445, 6459],
850                 [6473, 6500, 6526, 6550, 6573, 6594, 6615, 6635, 6654, 6672, 6689, 6706, 6722, 6738, 6753, 6767],
851                 [6782, 6809, 6834, 6858, 6881, 6903, 6923, 6943, 6962, 6980, 6998, 7014, 7030, 7046, 7061, 7076],
852                 [7090, 7117, 7142, 7166, 7189, 7211, 7231, 7251, 7270, 7288, 7306, 7323, 7339, 7354, 7369, 7384],
853                 [7398, 7425, 7450, 7475, 7497, 7519, 7540, 7560, 7578, 7597, 7614, 7631, 7647, 7663, 7678, 7692],
854                 [7706, 7733, 7759, 7783, 7806, 7827, 7848, 7868, 7887, 7905, 7922, 7939, 7955, 7971, 7986, 8001],
855                 [8015, 8042, 8067, 8091, 8114, 8136, 8156, 8176, 8195, 8213, 8231, 8247, 8263, 8279, 8294, 8309],
856                 [8323, 8350, 8375, 8399, 8422, 8444, 8464, 8484, 8503, 8521, 8539, 8556, 8572, 8587, 8602, 8617],
857                 [8631, 8658, 8684, 8708, 8730, 8752, 8773, 8793, 8811, 8830, 8847, 8864, 8880, 8896, 8911, 8925],
858                 [8939, 8966, 8992, 9016, 9039, 9060, 9081, 9101, 9120, 9138, 9155, 9172, 9188, 9204, 9219, 9234],
859                 [9248, 9275, 9300, 9324, 9347, 9369, 9389, 9409, 9428, 9446, 9464, 9480, 9497, 9512, 9527, 9542],
860                 [9556, 9583, 9608, 9632, 9655, 9677, 9698, 9717, 9736, 9754, 9772, 9789, 9805, 9820, 9835, 9850],
861                 [9864, 9891, 9917, 9941, 9963, 9985, 10006, 10026, 10044, 10063, 10080, 10097, 10113, 10129, 10144, 10158],
862                 [10172, 10199, 10225, 10249, 10272, 10293, 10314, 10334, 10353, 10371, 10388, 10405, 10421, 10437, 10452, 10467],
863                 [10481, 10508, 10533, 10557, 10580, 10602, 10622, 10642, 10661, 10679, 10697, 10713, 10730, 10745, 10760, 10775],
864                 [10789, 10816, 10841, 10865, 10888, 10910, 10931, 10950, 10969, 10987, 11005, 11022, 11038, 11053, 11068, 11083],
865                 [11097, 11124, 11150, 11174, 11196, 11218, 11239, 11259, 11277, 11296, 11313, 11330, 11346, 11362, 11377, 11391],
866                 [11405, 11432, 11458, 11482, 11505, 11526, 11547, 11567, 11586, 11604, 11621, 11638, 11654, 11670, 11685, 11700],
867                 [11714, 11741, 11766, 11790, 11813, 11835, 11855, 11875, 11894, 11912, 11930, 11946, 11963, 11978, 11993, 12008],
868                 [12022, 12049, 12074, 12098, 12121, 12143, 12164, 12183, 12202, 12220, 12238, 12255, 12271, 12286, 12301, 12316],
869                 [12330, 12357, 12383, 12407, 12429, 12451, 12472, 12492, 12511, 12529, 12546, 12563, 12579, 12595, 12610, 12624],
870                 [12638, 12665, 12691, 12715, 12738, 12759, 12780, 12800, 12819, 12837, 12854, 12871, 12887, 12903, 12918, 12933],
871                 [12947, 12974, 12999, 13023, 13046, 13068, 13088, 13108, 13127, 13145, 13163, 13179, 13196, 13211, 13226, 13241],
872                 [13255, 13282, 13307, 13331, 13354, 13376, 13397, 13416, 13435, 13453, 13471, 13488, 13504, 13519, 13535, 13549],
873                 [13563, 13590, 13616, 13640, 13662, 13684, 13705, 13725, 13744, 13762, 13779, 13796, 13812, 13828, 13843, 13857],
874                 [13871, 13898, 13924, 13948, 13971, 13992, 14013, 14033, 14052, 14070, 14087, 14104, 14120, 14136, 14151, 14166],
875                 [14180, 14207, 14232, 14256, 14279, 14301, 14321, 14341, 14360, 14378, 14396, 14412, 14429, 14444, 14459, 14474],
876                 [14488, 14515, 14540, 14564, 14587, 14609, 14630, 14649, 14668, 14686, 14704, 14721, 14737, 14752, 14768, 14782],
877                 [14796, 14823, 14849, 14873, 14895, 14917, 14938, 14958, 14977, 14995, 15012, 15029, 15045, 15061, 15076, 15090],
878                 [15104, 15131, 15157, 15181, 15204, 15225, 15246, 15266, 15285, 15303, 15320, 15337, 15353, 15369, 15384, 15399],
879                 [15413, 15440, 15465, 15489, 15512, 15534, 15554, 15574, 15593, 15611, 15629, 15645, 15662, 15677, 15692, 15707],
880                 [15721, 15748, 15773, 15797, 15820, 15842, 15863, 15882, 15901, 15919, 15937, 15954, 15970, 15985, 16001, 16015],
881                 [16029, 16056, 16082, 16106, 16128, 16150, 16171, 16191, 16210, 16228, 16245, 16262, 16278, 16294, 16309, 16323],
882                 [16337, 16364, 16390, 16414, 16437, 16458, 16479, 16499, 16518, 16536, 16553, 16570, 16586, 16602, 16617, 16632],
883                 [16646, 16673, 16698, 16722, 16745, 16767, 16787, 16807, 16826, 16844, 16862, 16878, 16895, 16910, 16925, 16940],
884                 [16954, 16981, 17006, 17030, 17053, 17075, 17096, 17115, 17134, 17152, 17170, 17187, 17203, 17218, 17234, 17248],
885                 [17262, 17289, 17315, 17339, 17361, 17383, 17404, 17424, 17443, 17461, 17478, 17495, 17511, 17527, 17542, 17556],
886                 [17571, 17597, 17623, 17647, 17670, 17691, 17712, 17732, 17751, 17769, 17786, 17803, 17819, 17835, 17850, 17865],
887                 [17879, 17906, 17931, 17955, 17978, 18000, 18020, 18040, 18059, 18077, 18095, 18111, 18128, 18143, 18158, 18173],
888                 [18187, 18214, 18239, 18263, 18286, 18308, 18329, 18348, 18367, 18385, 18403, 18420, 18436, 18452, 18467, 18481],
889                 [18495, 18522, 18548, 18572, 18595, 18616, 18637, 18657, 18676, 18694, 18711, 18728, 18744, 18760, 18775, 18789],
890                 [18804, 18830, 18856, 18880, 18903, 18924, 18945, 18965, 18984, 19002, 19019, 19036, 19052, 19068, 19083, 19098],
891                 [19112, 19139, 19164, 19188, 19211, 19233, 19253, 19273, 19292, 19310, 19328, 19344, 19361, 19376, 19391, 19406],
892                 [19420, 19447, 19472, 19496, 19519, 19541, 19562, 19581, 19600, 19619, 19636, 19653, 19669, 19685, 19700, 19714],
893         ];
894
895         /// Approximate `log10(numerator / denominator) * 1024` using a look-up table.
896         #[inline]
897         pub fn negative_log10_times_1024(numerator: u64, denominator: u64) -> u64 {
898                 // Multiply the -1 through to avoid needing to use signed numbers.
899                 (log10_times_1024(denominator) - log10_times_1024(numerator)) as u64
900         }
901
902         #[inline]
903         fn log10_times_1024(x: u64) -> u16 {
904                 debug_assert_ne!(x, 0);
905                 let most_significant_bit = HIGHEST_BIT - x.leading_zeros();
906                 let lower_bits = (x >> most_significant_bit.saturating_sub(LOWER_BITS)) & LOWER_BITMASK;
907                 LOG10_TIMES_1024[most_significant_bit as usize][lower_bits as usize]
908         }
909
910         #[cfg(test)]
911         mod tests {
912                 use super::*;
913
914                 #[test]
915                 fn prints_negative_log10_times_1024_lookup_table() {
916                         for msb in 0..BITS {
917                                 for i in 0..LOWER_BITS_BOUND {
918                                         let x = ((LOWER_BITS_BOUND + i) << (HIGHEST_BIT - LOWER_BITS)) >> (HIGHEST_BIT - msb);
919                                         let log10_times_1024 = ((x as f64).log10() * 1024.0).round() as u16;
920                                         assert_eq!(log10_times_1024, LOG10_TIMES_1024[msb as usize][i as usize]);
921
922                                         if i % LOWER_BITS_BOUND == 0 {
923                                                 print!("\t\t[{}, ", log10_times_1024);
924                                         } else if i % LOWER_BITS_BOUND == LOWER_BITS_BOUND - 1 {
925                                                 println!("{}],", log10_times_1024);
926                                         } else {
927                                                 print!("{}, ", log10_times_1024);
928                                         }
929                                 }
930                         }
931                 }
932         }
933 }
934
935 impl<G: Deref<Target = NetworkGraph>, T: Time> Writeable for ProbabilisticScorerUsingTime<G, T> {
936         #[inline]
937         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
938                 write_tlv_fields!(w, {
939                         (0, self.channel_liquidities, required)
940                 });
941                 Ok(())
942         }
943 }
944
945 impl<G: Deref<Target = NetworkGraph>, T: Time>
946 ReadableArgs<(ProbabilisticScoringParameters, G)> for ProbabilisticScorerUsingTime<G, T> {
947         #[inline]
948         fn read<R: Read>(
949                 r: &mut R, args: (ProbabilisticScoringParameters, G)
950         ) -> Result<Self, DecodeError> {
951                 let (params, network_graph) = args;
952                 let mut channel_liquidities = HashMap::new();
953                 read_tlv_fields!(r, {
954                         (0, channel_liquidities, required)
955                 });
956                 Ok(Self {
957                         params,
958                         network_graph,
959                         channel_liquidities,
960                 })
961         }
962 }
963
964 impl<T: Time> Writeable for ChannelLiquidity<T> {
965         #[inline]
966         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
967                 let duration_since_epoch = T::duration_since_epoch() - self.last_updated.elapsed();
968                 write_tlv_fields!(w, {
969                         (0, self.min_liquidity_offset_msat, required),
970                         (2, self.max_liquidity_offset_msat, required),
971                         (4, duration_since_epoch, required),
972                 });
973                 Ok(())
974         }
975 }
976
977 impl<T: Time> Readable for ChannelLiquidity<T> {
978         #[inline]
979         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
980                 let mut min_liquidity_offset_msat = 0;
981                 let mut max_liquidity_offset_msat = 0;
982                 let mut duration_since_epoch = Duration::from_secs(0);
983                 read_tlv_fields!(r, {
984                         (0, min_liquidity_offset_msat, required),
985                         (2, max_liquidity_offset_msat, required),
986                         (4, duration_since_epoch, required),
987                 });
988                 Ok(Self {
989                         min_liquidity_offset_msat,
990                         max_liquidity_offset_msat,
991                         last_updated: T::now() - (T::duration_since_epoch() - duration_since_epoch),
992                 })
993         }
994 }
995
996 pub(crate) mod time {
997         use core::ops::Sub;
998         use core::time::Duration;
999         /// A measurement of time.
1000         pub trait Time: Copy + Sub<Duration, Output = Self> where Self: Sized {
1001                 /// Returns an instance corresponding to the current moment.
1002                 fn now() -> Self;
1003
1004                 /// Returns the amount of time elapsed since `self` was created.
1005                 fn elapsed(&self) -> Duration;
1006
1007                 /// Returns the amount of time passed between `earlier` and `self`.
1008                 fn duration_since(&self, earlier: Self) -> Duration;
1009
1010                 /// Returns the amount of time passed since the beginning of [`Time`].
1011                 ///
1012                 /// Used during (de-)serialization.
1013                 fn duration_since_epoch() -> Duration;
1014         }
1015
1016         /// A state in which time has no meaning.
1017         #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1018         pub struct Eternity;
1019
1020         #[cfg(not(feature = "no-std"))]
1021         impl Time for std::time::Instant {
1022                 fn now() -> Self {
1023                         std::time::Instant::now()
1024                 }
1025
1026                 fn duration_since(&self, earlier: Self) -> Duration {
1027                         self.duration_since(earlier)
1028                 }
1029
1030                 fn duration_since_epoch() -> Duration {
1031                         use std::time::SystemTime;
1032                         SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).unwrap()
1033                 }
1034
1035                 fn elapsed(&self) -> Duration {
1036                         std::time::Instant::elapsed(self)
1037                 }
1038         }
1039
1040         impl Time for Eternity {
1041                 fn now() -> Self {
1042                         Self
1043                 }
1044
1045                 fn duration_since(&self, _earlier: Self) -> Duration {
1046                         Duration::from_secs(0)
1047                 }
1048
1049                 fn duration_since_epoch() -> Duration {
1050                         Duration::from_secs(0)
1051                 }
1052
1053                 fn elapsed(&self) -> Duration {
1054                         Duration::from_secs(0)
1055                 }
1056         }
1057
1058         impl Sub<Duration> for Eternity {
1059                 type Output = Self;
1060
1061                 fn sub(self, _other: Duration) -> Self {
1062                         self
1063                 }
1064         }
1065 }
1066
1067 pub(crate) use self::time::Time;
1068
1069 #[cfg(test)]
1070 mod tests {
1071         use super::{ChannelLiquidity, ProbabilisticScoringParameters, ProbabilisticScorerUsingTime, ScoringParameters, ScorerUsingTime, Time};
1072         use super::time::Eternity;
1073
1074         use ln::features::{ChannelFeatures, NodeFeatures};
1075         use ln::msgs::{ChannelAnnouncement, ChannelUpdate, OptionalField, UnsignedChannelAnnouncement, UnsignedChannelUpdate};
1076         use routing::scoring::Score;
1077         use routing::network_graph::{NetworkGraph, NodeId};
1078         use routing::router::RouteHop;
1079         use util::ser::{Readable, ReadableArgs, Writeable};
1080
1081         use bitcoin::blockdata::constants::genesis_block;
1082         use bitcoin::hashes::Hash;
1083         use bitcoin::hashes::sha256d::Hash as Sha256dHash;
1084         use bitcoin::network::constants::Network;
1085         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
1086         use core::cell::Cell;
1087         use core::ops::Sub;
1088         use core::time::Duration;
1089         use io;
1090
1091         // `Time` tests
1092
1093         /// Time that can be advanced manually in tests.
1094         #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1095         struct SinceEpoch(Duration);
1096
1097         impl SinceEpoch {
1098                 thread_local! {
1099                         static ELAPSED: Cell<Duration> = core::cell::Cell::new(Duration::from_secs(0));
1100                 }
1101
1102                 fn advance(duration: Duration) {
1103                         Self::ELAPSED.with(|elapsed| elapsed.set(elapsed.get() + duration))
1104                 }
1105         }
1106
1107         impl Time for SinceEpoch {
1108                 fn now() -> Self {
1109                         Self(Self::duration_since_epoch())
1110                 }
1111
1112                 fn duration_since(&self, earlier: Self) -> Duration {
1113                         self.0 - earlier.0
1114                 }
1115
1116                 fn duration_since_epoch() -> Duration {
1117                         Self::ELAPSED.with(|elapsed| elapsed.get())
1118                 }
1119
1120                 fn elapsed(&self) -> Duration {
1121                         Self::duration_since_epoch() - self.0
1122                 }
1123         }
1124
1125         impl Sub<Duration> for SinceEpoch {
1126                 type Output = Self;
1127
1128                 fn sub(self, other: Duration) -> Self {
1129                         Self(self.0 - other)
1130                 }
1131         }
1132
1133         #[test]
1134         fn time_passes_when_advanced() {
1135                 let now = SinceEpoch::now();
1136                 assert_eq!(now.elapsed(), Duration::from_secs(0));
1137
1138                 SinceEpoch::advance(Duration::from_secs(1));
1139                 SinceEpoch::advance(Duration::from_secs(1));
1140
1141                 let elapsed = now.elapsed();
1142                 let later = SinceEpoch::now();
1143
1144                 assert_eq!(elapsed, Duration::from_secs(2));
1145                 assert_eq!(later - elapsed, now);
1146         }
1147
1148         #[test]
1149         fn time_never_passes_in_an_eternity() {
1150                 let now = Eternity::now();
1151                 let elapsed = now.elapsed();
1152                 let later = Eternity::now();
1153
1154                 assert_eq!(now.elapsed(), Duration::from_secs(0));
1155                 assert_eq!(later - elapsed, now);
1156         }
1157
1158         // `Scorer` tests
1159
1160         /// A scorer for testing with time that can be manually advanced.
1161         type Scorer = ScorerUsingTime::<SinceEpoch>;
1162
1163         fn source_privkey() -> SecretKey {
1164                 SecretKey::from_slice(&[42; 32]).unwrap()
1165         }
1166
1167         fn target_privkey() -> SecretKey {
1168                 SecretKey::from_slice(&[43; 32]).unwrap()
1169         }
1170
1171         fn source_pubkey() -> PublicKey {
1172                 let secp_ctx = Secp256k1::new();
1173                 PublicKey::from_secret_key(&secp_ctx, &source_privkey())
1174         }
1175
1176         fn target_pubkey() -> PublicKey {
1177                 let secp_ctx = Secp256k1::new();
1178                 PublicKey::from_secret_key(&secp_ctx, &target_privkey())
1179         }
1180
1181         fn source_node_id() -> NodeId {
1182                 NodeId::from_pubkey(&source_pubkey())
1183         }
1184
1185         fn target_node_id() -> NodeId {
1186                 NodeId::from_pubkey(&target_pubkey())
1187         }
1188
1189         #[test]
1190         fn penalizes_without_channel_failures() {
1191                 let scorer = Scorer::new(ScoringParameters {
1192                         base_penalty_msat: 1_000,
1193                         failure_penalty_msat: 512,
1194                         failure_penalty_half_life: Duration::from_secs(1),
1195                         overuse_penalty_start_1024th: 1024,
1196                         overuse_penalty_msat_per_1024th: 0,
1197                 });
1198                 let source = source_node_id();
1199                 let target = target_node_id();
1200                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1201
1202                 SinceEpoch::advance(Duration::from_secs(1));
1203                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1204         }
1205
1206         #[test]
1207         fn accumulates_channel_failure_penalties() {
1208                 let mut scorer = Scorer::new(ScoringParameters {
1209                         base_penalty_msat: 1_000,
1210                         failure_penalty_msat: 64,
1211                         failure_penalty_half_life: Duration::from_secs(10),
1212                         overuse_penalty_start_1024th: 1024,
1213                         overuse_penalty_msat_per_1024th: 0,
1214                 });
1215                 let source = source_node_id();
1216                 let target = target_node_id();
1217                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1218
1219                 scorer.payment_path_failed(&[], 42);
1220                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_064);
1221
1222                 scorer.payment_path_failed(&[], 42);
1223                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_128);
1224
1225                 scorer.payment_path_failed(&[], 42);
1226                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_192);
1227         }
1228
1229         #[test]
1230         fn decays_channel_failure_penalties_over_time() {
1231                 let mut scorer = Scorer::new(ScoringParameters {
1232                         base_penalty_msat: 1_000,
1233                         failure_penalty_msat: 512,
1234                         failure_penalty_half_life: Duration::from_secs(10),
1235                         overuse_penalty_start_1024th: 1024,
1236                         overuse_penalty_msat_per_1024th: 0,
1237                 });
1238                 let source = source_node_id();
1239                 let target = target_node_id();
1240                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1241
1242                 scorer.payment_path_failed(&[], 42);
1243                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_512);
1244
1245                 SinceEpoch::advance(Duration::from_secs(9));
1246                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_512);
1247
1248                 SinceEpoch::advance(Duration::from_secs(1));
1249                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_256);
1250
1251                 SinceEpoch::advance(Duration::from_secs(10 * 8));
1252                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_001);
1253
1254                 SinceEpoch::advance(Duration::from_secs(10));
1255                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1256
1257                 SinceEpoch::advance(Duration::from_secs(10));
1258                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1259         }
1260
1261         #[test]
1262         fn decays_channel_failure_penalties_without_shift_overflow() {
1263                 let mut scorer = Scorer::new(ScoringParameters {
1264                         base_penalty_msat: 1_000,
1265                         failure_penalty_msat: 512,
1266                         failure_penalty_half_life: Duration::from_secs(10),
1267                         overuse_penalty_start_1024th: 1024,
1268                         overuse_penalty_msat_per_1024th: 0,
1269                 });
1270                 let source = source_node_id();
1271                 let target = target_node_id();
1272                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1273
1274                 scorer.payment_path_failed(&[], 42);
1275                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_512);
1276
1277                 // An unchecked right shift 64 bits or more in ChannelFailure::decayed_penalty_msat would
1278                 // cause an overflow.
1279                 SinceEpoch::advance(Duration::from_secs(10 * 64));
1280                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1281
1282                 SinceEpoch::advance(Duration::from_secs(10));
1283                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1284         }
1285
1286         #[test]
1287         fn accumulates_channel_failure_penalties_after_decay() {
1288                 let mut scorer = Scorer::new(ScoringParameters {
1289                         base_penalty_msat: 1_000,
1290                         failure_penalty_msat: 512,
1291                         failure_penalty_half_life: Duration::from_secs(10),
1292                         overuse_penalty_start_1024th: 1024,
1293                         overuse_penalty_msat_per_1024th: 0,
1294                 });
1295                 let source = source_node_id();
1296                 let target = target_node_id();
1297                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1298
1299                 scorer.payment_path_failed(&[], 42);
1300                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_512);
1301
1302                 SinceEpoch::advance(Duration::from_secs(10));
1303                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_256);
1304
1305                 scorer.payment_path_failed(&[], 42);
1306                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_768);
1307
1308                 SinceEpoch::advance(Duration::from_secs(10));
1309                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_384);
1310         }
1311
1312         #[test]
1313         fn reduces_channel_failure_penalties_after_success() {
1314                 let mut scorer = Scorer::new(ScoringParameters {
1315                         base_penalty_msat: 1_000,
1316                         failure_penalty_msat: 512,
1317                         failure_penalty_half_life: Duration::from_secs(10),
1318                         overuse_penalty_start_1024th: 1024,
1319                         overuse_penalty_msat_per_1024th: 0,
1320                 });
1321                 let source = source_node_id();
1322                 let target = target_node_id();
1323                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_000);
1324
1325                 scorer.payment_path_failed(&[], 42);
1326                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_512);
1327
1328                 SinceEpoch::advance(Duration::from_secs(10));
1329                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_256);
1330
1331                 let hop = RouteHop {
1332                         pubkey: PublicKey::from_slice(target.as_slice()).unwrap(),
1333                         node_features: NodeFeatures::known(),
1334                         short_channel_id: 42,
1335                         channel_features: ChannelFeatures::known(),
1336                         fee_msat: 1,
1337                         cltv_expiry_delta: 18,
1338                 };
1339                 scorer.payment_path_successful(&[&hop]);
1340                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_128);
1341
1342                 SinceEpoch::advance(Duration::from_secs(10));
1343                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_064);
1344         }
1345
1346         #[test]
1347         fn restores_persisted_channel_failure_penalties() {
1348                 let mut scorer = Scorer::new(ScoringParameters {
1349                         base_penalty_msat: 1_000,
1350                         failure_penalty_msat: 512,
1351                         failure_penalty_half_life: Duration::from_secs(10),
1352                         overuse_penalty_start_1024th: 1024,
1353                         overuse_penalty_msat_per_1024th: 0,
1354                 });
1355                 let source = source_node_id();
1356                 let target = target_node_id();
1357
1358                 scorer.payment_path_failed(&[], 42);
1359                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_512);
1360
1361                 SinceEpoch::advance(Duration::from_secs(10));
1362                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_256);
1363
1364                 scorer.payment_path_failed(&[], 43);
1365                 assert_eq!(scorer.channel_penalty_msat(43, 1, 1, &source, &target), 1_512);
1366
1367                 let mut serialized_scorer = Vec::new();
1368                 scorer.write(&mut serialized_scorer).unwrap();
1369
1370                 let deserialized_scorer = <Scorer>::read(&mut io::Cursor::new(&serialized_scorer)).unwrap();
1371                 assert_eq!(deserialized_scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_256);
1372                 assert_eq!(deserialized_scorer.channel_penalty_msat(43, 1, 1, &source, &target), 1_512);
1373         }
1374
1375         #[test]
1376         fn decays_persisted_channel_failure_penalties() {
1377                 let mut scorer = Scorer::new(ScoringParameters {
1378                         base_penalty_msat: 1_000,
1379                         failure_penalty_msat: 512,
1380                         failure_penalty_half_life: Duration::from_secs(10),
1381                         overuse_penalty_start_1024th: 1024,
1382                         overuse_penalty_msat_per_1024th: 0,
1383                 });
1384                 let source = source_node_id();
1385                 let target = target_node_id();
1386
1387                 scorer.payment_path_failed(&[], 42);
1388                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_512);
1389
1390                 let mut serialized_scorer = Vec::new();
1391                 scorer.write(&mut serialized_scorer).unwrap();
1392
1393                 SinceEpoch::advance(Duration::from_secs(10));
1394
1395                 let deserialized_scorer = <Scorer>::read(&mut io::Cursor::new(&serialized_scorer)).unwrap();
1396                 assert_eq!(deserialized_scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_256);
1397
1398                 SinceEpoch::advance(Duration::from_secs(10));
1399                 assert_eq!(deserialized_scorer.channel_penalty_msat(42, 1, 1, &source, &target), 1_128);
1400         }
1401
1402         #[test]
1403         fn charges_per_1024th_penalty() {
1404                 let scorer = Scorer::new(ScoringParameters {
1405                         base_penalty_msat: 0,
1406                         failure_penalty_msat: 0,
1407                         failure_penalty_half_life: Duration::from_secs(0),
1408                         overuse_penalty_start_1024th: 256,
1409                         overuse_penalty_msat_per_1024th: 100,
1410                 });
1411                 let source = source_node_id();
1412                 let target = target_node_id();
1413
1414                 assert_eq!(scorer.channel_penalty_msat(42, 1_000, 1_024_000, &source, &target), 0);
1415                 assert_eq!(scorer.channel_penalty_msat(42, 256_999, 1_024_000, &source, &target), 0);
1416                 assert_eq!(scorer.channel_penalty_msat(42, 257_000, 1_024_000, &source, &target), 100);
1417                 assert_eq!(scorer.channel_penalty_msat(42, 258_000, 1_024_000, &source, &target), 200);
1418                 assert_eq!(scorer.channel_penalty_msat(42, 512_000, 1_024_000, &source, &target), 256 * 100);
1419         }
1420
1421         // `ProbabilisticScorer` tests
1422
1423         /// A probabilistic scorer for testing with time that can be manually advanced.
1424         type ProbabilisticScorer<'a> = ProbabilisticScorerUsingTime::<&'a NetworkGraph, SinceEpoch>;
1425
1426         fn sender_privkey() -> SecretKey {
1427                 SecretKey::from_slice(&[41; 32]).unwrap()
1428         }
1429
1430         fn recipient_privkey() -> SecretKey {
1431                 SecretKey::from_slice(&[45; 32]).unwrap()
1432         }
1433
1434         fn sender_pubkey() -> PublicKey {
1435                 let secp_ctx = Secp256k1::new();
1436                 PublicKey::from_secret_key(&secp_ctx, &sender_privkey())
1437         }
1438
1439         fn recipient_pubkey() -> PublicKey {
1440                 let secp_ctx = Secp256k1::new();
1441                 PublicKey::from_secret_key(&secp_ctx, &recipient_privkey())
1442         }
1443
1444         fn sender_node_id() -> NodeId {
1445                 NodeId::from_pubkey(&sender_pubkey())
1446         }
1447
1448         fn recipient_node_id() -> NodeId {
1449                 NodeId::from_pubkey(&recipient_pubkey())
1450         }
1451
1452         fn network_graph() -> NetworkGraph {
1453                 let genesis_hash = genesis_block(Network::Testnet).header.block_hash();
1454                 let mut network_graph = NetworkGraph::new(genesis_hash);
1455                 add_channel(&mut network_graph, 42, source_privkey(), target_privkey());
1456                 add_channel(&mut network_graph, 43, target_privkey(), recipient_privkey());
1457
1458                 network_graph
1459         }
1460
1461         fn add_channel(
1462                 network_graph: &mut NetworkGraph, short_channel_id: u64, node_1_key: SecretKey,
1463                 node_2_key: SecretKey
1464         ) {
1465                 let genesis_hash = genesis_block(Network::Testnet).header.block_hash();
1466                 let node_1_secret = &SecretKey::from_slice(&[39; 32]).unwrap();
1467                 let node_2_secret = &SecretKey::from_slice(&[40; 32]).unwrap();
1468                 let secp_ctx = Secp256k1::new();
1469                 let unsigned_announcement = UnsignedChannelAnnouncement {
1470                         features: ChannelFeatures::known(),
1471                         chain_hash: genesis_hash,
1472                         short_channel_id,
1473                         node_id_1: PublicKey::from_secret_key(&secp_ctx, &node_1_key),
1474                         node_id_2: PublicKey::from_secret_key(&secp_ctx, &node_2_key),
1475                         bitcoin_key_1: PublicKey::from_secret_key(&secp_ctx, &node_1_secret),
1476                         bitcoin_key_2: PublicKey::from_secret_key(&secp_ctx, &node_2_secret),
1477                         excess_data: Vec::new(),
1478                 };
1479                 let msghash = hash_to_message!(&Sha256dHash::hash(&unsigned_announcement.encode()[..])[..]);
1480                 let signed_announcement = ChannelAnnouncement {
1481                         node_signature_1: secp_ctx.sign(&msghash, &node_1_key),
1482                         node_signature_2: secp_ctx.sign(&msghash, &node_2_key),
1483                         bitcoin_signature_1: secp_ctx.sign(&msghash, &node_1_secret),
1484                         bitcoin_signature_2: secp_ctx.sign(&msghash, &node_2_secret),
1485                         contents: unsigned_announcement,
1486                 };
1487                 let chain_source: Option<&::util::test_utils::TestChainSource> = None;
1488                 network_graph.update_channel_from_announcement(
1489                         &signed_announcement, &chain_source, &secp_ctx).unwrap();
1490                 update_channel(network_graph, short_channel_id, node_1_key, 0);
1491                 update_channel(network_graph, short_channel_id, node_2_key, 1);
1492         }
1493
1494         fn update_channel(
1495                 network_graph: &mut NetworkGraph, short_channel_id: u64, node_key: SecretKey, flags: u8
1496         ) {
1497                 let genesis_hash = genesis_block(Network::Testnet).header.block_hash();
1498                 let secp_ctx = Secp256k1::new();
1499                 let unsigned_update = UnsignedChannelUpdate {
1500                         chain_hash: genesis_hash,
1501                         short_channel_id,
1502                         timestamp: 100,
1503                         flags,
1504                         cltv_expiry_delta: 18,
1505                         htlc_minimum_msat: 0,
1506                         htlc_maximum_msat: OptionalField::Present(1_000),
1507                         fee_base_msat: 1,
1508                         fee_proportional_millionths: 0,
1509                         excess_data: Vec::new(),
1510                 };
1511                 let msghash = hash_to_message!(&Sha256dHash::hash(&unsigned_update.encode()[..])[..]);
1512                 let signed_update = ChannelUpdate {
1513                         signature: secp_ctx.sign(&msghash, &node_key),
1514                         contents: unsigned_update,
1515                 };
1516                 network_graph.update_channel(&signed_update, &secp_ctx).unwrap();
1517         }
1518
1519         fn payment_path_for_amount(amount_msat: u64) -> Vec<RouteHop> {
1520                 vec![
1521                         RouteHop {
1522                                 pubkey: source_pubkey(),
1523                                 node_features: NodeFeatures::known(),
1524                                 short_channel_id: 41,
1525                                 channel_features: ChannelFeatures::known(),
1526                                 fee_msat: 1,
1527                                 cltv_expiry_delta: 18,
1528                         },
1529                         RouteHop {
1530                                 pubkey: target_pubkey(),
1531                                 node_features: NodeFeatures::known(),
1532                                 short_channel_id: 42,
1533                                 channel_features: ChannelFeatures::known(),
1534                                 fee_msat: 2,
1535                                 cltv_expiry_delta: 18,
1536                         },
1537                         RouteHop {
1538                                 pubkey: recipient_pubkey(),
1539                                 node_features: NodeFeatures::known(),
1540                                 short_channel_id: 43,
1541                                 channel_features: ChannelFeatures::known(),
1542                                 fee_msat: amount_msat,
1543                                 cltv_expiry_delta: 18,
1544                         },
1545                 ]
1546         }
1547
1548         #[test]
1549         fn liquidity_bounds_directed_from_lowest_node_id() {
1550                 let last_updated = SinceEpoch::now();
1551                 let network_graph = network_graph();
1552                 let params = ProbabilisticScoringParameters::default();
1553                 let mut scorer = ProbabilisticScorer::new(params, &network_graph)
1554                         .with_channel(42,
1555                                 ChannelLiquidity {
1556                                         min_liquidity_offset_msat: 700, max_liquidity_offset_msat: 100, last_updated
1557                                 })
1558                         .with_channel(43,
1559                                 ChannelLiquidity {
1560                                         min_liquidity_offset_msat: 700, max_liquidity_offset_msat: 100, last_updated
1561                                 });
1562                 let source = source_node_id();
1563                 let target = target_node_id();
1564                 let recipient = recipient_node_id();
1565                 assert!(source > target);
1566                 assert!(target < recipient);
1567
1568                 // Update minimum liquidity.
1569
1570                 let liquidity_offset_half_life = scorer.params.liquidity_offset_half_life;
1571                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1572                         .as_directed(&source, &target, 1_000, liquidity_offset_half_life);
1573                 assert_eq!(liquidity.min_liquidity_msat(), 100);
1574                 assert_eq!(liquidity.max_liquidity_msat(), 300);
1575
1576                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1577                         .as_directed(&target, &source, 1_000, liquidity_offset_half_life);
1578                 assert_eq!(liquidity.min_liquidity_msat(), 700);
1579                 assert_eq!(liquidity.max_liquidity_msat(), 900);
1580
1581                 scorer.channel_liquidities.get_mut(&42).unwrap()
1582                         .as_directed_mut(&source, &target, 1_000, liquidity_offset_half_life)
1583                         .set_min_liquidity_msat(200);
1584
1585                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1586                         .as_directed(&source, &target, 1_000, liquidity_offset_half_life);
1587                 assert_eq!(liquidity.min_liquidity_msat(), 200);
1588                 assert_eq!(liquidity.max_liquidity_msat(), 300);
1589
1590                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1591                         .as_directed(&target, &source, 1_000, liquidity_offset_half_life);
1592                 assert_eq!(liquidity.min_liquidity_msat(), 700);
1593                 assert_eq!(liquidity.max_liquidity_msat(), 800);
1594
1595                 // Update maximum liquidity.
1596
1597                 let liquidity = scorer.channel_liquidities.get(&43).unwrap()
1598                         .as_directed(&target, &recipient, 1_000, liquidity_offset_half_life);
1599                 assert_eq!(liquidity.min_liquidity_msat(), 700);
1600                 assert_eq!(liquidity.max_liquidity_msat(), 900);
1601
1602                 let liquidity = scorer.channel_liquidities.get(&43).unwrap()
1603                         .as_directed(&recipient, &target, 1_000, liquidity_offset_half_life);
1604                 assert_eq!(liquidity.min_liquidity_msat(), 100);
1605                 assert_eq!(liquidity.max_liquidity_msat(), 300);
1606
1607                 scorer.channel_liquidities.get_mut(&43).unwrap()
1608                         .as_directed_mut(&target, &recipient, 1_000, liquidity_offset_half_life)
1609                         .set_max_liquidity_msat(200);
1610
1611                 let liquidity = scorer.channel_liquidities.get(&43).unwrap()
1612                         .as_directed(&target, &recipient, 1_000, liquidity_offset_half_life);
1613                 assert_eq!(liquidity.min_liquidity_msat(), 0);
1614                 assert_eq!(liquidity.max_liquidity_msat(), 200);
1615
1616                 let liquidity = scorer.channel_liquidities.get(&43).unwrap()
1617                         .as_directed(&recipient, &target, 1_000, liquidity_offset_half_life);
1618                 assert_eq!(liquidity.min_liquidity_msat(), 800);
1619                 assert_eq!(liquidity.max_liquidity_msat(), 1000);
1620         }
1621
1622         #[test]
1623         fn resets_liquidity_upper_bound_when_crossed_by_lower_bound() {
1624                 let last_updated = SinceEpoch::now();
1625                 let network_graph = network_graph();
1626                 let params = ProbabilisticScoringParameters::default();
1627                 let mut scorer = ProbabilisticScorer::new(params, &network_graph)
1628                         .with_channel(42,
1629                                 ChannelLiquidity {
1630                                         min_liquidity_offset_msat: 200, max_liquidity_offset_msat: 400, last_updated
1631                                 });
1632                 let source = source_node_id();
1633                 let target = target_node_id();
1634                 assert!(source > target);
1635
1636                 // Check initial bounds.
1637                 let liquidity_offset_half_life = scorer.params.liquidity_offset_half_life;
1638                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1639                         .as_directed(&source, &target, 1_000, liquidity_offset_half_life);
1640                 assert_eq!(liquidity.min_liquidity_msat(), 400);
1641                 assert_eq!(liquidity.max_liquidity_msat(), 800);
1642
1643                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1644                         .as_directed(&target, &source, 1_000, liquidity_offset_half_life);
1645                 assert_eq!(liquidity.min_liquidity_msat(), 200);
1646                 assert_eq!(liquidity.max_liquidity_msat(), 600);
1647
1648                 // Reset from source to target.
1649                 scorer.channel_liquidities.get_mut(&42).unwrap()
1650                         .as_directed_mut(&source, &target, 1_000, liquidity_offset_half_life)
1651                         .set_min_liquidity_msat(900);
1652
1653                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1654                         .as_directed(&source, &target, 1_000, liquidity_offset_half_life);
1655                 assert_eq!(liquidity.min_liquidity_msat(), 900);
1656                 assert_eq!(liquidity.max_liquidity_msat(), 1_000);
1657
1658                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1659                         .as_directed(&target, &source, 1_000, liquidity_offset_half_life);
1660                 assert_eq!(liquidity.min_liquidity_msat(), 0);
1661                 assert_eq!(liquidity.max_liquidity_msat(), 100);
1662
1663                 // Reset from target to source.
1664                 scorer.channel_liquidities.get_mut(&42).unwrap()
1665                         .as_directed_mut(&target, &source, 1_000, liquidity_offset_half_life)
1666                         .set_min_liquidity_msat(400);
1667
1668                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1669                         .as_directed(&source, &target, 1_000, liquidity_offset_half_life);
1670                 assert_eq!(liquidity.min_liquidity_msat(), 0);
1671                 assert_eq!(liquidity.max_liquidity_msat(), 600);
1672
1673                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1674                         .as_directed(&target, &source, 1_000, liquidity_offset_half_life);
1675                 assert_eq!(liquidity.min_liquidity_msat(), 400);
1676                 assert_eq!(liquidity.max_liquidity_msat(), 1_000);
1677         }
1678
1679         #[test]
1680         fn resets_liquidity_lower_bound_when_crossed_by_upper_bound() {
1681                 let last_updated = SinceEpoch::now();
1682                 let network_graph = network_graph();
1683                 let params = ProbabilisticScoringParameters::default();
1684                 let mut scorer = ProbabilisticScorer::new(params, &network_graph)
1685                         .with_channel(42,
1686                                 ChannelLiquidity {
1687                                         min_liquidity_offset_msat: 200, max_liquidity_offset_msat: 400, last_updated
1688                                 });
1689                 let source = source_node_id();
1690                 let target = target_node_id();
1691                 assert!(source > target);
1692
1693                 // Check initial bounds.
1694                 let liquidity_offset_half_life = scorer.params.liquidity_offset_half_life;
1695                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1696                         .as_directed(&source, &target, 1_000, liquidity_offset_half_life);
1697                 assert_eq!(liquidity.min_liquidity_msat(), 400);
1698                 assert_eq!(liquidity.max_liquidity_msat(), 800);
1699
1700                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1701                         .as_directed(&target, &source, 1_000, liquidity_offset_half_life);
1702                 assert_eq!(liquidity.min_liquidity_msat(), 200);
1703                 assert_eq!(liquidity.max_liquidity_msat(), 600);
1704
1705                 // Reset from source to target.
1706                 scorer.channel_liquidities.get_mut(&42).unwrap()
1707                         .as_directed_mut(&source, &target, 1_000, liquidity_offset_half_life)
1708                         .set_max_liquidity_msat(300);
1709
1710                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1711                         .as_directed(&source, &target, 1_000, liquidity_offset_half_life);
1712                 assert_eq!(liquidity.min_liquidity_msat(), 0);
1713                 assert_eq!(liquidity.max_liquidity_msat(), 300);
1714
1715                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1716                         .as_directed(&target, &source, 1_000, liquidity_offset_half_life);
1717                 assert_eq!(liquidity.min_liquidity_msat(), 700);
1718                 assert_eq!(liquidity.max_liquidity_msat(), 1_000);
1719
1720                 // Reset from target to source.
1721                 scorer.channel_liquidities.get_mut(&42).unwrap()
1722                         .as_directed_mut(&target, &source, 1_000, liquidity_offset_half_life)
1723                         .set_max_liquidity_msat(600);
1724
1725                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1726                         .as_directed(&source, &target, 1_000, liquidity_offset_half_life);
1727                 assert_eq!(liquidity.min_liquidity_msat(), 400);
1728                 assert_eq!(liquidity.max_liquidity_msat(), 1_000);
1729
1730                 let liquidity = scorer.channel_liquidities.get(&42).unwrap()
1731                         .as_directed(&target, &source, 1_000, liquidity_offset_half_life);
1732                 assert_eq!(liquidity.min_liquidity_msat(), 0);
1733                 assert_eq!(liquidity.max_liquidity_msat(), 600);
1734         }
1735
1736         #[test]
1737         fn increased_penalty_nearing_liquidity_upper_bound() {
1738                 let network_graph = network_graph();
1739                 let params = ProbabilisticScoringParameters {
1740                         base_penalty_msat: 0, liquidity_penalty_multiplier_msat: 1_000, ..Default::default()
1741                 };
1742                 let scorer = ProbabilisticScorer::new(params, &network_graph);
1743                 let source = source_node_id();
1744                 let target = target_node_id();
1745
1746                 assert_eq!(scorer.channel_penalty_msat(42, 1_024, 1_024_000, &source, &target), 0);
1747                 assert_eq!(scorer.channel_penalty_msat(42, 10_240, 1_024_000, &source, &target), 14);
1748                 assert_eq!(scorer.channel_penalty_msat(42, 102_400, 1_024_000, &source, &target), 43);
1749                 assert_eq!(scorer.channel_penalty_msat(42, 1_024_000, 1_024_000, &source, &target), 2_000);
1750
1751                 assert_eq!(scorer.channel_penalty_msat(42, 128, 1_024, &source, &target), 58);
1752                 assert_eq!(scorer.channel_penalty_msat(42, 256, 1_024, &source, &target), 125);
1753                 assert_eq!(scorer.channel_penalty_msat(42, 374, 1_024, &source, &target), 204);
1754                 assert_eq!(scorer.channel_penalty_msat(42, 512, 1_024, &source, &target), 301);
1755                 assert_eq!(scorer.channel_penalty_msat(42, 640, 1_024, &source, &target), 426);
1756                 assert_eq!(scorer.channel_penalty_msat(42, 768, 1_024, &source, &target), 602);
1757                 assert_eq!(scorer.channel_penalty_msat(42, 896, 1_024, &source, &target), 903);
1758         }
1759
1760         #[test]
1761         fn constant_penalty_outside_liquidity_bounds() {
1762                 let last_updated = SinceEpoch::now();
1763                 let network_graph = network_graph();
1764                 let params = ProbabilisticScoringParameters {
1765                         base_penalty_msat: 0, liquidity_penalty_multiplier_msat: 1_000, ..Default::default()
1766                 };
1767                 let scorer = ProbabilisticScorer::new(params, &network_graph)
1768                         .with_channel(42,
1769                                 ChannelLiquidity {
1770                                         min_liquidity_offset_msat: 40, max_liquidity_offset_msat: 40, last_updated
1771                                 });
1772                 let source = source_node_id();
1773                 let target = target_node_id();
1774
1775                 assert_eq!(scorer.channel_penalty_msat(42, 39, 100, &source, &target), 0);
1776                 assert_ne!(scorer.channel_penalty_msat(42, 50, 100, &source, &target), 0);
1777                 assert_ne!(scorer.channel_penalty_msat(42, 50, 100, &source, &target), 2_000);
1778                 assert_eq!(scorer.channel_penalty_msat(42, 61, 100, &source, &target), 2_000);
1779         }
1780
1781         #[test]
1782         fn does_not_further_penalize_own_channel() {
1783                 let network_graph = network_graph();
1784                 let params = ProbabilisticScoringParameters {
1785                         base_penalty_msat: 0, liquidity_penalty_multiplier_msat: 1_000, ..Default::default()
1786                 };
1787                 let mut scorer = ProbabilisticScorer::new(params, &network_graph);
1788                 let sender = sender_node_id();
1789                 let source = source_node_id();
1790                 let failed_path = payment_path_for_amount(500);
1791                 let successful_path = payment_path_for_amount(200);
1792
1793                 assert_eq!(scorer.channel_penalty_msat(41, 500, 1_000, &sender, &source), 300);
1794
1795                 scorer.payment_path_failed(&failed_path.iter().collect::<Vec<_>>(), 41);
1796                 assert_eq!(scorer.channel_penalty_msat(41, 500, 1_000, &sender, &source), 300);
1797
1798                 scorer.payment_path_successful(&successful_path.iter().collect::<Vec<_>>());
1799                 assert_eq!(scorer.channel_penalty_msat(41, 500, 1_000, &sender, &source), 300);
1800         }
1801
1802         #[test]
1803         fn sets_liquidity_lower_bound_on_downstream_failure() {
1804                 let network_graph = network_graph();
1805                 let params = ProbabilisticScoringParameters {
1806                         base_penalty_msat: 0, liquidity_penalty_multiplier_msat: 1_000, ..Default::default()
1807                 };
1808                 let mut scorer = ProbabilisticScorer::new(params, &network_graph);
1809                 let source = source_node_id();
1810                 let target = target_node_id();
1811                 let path = payment_path_for_amount(500);
1812
1813                 assert_eq!(scorer.channel_penalty_msat(42, 250, 1_000, &source, &target), 128);
1814                 assert_eq!(scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 300);
1815                 assert_eq!(scorer.channel_penalty_msat(42, 750, 1_000, &source, &target), 601);
1816
1817                 scorer.payment_path_failed(&path.iter().collect::<Vec<_>>(), 43);
1818
1819                 assert_eq!(scorer.channel_penalty_msat(42, 250, 1_000, &source, &target), 0);
1820                 assert_eq!(scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 0);
1821                 assert_eq!(scorer.channel_penalty_msat(42, 750, 1_000, &source, &target), 300);
1822         }
1823
1824         #[test]
1825         fn sets_liquidity_upper_bound_on_failure() {
1826                 let network_graph = network_graph();
1827                 let params = ProbabilisticScoringParameters {
1828                         base_penalty_msat: 0, liquidity_penalty_multiplier_msat: 1_000, ..Default::default()
1829                 };
1830                 let mut scorer = ProbabilisticScorer::new(params, &network_graph);
1831                 let source = source_node_id();
1832                 let target = target_node_id();
1833                 let path = payment_path_for_amount(500);
1834
1835                 assert_eq!(scorer.channel_penalty_msat(42, 250, 1_000, &source, &target), 128);
1836                 assert_eq!(scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 300);
1837                 assert_eq!(scorer.channel_penalty_msat(42, 750, 1_000, &source, &target), 601);
1838
1839                 scorer.payment_path_failed(&path.iter().collect::<Vec<_>>(), 42);
1840
1841                 assert_eq!(scorer.channel_penalty_msat(42, 250, 1_000, &source, &target), 300);
1842                 assert_eq!(scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 2_000);
1843                 assert_eq!(scorer.channel_penalty_msat(42, 750, 1_000, &source, &target), 2_000);
1844         }
1845
1846         #[test]
1847         fn reduces_liquidity_upper_bound_along_path_on_success() {
1848                 let network_graph = network_graph();
1849                 let params = ProbabilisticScoringParameters {
1850                         base_penalty_msat: 0, liquidity_penalty_multiplier_msat: 1_000, ..Default::default()
1851                 };
1852                 let mut scorer = ProbabilisticScorer::new(params, &network_graph);
1853                 let sender = sender_node_id();
1854                 let source = source_node_id();
1855                 let target = target_node_id();
1856                 let recipient = recipient_node_id();
1857                 let path = payment_path_for_amount(500);
1858
1859                 assert_eq!(scorer.channel_penalty_msat(41, 250, 1_000, &sender, &source), 128);
1860                 assert_eq!(scorer.channel_penalty_msat(42, 250, 1_000, &source, &target), 128);
1861                 assert_eq!(scorer.channel_penalty_msat(43, 250, 1_000, &target, &recipient), 128);
1862
1863                 scorer.payment_path_successful(&path.iter().collect::<Vec<_>>());
1864
1865                 assert_eq!(scorer.channel_penalty_msat(41, 250, 1_000, &sender, &source), 128);
1866                 assert_eq!(scorer.channel_penalty_msat(42, 250, 1_000, &source, &target), 300);
1867                 assert_eq!(scorer.channel_penalty_msat(43, 250, 1_000, &target, &recipient), 300);
1868         }
1869
1870         #[test]
1871         fn decays_liquidity_bounds_over_time() {
1872                 let network_graph = network_graph();
1873                 let params = ProbabilisticScoringParameters {
1874                         base_penalty_msat: 0,
1875                         liquidity_penalty_multiplier_msat: 1_000,
1876                         liquidity_offset_half_life: Duration::from_secs(10),
1877                 };
1878                 let mut scorer = ProbabilisticScorer::new(params, &network_graph);
1879                 let source = source_node_id();
1880                 let target = target_node_id();
1881
1882                 assert_eq!(scorer.channel_penalty_msat(42, 0, 1_024, &source, &target), 0);
1883                 assert_eq!(scorer.channel_penalty_msat(42, 1_024, 1_024, &source, &target), 2_000);
1884
1885                 scorer.payment_path_failed(&payment_path_for_amount(768).iter().collect::<Vec<_>>(), 42);
1886                 scorer.payment_path_failed(&payment_path_for_amount(128).iter().collect::<Vec<_>>(), 43);
1887
1888                 assert_eq!(scorer.channel_penalty_msat(42, 128, 1_024, &source, &target), 0);
1889                 assert_eq!(scorer.channel_penalty_msat(42, 256, 1_024, &source, &target), 97);
1890                 assert_eq!(scorer.channel_penalty_msat(42, 768, 1_024, &source, &target), 1_409);
1891                 assert_eq!(scorer.channel_penalty_msat(42, 896, 1_024, &source, &target), 2_000);
1892
1893                 SinceEpoch::advance(Duration::from_secs(9));
1894                 assert_eq!(scorer.channel_penalty_msat(42, 128, 1_024, &source, &target), 0);
1895                 assert_eq!(scorer.channel_penalty_msat(42, 256, 1_024, &source, &target), 97);
1896                 assert_eq!(scorer.channel_penalty_msat(42, 768, 1_024, &source, &target), 1_409);
1897                 assert_eq!(scorer.channel_penalty_msat(42, 896, 1_024, &source, &target), 2_000);
1898
1899                 SinceEpoch::advance(Duration::from_secs(1));
1900                 assert_eq!(scorer.channel_penalty_msat(42, 64, 1_024, &source, &target), 0);
1901                 assert_eq!(scorer.channel_penalty_msat(42, 128, 1_024, &source, &target), 34);
1902                 assert_eq!(scorer.channel_penalty_msat(42, 896, 1_024, &source, &target), 1_773);
1903                 assert_eq!(scorer.channel_penalty_msat(42, 960, 1_024, &source, &target), 2_000);
1904
1905                 // Fully decay liquidity lower bound.
1906                 SinceEpoch::advance(Duration::from_secs(10 * 7));
1907                 assert_eq!(scorer.channel_penalty_msat(42, 0, 1_024, &source, &target), 0);
1908                 assert_eq!(scorer.channel_penalty_msat(42, 1, 1_024, &source, &target), 0);
1909                 assert_eq!(scorer.channel_penalty_msat(42, 1_023, 1_024, &source, &target), 2_000);
1910                 assert_eq!(scorer.channel_penalty_msat(42, 1_024, 1_024, &source, &target), 2_000);
1911
1912                 // Fully decay liquidity upper bound.
1913                 SinceEpoch::advance(Duration::from_secs(10));
1914                 assert_eq!(scorer.channel_penalty_msat(42, 0, 1_024, &source, &target), 0);
1915                 assert_eq!(scorer.channel_penalty_msat(42, 1_024, 1_024, &source, &target), 2_000);
1916
1917                 SinceEpoch::advance(Duration::from_secs(10));
1918                 assert_eq!(scorer.channel_penalty_msat(42, 0, 1_024, &source, &target), 0);
1919                 assert_eq!(scorer.channel_penalty_msat(42, 1_024, 1_024, &source, &target), 2_000);
1920         }
1921
1922         #[test]
1923         fn decays_liquidity_bounds_without_shift_overflow() {
1924                 let network_graph = network_graph();
1925                 let params = ProbabilisticScoringParameters {
1926                         base_penalty_msat: 0,
1927                         liquidity_penalty_multiplier_msat: 1_000,
1928                         liquidity_offset_half_life: Duration::from_secs(10),
1929                 };
1930                 let mut scorer = ProbabilisticScorer::new(params, &network_graph);
1931                 let source = source_node_id();
1932                 let target = target_node_id();
1933                 assert_eq!(scorer.channel_penalty_msat(42, 256, 1_024, &source, &target), 125);
1934
1935                 scorer.payment_path_failed(&payment_path_for_amount(512).iter().collect::<Vec<_>>(), 42);
1936                 assert_eq!(scorer.channel_penalty_msat(42, 256, 1_024, &source, &target), 274);
1937
1938                 // An unchecked right shift 64 bits or more in DirectedChannelLiquidity::decayed_offset_msat
1939                 // would cause an overflow.
1940                 SinceEpoch::advance(Duration::from_secs(10 * 64));
1941                 assert_eq!(scorer.channel_penalty_msat(42, 256, 1_024, &source, &target), 125);
1942
1943                 SinceEpoch::advance(Duration::from_secs(10));
1944                 assert_eq!(scorer.channel_penalty_msat(42, 256, 1_024, &source, &target), 125);
1945         }
1946
1947         #[test]
1948         fn restricts_liquidity_bounds_after_decay() {
1949                 let network_graph = network_graph();
1950                 let params = ProbabilisticScoringParameters {
1951                         base_penalty_msat: 0,
1952                         liquidity_penalty_multiplier_msat: 1_000,
1953                         liquidity_offset_half_life: Duration::from_secs(10),
1954                 };
1955                 let mut scorer = ProbabilisticScorer::new(params, &network_graph);
1956                 let source = source_node_id();
1957                 let target = target_node_id();
1958
1959                 assert_eq!(scorer.channel_penalty_msat(42, 512, 1_024, &source, &target), 301);
1960
1961                 // More knowledge gives higher confidence (256, 768), meaning a lower penalty.
1962                 scorer.payment_path_failed(&payment_path_for_amount(768).iter().collect::<Vec<_>>(), 42);
1963                 scorer.payment_path_failed(&payment_path_for_amount(256).iter().collect::<Vec<_>>(), 43);
1964                 assert_eq!(scorer.channel_penalty_msat(42, 512, 1_024, &source, &target), 274);
1965
1966                 // Decaying knowledge gives less confidence (128, 896), meaning a higher penalty.
1967                 SinceEpoch::advance(Duration::from_secs(10));
1968                 assert_eq!(scorer.channel_penalty_msat(42, 512, 1_024, &source, &target), 301);
1969
1970                 // Reducing the upper bound gives more confidence (128, 832) that the payment amount (512)
1971                 // is closer to the upper bound, meaning a higher penalty.
1972                 scorer.payment_path_successful(&payment_path_for_amount(64).iter().collect::<Vec<_>>());
1973                 assert_eq!(scorer.channel_penalty_msat(42, 512, 1_024, &source, &target), 342);
1974
1975                 // Increasing the lower bound gives more confidence (256, 832) that the payment amount (512)
1976                 // is closer to the lower bound, meaning a lower penalty.
1977                 scorer.payment_path_failed(&payment_path_for_amount(256).iter().collect::<Vec<_>>(), 43);
1978                 assert_eq!(scorer.channel_penalty_msat(42, 512, 1_024, &source, &target), 255);
1979
1980                 // Further decaying affects the lower bound more than the upper bound (128, 928).
1981                 SinceEpoch::advance(Duration::from_secs(10));
1982                 assert_eq!(scorer.channel_penalty_msat(42, 512, 1_024, &source, &target), 284);
1983         }
1984
1985         #[test]
1986         fn restores_persisted_liquidity_bounds() {
1987                 let network_graph = network_graph();
1988                 let params = ProbabilisticScoringParameters {
1989                         base_penalty_msat: 0,
1990                         liquidity_penalty_multiplier_msat: 1_000,
1991                         liquidity_offset_half_life: Duration::from_secs(10),
1992                 };
1993                 let mut scorer = ProbabilisticScorer::new(params, &network_graph);
1994                 let source = source_node_id();
1995                 let target = target_node_id();
1996
1997                 scorer.payment_path_failed(&payment_path_for_amount(500).iter().collect::<Vec<_>>(), 42);
1998                 assert_eq!(scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 2_000);
1999
2000                 SinceEpoch::advance(Duration::from_secs(10));
2001                 assert_eq!(scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 472);
2002
2003                 scorer.payment_path_failed(&payment_path_for_amount(250).iter().collect::<Vec<_>>(), 43);
2004                 assert_eq!(scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 300);
2005
2006                 let mut serialized_scorer = Vec::new();
2007                 scorer.write(&mut serialized_scorer).unwrap();
2008
2009                 let mut serialized_scorer = io::Cursor::new(&serialized_scorer);
2010                 let deserialized_scorer =
2011                         <ProbabilisticScorer>::read(&mut serialized_scorer, (params, &network_graph)).unwrap();
2012                 assert_eq!(deserialized_scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 300);
2013         }
2014
2015         #[test]
2016         fn decays_persisted_liquidity_bounds() {
2017                 let network_graph = network_graph();
2018                 let params = ProbabilisticScoringParameters {
2019                         base_penalty_msat: 0,
2020                         liquidity_penalty_multiplier_msat: 1_000,
2021                         liquidity_offset_half_life: Duration::from_secs(10),
2022                 };
2023                 let mut scorer = ProbabilisticScorer::new(params, &network_graph);
2024                 let source = source_node_id();
2025                 let target = target_node_id();
2026
2027                 scorer.payment_path_failed(&payment_path_for_amount(500).iter().collect::<Vec<_>>(), 42);
2028                 assert_eq!(scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 2_000);
2029
2030                 let mut serialized_scorer = Vec::new();
2031                 scorer.write(&mut serialized_scorer).unwrap();
2032
2033                 SinceEpoch::advance(Duration::from_secs(10));
2034
2035                 let mut serialized_scorer = io::Cursor::new(&serialized_scorer);
2036                 let deserialized_scorer =
2037                         <ProbabilisticScorer>::read(&mut serialized_scorer, (params, &network_graph)).unwrap();
2038                 assert_eq!(deserialized_scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 472);
2039
2040                 scorer.payment_path_failed(&payment_path_for_amount(250).iter().collect::<Vec<_>>(), 43);
2041                 assert_eq!(scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 300);
2042
2043                 SinceEpoch::advance(Duration::from_secs(10));
2044                 assert_eq!(deserialized_scorer.channel_penalty_msat(42, 500, 1_000, &source, &target), 371);
2045         }
2046
2047         #[test]
2048         fn adds_base_penalty_to_liquidity_penalty() {
2049                 let network_graph = network_graph();
2050                 let source = source_node_id();
2051                 let target = target_node_id();
2052
2053                 let params = ProbabilisticScoringParameters {
2054                         base_penalty_msat: 0, liquidity_penalty_multiplier_msat: 1_000, ..Default::default()
2055                 };
2056                 let scorer = ProbabilisticScorer::new(params, &network_graph);
2057                 assert_eq!(scorer.channel_penalty_msat(42, 128, 1_024, &source, &target), 58);
2058
2059                 let params = ProbabilisticScoringParameters {
2060                         base_penalty_msat: 500, liquidity_penalty_multiplier_msat: 1_000, ..Default::default()
2061                 };
2062                 let scorer = ProbabilisticScorer::new(params, &network_graph);
2063                 assert_eq!(scorer.channel_penalty_msat(42, 128, 1_024, &source, &target), 558);
2064         }
2065
2066         #[test]
2067         fn calculates_log10_without_overflowing_u64_max_value() {
2068                 let network_graph = network_graph();
2069                 let source = source_node_id();
2070                 let target = target_node_id();
2071
2072                 let params = ProbabilisticScoringParameters {
2073                         base_penalty_msat: 0, ..Default::default()
2074                 };
2075                 let scorer = ProbabilisticScorer::new(params, &network_graph);
2076                 assert_eq!(
2077                         scorer.channel_penalty_msat(42, u64::max_value(), u64::max_value(), &source, &target),
2078                         80_000,
2079                 );
2080         }
2081 }