]> git.bitcoin.ninja Git - rust-lightning/blob - lightning/src/ln/channelmanager.rs
Delay removal of fulfilled outbound payments for a few timer ticks
[rust-lightning] / lightning / src / ln / channelmanager.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! The top-level channel management and payment tracking stuff lives here.
11 //!
12 //! The ChannelManager is the main chunk of logic implementing the lightning protocol and is
13 //! responsible for tracking which channels are open, HTLCs are in flight and reestablishing those
14 //! upon reconnect to the relevant peer(s).
15 //!
16 //! It does not manage routing logic (see [`find_route`] for that) nor does it manage constructing
17 //! on-chain transactions (it only monitors the chain to watch for any force-closes that might
18 //! imply it needs to fail HTLCs/payments/channels it manages).
19 //!
20 //! [`find_route`]: crate::routing::router::find_route
21
22 use bitcoin::blockdata::block::BlockHeader;
23 use bitcoin::blockdata::transaction::Transaction;
24 use bitcoin::blockdata::constants::genesis_block;
25 use bitcoin::network::constants::Network;
26
27 use bitcoin::hashes::Hash;
28 use bitcoin::hashes::sha256::Hash as Sha256;
29 use bitcoin::hashes::sha256d::Hash as Sha256dHash;
30 use bitcoin::hash_types::{BlockHash, Txid};
31
32 use bitcoin::secp256k1::{SecretKey,PublicKey};
33 use bitcoin::secp256k1::Secp256k1;
34 use bitcoin::secp256k1::ecdh::SharedSecret;
35 use bitcoin::{LockTime, secp256k1, Sequence};
36
37 use crate::chain;
38 use crate::chain::{Confirm, ChannelMonitorUpdateStatus, Watch, BestBlock};
39 use crate::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator};
40 use crate::chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateStep, HTLC_FAIL_BACK_BUFFER, CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS, ANTI_REORG_DELAY, MonitorEvent, CLOSED_CHANNEL_UPDATE_ID};
41 use crate::chain::transaction::{OutPoint, TransactionData};
42 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
43 // construct one themselves.
44 use crate::ln::{inbound_payment, PaymentHash, PaymentPreimage, PaymentSecret};
45 use crate::ln::channel::{Channel, ChannelError, ChannelUpdateStatus, UpdateFulfillCommitFetch};
46 use crate::ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
47 #[cfg(any(feature = "_test_utils", test))]
48 use crate::ln::features::InvoiceFeatures;
49 use crate::routing::router::{PaymentParameters, Route, RouteHop, RoutePath, RouteParameters};
50 use crate::ln::msgs;
51 use crate::ln::onion_utils;
52 use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError, MAX_VALUE_MSAT};
53 use crate::ln::wire::Encode;
54 use crate::chain::keysinterface::{Sign, KeysInterface, KeysManager, InMemorySigner, Recipient};
55 use crate::util::config::{UserConfig, ChannelConfig};
56 use crate::util::events::{EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination};
57 use crate::util::{byte_utils, events};
58 use crate::util::wakers::{Future, Notifier};
59 use crate::util::scid_utils::fake_scid;
60 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
61 use crate::util::logger::{Level, Logger};
62 use crate::util::errors::APIError;
63
64 use crate::io;
65 use crate::prelude::*;
66 use core::{cmp, mem};
67 use core::cell::RefCell;
68 use crate::io::Read;
69 use crate::sync::{Arc, Mutex, MutexGuard, RwLock, RwLockReadGuard};
70 use core::sync::atomic::{AtomicUsize, Ordering};
71 use core::time::Duration;
72 use core::ops::Deref;
73
74 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
75 //
76 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
77 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
78 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
79 //
80 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
81 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
82 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
83 // before we forward it.
84 //
85 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
86 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
87 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
88 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
89 // our payment, which we can use to decode errors or inform the user that the payment was sent.
90
91 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
92 pub(super) enum PendingHTLCRouting {
93         Forward {
94                 onion_packet: msgs::OnionPacket,
95                 /// The SCID from the onion that we should forward to. This could be a "real" SCID, an
96                 /// outbound SCID alias, or a phantom node SCID.
97                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
98         },
99         Receive {
100                 payment_data: msgs::FinalOnionHopData,
101                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
102                 phantom_shared_secret: Option<[u8; 32]>,
103         },
104         ReceiveKeysend {
105                 payment_preimage: PaymentPreimage,
106                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
107         },
108 }
109
110 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
111 pub(super) struct PendingHTLCInfo {
112         pub(super) routing: PendingHTLCRouting,
113         pub(super) incoming_shared_secret: [u8; 32],
114         payment_hash: PaymentHash,
115         pub(super) amt_to_forward: u64,
116         pub(super) outgoing_cltv_value: u32,
117 }
118
119 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
120 pub(super) enum HTLCFailureMsg {
121         Relay(msgs::UpdateFailHTLC),
122         Malformed(msgs::UpdateFailMalformedHTLC),
123 }
124
125 /// Stores whether we can't forward an HTLC or relevant forwarding info
126 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
127 pub(super) enum PendingHTLCStatus {
128         Forward(PendingHTLCInfo),
129         Fail(HTLCFailureMsg),
130 }
131
132 pub(super) enum HTLCForwardInfo {
133         AddHTLC {
134                 forward_info: PendingHTLCInfo,
135
136                 // These fields are produced in `forward_htlcs()` and consumed in
137                 // `process_pending_htlc_forwards()` for constructing the
138                 // `HTLCSource::PreviousHopData` for failed and forwarded
139                 // HTLCs.
140                 //
141                 // Note that this may be an outbound SCID alias for the associated channel.
142                 prev_short_channel_id: u64,
143                 prev_htlc_id: u64,
144                 prev_funding_outpoint: OutPoint,
145         },
146         FailHTLC {
147                 htlc_id: u64,
148                 err_packet: msgs::OnionErrorPacket,
149         },
150 }
151
152 /// Tracks the inbound corresponding to an outbound HTLC
153 #[derive(Clone, Hash, PartialEq, Eq)]
154 pub(crate) struct HTLCPreviousHopData {
155         // Note that this may be an outbound SCID alias for the associated channel.
156         short_channel_id: u64,
157         htlc_id: u64,
158         incoming_packet_shared_secret: [u8; 32],
159         phantom_shared_secret: Option<[u8; 32]>,
160
161         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
162         // channel with a preimage provided by the forward channel.
163         outpoint: OutPoint,
164 }
165
166 enum OnionPayload {
167         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
168         Invoice {
169                 /// This is only here for backwards-compatibility in serialization, in the future it can be
170                 /// removed, breaking clients running 0.0.106 and earlier.
171                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
172         },
173         /// Contains the payer-provided preimage.
174         Spontaneous(PaymentPreimage),
175 }
176
177 /// HTLCs that are to us and can be failed/claimed by the user
178 struct ClaimableHTLC {
179         prev_hop: HTLCPreviousHopData,
180         cltv_expiry: u32,
181         /// The amount (in msats) of this MPP part
182         value: u64,
183         onion_payload: OnionPayload,
184         timer_ticks: u8,
185         /// The sum total of all MPP parts
186         total_msat: u64,
187 }
188
189 /// A payment identifier used to uniquely identify a payment to LDK.
190 /// (C-not exported) as we just use [u8; 32] directly
191 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
192 pub struct PaymentId(pub [u8; 32]);
193
194 impl Writeable for PaymentId {
195         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
196                 self.0.write(w)
197         }
198 }
199
200 impl Readable for PaymentId {
201         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
202                 let buf: [u8; 32] = Readable::read(r)?;
203                 Ok(PaymentId(buf))
204         }
205 }
206 /// Tracks the inbound corresponding to an outbound HTLC
207 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
208 #[derive(Clone, PartialEq, Eq)]
209 pub(crate) enum HTLCSource {
210         PreviousHopData(HTLCPreviousHopData),
211         OutboundRoute {
212                 path: Vec<RouteHop>,
213                 session_priv: SecretKey,
214                 /// Technically we can recalculate this from the route, but we cache it here to avoid
215                 /// doing a double-pass on route when we get a failure back
216                 first_hop_htlc_msat: u64,
217                 payment_id: PaymentId,
218                 payment_secret: Option<PaymentSecret>,
219                 payment_params: Option<PaymentParameters>,
220         },
221 }
222 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
223 impl core::hash::Hash for HTLCSource {
224         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
225                 match self {
226                         HTLCSource::PreviousHopData(prev_hop_data) => {
227                                 0u8.hash(hasher);
228                                 prev_hop_data.hash(hasher);
229                         },
230                         HTLCSource::OutboundRoute { path, session_priv, payment_id, payment_secret, first_hop_htlc_msat, payment_params } => {
231                                 1u8.hash(hasher);
232                                 path.hash(hasher);
233                                 session_priv[..].hash(hasher);
234                                 payment_id.hash(hasher);
235                                 payment_secret.hash(hasher);
236                                 first_hop_htlc_msat.hash(hasher);
237                                 payment_params.hash(hasher);
238                         },
239                 }
240         }
241 }
242 #[cfg(not(feature = "grind_signatures"))]
243 #[cfg(test)]
244 impl HTLCSource {
245         pub fn dummy() -> Self {
246                 HTLCSource::OutboundRoute {
247                         path: Vec::new(),
248                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
249                         first_hop_htlc_msat: 0,
250                         payment_id: PaymentId([2; 32]),
251                         payment_secret: None,
252                         payment_params: None,
253                 }
254         }
255 }
256
257 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
258 pub(super) enum HTLCFailReason {
259         LightningError {
260                 err: msgs::OnionErrorPacket,
261         },
262         Reason {
263                 failure_code: u16,
264                 data: Vec<u8>,
265         }
266 }
267
268 struct ReceiveError {
269         err_code: u16,
270         err_data: Vec<u8>,
271         msg: &'static str,
272 }
273
274 /// Return value for claim_funds_from_hop
275 enum ClaimFundsFromHop {
276         PrevHopForceClosed,
277         MonitorUpdateFail(PublicKey, MsgHandleErrInternal, Option<u64>),
278         Success(u64),
279         DuplicateClaim,
280 }
281
282 type ShutdownResult = (Option<(OutPoint, ChannelMonitorUpdate)>, Vec<(HTLCSource, PaymentHash, PublicKey, [u8; 32])>);
283
284 /// Error type returned across the channel_state mutex boundary. When an Err is generated for a
285 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
286 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
287 /// channel_state lock. We then return the set of things that need to be done outside the lock in
288 /// this struct and call handle_error!() on it.
289
290 struct MsgHandleErrInternal {
291         err: msgs::LightningError,
292         chan_id: Option<([u8; 32], u64)>, // If Some a channel of ours has been closed
293         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
294 }
295 impl MsgHandleErrInternal {
296         #[inline]
297         fn send_err_msg_no_close(err: String, channel_id: [u8; 32]) -> Self {
298                 Self {
299                         err: LightningError {
300                                 err: err.clone(),
301                                 action: msgs::ErrorAction::SendErrorMessage {
302                                         msg: msgs::ErrorMessage {
303                                                 channel_id,
304                                                 data: err
305                                         },
306                                 },
307                         },
308                         chan_id: None,
309                         shutdown_finish: None,
310                 }
311         }
312         #[inline]
313         fn ignore_no_close(err: String) -> Self {
314                 Self {
315                         err: LightningError {
316                                 err,
317                                 action: msgs::ErrorAction::IgnoreError,
318                         },
319                         chan_id: None,
320                         shutdown_finish: None,
321                 }
322         }
323         #[inline]
324         fn from_no_close(err: msgs::LightningError) -> Self {
325                 Self { err, chan_id: None, shutdown_finish: None }
326         }
327         #[inline]
328         fn from_finish_shutdown(err: String, channel_id: [u8; 32], user_channel_id: u64, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>) -> Self {
329                 Self {
330                         err: LightningError {
331                                 err: err.clone(),
332                                 action: msgs::ErrorAction::SendErrorMessage {
333                                         msg: msgs::ErrorMessage {
334                                                 channel_id,
335                                                 data: err
336                                         },
337                                 },
338                         },
339                         chan_id: Some((channel_id, user_channel_id)),
340                         shutdown_finish: Some((shutdown_res, channel_update)),
341                 }
342         }
343         #[inline]
344         fn from_chan_no_close(err: ChannelError, channel_id: [u8; 32]) -> Self {
345                 Self {
346                         err: match err {
347                                 ChannelError::Warn(msg) =>  LightningError {
348                                         err: msg.clone(),
349                                         action: msgs::ErrorAction::SendWarningMessage {
350                                                 msg: msgs::WarningMessage {
351                                                         channel_id,
352                                                         data: msg
353                                                 },
354                                                 log_level: Level::Warn,
355                                         },
356                                 },
357                                 ChannelError::Ignore(msg) => LightningError {
358                                         err: msg,
359                                         action: msgs::ErrorAction::IgnoreError,
360                                 },
361                                 ChannelError::Close(msg) => LightningError {
362                                         err: msg.clone(),
363                                         action: msgs::ErrorAction::SendErrorMessage {
364                                                 msg: msgs::ErrorMessage {
365                                                         channel_id,
366                                                         data: msg
367                                                 },
368                                         },
369                                 },
370                         },
371                         chan_id: None,
372                         shutdown_finish: None,
373                 }
374         }
375 }
376
377 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
378 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
379 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
380 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
381 const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
382
383 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
384 /// be sent in the order they appear in the return value, however sometimes the order needs to be
385 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
386 /// they were originally sent). In those cases, this enum is also returned.
387 #[derive(Clone, PartialEq)]
388 pub(super) enum RAACommitmentOrder {
389         /// Send the CommitmentUpdate messages first
390         CommitmentFirst,
391         /// Send the RevokeAndACK message first
392         RevokeAndACKFirst,
393 }
394
395 // Note this is only exposed in cfg(test):
396 pub(super) struct ChannelHolder<Signer: Sign> {
397         pub(super) by_id: HashMap<[u8; 32], Channel<Signer>>,
398         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
399         ///
400         /// Outbound SCID aliases are added here once the channel is available for normal use, with
401         /// SCIDs being added once the funding transaction is confirmed at the channel's required
402         /// confirmation depth.
403         pub(super) short_to_chan_info: HashMap<u64, (PublicKey, [u8; 32])>,
404         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
405         /// failed/claimed by the user.
406         ///
407         /// Note that while this is held in the same mutex as the channels themselves, no consistency
408         /// guarantees are made about the channels given here actually existing anymore by the time you
409         /// go to read them!
410         claimable_htlcs: HashMap<PaymentHash, (events::PaymentPurpose, Vec<ClaimableHTLC>)>,
411         /// Messages to send to peers - pushed to in the same lock that they are generated in (except
412         /// for broadcast messages, where ordering isn't as strict).
413         pub(super) pending_msg_events: Vec<MessageSendEvent>,
414 }
415
416 /// Events which we process internally but cannot be procsesed immediately at the generation site
417 /// for some reason. They are handled in timer_tick_occurred, so may be processed with
418 /// quite some time lag.
419 enum BackgroundEvent {
420         /// Handle a ChannelMonitorUpdate that closes a channel, broadcasting its current latest holder
421         /// commitment transaction.
422         ClosingMonitorUpdate((OutPoint, ChannelMonitorUpdate)),
423 }
424
425 /// State we hold per-peer. In the future we should put channels in here, but for now we only hold
426 /// the latest Init features we heard from the peer.
427 struct PeerState {
428         latest_features: InitFeatures,
429 }
430
431 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
432 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
433 ///
434 /// For users who don't want to bother doing their own payment preimage storage, we also store that
435 /// here.
436 ///
437 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
438 /// and instead encoding it in the payment secret.
439 struct PendingInboundPayment {
440         /// The payment secret that the sender must use for us to accept this payment
441         payment_secret: PaymentSecret,
442         /// Time at which this HTLC expires - blocks with a header time above this value will result in
443         /// this payment being removed.
444         expiry_time: u64,
445         /// Arbitrary identifier the user specifies (or not)
446         user_payment_id: u64,
447         // Other required attributes of the payment, optionally enforced:
448         payment_preimage: Option<PaymentPreimage>,
449         min_value_msat: Option<u64>,
450 }
451
452 /// Stores the session_priv for each part of a payment that is still pending. For versions 0.0.102
453 /// and later, also stores information for retrying the payment.
454 pub(crate) enum PendingOutboundPayment {
455         Legacy {
456                 session_privs: HashSet<[u8; 32]>,
457         },
458         Retryable {
459                 session_privs: HashSet<[u8; 32]>,
460                 payment_hash: PaymentHash,
461                 payment_secret: Option<PaymentSecret>,
462                 pending_amt_msat: u64,
463                 /// Used to track the fee paid. Only present if the payment was serialized on 0.0.103+.
464                 pending_fee_msat: Option<u64>,
465                 /// The total payment amount across all paths, used to verify that a retry is not overpaying.
466                 total_msat: u64,
467                 /// Our best known block height at the time this payment was initiated.
468                 starting_block_height: u32,
469         },
470         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
471         /// been resolved. This ensures we don't look up pending payments in ChannelMonitors on restart
472         /// and add a pending payment that was already fulfilled.
473         Fulfilled {
474                 session_privs: HashSet<[u8; 32]>,
475                 payment_hash: Option<PaymentHash>,
476                 timer_ticks_without_htlcs: u8,
477         },
478         /// When a payer gives up trying to retry a payment, they inform us, letting us generate a
479         /// `PaymentFailed` event when all HTLCs have irrevocably failed. This avoids a number of race
480         /// conditions in MPP-aware payment retriers (1), where the possibility of multiple
481         /// `PaymentPathFailed` events with `all_paths_failed` can be pending at once, confusing a
482         /// downstream event handler as to when a payment has actually failed.
483         ///
484         /// (1) https://github.com/lightningdevkit/rust-lightning/issues/1164
485         Abandoned {
486                 session_privs: HashSet<[u8; 32]>,
487                 payment_hash: PaymentHash,
488         },
489 }
490
491 impl PendingOutboundPayment {
492         fn is_fulfilled(&self) -> bool {
493                 match self {
494                         PendingOutboundPayment::Fulfilled { .. } => true,
495                         _ => false,
496                 }
497         }
498         fn abandoned(&self) -> bool {
499                 match self {
500                         PendingOutboundPayment::Abandoned { .. } => true,
501                         _ => false,
502                 }
503         }
504         fn get_pending_fee_msat(&self) -> Option<u64> {
505                 match self {
506                         PendingOutboundPayment::Retryable { pending_fee_msat, .. } => pending_fee_msat.clone(),
507                         _ => None,
508                 }
509         }
510
511         fn payment_hash(&self) -> Option<PaymentHash> {
512                 match self {
513                         PendingOutboundPayment::Legacy { .. } => None,
514                         PendingOutboundPayment::Retryable { payment_hash, .. } => Some(*payment_hash),
515                         PendingOutboundPayment::Fulfilled { payment_hash, .. } => *payment_hash,
516                         PendingOutboundPayment::Abandoned { payment_hash, .. } => Some(*payment_hash),
517                 }
518         }
519
520         fn mark_fulfilled(&mut self) {
521                 let mut session_privs = HashSet::new();
522                 core::mem::swap(&mut session_privs, match self {
523                         PendingOutboundPayment::Legacy { session_privs } |
524                         PendingOutboundPayment::Retryable { session_privs, .. } |
525                         PendingOutboundPayment::Fulfilled { session_privs, .. } |
526                         PendingOutboundPayment::Abandoned { session_privs, .. }
527                                 => session_privs,
528                 });
529                 let payment_hash = self.payment_hash();
530                 *self = PendingOutboundPayment::Fulfilled { session_privs, payment_hash, timer_ticks_without_htlcs: 0 };
531         }
532
533         fn mark_abandoned(&mut self) -> Result<(), ()> {
534                 let mut session_privs = HashSet::new();
535                 let our_payment_hash;
536                 core::mem::swap(&mut session_privs, match self {
537                         PendingOutboundPayment::Legacy { .. } |
538                         PendingOutboundPayment::Fulfilled { .. } =>
539                                 return Err(()),
540                         PendingOutboundPayment::Retryable { session_privs, payment_hash, .. } |
541                         PendingOutboundPayment::Abandoned { session_privs, payment_hash, .. } => {
542                                 our_payment_hash = *payment_hash;
543                                 session_privs
544                         },
545                 });
546                 *self = PendingOutboundPayment::Abandoned { session_privs, payment_hash: our_payment_hash };
547                 Ok(())
548         }
549
550         /// panics if path is None and !self.is_fulfilled
551         fn remove(&mut self, session_priv: &[u8; 32], path: Option<&Vec<RouteHop>>) -> bool {
552                 let remove_res = match self {
553                         PendingOutboundPayment::Legacy { session_privs } |
554                         PendingOutboundPayment::Retryable { session_privs, .. } |
555                         PendingOutboundPayment::Fulfilled { session_privs, .. } |
556                         PendingOutboundPayment::Abandoned { session_privs, .. } => {
557                                 session_privs.remove(session_priv)
558                         }
559                 };
560                 if remove_res {
561                         if let PendingOutboundPayment::Retryable { ref mut pending_amt_msat, ref mut pending_fee_msat, .. } = self {
562                                 let path = path.expect("Fulfilling a payment should always come with a path");
563                                 let path_last_hop = path.last().expect("Outbound payments must have had a valid path");
564                                 *pending_amt_msat -= path_last_hop.fee_msat;
565                                 if let Some(fee_msat) = pending_fee_msat.as_mut() {
566                                         *fee_msat -= path.get_path_fees();
567                                 }
568                         }
569                 }
570                 remove_res
571         }
572
573         fn insert(&mut self, session_priv: [u8; 32], path: &Vec<RouteHop>) -> bool {
574                 let insert_res = match self {
575                         PendingOutboundPayment::Legacy { session_privs } |
576                         PendingOutboundPayment::Retryable { session_privs, .. } => {
577                                 session_privs.insert(session_priv)
578                         }
579                         PendingOutboundPayment::Fulfilled { .. } => false,
580                         PendingOutboundPayment::Abandoned { .. } => false,
581                 };
582                 if insert_res {
583                         if let PendingOutboundPayment::Retryable { ref mut pending_amt_msat, ref mut pending_fee_msat, .. } = self {
584                                 let path_last_hop = path.last().expect("Outbound payments must have had a valid path");
585                                 *pending_amt_msat += path_last_hop.fee_msat;
586                                 if let Some(fee_msat) = pending_fee_msat.as_mut() {
587                                         *fee_msat += path.get_path_fees();
588                                 }
589                         }
590                 }
591                 insert_res
592         }
593
594         fn remaining_parts(&self) -> usize {
595                 match self {
596                         PendingOutboundPayment::Legacy { session_privs } |
597                         PendingOutboundPayment::Retryable { session_privs, .. } |
598                         PendingOutboundPayment::Fulfilled { session_privs, .. } |
599                         PendingOutboundPayment::Abandoned { session_privs, .. } => {
600                                 session_privs.len()
601                         }
602                 }
603         }
604 }
605
606 /// SimpleArcChannelManager is useful when you need a ChannelManager with a static lifetime, e.g.
607 /// when you're using lightning-net-tokio (since tokio::spawn requires parameters with static
608 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
609 /// SimpleRefChannelManager is the more appropriate type. Defining these type aliases prevents
610 /// issues such as overly long function definitions. Note that the ChannelManager can take any
611 /// type that implements KeysInterface for its keys manager, but this type alias chooses the
612 /// concrete type of the KeysManager.
613 ///
614 /// (C-not exported) as Arcs don't make sense in bindings
615 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<InMemorySigner, Arc<M>, Arc<T>, Arc<KeysManager>, Arc<F>, Arc<L>>;
616
617 /// SimpleRefChannelManager is a type alias for a ChannelManager reference, and is the reference
618 /// counterpart to the SimpleArcChannelManager type alias. Use this type by default when you don't
619 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
620 /// usage of lightning-net-tokio (since tokio::spawn requires parameters with static lifetimes).
621 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
622 /// helps with issues such as long function definitions. Note that the ChannelManager can take any
623 /// type that implements KeysInterface for its keys manager, but this type alias chooses the
624 /// concrete type of the KeysManager.
625 ///
626 /// (C-not exported) as Arcs don't make sense in bindings
627 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, M, T, F, L> = ChannelManager<InMemorySigner, &'a M, &'b T, &'c KeysManager, &'d F, &'e L>;
628
629 /// Manager which keeps track of a number of channels and sends messages to the appropriate
630 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
631 ///
632 /// Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
633 /// to individual Channels.
634 ///
635 /// Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
636 /// all peers during write/read (though does not modify this instance, only the instance being
637 /// serialized). This will result in any channels which have not yet exchanged funding_created (ie
638 /// called funding_transaction_generated for outbound channels).
639 ///
640 /// Note that you can be a bit lazier about writing out ChannelManager than you can be with
641 /// ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
642 /// returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
643 /// happens out-of-band (and will prevent any other ChannelManager operations from occurring during
644 /// the serialization process). If the deserialized version is out-of-date compared to the
645 /// ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
646 /// ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
647 ///
648 /// Note that the deserializer is only implemented for (BlockHash, ChannelManager), which
649 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
650 /// the "reorg path" (ie call block_disconnected() until you get to a common block and then call
651 /// block_connected() to step towards your best block) upon deserialization before using the
652 /// object!
653 ///
654 /// Note that ChannelManager is responsible for tracking liveness of its channels and generating
655 /// ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
656 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
657 /// offline for a full minute. In order to track this, you must call
658 /// timer_tick_occurred roughly once per minute, though it doesn't have to be perfect.
659 ///
660 /// Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
661 /// a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
662 /// essentially you should default to using a SimpleRefChannelManager, and use a
663 /// SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
664 /// you're using lightning-net-tokio.
665 //
666 // Lock order:
667 // The tree structure below illustrates the lock order requirements for the different locks of the
668 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
669 // and should then be taken in the order of the lowest to the highest level in the tree.
670 // Note that locks on different branches shall not be taken at the same time, as doing so will
671 // create a new lock order for those specific locks in the order they were taken.
672 //
673 // Lock order tree:
674 //
675 // `total_consistency_lock`
676 //  |
677 //  |__`forward_htlcs`
678 //  |
679 //  |__`channel_state`
680 //  |   |
681 //  |   |__`id_to_peer`
682 //  |   |
683 //  |   |__`per_peer_state`
684 //  |       |
685 //  |       |__`outbound_scid_aliases`
686 //  |       |
687 //  |       |__`pending_inbound_payments`
688 //  |           |
689 //  |           |__`pending_outbound_payments`
690 //  |               |
691 //  |               |__`best_block`
692 //  |               |
693 //  |               |__`pending_events`
694 //  |                   |
695 //  |                   |__`pending_background_events`
696 //
697 pub struct ChannelManager<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
698         where M::Target: chain::Watch<Signer>,
699         T::Target: BroadcasterInterface,
700         K::Target: KeysInterface<Signer = Signer>,
701         F::Target: FeeEstimator,
702                                 L::Target: Logger,
703 {
704         default_configuration: UserConfig,
705         genesis_hash: BlockHash,
706         fee_estimator: LowerBoundedFeeEstimator<F>,
707         chain_monitor: M,
708         tx_broadcaster: T,
709
710         /// See `ChannelManager` struct-level documentation for lock order requirements.
711         #[cfg(test)]
712         pub(super) best_block: RwLock<BestBlock>,
713         #[cfg(not(test))]
714         best_block: RwLock<BestBlock>,
715         secp_ctx: Secp256k1<secp256k1::All>,
716
717         /// See `ChannelManager` struct-level documentation for lock order requirements.
718         #[cfg(any(test, feature = "_test_utils"))]
719         pub(super) channel_state: Mutex<ChannelHolder<Signer>>,
720         #[cfg(not(any(test, feature = "_test_utils")))]
721         channel_state: Mutex<ChannelHolder<Signer>>,
722
723         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
724         /// expose them to users via a PaymentReceived event. HTLCs which do not meet the requirements
725         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
726         /// after we generate a PaymentReceived upon receipt of all MPP parts or when they time out.
727         ///
728         /// See `ChannelManager` struct-level documentation for lock order requirements.
729         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
730
731         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
732         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
733         /// (if the channel has been force-closed), however we track them here to prevent duplicative
734         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
735         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
736         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
737         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
738         /// after reloading from disk while replaying blocks against ChannelMonitors.
739         ///
740         /// See `PendingOutboundPayment` documentation for more info.
741         ///
742         /// See `ChannelManager` struct-level documentation for lock order requirements.
743         pending_outbound_payments: Mutex<HashMap<PaymentId, PendingOutboundPayment>>,
744
745         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
746         ///
747         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
748         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
749         /// and via the classic SCID.
750         ///
751         /// Note that no consistency guarantees are made about the existence of a channel with the
752         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
753         ///
754         /// See `ChannelManager` struct-level documentation for lock order requirements.
755         #[cfg(test)]
756         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
757         #[cfg(not(test))]
758         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
759
760         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
761         /// and some closed channels which reached a usable state prior to being closed. This is used
762         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
763         /// active channel list on load.
764         ///
765         /// See `ChannelManager` struct-level documentation for lock order requirements.
766         outbound_scid_aliases: Mutex<HashSet<u64>>,
767
768         /// `channel_id` -> `counterparty_node_id`.
769         ///
770         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
771         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
772         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
773         ///
774         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
775         /// the corresponding channel for the event, as we only have access to the `channel_id` during
776         /// the handling of the events.
777         ///
778         /// TODO:
779         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
780         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
781         /// would break backwards compatability.
782         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
783         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
784         /// required to access the channel with the `counterparty_node_id`.
785         ///
786         /// See `ChannelManager` struct-level documentation for lock order requirements.
787         id_to_peer: Mutex<HashMap<[u8; 32], PublicKey>>,
788
789         our_network_key: SecretKey,
790         our_network_pubkey: PublicKey,
791
792         inbound_payment_key: inbound_payment::ExpandedKey,
793
794         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
795         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
796         /// we encrypt the namespace identifier using these bytes.
797         ///
798         /// [fake scids]: crate::util::scid_utils::fake_scid
799         fake_scid_rand_bytes: [u8; 32],
800
801         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
802         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
803         /// keeping additional state.
804         probing_cookie_secret: [u8; 32],
805
806         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
807         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
808         /// very far in the past, and can only ever be up to two hours in the future.
809         highest_seen_timestamp: AtomicUsize,
810
811         /// The bulk of our storage will eventually be here (channels and message queues and the like).
812         /// If we are connected to a peer we always at least have an entry here, even if no channels
813         /// are currently open with that peer.
814         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
815         /// operate on the inner value freely. Sadly, this prevents parallel operation when opening a
816         /// new channel.
817         ///
818         /// See `ChannelManager` struct-level documentation for lock order requirements.
819         per_peer_state: RwLock<HashMap<PublicKey, Mutex<PeerState>>>,
820
821         /// See `ChannelManager` struct-level documentation for lock order requirements.
822         pending_events: Mutex<Vec<events::Event>>,
823         /// See `ChannelManager` struct-level documentation for lock order requirements.
824         pending_background_events: Mutex<Vec<BackgroundEvent>>,
825         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
826         /// Essentially just when we're serializing ourselves out.
827         /// Taken first everywhere where we are making changes before any other locks.
828         /// When acquiring this lock in read mode, rather than acquiring it directly, call
829         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
830         /// Notifier the lock contains sends out a notification when the lock is released.
831         total_consistency_lock: RwLock<()>,
832
833         persistence_notifier: Notifier,
834
835         keys_manager: K,
836
837         logger: L,
838 }
839
840 /// Chain-related parameters used to construct a new `ChannelManager`.
841 ///
842 /// Typically, the block-specific parameters are derived from the best block hash for the network,
843 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
844 /// are not needed when deserializing a previously constructed `ChannelManager`.
845 #[derive(Clone, Copy, PartialEq)]
846 pub struct ChainParameters {
847         /// The network for determining the `chain_hash` in Lightning messages.
848         pub network: Network,
849
850         /// The hash and height of the latest block successfully connected.
851         ///
852         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
853         pub best_block: BestBlock,
854 }
855
856 #[derive(Copy, Clone, PartialEq)]
857 enum NotifyOption {
858         DoPersist,
859         SkipPersist,
860 }
861
862 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
863 /// desirable to notify any listeners on `await_persistable_update_timeout`/
864 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
865 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
866 /// sending the aforementioned notification (since the lock being released indicates that the
867 /// updates are ready for persistence).
868 ///
869 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
870 /// notify or not based on whether relevant changes have been made, providing a closure to
871 /// `optionally_notify` which returns a `NotifyOption`.
872 struct PersistenceNotifierGuard<'a, F: Fn() -> NotifyOption> {
873         persistence_notifier: &'a Notifier,
874         should_persist: F,
875         // We hold onto this result so the lock doesn't get released immediately.
876         _read_guard: RwLockReadGuard<'a, ()>,
877 }
878
879 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
880         fn notify_on_drop(lock: &'a RwLock<()>, notifier: &'a Notifier) -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
881                 PersistenceNotifierGuard::optionally_notify(lock, notifier, || -> NotifyOption { NotifyOption::DoPersist })
882         }
883
884         fn optionally_notify<F: Fn() -> NotifyOption>(lock: &'a RwLock<()>, notifier: &'a Notifier, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
885                 let read_guard = lock.read().unwrap();
886
887                 PersistenceNotifierGuard {
888                         persistence_notifier: notifier,
889                         should_persist: persist_check,
890                         _read_guard: read_guard,
891                 }
892         }
893 }
894
895 impl<'a, F: Fn() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
896         fn drop(&mut self) {
897                 if (self.should_persist)() == NotifyOption::DoPersist {
898                         self.persistence_notifier.notify();
899                 }
900         }
901 }
902
903 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
904 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
905 ///
906 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
907 ///
908 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
909 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
910 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
911 /// the maximum required amount in lnd as of March 2021.
912 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
913
914 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
915 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
916 ///
917 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
918 ///
919 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
920 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
921 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
922 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
923 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
924 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
925 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
926 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
927 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
928 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
929 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
930 // routing failure for any HTLC sender picking up an LDK node among the first hops.
931 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
932
933 /// Minimum CLTV difference between the current block height and received inbound payments.
934 /// Invoices generated for payment to us must set their `min_final_cltv_expiry` field to at least
935 /// this value.
936 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
937 // any payments to succeed. Further, we don't want payments to fail if a block was found while
938 // a payment was being routed, so we add an extra block to be safe.
939 pub const MIN_FINAL_CLTV_EXPIRY: u32 = HTLC_FAIL_BACK_BUFFER + 3;
940
941 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
942 // ie that if the next-hop peer fails the HTLC within
943 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
944 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
945 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
946 // LATENCY_GRACE_PERIOD_BLOCKS.
947 #[deny(const_err)]
948 #[allow(dead_code)]
949 const CHECK_CLTV_EXPIRY_SANITY: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - CLTV_CLAIM_BUFFER - ANTI_REORG_DELAY - LATENCY_GRACE_PERIOD_BLOCKS;
950
951 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
952 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
953 #[deny(const_err)]
954 #[allow(dead_code)]
955 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
956
957 /// The number of blocks before we consider an outbound payment for expiry if it doesn't have any
958 /// pending HTLCs in flight.
959 pub(crate) const PAYMENT_EXPIRY_BLOCKS: u32 = 3;
960
961 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
962 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
963
964 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until we time-out the
965 /// idempotency of payments by [`PaymentId`]. See
966 /// [`ChannelManager::remove_stale_resolved_payments`].
967 pub(crate) const IDEMPOTENCY_TIMEOUT_TICKS: u8 = 7;
968
969 /// Information needed for constructing an invoice route hint for this channel.
970 #[derive(Clone, Debug, PartialEq)]
971 pub struct CounterpartyForwardingInfo {
972         /// Base routing fee in millisatoshis.
973         pub fee_base_msat: u32,
974         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
975         pub fee_proportional_millionths: u32,
976         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
977         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
978         /// `cltv_expiry_delta` for more details.
979         pub cltv_expiry_delta: u16,
980 }
981
982 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
983 /// to better separate parameters.
984 #[derive(Clone, Debug, PartialEq)]
985 pub struct ChannelCounterparty {
986         /// The node_id of our counterparty
987         pub node_id: PublicKey,
988         /// The Features the channel counterparty provided upon last connection.
989         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
990         /// many routing-relevant features are present in the init context.
991         pub features: InitFeatures,
992         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
993         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
994         /// claiming at least this value on chain.
995         ///
996         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
997         ///
998         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
999         pub unspendable_punishment_reserve: u64,
1000         /// Information on the fees and requirements that the counterparty requires when forwarding
1001         /// payments to us through this channel.
1002         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1003         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1004         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1005         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1006         pub outbound_htlc_minimum_msat: Option<u64>,
1007         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1008         pub outbound_htlc_maximum_msat: Option<u64>,
1009 }
1010
1011 /// Details of a channel, as returned by ChannelManager::list_channels and ChannelManager::list_usable_channels
1012 #[derive(Clone, Debug, PartialEq)]
1013 pub struct ChannelDetails {
1014         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1015         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1016         /// Note that this means this value is *not* persistent - it can change once during the
1017         /// lifetime of the channel.
1018         pub channel_id: [u8; 32],
1019         /// Parameters which apply to our counterparty. See individual fields for more information.
1020         pub counterparty: ChannelCounterparty,
1021         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1022         /// our counterparty already.
1023         ///
1024         /// Note that, if this has been set, `channel_id` will be equivalent to
1025         /// `funding_txo.unwrap().to_channel_id()`.
1026         pub funding_txo: Option<OutPoint>,
1027         /// The features which this channel operates with. See individual features for more info.
1028         ///
1029         /// `None` until negotiation completes and the channel type is finalized.
1030         pub channel_type: Option<ChannelTypeFeatures>,
1031         /// The position of the funding transaction in the chain. None if the funding transaction has
1032         /// not yet been confirmed and the channel fully opened.
1033         ///
1034         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1035         /// payments instead of this. See [`get_inbound_payment_scid`].
1036         ///
1037         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1038         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1039         ///
1040         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1041         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1042         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1043         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1044         /// [`confirmations_required`]: Self::confirmations_required
1045         pub short_channel_id: Option<u64>,
1046         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1047         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1048         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1049         /// `Some(0)`).
1050         ///
1051         /// This will be `None` as long as the channel is not available for routing outbound payments.
1052         ///
1053         /// [`short_channel_id`]: Self::short_channel_id
1054         /// [`confirmations_required`]: Self::confirmations_required
1055         pub outbound_scid_alias: Option<u64>,
1056         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1057         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1058         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1059         /// when they see a payment to be routed to us.
1060         ///
1061         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1062         /// previous values for inbound payment forwarding.
1063         ///
1064         /// [`short_channel_id`]: Self::short_channel_id
1065         pub inbound_scid_alias: Option<u64>,
1066         /// The value, in satoshis, of this channel as appears in the funding output
1067         pub channel_value_satoshis: u64,
1068         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1069         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1070         /// this value on chain.
1071         ///
1072         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1073         ///
1074         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1075         ///
1076         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1077         pub unspendable_punishment_reserve: Option<u64>,
1078         /// The `user_channel_id` passed in to create_channel, or 0 if the channel was inbound.
1079         pub user_channel_id: u64,
1080         /// Our total balance.  This is the amount we would get if we close the channel.
1081         /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
1082         /// amount is not likely to be recoverable on close.
1083         ///
1084         /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
1085         /// balance is not available for inclusion in new outbound HTLCs). This further does not include
1086         /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
1087         /// This does not consider any on-chain fees.
1088         ///
1089         /// See also [`ChannelDetails::outbound_capacity_msat`]
1090         pub balance_msat: u64,
1091         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1092         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1093         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1094         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1095         ///
1096         /// See also [`ChannelDetails::balance_msat`]
1097         ///
1098         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1099         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1100         /// should be able to spend nearly this amount.
1101         pub outbound_capacity_msat: u64,
1102         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1103         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1104         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1105         /// to use a limit as close as possible to the HTLC limit we can currently send.
1106         ///
1107         /// See also [`ChannelDetails::balance_msat`] and [`ChannelDetails::outbound_capacity_msat`].
1108         pub next_outbound_htlc_limit_msat: u64,
1109         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1110         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1111         /// available for inclusion in new inbound HTLCs).
1112         /// Note that there are some corner cases not fully handled here, so the actual available
1113         /// inbound capacity may be slightly higher than this.
1114         ///
1115         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1116         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1117         /// However, our counterparty should be able to spend nearly this amount.
1118         pub inbound_capacity_msat: u64,
1119         /// The number of required confirmations on the funding transaction before the funding will be
1120         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1121         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1122         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1123         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1124         ///
1125         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1126         ///
1127         /// [`is_outbound`]: ChannelDetails::is_outbound
1128         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1129         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1130         pub confirmations_required: Option<u32>,
1131         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1132         /// until we can claim our funds after we force-close the channel. During this time our
1133         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1134         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1135         /// time to claim our non-HTLC-encumbered funds.
1136         ///
1137         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1138         pub force_close_spend_delay: Option<u16>,
1139         /// True if the channel was initiated (and thus funded) by us.
1140         pub is_outbound: bool,
1141         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1142         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1143         /// required confirmation count has been reached (and we were connected to the peer at some
1144         /// point after the funding transaction received enough confirmations). The required
1145         /// confirmation count is provided in [`confirmations_required`].
1146         ///
1147         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1148         pub is_channel_ready: bool,
1149         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1150         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1151         ///
1152         /// This is a strict superset of `is_channel_ready`.
1153         pub is_usable: bool,
1154         /// True if this channel is (or will be) publicly-announced.
1155         pub is_public: bool,
1156         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1157         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1158         pub inbound_htlc_minimum_msat: Option<u64>,
1159         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1160         pub inbound_htlc_maximum_msat: Option<u64>,
1161         /// Set of configurable parameters that affect channel operation.
1162         ///
1163         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1164         pub config: Option<ChannelConfig>,
1165 }
1166
1167 impl ChannelDetails {
1168         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1169         /// This should be used for providing invoice hints or in any other context where our
1170         /// counterparty will forward a payment to us.
1171         ///
1172         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1173         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1174         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1175                 self.inbound_scid_alias.or(self.short_channel_id)
1176         }
1177
1178         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1179         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1180         /// we're sending or forwarding a payment outbound over this channel.
1181         ///
1182         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1183         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1184         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1185                 self.short_channel_id.or(self.outbound_scid_alias)
1186         }
1187 }
1188
1189 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
1190 /// Err() type describing which state the payment is in, see the description of individual enum
1191 /// states for more.
1192 #[derive(Clone, Debug)]
1193 pub enum PaymentSendFailure {
1194         /// A parameter which was passed to send_payment was invalid, preventing us from attempting to
1195         /// send the payment at all. No channel state has been changed or messages sent to peers, and
1196         /// once you've changed the parameter at error, you can freely retry the payment in full.
1197         ParameterError(APIError),
1198         /// A parameter in a single path which was passed to send_payment was invalid, preventing us
1199         /// from attempting to send the payment at all. No channel state has been changed or messages
1200         /// sent to peers, and once you've changed the parameter at error, you can freely retry the
1201         /// payment in full.
1202         ///
1203         /// The results here are ordered the same as the paths in the route object which was passed to
1204         /// send_payment.
1205         PathParameterError(Vec<Result<(), APIError>>),
1206         /// All paths which were attempted failed to send, with no channel state change taking place.
1207         /// You can freely retry the payment in full (though you probably want to do so over different
1208         /// paths than the ones selected).
1209         ///
1210         /// [`ChannelManager::abandon_payment`] does *not* need to be called for this payment and
1211         /// [`ChannelManager::retry_payment`] will *not* work for this payment.
1212         AllFailedRetrySafe(Vec<APIError>),
1213         /// Some paths which were attempted failed to send, though possibly not all. At least some
1214         /// paths have irrevocably committed to the HTLC and retrying the payment in full would result
1215         /// in over-/re-payment.
1216         ///
1217         /// The results here are ordered the same as the paths in the route object which was passed to
1218         /// send_payment, and any `Err`s which are not [`APIError::MonitorUpdateInProgress`] can be
1219         /// safely retried via [`ChannelManager::retry_payment`].
1220         ///
1221         /// Any entries which contain `Err(APIError::MonitorUpdateInprogress)` or `Ok(())` MUST NOT be
1222         /// retried as they will result in over-/re-payment. These HTLCs all either successfully sent
1223         /// (in the case of `Ok(())`) or will send once a [`MonitorEvent::Completed`] is provided for
1224         /// the next-hop channel with the latest update_id.
1225         PartialFailure {
1226                 /// The errors themselves, in the same order as the route hops.
1227                 results: Vec<Result<(), APIError>>,
1228                 /// If some paths failed without irrevocably committing to the new HTLC(s), this will
1229                 /// contain a [`RouteParameters`] object which can be used to calculate a new route that
1230                 /// will pay all remaining unpaid balance.
1231                 failed_paths_retry: Option<RouteParameters>,
1232                 /// The payment id for the payment, which is now at least partially pending.
1233                 payment_id: PaymentId,
1234         },
1235 }
1236
1237 /// Route hints used in constructing invoices for [phantom node payents].
1238 ///
1239 /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
1240 #[derive(Clone)]
1241 pub struct PhantomRouteHints {
1242         /// The list of channels to be included in the invoice route hints.
1243         pub channels: Vec<ChannelDetails>,
1244         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1245         /// route hints.
1246         pub phantom_scid: u64,
1247         /// The pubkey of the real backing node that would ultimately receive the payment.
1248         pub real_node_pubkey: PublicKey,
1249 }
1250
1251 macro_rules! handle_error {
1252         ($self: ident, $internal: expr, $counterparty_node_id: expr) => {
1253                 match $internal {
1254                         Ok(msg) => Ok(msg),
1255                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish }) => {
1256                                 #[cfg(debug_assertions)]
1257                                 {
1258                                         // In testing, ensure there are no deadlocks where the lock is already held upon
1259                                         // entering the macro.
1260                                         assert!($self.channel_state.try_lock().is_ok());
1261                                         assert!($self.pending_events.try_lock().is_ok());
1262                                 }
1263
1264                                 let mut msg_events = Vec::with_capacity(2);
1265
1266                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1267                                         $self.finish_force_close_channel(shutdown_res);
1268                                         if let Some(update) = update_option {
1269                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1270                                                         msg: update
1271                                                 });
1272                                         }
1273                                         if let Some((channel_id, user_channel_id)) = chan_id {
1274                                                 $self.pending_events.lock().unwrap().push(events::Event::ChannelClosed {
1275                                                         channel_id, user_channel_id,
1276                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() }
1277                                                 });
1278                                         }
1279                                 }
1280
1281                                 log_error!($self.logger, "{}", err.err);
1282                                 if let msgs::ErrorAction::IgnoreError = err.action {
1283                                 } else {
1284                                         msg_events.push(events::MessageSendEvent::HandleError {
1285                                                 node_id: $counterparty_node_id,
1286                                                 action: err.action.clone()
1287                                         });
1288                                 }
1289
1290                                 if !msg_events.is_empty() {
1291                                         $self.channel_state.lock().unwrap().pending_msg_events.append(&mut msg_events);
1292                                 }
1293
1294                                 // Return error in case higher-API need one
1295                                 Err(err)
1296                         },
1297                 }
1298         }
1299 }
1300
1301 macro_rules! update_maps_on_chan_removal {
1302         ($self: expr, $short_to_chan_info: expr, $channel: expr) => {
1303                 if let Some(short_id) = $channel.get_short_channel_id() {
1304                         $short_to_chan_info.remove(&short_id);
1305                 } else {
1306                         // If the channel was never confirmed on-chain prior to its closure, remove the
1307                         // outbound SCID alias we used for it from the collision-prevention set. While we
1308                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1309                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1310                         // opening a million channels with us which are closed before we ever reach the funding
1311                         // stage.
1312                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel.outbound_scid_alias());
1313                         debug_assert!(alias_removed);
1314                 }
1315                 $self.id_to_peer.lock().unwrap().remove(&$channel.channel_id());
1316                 $short_to_chan_info.remove(&$channel.outbound_scid_alias());
1317         }
1318 }
1319
1320 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1321 macro_rules! convert_chan_err {
1322         ($self: ident, $err: expr, $short_to_chan_info: expr, $channel: expr, $channel_id: expr) => {
1323                 match $err {
1324                         ChannelError::Warn(msg) => {
1325                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), $channel_id.clone()))
1326                         },
1327                         ChannelError::Ignore(msg) => {
1328                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), $channel_id.clone()))
1329                         },
1330                         ChannelError::Close(msg) => {
1331                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", log_bytes!($channel_id[..]), msg);
1332                                 update_maps_on_chan_removal!($self, $short_to_chan_info, $channel);
1333                                 let shutdown_res = $channel.force_shutdown(true);
1334                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, $channel.get_user_id(),
1335                                         shutdown_res, $self.get_channel_update_for_broadcast(&$channel).ok()))
1336                         },
1337                 }
1338         }
1339 }
1340
1341 macro_rules! break_chan_entry {
1342         ($self: ident, $res: expr, $channel_state: expr, $entry: expr) => {
1343                 match $res {
1344                         Ok(res) => res,
1345                         Err(e) => {
1346                                 let (drop, res) = convert_chan_err!($self, e, $channel_state.short_to_chan_info, $entry.get_mut(), $entry.key());
1347                                 if drop {
1348                                         $entry.remove_entry();
1349                                 }
1350                                 break Err(res);
1351                         }
1352                 }
1353         }
1354 }
1355
1356 macro_rules! try_chan_entry {
1357         ($self: ident, $res: expr, $channel_state: expr, $entry: expr) => {
1358                 match $res {
1359                         Ok(res) => res,
1360                         Err(e) => {
1361                                 let (drop, res) = convert_chan_err!($self, e, $channel_state.short_to_chan_info, $entry.get_mut(), $entry.key());
1362                                 if drop {
1363                                         $entry.remove_entry();
1364                                 }
1365                                 return Err(res);
1366                         }
1367                 }
1368         }
1369 }
1370
1371 macro_rules! remove_channel {
1372         ($self: expr, $channel_state: expr, $entry: expr) => {
1373                 {
1374                         let channel = $entry.remove_entry().1;
1375                         update_maps_on_chan_removal!($self, $channel_state.short_to_chan_info, channel);
1376                         channel
1377                 }
1378         }
1379 }
1380
1381 macro_rules! handle_monitor_update_res {
1382         ($self: ident, $err: expr, $short_to_chan_info: expr, $chan: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr, $resend_channel_ready: expr, $failed_forwards: expr, $failed_fails: expr, $failed_finalized_fulfills: expr, $chan_id: expr) => {
1383                 match $err {
1384                         ChannelMonitorUpdateStatus::PermanentFailure => {
1385                                 log_error!($self.logger, "Closing channel {} due to monitor update ChannelMonitorUpdateStatus::PermanentFailure", log_bytes!($chan_id[..]));
1386                                 update_maps_on_chan_removal!($self, $short_to_chan_info, $chan);
1387                                 // TODO: $failed_fails is dropped here, which will cause other channels to hit the
1388                                 // chain in a confused state! We need to move them into the ChannelMonitor which
1389                                 // will be responsible for failing backwards once things confirm on-chain.
1390                                 // It's ok that we drop $failed_forwards here - at this point we'd rather they
1391                                 // broadcast HTLC-Timeout and pay the associated fees to get their funds back than
1392                                 // us bother trying to claim it just to forward on to another peer. If we're
1393                                 // splitting hairs we'd prefer to claim payments that were to us, but we haven't
1394                                 // given up the preimage yet, so might as well just wait until the payment is
1395                                 // retried, avoiding the on-chain fees.
1396                                 let res: Result<(), _> = Err(MsgHandleErrInternal::from_finish_shutdown("ChannelMonitor storage failure".to_owned(), *$chan_id, $chan.get_user_id(),
1397                                                 $chan.force_shutdown(false), $self.get_channel_update_for_broadcast(&$chan).ok() ));
1398                                 (res, true)
1399                         },
1400                         ChannelMonitorUpdateStatus::InProgress => {
1401                                 log_info!($self.logger, "Disabling channel {} due to monitor update in progress. On restore will send {} and process {} forwards, {} fails, and {} fulfill finalizations",
1402                                                 log_bytes!($chan_id[..]),
1403                                                 if $resend_commitment && $resend_raa {
1404                                                                 match $action_type {
1405                                                                         RAACommitmentOrder::CommitmentFirst => { "commitment then RAA" },
1406                                                                         RAACommitmentOrder::RevokeAndACKFirst => { "RAA then commitment" },
1407                                                                 }
1408                                                         } else if $resend_commitment { "commitment" }
1409                                                         else if $resend_raa { "RAA" }
1410                                                         else { "nothing" },
1411                                                 (&$failed_forwards as &Vec<(PendingHTLCInfo, u64)>).len(),
1412                                                 (&$failed_fails as &Vec<(HTLCSource, PaymentHash, HTLCFailReason)>).len(),
1413                                                 (&$failed_finalized_fulfills as &Vec<HTLCSource>).len());
1414                                 if !$resend_commitment {
1415                                         debug_assert!($action_type == RAACommitmentOrder::RevokeAndACKFirst || !$resend_raa);
1416                                 }
1417                                 if !$resend_raa {
1418                                         debug_assert!($action_type == RAACommitmentOrder::CommitmentFirst || !$resend_commitment);
1419                                 }
1420                                 $chan.monitor_updating_paused($resend_raa, $resend_commitment, $resend_channel_ready, $failed_forwards, $failed_fails, $failed_finalized_fulfills);
1421                                 (Err(MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore("Failed to update ChannelMonitor".to_owned()), *$chan_id)), false)
1422                         },
1423                         ChannelMonitorUpdateStatus::Completed => {
1424                                 (Ok(()), false)
1425                         },
1426                 }
1427         };
1428         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr, $resend_channel_ready: expr, $failed_forwards: expr, $failed_fails: expr, $failed_finalized_fulfills: expr) => { {
1429                 let (res, drop) = handle_monitor_update_res!($self, $err, $channel_state.short_to_chan_info, $entry.get_mut(), $action_type, $resend_raa, $resend_commitment, $resend_channel_ready, $failed_forwards, $failed_fails, $failed_finalized_fulfills, $entry.key());
1430                 if drop {
1431                         $entry.remove_entry();
1432                 }
1433                 res
1434         } };
1435         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $chan_id: expr, COMMITMENT_UPDATE_ONLY) => { {
1436                 debug_assert!($action_type == RAACommitmentOrder::CommitmentFirst);
1437                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, false, true, false, Vec::new(), Vec::new(), Vec::new(), $chan_id)
1438         } };
1439         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $chan_id: expr, NO_UPDATE) => {
1440                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, false, false, false, Vec::new(), Vec::new(), Vec::new(), $chan_id)
1441         };
1442         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_channel_ready: expr, OPTIONALLY_RESEND_FUNDING_LOCKED) => {
1443                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, false, false, $resend_channel_ready, Vec::new(), Vec::new(), Vec::new())
1444         };
1445         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr) => {
1446                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment, false, Vec::new(), Vec::new(), Vec::new())
1447         };
1448         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr, $failed_forwards: expr, $failed_fails: expr) => {
1449                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment, false, $failed_forwards, $failed_fails, Vec::new())
1450         };
1451 }
1452
1453 macro_rules! send_channel_ready {
1454         ($short_to_chan_info: expr, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {
1455                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1456                         node_id: $channel.get_counterparty_node_id(),
1457                         msg: $channel_ready_msg,
1458                 });
1459                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1460                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1461                 let outbound_alias_insert = $short_to_chan_info.insert($channel.outbound_scid_alias(), ($channel.get_counterparty_node_id(), $channel.channel_id()));
1462                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.get_counterparty_node_id(), $channel.channel_id()),
1463                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1464                 if let Some(real_scid) = $channel.get_short_channel_id() {
1465                         let scid_insert = $short_to_chan_info.insert(real_scid, ($channel.get_counterparty_node_id(), $channel.channel_id()));
1466                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.get_counterparty_node_id(), $channel.channel_id()),
1467                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1468                 }
1469         }
1470 }
1471
1472 macro_rules! handle_chan_restoration_locked {
1473         ($self: ident, $channel_lock: expr, $channel_state: expr, $channel_entry: expr,
1474          $raa: expr, $commitment_update: expr, $order: expr, $chanmon_update: expr,
1475          $pending_forwards: expr, $funding_broadcastable: expr, $channel_ready: expr, $announcement_sigs: expr) => { {
1476                 let mut htlc_forwards = None;
1477
1478                 let chanmon_update: Option<ChannelMonitorUpdate> = $chanmon_update; // Force type-checking to resolve
1479                 let chanmon_update_is_none = chanmon_update.is_none();
1480                 let counterparty_node_id = $channel_entry.get().get_counterparty_node_id();
1481                 let res = loop {
1482                         let forwards: Vec<(PendingHTLCInfo, u64)> = $pending_forwards; // Force type-checking to resolve
1483                         if !forwards.is_empty() {
1484                                 htlc_forwards = Some(($channel_entry.get().get_short_channel_id().unwrap_or($channel_entry.get().outbound_scid_alias()),
1485                                         $channel_entry.get().get_funding_txo().unwrap(), forwards));
1486                         }
1487
1488                         if chanmon_update.is_some() {
1489                                 // On reconnect, we, by definition, only resend a channel_ready if there have been
1490                                 // no commitment updates, so the only channel monitor update which could also be
1491                                 // associated with a channel_ready would be the funding_created/funding_signed
1492                                 // monitor update. That monitor update failing implies that we won't send
1493                                 // channel_ready until it's been updated, so we can't have a channel_ready and a
1494                                 // monitor update here (so we don't bother to handle it correctly below).
1495                                 assert!($channel_ready.is_none());
1496                                 // A channel monitor update makes no sense without either a channel_ready or a
1497                                 // commitment update to process after it. Since we can't have a channel_ready, we
1498                                 // only bother to handle the monitor-update + commitment_update case below.
1499                                 assert!($commitment_update.is_some());
1500                         }
1501
1502                         if let Some(msg) = $channel_ready {
1503                                 // Similar to the above, this implies that we're letting the channel_ready fly
1504                                 // before it should be allowed to.
1505                                 assert!(chanmon_update.is_none());
1506                                 send_channel_ready!($channel_state.short_to_chan_info, $channel_state.pending_msg_events, $channel_entry.get(), msg);
1507                         }
1508                         if let Some(msg) = $announcement_sigs {
1509                                 $channel_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
1510                                         node_id: counterparty_node_id,
1511                                         msg,
1512                                 });
1513                         }
1514
1515                         let funding_broadcastable: Option<Transaction> = $funding_broadcastable; // Force type-checking to resolve
1516                         if let Some(monitor_update) = chanmon_update {
1517                                 // We only ever broadcast a funding transaction in response to a funding_signed
1518                                 // message and the resulting monitor update. Thus, on channel_reestablish
1519                                 // message handling we can't have a funding transaction to broadcast. When
1520                                 // processing a monitor update finishing resulting in a funding broadcast, we
1521                                 // cannot have a second monitor update, thus this case would indicate a bug.
1522                                 assert!(funding_broadcastable.is_none());
1523                                 // Given we were just reconnected or finished updating a channel monitor, the
1524                                 // only case where we can get a new ChannelMonitorUpdate would be if we also
1525                                 // have some commitment updates to send as well.
1526                                 assert!($commitment_update.is_some());
1527                                 match $self.chain_monitor.update_channel($channel_entry.get().get_funding_txo().unwrap(), monitor_update) {
1528                                         ChannelMonitorUpdateStatus::Completed => {},
1529                                         e => {
1530                                                 // channel_reestablish doesn't guarantee the order it returns is sensical
1531                                                 // for the messages it returns, but if we're setting what messages to
1532                                                 // re-transmit on monitor update success, we need to make sure it is sane.
1533                                                 let mut order = $order;
1534                                                 if $raa.is_none() {
1535                                                         order = RAACommitmentOrder::CommitmentFirst;
1536                                                 }
1537                                                 break handle_monitor_update_res!($self, e, $channel_state, $channel_entry, order, $raa.is_some(), true);
1538                                         }
1539                                 }
1540                         }
1541
1542                         macro_rules! handle_cs { () => {
1543                                 if let Some(update) = $commitment_update {
1544                                         $channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
1545                                                 node_id: counterparty_node_id,
1546                                                 updates: update,
1547                                         });
1548                                 }
1549                         } }
1550                         macro_rules! handle_raa { () => {
1551                                 if let Some(revoke_and_ack) = $raa {
1552                                         $channel_state.pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
1553                                                 node_id: counterparty_node_id,
1554                                                 msg: revoke_and_ack,
1555                                         });
1556                                 }
1557                         } }
1558                         match $order {
1559                                 RAACommitmentOrder::CommitmentFirst => {
1560                                         handle_cs!();
1561                                         handle_raa!();
1562                                 },
1563                                 RAACommitmentOrder::RevokeAndACKFirst => {
1564                                         handle_raa!();
1565                                         handle_cs!();
1566                                 },
1567                         }
1568                         if let Some(tx) = funding_broadcastable {
1569                                 log_info!($self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
1570                                 $self.tx_broadcaster.broadcast_transaction(&tx);
1571                         }
1572                         break Ok(());
1573                 };
1574
1575                 if chanmon_update_is_none {
1576                         // If there was no ChannelMonitorUpdate, we should never generate an Err in the res loop
1577                         // above. Doing so would imply calling handle_err!() from channel_monitor_updated() which
1578                         // should *never* end up calling back to `chain_monitor.update_channel()`.
1579                         assert!(res.is_ok());
1580                 }
1581
1582                 (htlc_forwards, res, counterparty_node_id)
1583         } }
1584 }
1585
1586 macro_rules! post_handle_chan_restoration {
1587         ($self: ident, $locked_res: expr) => { {
1588                 let (htlc_forwards, res, counterparty_node_id) = $locked_res;
1589
1590                 let _ = handle_error!($self, res, counterparty_node_id);
1591
1592                 if let Some(forwards) = htlc_forwards {
1593                         $self.forward_htlcs(&mut [forwards][..]);
1594                 }
1595         } }
1596 }
1597
1598 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelManager<Signer, M, T, K, F, L>
1599         where M::Target: chain::Watch<Signer>,
1600         T::Target: BroadcasterInterface,
1601         K::Target: KeysInterface<Signer = Signer>,
1602         F::Target: FeeEstimator,
1603         L::Target: Logger,
1604 {
1605         /// Constructs a new ChannelManager to hold several channels and route between them.
1606         ///
1607         /// This is the main "logic hub" for all channel-related actions, and implements
1608         /// ChannelMessageHandler.
1609         ///
1610         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
1611         ///
1612         /// Users need to notify the new ChannelManager when a new block is connected or
1613         /// disconnected using its `block_connected` and `block_disconnected` methods, starting
1614         /// from after `params.latest_hash`.
1615         pub fn new(fee_est: F, chain_monitor: M, tx_broadcaster: T, logger: L, keys_manager: K, config: UserConfig, params: ChainParameters) -> Self {
1616                 let mut secp_ctx = Secp256k1::new();
1617                 secp_ctx.seeded_randomize(&keys_manager.get_secure_random_bytes());
1618                 let inbound_pmt_key_material = keys_manager.get_inbound_payment_key_material();
1619                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
1620                 ChannelManager {
1621                         default_configuration: config.clone(),
1622                         genesis_hash: genesis_block(params.network).header.block_hash(),
1623                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
1624                         chain_monitor,
1625                         tx_broadcaster,
1626
1627                         best_block: RwLock::new(params.best_block),
1628
1629                         channel_state: Mutex::new(ChannelHolder{
1630                                 by_id: HashMap::new(),
1631                                 short_to_chan_info: HashMap::new(),
1632                                 claimable_htlcs: HashMap::new(),
1633                                 pending_msg_events: Vec::new(),
1634                         }),
1635                         outbound_scid_aliases: Mutex::new(HashSet::new()),
1636                         pending_inbound_payments: Mutex::new(HashMap::new()),
1637                         pending_outbound_payments: Mutex::new(HashMap::new()),
1638                         forward_htlcs: Mutex::new(HashMap::new()),
1639                         id_to_peer: Mutex::new(HashMap::new()),
1640
1641                         our_network_key: keys_manager.get_node_secret(Recipient::Node).unwrap(),
1642                         our_network_pubkey: PublicKey::from_secret_key(&secp_ctx, &keys_manager.get_node_secret(Recipient::Node).unwrap()),
1643                         secp_ctx,
1644
1645                         inbound_payment_key: expanded_inbound_key,
1646                         fake_scid_rand_bytes: keys_manager.get_secure_random_bytes(),
1647
1648                         probing_cookie_secret: keys_manager.get_secure_random_bytes(),
1649
1650                         highest_seen_timestamp: AtomicUsize::new(0),
1651
1652                         per_peer_state: RwLock::new(HashMap::new()),
1653
1654                         pending_events: Mutex::new(Vec::new()),
1655                         pending_background_events: Mutex::new(Vec::new()),
1656                         total_consistency_lock: RwLock::new(()),
1657                         persistence_notifier: Notifier::new(),
1658
1659                         keys_manager,
1660
1661                         logger,
1662                 }
1663         }
1664
1665         /// Gets the current configuration applied to all new channels.
1666         pub fn get_current_default_configuration(&self) -> &UserConfig {
1667                 &self.default_configuration
1668         }
1669
1670         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
1671                 let height = self.best_block.read().unwrap().height();
1672                 let mut outbound_scid_alias = 0;
1673                 let mut i = 0;
1674                 loop {
1675                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
1676                                 outbound_scid_alias += 1;
1677                         } else {
1678                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.keys_manager);
1679                         }
1680                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
1681                                 break;
1682                         }
1683                         i += 1;
1684                         if i > 1_000_000 { panic!("Your RNG is busted or we ran out of possible outbound SCID aliases (which should never happen before we run out of memory to store channels"); }
1685                 }
1686                 outbound_scid_alias
1687         }
1688
1689         /// Creates a new outbound channel to the given remote node and with the given value.
1690         ///
1691         /// `user_channel_id` will be provided back as in
1692         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
1693         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to 0
1694         /// for inbound channels, so you may wish to avoid using 0 for `user_channel_id` here.
1695         /// `user_channel_id` has no meaning inside of LDK, it is simply copied to events and otherwise
1696         /// ignored.
1697         ///
1698         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
1699         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
1700         ///
1701         /// Note that we do not check if you are currently connected to the given peer. If no
1702         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
1703         /// the channel eventually being silently forgotten (dropped on reload).
1704         ///
1705         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
1706         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
1707         /// [`ChannelDetails::channel_id`] until after
1708         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
1709         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
1710         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
1711         ///
1712         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
1713         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
1714         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
1715         pub fn create_channel(&self, their_network_key: PublicKey, channel_value_satoshis: u64, push_msat: u64, user_channel_id: u64, override_config: Option<UserConfig>) -> Result<[u8; 32], APIError> {
1716                 if channel_value_satoshis < 1000 {
1717                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
1718                 }
1719
1720                 let channel = {
1721                         let per_peer_state = self.per_peer_state.read().unwrap();
1722                         match per_peer_state.get(&their_network_key) {
1723                                 Some(peer_state) => {
1724                                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
1725                                         let peer_state = peer_state.lock().unwrap();
1726                                         let their_features = &peer_state.latest_features;
1727                                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
1728                                         match Channel::new_outbound(&self.fee_estimator, &self.keys_manager, their_network_key,
1729                                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
1730                                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
1731                                         {
1732                                                 Ok(res) => res,
1733                                                 Err(e) => {
1734                                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
1735                                                         return Err(e);
1736                                                 },
1737                                         }
1738                                 },
1739                                 None => return Err(APIError::ChannelUnavailable { err: format!("Not connected to node: {}", their_network_key) }),
1740                         }
1741                 };
1742                 let res = channel.get_open_channel(self.genesis_hash.clone());
1743
1744                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
1745                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
1746                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
1747
1748                 let temporary_channel_id = channel.channel_id();
1749                 let mut channel_state = self.channel_state.lock().unwrap();
1750                 match channel_state.by_id.entry(temporary_channel_id) {
1751                         hash_map::Entry::Occupied(_) => {
1752                                 if cfg!(fuzzing) {
1753                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
1754                                 } else {
1755                                         panic!("RNG is bad???");
1756                                 }
1757                         },
1758                         hash_map::Entry::Vacant(entry) => { entry.insert(channel); }
1759                 }
1760                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
1761                         node_id: their_network_key,
1762                         msg: res,
1763                 });
1764                 Ok(temporary_channel_id)
1765         }
1766
1767         fn list_channels_with_filter<Fn: FnMut(&(&[u8; 32], &Channel<Signer>)) -> bool>(&self, f: Fn) -> Vec<ChannelDetails> {
1768                 let mut res = Vec::new();
1769                 {
1770                         let channel_state = self.channel_state.lock().unwrap();
1771                         res.reserve(channel_state.by_id.len());
1772                         for (channel_id, channel) in channel_state.by_id.iter().filter(f) {
1773                                 let balance = channel.get_available_balances();
1774                                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1775                                         channel.get_holder_counterparty_selected_channel_reserve_satoshis();
1776                                 res.push(ChannelDetails {
1777                                         channel_id: (*channel_id).clone(),
1778                                         counterparty: ChannelCounterparty {
1779                                                 node_id: channel.get_counterparty_node_id(),
1780                                                 features: InitFeatures::empty(),
1781                                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1782                                                 forwarding_info: channel.counterparty_forwarding_info(),
1783                                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1784                                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1785                                                 // message (as they are always the first message from the counterparty).
1786                                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1787                                                 // default `0` value set by `Channel::new_outbound`.
1788                                                 outbound_htlc_minimum_msat: if channel.have_received_message() {
1789                                                         Some(channel.get_counterparty_htlc_minimum_msat()) } else { None },
1790                                                 outbound_htlc_maximum_msat: channel.get_counterparty_htlc_maximum_msat(),
1791                                         },
1792                                         funding_txo: channel.get_funding_txo(),
1793                                         // Note that accept_channel (or open_channel) is always the first message, so
1794                                         // `have_received_message` indicates that type negotiation has completed.
1795                                         channel_type: if channel.have_received_message() { Some(channel.get_channel_type().clone()) } else { None },
1796                                         short_channel_id: channel.get_short_channel_id(),
1797                                         outbound_scid_alias: if channel.is_usable() { Some(channel.outbound_scid_alias()) } else { None },
1798                                         inbound_scid_alias: channel.latest_inbound_scid_alias(),
1799                                         channel_value_satoshis: channel.get_value_satoshis(),
1800                                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1801                                         balance_msat: balance.balance_msat,
1802                                         inbound_capacity_msat: balance.inbound_capacity_msat,
1803                                         outbound_capacity_msat: balance.outbound_capacity_msat,
1804                                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1805                                         user_channel_id: channel.get_user_id(),
1806                                         confirmations_required: channel.minimum_depth(),
1807                                         force_close_spend_delay: channel.get_counterparty_selected_contest_delay(),
1808                                         is_outbound: channel.is_outbound(),
1809                                         is_channel_ready: channel.is_usable(),
1810                                         is_usable: channel.is_live(),
1811                                         is_public: channel.should_announce(),
1812                                         inbound_htlc_minimum_msat: Some(channel.get_holder_htlc_minimum_msat()),
1813                                         inbound_htlc_maximum_msat: channel.get_holder_htlc_maximum_msat(),
1814                                         config: Some(channel.config()),
1815                                 });
1816                         }
1817                 }
1818                 let per_peer_state = self.per_peer_state.read().unwrap();
1819                 for chan in res.iter_mut() {
1820                         if let Some(peer_state) = per_peer_state.get(&chan.counterparty.node_id) {
1821                                 chan.counterparty.features = peer_state.lock().unwrap().latest_features.clone();
1822                         }
1823                 }
1824                 res
1825         }
1826
1827         /// Gets the list of open channels, in random order. See ChannelDetail field documentation for
1828         /// more information.
1829         pub fn list_channels(&self) -> Vec<ChannelDetails> {
1830                 self.list_channels_with_filter(|_| true)
1831         }
1832
1833         /// Gets the list of usable channels, in random order. Useful as an argument to [`find_route`]
1834         /// to ensure non-announced channels are used.
1835         ///
1836         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
1837         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
1838         /// are.
1839         ///
1840         /// [`find_route`]: crate::routing::router::find_route
1841         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
1842                 // Note we use is_live here instead of usable which leads to somewhat confused
1843                 // internal/external nomenclature, but that's ok cause that's probably what the user
1844                 // really wanted anyway.
1845                 self.list_channels_with_filter(|&(_, ref channel)| channel.is_live())
1846         }
1847
1848         /// Helper function that issues the channel close events
1849         fn issue_channel_close_events(&self, channel: &Channel<Signer>, closure_reason: ClosureReason) {
1850                 let mut pending_events_lock = self.pending_events.lock().unwrap();
1851                 match channel.unbroadcasted_funding() {
1852                         Some(transaction) => {
1853                                 pending_events_lock.push(events::Event::DiscardFunding { channel_id: channel.channel_id(), transaction })
1854                         },
1855                         None => {},
1856                 }
1857                 pending_events_lock.push(events::Event::ChannelClosed {
1858                         channel_id: channel.channel_id(),
1859                         user_channel_id: channel.get_user_id(),
1860                         reason: closure_reason
1861                 });
1862         }
1863
1864         fn close_channel_internal(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>) -> Result<(), APIError> {
1865                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
1866
1867                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
1868                 let result: Result<(), _> = loop {
1869                         let mut channel_state_lock = self.channel_state.lock().unwrap();
1870                         let channel_state = &mut *channel_state_lock;
1871                         match channel_state.by_id.entry(channel_id.clone()) {
1872                                 hash_map::Entry::Occupied(mut chan_entry) => {
1873                                         if *counterparty_node_id != chan_entry.get().get_counterparty_node_id(){
1874                                                 return Err(APIError::APIMisuseError { err: "The passed counterparty_node_id doesn't match the channel's counterparty node_id".to_owned() });
1875                                         }
1876                                         let per_peer_state = self.per_peer_state.read().unwrap();
1877                                         let (shutdown_msg, monitor_update, htlcs) = match per_peer_state.get(&counterparty_node_id) {
1878                                                 Some(peer_state) => {
1879                                                         let peer_state = peer_state.lock().unwrap();
1880                                                         let their_features = &peer_state.latest_features;
1881                                                         chan_entry.get_mut().get_shutdown(&self.keys_manager, their_features, target_feerate_sats_per_1000_weight)?
1882                                                 },
1883                                                 None => return Err(APIError::ChannelUnavailable { err: format!("Not connected to node: {}", counterparty_node_id) }),
1884                                         };
1885                                         failed_htlcs = htlcs;
1886
1887                                         // Update the monitor with the shutdown script if necessary.
1888                                         if let Some(monitor_update) = monitor_update {
1889                                                 let update_res = self.chain_monitor.update_channel(chan_entry.get().get_funding_txo().unwrap(), monitor_update);
1890                                                 let (result, is_permanent) =
1891                                                         handle_monitor_update_res!(self, update_res, channel_state.short_to_chan_info, chan_entry.get_mut(), RAACommitmentOrder::CommitmentFirst, chan_entry.key(), NO_UPDATE);
1892                                                 if is_permanent {
1893                                                         remove_channel!(self, channel_state, chan_entry);
1894                                                         break result;
1895                                                 }
1896                                         }
1897
1898                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
1899                                                 node_id: *counterparty_node_id,
1900                                                 msg: shutdown_msg
1901                                         });
1902
1903                                         if chan_entry.get().is_shutdown() {
1904                                                 let channel = remove_channel!(self, channel_state, chan_entry);
1905                                                 if let Ok(channel_update) = self.get_channel_update_for_broadcast(&channel) {
1906                                                         channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1907                                                                 msg: channel_update
1908                                                         });
1909                                                 }
1910                                                 self.issue_channel_close_events(&channel, ClosureReason::HolderForceClosed);
1911                                         }
1912                                         break Ok(());
1913                                 },
1914                                 hash_map::Entry::Vacant(_) => return Err(APIError::ChannelUnavailable{err: "No such channel".to_owned()})
1915                         }
1916                 };
1917
1918                 for htlc_source in failed_htlcs.drain(..) {
1919                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
1920                         self.fail_htlc_backwards_internal(htlc_source.0, &htlc_source.1, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
1921                 }
1922
1923                 let _ = handle_error!(self, result, *counterparty_node_id);
1924                 Ok(())
1925         }
1926
1927         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
1928         /// will be accepted on the given channel, and after additional timeout/the closing of all
1929         /// pending HTLCs, the channel will be closed on chain.
1930         ///
1931         ///  * If we are the channel initiator, we will pay between our [`Background`] and
1932         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
1933         ///    estimate.
1934         ///  * If our counterparty is the channel initiator, we will require a channel closing
1935         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
1936         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
1937         ///    counterparty to pay as much fee as they'd like, however.
1938         ///
1939         /// May generate a SendShutdown message event on success, which should be relayed.
1940         ///
1941         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
1942         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
1943         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
1944         pub fn close_channel(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey) -> Result<(), APIError> {
1945                 self.close_channel_internal(channel_id, counterparty_node_id, None)
1946         }
1947
1948         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
1949         /// will be accepted on the given channel, and after additional timeout/the closing of all
1950         /// pending HTLCs, the channel will be closed on chain.
1951         ///
1952         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
1953         /// the channel being closed or not:
1954         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
1955         ///    transaction. The upper-bound is set by
1956         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
1957         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
1958         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
1959         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
1960         ///    will appear on a force-closure transaction, whichever is lower).
1961         ///
1962         /// May generate a SendShutdown message event on success, which should be relayed.
1963         ///
1964         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
1965         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
1966         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
1967         pub fn close_channel_with_target_feerate(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: u32) -> Result<(), APIError> {
1968                 self.close_channel_internal(channel_id, counterparty_node_id, Some(target_feerate_sats_per_1000_weight))
1969         }
1970
1971         #[inline]
1972         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
1973                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
1974                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
1975                 for htlc_source in failed_htlcs.drain(..) {
1976                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
1977                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
1978                         self.fail_htlc_backwards_internal(source, &payment_hash, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
1979                 }
1980                 if let Some((funding_txo, monitor_update)) = monitor_update_option {
1981                         // There isn't anything we can do if we get an update failure - we're already
1982                         // force-closing. The monitor update on the required in-memory copy should broadcast
1983                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
1984                         // ignore the result here.
1985                         let _ = self.chain_monitor.update_channel(funding_txo, monitor_update);
1986                 }
1987         }
1988
1989         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
1990         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
1991         fn force_close_channel_with_peer(&self, channel_id: &[u8; 32], peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
1992         -> Result<PublicKey, APIError> {
1993                 let mut chan = {
1994                         let mut channel_state_lock = self.channel_state.lock().unwrap();
1995                         let channel_state = &mut *channel_state_lock;
1996                         if let hash_map::Entry::Occupied(chan) = channel_state.by_id.entry(channel_id.clone()) {
1997                                 if chan.get().get_counterparty_node_id() != *peer_node_id {
1998                                         return Err(APIError::ChannelUnavailable{err: "No such channel".to_owned()});
1999                                 }
2000                                 if let Some(peer_msg) = peer_msg {
2001                                         self.issue_channel_close_events(chan.get(),ClosureReason::CounterpartyForceClosed { peer_msg: peer_msg.to_string() });
2002                                 } else {
2003                                         self.issue_channel_close_events(chan.get(),ClosureReason::HolderForceClosed);
2004                                 }
2005                                 remove_channel!(self, channel_state, chan)
2006                         } else {
2007                                 return Err(APIError::ChannelUnavailable{err: "No such channel".to_owned()});
2008                         }
2009                 };
2010                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2011                 self.finish_force_close_channel(chan.force_shutdown(broadcast));
2012                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
2013                         let mut channel_state = self.channel_state.lock().unwrap();
2014                         channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2015                                 msg: update
2016                         });
2017                 }
2018
2019                 Ok(chan.get_counterparty_node_id())
2020         }
2021
2022         fn force_close_sending_error(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2023                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2024                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2025                         Ok(counterparty_node_id) => {
2026                                 self.channel_state.lock().unwrap().pending_msg_events.push(
2027                                         events::MessageSendEvent::HandleError {
2028                                                 node_id: counterparty_node_id,
2029                                                 action: msgs::ErrorAction::SendErrorMessage {
2030                                                         msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2031                                                 },
2032                                         }
2033                                 );
2034                                 Ok(())
2035                         },
2036                         Err(e) => Err(e)
2037                 }
2038         }
2039
2040         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2041         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2042         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2043         /// channel.
2044         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2045         -> Result<(), APIError> {
2046                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2047         }
2048
2049         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2050         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2051         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2052         ///
2053         /// You can always get the latest local transaction(s) to broadcast from
2054         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2055         pub fn force_close_without_broadcasting_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2056         -> Result<(), APIError> {
2057                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2058         }
2059
2060         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2061         /// for each to the chain and rejecting new HTLCs on each.
2062         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2063                 for chan in self.list_channels() {
2064                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2065                 }
2066         }
2067
2068         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2069         /// local transaction(s).
2070         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2071                 for chan in self.list_channels() {
2072                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2073                 }
2074         }
2075
2076         fn construct_recv_pending_htlc_info(&self, hop_data: msgs::OnionHopData, shared_secret: [u8; 32],
2077                 payment_hash: PaymentHash, amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>) -> Result<PendingHTLCInfo, ReceiveError>
2078         {
2079                 // final_incorrect_cltv_expiry
2080                 if hop_data.outgoing_cltv_value != cltv_expiry {
2081                         return Err(ReceiveError {
2082                                 msg: "Upstream node set CLTV to the wrong value",
2083                                 err_code: 18,
2084                                 err_data: byte_utils::be32_to_array(cltv_expiry).to_vec()
2085                         })
2086                 }
2087                 // final_expiry_too_soon
2088                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2089                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2090                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2091                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2092                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2093                 if (hop_data.outgoing_cltv_value as u64) <= self.best_block.read().unwrap().height() as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1  {
2094                         return Err(ReceiveError {
2095                                 err_code: 17,
2096                                 err_data: Vec::new(),
2097                                 msg: "The final CLTV expiry is too soon to handle",
2098                         });
2099                 }
2100                 if hop_data.amt_to_forward > amt_msat {
2101                         return Err(ReceiveError {
2102                                 err_code: 19,
2103                                 err_data: byte_utils::be64_to_array(amt_msat).to_vec(),
2104                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2105                         });
2106                 }
2107
2108                 let routing = match hop_data.format {
2109                         msgs::OnionHopDataFormat::Legacy { .. } => {
2110                                 return Err(ReceiveError {
2111                                         err_code: 0x4000|0x2000|3,
2112                                         err_data: Vec::new(),
2113                                         msg: "We require payment_secrets",
2114                                 });
2115                         },
2116                         msgs::OnionHopDataFormat::NonFinalNode { .. } => {
2117                                 return Err(ReceiveError {
2118                                         err_code: 0x4000|22,
2119                                         err_data: Vec::new(),
2120                                         msg: "Got non final data with an HMAC of 0",
2121                                 });
2122                         },
2123                         msgs::OnionHopDataFormat::FinalNode { payment_data, keysend_preimage } => {
2124                                 if payment_data.is_some() && keysend_preimage.is_some() {
2125                                         return Err(ReceiveError {
2126                                                 err_code: 0x4000|22,
2127                                                 err_data: Vec::new(),
2128                                                 msg: "We don't support MPP keysend payments",
2129                                         });
2130                                 } else if let Some(data) = payment_data {
2131                                         PendingHTLCRouting::Receive {
2132                                                 payment_data: data,
2133                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2134                                                 phantom_shared_secret,
2135                                         }
2136                                 } else if let Some(payment_preimage) = keysend_preimage {
2137                                         // We need to check that the sender knows the keysend preimage before processing this
2138                                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2139                                         // could discover the final destination of X, by probing the adjacent nodes on the route
2140                                         // with a keysend payment of identical payment hash to X and observing the processing
2141                                         // time discrepancies due to a hash collision with X.
2142                                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2143                                         if hashed_preimage != payment_hash {
2144                                                 return Err(ReceiveError {
2145                                                         err_code: 0x4000|22,
2146                                                         err_data: Vec::new(),
2147                                                         msg: "Payment preimage didn't match payment hash",
2148                                                 });
2149                                         }
2150
2151                                         PendingHTLCRouting::ReceiveKeysend {
2152                                                 payment_preimage,
2153                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2154                                         }
2155                                 } else {
2156                                         return Err(ReceiveError {
2157                                                 err_code: 0x4000|0x2000|3,
2158                                                 err_data: Vec::new(),
2159                                                 msg: "We require payment_secrets",
2160                                         });
2161                                 }
2162                         },
2163                 };
2164                 Ok(PendingHTLCInfo {
2165                         routing,
2166                         payment_hash,
2167                         incoming_shared_secret: shared_secret,
2168                         amt_to_forward: amt_msat,
2169                         outgoing_cltv_value: hop_data.outgoing_cltv_value,
2170                 })
2171         }
2172
2173         fn decode_update_add_htlc_onion(&self, msg: &msgs::UpdateAddHTLC) -> PendingHTLCStatus {
2174                 macro_rules! return_malformed_err {
2175                         ($msg: expr, $err_code: expr) => {
2176                                 {
2177                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2178                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2179                                                 channel_id: msg.channel_id,
2180                                                 htlc_id: msg.htlc_id,
2181                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2182                                                 failure_code: $err_code,
2183                                         }));
2184                                 }
2185                         }
2186                 }
2187
2188                 if let Err(_) = msg.onion_routing_packet.public_key {
2189                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2190                 }
2191
2192                 let shared_secret = SharedSecret::new(&msg.onion_routing_packet.public_key.unwrap(), &self.our_network_key).secret_bytes();
2193
2194                 if msg.onion_routing_packet.version != 0 {
2195                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2196                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2197                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2198                         //receiving node would have to brute force to figure out which version was put in the
2199                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2200                         //node knows the HMAC matched, so they already know what is there...
2201                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2202                 }
2203                 macro_rules! return_err {
2204                         ($msg: expr, $err_code: expr, $data: expr) => {
2205                                 {
2206                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2207                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2208                                                 channel_id: msg.channel_id,
2209                                                 htlc_id: msg.htlc_id,
2210                                                 reason: onion_utils::build_first_hop_failure_packet(&shared_secret, $err_code, $data),
2211                                         }));
2212                                 }
2213                         }
2214                 }
2215
2216                 let next_hop = match onion_utils::decode_next_payment_hop(shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac, msg.payment_hash) {
2217                         Ok(res) => res,
2218                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2219                                 return_malformed_err!(err_msg, err_code);
2220                         },
2221                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2222                                 return_err!(err_msg, err_code, &[0; 0]);
2223                         },
2224                 };
2225
2226                 let pending_forward_info = match next_hop {
2227                         onion_utils::Hop::Receive(next_hop_data) => {
2228                                 // OUR PAYMENT!
2229                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash, msg.amount_msat, msg.cltv_expiry, None) {
2230                                         Ok(info) => {
2231                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
2232                                                 // message, however that would leak that we are the recipient of this payment, so
2233                                                 // instead we stay symmetric with the forwarding case, only responding (after a
2234                                                 // delay) once they've send us a commitment_signed!
2235                                                 PendingHTLCStatus::Forward(info)
2236                                         },
2237                                         Err(ReceiveError { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
2238                                 }
2239                         },
2240                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
2241                                 let new_pubkey = msg.onion_routing_packet.public_key.unwrap();
2242                                 let outgoing_packet = msgs::OnionPacket {
2243                                         version: 0,
2244                                         public_key: onion_utils::next_hop_packet_pubkey(&self.secp_ctx, new_pubkey, &shared_secret),
2245                                         hop_data: new_packet_bytes,
2246                                         hmac: next_hop_hmac.clone(),
2247                                 };
2248
2249                                 let short_channel_id = match next_hop_data.format {
2250                                         msgs::OnionHopDataFormat::Legacy { short_channel_id } => short_channel_id,
2251                                         msgs::OnionHopDataFormat::NonFinalNode { short_channel_id } => short_channel_id,
2252                                         msgs::OnionHopDataFormat::FinalNode { .. } => {
2253                                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0;0]);
2254                                         },
2255                                 };
2256
2257                                 PendingHTLCStatus::Forward(PendingHTLCInfo {
2258                                         routing: PendingHTLCRouting::Forward {
2259                                                 onion_packet: outgoing_packet,
2260                                                 short_channel_id,
2261                                         },
2262                                         payment_hash: msg.payment_hash.clone(),
2263                                         incoming_shared_secret: shared_secret,
2264                                         amt_to_forward: next_hop_data.amt_to_forward,
2265                                         outgoing_cltv_value: next_hop_data.outgoing_cltv_value,
2266                                 })
2267                         }
2268                 };
2269
2270                 if let &PendingHTLCStatus::Forward(PendingHTLCInfo { ref routing, ref amt_to_forward, ref outgoing_cltv_value, .. }) = &pending_forward_info {
2271                         // If short_channel_id is 0 here, we'll reject the HTLC as there cannot be a channel
2272                         // with a short_channel_id of 0. This is important as various things later assume
2273                         // short_channel_id is non-0 in any ::Forward.
2274                         if let &PendingHTLCRouting::Forward { ref short_channel_id, .. } = routing {
2275                                 if let Some((err, code, chan_update)) = loop {
2276                                         let mut channel_state = self.channel_state.lock().unwrap();
2277                                         let id_option = channel_state.short_to_chan_info.get(&short_channel_id).cloned();
2278                                         let forwarding_id_opt = match id_option {
2279                                                 None => { // unknown_next_peer
2280                                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2281                                                         // phantom.
2282                                                         if fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, *short_channel_id) {
2283                                                                 None
2284                                                         } else {
2285                                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2286                                                         }
2287                                                 },
2288                                                 Some((_cp_id, chan_id)) => Some(chan_id.clone()),
2289                                         };
2290                                         let chan_update_opt = if let Some(forwarding_id) = forwarding_id_opt {
2291                                                 let chan = channel_state.by_id.get_mut(&forwarding_id).unwrap();
2292                                                 if !chan.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
2293                                                         // Note that the behavior here should be identical to the above block - we
2294                                                         // should NOT reveal the existence or non-existence of a private channel if
2295                                                         // we don't allow forwards outbound over them.
2296                                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
2297                                                 }
2298                                                 if chan.get_channel_type().supports_scid_privacy() && *short_channel_id != chan.outbound_scid_alias() {
2299                                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
2300                                                         // "refuse to forward unless the SCID alias was used", so we pretend
2301                                                         // we don't have the channel here.
2302                                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
2303                                                 }
2304                                                 let chan_update_opt = self.get_channel_update_for_onion(*short_channel_id, chan).ok();
2305
2306                                                 // Note that we could technically not return an error yet here and just hope
2307                                                 // that the connection is reestablished or monitor updated by the time we get
2308                                                 // around to doing the actual forward, but better to fail early if we can and
2309                                                 // hopefully an attacker trying to path-trace payments cannot make this occur
2310                                                 // on a small/per-node/per-channel scale.
2311                                                 if !chan.is_live() { // channel_disabled
2312                                                         break Some(("Forwarding channel is not in a ready state.", 0x1000 | 20, chan_update_opt));
2313                                                 }
2314                                                 if *amt_to_forward < chan.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
2315                                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
2316                                                 }
2317                                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, *amt_to_forward, *outgoing_cltv_value) {
2318                                                         break Some((err, code, chan_update_opt));
2319                                                 }
2320                                                 chan_update_opt
2321                                         } else {
2322                                                 if (msg.cltv_expiry as u64) < (*outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 { // incorrect_cltv_expiry
2323                                                         break Some((
2324                                                                 "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
2325                                                                 0x1000 | 13, None,
2326                                                         ));
2327                                                 }
2328                                                 None
2329                                         };
2330
2331                                         let cur_height = self.best_block.read().unwrap().height() + 1;
2332                                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
2333                                         // but we want to be robust wrt to counterparty packet sanitization (see
2334                                         // HTLC_FAIL_BACK_BUFFER rationale).
2335                                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
2336                                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
2337                                         }
2338                                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
2339                                                 break Some(("CLTV expiry is too far in the future", 21, None));
2340                                         }
2341                                         // If the HTLC expires ~now, don't bother trying to forward it to our
2342                                         // counterparty. They should fail it anyway, but we don't want to bother with
2343                                         // the round-trips or risk them deciding they definitely want the HTLC and
2344                                         // force-closing to ensure they get it if we're offline.
2345                                         // We previously had a much more aggressive check here which tried to ensure
2346                                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
2347                                         // but there is no need to do that, and since we're a bit conservative with our
2348                                         // risk threshold it just results in failing to forward payments.
2349                                         if (*outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
2350                                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
2351                                         }
2352
2353                                         break None;
2354                                 }
2355                                 {
2356                                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
2357                                         if let Some(chan_update) = chan_update {
2358                                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
2359                                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
2360                                                 }
2361                                                 else if code == 0x1000 | 13 {
2362                                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
2363                                                 }
2364                                                 else if code == 0x1000 | 20 {
2365                                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
2366                                                         0u16.write(&mut res).expect("Writes cannot fail");
2367                                                 }
2368                                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
2369                                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
2370                                                 chan_update.write(&mut res).expect("Writes cannot fail");
2371                                         }
2372                                         return_err!(err, code, &res.0[..]);
2373                                 }
2374                         }
2375                 }
2376
2377                 pending_forward_info
2378         }
2379
2380         /// Gets the current channel_update for the given channel. This first checks if the channel is
2381         /// public, and thus should be called whenever the result is going to be passed out in a
2382         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
2383         ///
2384         /// May be called with channel_state already locked!
2385         fn get_channel_update_for_broadcast(&self, chan: &Channel<Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2386                 if !chan.should_announce() {
2387                         return Err(LightningError {
2388                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
2389                                 action: msgs::ErrorAction::IgnoreError
2390                         });
2391                 }
2392                 if chan.get_short_channel_id().is_none() {
2393                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
2394                 }
2395                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", log_bytes!(chan.channel_id()));
2396                 self.get_channel_update_for_unicast(chan)
2397         }
2398
2399         /// Gets the current channel_update for the given channel. This does not check if the channel
2400         /// is public (only returning an Err if the channel does not yet have an assigned short_id),
2401         /// and thus MUST NOT be called unless the recipient of the resulting message has already
2402         /// provided evidence that they know about the existence of the channel.
2403         /// May be called with channel_state already locked!
2404         fn get_channel_update_for_unicast(&self, chan: &Channel<Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2405                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", log_bytes!(chan.channel_id()));
2406                 let short_channel_id = match chan.get_short_channel_id().or(chan.latest_inbound_scid_alias()) {
2407                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
2408                         Some(id) => id,
2409                 };
2410
2411                 self.get_channel_update_for_onion(short_channel_id, chan)
2412         }
2413         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2414                 log_trace!(self.logger, "Generating channel update for channel {}", log_bytes!(chan.channel_id()));
2415                 let were_node_one = PublicKey::from_secret_key(&self.secp_ctx, &self.our_network_key).serialize()[..] < chan.get_counterparty_node_id().serialize()[..];
2416
2417                 let unsigned = msgs::UnsignedChannelUpdate {
2418                         chain_hash: self.genesis_hash,
2419                         short_channel_id,
2420                         timestamp: chan.get_update_time_counter(),
2421                         flags: (!were_node_one) as u8 | ((!chan.is_live() as u8) << 1),
2422                         cltv_expiry_delta: chan.get_cltv_expiry_delta(),
2423                         htlc_minimum_msat: chan.get_counterparty_htlc_minimum_msat(),
2424                         htlc_maximum_msat: chan.get_announced_htlc_max_msat(),
2425                         fee_base_msat: chan.get_outbound_forwarding_fee_base_msat(),
2426                         fee_proportional_millionths: chan.get_fee_proportional_millionths(),
2427                         excess_data: Vec::new(),
2428                 };
2429
2430                 let msg_hash = Sha256dHash::hash(&unsigned.encode()[..]);
2431                 let sig = self.secp_ctx.sign_ecdsa(&hash_to_message!(&msg_hash[..]), &self.our_network_key);
2432
2433                 Ok(msgs::ChannelUpdate {
2434                         signature: sig,
2435                         contents: unsigned
2436                 })
2437         }
2438
2439         // Only public for testing, this should otherwise never be called direcly
2440         pub(crate) fn send_payment_along_path(&self, path: &Vec<RouteHop>, payment_params: &Option<PaymentParameters>, payment_hash: &PaymentHash, payment_secret: &Option<PaymentSecret>, total_value: u64, cur_height: u32, payment_id: PaymentId, keysend_preimage: &Option<PaymentPreimage>, session_priv_bytes: [u8; 32]) -> Result<(), APIError> {
2441                 log_trace!(self.logger, "Attempting to send payment for path with next hop {}", path.first().unwrap().short_channel_id);
2442                 let prng_seed = self.keys_manager.get_secure_random_bytes();
2443                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
2444
2445                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
2446                         .map_err(|_| APIError::RouteError{err: "Pubkey along hop was maliciously selected"})?;
2447                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, payment_secret, cur_height, keysend_preimage)?;
2448                 if onion_utils::route_size_insane(&onion_payloads) {
2449                         return Err(APIError::RouteError{err: "Route size too large considering onion data"});
2450                 }
2451                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash);
2452
2453                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2454
2455                 let err: Result<(), _> = loop {
2456                         let mut channel_lock = self.channel_state.lock().unwrap();
2457
2458                         let id = match channel_lock.short_to_chan_info.get(&path.first().unwrap().short_channel_id) {
2459                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
2460                                 Some((_cp_id, chan_id)) => chan_id.clone(),
2461                         };
2462
2463                         let channel_state = &mut *channel_lock;
2464                         if let hash_map::Entry::Occupied(mut chan) = channel_state.by_id.entry(id) {
2465                                 match {
2466                                         if chan.get().get_counterparty_node_id() != path.first().unwrap().pubkey {
2467                                                 return Err(APIError::RouteError{err: "Node ID mismatch on first hop!"});
2468                                         }
2469                                         if !chan.get().is_live() {
2470                                                 return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected/pending monitor update!".to_owned()});
2471                                         }
2472                                         break_chan_entry!(self, chan.get_mut().send_htlc_and_commit(
2473                                                 htlc_msat, payment_hash.clone(), htlc_cltv, HTLCSource::OutboundRoute {
2474                                                         path: path.clone(),
2475                                                         session_priv: session_priv.clone(),
2476                                                         first_hop_htlc_msat: htlc_msat,
2477                                                         payment_id,
2478                                                         payment_secret: payment_secret.clone(),
2479                                                         payment_params: payment_params.clone(),
2480                                                 }, onion_packet, &self.logger),
2481                                         channel_state, chan)
2482                                 } {
2483                                         Some((update_add, commitment_signed, monitor_update)) => {
2484                                                 let update_err = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update);
2485                                                 let chan_id = chan.get().channel_id();
2486                                                 match (update_err,
2487                                                         handle_monitor_update_res!(self, update_err, channel_state, chan,
2488                                                                 RAACommitmentOrder::CommitmentFirst, false, true))
2489                                                 {
2490                                                         (ChannelMonitorUpdateStatus::PermanentFailure, Err(e)) => break Err(e),
2491                                                         (ChannelMonitorUpdateStatus::Completed, Ok(())) => {},
2492                                                         (ChannelMonitorUpdateStatus::InProgress, Err(_)) => {
2493                                                                 // Note that MonitorUpdateInProgress here indicates (per function
2494                                                                 // docs) that we will resend the commitment update once monitor
2495                                                                 // updating completes. Therefore, we must return an error
2496                                                                 // indicating that it is unsafe to retry the payment wholesale,
2497                                                                 // which we do in the send_payment check for
2498                                                                 // MonitorUpdateInProgress, below.
2499                                                                 return Err(APIError::MonitorUpdateInProgress);
2500                                                         },
2501                                                         _ => unreachable!(),
2502                                                 }
2503
2504                                                 log_debug!(self.logger, "Sending payment along path resulted in a commitment_signed for channel {}", log_bytes!(chan_id));
2505                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
2506                                                         node_id: path.first().unwrap().pubkey,
2507                                                         updates: msgs::CommitmentUpdate {
2508                                                                 update_add_htlcs: vec![update_add],
2509                                                                 update_fulfill_htlcs: Vec::new(),
2510                                                                 update_fail_htlcs: Vec::new(),
2511                                                                 update_fail_malformed_htlcs: Vec::new(),
2512                                                                 update_fee: None,
2513                                                                 commitment_signed,
2514                                                         },
2515                                                 });
2516                                         },
2517                                         None => { },
2518                                 }
2519                         } else { unreachable!(); }
2520                         return Ok(());
2521                 };
2522
2523                 match handle_error!(self, err, path.first().unwrap().pubkey) {
2524                         Ok(_) => unreachable!(),
2525                         Err(e) => {
2526                                 Err(APIError::ChannelUnavailable { err: e.err })
2527                         },
2528                 }
2529         }
2530
2531         /// Sends a payment along a given route.
2532         ///
2533         /// Value parameters are provided via the last hop in route, see documentation for RouteHop
2534         /// fields for more info.
2535         ///
2536         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
2537         /// method will error with an [`APIError::RouteError`]. Note, however, that once a payment
2538         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
2539         /// [`Event::PaymentSent`]) LDK will not stop you from sending a second payment with the same
2540         /// [`PaymentId`].
2541         ///
2542         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
2543         /// tracking of payments, including state to indicate once a payment has completed. Because you
2544         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
2545         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
2546         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
2547         ///
2548         /// May generate SendHTLCs message(s) event on success, which should be relayed (e.g. via
2549         /// [`PeerManager::process_events`]).
2550         ///
2551         /// Each path may have a different return value, and PaymentSendValue may return a Vec with
2552         /// each entry matching the corresponding-index entry in the route paths, see
2553         /// PaymentSendFailure for more info.
2554         ///
2555         /// In general, a path may raise:
2556         ///  * [`APIError::RouteError`] when an invalid route or forwarding parameter (cltv_delta, fee,
2557         ///    node public key) is specified.
2558         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
2559         ///    (including due to previous monitor update failure or new permanent monitor update
2560         ///    failure).
2561         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
2562         ///    relevant updates.
2563         ///
2564         /// Note that depending on the type of the PaymentSendFailure the HTLC may have been
2565         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
2566         /// different route unless you intend to pay twice!
2567         ///
2568         /// payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
2569         /// the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
2570         /// newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
2571         /// must not contain multiple paths as multi-path payments require a recipient-provided
2572         /// payment_secret.
2573         ///
2574         /// If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
2575         /// bit set (either as required or as available). If multiple paths are present in the Route,
2576         /// we assume the invoice had the basic_mpp feature set.
2577         ///
2578         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2579         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
2580         pub fn send_payment(&self, route: &Route, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
2581                 let onion_session_privs = self.add_new_pending_payment(payment_hash, *payment_secret, payment_id, route)?;
2582                 self.send_payment_internal(route, payment_hash, payment_secret, None, payment_id, None, onion_session_privs)
2583         }
2584
2585         #[cfg(test)]
2586         pub(crate) fn test_add_new_pending_payment(&self, payment_hash: PaymentHash, payment_secret: Option<PaymentSecret>, payment_id: PaymentId, route: &Route) -> Result<Vec<[u8; 32]>, PaymentSendFailure> {
2587                 self.add_new_pending_payment(payment_hash, payment_secret, payment_id, route)
2588         }
2589
2590         fn add_new_pending_payment(&self, payment_hash: PaymentHash, payment_secret: Option<PaymentSecret>, payment_id: PaymentId, route: &Route) -> Result<Vec<[u8; 32]>, PaymentSendFailure> {
2591                 let mut onion_session_privs = Vec::with_capacity(route.paths.len());
2592                 for _ in 0..route.paths.len() {
2593                         onion_session_privs.push(self.keys_manager.get_secure_random_bytes());
2594                 }
2595
2596                 let mut pending_outbounds = self.pending_outbound_payments.lock().unwrap();
2597                 match pending_outbounds.entry(payment_id) {
2598                         hash_map::Entry::Occupied(_) => Err(PaymentSendFailure::ParameterError(APIError::RouteError {
2599                                 err: "Payment already in progress"
2600                         })),
2601                         hash_map::Entry::Vacant(entry) => {
2602                                 let payment = entry.insert(PendingOutboundPayment::Retryable {
2603                                         session_privs: HashSet::new(),
2604                                         pending_amt_msat: 0,
2605                                         pending_fee_msat: Some(0),
2606                                         payment_hash,
2607                                         payment_secret,
2608                                         starting_block_height: self.best_block.read().unwrap().height(),
2609                                         total_msat: route.get_total_amount(),
2610                                 });
2611
2612                                 for (path, session_priv_bytes) in route.paths.iter().zip(onion_session_privs.iter()) {
2613                                         assert!(payment.insert(*session_priv_bytes, path));
2614                                 }
2615
2616                                 Ok(onion_session_privs)
2617                         },
2618                 }
2619         }
2620
2621         fn send_payment_internal(&self, route: &Route, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>, keysend_preimage: Option<PaymentPreimage>, payment_id: PaymentId, recv_value_msat: Option<u64>, onion_session_privs: Vec<[u8; 32]>) -> Result<(), PaymentSendFailure> {
2622                 if route.paths.len() < 1 {
2623                         return Err(PaymentSendFailure::ParameterError(APIError::RouteError{err: "There must be at least one path to send over"}));
2624                 }
2625                 if payment_secret.is_none() && route.paths.len() > 1 {
2626                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError{err: "Payment secret is required for multi-path payments".to_string()}));
2627                 }
2628                 let mut total_value = 0;
2629                 let our_node_id = self.get_our_node_id();
2630                 let mut path_errs = Vec::with_capacity(route.paths.len());
2631                 'path_check: for path in route.paths.iter() {
2632                         if path.len() < 1 || path.len() > 20 {
2633                                 path_errs.push(Err(APIError::RouteError{err: "Path didn't go anywhere/had bogus size"}));
2634                                 continue 'path_check;
2635                         }
2636                         for (idx, hop) in path.iter().enumerate() {
2637                                 if idx != path.len() - 1 && hop.pubkey == our_node_id {
2638                                         path_errs.push(Err(APIError::RouteError{err: "Path went through us but wasn't a simple rebalance loop to us"}));
2639                                         continue 'path_check;
2640                                 }
2641                         }
2642                         total_value += path.last().unwrap().fee_msat;
2643                         path_errs.push(Ok(()));
2644                 }
2645                 if path_errs.iter().any(|e| e.is_err()) {
2646                         return Err(PaymentSendFailure::PathParameterError(path_errs));
2647                 }
2648                 if let Some(amt_msat) = recv_value_msat {
2649                         debug_assert!(amt_msat >= total_value);
2650                         total_value = amt_msat;
2651                 }
2652
2653                 let cur_height = self.best_block.read().unwrap().height() + 1;
2654                 let mut results = Vec::new();
2655                 debug_assert_eq!(route.paths.len(), onion_session_privs.len());
2656                 for (path, session_priv) in route.paths.iter().zip(onion_session_privs.into_iter()) {
2657                         let mut path_res = self.send_payment_along_path(&path, &route.payment_params, &payment_hash, payment_secret, total_value, cur_height, payment_id, &keysend_preimage, session_priv);
2658                         match path_res {
2659                                 Ok(_) => {},
2660                                 Err(APIError::MonitorUpdateInProgress) => {
2661                                         // While a MonitorUpdateInProgress is an Err(_), the payment is still
2662                                         // considered "in flight" and we shouldn't remove it from the
2663                                         // PendingOutboundPayment set.
2664                                 },
2665                                 Err(_) => {
2666                                         let mut pending_outbounds = self.pending_outbound_payments.lock().unwrap();
2667                                         if let Some(payment) = pending_outbounds.get_mut(&payment_id) {
2668                                                 let removed = payment.remove(&session_priv, Some(path));
2669                                                 debug_assert!(removed, "This can't happen as the payment has an entry for this path added by callers");
2670                                         } else {
2671                                                 debug_assert!(false, "This can't happen as the payment was added by callers");
2672                                                 path_res = Err(APIError::APIMisuseError { err: "Internal error: payment disappeared during processing. Please report this bug!".to_owned() });
2673                                         }
2674                                 }
2675                         }
2676                         results.push(path_res);
2677                 }
2678                 let mut has_ok = false;
2679                 let mut has_err = false;
2680                 let mut pending_amt_unsent = 0;
2681                 let mut max_unsent_cltv_delta = 0;
2682                 for (res, path) in results.iter().zip(route.paths.iter()) {
2683                         if res.is_ok() { has_ok = true; }
2684                         if res.is_err() { has_err = true; }
2685                         if let &Err(APIError::MonitorUpdateInProgress) = res {
2686                                 // MonitorUpdateInProgress is inherently unsafe to retry, so we call it a
2687                                 // PartialFailure.
2688                                 has_err = true;
2689                                 has_ok = true;
2690                         } else if res.is_err() {
2691                                 pending_amt_unsent += path.last().unwrap().fee_msat;
2692                                 max_unsent_cltv_delta = cmp::max(max_unsent_cltv_delta, path.last().unwrap().cltv_expiry_delta);
2693                         }
2694                 }
2695                 if has_err && has_ok {
2696                         Err(PaymentSendFailure::PartialFailure {
2697                                 results,
2698                                 payment_id,
2699                                 failed_paths_retry: if pending_amt_unsent != 0 {
2700                                         if let Some(payment_params) = &route.payment_params {
2701                                                 Some(RouteParameters {
2702                                                         payment_params: payment_params.clone(),
2703                                                         final_value_msat: pending_amt_unsent,
2704                                                         final_cltv_expiry_delta: max_unsent_cltv_delta,
2705                                                 })
2706                                         } else { None }
2707                                 } else { None },
2708                         })
2709                 } else if has_err {
2710                         // If we failed to send any paths, we should remove the new PaymentId from the
2711                         // `pending_outbound_payments` map, as the user isn't expected to `abandon_payment`.
2712                         let removed = self.pending_outbound_payments.lock().unwrap().remove(&payment_id).is_some();
2713                         debug_assert!(removed, "We should always have a pending payment to remove here");
2714                         Err(PaymentSendFailure::AllFailedRetrySafe(results.drain(..).map(|r| r.unwrap_err()).collect()))
2715                 } else {
2716                         Ok(())
2717                 }
2718         }
2719
2720         /// Retries a payment along the given [`Route`].
2721         ///
2722         /// Errors returned are a superset of those returned from [`send_payment`], so see
2723         /// [`send_payment`] documentation for more details on errors. This method will also error if the
2724         /// retry amount puts the payment more than 10% over the payment's total amount, if the payment
2725         /// for the given `payment_id` cannot be found (likely due to timeout or success), or if
2726         /// further retries have been disabled with [`abandon_payment`].
2727         ///
2728         /// [`send_payment`]: [`ChannelManager::send_payment`]
2729         /// [`abandon_payment`]: [`ChannelManager::abandon_payment`]
2730         pub fn retry_payment(&self, route: &Route, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
2731                 const RETRY_OVERFLOW_PERCENTAGE: u64 = 10;
2732                 for path in route.paths.iter() {
2733                         if path.len() == 0 {
2734                                 return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2735                                         err: "length-0 path in route".to_string()
2736                                 }))
2737                         }
2738                 }
2739
2740                 let mut onion_session_privs = Vec::with_capacity(route.paths.len());
2741                 for _ in 0..route.paths.len() {
2742                         onion_session_privs.push(self.keys_manager.get_secure_random_bytes());
2743                 }
2744
2745                 let (total_msat, payment_hash, payment_secret) = {
2746                         let mut outbounds = self.pending_outbound_payments.lock().unwrap();
2747                         match outbounds.get_mut(&payment_id) {
2748                                 Some(payment) => {
2749                                         let res = match payment {
2750                                                 PendingOutboundPayment::Retryable {
2751                                                         total_msat, payment_hash, payment_secret, pending_amt_msat, ..
2752                                                 } => {
2753                                                         let retry_amt_msat: u64 = route.paths.iter().map(|path| path.last().unwrap().fee_msat).sum();
2754                                                         if retry_amt_msat + *pending_amt_msat > *total_msat * (100 + RETRY_OVERFLOW_PERCENTAGE) / 100 {
2755                                                                 return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2756                                                                         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()
2757                                                                 }))
2758                                                         }
2759                                                         (*total_msat, *payment_hash, *payment_secret)
2760                                                 },
2761                                                 PendingOutboundPayment::Legacy { .. } => {
2762                                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2763                                                                 err: "Unable to retry payments that were initially sent on LDK versions prior to 0.0.102".to_string()
2764                                                         }))
2765                                                 },
2766                                                 PendingOutboundPayment::Fulfilled { .. } => {
2767                                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2768                                                                 err: "Payment already completed".to_owned()
2769                                                         }));
2770                                                 },
2771                                                 PendingOutboundPayment::Abandoned { .. } => {
2772                                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2773                                                                 err: "Payment already abandoned (with some HTLCs still pending)".to_owned()
2774                                                         }));
2775                                                 },
2776                                         };
2777                                         for (path, session_priv_bytes) in route.paths.iter().zip(onion_session_privs.iter()) {
2778                                                 assert!(payment.insert(*session_priv_bytes, path));
2779                                         }
2780                                         res
2781                                 },
2782                                 None =>
2783                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2784                                                 err: format!("Payment with ID {} not found", log_bytes!(payment_id.0)),
2785                                         })),
2786                         }
2787                 };
2788                 self.send_payment_internal(route, payment_hash, &payment_secret, None, payment_id, Some(total_msat), onion_session_privs)
2789         }
2790
2791         /// Signals that no further retries for the given payment will occur.
2792         ///
2793         /// After this method returns, any future calls to [`retry_payment`] for the given `payment_id`
2794         /// will fail with [`PaymentSendFailure::ParameterError`]. If no such event has been generated,
2795         /// an [`Event::PaymentFailed`] event will be generated as soon as there are no remaining
2796         /// pending HTLCs for this payment.
2797         ///
2798         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
2799         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
2800         /// determine the ultimate status of a payment.
2801         ///
2802         /// [`retry_payment`]: Self::retry_payment
2803         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
2804         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2805         pub fn abandon_payment(&self, payment_id: PaymentId) {
2806                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2807
2808                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
2809                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
2810                         if let Ok(()) = payment.get_mut().mark_abandoned() {
2811                                 if payment.get().remaining_parts() == 0 {
2812                                         self.pending_events.lock().unwrap().push(events::Event::PaymentFailed {
2813                                                 payment_id,
2814                                                 payment_hash: payment.get().payment_hash().expect("PendingOutboundPayments::RetriesExceeded always has a payment hash set"),
2815                                         });
2816                                         payment.remove();
2817                                 }
2818                         }
2819                 }
2820         }
2821
2822         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
2823         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
2824         /// the preimage, it must be a cryptographically secure random value that no intermediate node
2825         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
2826         /// never reach the recipient.
2827         ///
2828         /// See [`send_payment`] documentation for more details on the return value of this function
2829         /// and idempotency guarantees provided by the [`PaymentId`] key.
2830         ///
2831         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
2832         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
2833         ///
2834         /// Note that `route` must have exactly one path.
2835         ///
2836         /// [`send_payment`]: Self::send_payment
2837         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
2838                 let preimage = match payment_preimage {
2839                         Some(p) => p,
2840                         None => PaymentPreimage(self.keys_manager.get_secure_random_bytes()),
2841                 };
2842                 let payment_hash = PaymentHash(Sha256::hash(&preimage.0).into_inner());
2843                 let onion_session_privs = self.add_new_pending_payment(payment_hash, None, payment_id, &route)?;
2844
2845                 match self.send_payment_internal(route, payment_hash, &None, Some(preimage), payment_id, None, onion_session_privs) {
2846                         Ok(()) => Ok(payment_hash),
2847                         Err(e) => Err(e)
2848                 }
2849         }
2850
2851         /// Send a payment that is probing the given route for liquidity. We calculate the
2852         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
2853         /// us to easily discern them from real payments.
2854         pub fn send_probe(&self, hops: Vec<RouteHop>) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
2855                 let payment_id = PaymentId(self.keys_manager.get_secure_random_bytes());
2856
2857                 let payment_hash = self.probing_cookie_from_id(&payment_id);
2858
2859                 if hops.len() < 2 {
2860                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2861                                 err: "No need probing a path with less than two hops".to_string()
2862                         }))
2863                 }
2864
2865                 let route = Route { paths: vec![hops], payment_params: None };
2866                 let onion_session_privs = self.add_new_pending_payment(payment_hash, None, payment_id, &route)?;
2867
2868                 match self.send_payment_internal(&route, payment_hash, &None, None, payment_id, None, onion_session_privs) {
2869                         Ok(()) => Ok((payment_hash, payment_id)),
2870                         Err(e) => Err(e)
2871                 }
2872         }
2873
2874         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
2875         /// payment probe.
2876         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
2877                 let target_payment_hash = self.probing_cookie_from_id(payment_id);
2878                 target_payment_hash == *payment_hash
2879         }
2880
2881         /// Returns the 'probing cookie' for the given [`PaymentId`].
2882         fn probing_cookie_from_id(&self, payment_id: &PaymentId) -> PaymentHash {
2883                 let mut preimage = [0u8; 64];
2884                 preimage[..32].copy_from_slice(&self.probing_cookie_secret);
2885                 preimage[32..].copy_from_slice(&payment_id.0);
2886                 PaymentHash(Sha256::hash(&preimage).into_inner())
2887         }
2888
2889         /// Handles the generation of a funding transaction, optionally (for tests) with a function
2890         /// which checks the correctness of the funding transaction given the associated channel.
2891         fn funding_transaction_generated_intern<FundingOutput: Fn(&Channel<Signer>, &Transaction) -> Result<OutPoint, APIError>>(
2892                 &self, temporary_channel_id: &[u8; 32], _counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
2893         ) -> Result<(), APIError> {
2894                 let (chan, msg) = {
2895                         let (res, chan) = match self.channel_state.lock().unwrap().by_id.remove(temporary_channel_id) {
2896                                 Some(mut chan) => {
2897                                         let funding_txo = find_funding_output(&chan, &funding_transaction)?;
2898
2899                                         (chan.get_outbound_funding_created(funding_transaction, funding_txo, &self.logger)
2900                                                 .map_err(|e| if let ChannelError::Close(msg) = e {
2901                                                         MsgHandleErrInternal::from_finish_shutdown(msg, chan.channel_id(), chan.get_user_id(), chan.force_shutdown(true), None)
2902                                                 } else { unreachable!(); })
2903                                         , chan)
2904                                 },
2905                                 None => { return Err(APIError::ChannelUnavailable { err: "No such channel".to_owned() }) },
2906                         };
2907                         match handle_error!(self, res, chan.get_counterparty_node_id()) {
2908                                 Ok(funding_msg) => {
2909                                         (chan, funding_msg)
2910                                 },
2911                                 Err(_) => { return Err(APIError::ChannelUnavailable {
2912                                         err: "Error deriving keys or signing initial commitment transactions - either our RNG or our counterparty's RNG is broken or the Signer refused to sign".to_owned()
2913                                 }) },
2914                         }
2915                 };
2916
2917                 let mut channel_state = self.channel_state.lock().unwrap();
2918                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
2919                         node_id: chan.get_counterparty_node_id(),
2920                         msg,
2921                 });
2922                 match channel_state.by_id.entry(chan.channel_id()) {
2923                         hash_map::Entry::Occupied(_) => {
2924                                 panic!("Generated duplicate funding txid?");
2925                         },
2926                         hash_map::Entry::Vacant(e) => {
2927                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
2928                                 if id_to_peer.insert(chan.channel_id(), chan.get_counterparty_node_id()).is_some() {
2929                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
2930                                 }
2931                                 e.insert(chan);
2932                         }
2933                 }
2934                 Ok(())
2935         }
2936
2937         #[cfg(test)]
2938         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
2939                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
2940                         Ok(OutPoint { txid: tx.txid(), index: output_index })
2941                 })
2942         }
2943
2944         /// Call this upon creation of a funding transaction for the given channel.
2945         ///
2946         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
2947         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
2948         ///
2949         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
2950         /// across the p2p network.
2951         ///
2952         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
2953         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
2954         ///
2955         /// May panic if the output found in the funding transaction is duplicative with some other
2956         /// channel (note that this should be trivially prevented by using unique funding transaction
2957         /// keys per-channel).
2958         ///
2959         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
2960         /// counterparty's signature the funding transaction will automatically be broadcast via the
2961         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
2962         ///
2963         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
2964         /// not currently support replacing a funding transaction on an existing channel. Instead,
2965         /// create a new channel with a conflicting funding transaction.
2966         ///
2967         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
2968         /// the wallet software generating the funding transaction to apply anti-fee sniping as
2969         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
2970         /// for more details.
2971         ///
2972         /// [`Event::FundingGenerationReady`]: crate::util::events::Event::FundingGenerationReady
2973         /// [`Event::ChannelClosed`]: crate::util::events::Event::ChannelClosed
2974         pub fn funding_transaction_generated(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
2975                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2976
2977                 for inp in funding_transaction.input.iter() {
2978                         if inp.witness.is_empty() {
2979                                 return Err(APIError::APIMisuseError {
2980                                         err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
2981                                 });
2982                         }
2983                 }
2984                 {
2985                         let height = self.best_block.read().unwrap().height();
2986                         // Transactions are evaluated as final by network mempools at the next block. However, the modules
2987                         // constituting our Lightning node might not have perfect sync about their blockchain views. Thus, if
2988                         // the wallet module is in advance on the LDK view, allow one more block of headroom.
2989                         if !funding_transaction.input.iter().all(|input| input.sequence == Sequence::MAX) && LockTime::from(funding_transaction.lock_time).is_block_height() && funding_transaction.lock_time.0 > height + 2 {
2990                                 return Err(APIError::APIMisuseError {
2991                                         err: "Funding transaction absolute timelock is non-final".to_owned()
2992                                 });
2993                         }
2994                 }
2995                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
2996                         let mut output_index = None;
2997                         let expected_spk = chan.get_funding_redeemscript().to_v0_p2wsh();
2998                         for (idx, outp) in tx.output.iter().enumerate() {
2999                                 if outp.script_pubkey == expected_spk && outp.value == chan.get_value_satoshis() {
3000                                         if output_index.is_some() {
3001                                                 return Err(APIError::APIMisuseError {
3002                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3003                                                 });
3004                                         }
3005                                         if idx > u16::max_value() as usize {
3006                                                 return Err(APIError::APIMisuseError {
3007                                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3008                                                 });
3009                                         }
3010                                         output_index = Some(idx as u16);
3011                                 }
3012                         }
3013                         if output_index.is_none() {
3014                                 return Err(APIError::APIMisuseError {
3015                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3016                                 });
3017                         }
3018                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3019                 })
3020         }
3021
3022         /// Atomically updates the [`ChannelConfig`] for the given channels.
3023         ///
3024         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3025         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3026         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3027         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3028         ///
3029         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3030         /// `counterparty_node_id` is provided.
3031         ///
3032         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3033         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3034         ///
3035         /// If an error is returned, none of the updates should be considered applied.
3036         ///
3037         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3038         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3039         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3040         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3041         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3042         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3043         /// [`APIMisuseError`]: APIError::APIMisuseError
3044         pub fn update_channel_config(
3045                 &self, counterparty_node_id: &PublicKey, channel_ids: &[[u8; 32]], config: &ChannelConfig,
3046         ) -> Result<(), APIError> {
3047                 if config.cltv_expiry_delta < MIN_CLTV_EXPIRY_DELTA {
3048                         return Err(APIError::APIMisuseError {
3049                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3050                         });
3051                 }
3052
3053                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(
3054                         &self.total_consistency_lock, &self.persistence_notifier,
3055                 );
3056                 {
3057                         let mut channel_state_lock = self.channel_state.lock().unwrap();
3058                         let channel_state = &mut *channel_state_lock;
3059                         for channel_id in channel_ids {
3060                                 let channel_counterparty_node_id = channel_state.by_id.get(channel_id)
3061                                         .ok_or(APIError::ChannelUnavailable {
3062                                                 err: format!("Channel with ID {} was not found", log_bytes!(*channel_id)),
3063                                         })?
3064                                         .get_counterparty_node_id();
3065                                 if channel_counterparty_node_id != *counterparty_node_id {
3066                                         return Err(APIError::APIMisuseError {
3067                                                 err: "counterparty node id mismatch".to_owned(),
3068                                         });
3069                                 }
3070                         }
3071                         for channel_id in channel_ids {
3072                                 let channel = channel_state.by_id.get_mut(channel_id).unwrap();
3073                                 if !channel.update_config(config) {
3074                                         continue;
3075                                 }
3076                                 if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3077                                         channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3078                                 } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3079                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3080                                                 node_id: channel.get_counterparty_node_id(),
3081                                                 msg,
3082                                         });
3083                                 }
3084                         }
3085                 }
3086                 Ok(())
3087         }
3088
3089         /// Processes HTLCs which are pending waiting on random forward delay.
3090         ///
3091         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
3092         /// Will likely generate further events.
3093         pub fn process_pending_htlc_forwards(&self) {
3094                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
3095
3096                 let mut new_events = Vec::new();
3097                 let mut failed_forwards = Vec::new();
3098                 let mut phantom_receives: Vec<(u64, OutPoint, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
3099                 let mut handle_errors = Vec::new();
3100                 {
3101                         let mut forward_htlcs = HashMap::new();
3102                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
3103
3104                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
3105                                 let mut channel_state_lock = self.channel_state.lock().unwrap();
3106                                 let channel_state = &mut *channel_state_lock;
3107                                 if short_chan_id != 0 {
3108                                         let forward_chan_id = match channel_state.short_to_chan_info.get(&short_chan_id) {
3109                                                 Some((_cp_id, chan_id)) => chan_id.clone(),
3110                                                 None => {
3111                                                         for forward_info in pending_forwards.drain(..) {
3112                                                                 match forward_info {
3113                                                                         HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info: PendingHTLCInfo {
3114                                                                                 routing, incoming_shared_secret, payment_hash, amt_to_forward, outgoing_cltv_value },
3115                                                                                 prev_funding_outpoint } => {
3116                                                                                         macro_rules! failure_handler {
3117                                                                                                 ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
3118                                                                                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3119
3120                                                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3121                                                                                                                 short_channel_id: prev_short_channel_id,
3122                                                                                                                 outpoint: prev_funding_outpoint,
3123                                                                                                                 htlc_id: prev_htlc_id,
3124                                                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
3125                                                                                                                 phantom_shared_secret: $phantom_ss,
3126                                                                                                         });
3127
3128                                                                                                         let reason = if $next_hop_unknown {
3129                                                                                                                 HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
3130                                                                                                         } else {
3131                                                                                                                 HTLCDestination::FailedPayment{ payment_hash }
3132                                                                                                         };
3133
3134                                                                                                         failed_forwards.push((htlc_source, payment_hash,
3135                                                                                                                 HTLCFailReason::Reason { failure_code: $err_code, data: $err_data },
3136                                                                                                                 reason
3137                                                                                                         ));
3138                                                                                                         continue;
3139                                                                                                 }
3140                                                                                         }
3141                                                                                         macro_rules! fail_forward {
3142                                                                                                 ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3143                                                                                                         {
3144                                                                                                                 failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
3145                                                                                                         }
3146                                                                                                 }
3147                                                                                         }
3148                                                                                         macro_rules! failed_payment {
3149                                                                                                 ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3150                                                                                                         {
3151                                                                                                                 failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
3152                                                                                                         }
3153                                                                                                 }
3154                                                                                         }
3155                                                                                         if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
3156                                                                                                 let phantom_secret_res = self.keys_manager.get_node_secret(Recipient::PhantomNode);
3157                                                                                                 if phantom_secret_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id) {
3158                                                                                                         let phantom_shared_secret = SharedSecret::new(&onion_packet.public_key.unwrap(), &phantom_secret_res.unwrap()).secret_bytes();
3159                                                                                                         let next_hop = match onion_utils::decode_next_payment_hop(phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac, payment_hash) {
3160                                                                                                                 Ok(res) => res,
3161                                                                                                                 Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3162                                                                                                                         let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
3163                                                                                                                         // In this scenario, the phantom would have sent us an
3164                                                                                                                         // `update_fail_malformed_htlc`, meaning here we encrypt the error as
3165                                                                                                                         // if it came from us (the second-to-last hop) but contains the sha256
3166                                                                                                                         // of the onion.
3167                                                                                                                         failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
3168                                                                                                                 },
3169                                                                                                                 Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3170                                                                                                                         failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
3171                                                                                                                 },
3172                                                                                                         };
3173                                                                                                         match next_hop {
3174                                                                                                                 onion_utils::Hop::Receive(hop_data) => {
3175                                                                                                                         match self.construct_recv_pending_htlc_info(hop_data, incoming_shared_secret, payment_hash, amt_to_forward, outgoing_cltv_value, Some(phantom_shared_secret)) {
3176                                                                                                                                 Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, vec![(info, prev_htlc_id)])),
3177                                                                                                                                 Err(ReceiveError { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
3178                                                                                                                         }
3179                                                                                                                 },
3180                                                                                                                 _ => panic!(),
3181                                                                                                         }
3182                                                                                                 } else {
3183                                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3184                                                                                                 }
3185                                                                                         } else {
3186                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3187                                                                                         }
3188                                                                                 },
3189                                                                         HTLCForwardInfo::FailHTLC { .. } => {
3190                                                                                 // Channel went away before we could fail it. This implies
3191                                                                                 // the channel is now on chain and our counterparty is
3192                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
3193                                                                                 // problem, not ours.
3194                                                                         }
3195                                                                 }
3196                                                         }
3197                                                         continue;
3198                                                 }
3199                                         };
3200                                         if let hash_map::Entry::Occupied(mut chan) = channel_state.by_id.entry(forward_chan_id) {
3201                                                 let mut add_htlc_msgs = Vec::new();
3202                                                 let mut fail_htlc_msgs = Vec::new();
3203                                                 for forward_info in pending_forwards.drain(..) {
3204                                                         match forward_info {
3205                                                                 HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info: PendingHTLCInfo {
3206                                                                                 routing: PendingHTLCRouting::Forward {
3207                                                                                         onion_packet, ..
3208                                                                                 }, incoming_shared_secret, payment_hash, amt_to_forward, outgoing_cltv_value },
3209                                                                                 prev_funding_outpoint } => {
3210                                                                         log_trace!(self.logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", prev_short_channel_id, log_bytes!(payment_hash.0), short_chan_id);
3211                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3212                                                                                 short_channel_id: prev_short_channel_id,
3213                                                                                 outpoint: prev_funding_outpoint,
3214                                                                                 htlc_id: prev_htlc_id,
3215                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
3216                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
3217                                                                                 phantom_shared_secret: None,
3218                                                                         });
3219                                                                         match chan.get_mut().send_htlc(amt_to_forward, payment_hash, outgoing_cltv_value, htlc_source.clone(), onion_packet, &self.logger) {
3220                                                                                 Err(e) => {
3221                                                                                         if let ChannelError::Ignore(msg) = e {
3222                                                                                                 log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", log_bytes!(payment_hash.0), msg);
3223                                                                                         } else {
3224                                                                                                 panic!("Stated return value requirements in send_htlc() were not met");
3225                                                                                         }
3226                                                                                         let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan.get());
3227                                                                                         failed_forwards.push((htlc_source, payment_hash,
3228                                                                                                 HTLCFailReason::Reason { failure_code, data },
3229                                                                                                 HTLCDestination::NextHopChannel { node_id: Some(chan.get().get_counterparty_node_id()), channel_id: forward_chan_id }
3230                                                                                         ));
3231                                                                                         continue;
3232                                                                                 },
3233                                                                                 Ok(update_add) => {
3234                                                                                         match update_add {
3235                                                                                                 Some(msg) => { add_htlc_msgs.push(msg); },
3236                                                                                                 None => {
3237                                                                                                         // Nothing to do here...we're waiting on a remote
3238                                                                                                         // revoke_and_ack before we can add anymore HTLCs. The Channel
3239                                                                                                         // will automatically handle building the update_add_htlc and
3240                                                                                                         // commitment_signed messages when we can.
3241                                                                                                         // TODO: Do some kind of timer to set the channel as !is_live()
3242                                                                                                         // as we don't really want others relying on us relaying through
3243                                                                                                         // this channel currently :/.
3244                                                                                                 }
3245                                                                                         }
3246                                                                                 }
3247                                                                         }
3248                                                                 },
3249                                                                 HTLCForwardInfo::AddHTLC { .. } => {
3250                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
3251                                                                 },
3252                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
3253                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
3254                                                                         match chan.get_mut().get_update_fail_htlc(htlc_id, err_packet, &self.logger) {
3255                                                                                 Err(e) => {
3256                                                                                         if let ChannelError::Ignore(msg) = e {
3257                                                                                                 log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
3258                                                                                         } else {
3259                                                                                                 panic!("Stated return value requirements in get_update_fail_htlc() were not met");
3260                                                                                         }
3261                                                                                         // fail-backs are best-effort, we probably already have one
3262                                                                                         // pending, and if not that's OK, if not, the channel is on
3263                                                                                         // the chain and sending the HTLC-Timeout is their problem.
3264                                                                                         continue;
3265                                                                                 },
3266                                                                                 Ok(Some(msg)) => { fail_htlc_msgs.push(msg); },
3267                                                                                 Ok(None) => {
3268                                                                                         // Nothing to do here...we're waiting on a remote
3269                                                                                         // revoke_and_ack before we can update the commitment
3270                                                                                         // transaction. The Channel will automatically handle
3271                                                                                         // building the update_fail_htlc and commitment_signed
3272                                                                                         // messages when we can.
3273                                                                                         // We don't need any kind of timer here as they should fail
3274                                                                                         // the channel onto the chain if they can't get our
3275                                                                                         // update_fail_htlc in time, it's not our problem.
3276                                                                                 }
3277                                                                         }
3278                                                                 },
3279                                                         }
3280                                                 }
3281
3282                                                 if !add_htlc_msgs.is_empty() || !fail_htlc_msgs.is_empty() {
3283                                                         let (commitment_msg, monitor_update) = match chan.get_mut().send_commitment(&self.logger) {
3284                                                                 Ok(res) => res,
3285                                                                 Err(e) => {
3286                                                                         // We surely failed send_commitment due to bad keys, in that case
3287                                                                         // close channel and then send error message to peer.
3288                                                                         let counterparty_node_id = chan.get().get_counterparty_node_id();
3289                                                                         let err: Result<(), _>  = match e {
3290                                                                                 ChannelError::Ignore(_) | ChannelError::Warn(_) => {
3291                                                                                         panic!("Stated return value requirements in send_commitment() were not met");
3292                                                                                 }
3293                                                                                 ChannelError::Close(msg) => {
3294                                                                                         log_trace!(self.logger, "Closing channel {} due to Close-required error: {}", log_bytes!(chan.key()[..]), msg);
3295                                                                                         let mut channel = remove_channel!(self, channel_state, chan);
3296                                                                                         // ChannelClosed event is generated by handle_error for us.
3297                                                                                         Err(MsgHandleErrInternal::from_finish_shutdown(msg, channel.channel_id(), channel.get_user_id(), channel.force_shutdown(true), self.get_channel_update_for_broadcast(&channel).ok()))
3298                                                                                 },
3299                                                                         };
3300                                                                         handle_errors.push((counterparty_node_id, err));
3301                                                                         continue;
3302                                                                 }
3303                                                         };
3304                                                         match self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
3305                                                                 ChannelMonitorUpdateStatus::Completed => {},
3306                                                                 e => {
3307                                                                         handle_errors.push((chan.get().get_counterparty_node_id(), handle_monitor_update_res!(self, e, channel_state, chan, RAACommitmentOrder::CommitmentFirst, false, true)));
3308                                                                         continue;
3309                                                                 }
3310                                                         }
3311                                                         log_debug!(self.logger, "Forwarding HTLCs resulted in a commitment update with {} HTLCs added and {} HTLCs failed for channel {}",
3312                                                                 add_htlc_msgs.len(), fail_htlc_msgs.len(), log_bytes!(chan.get().channel_id()));
3313                                                         channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
3314                                                                 node_id: chan.get().get_counterparty_node_id(),
3315                                                                 updates: msgs::CommitmentUpdate {
3316                                                                         update_add_htlcs: add_htlc_msgs,
3317                                                                         update_fulfill_htlcs: Vec::new(),
3318                                                                         update_fail_htlcs: fail_htlc_msgs,
3319                                                                         update_fail_malformed_htlcs: Vec::new(),
3320                                                                         update_fee: None,
3321                                                                         commitment_signed: commitment_msg,
3322                                                                 },
3323                                                         });
3324                                                 }
3325                                         } else {
3326                                                 unreachable!();
3327                                         }
3328                                 } else {
3329                                         for forward_info in pending_forwards.drain(..) {
3330                                                 match forward_info {
3331                                                         HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info: PendingHTLCInfo {
3332                                                                         routing, incoming_shared_secret, payment_hash, amt_to_forward, .. },
3333                                                                         prev_funding_outpoint } => {
3334                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret) = match routing {
3335                                                                         PendingHTLCRouting::Receive { payment_data, incoming_cltv_expiry, phantom_shared_secret } => {
3336                                                                                 let _legacy_hop_data = Some(payment_data.clone());
3337                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data }, Some(payment_data), phantom_shared_secret)
3338                                                                         },
3339                                                                         PendingHTLCRouting::ReceiveKeysend { payment_preimage, incoming_cltv_expiry } =>
3340                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage), None, None),
3341                                                                         _ => {
3342                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
3343                                                                         }
3344                                                                 };
3345                                                                 let claimable_htlc = ClaimableHTLC {
3346                                                                         prev_hop: HTLCPreviousHopData {
3347                                                                                 short_channel_id: prev_short_channel_id,
3348                                                                                 outpoint: prev_funding_outpoint,
3349                                                                                 htlc_id: prev_htlc_id,
3350                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
3351                                                                                 phantom_shared_secret,
3352                                                                         },
3353                                                                         value: amt_to_forward,
3354                                                                         timer_ticks: 0,
3355                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { amt_to_forward },
3356                                                                         cltv_expiry,
3357                                                                         onion_payload,
3358                                                                 };
3359
3360                                                                 macro_rules! fail_htlc {
3361                                                                         ($htlc: expr, $payment_hash: expr) => {
3362                                                                                 let mut htlc_msat_height_data = byte_utils::be64_to_array($htlc.value).to_vec();
3363                                                                                 htlc_msat_height_data.extend_from_slice(
3364                                                                                         &byte_utils::be32_to_array(self.best_block.read().unwrap().height()),
3365                                                                                 );
3366                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
3367                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
3368                                                                                                 outpoint: prev_funding_outpoint,
3369                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
3370                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
3371                                                                                                 phantom_shared_secret,
3372                                                                                         }), payment_hash,
3373                                                                                         HTLCFailReason::Reason { failure_code: 0x4000 | 15, data: htlc_msat_height_data },
3374                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
3375                                                                                 ));
3376                                                                         }
3377                                                                 }
3378
3379                                                                 macro_rules! check_total_value {
3380                                                                         ($payment_data: expr, $payment_preimage: expr) => {{
3381                                                                                 let mut payment_received_generated = false;
3382                                                                                 let purpose = || {
3383                                                                                         events::PaymentPurpose::InvoicePayment {
3384                                                                                                 payment_preimage: $payment_preimage,
3385                                                                                                 payment_secret: $payment_data.payment_secret,
3386                                                                                         }
3387                                                                                 };
3388                                                                                 let (_, htlcs) = channel_state.claimable_htlcs.entry(payment_hash)
3389                                                                                         .or_insert_with(|| (purpose(), Vec::new()));
3390                                                                                 if htlcs.len() == 1 {
3391                                                                                         if let OnionPayload::Spontaneous(_) = htlcs[0].onion_payload {
3392                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as we already had an existing keysend HTLC with the same payment hash", log_bytes!(payment_hash.0));
3393                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3394                                                                                                 continue
3395                                                                                         }
3396                                                                                 }
3397                                                                                 let mut total_value = claimable_htlc.value;
3398                                                                                 for htlc in htlcs.iter() {
3399                                                                                         total_value += htlc.value;
3400                                                                                         match &htlc.onion_payload {
3401                                                                                                 OnionPayload::Invoice { .. } => {
3402                                                                                                         if htlc.total_msat != $payment_data.total_msat {
3403                                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
3404                                                                                                                         log_bytes!(payment_hash.0), $payment_data.total_msat, htlc.total_msat);
3405                                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
3406                                                                                                         }
3407                                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
3408                                                                                                 },
3409                                                                                                 _ => unreachable!(),
3410                                                                                         }
3411                                                                                 }
3412                                                                                 if total_value >= msgs::MAX_VALUE_MSAT || total_value > $payment_data.total_msat {
3413                                                                                         log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the total value {} ran over expected value {} (or HTLCs were inconsistent)",
3414                                                                                                 log_bytes!(payment_hash.0), total_value, $payment_data.total_msat);
3415                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3416                                                                                 } else if total_value == $payment_data.total_msat {
3417                                                                                         htlcs.push(claimable_htlc);
3418                                                                                         new_events.push(events::Event::PaymentReceived {
3419                                                                                                 payment_hash,
3420                                                                                                 purpose: purpose(),
3421                                                                                                 amount_msat: total_value,
3422                                                                                         });
3423                                                                                         payment_received_generated = true;
3424                                                                                 } else {
3425                                                                                         // Nothing to do - we haven't reached the total
3426                                                                                         // payment value yet, wait until we receive more
3427                                                                                         // MPP parts.
3428                                                                                         htlcs.push(claimable_htlc);
3429                                                                                 }
3430                                                                                 payment_received_generated
3431                                                                         }}
3432                                                                 }
3433
3434                                                                 // Check that the payment hash and secret are known. Note that we
3435                                                                 // MUST take care to handle the "unknown payment hash" and
3436                                                                 // "incorrect payment secret" cases here identically or we'd expose
3437                                                                 // that we are the ultimate recipient of the given payment hash.
3438                                                                 // Further, we must not expose whether we have any other HTLCs
3439                                                                 // associated with the same payment_hash pending or not.
3440                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
3441                                                                 match payment_secrets.entry(payment_hash) {
3442                                                                         hash_map::Entry::Vacant(_) => {
3443                                                                                 match claimable_htlc.onion_payload {
3444                                                                                         OnionPayload::Invoice { .. } => {
3445                                                                                                 let payment_data = payment_data.unwrap();
3446                                                                                                 let payment_preimage = match inbound_payment::verify(payment_hash, &payment_data, self.highest_seen_timestamp.load(Ordering::Acquire) as u64, &self.inbound_payment_key, &self.logger) {
3447                                                                                                         Ok(payment_preimage) => payment_preimage,
3448                                                                                                         Err(()) => {
3449                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3450                                                                                                                 continue
3451                                                                                                         }
3452                                                                                                 };
3453                                                                                                 check_total_value!(payment_data, payment_preimage);
3454                                                                                         },
3455                                                                                         OnionPayload::Spontaneous(preimage) => {
3456                                                                                                 match channel_state.claimable_htlcs.entry(payment_hash) {
3457                                                                                                         hash_map::Entry::Vacant(e) => {
3458                                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
3459                                                                                                                 e.insert((purpose.clone(), vec![claimable_htlc]));
3460                                                                                                                 new_events.push(events::Event::PaymentReceived {
3461                                                                                                                         payment_hash,
3462                                                                                                                         amount_msat: amt_to_forward,
3463                                                                                                                         purpose,
3464                                                                                                                 });
3465                                                                                                         },
3466                                                                                                         hash_map::Entry::Occupied(_) => {
3467                                                                                                                 log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} for a duplicative payment hash", log_bytes!(payment_hash.0));
3468                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3469                                                                                                         }
3470                                                                                                 }
3471                                                                                         }
3472                                                                                 }
3473                                                                         },
3474                                                                         hash_map::Entry::Occupied(inbound_payment) => {
3475                                                                                 if payment_data.is_none() {
3476                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash", log_bytes!(payment_hash.0));
3477                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3478                                                                                         continue
3479                                                                                 };
3480                                                                                 let payment_data = payment_data.unwrap();
3481                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
3482                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", log_bytes!(payment_hash.0));
3483                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3484                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
3485                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
3486                                                                                                 log_bytes!(payment_hash.0), payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
3487                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3488                                                                                 } else {
3489                                                                                         let payment_received_generated = check_total_value!(payment_data, inbound_payment.get().payment_preimage);
3490                                                                                         if payment_received_generated {
3491                                                                                                 inbound_payment.remove_entry();
3492                                                                                         }
3493                                                                                 }
3494                                                                         },
3495                                                                 };
3496                                                         },
3497                                                         HTLCForwardInfo::FailHTLC { .. } => {
3498                                                                 panic!("Got pending fail of our own HTLC");
3499                                                         }
3500                                                 }
3501                                         }
3502                                 }
3503                         }
3504                 }
3505
3506                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
3507                         self.fail_htlc_backwards_internal(htlc_source, &payment_hash, failure_reason, destination);
3508                 }
3509                 self.forward_htlcs(&mut phantom_receives);
3510
3511                 for (counterparty_node_id, err) in handle_errors.drain(..) {
3512                         let _ = handle_error!(self, err, counterparty_node_id);
3513                 }
3514
3515                 if new_events.is_empty() { return }
3516                 let mut events = self.pending_events.lock().unwrap();
3517                 events.append(&mut new_events);
3518         }
3519
3520         /// Free the background events, generally called from timer_tick_occurred.
3521         ///
3522         /// Exposed for testing to allow us to process events quickly without generating accidental
3523         /// BroadcastChannelUpdate events in timer_tick_occurred.
3524         ///
3525         /// Expects the caller to have a total_consistency_lock read lock.
3526         fn process_background_events(&self) -> bool {
3527                 let mut background_events = Vec::new();
3528                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
3529                 if background_events.is_empty() {
3530                         return false;
3531                 }
3532
3533                 for event in background_events.drain(..) {
3534                         match event {
3535                                 BackgroundEvent::ClosingMonitorUpdate((funding_txo, update)) => {
3536                                         // The channel has already been closed, so no use bothering to care about the
3537                                         // monitor updating completing.
3538                                         let _ = self.chain_monitor.update_channel(funding_txo, update);
3539                                 },
3540                         }
3541                 }
3542                 true
3543         }
3544
3545         #[cfg(any(test, feature = "_test_utils"))]
3546         /// Process background events, for functional testing
3547         pub fn test_process_background_events(&self) {
3548                 self.process_background_events();
3549         }
3550
3551         fn update_channel_fee(&self, short_to_chan_info: &mut HashMap<u64, (PublicKey, [u8; 32])>, pending_msg_events: &mut Vec<events::MessageSendEvent>, chan_id: &[u8; 32], chan: &mut Channel<Signer>, new_feerate: u32) -> (bool, NotifyOption, Result<(), MsgHandleErrInternal>) {
3552                 if !chan.is_outbound() { return (true, NotifyOption::SkipPersist, Ok(())); }
3553                 // If the feerate has decreased by less than half, don't bother
3554                 if new_feerate <= chan.get_feerate() && new_feerate * 2 > chan.get_feerate() {
3555                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
3556                                 log_bytes!(chan_id[..]), chan.get_feerate(), new_feerate);
3557                         return (true, NotifyOption::SkipPersist, Ok(()));
3558                 }
3559                 if !chan.is_live() {
3560                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {} as it cannot currently be updated (probably the peer is disconnected).",
3561                                 log_bytes!(chan_id[..]), chan.get_feerate(), new_feerate);
3562                         return (true, NotifyOption::SkipPersist, Ok(()));
3563                 }
3564                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
3565                         log_bytes!(chan_id[..]), chan.get_feerate(), new_feerate);
3566
3567                 let mut retain_channel = true;
3568                 let res = match chan.send_update_fee_and_commit(new_feerate, &self.logger) {
3569                         Ok(res) => Ok(res),
3570                         Err(e) => {
3571                                 let (drop, res) = convert_chan_err!(self, e, short_to_chan_info, chan, chan_id);
3572                                 if drop { retain_channel = false; }
3573                                 Err(res)
3574                         }
3575                 };
3576                 let ret_err = match res {
3577                         Ok(Some((update_fee, commitment_signed, monitor_update))) => {
3578                                 match self.chain_monitor.update_channel(chan.get_funding_txo().unwrap(), monitor_update) {
3579                                         ChannelMonitorUpdateStatus::Completed => {
3580                                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
3581                                                         node_id: chan.get_counterparty_node_id(),
3582                                                         updates: msgs::CommitmentUpdate {
3583                                                                 update_add_htlcs: Vec::new(),
3584                                                                 update_fulfill_htlcs: Vec::new(),
3585                                                                 update_fail_htlcs: Vec::new(),
3586                                                                 update_fail_malformed_htlcs: Vec::new(),
3587                                                                 update_fee: Some(update_fee),
3588                                                                 commitment_signed,
3589                                                         },
3590                                                 });
3591                                                 Ok(())
3592                                         },
3593                                         e => {
3594                                                 let (res, drop) = handle_monitor_update_res!(self, e, short_to_chan_info, chan, RAACommitmentOrder::CommitmentFirst, chan_id, COMMITMENT_UPDATE_ONLY);
3595                                                 if drop { retain_channel = false; }
3596                                                 res
3597                                         }
3598                                 }
3599                         },
3600                         Ok(None) => Ok(()),
3601                         Err(e) => Err(e),
3602                 };
3603                 (retain_channel, NotifyOption::DoPersist, ret_err)
3604         }
3605
3606         #[cfg(fuzzing)]
3607         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
3608         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
3609         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
3610         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
3611         pub fn maybe_update_chan_fees(&self) {
3612                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
3613                         let mut should_persist = NotifyOption::SkipPersist;
3614
3615                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
3616
3617                         let mut handle_errors = Vec::new();
3618                         {
3619                                 let mut channel_state_lock = self.channel_state.lock().unwrap();
3620                                 let channel_state = &mut *channel_state_lock;
3621                                 let pending_msg_events = &mut channel_state.pending_msg_events;
3622                                 let short_to_chan_info = &mut channel_state.short_to_chan_info;
3623                                 channel_state.by_id.retain(|chan_id, chan| {
3624                                         let (retain_channel, chan_needs_persist, err) = self.update_channel_fee(short_to_chan_info, pending_msg_events, chan_id, chan, new_feerate);
3625                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
3626                                         if err.is_err() {
3627                                                 handle_errors.push(err);
3628                                         }
3629                                         retain_channel
3630                                 });
3631                         }
3632
3633                         should_persist
3634                 });
3635         }
3636
3637         fn remove_stale_resolved_payments(&self) {
3638                 // If an outbound payment was completed, and no pending HTLCs remain, we should remove it
3639                 // from the map. However, if we did that immediately when the last payment HTLC is claimed,
3640                 // this could race the user making a duplicate send_payment call and our idempotency
3641                 // guarantees would be violated. Instead, we wait a few timer ticks to do the actual
3642                 // removal. This should be more than sufficient to ensure the idempotency of any
3643                 // `send_payment` calls that were made at the same time the `PaymentSent` event was being
3644                 // processed.
3645                 let mut pending_outbound_payments = self.pending_outbound_payments.lock().unwrap();
3646                 let pending_events = self.pending_events.lock().unwrap();
3647                 pending_outbound_payments.retain(|payment_id, payment| {
3648                         if let PendingOutboundPayment::Fulfilled { session_privs, timer_ticks_without_htlcs, .. } = payment {
3649                                 let mut no_remaining_entries = session_privs.is_empty();
3650                                 if no_remaining_entries {
3651                                         for ev in pending_events.iter() {
3652                                                 match ev {
3653                                                         events::Event::PaymentSent { payment_id: Some(ev_payment_id), .. } |
3654                                                         events::Event::PaymentPathSuccessful { payment_id: ev_payment_id, .. } |
3655                                                         events::Event::PaymentPathFailed { payment_id: Some(ev_payment_id), .. } => {
3656                                                                 if payment_id == ev_payment_id {
3657                                                                         no_remaining_entries = false;
3658                                                                         break;
3659                                                                 }
3660                                                         },
3661                                                         _ => {},
3662                                                 }
3663                                         }
3664                                 }
3665                                 if no_remaining_entries {
3666                                         *timer_ticks_without_htlcs += 1;
3667                                         *timer_ticks_without_htlcs <= IDEMPOTENCY_TIMEOUT_TICKS
3668                                 } else {
3669                                         *timer_ticks_without_htlcs = 0;
3670                                         true
3671                                 }
3672                         } else { true }
3673                 });
3674         }
3675
3676         /// Performs actions which should happen on startup and roughly once per minute thereafter.
3677         ///
3678         /// This currently includes:
3679         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
3680         ///  * Broadcasting `ChannelUpdate` messages if we've been disconnected from our peer for more
3681         ///    than a minute, informing the network that they should no longer attempt to route over
3682         ///    the channel.
3683         ///  * Expiring a channel's previous `ChannelConfig` if necessary to only allow forwarding HTLCs
3684         ///    with the current `ChannelConfig`.
3685         ///
3686         /// Note that this may cause reentrancy through `chain::Watch::update_channel` calls or feerate
3687         /// estimate fetches.
3688         pub fn timer_tick_occurred(&self) {
3689                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
3690                         let mut should_persist = NotifyOption::SkipPersist;
3691                         if self.process_background_events() { should_persist = NotifyOption::DoPersist; }
3692
3693                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
3694
3695                         let mut handle_errors = Vec::new();
3696                         let mut timed_out_mpp_htlcs = Vec::new();
3697                         {
3698                                 let mut channel_state_lock = self.channel_state.lock().unwrap();
3699                                 let channel_state = &mut *channel_state_lock;
3700                                 let pending_msg_events = &mut channel_state.pending_msg_events;
3701                                 let short_to_chan_info = &mut channel_state.short_to_chan_info;
3702                                 channel_state.by_id.retain(|chan_id, chan| {
3703                                         let counterparty_node_id = chan.get_counterparty_node_id();
3704                                         let (retain_channel, chan_needs_persist, err) = self.update_channel_fee(short_to_chan_info, pending_msg_events, chan_id, chan, new_feerate);
3705                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
3706                                         if err.is_err() {
3707                                                 handle_errors.push((err, counterparty_node_id));
3708                                         }
3709                                         if !retain_channel { return false; }
3710
3711                                         if let Err(e) = chan.timer_check_closing_negotiation_progress() {
3712                                                 let (needs_close, err) = convert_chan_err!(self, e, short_to_chan_info, chan, chan_id);
3713                                                 handle_errors.push((Err(err), chan.get_counterparty_node_id()));
3714                                                 if needs_close { return false; }
3715                                         }
3716
3717                                         match chan.channel_update_status() {
3718                                                 ChannelUpdateStatus::Enabled if !chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged),
3719                                                 ChannelUpdateStatus::Disabled if chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged),
3720                                                 ChannelUpdateStatus::DisabledStaged if chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
3721                                                 ChannelUpdateStatus::EnabledStaged if !chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
3722                                                 ChannelUpdateStatus::DisabledStaged if !chan.is_live() => {
3723                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
3724                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
3725                                                                         msg: update
3726                                                                 });
3727                                                         }
3728                                                         should_persist = NotifyOption::DoPersist;
3729                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
3730                                                 },
3731                                                 ChannelUpdateStatus::EnabledStaged if chan.is_live() => {
3732                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
3733                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
3734                                                                         msg: update
3735                                                                 });
3736                                                         }
3737                                                         should_persist = NotifyOption::DoPersist;
3738                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
3739                                                 },
3740                                                 _ => {},
3741                                         }
3742
3743                                         chan.maybe_expire_prev_config();
3744
3745                                         true
3746                                 });
3747
3748                                 channel_state.claimable_htlcs.retain(|payment_hash, (_, htlcs)| {
3749                                         if htlcs.is_empty() {
3750                                                 // This should be unreachable
3751                                                 debug_assert!(false);
3752                                                 return false;
3753                                         }
3754                                         if let OnionPayload::Invoice { .. } = htlcs[0].onion_payload {
3755                                                 // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
3756                                                 // In this case we're not going to handle any timeouts of the parts here.
3757                                                 if htlcs[0].total_msat == htlcs.iter().fold(0, |total, htlc| total + htlc.value) {
3758                                                         return true;
3759                                                 } else if htlcs.into_iter().any(|htlc| {
3760                                                         htlc.timer_ticks += 1;
3761                                                         return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
3762                                                 }) {
3763                                                         timed_out_mpp_htlcs.extend(htlcs.into_iter().map(|htlc| (htlc.prev_hop.clone(), payment_hash.clone())));
3764                                                         return false;
3765                                                 }
3766                                         }
3767                                         true
3768                                 });
3769                         }
3770
3771                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
3772                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
3773                                 self.fail_htlc_backwards_internal(HTLCSource::PreviousHopData(htlc_source.0.clone()), &htlc_source.1, HTLCFailReason::Reason { failure_code: 23, data: Vec::new() }, receiver );
3774                         }
3775
3776                         for (err, counterparty_node_id) in handle_errors.drain(..) {
3777                                 let _ = handle_error!(self, err, counterparty_node_id);
3778                         }
3779
3780                         self.remove_stale_resolved_payments();
3781
3782                         should_persist
3783                 });
3784         }
3785
3786         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
3787         /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
3788         /// along the path (including in our own channel on which we received it).
3789         ///
3790         /// Note that in some cases around unclean shutdown, it is possible the payment may have
3791         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
3792         /// second copy of) the [`events::Event::PaymentReceived`] event. Alternatively, the payment
3793         /// may have already been failed automatically by LDK if it was nearing its expiration time.
3794         ///
3795         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
3796         /// [`ChannelManager::claim_funds`]), you should still monitor for
3797         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
3798         /// startup during which time claims that were in-progress at shutdown may be replayed.
3799         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
3800                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
3801
3802                 let removed_source = {
3803                         let mut channel_state = self.channel_state.lock().unwrap();
3804                         channel_state.claimable_htlcs.remove(payment_hash)
3805                 };
3806                 if let Some((_, mut sources)) = removed_source {
3807                         for htlc in sources.drain(..) {
3808                                 let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
3809                                 htlc_msat_height_data.extend_from_slice(&byte_utils::be32_to_array(
3810                                                 self.best_block.read().unwrap().height()));
3811                                 self.fail_htlc_backwards_internal(
3812                                                 HTLCSource::PreviousHopData(htlc.prev_hop), payment_hash,
3813                                                 HTLCFailReason::Reason { failure_code: 0x4000 | 15, data: htlc_msat_height_data },
3814                                                 HTLCDestination::FailedPayment { payment_hash: *payment_hash });
3815                         }
3816                 }
3817         }
3818
3819         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
3820         /// that we want to return and a channel.
3821         ///
3822         /// This is for failures on the channel on which the HTLC was *received*, not failures
3823         /// forwarding
3824         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<Signer>) -> (u16, Vec<u8>) {
3825                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
3826                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
3827                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
3828                 // an inbound SCID alias before the real SCID.
3829                 let scid_pref = if chan.should_announce() {
3830                         chan.get_short_channel_id().or(chan.latest_inbound_scid_alias())
3831                 } else {
3832                         chan.latest_inbound_scid_alias().or(chan.get_short_channel_id())
3833                 };
3834                 if let Some(scid) = scid_pref {
3835                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
3836                 } else {
3837                         (0x4000|10, Vec::new())
3838                 }
3839         }
3840
3841
3842         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
3843         /// that we want to return and a channel.
3844         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<Signer>) -> (u16, Vec<u8>) {
3845                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
3846                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
3847                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
3848                         if desired_err_code == 0x1000 | 20 {
3849                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
3850                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
3851                                 0u16.write(&mut enc).expect("Writes cannot fail");
3852                         }
3853                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
3854                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
3855                         upd.write(&mut enc).expect("Writes cannot fail");
3856                         (desired_err_code, enc.0)
3857                 } else {
3858                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
3859                         // which means we really shouldn't have gotten a payment to be forwarded over this
3860                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
3861                         // PERM|no_such_channel should be fine.
3862                         (0x4000|10, Vec::new())
3863                 }
3864         }
3865
3866         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
3867         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
3868         // be surfaced to the user.
3869         fn fail_holding_cell_htlcs(
3870                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: [u8; 32],
3871                 counterparty_node_id: &PublicKey
3872         ) {
3873                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
3874                         let (failure_code, onion_failure_data) =
3875                                 match self.channel_state.lock().unwrap().by_id.entry(channel_id) {
3876                                         hash_map::Entry::Occupied(chan_entry) => {
3877                                                 self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan_entry.get())
3878                                         },
3879                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
3880                                 };
3881
3882                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
3883                         self.fail_htlc_backwards_internal(htlc_src, &payment_hash, HTLCFailReason::Reason { failure_code, data: onion_failure_data }, receiver);
3884                 }
3885         }
3886
3887         /// Fails an HTLC backwards to the sender of it to us.
3888         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
3889         fn fail_htlc_backwards_internal(&self, source: HTLCSource, payment_hash: &PaymentHash, onion_error: HTLCFailReason,destination: HTLCDestination) {
3890                 #[cfg(debug_assertions)]
3891                 {
3892                         // Ensure that the `channel_state` lock is not held when calling this function.
3893                         // This ensures that future code doesn't introduce a lock_order requirement for
3894                         // `forward_htlcs` to be locked after the `channel_state` lock, which calling this
3895                         // function with the `channel_state` locked would.
3896                         assert!(self.channel_state.try_lock().is_ok());
3897                 }
3898
3899                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
3900                 //identify whether we sent it or not based on the (I presume) very different runtime
3901                 //between the branches here. We should make this async and move it into the forward HTLCs
3902                 //timer handling.
3903
3904                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
3905                 // from block_connected which may run during initialization prior to the chain_monitor
3906                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
3907                 match source {
3908                         HTLCSource::OutboundRoute { ref path, session_priv, payment_id, ref payment_params, .. } => {
3909                                 let mut session_priv_bytes = [0; 32];
3910                                 session_priv_bytes.copy_from_slice(&session_priv[..]);
3911                                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
3912                                 let mut all_paths_failed = false;
3913                                 let mut full_failure_ev = None;
3914                                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
3915                                         if !payment.get_mut().remove(&session_priv_bytes, Some(&path)) {
3916                                                 log_trace!(self.logger, "Received duplicative fail for HTLC with payment_hash {}", log_bytes!(payment_hash.0));
3917                                                 return;
3918                                         }
3919                                         if payment.get().is_fulfilled() {
3920                                                 log_trace!(self.logger, "Received failure of HTLC with payment_hash {} after payment completion", log_bytes!(payment_hash.0));
3921                                                 return;
3922                                         }
3923                                         if payment.get().remaining_parts() == 0 {
3924                                                 all_paths_failed = true;
3925                                                 if payment.get().abandoned() {
3926                                                         full_failure_ev = Some(events::Event::PaymentFailed {
3927                                                                 payment_id,
3928                                                                 payment_hash: payment.get().payment_hash().expect("PendingOutboundPayments::RetriesExceeded always has a payment hash set"),
3929                                                         });
3930                                                         payment.remove();
3931                                                 }
3932                                         }
3933                                 } else {
3934                                         log_trace!(self.logger, "Received duplicative fail for HTLC with payment_hash {}", log_bytes!(payment_hash.0));
3935                                         return;
3936                                 }
3937                                 let mut retry = if let Some(payment_params_data) = payment_params {
3938                                         let path_last_hop = path.last().expect("Outbound payments must have had a valid path");
3939                                         Some(RouteParameters {
3940                                                 payment_params: payment_params_data.clone(),
3941                                                 final_value_msat: path_last_hop.fee_msat,
3942                                                 final_cltv_expiry_delta: path_last_hop.cltv_expiry_delta,
3943                                         })
3944                                 } else { None };
3945                                 log_trace!(self.logger, "Failing outbound payment HTLC with payment_hash {}", log_bytes!(payment_hash.0));
3946
3947                                 let path_failure = match &onion_error {
3948                                         &HTLCFailReason::LightningError { ref err } => {
3949 #[cfg(test)]
3950                                                 let (network_update, short_channel_id, payment_retryable, onion_error_code, onion_error_data) = onion_utils::process_onion_failure(&self.secp_ctx, &self.logger, &source, err.data.clone());
3951 #[cfg(not(test))]
3952                                                 let (network_update, short_channel_id, payment_retryable, _, _) = onion_utils::process_onion_failure(&self.secp_ctx, &self.logger, &source, err.data.clone());
3953
3954                                                 if self.payment_is_probe(payment_hash, &payment_id) {
3955                                                         if !payment_retryable {
3956                                                                 events::Event::ProbeSuccessful {
3957                                                                         payment_id,
3958                                                                         payment_hash: payment_hash.clone(),
3959                                                                         path: path.clone(),
3960                                                                 }
3961                                                         } else {
3962                                                                 events::Event::ProbeFailed {
3963                                                                         payment_id,
3964                                                                         payment_hash: payment_hash.clone(),
3965                                                                         path: path.clone(),
3966                                                                         short_channel_id,
3967                                                                 }
3968                                                         }
3969                                                 } else {
3970                                                         // TODO: If we decided to blame ourselves (or one of our channels) in
3971                                                         // process_onion_failure we should close that channel as it implies our
3972                                                         // next-hop is needlessly blaming us!
3973                                                         if let Some(scid) = short_channel_id {
3974                                                                 retry.as_mut().map(|r| r.payment_params.previously_failed_channels.push(scid));
3975                                                         }
3976                                                         events::Event::PaymentPathFailed {
3977                                                                 payment_id: Some(payment_id),
3978                                                                 payment_hash: payment_hash.clone(),
3979                                                                 payment_failed_permanently: !payment_retryable,
3980                                                                 network_update,
3981                                                                 all_paths_failed,
3982                                                                 path: path.clone(),
3983                                                                 short_channel_id,
3984                                                                 retry,
3985                                                                 #[cfg(test)]
3986                                                                 error_code: onion_error_code,
3987                                                                 #[cfg(test)]
3988                                                                 error_data: onion_error_data
3989                                                         }
3990                                                 }
3991                                         },
3992                                         &HTLCFailReason::Reason {
3993 #[cfg(test)]
3994                                                         ref failure_code,
3995 #[cfg(test)]
3996                                                         ref data,
3997                                                         .. } => {
3998                                                 // we get a fail_malformed_htlc from the first hop
3999                                                 // TODO: We'd like to generate a NetworkUpdate for temporary
4000                                                 // failures here, but that would be insufficient as find_route
4001                                                 // generally ignores its view of our own channels as we provide them via
4002                                                 // ChannelDetails.
4003                                                 // TODO: For non-temporary failures, we really should be closing the
4004                                                 // channel here as we apparently can't relay through them anyway.
4005                                                 let scid = path.first().unwrap().short_channel_id;
4006                                                 retry.as_mut().map(|r| r.payment_params.previously_failed_channels.push(scid));
4007
4008                                                 if self.payment_is_probe(payment_hash, &payment_id) {
4009                                                         events::Event::ProbeFailed {
4010                                                                 payment_id,
4011                                                                 payment_hash: payment_hash.clone(),
4012                                                                 path: path.clone(),
4013                                                                 short_channel_id: Some(scid),
4014                                                         }
4015                                                 } else {
4016                                                         events::Event::PaymentPathFailed {
4017                                                                 payment_id: Some(payment_id),
4018                                                                 payment_hash: payment_hash.clone(),
4019                                                                 payment_failed_permanently: false,
4020                                                                 network_update: None,
4021                                                                 all_paths_failed,
4022                                                                 path: path.clone(),
4023                                                                 short_channel_id: Some(scid),
4024                                                                 retry,
4025 #[cfg(test)]
4026                                                                 error_code: Some(*failure_code),
4027 #[cfg(test)]
4028                                                                 error_data: Some(data.clone()),
4029                                                         }
4030                                                 }
4031                                         }
4032                                 };
4033                                 let mut pending_events = self.pending_events.lock().unwrap();
4034                                 pending_events.push(path_failure);
4035                                 if let Some(ev) = full_failure_ev { pending_events.push(ev); }
4036                         },
4037                         HTLCSource::PreviousHopData(HTLCPreviousHopData { short_channel_id, htlc_id, incoming_packet_shared_secret, phantom_shared_secret, outpoint }) => {
4038                                 let err_packet = match onion_error {
4039                                         HTLCFailReason::Reason { failure_code, data } => {
4040                                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with code {}", log_bytes!(payment_hash.0), failure_code);
4041                                                 if let Some(phantom_ss) = phantom_shared_secret {
4042                                                         let phantom_packet = onion_utils::build_failure_packet(&phantom_ss, failure_code, &data[..]).encode();
4043                                                         let encrypted_phantom_packet = onion_utils::encrypt_failure_packet(&phantom_ss, &phantom_packet);
4044                                                         onion_utils::encrypt_failure_packet(&incoming_packet_shared_secret, &encrypted_phantom_packet.data[..])
4045                                                 } else {
4046                                                         let packet = onion_utils::build_failure_packet(&incoming_packet_shared_secret, failure_code, &data[..]).encode();
4047                                                         onion_utils::encrypt_failure_packet(&incoming_packet_shared_secret, &packet)
4048                                                 }
4049                                         },
4050                                         HTLCFailReason::LightningError { err } => {
4051                                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards with pre-built LightningError", log_bytes!(payment_hash.0));
4052                                                 onion_utils::encrypt_failure_packet(&incoming_packet_shared_secret, &err.data)
4053                                         }
4054                                 };
4055
4056                                 let mut forward_event = None;
4057                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
4058                                 if forward_htlcs.is_empty() {
4059                                         forward_event = Some(Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS));
4060                                 }
4061                                 match forward_htlcs.entry(short_channel_id) {
4062                                         hash_map::Entry::Occupied(mut entry) => {
4063                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id, err_packet });
4064                                         },
4065                                         hash_map::Entry::Vacant(entry) => {
4066                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id, err_packet }));
4067                                         }
4068                                 }
4069                                 mem::drop(forward_htlcs);
4070                                 let mut pending_events = self.pending_events.lock().unwrap();
4071                                 if let Some(time) = forward_event {
4072                                         pending_events.push(events::Event::PendingHTLCsForwardable {
4073                                                 time_forwardable: time
4074                                         });
4075                                 }
4076                                 pending_events.push(events::Event::HTLCHandlingFailed {
4077                                         prev_channel_id: outpoint.to_channel_id(),
4078                                         failed_next_destination: destination
4079                                 });
4080                         },
4081                 }
4082         }
4083
4084         /// Provides a payment preimage in response to [`Event::PaymentReceived`], generating any
4085         /// [`MessageSendEvent`]s needed to claim the payment.
4086         ///
4087         /// Note that calling this method does *not* guarantee that the payment has been claimed. You
4088         /// *must* wait for an [`Event::PaymentClaimed`] event which upon a successful claim will be
4089         /// provided to your [`EventHandler`] when [`process_pending_events`] is next called.
4090         ///
4091         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
4092         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentReceived`
4093         /// event matches your expectation. If you fail to do so and call this method, you may provide
4094         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
4095         ///
4096         /// [`Event::PaymentReceived`]: crate::util::events::Event::PaymentReceived
4097         /// [`Event::PaymentClaimed`]: crate::util::events::Event::PaymentClaimed
4098         /// [`process_pending_events`]: EventsProvider::process_pending_events
4099         /// [`create_inbound_payment`]: Self::create_inbound_payment
4100         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
4101         /// [`get_and_clear_pending_msg_events`]: MessageSendEventsProvider::get_and_clear_pending_msg_events
4102         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
4103                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4104
4105                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
4106
4107                 let removed_source = self.channel_state.lock().unwrap().claimable_htlcs.remove(&payment_hash);
4108                 if let Some((payment_purpose, mut sources)) = removed_source {
4109                         assert!(!sources.is_empty());
4110
4111                         // If we are claiming an MPP payment, we have to take special care to ensure that each
4112                         // channel exists before claiming all of the payments (inside one lock).
4113                         // Note that channel existance is sufficient as we should always get a monitor update
4114                         // which will take care of the real HTLC claim enforcement.
4115                         //
4116                         // If we find an HTLC which we would need to claim but for which we do not have a
4117                         // channel, we will fail all parts of the MPP payment. While we could wait and see if
4118                         // the sender retries the already-failed path(s), it should be a pretty rare case where
4119                         // we got all the HTLCs and then a channel closed while we were waiting for the user to
4120                         // provide the preimage, so worrying too much about the optimal handling isn't worth
4121                         // it.
4122                         let mut claimable_amt_msat = 0;
4123                         let mut expected_amt_msat = None;
4124                         let mut valid_mpp = true;
4125                         let mut errs = Vec::new();
4126                         let mut claimed_any_htlcs = false;
4127                         let mut channel_state_lock = self.channel_state.lock().unwrap();
4128                         let channel_state = &mut *channel_state_lock;
4129                         for htlc in sources.iter() {
4130                                 if let None = channel_state.short_to_chan_info.get(&htlc.prev_hop.short_channel_id) {
4131                                         valid_mpp = false;
4132                                         break;
4133                                 }
4134                                 if expected_amt_msat.is_some() && expected_amt_msat != Some(htlc.total_msat) {
4135                                         log_error!(self.logger, "Somehow ended up with an MPP payment with different total amounts - this should not be reachable!");
4136                                         debug_assert!(false);
4137                                         valid_mpp = false;
4138                                         break;
4139                                 }
4140                                 expected_amt_msat = Some(htlc.total_msat);
4141                                 if let OnionPayload::Spontaneous(_) = &htlc.onion_payload {
4142                                         // We don't currently support MPP for spontaneous payments, so just check
4143                                         // that there's one payment here and move on.
4144                                         if sources.len() != 1 {
4145                                                 log_error!(self.logger, "Somehow ended up with an MPP spontaneous payment - this should not be reachable!");
4146                                                 debug_assert!(false);
4147                                                 valid_mpp = false;
4148                                                 break;
4149                                         }
4150                                 }
4151
4152                                 claimable_amt_msat += htlc.value;
4153                         }
4154                         if sources.is_empty() || expected_amt_msat.is_none() {
4155                                 log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
4156                                 return;
4157                         }
4158                         if claimable_amt_msat != expected_amt_msat.unwrap() {
4159                                 log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
4160                                         expected_amt_msat.unwrap(), claimable_amt_msat);
4161                                 return;
4162                         }
4163                         if valid_mpp {
4164                                 for htlc in sources.drain(..) {
4165                                         match self.claim_funds_from_hop(&mut channel_state_lock, htlc.prev_hop, payment_preimage) {
4166                                                 ClaimFundsFromHop::MonitorUpdateFail(pk, err, _) => {
4167                                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
4168                                                                 // We got a temporary failure updating monitor, but will claim the
4169                                                                 // HTLC when the monitor updating is restored (or on chain).
4170                                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
4171                                                                 claimed_any_htlcs = true;
4172                                                         } else { errs.push((pk, err)); }
4173                                                 },
4174                                                 ClaimFundsFromHop::PrevHopForceClosed => unreachable!("We already checked for channel existence, we can't fail here!"),
4175                                                 ClaimFundsFromHop::DuplicateClaim => {
4176                                                         // While we should never get here in most cases, if we do, it likely
4177                                                         // indicates that the HTLC was timed out some time ago and is no longer
4178                                                         // available to be claimed. Thus, it does not make sense to set
4179                                                         // `claimed_any_htlcs`.
4180                                                 },
4181                                                 ClaimFundsFromHop::Success(_) => claimed_any_htlcs = true,
4182                                         }
4183                                 }
4184                         }
4185                         mem::drop(channel_state_lock);
4186                         if !valid_mpp {
4187                                 for htlc in sources.drain(..) {
4188                                         let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
4189                                         htlc_msat_height_data.extend_from_slice(&byte_utils::be32_to_array(
4190                                                 self.best_block.read().unwrap().height()));
4191                                         self.fail_htlc_backwards_internal(
4192                                                 HTLCSource::PreviousHopData(htlc.prev_hop), &payment_hash,
4193                                                 HTLCFailReason::Reason { failure_code: 0x4000|15, data: htlc_msat_height_data },
4194                                                 HTLCDestination::FailedPayment { payment_hash } );
4195                                 }
4196                         }
4197
4198                         if claimed_any_htlcs {
4199                                 self.pending_events.lock().unwrap().push(events::Event::PaymentClaimed {
4200                                         payment_hash,
4201                                         purpose: payment_purpose,
4202                                         amount_msat: claimable_amt_msat,
4203                                 });
4204                         }
4205
4206                         // Now we can handle any errors which were generated.
4207                         for (counterparty_node_id, err) in errs.drain(..) {
4208                                 let res: Result<(), _> = Err(err);
4209                                 let _ = handle_error!(self, res, counterparty_node_id);
4210                         }
4211                 }
4212         }
4213
4214         fn claim_funds_from_hop(&self, channel_state_lock: &mut MutexGuard<ChannelHolder<Signer>>, prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage) -> ClaimFundsFromHop {
4215                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
4216                 let channel_state = &mut **channel_state_lock;
4217                 let chan_id = match channel_state.short_to_chan_info.get(&prev_hop.short_channel_id) {
4218                         Some((_cp_id, chan_id)) => chan_id.clone(),
4219                         None => {
4220                                 return ClaimFundsFromHop::PrevHopForceClosed
4221                         }
4222                 };
4223
4224                 if let hash_map::Entry::Occupied(mut chan) = channel_state.by_id.entry(chan_id) {
4225                         match chan.get_mut().get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger) {
4226                                 Ok(msgs_monitor_option) => {
4227                                         if let UpdateFulfillCommitFetch::NewClaim { msgs, htlc_value_msat, monitor_update } = msgs_monitor_option {
4228                                                 match self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
4229                                                         ChannelMonitorUpdateStatus::Completed => {},
4230                                                         e => {
4231                                                                 log_given_level!(self.logger, if e == ChannelMonitorUpdateStatus::PermanentFailure { Level::Error } else { Level::Debug },
4232                                                                         "Failed to update channel monitor with preimage {:?}: {:?}",
4233                                                                         payment_preimage, e);
4234                                                                 return ClaimFundsFromHop::MonitorUpdateFail(
4235                                                                         chan.get().get_counterparty_node_id(),
4236                                                                         handle_monitor_update_res!(self, e, channel_state, chan, RAACommitmentOrder::CommitmentFirst, false, msgs.is_some()).unwrap_err(),
4237                                                                         Some(htlc_value_msat)
4238                                                                 );
4239                                                         }
4240                                                 }
4241                                                 if let Some((msg, commitment_signed)) = msgs {
4242                                                         log_debug!(self.logger, "Claiming funds for HTLC with preimage {} resulted in a commitment_signed for channel {}",
4243                                                                 log_bytes!(payment_preimage.0), log_bytes!(chan.get().channel_id()));
4244                                                         channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
4245                                                                 node_id: chan.get().get_counterparty_node_id(),
4246                                                                 updates: msgs::CommitmentUpdate {
4247                                                                         update_add_htlcs: Vec::new(),
4248                                                                         update_fulfill_htlcs: vec![msg],
4249                                                                         update_fail_htlcs: Vec::new(),
4250                                                                         update_fail_malformed_htlcs: Vec::new(),
4251                                                                         update_fee: None,
4252                                                                         commitment_signed,
4253                                                                 }
4254                                                         });
4255                                                 }
4256                                                 return ClaimFundsFromHop::Success(htlc_value_msat);
4257                                         } else {
4258                                                 return ClaimFundsFromHop::DuplicateClaim;
4259                                         }
4260                                 },
4261                                 Err((e, monitor_update)) => {
4262                                         match self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
4263                                                 ChannelMonitorUpdateStatus::Completed => {},
4264                                                 e => {
4265                                                         log_given_level!(self.logger, if e == ChannelMonitorUpdateStatus::PermanentFailure { Level::Error } else { Level::Info },
4266                                                                 "Failed to update channel monitor with preimage {:?} immediately prior to force-close: {:?}",
4267                                                                 payment_preimage, e);
4268                                                 },
4269                                         }
4270                                         let counterparty_node_id = chan.get().get_counterparty_node_id();
4271                                         let (drop, res) = convert_chan_err!(self, e, channel_state.short_to_chan_info, chan.get_mut(), &chan_id);
4272                                         if drop {
4273                                                 chan.remove_entry();
4274                                         }
4275                                         return ClaimFundsFromHop::MonitorUpdateFail(counterparty_node_id, res, None);
4276                                 },
4277                         }
4278                 } else { unreachable!(); }
4279         }
4280
4281         fn finalize_claims(&self, mut sources: Vec<HTLCSource>) {
4282                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
4283                 let mut pending_events = self.pending_events.lock().unwrap();
4284                 for source in sources.drain(..) {
4285                         if let HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } = source {
4286                                 let mut session_priv_bytes = [0; 32];
4287                                 session_priv_bytes.copy_from_slice(&session_priv[..]);
4288                                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
4289                                         assert!(payment.get().is_fulfilled());
4290                                         if payment.get_mut().remove(&session_priv_bytes, None) {
4291                                                 pending_events.push(
4292                                                         events::Event::PaymentPathSuccessful {
4293                                                                 payment_id,
4294                                                                 payment_hash: payment.get().payment_hash(),
4295                                                                 path,
4296                                                         }
4297                                                 );
4298                                         }
4299                                 }
4300                         }
4301                 }
4302         }
4303
4304         fn claim_funds_internal(&self, mut channel_state_lock: MutexGuard<ChannelHolder<Signer>>, source: HTLCSource, payment_preimage: PaymentPreimage, forwarded_htlc_value_msat: Option<u64>, from_onchain: bool, next_channel_id: [u8; 32]) {
4305                 match source {
4306                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
4307                                 mem::drop(channel_state_lock);
4308                                 let mut session_priv_bytes = [0; 32];
4309                                 session_priv_bytes.copy_from_slice(&session_priv[..]);
4310                                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
4311                                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
4312                                         let mut pending_events = self.pending_events.lock().unwrap();
4313                                         if !payment.get().is_fulfilled() {
4314                                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4315                                                 let fee_paid_msat = payment.get().get_pending_fee_msat();
4316                                                 pending_events.push(
4317                                                         events::Event::PaymentSent {
4318                                                                 payment_id: Some(payment_id),
4319                                                                 payment_preimage,
4320                                                                 payment_hash,
4321                                                                 fee_paid_msat,
4322                                                         }
4323                                                 );
4324                                                 payment.get_mut().mark_fulfilled();
4325                                         }
4326
4327                                         if from_onchain {
4328                                                 // We currently immediately remove HTLCs which were fulfilled on-chain.
4329                                                 // This could potentially lead to removing a pending payment too early,
4330                                                 // with a reorg of one block causing us to re-add the fulfilled payment on
4331                                                 // restart.
4332                                                 // TODO: We should have a second monitor event that informs us of payments
4333                                                 // irrevocably fulfilled.
4334                                                 if payment.get_mut().remove(&session_priv_bytes, Some(&path)) {
4335                                                         let payment_hash = Some(PaymentHash(Sha256::hash(&payment_preimage.0).into_inner()));
4336                                                         pending_events.push(
4337                                                                 events::Event::PaymentPathSuccessful {
4338                                                                         payment_id,
4339                                                                         payment_hash,
4340                                                                         path,
4341                                                                 }
4342                                                         );
4343                                                 }
4344                                         }
4345                                 } else {
4346                                         log_trace!(self.logger, "Received duplicative fulfill for HTLC with payment_preimage {}", log_bytes!(payment_preimage.0));
4347                                 }
4348                         },
4349                         HTLCSource::PreviousHopData(hop_data) => {
4350                                 let prev_outpoint = hop_data.outpoint;
4351                                 let res = self.claim_funds_from_hop(&mut channel_state_lock, hop_data, payment_preimage);
4352                                 let claimed_htlc = if let ClaimFundsFromHop::DuplicateClaim = res { false } else { true };
4353                                 let htlc_claim_value_msat = match res {
4354                                         ClaimFundsFromHop::MonitorUpdateFail(_, _, amt_opt) => amt_opt,
4355                                         ClaimFundsFromHop::Success(amt) => Some(amt),
4356                                         _ => None,
4357                                 };
4358                                 if let ClaimFundsFromHop::PrevHopForceClosed = res {
4359                                         let preimage_update = ChannelMonitorUpdate {
4360                                                 update_id: CLOSED_CHANNEL_UPDATE_ID,
4361                                                 updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
4362                                                         payment_preimage: payment_preimage.clone(),
4363                                                 }],
4364                                         };
4365                                         // We update the ChannelMonitor on the backward link, after
4366                                         // receiving an offchain preimage event from the forward link (the
4367                                         // event being update_fulfill_htlc).
4368                                         let update_res = self.chain_monitor.update_channel(prev_outpoint, preimage_update);
4369                                         if update_res != ChannelMonitorUpdateStatus::Completed {
4370                                                 // TODO: This needs to be handled somehow - if we receive a monitor update
4371                                                 // with a preimage we *must* somehow manage to propagate it to the upstream
4372                                                 // channel, or we must have an ability to receive the same event and try
4373                                                 // again on restart.
4374                                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
4375                                                         payment_preimage, update_res);
4376                                         }
4377                                         // Note that we do *not* set `claimed_htlc` to false here. In fact, this
4378                                         // totally could be a duplicate claim, but we have no way of knowing
4379                                         // without interrogating the `ChannelMonitor` we've provided the above
4380                                         // update to. Instead, we simply document in `PaymentForwarded` that this
4381                                         // can happen.
4382                                 }
4383                                 mem::drop(channel_state_lock);
4384                                 if let ClaimFundsFromHop::MonitorUpdateFail(pk, err, _) = res {
4385                                         let result: Result<(), _> = Err(err);
4386                                         let _ = handle_error!(self, result, pk);
4387                                 }
4388
4389                                 if claimed_htlc {
4390                                         if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
4391                                                 let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
4392                                                         Some(claimed_htlc_value - forwarded_htlc_value)
4393                                                 } else { None };
4394
4395                                                 let mut pending_events = self.pending_events.lock().unwrap();
4396                                                 let prev_channel_id = Some(prev_outpoint.to_channel_id());
4397                                                 let next_channel_id = Some(next_channel_id);
4398
4399                                                 pending_events.push(events::Event::PaymentForwarded {
4400                                                         fee_earned_msat,
4401                                                         claim_from_onchain_tx: from_onchain,
4402                                                         prev_channel_id,
4403                                                         next_channel_id,
4404                                                 });
4405                                         }
4406                                 }
4407                         },
4408                 }
4409         }
4410
4411         /// Gets the node_id held by this ChannelManager
4412         pub fn get_our_node_id(&self) -> PublicKey {
4413                 self.our_network_pubkey.clone()
4414         }
4415
4416         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64) {
4417                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
4418
4419                 let chan_restoration_res;
4420                 let (mut pending_failures, finalized_claims, counterparty_node_id) = {
4421                         let mut channel_lock = self.channel_state.lock().unwrap();
4422                         let channel_state = &mut *channel_lock;
4423                         let mut channel = match channel_state.by_id.entry(funding_txo.to_channel_id()) {
4424                                 hash_map::Entry::Occupied(chan) => chan,
4425                                 hash_map::Entry::Vacant(_) => return,
4426                         };
4427                         if !channel.get().is_awaiting_monitor_update() || channel.get().get_latest_monitor_update_id() != highest_applied_update_id {
4428                                 return;
4429                         }
4430
4431                         let counterparty_node_id = channel.get().get_counterparty_node_id();
4432                         let updates = channel.get_mut().monitor_updating_restored(&self.logger, self.get_our_node_id(), self.genesis_hash, self.best_block.read().unwrap().height());
4433                         let channel_update = if updates.channel_ready.is_some() && channel.get().is_usable() {
4434                                 // We only send a channel_update in the case where we are just now sending a
4435                                 // channel_ready and the channel is in a usable state. We may re-send a
4436                                 // channel_update later through the announcement_signatures process for public
4437                                 // channels, but there's no reason not to just inform our counterparty of our fees
4438                                 // now.
4439                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel.get()) {
4440                                         Some(events::MessageSendEvent::SendChannelUpdate {
4441                                                 node_id: channel.get().get_counterparty_node_id(),
4442                                                 msg,
4443                                         })
4444                                 } else { None }
4445                         } else { None };
4446                         chan_restoration_res = handle_chan_restoration_locked!(self, channel_lock, channel_state, channel, updates.raa, updates.commitment_update, updates.order, None, updates.accepted_htlcs, updates.funding_broadcastable, updates.channel_ready, updates.announcement_sigs);
4447                         if let Some(upd) = channel_update {
4448                                 channel_state.pending_msg_events.push(upd);
4449                         }
4450
4451                         (updates.failed_htlcs, updates.finalized_claimed_htlcs, counterparty_node_id)
4452                 };
4453                 post_handle_chan_restoration!(self, chan_restoration_res);
4454                 self.finalize_claims(finalized_claims);
4455                 for failure in pending_failures.drain(..) {
4456                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id: funding_txo.to_channel_id() };
4457                         self.fail_htlc_backwards_internal(failure.0, &failure.1, failure.2, receiver);
4458                 }
4459         }
4460
4461         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
4462         ///
4463         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
4464         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
4465         /// the channel.
4466         ///
4467         /// The `user_channel_id` parameter will be provided back in
4468         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4469         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4470         ///
4471         /// Note that this method will return an error and reject the channel, if it requires support
4472         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
4473         /// used to accept such channels.
4474         ///
4475         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4476         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4477         pub fn accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u64) -> Result<(), APIError> {
4478                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
4479         }
4480
4481         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
4482         /// it as confirmed immediately.
4483         ///
4484         /// The `user_channel_id` parameter will be provided back in
4485         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4486         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4487         ///
4488         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
4489         /// and (if the counterparty agrees), enables forwarding of payments immediately.
4490         ///
4491         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
4492         /// transaction and blindly assumes that it will eventually confirm.
4493         ///
4494         /// If it does not confirm before we decide to close the channel, or if the funding transaction
4495         /// does not pay to the correct script the correct amount, *you will lose funds*.
4496         ///
4497         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4498         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4499         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u64) -> Result<(), APIError> {
4500                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
4501         }
4502
4503         fn do_accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u64) -> Result<(), APIError> {
4504                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
4505
4506                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4507                 let channel_state = &mut *channel_state_lock;
4508                 match channel_state.by_id.entry(temporary_channel_id.clone()) {
4509                         hash_map::Entry::Occupied(mut channel) => {
4510                                 if !channel.get().inbound_is_awaiting_accept() {
4511                                         return Err(APIError::APIMisuseError { err: "The channel isn't currently awaiting to be accepted.".to_owned() });
4512                                 }
4513                                 if *counterparty_node_id != channel.get().get_counterparty_node_id() {
4514                                         return Err(APIError::APIMisuseError { err: "The passed counterparty_node_id doesn't match the channel's counterparty node_id".to_owned() });
4515                                 }
4516                                 if accept_0conf {
4517                                         channel.get_mut().set_0conf();
4518                                 } else if channel.get().get_channel_type().requires_zero_conf() {
4519                                         let send_msg_err_event = events::MessageSendEvent::HandleError {
4520                                                 node_id: channel.get().get_counterparty_node_id(),
4521                                                 action: msgs::ErrorAction::SendErrorMessage{
4522                                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
4523                                                 }
4524                                         };
4525                                         channel_state.pending_msg_events.push(send_msg_err_event);
4526                                         let _ = remove_channel!(self, channel_state, channel);
4527                                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
4528                                 }
4529
4530                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
4531                                         node_id: channel.get().get_counterparty_node_id(),
4532                                         msg: channel.get_mut().accept_inbound_channel(user_channel_id),
4533                                 });
4534                         }
4535                         hash_map::Entry::Vacant(_) => {
4536                                 return Err(APIError::ChannelUnavailable { err: "Can't accept a channel that doesn't exist".to_owned() });
4537                         }
4538                 }
4539                 Ok(())
4540         }
4541
4542         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
4543                 if msg.chain_hash != self.genesis_hash {
4544                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
4545                 }
4546
4547                 if !self.default_configuration.accept_inbound_channels {
4548                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
4549                 }
4550
4551                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
4552                 let mut channel = match Channel::new_from_req(&self.fee_estimator, &self.keys_manager,
4553                         counterparty_node_id.clone(), &their_features, msg, 0, &self.default_configuration,
4554                         self.best_block.read().unwrap().height(), &self.logger, outbound_scid_alias)
4555                 {
4556                         Err(e) => {
4557                                 self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
4558                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
4559                         },
4560                         Ok(res) => res
4561                 };
4562                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4563                 let channel_state = &mut *channel_state_lock;
4564                 match channel_state.by_id.entry(channel.channel_id()) {
4565                         hash_map::Entry::Occupied(_) => {
4566                                 self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
4567                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision!".to_owned(), msg.temporary_channel_id.clone()))
4568                         },
4569                         hash_map::Entry::Vacant(entry) => {
4570                                 if !self.default_configuration.manually_accept_inbound_channels {
4571                                         if channel.get_channel_type().requires_zero_conf() {
4572                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
4573                                         }
4574                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
4575                                                 node_id: counterparty_node_id.clone(),
4576                                                 msg: channel.accept_inbound_channel(0),
4577                                         });
4578                                 } else {
4579                                         let mut pending_events = self.pending_events.lock().unwrap();
4580                                         pending_events.push(
4581                                                 events::Event::OpenChannelRequest {
4582                                                         temporary_channel_id: msg.temporary_channel_id.clone(),
4583                                                         counterparty_node_id: counterparty_node_id.clone(),
4584                                                         funding_satoshis: msg.funding_satoshis,
4585                                                         push_msat: msg.push_msat,
4586                                                         channel_type: channel.get_channel_type().clone(),
4587                                                 }
4588                                         );
4589                                 }
4590
4591                                 entry.insert(channel);
4592                         }
4593                 }
4594                 Ok(())
4595         }
4596
4597         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
4598                 let (value, output_script, user_id) = {
4599                         let mut channel_lock = self.channel_state.lock().unwrap();
4600                         let channel_state = &mut *channel_lock;
4601                         match channel_state.by_id.entry(msg.temporary_channel_id) {
4602                                 hash_map::Entry::Occupied(mut chan) => {
4603                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4604                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.temporary_channel_id));
4605                                         }
4606                                         try_chan_entry!(self, chan.get_mut().accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &their_features), channel_state, chan);
4607                                         (chan.get().get_value_satoshis(), chan.get().get_funding_redeemscript().to_v0_p2wsh(), chan.get().get_user_id())
4608                                 },
4609                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.temporary_channel_id))
4610                         }
4611                 };
4612                 let mut pending_events = self.pending_events.lock().unwrap();
4613                 pending_events.push(events::Event::FundingGenerationReady {
4614                         temporary_channel_id: msg.temporary_channel_id,
4615                         counterparty_node_id: *counterparty_node_id,
4616                         channel_value_satoshis: value,
4617                         output_script,
4618                         user_channel_id: user_id,
4619                 });
4620                 Ok(())
4621         }
4622
4623         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
4624                 let ((funding_msg, monitor, mut channel_ready), mut chan) = {
4625                         let best_block = *self.best_block.read().unwrap();
4626                         let mut channel_lock = self.channel_state.lock().unwrap();
4627                         let channel_state = &mut *channel_lock;
4628                         match channel_state.by_id.entry(msg.temporary_channel_id.clone()) {
4629                                 hash_map::Entry::Occupied(mut chan) => {
4630                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4631                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.temporary_channel_id));
4632                                         }
4633                                         (try_chan_entry!(self, chan.get_mut().funding_created(msg, best_block, &self.logger), channel_state, chan), chan.remove())
4634                                 },
4635                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.temporary_channel_id))
4636                         }
4637                 };
4638                 // Because we have exclusive ownership of the channel here we can release the channel_state
4639                 // lock before watch_channel
4640                 match self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor) {
4641                         ChannelMonitorUpdateStatus::Completed => {},
4642                         ChannelMonitorUpdateStatus::PermanentFailure => {
4643                                 // Note that we reply with the new channel_id in error messages if we gave up on the
4644                                 // channel, not the temporary_channel_id. This is compatible with ourselves, but the
4645                                 // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
4646                                 // any messages referencing a previously-closed channel anyway.
4647                                 // We do not propagate the monitor update to the user as it would be for a monitor
4648                                 // that we didn't manage to store (and that we don't care about - we don't respond
4649                                 // with the funding_signed so the channel can never go on chain).
4650                                 let (_monitor_update, failed_htlcs) = chan.force_shutdown(false);
4651                                 assert!(failed_htlcs.is_empty());
4652                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("ChannelMonitor storage failure".to_owned(), funding_msg.channel_id));
4653                         },
4654                         ChannelMonitorUpdateStatus::InProgress => {
4655                                 // There's no problem signing a counterparty's funding transaction if our monitor
4656                                 // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
4657                                 // accepted payment from yet. We do, however, need to wait to send our channel_ready
4658                                 // until we have persisted our monitor.
4659                                 chan.monitor_updating_paused(false, false, channel_ready.is_some(), Vec::new(), Vec::new(), Vec::new());
4660                                 channel_ready = None; // Don't send the channel_ready now
4661                         },
4662                 }
4663                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4664                 let channel_state = &mut *channel_state_lock;
4665                 match channel_state.by_id.entry(funding_msg.channel_id) {
4666                         hash_map::Entry::Occupied(_) => {
4667                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
4668                         },
4669                         hash_map::Entry::Vacant(e) => {
4670                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
4671                                 match id_to_peer.entry(chan.channel_id()) {
4672                                         hash_map::Entry::Occupied(_) => {
4673                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
4674                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
4675                                                         funding_msg.channel_id))
4676                                         },
4677                                         hash_map::Entry::Vacant(i_e) => {
4678                                                 i_e.insert(chan.get_counterparty_node_id());
4679                                         }
4680                                 }
4681                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
4682                                         node_id: counterparty_node_id.clone(),
4683                                         msg: funding_msg,
4684                                 });
4685                                 if let Some(msg) = channel_ready {
4686                                         send_channel_ready!(channel_state.short_to_chan_info, channel_state.pending_msg_events, chan, msg);
4687                                 }
4688                                 e.insert(chan);
4689                         }
4690                 }
4691                 Ok(())
4692         }
4693
4694         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
4695                 let funding_tx = {
4696                         let best_block = *self.best_block.read().unwrap();
4697                         let mut channel_lock = self.channel_state.lock().unwrap();
4698                         let channel_state = &mut *channel_lock;
4699                         match channel_state.by_id.entry(msg.channel_id) {
4700                                 hash_map::Entry::Occupied(mut chan) => {
4701                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4702                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4703                                         }
4704                                         let (monitor, funding_tx, channel_ready) = match chan.get_mut().funding_signed(&msg, best_block, &self.logger) {
4705                                                 Ok(update) => update,
4706                                                 Err(e) => try_chan_entry!(self, Err(e), channel_state, chan),
4707                                         };
4708                                         match self.chain_monitor.watch_channel(chan.get().get_funding_txo().unwrap(), monitor) {
4709                                                 ChannelMonitorUpdateStatus::Completed => {},
4710                                                 e => {
4711                                                         let mut res = handle_monitor_update_res!(self, e, channel_state, chan, RAACommitmentOrder::RevokeAndACKFirst, channel_ready.is_some(), OPTIONALLY_RESEND_FUNDING_LOCKED);
4712                                                         if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
4713                                                                 // We weren't able to watch the channel to begin with, so no updates should be made on
4714                                                                 // it. Previously, full_stack_target found an (unreachable) panic when the
4715                                                                 // monitor update contained within `shutdown_finish` was applied.
4716                                                                 if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
4717                                                                         shutdown_finish.0.take();
4718                                                                 }
4719                                                         }
4720                                                         return res
4721                                                 },
4722                                         }
4723                                         if let Some(msg) = channel_ready {
4724                                                 send_channel_ready!(channel_state.short_to_chan_info, channel_state.pending_msg_events, chan.get(), msg);
4725                                         }
4726                                         funding_tx
4727                                 },
4728                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4729                         }
4730                 };
4731                 log_info!(self.logger, "Broadcasting funding transaction with txid {}", funding_tx.txid());
4732                 self.tx_broadcaster.broadcast_transaction(&funding_tx);
4733                 Ok(())
4734         }
4735
4736         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
4737                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4738                 let channel_state = &mut *channel_state_lock;
4739                 match channel_state.by_id.entry(msg.channel_id) {
4740                         hash_map::Entry::Occupied(mut chan) => {
4741                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4742                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4743                                 }
4744                                 let announcement_sigs_opt = try_chan_entry!(self, chan.get_mut().channel_ready(&msg, self.get_our_node_id(),
4745                                         self.genesis_hash.clone(), &self.best_block.read().unwrap(), &self.logger), channel_state, chan);
4746                                 if let Some(announcement_sigs) = announcement_sigs_opt {
4747                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(chan.get().channel_id()));
4748                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
4749                                                 node_id: counterparty_node_id.clone(),
4750                                                 msg: announcement_sigs,
4751                                         });
4752                                 } else if chan.get().is_usable() {
4753                                         // If we're sending an announcement_signatures, we'll send the (public)
4754                                         // channel_update after sending a channel_announcement when we receive our
4755                                         // counterparty's announcement_signatures. Thus, we only bother to send a
4756                                         // channel_update here if the channel is not public, i.e. we're not sending an
4757                                         // announcement_signatures.
4758                                         log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", log_bytes!(chan.get().channel_id()));
4759                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
4760                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
4761                                                         node_id: counterparty_node_id.clone(),
4762                                                         msg,
4763                                                 });
4764                                         }
4765                                 }
4766                                 Ok(())
4767                         },
4768                         hash_map::Entry::Vacant(_) => Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4769                 }
4770         }
4771
4772         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, their_features: &InitFeatures, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
4773                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
4774                 let result: Result<(), _> = loop {
4775                         let mut channel_state_lock = self.channel_state.lock().unwrap();
4776                         let channel_state = &mut *channel_state_lock;
4777
4778                         match channel_state.by_id.entry(msg.channel_id.clone()) {
4779                                 hash_map::Entry::Occupied(mut chan_entry) => {
4780                                         if chan_entry.get().get_counterparty_node_id() != *counterparty_node_id {
4781                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4782                                         }
4783
4784                                         if !chan_entry.get().received_shutdown() {
4785                                                 log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
4786                                                         log_bytes!(msg.channel_id),
4787                                                         if chan_entry.get().sent_shutdown() { " after we initiated shutdown" } else { "" });
4788                                         }
4789
4790                                         let (shutdown, monitor_update, htlcs) = try_chan_entry!(self, chan_entry.get_mut().shutdown(&self.keys_manager, &their_features, &msg), channel_state, chan_entry);
4791                                         dropped_htlcs = htlcs;
4792
4793                                         // Update the monitor with the shutdown script if necessary.
4794                                         if let Some(monitor_update) = monitor_update {
4795                                                 let update_res = self.chain_monitor.update_channel(chan_entry.get().get_funding_txo().unwrap(), monitor_update);
4796                                                 let (result, is_permanent) =
4797                                                         handle_monitor_update_res!(self, update_res, channel_state.short_to_chan_info, chan_entry.get_mut(), RAACommitmentOrder::CommitmentFirst, chan_entry.key(), NO_UPDATE);
4798                                                 if is_permanent {
4799                                                         remove_channel!(self, channel_state, chan_entry);
4800                                                         break result;
4801                                                 }
4802                                         }
4803
4804                                         if let Some(msg) = shutdown {
4805                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
4806                                                         node_id: *counterparty_node_id,
4807                                                         msg,
4808                                                 });
4809                                         }
4810
4811                                         break Ok(());
4812                                 },
4813                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4814                         }
4815                 };
4816                 for htlc_source in dropped_htlcs.drain(..) {
4817                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
4818                         self.fail_htlc_backwards_internal(htlc_source.0, &htlc_source.1, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
4819                 }
4820
4821                 let _ = handle_error!(self, result, *counterparty_node_id);
4822                 Ok(())
4823         }
4824
4825         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
4826                 let (tx, chan_option) = {
4827                         let mut channel_state_lock = self.channel_state.lock().unwrap();
4828                         let channel_state = &mut *channel_state_lock;
4829                         match channel_state.by_id.entry(msg.channel_id.clone()) {
4830                                 hash_map::Entry::Occupied(mut chan_entry) => {
4831                                         if chan_entry.get().get_counterparty_node_id() != *counterparty_node_id {
4832                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4833                                         }
4834                                         let (closing_signed, tx) = try_chan_entry!(self, chan_entry.get_mut().closing_signed(&self.fee_estimator, &msg), channel_state, chan_entry);
4835                                         if let Some(msg) = closing_signed {
4836                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
4837                                                         node_id: counterparty_node_id.clone(),
4838                                                         msg,
4839                                                 });
4840                                         }
4841                                         if tx.is_some() {
4842                                                 // We're done with this channel, we've got a signed closing transaction and
4843                                                 // will send the closing_signed back to the remote peer upon return. This
4844                                                 // also implies there are no pending HTLCs left on the channel, so we can
4845                                                 // fully delete it from tracking (the channel monitor is still around to
4846                                                 // watch for old state broadcasts)!
4847                                                 (tx, Some(remove_channel!(self, channel_state, chan_entry)))
4848                                         } else { (tx, None) }
4849                                 },
4850                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4851                         }
4852                 };
4853                 if let Some(broadcast_tx) = tx {
4854                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
4855                         self.tx_broadcaster.broadcast_transaction(&broadcast_tx);
4856                 }
4857                 if let Some(chan) = chan_option {
4858                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4859                                 let mut channel_state = self.channel_state.lock().unwrap();
4860                                 channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4861                                         msg: update
4862                                 });
4863                         }
4864                         self.issue_channel_close_events(&chan, ClosureReason::CooperativeClosure);
4865                 }
4866                 Ok(())
4867         }
4868
4869         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
4870                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
4871                 //determine the state of the payment based on our response/if we forward anything/the time
4872                 //we take to respond. We should take care to avoid allowing such an attack.
4873                 //
4874                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
4875                 //us repeatedly garbled in different ways, and compare our error messages, which are
4876                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
4877                 //but we should prevent it anyway.
4878
4879                 let pending_forward_info = self.decode_update_add_htlc_onion(msg);
4880                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4881                 let channel_state = &mut *channel_state_lock;
4882
4883                 match channel_state.by_id.entry(msg.channel_id) {
4884                         hash_map::Entry::Occupied(mut chan) => {
4885                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4886                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4887                                 }
4888
4889                                 let create_pending_htlc_status = |chan: &Channel<Signer>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
4890                                         // If the update_add is completely bogus, the call will Err and we will close,
4891                                         // but if we've sent a shutdown and they haven't acknowledged it yet, we just
4892                                         // want to reject the new HTLC and fail it backwards instead of forwarding.
4893                                         match pending_forward_info {
4894                                                 PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
4895                                                         let reason = if (error_code & 0x1000) != 0 {
4896                                                                 let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
4897                                                                 onion_utils::build_first_hop_failure_packet(incoming_shared_secret, real_code, &error_data)
4898                                                         } else {
4899                                                                 onion_utils::build_first_hop_failure_packet(incoming_shared_secret, error_code, &[])
4900                                                         };
4901                                                         let msg = msgs::UpdateFailHTLC {
4902                                                                 channel_id: msg.channel_id,
4903                                                                 htlc_id: msg.htlc_id,
4904                                                                 reason
4905                                                         };
4906                                                         PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
4907                                                 },
4908                                                 _ => pending_forward_info
4909                                         }
4910                                 };
4911                                 try_chan_entry!(self, chan.get_mut().update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.logger), channel_state, chan);
4912                         },
4913                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4914                 }
4915                 Ok(())
4916         }
4917
4918         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
4919                 let mut channel_lock = self.channel_state.lock().unwrap();
4920                 let (htlc_source, forwarded_htlc_value) = {
4921                         let channel_state = &mut *channel_lock;
4922                         match channel_state.by_id.entry(msg.channel_id) {
4923                                 hash_map::Entry::Occupied(mut chan) => {
4924                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4925                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4926                                         }
4927                                         try_chan_entry!(self, chan.get_mut().update_fulfill_htlc(&msg), channel_state, chan)
4928                                 },
4929                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4930                         }
4931                 };
4932                 self.claim_funds_internal(channel_lock, htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, msg.channel_id);
4933                 Ok(())
4934         }
4935
4936         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
4937                 let mut channel_lock = self.channel_state.lock().unwrap();
4938                 let channel_state = &mut *channel_lock;
4939                 match channel_state.by_id.entry(msg.channel_id) {
4940                         hash_map::Entry::Occupied(mut chan) => {
4941                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4942                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4943                                 }
4944                                 try_chan_entry!(self, chan.get_mut().update_fail_htlc(&msg, HTLCFailReason::LightningError { err: msg.reason.clone() }), channel_state, chan);
4945                         },
4946                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4947                 }
4948                 Ok(())
4949         }
4950
4951         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
4952                 let mut channel_lock = self.channel_state.lock().unwrap();
4953                 let channel_state = &mut *channel_lock;
4954                 match channel_state.by_id.entry(msg.channel_id) {
4955                         hash_map::Entry::Occupied(mut chan) => {
4956                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4957                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4958                                 }
4959                                 if (msg.failure_code & 0x8000) == 0 {
4960                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
4961                                         try_chan_entry!(self, Err(chan_err), channel_state, chan);
4962                                 }
4963                                 try_chan_entry!(self, chan.get_mut().update_fail_malformed_htlc(&msg, HTLCFailReason::Reason { failure_code: msg.failure_code, data: Vec::new() }), channel_state, chan);
4964                                 Ok(())
4965                         },
4966                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4967                 }
4968         }
4969
4970         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
4971                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4972                 let channel_state = &mut *channel_state_lock;
4973                 match channel_state.by_id.entry(msg.channel_id) {
4974                         hash_map::Entry::Occupied(mut chan) => {
4975                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4976                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4977                                 }
4978                                 let (revoke_and_ack, commitment_signed, monitor_update) =
4979                                         match chan.get_mut().commitment_signed(&msg, &self.logger) {
4980                                                 Err((None, e)) => try_chan_entry!(self, Err(e), channel_state, chan),
4981                                                 Err((Some(update), e)) => {
4982                                                         assert!(chan.get().is_awaiting_monitor_update());
4983                                                         let _ = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), update);
4984                                                         try_chan_entry!(self, Err(e), channel_state, chan);
4985                                                         unreachable!();
4986                                                 },
4987                                                 Ok(res) => res
4988                                         };
4989                                 let update_res = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update);
4990                                 if let Err(e) = handle_monitor_update_res!(self, update_res, channel_state, chan, RAACommitmentOrder::RevokeAndACKFirst, true, commitment_signed.is_some()) {
4991                                         return Err(e);
4992                                 }
4993
4994                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
4995                                         node_id: counterparty_node_id.clone(),
4996                                         msg: revoke_and_ack,
4997                                 });
4998                                 if let Some(msg) = commitment_signed {
4999                                         channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5000                                                 node_id: counterparty_node_id.clone(),
5001                                                 updates: msgs::CommitmentUpdate {
5002                                                         update_add_htlcs: Vec::new(),
5003                                                         update_fulfill_htlcs: Vec::new(),
5004                                                         update_fail_htlcs: Vec::new(),
5005                                                         update_fail_malformed_htlcs: Vec::new(),
5006                                                         update_fee: None,
5007                                                         commitment_signed: msg,
5008                                                 },
5009                                         });
5010                                 }
5011                                 Ok(())
5012                         },
5013                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5014                 }
5015         }
5016
5017         #[inline]
5018         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, Vec<(PendingHTLCInfo, u64)>)]) {
5019                 for &mut (prev_short_channel_id, prev_funding_outpoint, ref mut pending_forwards) in per_source_pending_forwards {
5020                         let mut forward_event = None;
5021                         if !pending_forwards.is_empty() {
5022                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5023                                 if forward_htlcs.is_empty() {
5024                                         forward_event = Some(Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS))
5025                                 }
5026                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
5027                                         match forward_htlcs.entry(match forward_info.routing {
5028                                                         PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
5029                                                         PendingHTLCRouting::Receive { .. } => 0,
5030                                                         PendingHTLCRouting::ReceiveKeysend { .. } => 0,
5031                                         }) {
5032                                                 hash_map::Entry::Occupied(mut entry) => {
5033                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_funding_outpoint,
5034                                                                                                         prev_htlc_id, forward_info });
5035                                                 },
5036                                                 hash_map::Entry::Vacant(entry) => {
5037                                                         entry.insert(vec!(HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_funding_outpoint,
5038                                                                                                      prev_htlc_id, forward_info }));
5039                                                 }
5040                                         }
5041                                 }
5042                         }
5043                         match forward_event {
5044                                 Some(time) => {
5045                                         let mut pending_events = self.pending_events.lock().unwrap();
5046                                         pending_events.push(events::Event::PendingHTLCsForwardable {
5047                                                 time_forwardable: time
5048                                         });
5049                                 }
5050                                 None => {},
5051                         }
5052                 }
5053         }
5054
5055         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
5056                 let mut htlcs_to_fail = Vec::new();
5057                 let res = loop {
5058                         let mut channel_state_lock = self.channel_state.lock().unwrap();
5059                         let channel_state = &mut *channel_state_lock;
5060                         match channel_state.by_id.entry(msg.channel_id) {
5061                                 hash_map::Entry::Occupied(mut chan) => {
5062                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5063                                                 break Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
5064                                         }
5065                                         let was_paused_for_mon_update = chan.get().is_awaiting_monitor_update();
5066                                         let raa_updates = break_chan_entry!(self,
5067                                                 chan.get_mut().revoke_and_ack(&msg, &self.logger), channel_state, chan);
5068                                         htlcs_to_fail = raa_updates.holding_cell_failed_htlcs;
5069                                         let update_res = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), raa_updates.monitor_update);
5070                                         if was_paused_for_mon_update {
5071                                                 assert!(update_res != ChannelMonitorUpdateStatus::Completed);
5072                                                 assert!(raa_updates.commitment_update.is_none());
5073                                                 assert!(raa_updates.accepted_htlcs.is_empty());
5074                                                 assert!(raa_updates.failed_htlcs.is_empty());
5075                                                 assert!(raa_updates.finalized_claimed_htlcs.is_empty());
5076                                                 break Err(MsgHandleErrInternal::ignore_no_close("Existing pending monitor update prevented responses to RAA".to_owned()));
5077                                         }
5078                                         if update_res != ChannelMonitorUpdateStatus::Completed {
5079                                                 if let Err(e) = handle_monitor_update_res!(self, update_res, channel_state, chan,
5080                                                                 RAACommitmentOrder::CommitmentFirst, false,
5081                                                                 raa_updates.commitment_update.is_some(), false,
5082                                                                 raa_updates.accepted_htlcs, raa_updates.failed_htlcs,
5083                                                                 raa_updates.finalized_claimed_htlcs) {
5084                                                         break Err(e);
5085                                                 } else { unreachable!(); }
5086                                         }
5087                                         if let Some(updates) = raa_updates.commitment_update {
5088                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5089                                                         node_id: counterparty_node_id.clone(),
5090                                                         updates,
5091                                                 });
5092                                         }
5093                                         break Ok((raa_updates.accepted_htlcs, raa_updates.failed_htlcs,
5094                                                         raa_updates.finalized_claimed_htlcs,
5095                                                         chan.get().get_short_channel_id()
5096                                                                 .unwrap_or(chan.get().outbound_scid_alias()),
5097                                                         chan.get().get_funding_txo().unwrap()))
5098                                 },
5099                                 hash_map::Entry::Vacant(_) => break Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5100                         }
5101                 };
5102                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
5103                 match res {
5104                         Ok((pending_forwards, mut pending_failures, finalized_claim_htlcs,
5105                                 short_channel_id, channel_outpoint)) =>
5106                         {
5107                                 for failure in pending_failures.drain(..) {
5108                                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: channel_outpoint.to_channel_id() };
5109                                         self.fail_htlc_backwards_internal(failure.0, &failure.1, failure.2, receiver);
5110                                 }
5111                                 self.forward_htlcs(&mut [(short_channel_id, channel_outpoint, pending_forwards)]);
5112                                 self.finalize_claims(finalized_claim_htlcs);
5113                                 Ok(())
5114                         },
5115                         Err(e) => Err(e)
5116                 }
5117         }
5118
5119         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
5120                 let mut channel_lock = self.channel_state.lock().unwrap();
5121                 let channel_state = &mut *channel_lock;
5122                 match channel_state.by_id.entry(msg.channel_id) {
5123                         hash_map::Entry::Occupied(mut chan) => {
5124                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5125                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
5126                                 }
5127                                 try_chan_entry!(self, chan.get_mut().update_fee(&self.fee_estimator, &msg), channel_state, chan);
5128                         },
5129                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5130                 }
5131                 Ok(())
5132         }
5133
5134         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
5135                 let mut channel_state_lock = self.channel_state.lock().unwrap();
5136                 let channel_state = &mut *channel_state_lock;
5137
5138                 match channel_state.by_id.entry(msg.channel_id) {
5139                         hash_map::Entry::Occupied(mut chan) => {
5140                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5141                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
5142                                 }
5143                                 if !chan.get().is_usable() {
5144                                         return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
5145                                 }
5146
5147                                 channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
5148                                         msg: try_chan_entry!(self, chan.get_mut().announcement_signatures(
5149                                                 self.get_our_node_id(), self.genesis_hash.clone(), self.best_block.read().unwrap().height(), msg), channel_state, chan),
5150                                         // Note that announcement_signatures fails if the channel cannot be announced,
5151                                         // so get_channel_update_for_broadcast will never fail by the time we get here.
5152                                         update_msg: self.get_channel_update_for_broadcast(chan.get()).unwrap(),
5153                                 });
5154                         },
5155                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5156                 }
5157                 Ok(())
5158         }
5159
5160         /// Returns ShouldPersist if anything changed, otherwise either SkipPersist or an Err.
5161         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
5162                 let mut channel_state_lock = self.channel_state.lock().unwrap();
5163                 let channel_state = &mut *channel_state_lock;
5164                 let chan_id = match channel_state.short_to_chan_info.get(&msg.contents.short_channel_id) {
5165                         Some((_cp_id, chan_id)) => chan_id.clone(),
5166                         None => {
5167                                 // It's not a local channel
5168                                 return Ok(NotifyOption::SkipPersist)
5169                         }
5170                 };
5171                 match channel_state.by_id.entry(chan_id) {
5172                         hash_map::Entry::Occupied(mut chan) => {
5173                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5174                                         if chan.get().should_announce() {
5175                                                 // If the announcement is about a channel of ours which is public, some
5176                                                 // other peer may simply be forwarding all its gossip to us. Don't provide
5177                                                 // a scary-looking error message and return Ok instead.
5178                                                 return Ok(NotifyOption::SkipPersist);
5179                                         }
5180                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a channel_update for a channel from the wrong node - it shouldn't know about our private channels!".to_owned(), chan_id));
5181                                 }
5182                                 let were_node_one = self.get_our_node_id().serialize()[..] < chan.get().get_counterparty_node_id().serialize()[..];
5183                                 let msg_from_node_one = msg.contents.flags & 1 == 0;
5184                                 if were_node_one == msg_from_node_one {
5185                                         return Ok(NotifyOption::SkipPersist);
5186                                 } else {
5187                                         log_debug!(self.logger, "Received channel_update for channel {}.", log_bytes!(chan_id));
5188                                         try_chan_entry!(self, chan.get_mut().channel_update(&msg), channel_state, chan);
5189                                 }
5190                         },
5191                         hash_map::Entry::Vacant(_) => unreachable!()
5192                 }
5193                 Ok(NotifyOption::DoPersist)
5194         }
5195
5196         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
5197                 let chan_restoration_res;
5198                 let (htlcs_failed_forward, need_lnd_workaround) = {
5199                         let mut channel_state_lock = self.channel_state.lock().unwrap();
5200                         let channel_state = &mut *channel_state_lock;
5201
5202                         match channel_state.by_id.entry(msg.channel_id) {
5203                                 hash_map::Entry::Occupied(mut chan) => {
5204                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5205                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
5206                                         }
5207                                         // Currently, we expect all holding cell update_adds to be dropped on peer
5208                                         // disconnect, so Channel's reestablish will never hand us any holding cell
5209                                         // freed HTLCs to fail backwards. If in the future we no longer drop pending
5210                                         // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
5211                                         let responses = try_chan_entry!(self, chan.get_mut().channel_reestablish(
5212                                                 msg, &self.logger, self.our_network_pubkey.clone(), self.genesis_hash,
5213                                                 &*self.best_block.read().unwrap()), channel_state, chan);
5214                                         let mut channel_update = None;
5215                                         if let Some(msg) = responses.shutdown_msg {
5216                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5217                                                         node_id: counterparty_node_id.clone(),
5218                                                         msg,
5219                                                 });
5220                                         } else if chan.get().is_usable() {
5221                                                 // If the channel is in a usable state (ie the channel is not being shut
5222                                                 // down), send a unicast channel_update to our counterparty to make sure
5223                                                 // they have the latest channel parameters.
5224                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
5225                                                         channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
5226                                                                 node_id: chan.get().get_counterparty_node_id(),
5227                                                                 msg,
5228                                                         });
5229                                                 }
5230                                         }
5231                                         let need_lnd_workaround = chan.get_mut().workaround_lnd_bug_4006.take();
5232                                         chan_restoration_res = handle_chan_restoration_locked!(
5233                                                 self, channel_state_lock, channel_state, chan, responses.raa, responses.commitment_update, responses.order,
5234                                                 responses.mon_update, Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
5235                                         if let Some(upd) = channel_update {
5236                                                 channel_state.pending_msg_events.push(upd);
5237                                         }
5238                                         (responses.holding_cell_failed_htlcs, need_lnd_workaround)
5239                                 },
5240                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5241                         }
5242                 };
5243                 post_handle_chan_restoration!(self, chan_restoration_res);
5244                 self.fail_holding_cell_htlcs(htlcs_failed_forward, msg.channel_id, counterparty_node_id);
5245
5246                 if let Some(channel_ready_msg) = need_lnd_workaround {
5247                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
5248                 }
5249                 Ok(())
5250         }
5251
5252         /// Process pending events from the `chain::Watch`, returning whether any events were processed.
5253         fn process_pending_monitor_events(&self) -> bool {
5254                 let mut failed_channels = Vec::new();
5255                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
5256                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
5257                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
5258                         for monitor_event in monitor_events.drain(..) {
5259                                 match monitor_event {
5260                                         MonitorEvent::HTLCEvent(htlc_update) => {
5261                                                 if let Some(preimage) = htlc_update.payment_preimage {
5262                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", log_bytes!(preimage.0));
5263                                                         self.claim_funds_internal(self.channel_state.lock().unwrap(), htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, funding_outpoint.to_channel_id());
5264                                                 } else {
5265                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", log_bytes!(htlc_update.payment_hash.0));
5266                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
5267                                                         self.fail_htlc_backwards_internal(htlc_update.source, &htlc_update.payment_hash, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
5268                                                 }
5269                                         },
5270                                         MonitorEvent::CommitmentTxConfirmed(funding_outpoint) |
5271                                         MonitorEvent::UpdateFailed(funding_outpoint) => {
5272                                                 let mut channel_lock = self.channel_state.lock().unwrap();
5273                                                 let channel_state = &mut *channel_lock;
5274                                                 let by_id = &mut channel_state.by_id;
5275                                                 let pending_msg_events = &mut channel_state.pending_msg_events;
5276                                                 if let hash_map::Entry::Occupied(chan_entry) = by_id.entry(funding_outpoint.to_channel_id()) {
5277                                                         let mut chan = remove_channel!(self, channel_state, chan_entry);
5278                                                         failed_channels.push(chan.force_shutdown(false));
5279                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5280                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5281                                                                         msg: update
5282                                                                 });
5283                                                         }
5284                                                         let reason = if let MonitorEvent::UpdateFailed(_) = monitor_event {
5285                                                                 ClosureReason::ProcessingError { err: "Failed to persist ChannelMonitor update during chain sync".to_string() }
5286                                                         } else {
5287                                                                 ClosureReason::CommitmentTxConfirmed
5288                                                         };
5289                                                         self.issue_channel_close_events(&chan, reason);
5290                                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
5291                                                                 node_id: chan.get_counterparty_node_id(),
5292                                                                 action: msgs::ErrorAction::SendErrorMessage {
5293                                                                         msg: msgs::ErrorMessage { channel_id: chan.channel_id(), data: "Channel force-closed".to_owned() }
5294                                                                 },
5295                                                         });
5296                                                 }
5297                                         },
5298                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
5299                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id);
5300                                         },
5301                                 }
5302                         }
5303                 }
5304
5305                 for failure in failed_channels.drain(..) {
5306                         self.finish_force_close_channel(failure);
5307                 }
5308
5309                 has_pending_monitor_events
5310         }
5311
5312         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
5313         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
5314         /// update events as a separate process method here.
5315         #[cfg(fuzzing)]
5316         pub fn process_monitor_events(&self) {
5317                 self.process_pending_monitor_events();
5318         }
5319
5320         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
5321         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
5322         /// update was applied.
5323         ///
5324         /// This should only apply to HTLCs which were added to the holding cell because we were
5325         /// waiting on a monitor update to finish. In that case, we don't want to free the holding cell
5326         /// directly in `channel_monitor_updated` as it may introduce deadlocks calling back into user
5327         /// code to inform them of a channel monitor update.
5328         fn check_free_holding_cells(&self) -> bool {
5329                 let mut has_monitor_update = false;
5330                 let mut failed_htlcs = Vec::new();
5331                 let mut handle_errors = Vec::new();
5332                 {
5333                         let mut channel_state_lock = self.channel_state.lock().unwrap();
5334                         let channel_state = &mut *channel_state_lock;
5335                         let by_id = &mut channel_state.by_id;
5336                         let short_to_chan_info = &mut channel_state.short_to_chan_info;
5337                         let pending_msg_events = &mut channel_state.pending_msg_events;
5338
5339                         by_id.retain(|channel_id, chan| {
5340                                 match chan.maybe_free_holding_cell_htlcs(&self.logger) {
5341                                         Ok((commitment_opt, holding_cell_failed_htlcs)) => {
5342                                                 if !holding_cell_failed_htlcs.is_empty() {
5343                                                         failed_htlcs.push((
5344                                                                 holding_cell_failed_htlcs,
5345                                                                 *channel_id,
5346                                                                 chan.get_counterparty_node_id()
5347                                                         ));
5348                                                 }
5349                                                 if let Some((commitment_update, monitor_update)) = commitment_opt {
5350                                                         match self.chain_monitor.update_channel(chan.get_funding_txo().unwrap(), monitor_update) {
5351                                                                 ChannelMonitorUpdateStatus::Completed => {
5352                                                                         pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5353                                                                                 node_id: chan.get_counterparty_node_id(),
5354                                                                                 updates: commitment_update,
5355                                                                         });
5356                                                                 },
5357                                                                 e => {
5358                                                                         has_monitor_update = true;
5359                                                                         let (res, close_channel) = handle_monitor_update_res!(self, e, short_to_chan_info, chan, RAACommitmentOrder::CommitmentFirst, channel_id, COMMITMENT_UPDATE_ONLY);
5360                                                                         handle_errors.push((chan.get_counterparty_node_id(), res));
5361                                                                         if close_channel { return false; }
5362                                                                 },
5363                                                         }
5364                                                 }
5365                                                 true
5366                                         },
5367                                         Err(e) => {
5368                                                 let (close_channel, res) = convert_chan_err!(self, e, short_to_chan_info, chan, channel_id);
5369                                                 handle_errors.push((chan.get_counterparty_node_id(), Err(res)));
5370                                                 // ChannelClosed event is generated by handle_error for us
5371                                                 !close_channel
5372                                         }
5373                                 }
5374                         });
5375                 }
5376
5377                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
5378                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
5379                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
5380                 }
5381
5382                 for (counterparty_node_id, err) in handle_errors.drain(..) {
5383                         let _ = handle_error!(self, err, counterparty_node_id);
5384                 }
5385
5386                 has_update
5387         }
5388
5389         /// Check whether any channels have finished removing all pending updates after a shutdown
5390         /// exchange and can now send a closing_signed.
5391         /// Returns whether any closing_signed messages were generated.
5392         fn maybe_generate_initial_closing_signed(&self) -> bool {
5393                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
5394                 let mut has_update = false;
5395                 {
5396                         let mut channel_state_lock = self.channel_state.lock().unwrap();
5397                         let channel_state = &mut *channel_state_lock;
5398                         let by_id = &mut channel_state.by_id;
5399                         let short_to_chan_info = &mut channel_state.short_to_chan_info;
5400                         let pending_msg_events = &mut channel_state.pending_msg_events;
5401
5402                         by_id.retain(|channel_id, chan| {
5403                                 match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
5404                                         Ok((msg_opt, tx_opt)) => {
5405                                                 if let Some(msg) = msg_opt {
5406                                                         has_update = true;
5407                                                         pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5408                                                                 node_id: chan.get_counterparty_node_id(), msg,
5409                                                         });
5410                                                 }
5411                                                 if let Some(tx) = tx_opt {
5412                                                         // We're done with this channel. We got a closing_signed and sent back
5413                                                         // a closing_signed with a closing transaction to broadcast.
5414                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5415                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5416                                                                         msg: update
5417                                                                 });
5418                                                         }
5419
5420                                                         self.issue_channel_close_events(chan, ClosureReason::CooperativeClosure);
5421
5422                                                         log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
5423                                                         self.tx_broadcaster.broadcast_transaction(&tx);
5424                                                         update_maps_on_chan_removal!(self, short_to_chan_info, chan);
5425                                                         false
5426                                                 } else { true }
5427                                         },
5428                                         Err(e) => {
5429                                                 has_update = true;
5430                                                 let (close_channel, res) = convert_chan_err!(self, e, short_to_chan_info, chan, channel_id);
5431                                                 handle_errors.push((chan.get_counterparty_node_id(), Err(res)));
5432                                                 !close_channel
5433                                         }
5434                                 }
5435                         });
5436                 }
5437
5438                 for (counterparty_node_id, err) in handle_errors.drain(..) {
5439                         let _ = handle_error!(self, err, counterparty_node_id);
5440                 }
5441
5442                 has_update
5443         }
5444
5445         /// Handle a list of channel failures during a block_connected or block_disconnected call,
5446         /// pushing the channel monitor update (if any) to the background events queue and removing the
5447         /// Channel object.
5448         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
5449                 for mut failure in failed_channels.drain(..) {
5450                         // Either a commitment transactions has been confirmed on-chain or
5451                         // Channel::block_disconnected detected that the funding transaction has been
5452                         // reorganized out of the main chain.
5453                         // We cannot broadcast our latest local state via monitor update (as
5454                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
5455                         // so we track the update internally and handle it when the user next calls
5456                         // timer_tick_occurred, guaranteeing we're running normally.
5457                         if let Some((funding_txo, update)) = failure.0.take() {
5458                                 assert_eq!(update.updates.len(), 1);
5459                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
5460                                         assert!(should_broadcast);
5461                                 } else { unreachable!(); }
5462                                 self.pending_background_events.lock().unwrap().push(BackgroundEvent::ClosingMonitorUpdate((funding_txo, update)));
5463                         }
5464                         self.finish_force_close_channel(failure);
5465                 }
5466         }
5467
5468         fn set_payment_hash_secret_map(&self, payment_hash: PaymentHash, payment_preimage: Option<PaymentPreimage>, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, APIError> {
5469                 assert!(invoice_expiry_delta_secs <= 60*60*24*365); // Sadly bitcoin timestamps are u32s, so panic before 2106
5470
5471                 if min_value_msat.is_some() && min_value_msat.unwrap() > MAX_VALUE_MSAT {
5472                         return Err(APIError::APIMisuseError { err: format!("min_value_msat of {} greater than total 21 million bitcoin supply", min_value_msat.unwrap()) });
5473                 }
5474
5475                 let payment_secret = PaymentSecret(self.keys_manager.get_secure_random_bytes());
5476
5477                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5478                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
5479                 match payment_secrets.entry(payment_hash) {
5480                         hash_map::Entry::Vacant(e) => {
5481                                 e.insert(PendingInboundPayment {
5482                                         payment_secret, min_value_msat, payment_preimage,
5483                                         user_payment_id: 0, // For compatibility with version 0.0.103 and earlier
5484                                         // We assume that highest_seen_timestamp is pretty close to the current time -
5485                                         // it's updated when we receive a new block with the maximum time we've seen in
5486                                         // a header. It should never be more than two hours in the future.
5487                                         // Thus, we add two hours here as a buffer to ensure we absolutely
5488                                         // never fail a payment too early.
5489                                         // Note that we assume that received blocks have reasonably up-to-date
5490                                         // timestamps.
5491                                         expiry_time: self.highest_seen_timestamp.load(Ordering::Acquire) as u64 + invoice_expiry_delta_secs as u64 + 7200,
5492                                 });
5493                         },
5494                         hash_map::Entry::Occupied(_) => return Err(APIError::APIMisuseError { err: "Duplicate payment hash".to_owned() }),
5495                 }
5496                 Ok(payment_secret)
5497         }
5498
5499         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
5500         /// to pay us.
5501         ///
5502         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
5503         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
5504         ///
5505         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentReceived`], which
5506         /// will have the [`PaymentReceived::payment_preimage`] field filled in. That should then be
5507         /// passed directly to [`claim_funds`].
5508         ///
5509         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
5510         ///
5511         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
5512         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
5513         ///
5514         /// # Note
5515         ///
5516         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
5517         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
5518         ///
5519         /// Errors if `min_value_msat` is greater than total bitcoin supply.
5520         ///
5521         /// [`claim_funds`]: Self::claim_funds
5522         /// [`PaymentReceived`]: events::Event::PaymentReceived
5523         /// [`PaymentReceived::payment_preimage`]: events::Event::PaymentReceived::payment_preimage
5524         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5525         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<(PaymentHash, PaymentSecret), ()> {
5526                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs, &self.keys_manager, self.highest_seen_timestamp.load(Ordering::Acquire) as u64)
5527         }
5528
5529         /// Legacy version of [`create_inbound_payment`]. Use this method if you wish to share
5530         /// serialized state with LDK node(s) running 0.0.103 and earlier.
5531         ///
5532         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
5533         ///
5534         /// # Note
5535         /// This method is deprecated and will be removed soon.
5536         ///
5537         /// [`create_inbound_payment`]: Self::create_inbound_payment
5538         #[deprecated]
5539         pub fn create_inbound_payment_legacy(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<(PaymentHash, PaymentSecret), APIError> {
5540                 let payment_preimage = PaymentPreimage(self.keys_manager.get_secure_random_bytes());
5541                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5542                 let payment_secret = self.set_payment_hash_secret_map(payment_hash, Some(payment_preimage), min_value_msat, invoice_expiry_delta_secs)?;
5543                 Ok((payment_hash, payment_secret))
5544         }
5545
5546         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
5547         /// stored external to LDK.
5548         ///
5549         /// A [`PaymentReceived`] event will only be generated if the [`PaymentSecret`] matches a
5550         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
5551         /// the `min_value_msat` provided here, if one is provided.
5552         ///
5553         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
5554         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
5555         /// payments.
5556         ///
5557         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
5558         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
5559         /// before a [`PaymentReceived`] event will be generated, ensuring that we do not provide the
5560         /// sender "proof-of-payment" unless they have paid the required amount.
5561         ///
5562         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
5563         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
5564         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
5565         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
5566         /// invoices when no timeout is set.
5567         ///
5568         /// Note that we use block header time to time-out pending inbound payments (with some margin
5569         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
5570         /// accept a payment and generate a [`PaymentReceived`] event for some time after the expiry.
5571         /// If you need exact expiry semantics, you should enforce them upon receipt of
5572         /// [`PaymentReceived`].
5573         ///
5574         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry`
5575         /// set to at least [`MIN_FINAL_CLTV_EXPIRY`].
5576         ///
5577         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
5578         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
5579         ///
5580         /// # Note
5581         ///
5582         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
5583         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
5584         ///
5585         /// Errors if `min_value_msat` is greater than total bitcoin supply.
5586         ///
5587         /// [`create_inbound_payment`]: Self::create_inbound_payment
5588         /// [`PaymentReceived`]: events::Event::PaymentReceived
5589         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, ()> {
5590                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash, invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64)
5591         }
5592
5593         /// Legacy version of [`create_inbound_payment_for_hash`]. Use this method if you wish to share
5594         /// serialized state with LDK node(s) running 0.0.103 and earlier.
5595         ///
5596         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
5597         ///
5598         /// # Note
5599         /// This method is deprecated and will be removed soon.
5600         ///
5601         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5602         #[deprecated]
5603         pub fn create_inbound_payment_for_hash_legacy(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, APIError> {
5604                 self.set_payment_hash_secret_map(payment_hash, None, min_value_msat, invoice_expiry_delta_secs)
5605         }
5606
5607         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
5608         /// previously returned from [`create_inbound_payment`].
5609         ///
5610         /// [`create_inbound_payment`]: Self::create_inbound_payment
5611         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
5612                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
5613         }
5614
5615         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
5616         /// are used when constructing the phantom invoice's route hints.
5617         ///
5618         /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
5619         pub fn get_phantom_scid(&self) -> u64 {
5620                 let mut channel_state = self.channel_state.lock().unwrap();
5621                 let best_block = self.best_block.read().unwrap();
5622                 loop {
5623                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block.height(), &self.genesis_hash, &self.fake_scid_rand_bytes, &self.keys_manager);
5624                         // Ensure the generated scid doesn't conflict with a real channel.
5625                         match channel_state.short_to_chan_info.entry(scid_candidate) {
5626                                 hash_map::Entry::Occupied(_) => continue,
5627                                 hash_map::Entry::Vacant(_) => return scid_candidate
5628                         }
5629                 }
5630         }
5631
5632         /// Gets route hints for use in receiving [phantom node payments].
5633         ///
5634         /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
5635         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
5636                 PhantomRouteHints {
5637                         channels: self.list_usable_channels(),
5638                         phantom_scid: self.get_phantom_scid(),
5639                         real_node_pubkey: self.get_our_node_id(),
5640                 }
5641         }
5642
5643         #[cfg(any(test, fuzzing, feature = "_test_utils"))]
5644         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
5645                 let events = core::cell::RefCell::new(Vec::new());
5646                 let event_handler = |event: &events::Event| events.borrow_mut().push(event.clone());
5647                 self.process_pending_events(&event_handler);
5648                 events.into_inner()
5649         }
5650
5651         #[cfg(test)]
5652         pub fn has_pending_payments(&self) -> bool {
5653                 !self.pending_outbound_payments.lock().unwrap().is_empty()
5654         }
5655
5656         #[cfg(test)]
5657         pub fn clear_pending_payments(&self) {
5658                 self.pending_outbound_payments.lock().unwrap().clear()
5659         }
5660 }
5661
5662 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> MessageSendEventsProvider for ChannelManager<Signer, M, T, K, F, L>
5663         where M::Target: chain::Watch<Signer>,
5664         T::Target: BroadcasterInterface,
5665         K::Target: KeysInterface<Signer = Signer>,
5666         F::Target: FeeEstimator,
5667                                 L::Target: Logger,
5668 {
5669         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
5670                 let events = RefCell::new(Vec::new());
5671                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
5672                         let mut result = NotifyOption::SkipPersist;
5673
5674                         // TODO: This behavior should be documented. It's unintuitive that we query
5675                         // ChannelMonitors when clearing other events.
5676                         if self.process_pending_monitor_events() {
5677                                 result = NotifyOption::DoPersist;
5678                         }
5679
5680                         if self.check_free_holding_cells() {
5681                                 result = NotifyOption::DoPersist;
5682                         }
5683                         if self.maybe_generate_initial_closing_signed() {
5684                                 result = NotifyOption::DoPersist;
5685                         }
5686
5687                         let mut pending_events = Vec::new();
5688                         let mut channel_state = self.channel_state.lock().unwrap();
5689                         mem::swap(&mut pending_events, &mut channel_state.pending_msg_events);
5690
5691                         if !pending_events.is_empty() {
5692                                 events.replace(pending_events);
5693                         }
5694
5695                         result
5696                 });
5697                 events.into_inner()
5698         }
5699 }
5700
5701 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> EventsProvider for ChannelManager<Signer, M, T, K, F, L>
5702 where
5703         M::Target: chain::Watch<Signer>,
5704         T::Target: BroadcasterInterface,
5705         K::Target: KeysInterface<Signer = Signer>,
5706         F::Target: FeeEstimator,
5707         L::Target: Logger,
5708 {
5709         /// Processes events that must be periodically handled.
5710         ///
5711         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
5712         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
5713         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
5714                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
5715                         let mut result = NotifyOption::SkipPersist;
5716
5717                         // TODO: This behavior should be documented. It's unintuitive that we query
5718                         // ChannelMonitors when clearing other events.
5719                         if self.process_pending_monitor_events() {
5720                                 result = NotifyOption::DoPersist;
5721                         }
5722
5723                         let mut pending_events = mem::replace(&mut *self.pending_events.lock().unwrap(), vec![]);
5724                         if !pending_events.is_empty() {
5725                                 result = NotifyOption::DoPersist;
5726                         }
5727
5728                         for event in pending_events.drain(..) {
5729                                 handler.handle_event(&event);
5730                         }
5731
5732                         result
5733                 });
5734         }
5735 }
5736
5737 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> chain::Listen for ChannelManager<Signer, M, T, K, F, L>
5738 where
5739         M::Target: chain::Watch<Signer>,
5740         T::Target: BroadcasterInterface,
5741         K::Target: KeysInterface<Signer = Signer>,
5742         F::Target: FeeEstimator,
5743         L::Target: Logger,
5744 {
5745         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
5746                 {
5747                         let best_block = self.best_block.read().unwrap();
5748                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
5749                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
5750                         assert_eq!(best_block.height(), height - 1,
5751                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
5752                 }
5753
5754                 self.transactions_confirmed(header, txdata, height);
5755                 self.best_block_updated(header, height);
5756         }
5757
5758         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
5759                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5760                 let new_height = height - 1;
5761                 {
5762                         let mut best_block = self.best_block.write().unwrap();
5763                         assert_eq!(best_block.block_hash(), header.block_hash(),
5764                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
5765                         assert_eq!(best_block.height(), height,
5766                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
5767                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
5768                 }
5769
5770                 self.do_chain_event(Some(new_height), |channel| channel.best_block_updated(new_height, header.time, self.genesis_hash.clone(), self.get_our_node_id(), &self.logger));
5771         }
5772 }
5773
5774 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> chain::Confirm for ChannelManager<Signer, M, T, K, F, L>
5775 where
5776         M::Target: chain::Watch<Signer>,
5777         T::Target: BroadcasterInterface,
5778         K::Target: KeysInterface<Signer = Signer>,
5779         F::Target: FeeEstimator,
5780         L::Target: Logger,
5781 {
5782         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
5783                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5784                 // during initialization prior to the chain_monitor being fully configured in some cases.
5785                 // See the docs for `ChannelManagerReadArgs` for more.
5786
5787                 let block_hash = header.block_hash();
5788                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
5789
5790                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5791                 self.do_chain_event(Some(height), |channel| channel.transactions_confirmed(&block_hash, height, txdata, self.genesis_hash.clone(), self.get_our_node_id(), &self.logger)
5792                         .map(|(a, b)| (a, Vec::new(), b)));
5793
5794                 let last_best_block_height = self.best_block.read().unwrap().height();
5795                 if height < last_best_block_height {
5796                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
5797                         self.do_chain_event(Some(last_best_block_height), |channel| channel.best_block_updated(last_best_block_height, timestamp as u32, self.genesis_hash.clone(), self.get_our_node_id(), &self.logger));
5798                 }
5799         }
5800
5801         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
5802                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5803                 // during initialization prior to the chain_monitor being fully configured in some cases.
5804                 // See the docs for `ChannelManagerReadArgs` for more.
5805
5806                 let block_hash = header.block_hash();
5807                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
5808
5809                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5810
5811                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
5812
5813                 self.do_chain_event(Some(height), |channel| channel.best_block_updated(height, header.time, self.genesis_hash.clone(), self.get_our_node_id(), &self.logger));
5814
5815                 macro_rules! max_time {
5816                         ($timestamp: expr) => {
5817                                 loop {
5818                                         // Update $timestamp to be the max of its current value and the block
5819                                         // timestamp. This should keep us close to the current time without relying on
5820                                         // having an explicit local time source.
5821                                         // Just in case we end up in a race, we loop until we either successfully
5822                                         // update $timestamp or decide we don't need to.
5823                                         let old_serial = $timestamp.load(Ordering::Acquire);
5824                                         if old_serial >= header.time as usize { break; }
5825                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
5826                                                 break;
5827                                         }
5828                                 }
5829                         }
5830                 }
5831                 max_time!(self.highest_seen_timestamp);
5832                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
5833                 payment_secrets.retain(|_, inbound_payment| {
5834                         inbound_payment.expiry_time > header.time as u64
5835                 });
5836
5837                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
5838                 let mut pending_events = self.pending_events.lock().unwrap();
5839                 outbounds.retain(|payment_id, payment| {
5840                         if payment.remaining_parts() != 0 { return true }
5841                         if let PendingOutboundPayment::Retryable { starting_block_height, payment_hash, .. } = payment {
5842                                 if *starting_block_height + PAYMENT_EXPIRY_BLOCKS <= height {
5843                                         log_info!(self.logger, "Timing out payment with id {} and hash {}", log_bytes!(payment_id.0), log_bytes!(payment_hash.0));
5844                                         pending_events.push(events::Event::PaymentFailed {
5845                                                 payment_id: *payment_id, payment_hash: *payment_hash,
5846                                         });
5847                                         false
5848                                 } else { true }
5849                         } else { true }
5850                 });
5851         }
5852
5853         fn get_relevant_txids(&self) -> Vec<Txid> {
5854                 let channel_state = self.channel_state.lock().unwrap();
5855                 let mut res = Vec::with_capacity(channel_state.short_to_chan_info.len());
5856                 for chan in channel_state.by_id.values() {
5857                         if let Some(funding_txo) = chan.get_funding_txo() {
5858                                 res.push(funding_txo.txid);
5859                         }
5860                 }
5861                 res
5862         }
5863
5864         fn transaction_unconfirmed(&self, txid: &Txid) {
5865                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5866                 self.do_chain_event(None, |channel| {
5867                         if let Some(funding_txo) = channel.get_funding_txo() {
5868                                 if funding_txo.txid == *txid {
5869                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
5870                                 } else { Ok((None, Vec::new(), None)) }
5871                         } else { Ok((None, Vec::new(), None)) }
5872                 });
5873         }
5874 }
5875
5876 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelManager<Signer, M, T, K, F, L>
5877 where
5878         M::Target: chain::Watch<Signer>,
5879         T::Target: BroadcasterInterface,
5880         K::Target: KeysInterface<Signer = Signer>,
5881         F::Target: FeeEstimator,
5882         L::Target: Logger,
5883 {
5884         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
5885         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
5886         /// the function.
5887         fn do_chain_event<FN: Fn(&mut Channel<Signer>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
5888                         (&self, height_opt: Option<u32>, f: FN) {
5889                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5890                 // during initialization prior to the chain_monitor being fully configured in some cases.
5891                 // See the docs for `ChannelManagerReadArgs` for more.
5892
5893                 let mut failed_channels = Vec::new();
5894                 let mut timed_out_htlcs = Vec::new();
5895                 {
5896                         let mut channel_lock = self.channel_state.lock().unwrap();
5897                         let channel_state = &mut *channel_lock;
5898                         let short_to_chan_info = &mut channel_state.short_to_chan_info;
5899                         let pending_msg_events = &mut channel_state.pending_msg_events;
5900                         channel_state.by_id.retain(|_, channel| {
5901                                 let res = f(channel);
5902                                 if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
5903                                         for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
5904                                                 let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
5905                                                 timed_out_htlcs.push((source, payment_hash, HTLCFailReason::Reason {
5906                                                         failure_code, data,
5907                                                 }, HTLCDestination::NextHopChannel { node_id: Some(channel.get_counterparty_node_id()), channel_id: channel.channel_id() }));
5908                                         }
5909                                         if let Some(channel_ready) = channel_ready_opt {
5910                                                 send_channel_ready!(short_to_chan_info, pending_msg_events, channel, channel_ready);
5911                                                 if channel.is_usable() {
5912                                                         log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", log_bytes!(channel.channel_id()));
5913                                                         if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
5914                                                                 pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
5915                                                                         node_id: channel.get_counterparty_node_id(),
5916                                                                         msg,
5917                                                                 });
5918                                                         }
5919                                                 } else {
5920                                                         log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", log_bytes!(channel.channel_id()));
5921                                                 }
5922                                         }
5923                                         if let Some(announcement_sigs) = announcement_sigs {
5924                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(channel.channel_id()));
5925                                                 pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5926                                                         node_id: channel.get_counterparty_node_id(),
5927                                                         msg: announcement_sigs,
5928                                                 });
5929                                                 if let Some(height) = height_opt {
5930                                                         if let Some(announcement) = channel.get_signed_channel_announcement(self.get_our_node_id(), self.genesis_hash, height) {
5931                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
5932                                                                         msg: announcement,
5933                                                                         // Note that announcement_signatures fails if the channel cannot be announced,
5934                                                                         // so get_channel_update_for_broadcast will never fail by the time we get here.
5935                                                                         update_msg: self.get_channel_update_for_broadcast(channel).unwrap(),
5936                                                                 });
5937                                                         }
5938                                                 }
5939                                         }
5940                                         if channel.is_our_channel_ready() {
5941                                                 if let Some(real_scid) = channel.get_short_channel_id() {
5942                                                         // If we sent a 0conf channel_ready, and now have an SCID, we add it
5943                                                         // to the short_to_chan_info map here. Note that we check whether we
5944                                                         // can relay using the real SCID at relay-time (i.e.
5945                                                         // enforce option_scid_alias then), and if the funding tx is ever
5946                                                         // un-confirmed we force-close the channel, ensuring short_to_chan_info
5947                                                         // is always consistent.
5948                                                         let scid_insert = short_to_chan_info.insert(real_scid, (channel.get_counterparty_node_id(), channel.channel_id()));
5949                                                         assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.get_counterparty_node_id(), channel.channel_id()),
5950                                                                 "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
5951                                                                 fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
5952                                                 }
5953                                         }
5954                                 } else if let Err(reason) = res {
5955                                         update_maps_on_chan_removal!(self, short_to_chan_info, channel);
5956                                         // It looks like our counterparty went on-chain or funding transaction was
5957                                         // reorged out of the main chain. Close the channel.
5958                                         failed_channels.push(channel.force_shutdown(true));
5959                                         if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
5960                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5961                                                         msg: update
5962                                                 });
5963                                         }
5964                                         let reason_message = format!("{}", reason);
5965                                         self.issue_channel_close_events(channel, reason);
5966                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
5967                                                 node_id: channel.get_counterparty_node_id(),
5968                                                 action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
5969                                                         channel_id: channel.channel_id(),
5970                                                         data: reason_message,
5971                                                 } },
5972                                         });
5973                                         return false;
5974                                 }
5975                                 true
5976                         });
5977
5978                         if let Some(height) = height_opt {
5979                                 channel_state.claimable_htlcs.retain(|payment_hash, (_, htlcs)| {
5980                                         htlcs.retain(|htlc| {
5981                                                 // If height is approaching the number of blocks we think it takes us to get
5982                                                 // our commitment transaction confirmed before the HTLC expires, plus the
5983                                                 // number of blocks we generally consider it to take to do a commitment update,
5984                                                 // just give up on it and fail the HTLC.
5985                                                 if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
5986                                                         let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
5987                                                         htlc_msat_height_data.extend_from_slice(&byte_utils::be32_to_array(height));
5988
5989                                                         timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(), HTLCFailReason::Reason {
5990                                                                 failure_code: 0x4000 | 15,
5991                                                                 data: htlc_msat_height_data
5992                                                         }, HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
5993                                                         false
5994                                                 } else { true }
5995                                         });
5996                                         !htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
5997                                 });
5998                         }
5999                 }
6000
6001                 self.handle_init_event_channel_failures(failed_channels);
6002
6003                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
6004                         self.fail_htlc_backwards_internal(source, &payment_hash, reason, destination);
6005                 }
6006         }
6007
6008         /// Blocks until ChannelManager needs to be persisted or a timeout is reached. It returns a bool
6009         /// indicating whether persistence is necessary. Only one listener on
6010         /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
6011         /// up.
6012         ///
6013         /// Note that this method is not available with the `no-std` feature.
6014         #[cfg(any(test, feature = "std"))]
6015         pub fn await_persistable_update_timeout(&self, max_wait: Duration) -> bool {
6016                 self.persistence_notifier.wait_timeout(max_wait)
6017         }
6018
6019         /// Blocks until ChannelManager needs to be persisted. Only one listener on
6020         /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
6021         /// up.
6022         pub fn await_persistable_update(&self) {
6023                 self.persistence_notifier.wait()
6024         }
6025
6026         /// Gets a [`Future`] that completes when a persistable update is available. Note that
6027         /// callbacks registered on the [`Future`] MUST NOT call back into this [`ChannelManager`] and
6028         /// should instead register actions to be taken later.
6029         pub fn get_persistable_update_future(&self) -> Future {
6030                 self.persistence_notifier.get_future()
6031         }
6032
6033         #[cfg(any(test, feature = "_test_utils"))]
6034         pub fn get_persistence_condvar_value(&self) -> bool {
6035                 self.persistence_notifier.notify_pending()
6036         }
6037
6038         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
6039         /// [`chain::Confirm`] interfaces.
6040         pub fn current_best_block(&self) -> BestBlock {
6041                 self.best_block.read().unwrap().clone()
6042         }
6043 }
6044
6045 impl<Signer: Sign, M: Deref , T: Deref , K: Deref , F: Deref , L: Deref >
6046         ChannelMessageHandler for ChannelManager<Signer, M, T, K, F, L>
6047         where M::Target: chain::Watch<Signer>,
6048         T::Target: BroadcasterInterface,
6049         K::Target: KeysInterface<Signer = Signer>,
6050         F::Target: FeeEstimator,
6051         L::Target: Logger,
6052 {
6053         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::OpenChannel) {
6054                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6055                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, their_features, msg), *counterparty_node_id);
6056         }
6057
6058         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::AcceptChannel) {
6059                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6060                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, their_features, msg), *counterparty_node_id);
6061         }
6062
6063         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
6064                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6065                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
6066         }
6067
6068         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
6069                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6070                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
6071         }
6072
6073         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
6074                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6075                 let _ = handle_error!(self, self.internal_channel_ready(counterparty_node_id, msg), *counterparty_node_id);
6076         }
6077
6078         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, their_features: &InitFeatures, msg: &msgs::Shutdown) {
6079                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6080                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, their_features, msg), *counterparty_node_id);
6081         }
6082
6083         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
6084                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6085                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
6086         }
6087
6088         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
6089                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6090                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
6091         }
6092
6093         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
6094                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6095                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
6096         }
6097
6098         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
6099                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6100                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
6101         }
6102
6103         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
6104                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6105                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
6106         }
6107
6108         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
6109                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6110                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
6111         }
6112
6113         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
6114                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6115                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
6116         }
6117
6118         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
6119                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6120                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
6121         }
6122
6123         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
6124                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6125                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
6126         }
6127
6128         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
6129                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
6130                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
6131                                 persist
6132                         } else {
6133                                 NotifyOption::SkipPersist
6134                         }
6135                 });
6136         }
6137
6138         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
6139                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6140                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
6141         }
6142
6143         fn peer_disconnected(&self, counterparty_node_id: &PublicKey, no_connection_possible: bool) {
6144                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6145                 let mut failed_channels = Vec::new();
6146                 let mut no_channels_remain = true;
6147                 {
6148                         let mut channel_state_lock = self.channel_state.lock().unwrap();
6149                         let channel_state = &mut *channel_state_lock;
6150                         let pending_msg_events = &mut channel_state.pending_msg_events;
6151                         let short_to_chan_info = &mut channel_state.short_to_chan_info;
6152                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates. We believe we {} make future connections to this peer.",
6153                                 log_pubkey!(counterparty_node_id), if no_connection_possible { "cannot" } else { "can" });
6154                         channel_state.by_id.retain(|_, chan| {
6155                                 if chan.get_counterparty_node_id() == *counterparty_node_id {
6156                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
6157                                         if chan.is_shutdown() {
6158                                                 update_maps_on_chan_removal!(self, short_to_chan_info, chan);
6159                                                 self.issue_channel_close_events(chan, ClosureReason::DisconnectedPeer);
6160                                                 return false;
6161                                         } else {
6162                                                 no_channels_remain = false;
6163                                         }
6164                                 }
6165                                 true
6166                         });
6167                         pending_msg_events.retain(|msg| {
6168                                 match msg {
6169                                         &events::MessageSendEvent::SendAcceptChannel { ref node_id, .. } => node_id != counterparty_node_id,
6170                                         &events::MessageSendEvent::SendOpenChannel { ref node_id, .. } => node_id != counterparty_node_id,
6171                                         &events::MessageSendEvent::SendFundingCreated { ref node_id, .. } => node_id != counterparty_node_id,
6172                                         &events::MessageSendEvent::SendFundingSigned { ref node_id, .. } => node_id != counterparty_node_id,
6173                                         &events::MessageSendEvent::SendChannelReady { ref node_id, .. } => node_id != counterparty_node_id,
6174                                         &events::MessageSendEvent::SendAnnouncementSignatures { ref node_id, .. } => node_id != counterparty_node_id,
6175                                         &events::MessageSendEvent::UpdateHTLCs { ref node_id, .. } => node_id != counterparty_node_id,
6176                                         &events::MessageSendEvent::SendRevokeAndACK { ref node_id, .. } => node_id != counterparty_node_id,
6177                                         &events::MessageSendEvent::SendClosingSigned { ref node_id, .. } => node_id != counterparty_node_id,
6178                                         &events::MessageSendEvent::SendShutdown { ref node_id, .. } => node_id != counterparty_node_id,
6179                                         &events::MessageSendEvent::SendChannelReestablish { ref node_id, .. } => node_id != counterparty_node_id,
6180                                         &events::MessageSendEvent::SendChannelAnnouncement { ref node_id, .. } => node_id != counterparty_node_id,
6181                                         &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
6182                                         &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
6183                                         &events::MessageSendEvent::SendChannelUpdate { ref node_id, .. } => node_id != counterparty_node_id,
6184                                         &events::MessageSendEvent::HandleError { ref node_id, .. } => node_id != counterparty_node_id,
6185                                         &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
6186                                         &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
6187                                         &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
6188                                         &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
6189                                 }
6190                         });
6191                 }
6192                 if no_channels_remain {
6193                         self.per_peer_state.write().unwrap().remove(counterparty_node_id);
6194                 }
6195
6196                 for failure in failed_channels.drain(..) {
6197                         self.finish_force_close_channel(failure);
6198                 }
6199         }
6200
6201         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init) -> Result<(), ()> {
6202                 if !init_msg.features.supports_static_remote_key() {
6203                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting with no_connection_possible", log_pubkey!(counterparty_node_id));
6204                         return Err(());
6205                 }
6206
6207                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
6208
6209                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6210
6211                 {
6212                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
6213                         match peer_state_lock.entry(counterparty_node_id.clone()) {
6214                                 hash_map::Entry::Vacant(e) => {
6215                                         e.insert(Mutex::new(PeerState {
6216                                                 latest_features: init_msg.features.clone(),
6217                                         }));
6218                                 },
6219                                 hash_map::Entry::Occupied(e) => {
6220                                         e.get().lock().unwrap().latest_features = init_msg.features.clone();
6221                                 },
6222                         }
6223                 }
6224
6225                 let mut channel_state_lock = self.channel_state.lock().unwrap();
6226                 let channel_state = &mut *channel_state_lock;
6227                 let pending_msg_events = &mut channel_state.pending_msg_events;
6228                 channel_state.by_id.retain(|_, chan| {
6229                         let retain = if chan.get_counterparty_node_id() == *counterparty_node_id {
6230                                 if !chan.have_received_message() {
6231                                         // If we created this (outbound) channel while we were disconnected from the
6232                                         // peer we probably failed to send the open_channel message, which is now
6233                                         // lost. We can't have had anything pending related to this channel, so we just
6234                                         // drop it.
6235                                         false
6236                                 } else {
6237                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
6238                                                 node_id: chan.get_counterparty_node_id(),
6239                                                 msg: chan.get_channel_reestablish(&self.logger),
6240                                         });
6241                                         true
6242                                 }
6243                         } else { true };
6244                         if retain && chan.get_counterparty_node_id() != *counterparty_node_id {
6245                                 if let Some(msg) = chan.get_signed_channel_announcement(self.get_our_node_id(), self.genesis_hash.clone(), self.best_block.read().unwrap().height()) {
6246                                         if let Ok(update_msg) = self.get_channel_update_for_broadcast(chan) {
6247                                                 pending_msg_events.push(events::MessageSendEvent::SendChannelAnnouncement {
6248                                                         node_id: *counterparty_node_id,
6249                                                         msg, update_msg,
6250                                                 });
6251                                         }
6252                                 }
6253                         }
6254                         retain
6255                 });
6256                 //TODO: Also re-broadcast announcement_signatures
6257                 Ok(())
6258         }
6259
6260         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
6261                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6262
6263                 if msg.channel_id == [0; 32] {
6264                         for chan in self.list_channels() {
6265                                 if chan.counterparty.node_id == *counterparty_node_id {
6266                                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
6267                                         let _ = self.force_close_channel_with_peer(&chan.channel_id, counterparty_node_id, Some(&msg.data), true);
6268                                 }
6269                         }
6270                 } else {
6271                         {
6272                                 // First check if we can advance the channel type and try again.
6273                                 let mut channel_state = self.channel_state.lock().unwrap();
6274                                 if let Some(chan) = channel_state.by_id.get_mut(&msg.channel_id) {
6275                                         if chan.get_counterparty_node_id() != *counterparty_node_id {
6276                                                 return;
6277                                         }
6278                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash) {
6279                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
6280                                                         node_id: *counterparty_node_id,
6281                                                         msg,
6282                                                 });
6283                                                 return;
6284                                         }
6285                                 }
6286                         }
6287
6288                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
6289                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
6290                 }
6291         }
6292
6293         fn provided_node_features(&self) -> NodeFeatures {
6294                 provided_node_features()
6295         }
6296
6297         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
6298                 provided_init_features()
6299         }
6300 }
6301
6302 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
6303 /// [`ChannelManager`].
6304 pub fn provided_node_features() -> NodeFeatures {
6305         provided_init_features().to_context()
6306 }
6307
6308 /// Fetches the set of [`InvoiceFeatures`] flags which are provided by or required by
6309 /// [`ChannelManager`].
6310 ///
6311 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
6312 /// or not. Thus, this method is not public.
6313 #[cfg(any(feature = "_test_utils", test))]
6314 pub fn provided_invoice_features() -> InvoiceFeatures {
6315         provided_init_features().to_context()
6316 }
6317
6318 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
6319 /// [`ChannelManager`].
6320 pub fn provided_channel_features() -> ChannelFeatures {
6321         provided_init_features().to_context()
6322 }
6323
6324 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
6325 /// [`ChannelManager`].
6326 pub fn provided_init_features() -> InitFeatures {
6327         // Note that if new features are added here which other peers may (eventually) require, we
6328         // should also add the corresponding (optional) bit to the ChannelMessageHandler impl for
6329         // ErroringMessageHandler.
6330         let mut features = InitFeatures::empty();
6331         features.set_data_loss_protect_optional();
6332         features.set_upfront_shutdown_script_optional();
6333         features.set_variable_length_onion_required();
6334         features.set_static_remote_key_required();
6335         features.set_payment_secret_required();
6336         features.set_basic_mpp_optional();
6337         features.set_wumbo_optional();
6338         features.set_shutdown_any_segwit_optional();
6339         features.set_channel_type_optional();
6340         features.set_scid_privacy_optional();
6341         features.set_zero_conf_optional();
6342         features
6343 }
6344
6345 const SERIALIZATION_VERSION: u8 = 1;
6346 const MIN_SERIALIZATION_VERSION: u8 = 1;
6347
6348 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
6349         (2, fee_base_msat, required),
6350         (4, fee_proportional_millionths, required),
6351         (6, cltv_expiry_delta, required),
6352 });
6353
6354 impl_writeable_tlv_based!(ChannelCounterparty, {
6355         (2, node_id, required),
6356         (4, features, required),
6357         (6, unspendable_punishment_reserve, required),
6358         (8, forwarding_info, option),
6359         (9, outbound_htlc_minimum_msat, option),
6360         (11, outbound_htlc_maximum_msat, option),
6361 });
6362
6363 impl_writeable_tlv_based!(ChannelDetails, {
6364         (1, inbound_scid_alias, option),
6365         (2, channel_id, required),
6366         (3, channel_type, option),
6367         (4, counterparty, required),
6368         (5, outbound_scid_alias, option),
6369         (6, funding_txo, option),
6370         (7, config, option),
6371         (8, short_channel_id, option),
6372         (10, channel_value_satoshis, required),
6373         (12, unspendable_punishment_reserve, option),
6374         (14, user_channel_id, required),
6375         (16, balance_msat, required),
6376         (18, outbound_capacity_msat, required),
6377         // Note that by the time we get past the required read above, outbound_capacity_msat will be
6378         // filled in, so we can safely unwrap it here.
6379         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
6380         (20, inbound_capacity_msat, required),
6381         (22, confirmations_required, option),
6382         (24, force_close_spend_delay, option),
6383         (26, is_outbound, required),
6384         (28, is_channel_ready, required),
6385         (30, is_usable, required),
6386         (32, is_public, required),
6387         (33, inbound_htlc_minimum_msat, option),
6388         (35, inbound_htlc_maximum_msat, option),
6389 });
6390
6391 impl_writeable_tlv_based!(PhantomRouteHints, {
6392         (2, channels, vec_type),
6393         (4, phantom_scid, required),
6394         (6, real_node_pubkey, required),
6395 });
6396
6397 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
6398         (0, Forward) => {
6399                 (0, onion_packet, required),
6400                 (2, short_channel_id, required),
6401         },
6402         (1, Receive) => {
6403                 (0, payment_data, required),
6404                 (1, phantom_shared_secret, option),
6405                 (2, incoming_cltv_expiry, required),
6406         },
6407         (2, ReceiveKeysend) => {
6408                 (0, payment_preimage, required),
6409                 (2, incoming_cltv_expiry, required),
6410         },
6411 ;);
6412
6413 impl_writeable_tlv_based!(PendingHTLCInfo, {
6414         (0, routing, required),
6415         (2, incoming_shared_secret, required),
6416         (4, payment_hash, required),
6417         (6, amt_to_forward, required),
6418         (8, outgoing_cltv_value, required)
6419 });
6420
6421
6422 impl Writeable for HTLCFailureMsg {
6423         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
6424                 match self {
6425                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
6426                                 0u8.write(writer)?;
6427                                 channel_id.write(writer)?;
6428                                 htlc_id.write(writer)?;
6429                                 reason.write(writer)?;
6430                         },
6431                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
6432                                 channel_id, htlc_id, sha256_of_onion, failure_code
6433                         }) => {
6434                                 1u8.write(writer)?;
6435                                 channel_id.write(writer)?;
6436                                 htlc_id.write(writer)?;
6437                                 sha256_of_onion.write(writer)?;
6438                                 failure_code.write(writer)?;
6439                         },
6440                 }
6441                 Ok(())
6442         }
6443 }
6444
6445 impl Readable for HTLCFailureMsg {
6446         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
6447                 let id: u8 = Readable::read(reader)?;
6448                 match id {
6449                         0 => {
6450                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
6451                                         channel_id: Readable::read(reader)?,
6452                                         htlc_id: Readable::read(reader)?,
6453                                         reason: Readable::read(reader)?,
6454                                 }))
6455                         },
6456                         1 => {
6457                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
6458                                         channel_id: Readable::read(reader)?,
6459                                         htlc_id: Readable::read(reader)?,
6460                                         sha256_of_onion: Readable::read(reader)?,
6461                                         failure_code: Readable::read(reader)?,
6462                                 }))
6463                         },
6464                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
6465                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
6466                         // messages contained in the variants.
6467                         // In version 0.0.101, support for reading the variants with these types was added, and
6468                         // we should migrate to writing these variants when UpdateFailHTLC or
6469                         // UpdateFailMalformedHTLC get TLV fields.
6470                         2 => {
6471                                 let length: BigSize = Readable::read(reader)?;
6472                                 let mut s = FixedLengthReader::new(reader, length.0);
6473                                 let res = Readable::read(&mut s)?;
6474                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
6475                                 Ok(HTLCFailureMsg::Relay(res))
6476                         },
6477                         3 => {
6478                                 let length: BigSize = Readable::read(reader)?;
6479                                 let mut s = FixedLengthReader::new(reader, length.0);
6480                                 let res = Readable::read(&mut s)?;
6481                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
6482                                 Ok(HTLCFailureMsg::Malformed(res))
6483                         },
6484                         _ => Err(DecodeError::UnknownRequiredFeature),
6485                 }
6486         }
6487 }
6488
6489 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
6490         (0, Forward),
6491         (1, Fail),
6492 );
6493
6494 impl_writeable_tlv_based!(HTLCPreviousHopData, {
6495         (0, short_channel_id, required),
6496         (1, phantom_shared_secret, option),
6497         (2, outpoint, required),
6498         (4, htlc_id, required),
6499         (6, incoming_packet_shared_secret, required)
6500 });
6501
6502 impl Writeable for ClaimableHTLC {
6503         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
6504                 let (payment_data, keysend_preimage) = match &self.onion_payload {
6505                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
6506                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
6507                 };
6508                 write_tlv_fields!(writer, {
6509                         (0, self.prev_hop, required),
6510                         (1, self.total_msat, required),
6511                         (2, self.value, required),
6512                         (4, payment_data, option),
6513                         (6, self.cltv_expiry, required),
6514                         (8, keysend_preimage, option),
6515                 });
6516                 Ok(())
6517         }
6518 }
6519
6520 impl Readable for ClaimableHTLC {
6521         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
6522                 let mut prev_hop = crate::util::ser::OptionDeserWrapper(None);
6523                 let mut value = 0;
6524                 let mut payment_data: Option<msgs::FinalOnionHopData> = None;
6525                 let mut cltv_expiry = 0;
6526                 let mut total_msat = None;
6527                 let mut keysend_preimage: Option<PaymentPreimage> = None;
6528                 read_tlv_fields!(reader, {
6529                         (0, prev_hop, required),
6530                         (1, total_msat, option),
6531                         (2, value, required),
6532                         (4, payment_data, option),
6533                         (6, cltv_expiry, required),
6534                         (8, keysend_preimage, option)
6535                 });
6536                 let onion_payload = match keysend_preimage {
6537                         Some(p) => {
6538                                 if payment_data.is_some() {
6539                                         return Err(DecodeError::InvalidValue)
6540                                 }
6541                                 if total_msat.is_none() {
6542                                         total_msat = Some(value);
6543                                 }
6544                                 OnionPayload::Spontaneous(p)
6545                         },
6546                         None => {
6547                                 if total_msat.is_none() {
6548                                         if payment_data.is_none() {
6549                                                 return Err(DecodeError::InvalidValue)
6550                                         }
6551                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
6552                                 }
6553                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
6554                         },
6555                 };
6556                 Ok(Self {
6557                         prev_hop: prev_hop.0.unwrap(),
6558                         timer_ticks: 0,
6559                         value,
6560                         total_msat: total_msat.unwrap(),
6561                         onion_payload,
6562                         cltv_expiry,
6563                 })
6564         }
6565 }
6566
6567 impl Readable for HTLCSource {
6568         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
6569                 let id: u8 = Readable::read(reader)?;
6570                 match id {
6571                         0 => {
6572                                 let mut session_priv: crate::util::ser::OptionDeserWrapper<SecretKey> = crate::util::ser::OptionDeserWrapper(None);
6573                                 let mut first_hop_htlc_msat: u64 = 0;
6574                                 let mut path = Some(Vec::new());
6575                                 let mut payment_id = None;
6576                                 let mut payment_secret = None;
6577                                 let mut payment_params = None;
6578                                 read_tlv_fields!(reader, {
6579                                         (0, session_priv, required),
6580                                         (1, payment_id, option),
6581                                         (2, first_hop_htlc_msat, required),
6582                                         (3, payment_secret, option),
6583                                         (4, path, vec_type),
6584                                         (5, payment_params, option),
6585                                 });
6586                                 if payment_id.is_none() {
6587                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
6588                                         // instead.
6589                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
6590                                 }
6591                                 Ok(HTLCSource::OutboundRoute {
6592                                         session_priv: session_priv.0.unwrap(),
6593                                         first_hop_htlc_msat,
6594                                         path: path.unwrap(),
6595                                         payment_id: payment_id.unwrap(),
6596                                         payment_secret,
6597                                         payment_params,
6598                                 })
6599                         }
6600                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
6601                         _ => Err(DecodeError::UnknownRequiredFeature),
6602                 }
6603         }
6604 }
6605
6606 impl Writeable for HTLCSource {
6607         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
6608                 match self {
6609                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id, payment_secret, payment_params } => {
6610                                 0u8.write(writer)?;
6611                                 let payment_id_opt = Some(payment_id);
6612                                 write_tlv_fields!(writer, {
6613                                         (0, session_priv, required),
6614                                         (1, payment_id_opt, option),
6615                                         (2, first_hop_htlc_msat, required),
6616                                         (3, payment_secret, option),
6617                                         (4, path, vec_type),
6618                                         (5, payment_params, option),
6619                                  });
6620                         }
6621                         HTLCSource::PreviousHopData(ref field) => {
6622                                 1u8.write(writer)?;
6623                                 field.write(writer)?;
6624                         }
6625                 }
6626                 Ok(())
6627         }
6628 }
6629
6630 impl_writeable_tlv_based_enum!(HTLCFailReason,
6631         (0, LightningError) => {
6632                 (0, err, required),
6633         },
6634         (1, Reason) => {
6635                 (0, failure_code, required),
6636                 (2, data, vec_type),
6637         },
6638 ;);
6639
6640 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
6641         (0, AddHTLC) => {
6642                 (0, forward_info, required),
6643                 (2, prev_short_channel_id, required),
6644                 (4, prev_htlc_id, required),
6645                 (6, prev_funding_outpoint, required),
6646         },
6647         (1, FailHTLC) => {
6648                 (0, htlc_id, required),
6649                 (2, err_packet, required),
6650         },
6651 ;);
6652
6653 impl_writeable_tlv_based!(PendingInboundPayment, {
6654         (0, payment_secret, required),
6655         (2, expiry_time, required),
6656         (4, user_payment_id, required),
6657         (6, payment_preimage, required),
6658         (8, min_value_msat, required),
6659 });
6660
6661 impl_writeable_tlv_based_enum_upgradable!(PendingOutboundPayment,
6662         (0, Legacy) => {
6663                 (0, session_privs, required),
6664         },
6665         (1, Fulfilled) => {
6666                 (0, session_privs, required),
6667                 (1, payment_hash, option),
6668                 (3, timer_ticks_without_htlcs, (default_value, 0)),
6669         },
6670         (2, Retryable) => {
6671                 (0, session_privs, required),
6672                 (1, pending_fee_msat, option),
6673                 (2, payment_hash, required),
6674                 (4, payment_secret, option),
6675                 (6, total_msat, required),
6676                 (8, pending_amt_msat, required),
6677                 (10, starting_block_height, required),
6678         },
6679         (3, Abandoned) => {
6680                 (0, session_privs, required),
6681                 (2, payment_hash, required),
6682         },
6683 );
6684
6685 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> Writeable for ChannelManager<Signer, M, T, K, F, L>
6686         where M::Target: chain::Watch<Signer>,
6687         T::Target: BroadcasterInterface,
6688         K::Target: KeysInterface<Signer = Signer>,
6689         F::Target: FeeEstimator,
6690         L::Target: Logger,
6691 {
6692         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
6693                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
6694
6695                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
6696
6697                 self.genesis_hash.write(writer)?;
6698                 {
6699                         let best_block = self.best_block.read().unwrap();
6700                         best_block.height().write(writer)?;
6701                         best_block.block_hash().write(writer)?;
6702                 }
6703
6704                 {
6705                         // Take `channel_state` lock temporarily to avoid creating a lock order that requires
6706                         // that the `forward_htlcs` lock is taken after `channel_state`
6707                         let channel_state = self.channel_state.lock().unwrap();
6708                         let mut unfunded_channels = 0;
6709                         for (_, channel) in channel_state.by_id.iter() {
6710                                 if !channel.is_funding_initiated() {
6711                                         unfunded_channels += 1;
6712                                 }
6713                         }
6714                         ((channel_state.by_id.len() - unfunded_channels) as u64).write(writer)?;
6715                         for (_, channel) in channel_state.by_id.iter() {
6716                                 if channel.is_funding_initiated() {
6717                                         channel.write(writer)?;
6718                                 }
6719                         }
6720                 }
6721
6722                 {
6723                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
6724                         (forward_htlcs.len() as u64).write(writer)?;
6725                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
6726                                 short_channel_id.write(writer)?;
6727                                 (pending_forwards.len() as u64).write(writer)?;
6728                                 for forward in pending_forwards {
6729                                         forward.write(writer)?;
6730                                 }
6731                         }
6732                 }
6733
6734                 let channel_state = self.channel_state.lock().unwrap();
6735                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
6736                 (channel_state.claimable_htlcs.len() as u64).write(writer)?;
6737                 for (payment_hash, (purpose, previous_hops)) in channel_state.claimable_htlcs.iter() {
6738                         payment_hash.write(writer)?;
6739                         (previous_hops.len() as u64).write(writer)?;
6740                         for htlc in previous_hops.iter() {
6741                                 htlc.write(writer)?;
6742                         }
6743                         htlc_purposes.push(purpose);
6744                 }
6745
6746                 let per_peer_state = self.per_peer_state.write().unwrap();
6747                 (per_peer_state.len() as u64).write(writer)?;
6748                 for (peer_pubkey, peer_state_mutex) in per_peer_state.iter() {
6749                         peer_pubkey.write(writer)?;
6750                         let peer_state = peer_state_mutex.lock().unwrap();
6751                         peer_state.latest_features.write(writer)?;
6752                 }
6753
6754                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
6755                 let pending_outbound_payments = self.pending_outbound_payments.lock().unwrap();
6756                 let events = self.pending_events.lock().unwrap();
6757                 (events.len() as u64).write(writer)?;
6758                 for event in events.iter() {
6759                         event.write(writer)?;
6760                 }
6761
6762                 let background_events = self.pending_background_events.lock().unwrap();
6763                 (background_events.len() as u64).write(writer)?;
6764                 for event in background_events.iter() {
6765                         match event {
6766                                 BackgroundEvent::ClosingMonitorUpdate((funding_txo, monitor_update)) => {
6767                                         0u8.write(writer)?;
6768                                         funding_txo.write(writer)?;
6769                                         monitor_update.write(writer)?;
6770                                 },
6771                         }
6772                 }
6773
6774                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
6775                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
6776                 // likely to be identical.
6777                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
6778                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
6779
6780                 (pending_inbound_payments.len() as u64).write(writer)?;
6781                 for (hash, pending_payment) in pending_inbound_payments.iter() {
6782                         hash.write(writer)?;
6783                         pending_payment.write(writer)?;
6784                 }
6785
6786                 // For backwards compat, write the session privs and their total length.
6787                 let mut num_pending_outbounds_compat: u64 = 0;
6788                 for (_, outbound) in pending_outbound_payments.iter() {
6789                         if !outbound.is_fulfilled() && !outbound.abandoned() {
6790                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
6791                         }
6792                 }
6793                 num_pending_outbounds_compat.write(writer)?;
6794                 for (_, outbound) in pending_outbound_payments.iter() {
6795                         match outbound {
6796                                 PendingOutboundPayment::Legacy { session_privs } |
6797                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
6798                                         for session_priv in session_privs.iter() {
6799                                                 session_priv.write(writer)?;
6800                                         }
6801                                 }
6802                                 PendingOutboundPayment::Fulfilled { .. } => {},
6803                                 PendingOutboundPayment::Abandoned { .. } => {},
6804                         }
6805                 }
6806
6807                 // Encode without retry info for 0.0.101 compatibility.
6808                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
6809                 for (id, outbound) in pending_outbound_payments.iter() {
6810                         match outbound {
6811                                 PendingOutboundPayment::Legacy { session_privs } |
6812                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
6813                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
6814                                 },
6815                                 _ => {},
6816                         }
6817                 }
6818                 write_tlv_fields!(writer, {
6819                         (1, pending_outbound_payments_no_retry, required),
6820                         (3, pending_outbound_payments, required),
6821                         (5, self.our_network_pubkey, required),
6822                         (7, self.fake_scid_rand_bytes, required),
6823                         (9, htlc_purposes, vec_type),
6824                         (11, self.probing_cookie_secret, required),
6825                 });
6826
6827                 Ok(())
6828         }
6829 }
6830
6831 /// Arguments for the creation of a ChannelManager that are not deserialized.
6832 ///
6833 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
6834 /// is:
6835 /// 1) Deserialize all stored [`ChannelMonitor`]s.
6836 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
6837 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
6838 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
6839 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
6840 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
6841 ///    same way you would handle a [`chain::Filter`] call using
6842 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
6843 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
6844 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
6845 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
6846 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
6847 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
6848 ///    the next step.
6849 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
6850 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
6851 ///
6852 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
6853 /// call any other methods on the newly-deserialized [`ChannelManager`].
6854 ///
6855 /// Note that because some channels may be closed during deserialization, it is critical that you
6856 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
6857 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
6858 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
6859 /// not force-close the same channels but consider them live), you may end up revoking a state for
6860 /// which you've already broadcasted the transaction.
6861 ///
6862 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
6863 pub struct ChannelManagerReadArgs<'a, Signer: 'a + Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
6864         where M::Target: chain::Watch<Signer>,
6865         T::Target: BroadcasterInterface,
6866         K::Target: KeysInterface<Signer = Signer>,
6867         F::Target: FeeEstimator,
6868         L::Target: Logger,
6869 {
6870         /// The keys provider which will give us relevant keys. Some keys will be loaded during
6871         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
6872         /// signing data.
6873         pub keys_manager: K,
6874
6875         /// The fee_estimator for use in the ChannelManager in the future.
6876         ///
6877         /// No calls to the FeeEstimator will be made during deserialization.
6878         pub fee_estimator: F,
6879         /// The chain::Watch for use in the ChannelManager in the future.
6880         ///
6881         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
6882         /// you have deserialized ChannelMonitors separately and will add them to your
6883         /// chain::Watch after deserializing this ChannelManager.
6884         pub chain_monitor: M,
6885
6886         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
6887         /// used to broadcast the latest local commitment transactions of channels which must be
6888         /// force-closed during deserialization.
6889         pub tx_broadcaster: T,
6890         /// The Logger for use in the ChannelManager and which may be used to log information during
6891         /// deserialization.
6892         pub logger: L,
6893         /// Default settings used for new channels. Any existing channels will continue to use the
6894         /// runtime settings which were stored when the ChannelManager was serialized.
6895         pub default_config: UserConfig,
6896
6897         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
6898         /// value.get_funding_txo() should be the key).
6899         ///
6900         /// If a monitor is inconsistent with the channel state during deserialization the channel will
6901         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
6902         /// is true for missing channels as well. If there is a monitor missing for which we find
6903         /// channel data Err(DecodeError::InvalidValue) will be returned.
6904         ///
6905         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
6906         /// this struct.
6907         ///
6908         /// (C-not exported) because we have no HashMap bindings
6909         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<Signer>>,
6910 }
6911
6912 impl<'a, Signer: 'a + Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
6913                 ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>
6914         where M::Target: chain::Watch<Signer>,
6915                 T::Target: BroadcasterInterface,
6916                 K::Target: KeysInterface<Signer = Signer>,
6917                 F::Target: FeeEstimator,
6918                 L::Target: Logger,
6919         {
6920         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
6921         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
6922         /// populate a HashMap directly from C.
6923         pub fn new(keys_manager: K, fee_estimator: F, chain_monitor: M, tx_broadcaster: T, logger: L, default_config: UserConfig,
6924                         mut channel_monitors: Vec<&'a mut ChannelMonitor<Signer>>) -> Self {
6925                 Self {
6926                         keys_manager, fee_estimator, chain_monitor, tx_broadcaster, logger, default_config,
6927                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
6928                 }
6929         }
6930 }
6931
6932 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
6933 // SipmleArcChannelManager type:
6934 impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
6935         ReadableArgs<ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>> for (BlockHash, Arc<ChannelManager<Signer, M, T, K, F, L>>)
6936         where M::Target: chain::Watch<Signer>,
6937         T::Target: BroadcasterInterface,
6938         K::Target: KeysInterface<Signer = Signer>,
6939         F::Target: FeeEstimator,
6940         L::Target: Logger,
6941 {
6942         fn read<R: io::Read>(reader: &mut R, args: ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>) -> Result<Self, DecodeError> {
6943                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<Signer, M, T, K, F, L>)>::read(reader, args)?;
6944                 Ok((blockhash, Arc::new(chan_manager)))
6945         }
6946 }
6947
6948 impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
6949         ReadableArgs<ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>> for (BlockHash, ChannelManager<Signer, M, T, K, F, L>)
6950         where M::Target: chain::Watch<Signer>,
6951         T::Target: BroadcasterInterface,
6952         K::Target: KeysInterface<Signer = Signer>,
6953         F::Target: FeeEstimator,
6954         L::Target: Logger,
6955 {
6956         fn read<R: io::Read>(reader: &mut R, mut args: ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>) -> Result<Self, DecodeError> {
6957                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
6958
6959                 let genesis_hash: BlockHash = Readable::read(reader)?;
6960                 let best_block_height: u32 = Readable::read(reader)?;
6961                 let best_block_hash: BlockHash = Readable::read(reader)?;
6962
6963                 let mut failed_htlcs = Vec::new();
6964
6965                 let channel_count: u64 = Readable::read(reader)?;
6966                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
6967                 let mut by_id = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
6968                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
6969                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
6970                 let mut channel_closures = Vec::new();
6971                 for _ in 0..channel_count {
6972                         let mut channel: Channel<Signer> = Channel::read(reader, (&args.keys_manager, best_block_height))?;
6973                         let funding_txo = channel.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
6974                         funding_txo_set.insert(funding_txo.clone());
6975                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
6976                                 if channel.get_cur_holder_commitment_transaction_number() < monitor.get_cur_holder_commitment_number() ||
6977                                                 channel.get_revoked_counterparty_commitment_transaction_number() < monitor.get_min_seen_secret() ||
6978                                                 channel.get_cur_counterparty_commitment_transaction_number() < monitor.get_cur_counterparty_commitment_number() ||
6979                                                 channel.get_latest_monitor_update_id() > monitor.get_latest_update_id() {
6980                                         // If the channel is ahead of the monitor, return InvalidValue:
6981                                         log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
6982                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
6983                                                 log_bytes!(channel.channel_id()), monitor.get_latest_update_id(), channel.get_latest_monitor_update_id());
6984                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
6985                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
6986                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
6987                                         log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
6988                                         return Err(DecodeError::InvalidValue);
6989                                 } else if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
6990                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
6991                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
6992                                                 channel.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
6993                                         // But if the channel is behind of the monitor, close the channel:
6994                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
6995                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
6996                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
6997                                                 log_bytes!(channel.channel_id()), monitor.get_latest_update_id(), channel.get_latest_monitor_update_id());
6998                                         let (_, mut new_failed_htlcs) = channel.force_shutdown(true);
6999                                         failed_htlcs.append(&mut new_failed_htlcs);
7000                                         monitor.broadcast_latest_holder_commitment_txn(&args.tx_broadcaster, &args.logger);
7001                                         channel_closures.push(events::Event::ChannelClosed {
7002                                                 channel_id: channel.channel_id(),
7003                                                 user_channel_id: channel.get_user_id(),
7004                                                 reason: ClosureReason::OutdatedChannelManager
7005                                         });
7006                                 } else {
7007                                         log_info!(args.logger, "Successfully loaded channel {}", log_bytes!(channel.channel_id()));
7008                                         if let Some(short_channel_id) = channel.get_short_channel_id() {
7009                                                 short_to_chan_info.insert(short_channel_id, (channel.get_counterparty_node_id(), channel.channel_id()));
7010                                         }
7011                                         if channel.is_funding_initiated() {
7012                                                 id_to_peer.insert(channel.channel_id(), channel.get_counterparty_node_id());
7013                                         }
7014                                         by_id.insert(channel.channel_id(), channel);
7015                                 }
7016                         } else if channel.is_awaiting_initial_mon_persist() {
7017                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
7018                                 // was in-progress, we never broadcasted the funding transaction and can still
7019                                 // safely discard the channel.
7020                                 let _ = channel.force_shutdown(false);
7021                                 channel_closures.push(events::Event::ChannelClosed {
7022                                         channel_id: channel.channel_id(),
7023                                         user_channel_id: channel.get_user_id(),
7024                                         reason: ClosureReason::DisconnectedPeer,
7025                                 });
7026                         } else {
7027                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", log_bytes!(channel.channel_id()));
7028                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
7029                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
7030                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
7031                                 log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
7032                                 return Err(DecodeError::InvalidValue);
7033                         }
7034                 }
7035
7036                 for (ref funding_txo, ref mut monitor) in args.channel_monitors.iter_mut() {
7037                         if !funding_txo_set.contains(funding_txo) {
7038                                 log_info!(args.logger, "Broadcasting latest holder commitment transaction for closed channel {}", log_bytes!(funding_txo.to_channel_id()));
7039                                 monitor.broadcast_latest_holder_commitment_txn(&args.tx_broadcaster, &args.logger);
7040                         }
7041                 }
7042
7043                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
7044                 let forward_htlcs_count: u64 = Readable::read(reader)?;
7045                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
7046                 for _ in 0..forward_htlcs_count {
7047                         let short_channel_id = Readable::read(reader)?;
7048                         let pending_forwards_count: u64 = Readable::read(reader)?;
7049                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
7050                         for _ in 0..pending_forwards_count {
7051                                 pending_forwards.push(Readable::read(reader)?);
7052                         }
7053                         forward_htlcs.insert(short_channel_id, pending_forwards);
7054                 }
7055
7056                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
7057                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
7058                 for _ in 0..claimable_htlcs_count {
7059                         let payment_hash = Readable::read(reader)?;
7060                         let previous_hops_len: u64 = Readable::read(reader)?;
7061                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
7062                         for _ in 0..previous_hops_len {
7063                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
7064                         }
7065                         claimable_htlcs_list.push((payment_hash, previous_hops));
7066                 }
7067
7068                 let peer_count: u64 = Readable::read(reader)?;
7069                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState>)>()));
7070                 for _ in 0..peer_count {
7071                         let peer_pubkey = Readable::read(reader)?;
7072                         let peer_state = PeerState {
7073                                 latest_features: Readable::read(reader)?,
7074                         };
7075                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
7076                 }
7077
7078                 let event_count: u64 = Readable::read(reader)?;
7079                 let mut pending_events_read: Vec<events::Event> = Vec::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<events::Event>()));
7080                 for _ in 0..event_count {
7081                         match MaybeReadable::read(reader)? {
7082                                 Some(event) => pending_events_read.push(event),
7083                                 None => continue,
7084                         }
7085                 }
7086                 if forward_htlcs_count > 0 {
7087                         // If we have pending HTLCs to forward, assume we either dropped a
7088                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
7089                         // shut down before the timer hit. Either way, set the time_forwardable to a small
7090                         // constant as enough time has likely passed that we should simply handle the forwards
7091                         // now, or at least after the user gets a chance to reconnect to our peers.
7092                         pending_events_read.push(events::Event::PendingHTLCsForwardable {
7093                                 time_forwardable: Duration::from_secs(2),
7094                         });
7095                 }
7096
7097                 let background_event_count: u64 = Readable::read(reader)?;
7098                 let mut pending_background_events_read: Vec<BackgroundEvent> = Vec::with_capacity(cmp::min(background_event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<BackgroundEvent>()));
7099                 for _ in 0..background_event_count {
7100                         match <u8 as Readable>::read(reader)? {
7101                                 0 => pending_background_events_read.push(BackgroundEvent::ClosingMonitorUpdate((Readable::read(reader)?, Readable::read(reader)?))),
7102                                 _ => return Err(DecodeError::InvalidValue),
7103                         }
7104                 }
7105
7106                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
7107                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
7108
7109                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
7110                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
7111                 for _ in 0..pending_inbound_payment_count {
7112                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
7113                                 return Err(DecodeError::InvalidValue);
7114                         }
7115                 }
7116
7117                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
7118                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
7119                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
7120                 for _ in 0..pending_outbound_payments_count_compat {
7121                         let session_priv = Readable::read(reader)?;
7122                         let payment = PendingOutboundPayment::Legacy {
7123                                 session_privs: [session_priv].iter().cloned().collect()
7124                         };
7125                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
7126                                 return Err(DecodeError::InvalidValue)
7127                         };
7128                 }
7129
7130                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
7131                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
7132                 let mut pending_outbound_payments = None;
7133                 let mut received_network_pubkey: Option<PublicKey> = None;
7134                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
7135                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
7136                 let mut claimable_htlc_purposes = None;
7137                 read_tlv_fields!(reader, {
7138                         (1, pending_outbound_payments_no_retry, option),
7139                         (3, pending_outbound_payments, option),
7140                         (5, received_network_pubkey, option),
7141                         (7, fake_scid_rand_bytes, option),
7142                         (9, claimable_htlc_purposes, vec_type),
7143                         (11, probing_cookie_secret, option),
7144                 });
7145                 if fake_scid_rand_bytes.is_none() {
7146                         fake_scid_rand_bytes = Some(args.keys_manager.get_secure_random_bytes());
7147                 }
7148
7149                 if probing_cookie_secret.is_none() {
7150                         probing_cookie_secret = Some(args.keys_manager.get_secure_random_bytes());
7151                 }
7152
7153                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
7154                         pending_outbound_payments = Some(pending_outbound_payments_compat);
7155                 } else if pending_outbound_payments.is_none() {
7156                         let mut outbounds = HashMap::new();
7157                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
7158                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
7159                         }
7160                         pending_outbound_payments = Some(outbounds);
7161                 } else {
7162                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
7163                         // ChannelMonitor data for any channels for which we do not have authorative state
7164                         // (i.e. those for which we just force-closed above or we otherwise don't have a
7165                         // corresponding `Channel` at all).
7166                         // This avoids several edge-cases where we would otherwise "forget" about pending
7167                         // payments which are still in-flight via their on-chain state.
7168                         // We only rebuild the pending payments map if we were most recently serialized by
7169                         // 0.0.102+
7170                         for (_, monitor) in args.channel_monitors.iter() {
7171                                 if by_id.get(&monitor.get_funding_txo().0.to_channel_id()).is_none() {
7172                                         for (htlc_source, htlc) in monitor.get_pending_outbound_htlcs() {
7173                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, payment_secret, .. } = htlc_source {
7174                                                         if path.is_empty() {
7175                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
7176                                                                 return Err(DecodeError::InvalidValue);
7177                                                         }
7178                                                         let path_amt = path.last().unwrap().fee_msat;
7179                                                         let mut session_priv_bytes = [0; 32];
7180                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
7181                                                         match pending_outbound_payments.as_mut().unwrap().entry(payment_id) {
7182                                                                 hash_map::Entry::Occupied(mut entry) => {
7183                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
7184                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
7185                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), log_bytes!(htlc.payment_hash.0));
7186                                                                 },
7187                                                                 hash_map::Entry::Vacant(entry) => {
7188                                                                         let path_fee = path.get_path_fees();
7189                                                                         entry.insert(PendingOutboundPayment::Retryable {
7190                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
7191                                                                                 payment_hash: htlc.payment_hash,
7192                                                                                 payment_secret,
7193                                                                                 pending_amt_msat: path_amt,
7194                                                                                 pending_fee_msat: Some(path_fee),
7195                                                                                 total_msat: path_amt,
7196                                                                                 starting_block_height: best_block_height,
7197                                                                         });
7198                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
7199                                                                                 path_amt, log_bytes!(htlc.payment_hash.0),  log_bytes!(session_priv_bytes));
7200                                                                 }
7201                                                         }
7202                                                 }
7203                                         }
7204                                 }
7205                         }
7206                 }
7207
7208                 let inbound_pmt_key_material = args.keys_manager.get_inbound_payment_key_material();
7209                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
7210
7211                 let mut claimable_htlcs = HashMap::with_capacity(claimable_htlcs_list.len());
7212                 if let Some(mut purposes) = claimable_htlc_purposes {
7213                         if purposes.len() != claimable_htlcs_list.len() {
7214                                 return Err(DecodeError::InvalidValue);
7215                         }
7216                         for (purpose, (payment_hash, previous_hops)) in purposes.drain(..).zip(claimable_htlcs_list.drain(..)) {
7217                                 claimable_htlcs.insert(payment_hash, (purpose, previous_hops));
7218                         }
7219                 } else {
7220                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
7221                         // include a `_legacy_hop_data` in the `OnionPayload`.
7222                         for (payment_hash, previous_hops) in claimable_htlcs_list.drain(..) {
7223                                 if previous_hops.is_empty() {
7224                                         return Err(DecodeError::InvalidValue);
7225                                 }
7226                                 let purpose = match &previous_hops[0].onion_payload {
7227                                         OnionPayload::Invoice { _legacy_hop_data } => {
7228                                                 if let Some(hop_data) = _legacy_hop_data {
7229                                                         events::PaymentPurpose::InvoicePayment {
7230                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
7231                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
7232                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
7233                                                                                 Ok(payment_preimage) => payment_preimage,
7234                                                                                 Err(()) => {
7235                                                                                         log_error!(args.logger, "Failed to read claimable payment data for HTLC with payment hash {} - was not a pending inbound payment and didn't match our payment key", log_bytes!(payment_hash.0));
7236                                                                                         return Err(DecodeError::InvalidValue);
7237                                                                                 }
7238                                                                         }
7239                                                                 },
7240                                                                 payment_secret: hop_data.payment_secret,
7241                                                         }
7242                                                 } else { return Err(DecodeError::InvalidValue); }
7243                                         },
7244                                         OnionPayload::Spontaneous(payment_preimage) =>
7245                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
7246                                 };
7247                                 claimable_htlcs.insert(payment_hash, (purpose, previous_hops));
7248                         }
7249                 }
7250
7251                 let mut secp_ctx = Secp256k1::new();
7252                 secp_ctx.seeded_randomize(&args.keys_manager.get_secure_random_bytes());
7253
7254                 if !channel_closures.is_empty() {
7255                         pending_events_read.append(&mut channel_closures);
7256                 }
7257
7258                 let our_network_key = match args.keys_manager.get_node_secret(Recipient::Node) {
7259                         Ok(key) => key,
7260                         Err(()) => return Err(DecodeError::InvalidValue)
7261                 };
7262                 let our_network_pubkey = PublicKey::from_secret_key(&secp_ctx, &our_network_key);
7263                 if let Some(network_pubkey) = received_network_pubkey {
7264                         if network_pubkey != our_network_pubkey {
7265                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
7266                                 return Err(DecodeError::InvalidValue);
7267                         }
7268                 }
7269
7270                 let mut outbound_scid_aliases = HashSet::new();
7271                 for (chan_id, chan) in by_id.iter_mut() {
7272                         if chan.outbound_scid_alias() == 0 {
7273                                 let mut outbound_scid_alias;
7274                                 loop {
7275                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
7276                                                 .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.keys_manager);
7277                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
7278                                 }
7279                                 chan.set_outbound_scid_alias(outbound_scid_alias);
7280                         } else if !outbound_scid_aliases.insert(chan.outbound_scid_alias()) {
7281                                 // Note that in rare cases its possible to hit this while reading an older
7282                                 // channel if we just happened to pick a colliding outbound alias above.
7283                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.outbound_scid_alias());
7284                                 return Err(DecodeError::InvalidValue);
7285                         }
7286                         if chan.is_usable() {
7287                                 if short_to_chan_info.insert(chan.outbound_scid_alias(), (chan.get_counterparty_node_id(), *chan_id)).is_some() {
7288                                         // Note that in rare cases its possible to hit this while reading an older
7289                                         // channel if we just happened to pick a colliding outbound alias above.
7290                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.outbound_scid_alias());
7291                                         return Err(DecodeError::InvalidValue);
7292                                 }
7293                         }
7294                 }
7295
7296                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
7297
7298                 for (_, monitor) in args.channel_monitors.iter() {
7299                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
7300                                 if let Some((payment_purpose, claimable_htlcs)) = claimable_htlcs.remove(&payment_hash) {
7301                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", log_bytes!(payment_hash.0));
7302                                         let mut claimable_amt_msat = 0;
7303                                         for claimable_htlc in claimable_htlcs {
7304                                                 claimable_amt_msat += claimable_htlc.value;
7305
7306                                                 // Add a holding-cell claim of the payment to the Channel, which should be
7307                                                 // applied ~immediately on peer reconnection. Because it won't generate a
7308                                                 // new commitment transaction we can just provide the payment preimage to
7309                                                 // the corresponding ChannelMonitor and nothing else.
7310                                                 //
7311                                                 // We do so directly instead of via the normal ChannelMonitor update
7312                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
7313                                                 // we're not allowed to call it directly yet. Further, we do the update
7314                                                 // without incrementing the ChannelMonitor update ID as there isn't any
7315                                                 // reason to.
7316                                                 // If we were to generate a new ChannelMonitor update ID here and then
7317                                                 // crash before the user finishes block connect we'd end up force-closing
7318                                                 // this channel as well. On the flip side, there's no harm in restarting
7319                                                 // without the new monitor persisted - we'll end up right back here on
7320                                                 // restart.
7321                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
7322                                                 if let Some(channel) = by_id.get_mut(&previous_channel_id) {
7323                                                         channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
7324                                                 }
7325                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
7326                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
7327                                                 }
7328                                         }
7329                                         pending_events_read.push(events::Event::PaymentClaimed {
7330                                                 payment_hash,
7331                                                 purpose: payment_purpose,
7332                                                 amount_msat: claimable_amt_msat,
7333                                         });
7334                                 }
7335                         }
7336                 }
7337
7338                 let channel_manager = ChannelManager {
7339                         genesis_hash,
7340                         fee_estimator: bounded_fee_estimator,
7341                         chain_monitor: args.chain_monitor,
7342                         tx_broadcaster: args.tx_broadcaster,
7343
7344                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
7345
7346                         channel_state: Mutex::new(ChannelHolder {
7347                                 by_id,
7348                                 short_to_chan_info,
7349                                 claimable_htlcs,
7350                                 pending_msg_events: Vec::new(),
7351                         }),
7352                         inbound_payment_key: expanded_inbound_key,
7353                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
7354                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
7355
7356                         forward_htlcs: Mutex::new(forward_htlcs),
7357                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
7358                         id_to_peer: Mutex::new(id_to_peer),
7359                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
7360
7361                         probing_cookie_secret: probing_cookie_secret.unwrap(),
7362
7363                         our_network_key,
7364                         our_network_pubkey,
7365                         secp_ctx,
7366
7367                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
7368
7369                         per_peer_state: RwLock::new(per_peer_state),
7370
7371                         pending_events: Mutex::new(pending_events_read),
7372                         pending_background_events: Mutex::new(pending_background_events_read),
7373                         total_consistency_lock: RwLock::new(()),
7374                         persistence_notifier: Notifier::new(),
7375
7376                         keys_manager: args.keys_manager,
7377                         logger: args.logger,
7378                         default_configuration: args.default_config,
7379                 };
7380
7381                 for htlc_source in failed_htlcs.drain(..) {
7382                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
7383                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
7384                         channel_manager.fail_htlc_backwards_internal(source, &payment_hash, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
7385                 }
7386
7387                 //TODO: Broadcast channel update for closed channels, but only after we've made a
7388                 //connection or two.
7389
7390                 Ok((best_block_hash.clone(), channel_manager))
7391         }
7392 }
7393
7394 #[cfg(test)]
7395 mod tests {
7396         use bitcoin::hashes::Hash;
7397         use bitcoin::hashes::sha256::Hash as Sha256;
7398         use core::time::Duration;
7399         use core::sync::atomic::Ordering;
7400         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
7401         use crate::ln::channelmanager::{self, inbound_payment, PaymentId, PaymentSendFailure};
7402         use crate::ln::functional_test_utils::*;
7403         use crate::ln::msgs;
7404         use crate::ln::msgs::ChannelMessageHandler;
7405         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
7406         use crate::util::errors::APIError;
7407         use crate::util::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
7408         use crate::util::test_utils;
7409         use crate::chain::keysinterface::KeysInterface;
7410
7411         #[test]
7412         fn test_notify_limits() {
7413                 // Check that a few cases which don't require the persistence of a new ChannelManager,
7414                 // indeed, do not cause the persistence of a new ChannelManager.
7415                 let chanmon_cfgs = create_chanmon_cfgs(3);
7416                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
7417                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
7418                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
7419
7420                 // All nodes start with a persistable update pending as `create_network` connects each node
7421                 // with all other nodes to make most tests simpler.
7422                 assert!(nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7423                 assert!(nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7424                 assert!(nodes[2].node.await_persistable_update_timeout(Duration::from_millis(1)));
7425
7426                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1, channelmanager::provided_init_features(), channelmanager::provided_init_features());
7427
7428                 // We check that the channel info nodes have doesn't change too early, even though we try
7429                 // to connect messages with new values
7430                 chan.0.contents.fee_base_msat *= 2;
7431                 chan.1.contents.fee_base_msat *= 2;
7432                 let node_a_chan_info = nodes[0].node.list_channels()[0].clone();
7433                 let node_b_chan_info = nodes[1].node.list_channels()[0].clone();
7434
7435                 // The first two nodes (which opened a channel) should now require fresh persistence
7436                 assert!(nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7437                 assert!(nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7438                 // ... but the last node should not.
7439                 assert!(!nodes[2].node.await_persistable_update_timeout(Duration::from_millis(1)));
7440                 // After persisting the first two nodes they should no longer need fresh persistence.
7441                 assert!(!nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7442                 assert!(!nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7443
7444                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
7445                 // about the channel.
7446                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
7447                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
7448                 assert!(!nodes[2].node.await_persistable_update_timeout(Duration::from_millis(1)));
7449
7450                 // The nodes which are a party to the channel should also ignore messages from unrelated
7451                 // parties.
7452                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
7453                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
7454                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
7455                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
7456                 assert!(!nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7457                 assert!(!nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7458
7459                 // At this point the channel info given by peers should still be the same.
7460                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
7461                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
7462
7463                 // An earlier version of handle_channel_update didn't check the directionality of the
7464                 // update message and would always update the local fee info, even if our peer was
7465                 // (spuriously) forwarding us our own channel_update.
7466                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
7467                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
7468                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
7469
7470                 // First deliver each peers' own message, checking that the node doesn't need to be
7471                 // persisted and that its channel info remains the same.
7472                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
7473                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
7474                 assert!(!nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7475                 assert!(!nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7476                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
7477                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
7478
7479                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
7480                 // the channel info has updated.
7481                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
7482                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
7483                 assert!(nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7484                 assert!(nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7485                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
7486                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
7487         }
7488
7489         #[test]
7490         fn test_keysend_dup_hash_partial_mpp() {
7491                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
7492                 // expected.
7493                 let chanmon_cfgs = create_chanmon_cfgs(2);
7494                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7495                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7496                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7497                 create_announced_chan_between_nodes(&nodes, 0, 1, channelmanager::provided_init_features(), channelmanager::provided_init_features());
7498
7499                 // First, send a partial MPP payment.
7500                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
7501                 let mut mpp_route = route.clone();
7502                 mpp_route.paths.push(mpp_route.paths[0].clone());
7503
7504                 let payment_id = PaymentId([42; 32]);
7505                 // Use the utility function send_payment_along_path to send the payment with MPP data which
7506                 // indicates there are more HTLCs coming.
7507                 let cur_height = CHAN_CONFIRM_DEPTH + 1; // route_payment calls send_payment, which adds 1 to the current height. So we do the same here to match.
7508                 let session_privs = nodes[0].node.add_new_pending_payment(our_payment_hash, Some(payment_secret), payment_id, &mpp_route).unwrap();
7509                 nodes[0].node.send_payment_along_path(&mpp_route.paths[0], &route.payment_params, &our_payment_hash, &Some(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
7510                 check_added_monitors!(nodes[0], 1);
7511                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7512                 assert_eq!(events.len(), 1);
7513                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
7514
7515                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
7516                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage), PaymentId(payment_preimage.0)).unwrap();
7517                 check_added_monitors!(nodes[0], 1);
7518                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7519                 assert_eq!(events.len(), 1);
7520                 let ev = events.drain(..).next().unwrap();
7521                 let payment_event = SendEvent::from_event(ev);
7522                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7523                 check_added_monitors!(nodes[1], 0);
7524                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7525                 expect_pending_htlcs_forwardable!(nodes[1]);
7526                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
7527                 check_added_monitors!(nodes[1], 1);
7528                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7529                 assert!(updates.update_add_htlcs.is_empty());
7530                 assert!(updates.update_fulfill_htlcs.is_empty());
7531                 assert_eq!(updates.update_fail_htlcs.len(), 1);
7532                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7533                 assert!(updates.update_fee.is_none());
7534                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
7535                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
7536                 expect_payment_failed!(nodes[0], our_payment_hash, true);
7537
7538                 // Send the second half of the original MPP payment.
7539                 nodes[0].node.send_payment_along_path(&mpp_route.paths[1], &route.payment_params, &our_payment_hash, &Some(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
7540                 check_added_monitors!(nodes[0], 1);
7541                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7542                 assert_eq!(events.len(), 1);
7543                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
7544
7545                 // Claim the full MPP payment. Note that we can't use a test utility like
7546                 // claim_funds_along_route because the ordering of the messages causes the second half of the
7547                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
7548                 // lightning messages manually.
7549                 nodes[1].node.claim_funds(payment_preimage);
7550                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
7551                 check_added_monitors!(nodes[1], 2);
7552
7553                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7554                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
7555                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
7556                 check_added_monitors!(nodes[0], 1);
7557                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
7558                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
7559                 check_added_monitors!(nodes[1], 1);
7560                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7561                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
7562                 check_added_monitors!(nodes[1], 1);
7563                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
7564                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
7565                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
7566                 check_added_monitors!(nodes[0], 1);
7567                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
7568                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
7569                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
7570                 check_added_monitors!(nodes[0], 1);
7571                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
7572                 check_added_monitors!(nodes[1], 1);
7573                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
7574                 check_added_monitors!(nodes[1], 1);
7575                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
7576                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
7577                 check_added_monitors!(nodes[0], 1);
7578
7579                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
7580                 // path's success and a PaymentPathSuccessful event for each path's success.
7581                 let events = nodes[0].node.get_and_clear_pending_events();
7582                 assert_eq!(events.len(), 3);
7583                 match events[0] {
7584                         Event::PaymentSent { payment_id: ref id, payment_preimage: ref preimage, payment_hash: ref hash, .. } => {
7585                                 assert_eq!(Some(payment_id), *id);
7586                                 assert_eq!(payment_preimage, *preimage);
7587                                 assert_eq!(our_payment_hash, *hash);
7588                         },
7589                         _ => panic!("Unexpected event"),
7590                 }
7591                 match events[1] {
7592                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
7593                                 assert_eq!(payment_id, *actual_payment_id);
7594                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
7595                                 assert_eq!(route.paths[0], *path);
7596                         },
7597                         _ => panic!("Unexpected event"),
7598                 }
7599                 match events[2] {
7600                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
7601                                 assert_eq!(payment_id, *actual_payment_id);
7602                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
7603                                 assert_eq!(route.paths[0], *path);
7604                         },
7605                         _ => panic!("Unexpected event"),
7606                 }
7607         }
7608
7609         #[test]
7610         fn test_keysend_dup_payment_hash() {
7611                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
7612                 //      outbound regular payment fails as expected.
7613                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
7614                 //      fails as expected.
7615                 let chanmon_cfgs = create_chanmon_cfgs(2);
7616                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7617                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7618                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7619                 create_announced_chan_between_nodes(&nodes, 0, 1, channelmanager::provided_init_features(), channelmanager::provided_init_features());
7620                 let scorer = test_utils::TestScorer::with_penalty(0);
7621                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7622
7623                 // To start (1), send a regular payment but don't claim it.
7624                 let expected_route = [&nodes[1]];
7625                 let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &expected_route, 100_000);
7626
7627                 // Next, attempt a keysend payment and make sure it fails.
7628                 let route_params = RouteParameters {
7629                         payment_params: PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id()),
7630                         final_value_msat: 100_000,
7631                         final_cltv_expiry_delta: TEST_FINAL_CLTV,
7632                 };
7633                 let route = find_route(
7634                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
7635                         None, nodes[0].logger, &scorer, &random_seed_bytes
7636                 ).unwrap();
7637                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage), PaymentId(payment_preimage.0)).unwrap();
7638                 check_added_monitors!(nodes[0], 1);
7639                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7640                 assert_eq!(events.len(), 1);
7641                 let ev = events.drain(..).next().unwrap();
7642                 let payment_event = SendEvent::from_event(ev);
7643                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7644                 check_added_monitors!(nodes[1], 0);
7645                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7646                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
7647                 // fails), the second will process the resulting failure and fail the HTLC backward
7648                 expect_pending_htlcs_forwardable!(nodes[1]);
7649                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
7650                 check_added_monitors!(nodes[1], 1);
7651                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7652                 assert!(updates.update_add_htlcs.is_empty());
7653                 assert!(updates.update_fulfill_htlcs.is_empty());
7654                 assert_eq!(updates.update_fail_htlcs.len(), 1);
7655                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7656                 assert!(updates.update_fee.is_none());
7657                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
7658                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
7659                 expect_payment_failed!(nodes[0], payment_hash, true);
7660
7661                 // Finally, claim the original payment.
7662                 claim_payment(&nodes[0], &expected_route, payment_preimage);
7663
7664                 // To start (2), send a keysend payment but don't claim it.
7665                 let payment_preimage = PaymentPreimage([42; 32]);
7666                 let route = find_route(
7667                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
7668                         None, nodes[0].logger, &scorer, &random_seed_bytes
7669                 ).unwrap();
7670                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage), PaymentId(payment_preimage.0)).unwrap();
7671                 check_added_monitors!(nodes[0], 1);
7672                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7673                 assert_eq!(events.len(), 1);
7674                 let event = events.pop().unwrap();
7675                 let path = vec![&nodes[1]];
7676                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
7677
7678                 // Next, attempt a regular payment and make sure it fails.
7679                 let payment_secret = PaymentSecret([43; 32]);
7680                 nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret), PaymentId(payment_hash.0)).unwrap();
7681                 check_added_monitors!(nodes[0], 1);
7682                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7683                 assert_eq!(events.len(), 1);
7684                 let ev = events.drain(..).next().unwrap();
7685                 let payment_event = SendEvent::from_event(ev);
7686                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7687                 check_added_monitors!(nodes[1], 0);
7688                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7689                 expect_pending_htlcs_forwardable!(nodes[1]);
7690                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
7691                 check_added_monitors!(nodes[1], 1);
7692                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7693                 assert!(updates.update_add_htlcs.is_empty());
7694                 assert!(updates.update_fulfill_htlcs.is_empty());
7695                 assert_eq!(updates.update_fail_htlcs.len(), 1);
7696                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7697                 assert!(updates.update_fee.is_none());
7698                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
7699                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
7700                 expect_payment_failed!(nodes[0], payment_hash, true);
7701
7702                 // Finally, succeed the keysend payment.
7703                 claim_payment(&nodes[0], &expected_route, payment_preimage);
7704         }
7705
7706         #[test]
7707         fn test_keysend_hash_mismatch() {
7708                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
7709                 // preimage doesn't match the msg's payment hash.
7710                 let chanmon_cfgs = create_chanmon_cfgs(2);
7711                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7712                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7713                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7714
7715                 let payer_pubkey = nodes[0].node.get_our_node_id();
7716                 let payee_pubkey = nodes[1].node.get_our_node_id();
7717                 nodes[0].node.peer_connected(&payee_pubkey, &msgs::Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
7718                 nodes[1].node.peer_connected(&payer_pubkey, &msgs::Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
7719
7720                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1], channelmanager::provided_init_features(), channelmanager::provided_init_features());
7721                 let route_params = RouteParameters {
7722                         payment_params: PaymentParameters::for_keysend(payee_pubkey),
7723                         final_value_msat: 10_000,
7724                         final_cltv_expiry_delta: 40,
7725                 };
7726                 let network_graph = nodes[0].network_graph;
7727                 let first_hops = nodes[0].node.list_usable_channels();
7728                 let scorer = test_utils::TestScorer::with_penalty(0);
7729                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7730                 let route = find_route(
7731                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
7732                         nodes[0].logger, &scorer, &random_seed_bytes
7733                 ).unwrap();
7734
7735                 let test_preimage = PaymentPreimage([42; 32]);
7736                 let mismatch_payment_hash = PaymentHash([43; 32]);
7737                 let session_privs = nodes[0].node.add_new_pending_payment(mismatch_payment_hash, None, PaymentId(mismatch_payment_hash.0), &route).unwrap();
7738                 nodes[0].node.send_payment_internal(&route, mismatch_payment_hash, &None, Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
7739                 check_added_monitors!(nodes[0], 1);
7740
7741                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
7742                 assert_eq!(updates.update_add_htlcs.len(), 1);
7743                 assert!(updates.update_fulfill_htlcs.is_empty());
7744                 assert!(updates.update_fail_htlcs.is_empty());
7745                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7746                 assert!(updates.update_fee.is_none());
7747                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
7748
7749                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Payment preimage didn't match payment hash".to_string(), 1);
7750         }
7751
7752         #[test]
7753         fn test_keysend_msg_with_secret_err() {
7754                 // Test that we error as expected if we receive a keysend payment that includes a payment secret.
7755                 let chanmon_cfgs = create_chanmon_cfgs(2);
7756                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7757                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7758                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7759
7760                 let payer_pubkey = nodes[0].node.get_our_node_id();
7761                 let payee_pubkey = nodes[1].node.get_our_node_id();
7762                 nodes[0].node.peer_connected(&payee_pubkey, &msgs::Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
7763                 nodes[1].node.peer_connected(&payer_pubkey, &msgs::Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
7764
7765                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1], channelmanager::provided_init_features(), channelmanager::provided_init_features());
7766                 let route_params = RouteParameters {
7767                         payment_params: PaymentParameters::for_keysend(payee_pubkey),
7768                         final_value_msat: 10_000,
7769                         final_cltv_expiry_delta: 40,
7770                 };
7771                 let network_graph = nodes[0].network_graph;
7772                 let first_hops = nodes[0].node.list_usable_channels();
7773                 let scorer = test_utils::TestScorer::with_penalty(0);
7774                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7775                 let route = find_route(
7776                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
7777                         nodes[0].logger, &scorer, &random_seed_bytes
7778                 ).unwrap();
7779
7780                 let test_preimage = PaymentPreimage([42; 32]);
7781                 let test_secret = PaymentSecret([43; 32]);
7782                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
7783                 let session_privs = nodes[0].node.add_new_pending_payment(payment_hash, Some(test_secret), PaymentId(payment_hash.0), &route).unwrap();
7784                 nodes[0].node.send_payment_internal(&route, payment_hash, &Some(test_secret), Some(test_preimage), PaymentId(payment_hash.0), None, session_privs).unwrap();
7785                 check_added_monitors!(nodes[0], 1);
7786
7787                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
7788                 assert_eq!(updates.update_add_htlcs.len(), 1);
7789                 assert!(updates.update_fulfill_htlcs.is_empty());
7790                 assert!(updates.update_fail_htlcs.is_empty());
7791                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7792                 assert!(updates.update_fee.is_none());
7793                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
7794
7795                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "We don't support MPP keysend payments".to_string(), 1);
7796         }
7797
7798         #[test]
7799         fn test_multi_hop_missing_secret() {
7800                 let chanmon_cfgs = create_chanmon_cfgs(4);
7801                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
7802                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
7803                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
7804
7805                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1, channelmanager::provided_init_features(), channelmanager::provided_init_features()).0.contents.short_channel_id;
7806                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2, channelmanager::provided_init_features(), channelmanager::provided_init_features()).0.contents.short_channel_id;
7807                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3, channelmanager::provided_init_features(), channelmanager::provided_init_features()).0.contents.short_channel_id;
7808                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3, channelmanager::provided_init_features(), channelmanager::provided_init_features()).0.contents.short_channel_id;
7809
7810                 // Marshall an MPP route.
7811                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
7812                 let path = route.paths[0].clone();
7813                 route.paths.push(path);
7814                 route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
7815                 route.paths[0][0].short_channel_id = chan_1_id;
7816                 route.paths[0][1].short_channel_id = chan_3_id;
7817                 route.paths[1][0].pubkey = nodes[2].node.get_our_node_id();
7818                 route.paths[1][0].short_channel_id = chan_2_id;
7819                 route.paths[1][1].short_channel_id = chan_4_id;
7820
7821                 match nodes[0].node.send_payment(&route, payment_hash, &None, PaymentId(payment_hash.0)).unwrap_err() {
7822                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
7823                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))                        },
7824                         _ => panic!("unexpected error")
7825                 }
7826         }
7827
7828         #[test]
7829         fn bad_inbound_payment_hash() {
7830                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
7831                 let chanmon_cfgs = create_chanmon_cfgs(2);
7832                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7833                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7834                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7835
7836                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
7837                 let payment_data = msgs::FinalOnionHopData {
7838                         payment_secret,
7839                         total_msat: 100_000,
7840                 };
7841
7842                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
7843                 // payment verification fails as expected.
7844                 let mut bad_payment_hash = payment_hash.clone();
7845                 bad_payment_hash.0[0] += 1;
7846                 match inbound_payment::verify(bad_payment_hash, &payment_data, nodes[0].node.highest_seen_timestamp.load(Ordering::Acquire) as u64, &nodes[0].node.inbound_payment_key, &nodes[0].logger) {
7847                         Ok(_) => panic!("Unexpected ok"),
7848                         Err(()) => {
7849                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment".to_string(), "Failing HTLC with user-generated payment_hash".to_string(), 1);
7850                         }
7851                 }
7852
7853                 // Check that using the original payment hash succeeds.
7854                 assert!(inbound_payment::verify(payment_hash, &payment_data, nodes[0].node.highest_seen_timestamp.load(Ordering::Acquire) as u64, &nodes[0].node.inbound_payment_key, &nodes[0].logger).is_ok());
7855         }
7856
7857         #[test]
7858         fn test_id_to_peer_coverage() {
7859                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
7860                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
7861                 // the channel is successfully closed.
7862                 let chanmon_cfgs = create_chanmon_cfgs(2);
7863                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7864                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7865                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7866
7867                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
7868                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
7869                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), channelmanager::provided_init_features(), &open_channel);
7870                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
7871                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), channelmanager::provided_init_features(), &accept_channel);
7872
7873                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
7874                 let channel_id = &tx.txid().into_inner();
7875                 {
7876                         // Ensure that the `id_to_peer` map is empty until either party has received the
7877                         // funding transaction, and have the real `channel_id`.
7878                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
7879                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
7880                 }
7881
7882                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
7883                 {
7884                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
7885                         // as it has the funding transaction.
7886                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
7887                         assert_eq!(nodes_0_lock.len(), 1);
7888                         assert!(nodes_0_lock.contains_key(channel_id));
7889
7890                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
7891                 }
7892
7893                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
7894
7895                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
7896                 {
7897                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
7898                         assert_eq!(nodes_0_lock.len(), 1);
7899                         assert!(nodes_0_lock.contains_key(channel_id));
7900
7901                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
7902                         // as it has the funding transaction.
7903                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
7904                         assert_eq!(nodes_1_lock.len(), 1);
7905                         assert!(nodes_1_lock.contains_key(channel_id));
7906                 }
7907                 check_added_monitors!(nodes[1], 1);
7908                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
7909                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
7910                 check_added_monitors!(nodes[0], 1);
7911                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
7912                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
7913                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
7914
7915                 nodes[0].node.close_channel(channel_id, &nodes[1].node.get_our_node_id()).unwrap();
7916                 nodes[1].node.handle_shutdown(&nodes[0].node.get_our_node_id(), &channelmanager::provided_init_features(), &get_event_msg!(nodes[0], MessageSendEvent::SendShutdown, nodes[1].node.get_our_node_id()));
7917                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
7918                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &channelmanager::provided_init_features(), &nodes_1_shutdown);
7919
7920                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
7921                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
7922                 {
7923                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
7924                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
7925                         // fee for the closing transaction has been negotiated and the parties has the other
7926                         // party's signature for the fee negotiated closing transaction.)
7927                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
7928                         assert_eq!(nodes_0_lock.len(), 1);
7929                         assert!(nodes_0_lock.contains_key(channel_id));
7930
7931                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
7932                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
7933                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
7934                         // kept in the `nodes[1]`'s `id_to_peer` map.
7935                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
7936                         assert_eq!(nodes_1_lock.len(), 1);
7937                         assert!(nodes_1_lock.contains_key(channel_id));
7938                 }
7939
7940                 nodes[0].node.handle_closing_signed(&nodes[1].node.get_our_node_id(), &get_event_msg!(nodes[1], MessageSendEvent::SendClosingSigned, nodes[0].node.get_our_node_id()));
7941                 {
7942                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
7943                         // therefore has all it needs to fully close the channel (both signatures for the
7944                         // closing transaction).
7945                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
7946                         // fully closed by `nodes[0]`.
7947                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
7948
7949                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
7950                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
7951                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
7952                         assert_eq!(nodes_1_lock.len(), 1);
7953                         assert!(nodes_1_lock.contains_key(channel_id));
7954                 }
7955
7956                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
7957
7958                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
7959                 {
7960                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
7961                         // they both have everything required to fully close the channel.
7962                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
7963                 }
7964                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
7965
7966                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure);
7967                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
7968         }
7969 }
7970
7971 #[cfg(all(any(test, feature = "_test_utils"), feature = "_bench_unstable"))]
7972 pub mod bench {
7973         use crate::chain::Listen;
7974         use crate::chain::chainmonitor::{ChainMonitor, Persist};
7975         use crate::chain::keysinterface::{KeysManager, KeysInterface, InMemorySigner};
7976         use crate::ln::channelmanager::{self, BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId};
7977         use crate::ln::functional_test_utils::*;
7978         use crate::ln::msgs::{ChannelMessageHandler, Init};
7979         use crate::routing::gossip::NetworkGraph;
7980         use crate::routing::router::{PaymentParameters, get_route};
7981         use crate::util::test_utils;
7982         use crate::util::config::UserConfig;
7983         use crate::util::events::{Event, MessageSendEvent, MessageSendEventsProvider};
7984
7985         use bitcoin::hashes::Hash;
7986         use bitcoin::hashes::sha256::Hash as Sha256;
7987         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
7988
7989         use crate::sync::{Arc, Mutex};
7990
7991         use test::Bencher;
7992
7993         struct NodeHolder<'a, P: Persist<InMemorySigner>> {
7994                 node: &'a ChannelManager<InMemorySigner,
7995                         &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
7996                                 &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
7997                                 &'a test_utils::TestLogger, &'a P>,
7998                         &'a test_utils::TestBroadcaster, &'a KeysManager,
7999                         &'a test_utils::TestFeeEstimator, &'a test_utils::TestLogger>
8000         }
8001
8002         #[cfg(test)]
8003         #[bench]
8004         fn bench_sends(bench: &mut Bencher) {
8005                 bench_two_sends(bench, test_utils::TestPersister::new(), test_utils::TestPersister::new());
8006         }
8007
8008         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Bencher, persister_a: P, persister_b: P) {
8009                 // Do a simple benchmark of sending a payment back and forth between two nodes.
8010                 // Note that this is unrealistic as each payment send will require at least two fsync
8011                 // calls per node.
8012                 let network = bitcoin::Network::Testnet;
8013                 let genesis_hash = bitcoin::blockdata::constants::genesis_block(network).header.block_hash();
8014
8015                 let tx_broadcaster = test_utils::TestBroadcaster{txn_broadcasted: Mutex::new(Vec::new()), blocks: Arc::new(Mutex::new(Vec::new()))};
8016                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
8017
8018                 let mut config: UserConfig = Default::default();
8019                 config.channel_handshake_config.minimum_depth = 1;
8020
8021                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
8022                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
8023                 let seed_a = [1u8; 32];
8024                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
8025                 let node_a = ChannelManager::new(&fee_estimator, &chain_monitor_a, &tx_broadcaster, &logger_a, &keys_manager_a, config.clone(), ChainParameters {
8026                         network,
8027                         best_block: BestBlock::from_genesis(network),
8028                 });
8029                 let node_a_holder = NodeHolder { node: &node_a };
8030
8031                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
8032                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
8033                 let seed_b = [2u8; 32];
8034                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
8035                 let node_b = ChannelManager::new(&fee_estimator, &chain_monitor_b, &tx_broadcaster, &logger_b, &keys_manager_b, config.clone(), ChainParameters {
8036                         network,
8037                         best_block: BestBlock::from_genesis(network),
8038                 });
8039                 let node_b_holder = NodeHolder { node: &node_b };
8040
8041                 node_a.peer_connected(&node_b.get_our_node_id(), &Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
8042                 node_b.peer_connected(&node_a.get_our_node_id(), &Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
8043                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
8044                 node_b.handle_open_channel(&node_a.get_our_node_id(), channelmanager::provided_init_features(), &get_event_msg!(node_a_holder, MessageSendEvent::SendOpenChannel, node_b.get_our_node_id()));
8045                 node_a.handle_accept_channel(&node_b.get_our_node_id(), channelmanager::provided_init_features(), &get_event_msg!(node_b_holder, MessageSendEvent::SendAcceptChannel, node_a.get_our_node_id()));
8046
8047                 let tx;
8048                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
8049                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
8050                                 value: 8_000_000, script_pubkey: output_script,
8051                         }]};
8052                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
8053                 } else { panic!(); }
8054
8055                 node_b.handle_funding_created(&node_a.get_our_node_id(), &get_event_msg!(node_a_holder, MessageSendEvent::SendFundingCreated, node_b.get_our_node_id()));
8056                 node_a.handle_funding_signed(&node_b.get_our_node_id(), &get_event_msg!(node_b_holder, MessageSendEvent::SendFundingSigned, node_a.get_our_node_id()));
8057
8058                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
8059
8060                 let block = Block {
8061                         header: BlockHeader { version: 0x20000000, prev_blockhash: genesis_hash, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 },
8062                         txdata: vec![tx],
8063                 };
8064                 Listen::block_connected(&node_a, &block, 1);
8065                 Listen::block_connected(&node_b, &block, 1);
8066
8067                 node_a.handle_channel_ready(&node_b.get_our_node_id(), &get_event_msg!(node_b_holder, MessageSendEvent::SendChannelReady, node_a.get_our_node_id()));
8068                 let msg_events = node_a.get_and_clear_pending_msg_events();
8069                 assert_eq!(msg_events.len(), 2);
8070                 match msg_events[0] {
8071                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
8072                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
8073                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
8074                         },
8075                         _ => panic!(),
8076                 }
8077                 match msg_events[1] {
8078                         MessageSendEvent::SendChannelUpdate { .. } => {},
8079                         _ => panic!(),
8080                 }
8081
8082                 let dummy_graph = NetworkGraph::new(genesis_hash, &logger_a);
8083
8084                 let mut payment_count: u64 = 0;
8085                 macro_rules! send_payment {
8086                         ($node_a: expr, $node_b: expr) => {
8087                                 let usable_channels = $node_a.list_usable_channels();
8088                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id())
8089                                         .with_features(channelmanager::provided_invoice_features());
8090                                 let scorer = test_utils::TestScorer::with_penalty(0);
8091                                 let seed = [3u8; 32];
8092                                 let keys_manager = KeysManager::new(&seed, 42, 42);
8093                                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8094                                 let route = get_route(&$node_a.get_our_node_id(), &payment_params, &dummy_graph.read_only(),
8095                                         Some(&usable_channels.iter().map(|r| r).collect::<Vec<_>>()), 10_000, TEST_FINAL_CLTV, &logger_a, &scorer, &random_seed_bytes).unwrap();
8096
8097                                 let mut payment_preimage = PaymentPreimage([0; 32]);
8098                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
8099                                 payment_count += 1;
8100                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
8101                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200).unwrap();
8102
8103                                 $node_a.send_payment(&route, payment_hash, &Some(payment_secret), PaymentId(payment_hash.0)).unwrap();
8104                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
8105                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
8106                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
8107                                 let (raa, cs) = get_revoke_commit_msgs!(NodeHolder { node: &$node_b }, $node_a.get_our_node_id());
8108                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
8109                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
8110                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &get_event_msg!(NodeHolder { node: &$node_a }, MessageSendEvent::SendRevokeAndACK, $node_b.get_our_node_id()));
8111
8112                                 expect_pending_htlcs_forwardable!(NodeHolder { node: &$node_b });
8113                                 expect_payment_received!(NodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
8114                                 $node_b.claim_funds(payment_preimage);
8115                                 expect_payment_claimed!(NodeHolder { node: &$node_b }, payment_hash, 10_000);
8116
8117                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
8118                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
8119                                                 assert_eq!(node_id, $node_a.get_our_node_id());
8120                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
8121                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
8122                                         },
8123                                         _ => panic!("Failed to generate claim event"),
8124                                 }
8125
8126                                 let (raa, cs) = get_revoke_commit_msgs!(NodeHolder { node: &$node_a }, $node_b.get_our_node_id());
8127                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
8128                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
8129                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &get_event_msg!(NodeHolder { node: &$node_b }, MessageSendEvent::SendRevokeAndACK, $node_a.get_our_node_id()));
8130
8131                                 expect_payment_sent!(NodeHolder { node: &$node_a }, payment_preimage);
8132                         }
8133                 }
8134
8135                 bench.iter(|| {
8136                         send_payment!(node_a, node_b);
8137                         send_payment!(node_b, node_a);
8138                 });
8139         }
8140 }