Fix indentation in outbound payment mark_abandoned
[rust-lightning] / lightning / src / ln / outbound_payment.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 to send payments and manage outbound payment information.
11
12 use bitcoin::hashes::Hash;
13 use bitcoin::hashes::sha256::Hash as Sha256;
14 use bitcoin::secp256k1::{self, Secp256k1, SecretKey};
15
16 use crate::chain::keysinterface::{EntropySource, NodeSigner, Recipient};
17 use crate::ln::{PaymentHash, PaymentPreimage, PaymentSecret};
18 use crate::ln::channelmanager::{ChannelDetails, HTLCSource, IDEMPOTENCY_TIMEOUT_TICKS, MIN_HTLC_RELAY_HOLDING_CELL_MILLIS, PaymentId};
19 use crate::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY_DELTA as LDK_DEFAULT_MIN_FINAL_CLTV_EXPIRY_DELTA;
20 use crate::ln::msgs::DecodeError;
21 use crate::ln::onion_utils::HTLCFailReason;
22 use crate::routing::router::{InFlightHtlcs, PaymentParameters, Route, RouteHop, RouteParameters, RoutePath, Router};
23 use crate::util::errors::APIError;
24 use crate::util::events;
25 use crate::util::logger::Logger;
26 use crate::util::time::Time;
27 #[cfg(all(not(feature = "no-std"), test))]
28 use crate::util::time::tests::SinceEpoch;
29
30 use core::cmp;
31 use core::fmt::{self, Display, Formatter};
32 use core::ops::Deref;
33 use core::time::Duration;
34
35 use crate::prelude::*;
36 use crate::sync::Mutex;
37
38 /// Stores the session_priv for each part of a payment that is still pending. For versions 0.0.102
39 /// and later, also stores information for retrying the payment.
40 pub(crate) enum PendingOutboundPayment {
41         Legacy {
42                 session_privs: HashSet<[u8; 32]>,
43         },
44         Retryable {
45                 retry_strategy: Option<Retry>,
46                 attempts: PaymentAttempts,
47                 payment_params: Option<PaymentParameters>,
48                 session_privs: HashSet<[u8; 32]>,
49                 payment_hash: PaymentHash,
50                 payment_secret: Option<PaymentSecret>,
51                 keysend_preimage: Option<PaymentPreimage>,
52                 pending_amt_msat: u64,
53                 /// Used to track the fee paid. Only present if the payment was serialized on 0.0.103+.
54                 pending_fee_msat: Option<u64>,
55                 /// The total payment amount across all paths, used to verify that a retry is not overpaying.
56                 total_msat: u64,
57                 /// Our best known block height at the time this payment was initiated.
58                 starting_block_height: u32,
59         },
60         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
61         /// been resolved. This ensures we don't look up pending payments in ChannelMonitors on restart
62         /// and add a pending payment that was already fulfilled.
63         Fulfilled {
64                 session_privs: HashSet<[u8; 32]>,
65                 payment_hash: Option<PaymentHash>,
66                 timer_ticks_without_htlcs: u8,
67         },
68         /// When a payer gives up trying to retry a payment, they inform us, letting us generate a
69         /// `PaymentFailed` event when all HTLCs have irrevocably failed. This avoids a number of race
70         /// conditions in MPP-aware payment retriers (1), where the possibility of multiple
71         /// `PaymentPathFailed` events with `all_paths_failed` can be pending at once, confusing a
72         /// downstream event handler as to when a payment has actually failed.
73         ///
74         /// (1) <https://github.com/lightningdevkit/rust-lightning/issues/1164>
75         Abandoned {
76                 session_privs: HashSet<[u8; 32]>,
77                 payment_hash: PaymentHash,
78         },
79 }
80
81 impl PendingOutboundPayment {
82         fn increment_attempts(&mut self) {
83                 if let PendingOutboundPayment::Retryable { attempts, .. } = self {
84                         attempts.count += 1;
85                 }
86         }
87         fn is_auto_retryable_now(&self) -> bool {
88                 match self {
89                         PendingOutboundPayment::Retryable { retry_strategy: Some(strategy), attempts, .. } => {
90                                 strategy.is_retryable_now(&attempts)
91                         },
92                         _ => false,
93                 }
94         }
95         fn is_retryable_now(&self) -> bool {
96                 match self {
97                         PendingOutboundPayment::Retryable { retry_strategy: None, .. } => {
98                                 // We're handling retries manually, we can always retry.
99                                 true
100                         },
101                         PendingOutboundPayment::Retryable { retry_strategy: Some(strategy), attempts, .. } => {
102                                 strategy.is_retryable_now(&attempts)
103                         },
104                         _ => false,
105                 }
106         }
107         fn payment_parameters(&mut self) -> Option<&mut PaymentParameters> {
108                 match self {
109                         PendingOutboundPayment::Retryable { payment_params: Some(ref mut params), .. } => {
110                                 Some(params)
111                         },
112                         _ => None,
113                 }
114         }
115         pub fn insert_previously_failed_scid(&mut self, scid: u64) {
116                 if let PendingOutboundPayment::Retryable { payment_params: Some(params), .. } = self {
117                         params.previously_failed_channels.push(scid);
118                 }
119         }
120         pub(super) fn is_fulfilled(&self) -> bool {
121                 match self {
122                         PendingOutboundPayment::Fulfilled { .. } => true,
123                         _ => false,
124                 }
125         }
126         pub(super) fn abandoned(&self) -> bool {
127                 match self {
128                         PendingOutboundPayment::Abandoned { .. } => true,
129                         _ => false,
130                 }
131         }
132         fn get_pending_fee_msat(&self) -> Option<u64> {
133                 match self {
134                         PendingOutboundPayment::Retryable { pending_fee_msat, .. } => pending_fee_msat.clone(),
135                         _ => None,
136                 }
137         }
138
139         fn payment_hash(&self) -> Option<PaymentHash> {
140                 match self {
141                         PendingOutboundPayment::Legacy { .. } => None,
142                         PendingOutboundPayment::Retryable { payment_hash, .. } => Some(*payment_hash),
143                         PendingOutboundPayment::Fulfilled { payment_hash, .. } => *payment_hash,
144                         PendingOutboundPayment::Abandoned { payment_hash, .. } => Some(*payment_hash),
145                 }
146         }
147
148         fn mark_fulfilled(&mut self) {
149                 let mut session_privs = HashSet::new();
150                 core::mem::swap(&mut session_privs, match self {
151                         PendingOutboundPayment::Legacy { session_privs } |
152                                 PendingOutboundPayment::Retryable { session_privs, .. } |
153                                 PendingOutboundPayment::Fulfilled { session_privs, .. } |
154                                 PendingOutboundPayment::Abandoned { session_privs, .. }
155                         => session_privs,
156                 });
157                 let payment_hash = self.payment_hash();
158                 *self = PendingOutboundPayment::Fulfilled { session_privs, payment_hash, timer_ticks_without_htlcs: 0 };
159         }
160
161         fn mark_abandoned(&mut self) -> Result<(), ()> {
162                 let mut session_privs = HashSet::new();
163                 let our_payment_hash;
164                 core::mem::swap(&mut session_privs, match self {
165                         PendingOutboundPayment::Legacy { .. } |
166                         PendingOutboundPayment::Fulfilled { .. } =>
167                                 return Err(()),
168                         PendingOutboundPayment::Retryable { session_privs, payment_hash, .. } |
169                         PendingOutboundPayment::Abandoned { session_privs, payment_hash, .. } => {
170                                 our_payment_hash = *payment_hash;
171                                 session_privs
172                         },
173                 });
174                 *self = PendingOutboundPayment::Abandoned { session_privs, payment_hash: our_payment_hash };
175                 Ok(())
176         }
177
178         /// panics if path is None and !self.is_fulfilled
179         fn remove(&mut self, session_priv: &[u8; 32], path: Option<&Vec<RouteHop>>) -> bool {
180                 let remove_res = match self {
181                         PendingOutboundPayment::Legacy { session_privs } |
182                                 PendingOutboundPayment::Retryable { session_privs, .. } |
183                                 PendingOutboundPayment::Fulfilled { session_privs, .. } |
184                                 PendingOutboundPayment::Abandoned { session_privs, .. } => {
185                                         session_privs.remove(session_priv)
186                                 }
187                 };
188                 if remove_res {
189                         if let PendingOutboundPayment::Retryable { ref mut pending_amt_msat, ref mut pending_fee_msat, .. } = self {
190                                 let path = path.expect("Fulfilling a payment should always come with a path");
191                                 let path_last_hop = path.last().expect("Outbound payments must have had a valid path");
192                                 *pending_amt_msat -= path_last_hop.fee_msat;
193                                 if let Some(fee_msat) = pending_fee_msat.as_mut() {
194                                         *fee_msat -= path.get_path_fees();
195                                 }
196                         }
197                 }
198                 remove_res
199         }
200
201         pub(super) fn insert(&mut self, session_priv: [u8; 32], path: &Vec<RouteHop>) -> bool {
202                 let insert_res = match self {
203                         PendingOutboundPayment::Legacy { session_privs } |
204                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
205                                         session_privs.insert(session_priv)
206                                 }
207                         PendingOutboundPayment::Fulfilled { .. } => false,
208                         PendingOutboundPayment::Abandoned { .. } => false,
209                 };
210                 if insert_res {
211                         if let PendingOutboundPayment::Retryable { ref mut pending_amt_msat, ref mut pending_fee_msat, .. } = self {
212                                 let path_last_hop = path.last().expect("Outbound payments must have had a valid path");
213                                 *pending_amt_msat += path_last_hop.fee_msat;
214                                 if let Some(fee_msat) = pending_fee_msat.as_mut() {
215                                         *fee_msat += path.get_path_fees();
216                                 }
217                         }
218                 }
219                 insert_res
220         }
221
222         pub(super) fn remaining_parts(&self) -> usize {
223                 match self {
224                         PendingOutboundPayment::Legacy { session_privs } |
225                                 PendingOutboundPayment::Retryable { session_privs, .. } |
226                                 PendingOutboundPayment::Fulfilled { session_privs, .. } |
227                                 PendingOutboundPayment::Abandoned { session_privs, .. } => {
228                                         session_privs.len()
229                                 }
230                 }
231         }
232 }
233
234 /// Strategies available to retry payment path failures.
235 #[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
236 pub enum Retry {
237         /// Max number of attempts to retry payment.
238         ///
239         /// Each attempt may be multiple HTLCs along multiple paths if the router decides to split up a
240         /// retry, and may retry multiple failed HTLCs at once if they failed around the same time and
241         /// were retried along a route from a single call to [`Router::find_route`].
242         Attempts(usize),
243         #[cfg(not(feature = "no-std"))]
244         /// Time elapsed before abandoning retries for a payment.
245         Timeout(core::time::Duration),
246 }
247
248 impl Retry {
249         pub(crate) fn is_retryable_now(&self, attempts: &PaymentAttempts) -> bool {
250                 match (self, attempts) {
251                         (Retry::Attempts(max_retry_count), PaymentAttempts { count, .. }) => {
252                                 max_retry_count > count
253                         },
254                         #[cfg(all(not(feature = "no-std"), not(test)))]
255                         (Retry::Timeout(max_duration), PaymentAttempts { first_attempted_at, .. }) =>
256                                 *max_duration >= std::time::Instant::now().duration_since(*first_attempted_at),
257                         #[cfg(all(not(feature = "no-std"), test))]
258                         (Retry::Timeout(max_duration), PaymentAttempts { first_attempted_at, .. }) =>
259                                 *max_duration >= SinceEpoch::now().duration_since(*first_attempted_at),
260                 }
261         }
262 }
263
264 #[cfg(feature = "std")]
265 pub(super) fn has_expired(route_params: &RouteParameters) -> bool {
266         if let Some(expiry_time) = route_params.payment_params.expiry_time {
267                 if let Ok(elapsed) = std::time::SystemTime::UNIX_EPOCH.elapsed() {
268                         return elapsed > core::time::Duration::from_secs(expiry_time)
269                 }
270         }
271         false
272 }
273
274 pub(crate) type PaymentAttempts = PaymentAttemptsUsingTime<ConfiguredTime>;
275
276 /// Storing minimal payment attempts information required for determining if a outbound payment can
277 /// be retried.
278 pub(crate) struct PaymentAttemptsUsingTime<T: Time> {
279         /// This count will be incremented only after the result of the attempt is known. When it's 0,
280         /// it means the result of the first attempt is not known yet.
281         pub(crate) count: usize,
282         /// This field is only used when retry is `Retry::Timeout` which is only build with feature std
283         first_attempted_at: T
284 }
285
286 #[cfg(not(any(feature = "no-std", test)))]
287 type ConfiguredTime = std::time::Instant;
288 #[cfg(feature = "no-std")]
289 type ConfiguredTime = crate::util::time::Eternity;
290 #[cfg(all(not(feature = "no-std"), test))]
291 type ConfiguredTime = SinceEpoch;
292
293 impl<T: Time> PaymentAttemptsUsingTime<T> {
294         pub(crate) fn new() -> Self {
295                 PaymentAttemptsUsingTime {
296                         count: 0,
297                         first_attempted_at: T::now()
298                 }
299         }
300 }
301
302 impl<T: Time> Display for PaymentAttemptsUsingTime<T> {
303         fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
304                 #[cfg(feature = "no-std")]
305                 return write!(f, "attempts: {}", self.count);
306                 #[cfg(not(feature = "no-std"))]
307                 return write!(
308                         f,
309                         "attempts: {}, duration: {}s",
310                         self.count,
311                         T::now().duration_since(self.first_attempted_at).as_secs()
312                 );
313         }
314 }
315
316 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
317 /// Err() type describing which state the payment is in, see the description of individual enum
318 /// states for more.
319 #[derive(Clone, Debug)]
320 pub enum PaymentSendFailure {
321         /// A parameter which was passed to send_payment was invalid, preventing us from attempting to
322         /// send the payment at all.
323         ///
324         /// You can freely resend the payment in full (with the parameter error fixed).
325         ///
326         /// Because the payment failed outright, no payment tracking is done, you do not need to call
327         /// [`ChannelManager::abandon_payment`] and [`ChannelManager::retry_payment`] will *not* work
328         /// for this payment.
329         ///
330         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
331         /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
332         ParameterError(APIError),
333         /// A parameter in a single path which was passed to send_payment was invalid, preventing us
334         /// from attempting to send the payment at all.
335         ///
336         /// You can freely resend the payment in full (with the parameter error fixed).
337         ///
338         /// The results here are ordered the same as the paths in the route object which was passed to
339         /// send_payment.
340         ///
341         /// Because the payment failed outright, no payment tracking is done, you do not need to call
342         /// [`ChannelManager::abandon_payment`] and [`ChannelManager::retry_payment`] will *not* work
343         /// for this payment.
344         ///
345         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
346         /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
347         PathParameterError(Vec<Result<(), APIError>>),
348         /// All paths which were attempted failed to send, with no channel state change taking place.
349         /// You can freely resend the payment in full (though you probably want to do so over different
350         /// paths than the ones selected).
351         ///
352         /// Because the payment failed outright, no payment tracking is done, you do not need to call
353         /// [`ChannelManager::abandon_payment`] and [`ChannelManager::retry_payment`] will *not* work
354         /// for this payment.
355         ///
356         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
357         /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
358         AllFailedResendSafe(Vec<APIError>),
359         /// Indicates that a payment for the provided [`PaymentId`] is already in-flight and has not
360         /// yet completed (i.e. generated an [`Event::PaymentSent`]) or been abandoned (via
361         /// [`ChannelManager::abandon_payment`]).
362         ///
363         /// [`PaymentId`]: crate::ln::channelmanager::PaymentId
364         /// [`Event::PaymentSent`]: crate::util::events::Event::PaymentSent
365         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
366         DuplicatePayment,
367         /// Some paths which were attempted failed to send, though possibly not all. At least some
368         /// paths have irrevocably committed to the HTLC and retrying the payment in full would result
369         /// in over-/re-payment.
370         ///
371         /// The results here are ordered the same as the paths in the route object which was passed to
372         /// send_payment, and any `Err`s which are not [`APIError::MonitorUpdateInProgress`] can be
373         /// safely retried via [`ChannelManager::retry_payment`].
374         ///
375         /// Any entries which contain `Err(APIError::MonitorUpdateInprogress)` or `Ok(())` MUST NOT be
376         /// retried as they will result in over-/re-payment. These HTLCs all either successfully sent
377         /// (in the case of `Ok(())`) or will send once a [`MonitorEvent::Completed`] is provided for
378         /// the next-hop channel with the latest update_id.
379         ///
380         /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
381         /// [`MonitorEvent::Completed`]: crate::chain::channelmonitor::MonitorEvent::Completed
382         PartialFailure {
383                 /// The errors themselves, in the same order as the route hops.
384                 results: Vec<Result<(), APIError>>,
385                 /// If some paths failed without irrevocably committing to the new HTLC(s), this will
386                 /// contain a [`RouteParameters`] object which can be used to calculate a new route that
387                 /// will pay all remaining unpaid balance.
388                 failed_paths_retry: Option<RouteParameters>,
389                 /// The payment id for the payment, which is now at least partially pending.
390                 payment_id: PaymentId,
391         },
392 }
393
394 pub(super) struct OutboundPayments {
395         pub(super) pending_outbound_payments: Mutex<HashMap<PaymentId, PendingOutboundPayment>>,
396 }
397
398 impl OutboundPayments {
399         pub(super) fn new() -> Self {
400                 Self {
401                         pending_outbound_payments: Mutex::new(HashMap::new())
402                 }
403         }
404
405         pub(super) fn send_payment<R: Deref, ES: Deref, NS: Deref, IH, SP, L: Deref>(
406                 &self, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>, payment_id: PaymentId,
407                 retry_strategy: Retry, route_params: RouteParameters, router: &R,
408                 first_hops: Vec<ChannelDetails>, compute_inflight_htlcs: IH, entropy_source: &ES,
409                 node_signer: &NS, best_block_height: u32, logger: &L, send_payment_along_path: SP,
410         ) -> Result<(), PaymentSendFailure>
411         where
412                 R::Target: Router,
413                 ES::Target: EntropySource,
414                 NS::Target: NodeSigner,
415                 L::Target: Logger,
416                 IH: Fn() -> InFlightHtlcs,
417                 SP: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
418                          u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>,
419         {
420                 self.pay_internal(payment_id, Some((payment_hash, payment_secret, None, retry_strategy)),
421                         route_params, router, first_hops, &compute_inflight_htlcs, entropy_source, node_signer,
422                         best_block_height, logger, &send_payment_along_path)
423                         .map_err(|e| { self.remove_outbound_if_all_failed(payment_id, &e); e })
424         }
425
426         pub(super) fn send_payment_with_route<ES: Deref, NS: Deref, F>(
427                 &self, route: &Route, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>,
428                 payment_id: PaymentId, entropy_source: &ES, node_signer: &NS, best_block_height: u32,
429                 send_payment_along_path: F
430         ) -> Result<(), PaymentSendFailure>
431         where
432                 ES::Target: EntropySource,
433                 NS::Target: NodeSigner,
434                 F: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
435                    u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>
436         {
437                 let onion_session_privs = self.add_new_pending_payment(payment_hash, *payment_secret, payment_id, None, route, None, None, entropy_source, best_block_height)?;
438                 self.pay_route_internal(route, payment_hash, payment_secret, None, payment_id, None,
439                         onion_session_privs, node_signer, best_block_height, &send_payment_along_path)
440                         .map_err(|e| { self.remove_outbound_if_all_failed(payment_id, &e); e })
441         }
442
443         pub(super) fn send_spontaneous_payment<R: Deref, ES: Deref, NS: Deref, IH, SP, L: Deref>(
444                 &self, payment_preimage: Option<PaymentPreimage>, payment_id: PaymentId,
445                 retry_strategy: Retry, route_params: RouteParameters, router: &R,
446                 first_hops: Vec<ChannelDetails>, inflight_htlcs: IH, entropy_source: &ES,
447                 node_signer: &NS, best_block_height: u32, logger: &L, send_payment_along_path: SP
448         ) -> Result<PaymentHash, PaymentSendFailure>
449         where
450                 R::Target: Router,
451                 ES::Target: EntropySource,
452                 NS::Target: NodeSigner,
453                 L::Target: Logger,
454                 IH: Fn() -> InFlightHtlcs,
455                 SP: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
456                          u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>,
457         {
458                 let preimage = payment_preimage
459                         .unwrap_or_else(|| PaymentPreimage(entropy_source.get_secure_random_bytes()));
460                 let payment_hash = PaymentHash(Sha256::hash(&preimage.0).into_inner());
461                 self.pay_internal(payment_id, Some((payment_hash, &None, Some(preimage), retry_strategy)),
462                         route_params, router, first_hops, &inflight_htlcs, entropy_source, node_signer,
463                         best_block_height, logger, &send_payment_along_path)
464                         .map(|()| payment_hash)
465                         .map_err(|e| { self.remove_outbound_if_all_failed(payment_id, &e); e })
466         }
467
468         pub(super) fn send_spontaneous_payment_with_route<ES: Deref, NS: Deref, F>(
469                 &self, route: &Route, payment_preimage: Option<PaymentPreimage>, payment_id: PaymentId,
470                 entropy_source: &ES, node_signer: &NS, best_block_height: u32, send_payment_along_path: F
471         ) -> Result<PaymentHash, PaymentSendFailure>
472         where
473                 ES::Target: EntropySource,
474                 NS::Target: NodeSigner,
475                 F: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
476                    u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>
477         {
478                 let preimage = payment_preimage
479                         .unwrap_or_else(|| PaymentPreimage(entropy_source.get_secure_random_bytes()));
480                 let payment_hash = PaymentHash(Sha256::hash(&preimage.0).into_inner());
481                 let onion_session_privs = self.add_new_pending_payment(payment_hash, None, payment_id, Some(preimage), &route, None, None, entropy_source, best_block_height)?;
482
483                 match self.pay_route_internal(route, payment_hash, &None, Some(preimage), payment_id, None, onion_session_privs, node_signer, best_block_height, &send_payment_along_path) {
484                         Ok(()) => Ok(payment_hash),
485                         Err(e) => {
486                                 self.remove_outbound_if_all_failed(payment_id, &e);
487                                 Err(e)
488                         }
489                 }
490         }
491
492         pub(super) fn check_retry_payments<R: Deref, ES: Deref, NS: Deref, SP, IH, FH, L: Deref>(
493                 &self, router: &R, first_hops: FH, inflight_htlcs: IH, entropy_source: &ES, node_signer: &NS,
494                 best_block_height: u32, logger: &L, send_payment_along_path: SP,
495         )
496         where
497                 R::Target: Router,
498                 ES::Target: EntropySource,
499                 NS::Target: NodeSigner,
500                 SP: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
501                    u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>,
502                 IH: Fn() -> InFlightHtlcs,
503                 FH: Fn() -> Vec<ChannelDetails>,
504                 L::Target: Logger,
505         {
506                 loop {
507                         let mut outbounds = self.pending_outbound_payments.lock().unwrap();
508                         let mut retry_id_route_params = None;
509                         for (pmt_id, pmt) in outbounds.iter_mut() {
510                                 if pmt.is_auto_retryable_now() {
511                                         if let PendingOutboundPayment::Retryable { pending_amt_msat, total_msat, payment_params: Some(params), .. } = pmt {
512                                                 if pending_amt_msat < total_msat {
513                                                         retry_id_route_params = Some((*pmt_id, RouteParameters {
514                                                                 final_value_msat: *total_msat - *pending_amt_msat,
515                                                                 final_cltv_expiry_delta:
516                                                                         if let Some(delta) = params.final_cltv_expiry_delta { delta }
517                                                                         else {
518                                                                                 debug_assert!(false, "We always set the final_cltv_expiry_delta when a path fails");
519                                                                                 LDK_DEFAULT_MIN_FINAL_CLTV_EXPIRY_DELTA.into()
520                                                                         },
521                                                                 payment_params: params.clone(),
522                                                         }));
523                                                         break
524                                                 }
525                                         }
526                                 }
527                         }
528                         if let Some((payment_id, route_params)) = retry_id_route_params {
529                                 core::mem::drop(outbounds);
530                                 if let Err(e) = self.pay_internal(payment_id, None, route_params, router, first_hops(), &inflight_htlcs, entropy_source, node_signer, best_block_height, logger, &send_payment_along_path) {
531                                         log_info!(logger, "Errored retrying payment: {:?}", e);
532                                 }
533                         } else { break }
534                 }
535         }
536
537         fn pay_internal<R: Deref, NS: Deref, ES: Deref, IH, SP, L: Deref>(
538                 &self, payment_id: PaymentId,
539                 initial_send_info: Option<(PaymentHash, &Option<PaymentSecret>, Option<PaymentPreimage>, Retry)>,
540                 route_params: RouteParameters, router: &R, first_hops: Vec<ChannelDetails>,
541                 inflight_htlcs: &IH, entropy_source: &ES, node_signer: &NS, best_block_height: u32,
542                 logger: &L, send_payment_along_path: &SP,
543         ) -> Result<(), PaymentSendFailure>
544         where
545                 R::Target: Router,
546                 ES::Target: EntropySource,
547                 NS::Target: NodeSigner,
548                 L::Target: Logger,
549                 IH: Fn() -> InFlightHtlcs,
550                 SP: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
551                    u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>
552         {
553                 #[cfg(feature = "std")] {
554                         if has_expired(&route_params) {
555                                 return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
556                                         err: format!("Invoice expired for payment id {}", log_bytes!(payment_id.0)),
557                                 }))
558                         }
559                 }
560
561                 let route = router.find_route(
562                         &node_signer.get_node_id(Recipient::Node).unwrap(), &route_params,
563                         Some(&first_hops.iter().collect::<Vec<_>>()), &inflight_htlcs(),
564                 ).map_err(|e| PaymentSendFailure::ParameterError(APIError::APIMisuseError {
565                         err: format!("Failed to find a route for payment {}: {:?}", log_bytes!(payment_id.0), e), // TODO: add APIError::RouteNotFound
566                 }))?;
567
568                 let res = if let Some((payment_hash, payment_secret, keysend_preimage, retry_strategy)) = initial_send_info {
569                         let onion_session_privs = self.add_new_pending_payment(payment_hash, *payment_secret, payment_id, keysend_preimage, &route, Some(retry_strategy), Some(route_params.payment_params.clone()), entropy_source, best_block_height)?;
570                         self.pay_route_internal(&route, payment_hash, payment_secret, None, payment_id, None, onion_session_privs, node_signer, best_block_height, send_payment_along_path)
571                 } else {
572                         self.retry_payment_with_route(&route, payment_id, entropy_source, node_signer, best_block_height, send_payment_along_path)
573                 };
574                 match res {
575                         Err(PaymentSendFailure::AllFailedResendSafe(_)) => {
576                                 let retry_res = self.pay_internal(payment_id, None, route_params, router, first_hops, inflight_htlcs, entropy_source, node_signer, best_block_height, logger, send_payment_along_path);
577                                 log_info!(logger, "Result retrying payment id {}: {:?}", log_bytes!(payment_id.0), retry_res);
578                                 if let Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError { err })) = &retry_res {
579                                         if err.starts_with("Retries exhausted ") { return res; }
580                                 }
581                                 retry_res
582                         },
583                         Err(PaymentSendFailure::PartialFailure { failed_paths_retry: Some(retry), .. }) => {
584                                 // Some paths were sent, even if we failed to send the full MPP value our recipient may
585                                 // misbehave and claim the funds, at which point we have to consider the payment sent, so
586                                 // return `Ok()` here, ignoring any retry errors.
587                                 let retry_res = self.pay_internal(payment_id, None, retry, router, first_hops, inflight_htlcs, entropy_source, node_signer, best_block_height, logger, send_payment_along_path);
588                                 log_info!(logger, "Result retrying payment id {}: {:?}", log_bytes!(payment_id.0), retry_res);
589                                 Ok(())
590                         },
591                         Err(PaymentSendFailure::PartialFailure { failed_paths_retry: None, .. }) => {
592                                 // This may happen if we send a payment and some paths fail, but only due to a temporary
593                                 // monitor failure or the like, implying they're really in-flight, but we haven't sent the
594                                 // initial HTLC-Add messages yet.
595                                 Ok(())
596                         },
597                         res => res,
598                 }
599         }
600
601         pub(super) fn retry_payment_with_route<ES: Deref, NS: Deref, F>(
602                 &self, route: &Route, payment_id: PaymentId, entropy_source: &ES, node_signer: &NS, best_block_height: u32,
603                 send_payment_along_path: F
604         ) -> Result<(), PaymentSendFailure>
605         where
606                 ES::Target: EntropySource,
607                 NS::Target: NodeSigner,
608                 F: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
609                    u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>
610         {
611                 const RETRY_OVERFLOW_PERCENTAGE: u64 = 10;
612                 for path in route.paths.iter() {
613                         if path.len() == 0 {
614                                 return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
615                                         err: "length-0 path in route".to_string()
616                                 }))
617                         }
618                 }
619
620                 let mut onion_session_privs = Vec::with_capacity(route.paths.len());
621                 for _ in 0..route.paths.len() {
622                         onion_session_privs.push(entropy_source.get_secure_random_bytes());
623                 }
624
625                 let (total_msat, payment_hash, payment_secret, keysend_preimage) = {
626                         let mut outbounds = self.pending_outbound_payments.lock().unwrap();
627                         match outbounds.get_mut(&payment_id) {
628                                 Some(payment) => {
629                                         let res = match payment {
630                                                 PendingOutboundPayment::Retryable {
631                                                         total_msat, payment_hash, keysend_preimage, payment_secret, pending_amt_msat, ..
632                                                 } => {
633                                                         let retry_amt_msat: u64 = route.paths.iter().map(|path| path.last().unwrap().fee_msat).sum();
634                                                         if retry_amt_msat + *pending_amt_msat > *total_msat * (100 + RETRY_OVERFLOW_PERCENTAGE) / 100 {
635                                                                 return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
636                                                                         err: format!("retry_amt_msat of {} will put pending_amt_msat (currently: {}) more than 10% over total_payment_amt_msat of {}", retry_amt_msat, pending_amt_msat, total_msat).to_string()
637                                                                 }))
638                                                         }
639                                                         (*total_msat, *payment_hash, *payment_secret, *keysend_preimage)
640                                                 },
641                                                 PendingOutboundPayment::Legacy { .. } => {
642                                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
643                                                                 err: "Unable to retry payments that were initially sent on LDK versions prior to 0.0.102".to_string()
644                                                         }))
645                                                 },
646                                                 PendingOutboundPayment::Fulfilled { .. } => {
647                                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
648                                                                 err: "Payment already completed".to_owned()
649                                                         }));
650                                                 },
651                                                 PendingOutboundPayment::Abandoned { .. } => {
652                                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
653                                                                 err: "Payment already abandoned (with some HTLCs still pending)".to_owned()
654                                                         }));
655                                                 },
656                                         };
657                                         if !payment.is_retryable_now() {
658                                                 return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
659                                                         err: format!("Retries exhausted for payment id {}", log_bytes!(payment_id.0)),
660                                                 }))
661                                         }
662                                         payment.increment_attempts();
663                                         for (path, session_priv_bytes) in route.paths.iter().zip(onion_session_privs.iter()) {
664                                                 assert!(payment.insert(*session_priv_bytes, path));
665                                         }
666                                         res
667                                 },
668                                 None =>
669                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
670                                                 err: format!("Payment with ID {} not found", log_bytes!(payment_id.0)),
671                                         })),
672                         }
673                 };
674                 self.pay_route_internal(route, payment_hash, &payment_secret, keysend_preimage, payment_id, Some(total_msat), onion_session_privs, node_signer, best_block_height, &send_payment_along_path)
675         }
676
677         pub(super) fn send_probe<ES: Deref, NS: Deref, F>(
678                 &self, hops: Vec<RouteHop>, probing_cookie_secret: [u8; 32], entropy_source: &ES,
679                 node_signer: &NS, best_block_height: u32, send_payment_along_path: F
680         ) -> Result<(PaymentHash, PaymentId), PaymentSendFailure>
681         where
682                 ES::Target: EntropySource,
683                 NS::Target: NodeSigner,
684                 F: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
685                    u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>
686         {
687                 let payment_id = PaymentId(entropy_source.get_secure_random_bytes());
688
689                 let payment_hash = probing_cookie_from_id(&payment_id, probing_cookie_secret);
690
691                 if hops.len() < 2 {
692                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
693                                 err: "No need probing a path with less than two hops".to_string()
694                         }))
695                 }
696
697                 let route = Route { paths: vec![hops], payment_params: None };
698                 let onion_session_privs = self.add_new_pending_payment(payment_hash, None, payment_id, None, &route, None, None, entropy_source, best_block_height)?;
699
700                 match self.pay_route_internal(&route, payment_hash, &None, None, payment_id, None, onion_session_privs, node_signer, best_block_height, &send_payment_along_path) {
701                         Ok(()) => Ok((payment_hash, payment_id)),
702                         Err(e) => {
703                                 self.remove_outbound_if_all_failed(payment_id, &e);
704                                 Err(e)
705                         }
706                 }
707         }
708
709         #[cfg(test)]
710         pub(super) fn test_add_new_pending_payment<ES: Deref>(
711                 &self, payment_hash: PaymentHash, payment_secret: Option<PaymentSecret>, payment_id: PaymentId,
712                 route: &Route, retry_strategy: Option<Retry>, entropy_source: &ES, best_block_height: u32
713         ) -> Result<Vec<[u8; 32]>, PaymentSendFailure> where ES::Target: EntropySource {
714                 self.add_new_pending_payment(payment_hash, payment_secret, payment_id, None, route, retry_strategy, None, entropy_source, best_block_height)
715         }
716
717         pub(super) fn add_new_pending_payment<ES: Deref>(
718                 &self, payment_hash: PaymentHash, payment_secret: Option<PaymentSecret>, payment_id: PaymentId,
719                 keysend_preimage: Option<PaymentPreimage>, route: &Route, retry_strategy: Option<Retry>,
720                 payment_params: Option<PaymentParameters>, entropy_source: &ES, best_block_height: u32
721         ) -> Result<Vec<[u8; 32]>, PaymentSendFailure> where ES::Target: EntropySource {
722                 let mut onion_session_privs = Vec::with_capacity(route.paths.len());
723                 for _ in 0..route.paths.len() {
724                         onion_session_privs.push(entropy_source.get_secure_random_bytes());
725                 }
726
727                 let mut pending_outbounds = self.pending_outbound_payments.lock().unwrap();
728                 match pending_outbounds.entry(payment_id) {
729                         hash_map::Entry::Occupied(_) => Err(PaymentSendFailure::DuplicatePayment),
730                         hash_map::Entry::Vacant(entry) => {
731                                 let payment = entry.insert(PendingOutboundPayment::Retryable {
732                                         retry_strategy,
733                                         attempts: PaymentAttempts::new(),
734                                         payment_params,
735                                         session_privs: HashSet::new(),
736                                         pending_amt_msat: 0,
737                                         pending_fee_msat: Some(0),
738                                         payment_hash,
739                                         payment_secret,
740                                         keysend_preimage,
741                                         starting_block_height: best_block_height,
742                                         total_msat: route.get_total_amount(),
743                                 });
744
745                                 for (path, session_priv_bytes) in route.paths.iter().zip(onion_session_privs.iter()) {
746                                         assert!(payment.insert(*session_priv_bytes, path));
747                                 }
748
749                                 Ok(onion_session_privs)
750                         },
751                 }
752         }
753
754         fn pay_route_internal<NS: Deref, F>(
755                 &self, route: &Route, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>,
756                 keysend_preimage: Option<PaymentPreimage>, payment_id: PaymentId, recv_value_msat: Option<u64>,
757                 onion_session_privs: Vec<[u8; 32]>, node_signer: &NS, best_block_height: u32,
758                 send_payment_along_path: &F
759         ) -> Result<(), PaymentSendFailure>
760         where
761                 NS::Target: NodeSigner,
762                 F: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
763                    u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>
764         {
765                 if route.paths.len() < 1 {
766                         return Err(PaymentSendFailure::ParameterError(APIError::InvalidRoute{err: "There must be at least one path to send over"}));
767                 }
768                 if payment_secret.is_none() && route.paths.len() > 1 {
769                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError{err: "Payment secret is required for multi-path payments".to_string()}));
770                 }
771                 let mut total_value = 0;
772                 let our_node_id = node_signer.get_node_id(Recipient::Node).unwrap(); // TODO no unwrap
773                 let mut path_errs = Vec::with_capacity(route.paths.len());
774                 'path_check: for path in route.paths.iter() {
775                         if path.len() < 1 || path.len() > 20 {
776                                 path_errs.push(Err(APIError::InvalidRoute{err: "Path didn't go anywhere/had bogus size"}));
777                                 continue 'path_check;
778                         }
779                         for (idx, hop) in path.iter().enumerate() {
780                                 if idx != path.len() - 1 && hop.pubkey == our_node_id {
781                                         path_errs.push(Err(APIError::InvalidRoute{err: "Path went through us but wasn't a simple rebalance loop to us"}));
782                                         continue 'path_check;
783                                 }
784                         }
785                         total_value += path.last().unwrap().fee_msat;
786                         path_errs.push(Ok(()));
787                 }
788                 if path_errs.iter().any(|e| e.is_err()) {
789                         return Err(PaymentSendFailure::PathParameterError(path_errs));
790                 }
791                 if let Some(amt_msat) = recv_value_msat {
792                         debug_assert!(amt_msat >= total_value);
793                         total_value = amt_msat;
794                 }
795
796                 let cur_height = best_block_height + 1;
797                 let mut results = Vec::new();
798                 debug_assert_eq!(route.paths.len(), onion_session_privs.len());
799                 for (path, session_priv) in route.paths.iter().zip(onion_session_privs.into_iter()) {
800                         let mut path_res = send_payment_along_path(&path, &route.payment_params, &payment_hash, payment_secret, total_value, cur_height, payment_id, &keysend_preimage, session_priv);
801                         match path_res {
802                                 Ok(_) => {},
803                                 Err(APIError::MonitorUpdateInProgress) => {
804                                         // While a MonitorUpdateInProgress is an Err(_), the payment is still
805                                         // considered "in flight" and we shouldn't remove it from the
806                                         // PendingOutboundPayment set.
807                                 },
808                                 Err(_) => {
809                                         let mut pending_outbounds = self.pending_outbound_payments.lock().unwrap();
810                                         if let Some(payment) = pending_outbounds.get_mut(&payment_id) {
811                                                 let removed = payment.remove(&session_priv, Some(path));
812                                                 debug_assert!(removed, "This can't happen as the payment has an entry for this path added by callers");
813                                         } else {
814                                                 debug_assert!(false, "This can't happen as the payment was added by callers");
815                                                 path_res = Err(APIError::APIMisuseError { err: "Internal error: payment disappeared during processing. Please report this bug!".to_owned() });
816                                         }
817                                 }
818                         }
819                         results.push(path_res);
820                 }
821                 let mut has_ok = false;
822                 let mut has_err = false;
823                 let mut pending_amt_unsent = 0;
824                 let mut max_unsent_cltv_delta = 0;
825                 for (res, path) in results.iter().zip(route.paths.iter()) {
826                         if res.is_ok() { has_ok = true; }
827                         if res.is_err() { has_err = true; }
828                         if let &Err(APIError::MonitorUpdateInProgress) = res {
829                                 // MonitorUpdateInProgress is inherently unsafe to retry, so we call it a
830                                 // PartialFailure.
831                                 has_err = true;
832                                 has_ok = true;
833                         } else if res.is_err() {
834                                 pending_amt_unsent += path.last().unwrap().fee_msat;
835                                 max_unsent_cltv_delta = cmp::max(max_unsent_cltv_delta, path.last().unwrap().cltv_expiry_delta);
836                         }
837                 }
838                 if has_err && has_ok {
839                         Err(PaymentSendFailure::PartialFailure {
840                                 results,
841                                 payment_id,
842                                 failed_paths_retry: if pending_amt_unsent != 0 {
843                                         if let Some(payment_params) = &route.payment_params {
844                                                 Some(RouteParameters {
845                                                         payment_params: payment_params.clone(),
846                                                         final_value_msat: pending_amt_unsent,
847                                                         final_cltv_expiry_delta:
848                                                                 if let Some(delta) = payment_params.final_cltv_expiry_delta { delta }
849                                                                 else { max_unsent_cltv_delta },
850                                                 })
851                                         } else { None }
852                                 } else { None },
853                         })
854                 } else if has_err {
855                         Err(PaymentSendFailure::AllFailedResendSafe(results.drain(..).map(|r| r.unwrap_err()).collect()))
856                 } else {
857                         Ok(())
858                 }
859         }
860
861         #[cfg(test)]
862         pub(super) fn test_send_payment_internal<NS: Deref, F>(
863                 &self, route: &Route, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>,
864                 keysend_preimage: Option<PaymentPreimage>, payment_id: PaymentId, recv_value_msat: Option<u64>,
865                 onion_session_privs: Vec<[u8; 32]>, node_signer: &NS, best_block_height: u32,
866                 send_payment_along_path: F
867         ) -> Result<(), PaymentSendFailure>
868         where
869                 NS::Target: NodeSigner,
870                 F: Fn(&Vec<RouteHop>, &Option<PaymentParameters>, &PaymentHash, &Option<PaymentSecret>, u64,
871                    u32, PaymentId, &Option<PaymentPreimage>, [u8; 32]) -> Result<(), APIError>
872         {
873                 self.pay_route_internal(route, payment_hash, payment_secret, keysend_preimage, payment_id,
874                         recv_value_msat, onion_session_privs, node_signer, best_block_height,
875                         &send_payment_along_path)
876                         .map_err(|e| { self.remove_outbound_if_all_failed(payment_id, &e); e })
877         }
878
879         // If we failed to send any paths, we should remove the new PaymentId from the
880         // `pending_outbound_payments` map, as the user isn't expected to `abandon_payment`.
881         fn remove_outbound_if_all_failed(&self, payment_id: PaymentId, err: &PaymentSendFailure) {
882                 if let &PaymentSendFailure::AllFailedResendSafe(_) = err {
883                         let removed = self.pending_outbound_payments.lock().unwrap().remove(&payment_id).is_some();
884                         debug_assert!(removed, "We should always have a pending payment to remove here");
885                 }
886         }
887
888         pub(super) fn claim_htlc<L: Deref>(
889                 &self, payment_id: PaymentId, payment_preimage: PaymentPreimage, session_priv: SecretKey,
890                 path: Vec<RouteHop>, from_onchain: bool, pending_events: &Mutex<Vec<events::Event>>, logger: &L
891         ) where L::Target: Logger {
892                 let mut session_priv_bytes = [0; 32];
893                 session_priv_bytes.copy_from_slice(&session_priv[..]);
894                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
895                 let mut pending_events = pending_events.lock().unwrap();
896                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
897                         if !payment.get().is_fulfilled() {
898                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
899                                 let fee_paid_msat = payment.get().get_pending_fee_msat();
900                                 pending_events.push(
901                                         events::Event::PaymentSent {
902                                                 payment_id: Some(payment_id),
903                                                 payment_preimage,
904                                                 payment_hash,
905                                                 fee_paid_msat,
906                                         }
907                                 );
908                                 payment.get_mut().mark_fulfilled();
909                         }
910
911                         if from_onchain {
912                                 // We currently immediately remove HTLCs which were fulfilled on-chain.
913                                 // This could potentially lead to removing a pending payment too early,
914                                 // with a reorg of one block causing us to re-add the fulfilled payment on
915                                 // restart.
916                                 // TODO: We should have a second monitor event that informs us of payments
917                                 // irrevocably fulfilled.
918                                 if payment.get_mut().remove(&session_priv_bytes, Some(&path)) {
919                                         let payment_hash = Some(PaymentHash(Sha256::hash(&payment_preimage.0).into_inner()));
920                                         pending_events.push(
921                                                 events::Event::PaymentPathSuccessful {
922                                                         payment_id,
923                                                         payment_hash,
924                                                         path,
925                                                 }
926                                         );
927                                 }
928                         }
929                 } else {
930                         log_trace!(logger, "Received duplicative fulfill for HTLC with payment_preimage {}", log_bytes!(payment_preimage.0));
931                 }
932         }
933
934         pub(super) fn finalize_claims(&self, sources: Vec<HTLCSource>, pending_events: &Mutex<Vec<events::Event>>) {
935                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
936                 let mut pending_events = pending_events.lock().unwrap();
937                 for source in sources {
938                         if let HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } = source {
939                                 let mut session_priv_bytes = [0; 32];
940                                 session_priv_bytes.copy_from_slice(&session_priv[..]);
941                                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
942                                         assert!(payment.get().is_fulfilled());
943                                         if payment.get_mut().remove(&session_priv_bytes, None) {
944                                                 pending_events.push(
945                                                         events::Event::PaymentPathSuccessful {
946                                                                 payment_id,
947                                                                 payment_hash: payment.get().payment_hash(),
948                                                                 path,
949                                                         }
950                                                 );
951                                         }
952                                 }
953                         }
954                 }
955         }
956
957         pub(super) fn remove_stale_resolved_payments(&self, pending_events: &Mutex<Vec<events::Event>>) {
958                 // If an outbound payment was completed, and no pending HTLCs remain, we should remove it
959                 // from the map. However, if we did that immediately when the last payment HTLC is claimed,
960                 // this could race the user making a duplicate send_payment call and our idempotency
961                 // guarantees would be violated. Instead, we wait a few timer ticks to do the actual
962                 // removal. This should be more than sufficient to ensure the idempotency of any
963                 // `send_payment` calls that were made at the same time the `PaymentSent` event was being
964                 // processed.
965                 let mut pending_outbound_payments = self.pending_outbound_payments.lock().unwrap();
966                 let pending_events = pending_events.lock().unwrap();
967                 pending_outbound_payments.retain(|payment_id, payment| {
968                         if let PendingOutboundPayment::Fulfilled { session_privs, timer_ticks_without_htlcs, .. } = payment {
969                                 let mut no_remaining_entries = session_privs.is_empty();
970                                 if no_remaining_entries {
971                                         for ev in pending_events.iter() {
972                                                 match ev {
973                                                         events::Event::PaymentSent { payment_id: Some(ev_payment_id), .. } |
974                                                                 events::Event::PaymentPathSuccessful { payment_id: ev_payment_id, .. } |
975                                                                 events::Event::PaymentPathFailed { payment_id: Some(ev_payment_id), .. } => {
976                                                                         if payment_id == ev_payment_id {
977                                                                                 no_remaining_entries = false;
978                                                                                 break;
979                                                                         }
980                                                                 },
981                                                         _ => {},
982                                                 }
983                                         }
984                                 }
985                                 if no_remaining_entries {
986                                         *timer_ticks_without_htlcs += 1;
987                                         *timer_ticks_without_htlcs <= IDEMPOTENCY_TIMEOUT_TICKS
988                                 } else {
989                                         *timer_ticks_without_htlcs = 0;
990                                         true
991                                 }
992                         } else { true }
993                 });
994         }
995
996         pub(super) fn fail_htlc<L: Deref>(
997                 &self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason,
998                 path: &Vec<RouteHop>, session_priv: &SecretKey, payment_id: &PaymentId,
999                 payment_params: &Option<PaymentParameters>, probing_cookie_secret: [u8; 32],
1000                 secp_ctx: &Secp256k1<secp256k1::All>, pending_events: &Mutex<Vec<events::Event>>, logger: &L
1001         ) where L::Target: Logger {
1002                 #[cfg(test)]
1003                 let (network_update, short_channel_id, payment_retryable, onion_error_code, onion_error_data) = onion_error.decode_onion_failure(secp_ctx, logger, &source);
1004                 #[cfg(not(test))]
1005                 let (network_update, short_channel_id, payment_retryable, _, _) = onion_error.decode_onion_failure(secp_ctx, logger, &source);
1006
1007                 let mut session_priv_bytes = [0; 32];
1008                 session_priv_bytes.copy_from_slice(&session_priv[..]);
1009                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
1010                 let mut all_paths_failed = false;
1011                 let mut full_failure_ev = None;
1012                 let mut pending_retry_ev = None;
1013                 let mut retry = None;
1014                 let attempts_remaining = if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(*payment_id) {
1015                         if !payment.get_mut().remove(&session_priv_bytes, Some(&path)) {
1016                                 log_trace!(logger, "Received duplicative fail for HTLC with payment_hash {}", log_bytes!(payment_hash.0));
1017                                 return
1018                         }
1019                         if payment.get().is_fulfilled() {
1020                                 log_trace!(logger, "Received failure of HTLC with payment_hash {} after payment completion", log_bytes!(payment_hash.0));
1021                                 return
1022                         }
1023                         let is_retryable_now = payment.get().is_auto_retryable_now();
1024                         if let Some(scid) = short_channel_id {
1025                                 payment.get_mut().insert_previously_failed_scid(scid);
1026                         }
1027
1028                         // We want to move towards only using the `PaymentParameters` in the outbound payments
1029                         // map. However, for backwards-compatibility, we still need to support passing the
1030                         // `PaymentParameters` data that was shoved in the HTLC (and given to us via
1031                         // `payment_params`) back to the user.
1032                         let path_last_hop = path.last().expect("Outbound payments must have had a valid path");
1033                         if let Some(params) = payment.get_mut().payment_parameters() {
1034                                 if params.final_cltv_expiry_delta.is_none() {
1035                                         // This should be rare, but a user could provide None for the payment data, and
1036                                         // we need it when we go to retry the payment, so fill it in.
1037                                         params.final_cltv_expiry_delta = Some(path_last_hop.cltv_expiry_delta);
1038                                 }
1039                                 retry = Some(RouteParameters {
1040                                         payment_params: params.clone(),
1041                                         final_value_msat: path_last_hop.fee_msat,
1042                                         final_cltv_expiry_delta: params.final_cltv_expiry_delta.unwrap(),
1043                                 });
1044                         } else if let Some(params) = payment_params {
1045                                 retry = Some(RouteParameters {
1046                                         payment_params: params.clone(),
1047                                         final_value_msat: path_last_hop.fee_msat,
1048                                         final_cltv_expiry_delta:
1049                                                 if let Some(delta) = params.final_cltv_expiry_delta { delta }
1050                                                 else { path_last_hop.cltv_expiry_delta },
1051                                 });
1052                         }
1053
1054                         if payment.get().remaining_parts() == 0 {
1055                                 all_paths_failed = true;
1056                                 if payment.get().abandoned() {
1057                                         full_failure_ev = Some(events::Event::PaymentFailed {
1058                                                 payment_id: *payment_id,
1059                                                 payment_hash: payment.get().payment_hash().expect("PendingOutboundPayments::RetriesExceeded always has a payment hash set"),
1060                                         });
1061                                         payment.remove();
1062                                 }
1063                         }
1064                         is_retryable_now
1065                 } else {
1066                         log_trace!(logger, "Received duplicative fail for HTLC with payment_hash {}", log_bytes!(payment_hash.0));
1067                         return
1068                 };
1069                 core::mem::drop(outbounds);
1070                 log_trace!(logger, "Failing outbound payment HTLC with payment_hash {}", log_bytes!(payment_hash.0));
1071
1072                 let path_failure = {
1073                         if payment_is_probe(payment_hash, &payment_id, probing_cookie_secret) {
1074                                 if !payment_retryable {
1075                                         events::Event::ProbeSuccessful {
1076                                                 payment_id: *payment_id,
1077                                                 payment_hash: payment_hash.clone(),
1078                                                 path: path.clone(),
1079                                         }
1080                                 } else {
1081                                         events::Event::ProbeFailed {
1082                                                 payment_id: *payment_id,
1083                                                 payment_hash: payment_hash.clone(),
1084                                                 path: path.clone(),
1085                                                 short_channel_id,
1086                                         }
1087                                 }
1088                         } else {
1089                                 // TODO: If we decided to blame ourselves (or one of our channels) in
1090                                 // process_onion_failure we should close that channel as it implies our
1091                                 // next-hop is needlessly blaming us!
1092                                 if let Some(scid) = short_channel_id {
1093                                         retry.as_mut().map(|r| r.payment_params.previously_failed_channels.push(scid));
1094                                 }
1095                                 if payment_retryable && attempts_remaining && retry.is_some() {
1096                                         debug_assert!(full_failure_ev.is_none());
1097                                         pending_retry_ev = Some(events::Event::PendingHTLCsForwardable {
1098                                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
1099                                         });
1100                                 }
1101                                 events::Event::PaymentPathFailed {
1102                                         payment_id: Some(*payment_id),
1103                                         payment_hash: payment_hash.clone(),
1104                                         payment_failed_permanently: !payment_retryable,
1105                                         network_update,
1106                                         all_paths_failed,
1107                                         path: path.clone(),
1108                                         short_channel_id,
1109                                         retry,
1110                                         #[cfg(test)]
1111                                         error_code: onion_error_code,
1112                                         #[cfg(test)]
1113                                         error_data: onion_error_data
1114                                 }
1115                         }
1116                 };
1117                 let mut pending_events = pending_events.lock().unwrap();
1118                 pending_events.push(path_failure);
1119                 if let Some(ev) = full_failure_ev { pending_events.push(ev); }
1120                 if let Some(ev) = pending_retry_ev { pending_events.push(ev); }
1121         }
1122
1123         pub(super) fn abandon_payment(&self, payment_id: PaymentId) -> Option<events::Event> {
1124                 let mut failed_ev = None;
1125                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
1126                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
1127                         if let Ok(()) = payment.get_mut().mark_abandoned() {
1128                                 if payment.get().remaining_parts() == 0 {
1129                                         failed_ev = Some(events::Event::PaymentFailed {
1130                                                 payment_id,
1131                                                 payment_hash: payment.get().payment_hash().expect("PendingOutboundPayments::RetriesExceeded always has a payment hash set"),
1132                                         });
1133                                         payment.remove();
1134                                 }
1135                         }
1136                 }
1137                 failed_ev
1138         }
1139
1140         #[cfg(test)]
1141         pub fn has_pending_payments(&self) -> bool {
1142                 !self.pending_outbound_payments.lock().unwrap().is_empty()
1143         }
1144
1145         #[cfg(test)]
1146         pub fn clear_pending_payments(&self) {
1147                 self.pending_outbound_payments.lock().unwrap().clear()
1148         }
1149 }
1150
1151 /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
1152 /// payment probe.
1153 pub(super) fn payment_is_probe(payment_hash: &PaymentHash, payment_id: &PaymentId,
1154         probing_cookie_secret: [u8; 32]) -> bool
1155 {
1156         let target_payment_hash = probing_cookie_from_id(payment_id, probing_cookie_secret);
1157         target_payment_hash == *payment_hash
1158 }
1159
1160 /// Returns the 'probing cookie' for the given [`PaymentId`].
1161 fn probing_cookie_from_id(payment_id: &PaymentId, probing_cookie_secret: [u8; 32]) -> PaymentHash {
1162         let mut preimage = [0u8; 64];
1163         preimage[..32].copy_from_slice(&probing_cookie_secret);
1164         preimage[32..].copy_from_slice(&payment_id.0);
1165         PaymentHash(Sha256::hash(&preimage).into_inner())
1166 }
1167
1168 impl_writeable_tlv_based_enum_upgradable!(PendingOutboundPayment,
1169         (0, Legacy) => {
1170                 (0, session_privs, required),
1171         },
1172         (1, Fulfilled) => {
1173                 (0, session_privs, required),
1174                 (1, payment_hash, option),
1175                 (3, timer_ticks_without_htlcs, (default_value, 0)),
1176         },
1177         (2, Retryable) => {
1178                 (0, session_privs, required),
1179                 (1, pending_fee_msat, option),
1180                 (2, payment_hash, required),
1181                 (3, payment_params, option),
1182                 (4, payment_secret, option),
1183                 (5, keysend_preimage, option),
1184                 (6, total_msat, required),
1185                 (8, pending_amt_msat, required),
1186                 (10, starting_block_height, required),
1187                 (not_written, retry_strategy, (static_value, None)),
1188                 (not_written, attempts, (static_value, PaymentAttempts::new())),
1189         },
1190         (3, Abandoned) => {
1191                 (0, session_privs, required),
1192                 (2, payment_hash, required),
1193         },
1194 );
1195
1196 #[cfg(test)]
1197 mod tests {
1198         use bitcoin::blockdata::constants::genesis_block;
1199         use bitcoin::network::constants::Network;
1200         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
1201
1202         use crate::ln::PaymentHash;
1203         use crate::ln::channelmanager::{PaymentId, PaymentSendFailure};
1204         use crate::ln::msgs::{ErrorAction, LightningError};
1205         use crate::ln::outbound_payment::{OutboundPayments, Retry};
1206         use crate::routing::gossip::NetworkGraph;
1207         use crate::routing::router::{InFlightHtlcs, PaymentParameters, Route, RouteParameters};
1208         use crate::sync::{Arc, Mutex};
1209         use crate::util::errors::APIError;
1210         use crate::util::test_utils;
1211
1212         #[test]
1213         #[cfg(feature = "std")]
1214         fn fails_paying_after_expiration() {
1215                 do_fails_paying_after_expiration(false);
1216                 do_fails_paying_after_expiration(true);
1217         }
1218         #[cfg(feature = "std")]
1219         fn do_fails_paying_after_expiration(on_retry: bool) {
1220                 let outbound_payments = OutboundPayments::new();
1221                 let logger = test_utils::TestLogger::new();
1222                 let genesis_hash = genesis_block(Network::Testnet).header.block_hash();
1223                 let network_graph = Arc::new(NetworkGraph::new(genesis_hash, &logger));
1224                 let scorer = Mutex::new(test_utils::TestScorer::new());
1225                 let router = test_utils::TestRouter::new(network_graph, &scorer);
1226                 let secp_ctx = Secp256k1::new();
1227                 let keys_manager = test_utils::TestKeysInterface::new(&[0; 32], Network::Testnet);
1228
1229                 let past_expiry_time = std::time::SystemTime::UNIX_EPOCH.elapsed().unwrap().as_secs() - 2;
1230                 let payment_params = PaymentParameters::from_node_id(
1231                                 PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap()),
1232                                 0
1233                         ).with_expiry_time(past_expiry_time);
1234                 let expired_route_params = RouteParameters {
1235                         payment_params,
1236                         final_value_msat: 0,
1237                         final_cltv_expiry_delta: 0,
1238                 };
1239                 let err = if on_retry {
1240                         outbound_payments.pay_internal(
1241                                 PaymentId([0; 32]), None, expired_route_params, &&router, vec![], &|| InFlightHtlcs::new(),
1242                                 &&keys_manager, &&keys_manager, 0, &&logger, &|_, _, _, _, _, _, _, _, _| Ok(())).unwrap_err()
1243                 } else {
1244                         outbound_payments.send_payment(
1245                                 PaymentHash([0; 32]), &None, PaymentId([0; 32]), Retry::Attempts(0), expired_route_params,
1246                                 &&router, vec![], || InFlightHtlcs::new(), &&keys_manager, &&keys_manager, 0, &&logger,
1247                                 |_, _, _, _, _, _, _, _, _| Ok(())).unwrap_err()
1248                 };
1249                 if let PaymentSendFailure::ParameterError(APIError::APIMisuseError { err }) = err {
1250                         assert!(err.contains("Invoice expired"));
1251                 } else { panic!("Unexpected error"); }
1252         }
1253
1254         #[test]
1255         fn find_route_error() {
1256                 do_find_route_error(false);
1257                 do_find_route_error(true);
1258         }
1259         fn do_find_route_error(on_retry: bool) {
1260                 let outbound_payments = OutboundPayments::new();
1261                 let logger = test_utils::TestLogger::new();
1262                 let genesis_hash = genesis_block(Network::Testnet).header.block_hash();
1263                 let network_graph = Arc::new(NetworkGraph::new(genesis_hash, &logger));
1264                 let scorer = Mutex::new(test_utils::TestScorer::new());
1265                 let router = test_utils::TestRouter::new(network_graph, &scorer);
1266                 let secp_ctx = Secp256k1::new();
1267                 let keys_manager = test_utils::TestKeysInterface::new(&[0; 32], Network::Testnet);
1268
1269                 let payment_params = PaymentParameters::from_node_id(
1270                         PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap()), 0);
1271                 let route_params = RouteParameters {
1272                         payment_params,
1273                         final_value_msat: 0,
1274                         final_cltv_expiry_delta: 0,
1275                 };
1276                 router.expect_find_route(route_params.clone(),
1277                         Err(LightningError { err: String::new(), action: ErrorAction::IgnoreError }));
1278
1279                 let err = if on_retry {
1280                         outbound_payments.add_new_pending_payment(PaymentHash([0; 32]), None, PaymentId([0; 32]), None,
1281                                 &Route { paths: vec![], payment_params: None }, Some(Retry::Attempts(1)),
1282                                 Some(route_params.payment_params.clone()), &&keys_manager, 0).unwrap();
1283                         outbound_payments.pay_internal(
1284                                 PaymentId([0; 32]), None, route_params, &&router, vec![], &|| InFlightHtlcs::new(),
1285                                 &&keys_manager, &&keys_manager, 0, &&logger, &|_, _, _, _, _, _, _, _, _| Ok(())).unwrap_err()
1286                 } else {
1287                         outbound_payments.send_payment(
1288                                 PaymentHash([0; 32]), &None, PaymentId([0; 32]), Retry::Attempts(0), route_params,
1289                                 &&router, vec![], || InFlightHtlcs::new(), &&keys_manager, &&keys_manager, 0, &&logger,
1290                                 |_, _, _, _, _, _, _, _, _| Ok(())).unwrap_err()
1291                 };
1292                 if let PaymentSendFailure::ParameterError(APIError::APIMisuseError { err }) = err {
1293                         assert!(err.contains("Failed to find a route"));
1294                 } else { panic!("Unexpected error"); }
1295         }
1296 }