Merge pull request #3101 from tnull/2024-06-fix-tx-sync
[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 [`Router`] 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 use bitcoin::blockdata::block::Header;
21 use bitcoin::blockdata::transaction::Transaction;
22 use bitcoin::blockdata::constants::ChainHash;
23 use bitcoin::key::constants::SECRET_KEY_SIZE;
24 use bitcoin::network::Network;
25
26 use bitcoin::hashes::Hash;
27 use bitcoin::hashes::sha256::Hash as Sha256;
28 use bitcoin::hash_types::{BlockHash, Txid};
29
30 use bitcoin::secp256k1::{SecretKey,PublicKey};
31 use bitcoin::secp256k1::Secp256k1;
32 use bitcoin::{secp256k1, Sequence};
33
34 use crate::blinded_path::{BlindedPath, NodeIdLookUp};
35 use crate::blinded_path::message::ForwardNode;
36 use crate::blinded_path::payment::{Bolt12OfferContext, Bolt12RefundContext, PaymentConstraints, PaymentContext, ReceiveTlvs};
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, WithChannelMonitor, 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 use crate::events;
43 use crate::events::{Event, EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination, PaymentFailureReason};
44 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
45 // construct one themselves.
46 use crate::ln::inbound_payment;
47 use crate::ln::types::{ChannelId, PaymentHash, PaymentPreimage, PaymentSecret};
48 use crate::ln::channel::{self, Channel, ChannelPhase, ChannelContext, ChannelError, ChannelUpdateStatus, ShutdownResult, UnfundedChannelContext, UpdateFulfillCommitFetch, OutboundV1Channel, InboundV1Channel, WithChannelContext};
49 use crate::ln::channel_state::ChannelDetails;
50 use crate::ln::features::{Bolt12InvoiceFeatures, ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
51 #[cfg(any(feature = "_test_utils", test))]
52 use crate::ln::features::Bolt11InvoiceFeatures;
53 use crate::routing::router::{BlindedTail, InFlightHtlcs, Path, Payee, PaymentParameters, Route, RouteParameters, Router};
54 use crate::ln::onion_payment::{check_incoming_htlc_cltv, create_recv_pending_htlc_info, create_fwd_pending_htlc_info, decode_incoming_update_add_htlc_onion, InboundHTLCErr, NextPacketDetails};
55 use crate::ln::msgs;
56 use crate::ln::onion_utils;
57 use crate::ln::onion_utils::{HTLCFailReason, INVALID_ONION_BLINDING};
58 use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError};
59 #[cfg(test)]
60 use crate::ln::outbound_payment;
61 use crate::ln::outbound_payment::{Bolt12PaymentError, OutboundPayments, PaymentAttempts, PendingOutboundPayment, SendAlongPathArgs, StaleExpiration};
62 use crate::ln::wire::Encode;
63 use crate::offers::invoice::{BlindedPayInfo, Bolt12Invoice, DEFAULT_RELATIVE_EXPIRY, DerivedSigningPubkey, ExplicitSigningPubkey, InvoiceBuilder, UnsignedBolt12Invoice};
64 use crate::offers::invoice_error::InvoiceError;
65 use crate::offers::invoice_request::{DerivedPayerId, InvoiceRequestBuilder};
66 use crate::offers::offer::{Offer, OfferBuilder};
67 use crate::offers::parse::Bolt12SemanticError;
68 use crate::offers::refund::{Refund, RefundBuilder};
69 use crate::onion_message::messenger::{new_pending_onion_message, Destination, MessageRouter, PendingOnionMessage, Responder, ResponseInstruction};
70 use crate::onion_message::offers::{OffersMessage, OffersMessageHandler};
71 use crate::sign::{EntropySource, NodeSigner, Recipient, SignerProvider};
72 use crate::sign::ecdsa::EcdsaChannelSigner;
73 use crate::util::config::{UserConfig, ChannelConfig, ChannelConfigUpdate};
74 use crate::util::wakers::{Future, Notifier};
75 use crate::util::scid_utils::fake_scid;
76 use crate::util::string::UntrustedString;
77 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
78 use crate::util::logger::{Level, Logger, WithContext};
79 use crate::util::errors::APIError;
80
81 #[cfg(not(c_bindings))]
82 use {
83         crate::offers::offer::DerivedMetadata,
84         crate::routing::router::DefaultRouter,
85         crate::routing::gossip::NetworkGraph,
86         crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters},
87         crate::sign::KeysManager,
88 };
89 #[cfg(c_bindings)]
90 use {
91         crate::offers::offer::OfferWithDerivedMetadataBuilder,
92         crate::offers::refund::RefundMaybeWithDerivedMetadataBuilder,
93 };
94
95 use alloc::collections::{btree_map, BTreeMap};
96
97 use crate::io;
98 use crate::prelude::*;
99 use core::{cmp, mem};
100 use core::cell::RefCell;
101 use crate::io::Read;
102 use crate::sync::{Arc, Mutex, RwLock, RwLockReadGuard, FairRwLock, LockTestExt, LockHeldState};
103 use core::sync::atomic::{AtomicUsize, AtomicBool, Ordering};
104 use core::time::Duration;
105 use core::ops::Deref;
106
107 // Re-export this for use in the public API.
108 pub use crate::ln::outbound_payment::{PaymentSendFailure, ProbeSendFailure, Retry, RetryableSendFailure, RecipientOnionFields};
109 use crate::ln::script::ShutdownScript;
110
111 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
112 //
113 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
114 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
115 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
116 //
117 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
118 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
119 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
120 // before we forward it.
121 //
122 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
123 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
124 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
125 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
126 // our payment, which we can use to decode errors or inform the user that the payment was sent.
127
128 /// Information about where a received HTLC('s onion) has indicated the HTLC should go.
129 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
130 #[cfg_attr(test, derive(Debug, PartialEq))]
131 pub enum PendingHTLCRouting {
132         /// An HTLC which should be forwarded on to another node.
133         Forward {
134                 /// The onion which should be included in the forwarded HTLC, telling the next hop what to
135                 /// do with the HTLC.
136                 onion_packet: msgs::OnionPacket,
137                 /// The short channel ID of the channel which we were instructed to forward this HTLC to.
138                 ///
139                 /// This could be a real on-chain SCID, an SCID alias, or some other SCID which has meaning
140                 /// to the receiving node, such as one returned from
141                 /// [`ChannelManager::get_intercept_scid`] or [`ChannelManager::get_phantom_scid`].
142                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
143                 /// Set if this HTLC is being forwarded within a blinded path.
144                 blinded: Option<BlindedForward>,
145         },
146         /// The onion indicates that this is a payment for an invoice (supposedly) generated by us.
147         ///
148         /// Note that at this point, we have not checked that the invoice being paid was actually
149         /// generated by us, but rather it's claiming to pay an invoice of ours.
150         Receive {
151                 /// Information about the amount the sender intended to pay and (potential) proof that this
152                 /// is a payment for an invoice we generated. This proof of payment is is also used for
153                 /// linking MPP parts of a larger payment.
154                 payment_data: msgs::FinalOnionHopData,
155                 /// Additional data which we (allegedly) instructed the sender to include in the onion.
156                 ///
157                 /// For HTLCs received by LDK, this will ultimately be exposed in
158                 /// [`Event::PaymentClaimable::onion_fields`] as
159                 /// [`RecipientOnionFields::payment_metadata`].
160                 payment_metadata: Option<Vec<u8>>,
161                 /// The context of the payment included by the recipient in a blinded path, or `None` if a
162                 /// blinded path was not used.
163                 ///
164                 /// Used in part to determine the [`events::PaymentPurpose`].
165                 payment_context: Option<PaymentContext>,
166                 /// CLTV expiry of the received HTLC.
167                 ///
168                 /// Used to track when we should expire pending HTLCs that go unclaimed.
169                 incoming_cltv_expiry: u32,
170                 /// If the onion had forwarding instructions to one of our phantom node SCIDs, this will
171                 /// provide the onion shared secret used to decrypt the next level of forwarding
172                 /// instructions.
173                 phantom_shared_secret: Option<[u8; 32]>,
174                 /// Custom TLVs which were set by the sender.
175                 ///
176                 /// For HTLCs received by LDK, this will ultimately be exposed in
177                 /// [`Event::PaymentClaimable::onion_fields`] as
178                 /// [`RecipientOnionFields::custom_tlvs`].
179                 custom_tlvs: Vec<(u64, Vec<u8>)>,
180                 /// Set if this HTLC is the final hop in a multi-hop blinded path.
181                 requires_blinded_error: bool,
182         },
183         /// The onion indicates that this is for payment to us but which contains the preimage for
184         /// claiming included, and is unrelated to any invoice we'd previously generated (aka a
185         /// "keysend" or "spontaneous" payment).
186         ReceiveKeysend {
187                 /// Information about the amount the sender intended to pay and possibly a token to
188                 /// associate MPP parts of a larger payment.
189                 ///
190                 /// This will only be filled in if receiving MPP keysend payments is enabled, and it being
191                 /// present will cause deserialization to fail on versions of LDK prior to 0.0.116.
192                 payment_data: Option<msgs::FinalOnionHopData>,
193                 /// Preimage for this onion payment. This preimage is provided by the sender and will be
194                 /// used to settle the spontaneous payment.
195                 payment_preimage: PaymentPreimage,
196                 /// Additional data which we (allegedly) instructed the sender to include in the onion.
197                 ///
198                 /// For HTLCs received by LDK, this will ultimately bubble back up as
199                 /// [`RecipientOnionFields::payment_metadata`].
200                 payment_metadata: Option<Vec<u8>>,
201                 /// CLTV expiry of the received HTLC.
202                 ///
203                 /// Used to track when we should expire pending HTLCs that go unclaimed.
204                 incoming_cltv_expiry: u32,
205                 /// Custom TLVs which were set by the sender.
206                 ///
207                 /// For HTLCs received by LDK, these will ultimately bubble back up as
208                 /// [`RecipientOnionFields::custom_tlvs`].
209                 custom_tlvs: Vec<(u64, Vec<u8>)>,
210                 /// Set if this HTLC is the final hop in a multi-hop blinded path.
211                 requires_blinded_error: bool,
212         },
213 }
214
215 /// Information used to forward or fail this HTLC that is being forwarded within a blinded path.
216 #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
217 pub struct BlindedForward {
218         /// The `blinding_point` that was set in the inbound [`msgs::UpdateAddHTLC`], or in the inbound
219         /// onion payload if we're the introduction node. Useful for calculating the next hop's
220         /// [`msgs::UpdateAddHTLC::blinding_point`].
221         pub inbound_blinding_point: PublicKey,
222         /// If needed, this determines how this HTLC should be failed backwards, based on whether we are
223         /// the introduction node.
224         pub failure: BlindedFailure,
225 }
226
227 impl PendingHTLCRouting {
228         // Used to override the onion failure code and data if the HTLC is blinded.
229         fn blinded_failure(&self) -> Option<BlindedFailure> {
230                 match self {
231                         Self::Forward { blinded: Some(BlindedForward { failure, .. }), .. } => Some(*failure),
232                         Self::Receive { requires_blinded_error: true, .. } => Some(BlindedFailure::FromBlindedNode),
233                         Self::ReceiveKeysend { requires_blinded_error: true, .. } => Some(BlindedFailure::FromBlindedNode),
234                         _ => None,
235                 }
236         }
237 }
238
239 /// Information about an incoming HTLC, including the [`PendingHTLCRouting`] describing where it
240 /// should go next.
241 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
242 #[cfg_attr(test, derive(Debug, PartialEq))]
243 pub struct PendingHTLCInfo {
244         /// Further routing details based on whether the HTLC is being forwarded or received.
245         pub routing: PendingHTLCRouting,
246         /// The onion shared secret we build with the sender used to decrypt the onion.
247         ///
248         /// This is later used to encrypt failure packets in the event that the HTLC is failed.
249         pub incoming_shared_secret: [u8; 32],
250         /// Hash of the payment preimage, to lock the payment until the receiver releases the preimage.
251         pub payment_hash: PaymentHash,
252         /// Amount received in the incoming HTLC.
253         ///
254         /// This field was added in LDK 0.0.113 and will be `None` for objects written by prior
255         /// versions.
256         pub incoming_amt_msat: Option<u64>,
257         /// The amount the sender indicated should be forwarded on to the next hop or amount the sender
258         /// intended for us to receive for received payments.
259         ///
260         /// If the received amount is less than this for received payments, an intermediary hop has
261         /// attempted to steal some of our funds and we should fail the HTLC (the sender should retry
262         /// it along another path).
263         ///
264         /// Because nodes can take less than their required fees, and because senders may wish to
265         /// improve their own privacy, this amount may be less than [`Self::incoming_amt_msat`] for
266         /// received payments. In such cases, recipients must handle this HTLC as if it had received
267         /// [`Self::outgoing_amt_msat`].
268         pub outgoing_amt_msat: u64,
269         /// The CLTV the sender has indicated we should set on the forwarded HTLC (or has indicated
270         /// should have been set on the received HTLC for received payments).
271         pub outgoing_cltv_value: u32,
272         /// The fee taken for this HTLC in addition to the standard protocol HTLC fees.
273         ///
274         /// If this is a payment for forwarding, this is the fee we are taking before forwarding the
275         /// HTLC.
276         ///
277         /// If this is a received payment, this is the fee that our counterparty took.
278         ///
279         /// This is used to allow LSPs to take fees as a part of payments, without the sender having to
280         /// shoulder them.
281         pub skimmed_fee_msat: Option<u64>,
282 }
283
284 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
285 pub(super) enum HTLCFailureMsg {
286         Relay(msgs::UpdateFailHTLC),
287         Malformed(msgs::UpdateFailMalformedHTLC),
288 }
289
290 /// Stores whether we can't forward an HTLC or relevant forwarding info
291 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
292 pub(super) enum PendingHTLCStatus {
293         Forward(PendingHTLCInfo),
294         Fail(HTLCFailureMsg),
295 }
296
297 #[cfg_attr(test, derive(Clone, Debug, PartialEq))]
298 pub(super) struct PendingAddHTLCInfo {
299         pub(super) forward_info: PendingHTLCInfo,
300
301         // These fields are produced in `forward_htlcs()` and consumed in
302         // `process_pending_htlc_forwards()` for constructing the
303         // `HTLCSource::PreviousHopData` for failed and forwarded
304         // HTLCs.
305         //
306         // Note that this may be an outbound SCID alias for the associated channel.
307         prev_short_channel_id: u64,
308         prev_htlc_id: u64,
309         prev_channel_id: ChannelId,
310         prev_funding_outpoint: OutPoint,
311         prev_user_channel_id: u128,
312 }
313
314 #[cfg_attr(test, derive(Clone, Debug, PartialEq))]
315 pub(super) enum HTLCForwardInfo {
316         AddHTLC(PendingAddHTLCInfo),
317         FailHTLC {
318                 htlc_id: u64,
319                 err_packet: msgs::OnionErrorPacket,
320         },
321         FailMalformedHTLC {
322                 htlc_id: u64,
323                 failure_code: u16,
324                 sha256_of_onion: [u8; 32],
325         },
326 }
327
328 /// Whether this blinded HTLC is being failed backwards by the introduction node or a blinded node,
329 /// which determines the failure message that should be used.
330 #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
331 pub enum BlindedFailure {
332         /// This HTLC is being failed backwards by the introduction node, and thus should be failed with
333         /// [`msgs::UpdateFailHTLC`] and error code `0x8000|0x4000|24`.
334         FromIntroductionNode,
335         /// This HTLC is being failed backwards by a blinded node within the path, and thus should be
336         /// failed with [`msgs::UpdateFailMalformedHTLC`] and error code `0x8000|0x4000|24`.
337         FromBlindedNode,
338 }
339
340 /// Tracks the inbound corresponding to an outbound HTLC
341 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
342 pub(crate) struct HTLCPreviousHopData {
343         // Note that this may be an outbound SCID alias for the associated channel.
344         short_channel_id: u64,
345         user_channel_id: Option<u128>,
346         htlc_id: u64,
347         incoming_packet_shared_secret: [u8; 32],
348         phantom_shared_secret: Option<[u8; 32]>,
349         blinded_failure: Option<BlindedFailure>,
350         channel_id: ChannelId,
351
352         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
353         // channel with a preimage provided by the forward channel.
354         outpoint: OutPoint,
355 }
356
357 enum OnionPayload {
358         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
359         Invoice {
360                 /// This is only here for backwards-compatibility in serialization, in the future it can be
361                 /// removed, breaking clients running 0.0.106 and earlier.
362                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
363         },
364         /// Contains the payer-provided preimage.
365         Spontaneous(PaymentPreimage),
366 }
367
368 /// HTLCs that are to us and can be failed/claimed by the user
369 struct ClaimableHTLC {
370         prev_hop: HTLCPreviousHopData,
371         cltv_expiry: u32,
372         /// The amount (in msats) of this MPP part
373         value: u64,
374         /// The amount (in msats) that the sender intended to be sent in this MPP
375         /// part (used for validating total MPP amount)
376         sender_intended_value: u64,
377         onion_payload: OnionPayload,
378         timer_ticks: u8,
379         /// The total value received for a payment (sum of all MPP parts if the payment is a MPP).
380         /// Gets set to the amount reported when pushing [`Event::PaymentClaimable`].
381         total_value_received: Option<u64>,
382         /// The sender intended sum total of all MPP parts specified in the onion
383         total_msat: u64,
384         /// The extra fee our counterparty skimmed off the top of this HTLC.
385         counterparty_skimmed_fee_msat: Option<u64>,
386 }
387
388 impl From<&ClaimableHTLC> for events::ClaimedHTLC {
389         fn from(val: &ClaimableHTLC) -> Self {
390                 events::ClaimedHTLC {
391                         channel_id: val.prev_hop.channel_id,
392                         user_channel_id: val.prev_hop.user_channel_id.unwrap_or(0),
393                         cltv_expiry: val.cltv_expiry,
394                         value_msat: val.value,
395                         counterparty_skimmed_fee_msat: val.counterparty_skimmed_fee_msat.unwrap_or(0),
396                 }
397         }
398 }
399
400 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
401 /// a payment and ensure idempotency in LDK.
402 ///
403 /// This is not exported to bindings users as we just use [u8; 32] directly
404 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
405 pub struct PaymentId(pub [u8; Self::LENGTH]);
406
407 impl PaymentId {
408         /// Number of bytes in the id.
409         pub const LENGTH: usize = 32;
410 }
411
412 impl Writeable for PaymentId {
413         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
414                 self.0.write(w)
415         }
416 }
417
418 impl Readable for PaymentId {
419         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
420                 let buf: [u8; 32] = Readable::read(r)?;
421                 Ok(PaymentId(buf))
422         }
423 }
424
425 impl core::fmt::Display for PaymentId {
426         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
427                 crate::util::logger::DebugBytes(&self.0).fmt(f)
428         }
429 }
430
431 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
432 ///
433 /// This is not exported to bindings users as we just use [u8; 32] directly
434 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
435 pub struct InterceptId(pub [u8; 32]);
436
437 impl Writeable for InterceptId {
438         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
439                 self.0.write(w)
440         }
441 }
442
443 impl Readable for InterceptId {
444         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
445                 let buf: [u8; 32] = Readable::read(r)?;
446                 Ok(InterceptId(buf))
447         }
448 }
449
450 #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
451 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
452 pub(crate) enum SentHTLCId {
453         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
454         OutboundRoute { session_priv: [u8; SECRET_KEY_SIZE] },
455 }
456 impl SentHTLCId {
457         pub(crate) fn from_source(source: &HTLCSource) -> Self {
458                 match source {
459                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
460                                 short_channel_id: hop_data.short_channel_id,
461                                 htlc_id: hop_data.htlc_id,
462                         },
463                         HTLCSource::OutboundRoute { session_priv, .. } =>
464                                 Self::OutboundRoute { session_priv: session_priv.secret_bytes() },
465                 }
466         }
467 }
468 impl_writeable_tlv_based_enum!(SentHTLCId,
469         (0, PreviousHopData) => {
470                 (0, short_channel_id, required),
471                 (2, htlc_id, required),
472         },
473         (2, OutboundRoute) => {
474                 (0, session_priv, required),
475         };
476 );
477
478
479 /// Tracks the inbound corresponding to an outbound HTLC
480 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
481 #[derive(Clone, Debug, PartialEq, Eq)]
482 pub(crate) enum HTLCSource {
483         PreviousHopData(HTLCPreviousHopData),
484         OutboundRoute {
485                 path: Path,
486                 session_priv: SecretKey,
487                 /// Technically we can recalculate this from the route, but we cache it here to avoid
488                 /// doing a double-pass on route when we get a failure back
489                 first_hop_htlc_msat: u64,
490                 payment_id: PaymentId,
491         },
492 }
493 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
494 impl core::hash::Hash for HTLCSource {
495         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
496                 match self {
497                         HTLCSource::PreviousHopData(prev_hop_data) => {
498                                 0u8.hash(hasher);
499                                 prev_hop_data.hash(hasher);
500                         },
501                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
502                                 1u8.hash(hasher);
503                                 path.hash(hasher);
504                                 session_priv[..].hash(hasher);
505                                 payment_id.hash(hasher);
506                                 first_hop_htlc_msat.hash(hasher);
507                         },
508                 }
509         }
510 }
511 impl HTLCSource {
512         #[cfg(all(feature = "_test_vectors", not(feature = "grind_signatures")))]
513         #[cfg(test)]
514         pub fn dummy() -> Self {
515                 HTLCSource::OutboundRoute {
516                         path: Path { hops: Vec::new(), blinded_tail: None },
517                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
518                         first_hop_htlc_msat: 0,
519                         payment_id: PaymentId([2; 32]),
520                 }
521         }
522
523         #[cfg(debug_assertions)]
524         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
525         /// transaction. Useful to ensure different datastructures match up.
526         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
527                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
528                         *first_hop_htlc_msat == htlc.amount_msat
529                 } else {
530                         // There's nothing we can check for forwarded HTLCs
531                         true
532                 }
533         }
534 }
535
536 /// This enum is used to specify which error data to send to peers when failing back an HTLC
537 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
538 ///
539 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
540 #[derive(Clone, Copy)]
541 pub enum FailureCode {
542         /// We had a temporary error processing the payment. Useful if no other error codes fit
543         /// and you want to indicate that the payer may want to retry.
544         TemporaryNodeFailure,
545         /// We have a required feature which was not in this onion. For example, you may require
546         /// some additional metadata that was not provided with this payment.
547         RequiredNodeFeatureMissing,
548         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
549         /// the HTLC is too close to the current block height for safe handling.
550         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
551         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
552         IncorrectOrUnknownPaymentDetails,
553         /// We failed to process the payload after the onion was decrypted. You may wish to
554         /// use this when receiving custom HTLC TLVs with even type numbers that you don't recognize.
555         ///
556         /// If available, the tuple data may include the type number and byte offset in the
557         /// decrypted byte stream where the failure occurred.
558         InvalidOnionPayload(Option<(u64, u16)>),
559 }
560
561 impl Into<u16> for FailureCode {
562     fn into(self) -> u16 {
563                 match self {
564                         FailureCode::TemporaryNodeFailure => 0x2000 | 2,
565                         FailureCode::RequiredNodeFeatureMissing => 0x4000 | 0x2000 | 3,
566                         FailureCode::IncorrectOrUnknownPaymentDetails => 0x4000 | 15,
567                         FailureCode::InvalidOnionPayload(_) => 0x4000 | 22,
568                 }
569         }
570 }
571
572 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
573 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
574 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
575 /// peer_state lock. We then return the set of things that need to be done outside the lock in
576 /// this struct and call handle_error!() on it.
577
578 struct MsgHandleErrInternal {
579         err: msgs::LightningError,
580         closes_channel: bool,
581         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
582 }
583 impl MsgHandleErrInternal {
584         #[inline]
585         fn send_err_msg_no_close(err: String, channel_id: ChannelId) -> Self {
586                 Self {
587                         err: LightningError {
588                                 err: err.clone(),
589                                 action: msgs::ErrorAction::SendErrorMessage {
590                                         msg: msgs::ErrorMessage {
591                                                 channel_id,
592                                                 data: err
593                                         },
594                                 },
595                         },
596                         closes_channel: false,
597                         shutdown_finish: None,
598                 }
599         }
600         #[inline]
601         fn from_no_close(err: msgs::LightningError) -> Self {
602                 Self { err, closes_channel: false, shutdown_finish: None }
603         }
604         #[inline]
605         fn from_finish_shutdown(err: String, channel_id: ChannelId, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>) -> Self {
606                 let err_msg = msgs::ErrorMessage { channel_id, data: err.clone() };
607                 let action = if shutdown_res.monitor_update.is_some() {
608                         // We have a closing `ChannelMonitorUpdate`, which means the channel was funded and we
609                         // should disconnect our peer such that we force them to broadcast their latest
610                         // commitment upon reconnecting.
611                         msgs::ErrorAction::DisconnectPeer { msg: Some(err_msg) }
612                 } else {
613                         msgs::ErrorAction::SendErrorMessage { msg: err_msg }
614                 };
615                 Self {
616                         err: LightningError { err, action },
617                         closes_channel: true,
618                         shutdown_finish: Some((shutdown_res, channel_update)),
619                 }
620         }
621         #[inline]
622         fn from_chan_no_close(err: ChannelError, channel_id: ChannelId) -> Self {
623                 Self {
624                         err: match err {
625                                 ChannelError::Warn(msg) =>  LightningError {
626                                         err: msg.clone(),
627                                         action: msgs::ErrorAction::SendWarningMessage {
628                                                 msg: msgs::WarningMessage {
629                                                         channel_id,
630                                                         data: msg
631                                                 },
632                                                 log_level: Level::Warn,
633                                         },
634                                 },
635                                 ChannelError::Ignore(msg) => LightningError {
636                                         err: msg,
637                                         action: msgs::ErrorAction::IgnoreError,
638                                 },
639                                 ChannelError::Close(msg) => LightningError {
640                                         err: msg.clone(),
641                                         action: msgs::ErrorAction::SendErrorMessage {
642                                                 msg: msgs::ErrorMessage {
643                                                         channel_id,
644                                                         data: msg
645                                                 },
646                                         },
647                                 },
648                         },
649                         closes_channel: false,
650                         shutdown_finish: None,
651                 }
652         }
653
654         fn closes_channel(&self) -> bool {
655                 self.closes_channel
656         }
657 }
658
659 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
660 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
661 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
662 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
663 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
664
665 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
666 /// be sent in the order they appear in the return value, however sometimes the order needs to be
667 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
668 /// they were originally sent). In those cases, this enum is also returned.
669 #[derive(Clone, PartialEq)]
670 pub(super) enum RAACommitmentOrder {
671         /// Send the CommitmentUpdate messages first
672         CommitmentFirst,
673         /// Send the RevokeAndACK message first
674         RevokeAndACKFirst,
675 }
676
677 /// Information about a payment which is currently being claimed.
678 struct ClaimingPayment {
679         amount_msat: u64,
680         payment_purpose: events::PaymentPurpose,
681         receiver_node_id: PublicKey,
682         htlcs: Vec<events::ClaimedHTLC>,
683         sender_intended_value: Option<u64>,
684         onion_fields: Option<RecipientOnionFields>,
685 }
686 impl_writeable_tlv_based!(ClaimingPayment, {
687         (0, amount_msat, required),
688         (2, payment_purpose, required),
689         (4, receiver_node_id, required),
690         (5, htlcs, optional_vec),
691         (7, sender_intended_value, option),
692         (9, onion_fields, option),
693 });
694
695 struct ClaimablePayment {
696         purpose: events::PaymentPurpose,
697         onion_fields: Option<RecipientOnionFields>,
698         htlcs: Vec<ClaimableHTLC>,
699 }
700
701 /// Information about claimable or being-claimed payments
702 struct ClaimablePayments {
703         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
704         /// failed/claimed by the user.
705         ///
706         /// Note that, no consistency guarantees are made about the channels given here actually
707         /// existing anymore by the time you go to read them!
708         ///
709         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
710         /// we don't get a duplicate payment.
711         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
712
713         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
714         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
715         /// as an [`events::Event::PaymentClaimed`].
716         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
717 }
718
719 /// Events which we process internally but cannot be processed immediately at the generation site
720 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
721 /// running normally, and specifically must be processed before any other non-background
722 /// [`ChannelMonitorUpdate`]s are applied.
723 #[derive(Debug)]
724 enum BackgroundEvent {
725         /// Handle a ChannelMonitorUpdate which closes the channel or for an already-closed channel.
726         /// This is only separated from [`Self::MonitorUpdateRegeneratedOnStartup`] as the
727         /// maybe-non-closing variant needs a public key to handle channel resumption, whereas if the
728         /// channel has been force-closed we do not need the counterparty node_id.
729         ///
730         /// Note that any such events are lost on shutdown, so in general they must be updates which
731         /// are regenerated on startup.
732         ClosedMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelId, ChannelMonitorUpdate)),
733         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
734         /// channel to continue normal operation.
735         ///
736         /// In general this should be used rather than
737         /// [`Self::ClosedMonitorUpdateRegeneratedOnStartup`], however in cases where the
738         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
739         /// error the other variant is acceptable.
740         ///
741         /// Note that any such events are lost on shutdown, so in general they must be updates which
742         /// are regenerated on startup.
743         MonitorUpdateRegeneratedOnStartup {
744                 counterparty_node_id: PublicKey,
745                 funding_txo: OutPoint,
746                 channel_id: ChannelId,
747                 update: ChannelMonitorUpdate
748         },
749         /// Some [`ChannelMonitorUpdate`] (s) completed before we were serialized but we still have
750         /// them marked pending, thus we need to run any [`MonitorUpdateCompletionAction`] (s) pending
751         /// on a channel.
752         MonitorUpdatesComplete {
753                 counterparty_node_id: PublicKey,
754                 channel_id: ChannelId,
755         },
756 }
757
758 #[derive(Debug)]
759 pub(crate) enum MonitorUpdateCompletionAction {
760         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
761         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
762         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
763         /// event can be generated.
764         PaymentClaimed { payment_hash: PaymentHash },
765         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
766         /// operation of another channel.
767         ///
768         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
769         /// from completing a monitor update which removes the payment preimage until the inbound edge
770         /// completes a monitor update containing the payment preimage. In that case, after the inbound
771         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
772         /// outbound edge.
773         EmitEventAndFreeOtherChannel {
774                 event: events::Event,
775                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, ChannelId, RAAMonitorUpdateBlockingAction)>,
776         },
777         /// Indicates we should immediately resume the operation of another channel, unless there is
778         /// some other reason why the channel is blocked. In practice this simply means immediately
779         /// removing the [`RAAMonitorUpdateBlockingAction`] provided from the blocking set.
780         ///
781         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
782         /// from completing a monitor update which removes the payment preimage until the inbound edge
783         /// completes a monitor update containing the payment preimage. However, we use this variant
784         /// instead of [`Self::EmitEventAndFreeOtherChannel`] when we discover that the claim was in
785         /// fact duplicative and we simply want to resume the outbound edge channel immediately.
786         ///
787         /// This variant should thus never be written to disk, as it is processed inline rather than
788         /// stored for later processing.
789         FreeOtherChannelImmediately {
790                 downstream_counterparty_node_id: PublicKey,
791                 downstream_funding_outpoint: OutPoint,
792                 blocking_action: RAAMonitorUpdateBlockingAction,
793                 downstream_channel_id: ChannelId,
794         },
795 }
796
797 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
798         (0, PaymentClaimed) => { (0, payment_hash, required) },
799         // Note that FreeOtherChannelImmediately should never be written - we were supposed to free
800         // *immediately*. However, for simplicity we implement read/write here.
801         (1, FreeOtherChannelImmediately) => {
802                 (0, downstream_counterparty_node_id, required),
803                 (2, downstream_funding_outpoint, required),
804                 (4, blocking_action, required),
805                 // Note that by the time we get past the required read above, downstream_funding_outpoint will be
806                 // filled in, so we can safely unwrap it here.
807                 (5, downstream_channel_id, (default_value, ChannelId::v1_from_funding_outpoint(downstream_funding_outpoint.0.unwrap()))),
808         },
809         (2, EmitEventAndFreeOtherChannel) => {
810                 (0, event, upgradable_required),
811                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
812                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
813                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
814                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
815                 // downgrades to prior versions.
816                 (1, downstream_counterparty_and_funding_outpoint, option),
817         },
818 );
819
820 #[derive(Clone, Debug, PartialEq, Eq)]
821 pub(crate) enum EventCompletionAction {
822         ReleaseRAAChannelMonitorUpdate {
823                 counterparty_node_id: PublicKey,
824                 channel_funding_outpoint: OutPoint,
825                 channel_id: ChannelId,
826         },
827 }
828 impl_writeable_tlv_based_enum!(EventCompletionAction,
829         (0, ReleaseRAAChannelMonitorUpdate) => {
830                 (0, channel_funding_outpoint, required),
831                 (2, counterparty_node_id, required),
832                 // Note that by the time we get past the required read above, channel_funding_outpoint will be
833                 // filled in, so we can safely unwrap it here.
834                 (3, channel_id, (default_value, ChannelId::v1_from_funding_outpoint(channel_funding_outpoint.0.unwrap()))),
835         };
836 );
837
838 #[derive(Clone, PartialEq, Eq, Debug)]
839 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
840 /// the blocked action here. See enum variants for more info.
841 pub(crate) enum RAAMonitorUpdateBlockingAction {
842         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
843         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
844         /// durably to disk.
845         ForwardedPaymentInboundClaim {
846                 /// The upstream channel ID (i.e. the inbound edge).
847                 channel_id: ChannelId,
848                 /// The HTLC ID on the inbound edge.
849                 htlc_id: u64,
850         },
851 }
852
853 impl RAAMonitorUpdateBlockingAction {
854         fn from_prev_hop_data(prev_hop: &HTLCPreviousHopData) -> Self {
855                 Self::ForwardedPaymentInboundClaim {
856                         channel_id: prev_hop.channel_id,
857                         htlc_id: prev_hop.htlc_id,
858                 }
859         }
860 }
861
862 impl_writeable_tlv_based_enum!(RAAMonitorUpdateBlockingAction,
863         (0, ForwardedPaymentInboundClaim) => { (0, channel_id, required), (2, htlc_id, required) }
864 ;);
865
866
867 /// State we hold per-peer.
868 pub(super) struct PeerState<SP: Deref> where SP::Target: SignerProvider {
869         /// `channel_id` -> `ChannelPhase`
870         ///
871         /// Holds all channels within corresponding `ChannelPhase`s where the peer is the counterparty.
872         pub(super) channel_by_id: HashMap<ChannelId, ChannelPhase<SP>>,
873         /// `temporary_channel_id` -> `InboundChannelRequest`.
874         ///
875         /// When manual channel acceptance is enabled, this holds all unaccepted inbound channels where
876         /// the peer is the counterparty. If the channel is accepted, then the entry in this table is
877         /// removed, and an InboundV1Channel is created and placed in the `inbound_v1_channel_by_id` table. If
878         /// the channel is rejected, then the entry is simply removed.
879         pub(super) inbound_channel_request_by_id: HashMap<ChannelId, InboundChannelRequest>,
880         /// The latest `InitFeatures` we heard from the peer.
881         latest_features: InitFeatures,
882         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
883         /// for broadcast messages, where ordering isn't as strict).
884         pub(super) pending_msg_events: Vec<MessageSendEvent>,
885         /// Map from Channel IDs to pending [`ChannelMonitorUpdate`]s which have been passed to the
886         /// user but which have not yet completed.
887         ///
888         /// Note that the channel may no longer exist. For example if the channel was closed but we
889         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
890         /// for a missing channel.
891         in_flight_monitor_updates: BTreeMap<OutPoint, Vec<ChannelMonitorUpdate>>,
892         /// Map from a specific channel to some action(s) that should be taken when all pending
893         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
894         ///
895         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
896         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
897         /// channels with a peer this will just be one allocation and will amount to a linear list of
898         /// channels to walk, avoiding the whole hashing rigmarole.
899         ///
900         /// Note that the channel may no longer exist. For example, if a channel was closed but we
901         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
902         /// for a missing channel. While a malicious peer could construct a second channel with the
903         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
904         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
905         /// duplicates do not occur, so such channels should fail without a monitor update completing.
906         monitor_update_blocked_actions: BTreeMap<ChannelId, Vec<MonitorUpdateCompletionAction>>,
907         /// If another channel's [`ChannelMonitorUpdate`] needs to complete before a channel we have
908         /// with this peer can complete an RAA [`ChannelMonitorUpdate`] (e.g. because the RAA update
909         /// will remove a preimage that needs to be durably in an upstream channel first), we put an
910         /// entry here to note that the channel with the key's ID is blocked on a set of actions.
911         actions_blocking_raa_monitor_updates: BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
912         /// The peer is currently connected (i.e. we've seen a
913         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
914         /// [`ChannelMessageHandler::peer_disconnected`].
915         pub is_connected: bool,
916 }
917
918 impl <SP: Deref> PeerState<SP> where SP::Target: SignerProvider {
919         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
920         /// If true is passed for `require_disconnected`, the function will return false if we haven't
921         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
922         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
923                 if require_disconnected && self.is_connected {
924                         return false
925                 }
926                 !self.channel_by_id.iter().any(|(_, phase)|
927                         match phase {
928                                 ChannelPhase::Funded(_) | ChannelPhase::UnfundedOutboundV1(_) => true,
929                                 ChannelPhase::UnfundedInboundV1(_) => false,
930                                 #[cfg(any(dual_funding, splicing))]
931                                 ChannelPhase::UnfundedOutboundV2(_) => true,
932                                 #[cfg(any(dual_funding, splicing))]
933                                 ChannelPhase::UnfundedInboundV2(_) => false,
934                         }
935                 )
936                         && self.monitor_update_blocked_actions.is_empty()
937                         && self.in_flight_monitor_updates.is_empty()
938         }
939
940         // Returns a count of all channels we have with this peer, including unfunded channels.
941         fn total_channel_count(&self) -> usize {
942                 self.channel_by_id.len() + self.inbound_channel_request_by_id.len()
943         }
944
945         // Returns a bool indicating if the given `channel_id` matches a channel we have with this peer.
946         fn has_channel(&self, channel_id: &ChannelId) -> bool {
947                 self.channel_by_id.contains_key(channel_id) ||
948                         self.inbound_channel_request_by_id.contains_key(channel_id)
949         }
950 }
951
952 /// A not-yet-accepted inbound (from counterparty) channel. Once
953 /// accepted, the parameters will be used to construct a channel.
954 pub(super) struct InboundChannelRequest {
955         /// The original OpenChannel message.
956         pub open_channel_msg: msgs::OpenChannel,
957         /// The number of ticks remaining before the request expires.
958         pub ticks_remaining: i32,
959 }
960
961 /// The number of ticks that may elapse while we're waiting for an unaccepted inbound channel to be
962 /// accepted. An unaccepted channel that exceeds this limit will be abandoned.
963 const UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS: i32 = 2;
964
965 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
966 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
967 ///
968 /// For users who don't want to bother doing their own payment preimage storage, we also store that
969 /// here.
970 ///
971 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
972 /// and instead encoding it in the payment secret.
973 struct PendingInboundPayment {
974         /// The payment secret that the sender must use for us to accept this payment
975         payment_secret: PaymentSecret,
976         /// Time at which this HTLC expires - blocks with a header time above this value will result in
977         /// this payment being removed.
978         expiry_time: u64,
979         /// Arbitrary identifier the user specifies (or not)
980         user_payment_id: u64,
981         // Other required attributes of the payment, optionally enforced:
982         payment_preimage: Option<PaymentPreimage>,
983         min_value_msat: Option<u64>,
984 }
985
986 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
987 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
988 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
989 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
990 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
991 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
992 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
993 /// of [`KeysManager`] and [`DefaultRouter`].
994 ///
995 /// This is not exported to bindings users as type aliases aren't supported in most languages.
996 #[cfg(not(c_bindings))]
997 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
998         Arc<M>,
999         Arc<T>,
1000         Arc<KeysManager>,
1001         Arc<KeysManager>,
1002         Arc<KeysManager>,
1003         Arc<F>,
1004         Arc<DefaultRouter<
1005                 Arc<NetworkGraph<Arc<L>>>,
1006                 Arc<L>,
1007                 Arc<KeysManager>,
1008                 Arc<RwLock<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
1009                 ProbabilisticScoringFeeParameters,
1010                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
1011         >>,
1012         Arc<L>
1013 >;
1014
1015 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
1016 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
1017 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
1018 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
1019 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
1020 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
1021 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
1022 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
1023 /// of [`KeysManager`] and [`DefaultRouter`].
1024 ///
1025 /// This is not exported to bindings users as type aliases aren't supported in most languages.
1026 #[cfg(not(c_bindings))]
1027 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, M, T, F, L> =
1028         ChannelManager<
1029                 &'a M,
1030                 &'b T,
1031                 &'c KeysManager,
1032                 &'c KeysManager,
1033                 &'c KeysManager,
1034                 &'d F,
1035                 &'e DefaultRouter<
1036                         &'f NetworkGraph<&'g L>,
1037                         &'g L,
1038                         &'c KeysManager,
1039                         &'h RwLock<ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>,
1040                         ProbabilisticScoringFeeParameters,
1041                         ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>
1042                 >,
1043                 &'g L
1044         >;
1045
1046 /// A trivial trait which describes any [`ChannelManager`].
1047 ///
1048 /// This is not exported to bindings users as general cover traits aren't useful in other
1049 /// languages.
1050 pub trait AChannelManager {
1051         /// A type implementing [`chain::Watch`].
1052         type Watch: chain::Watch<Self::Signer> + ?Sized;
1053         /// A type that may be dereferenced to [`Self::Watch`].
1054         type M: Deref<Target = Self::Watch>;
1055         /// A type implementing [`BroadcasterInterface`].
1056         type Broadcaster: BroadcasterInterface + ?Sized;
1057         /// A type that may be dereferenced to [`Self::Broadcaster`].
1058         type T: Deref<Target = Self::Broadcaster>;
1059         /// A type implementing [`EntropySource`].
1060         type EntropySource: EntropySource + ?Sized;
1061         /// A type that may be dereferenced to [`Self::EntropySource`].
1062         type ES: Deref<Target = Self::EntropySource>;
1063         /// A type implementing [`NodeSigner`].
1064         type NodeSigner: NodeSigner + ?Sized;
1065         /// A type that may be dereferenced to [`Self::NodeSigner`].
1066         type NS: Deref<Target = Self::NodeSigner>;
1067         /// A type implementing [`EcdsaChannelSigner`].
1068         type Signer: EcdsaChannelSigner + Sized;
1069         /// A type implementing [`SignerProvider`] for [`Self::Signer`].
1070         type SignerProvider: SignerProvider<EcdsaSigner= Self::Signer> + ?Sized;
1071         /// A type that may be dereferenced to [`Self::SignerProvider`].
1072         type SP: Deref<Target = Self::SignerProvider>;
1073         /// A type implementing [`FeeEstimator`].
1074         type FeeEstimator: FeeEstimator + ?Sized;
1075         /// A type that may be dereferenced to [`Self::FeeEstimator`].
1076         type F: Deref<Target = Self::FeeEstimator>;
1077         /// A type implementing [`Router`].
1078         type Router: Router + ?Sized;
1079         /// A type that may be dereferenced to [`Self::Router`].
1080         type R: Deref<Target = Self::Router>;
1081         /// A type implementing [`Logger`].
1082         type Logger: Logger + ?Sized;
1083         /// A type that may be dereferenced to [`Self::Logger`].
1084         type L: Deref<Target = Self::Logger>;
1085         /// Returns a reference to the actual [`ChannelManager`] object.
1086         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
1087 }
1088
1089 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
1090 for ChannelManager<M, T, ES, NS, SP, F, R, L>
1091 where
1092         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
1093         T::Target: BroadcasterInterface,
1094         ES::Target: EntropySource,
1095         NS::Target: NodeSigner,
1096         SP::Target: SignerProvider,
1097         F::Target: FeeEstimator,
1098         R::Target: Router,
1099         L::Target: Logger,
1100 {
1101         type Watch = M::Target;
1102         type M = M;
1103         type Broadcaster = T::Target;
1104         type T = T;
1105         type EntropySource = ES::Target;
1106         type ES = ES;
1107         type NodeSigner = NS::Target;
1108         type NS = NS;
1109         type Signer = <SP::Target as SignerProvider>::EcdsaSigner;
1110         type SignerProvider = SP::Target;
1111         type SP = SP;
1112         type FeeEstimator = F::Target;
1113         type F = F;
1114         type Router = R::Target;
1115         type R = R;
1116         type Logger = L::Target;
1117         type L = L;
1118         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
1119 }
1120
1121 /// A lightning node's channel state machine and payment management logic, which facilitates
1122 /// sending, forwarding, and receiving payments through lightning channels.
1123 ///
1124 /// [`ChannelManager`] is parameterized by a number of components to achieve this.
1125 /// - [`chain::Watch`] (typically [`ChainMonitor`]) for on-chain monitoring and enforcement of each
1126 ///   channel
1127 /// - [`BroadcasterInterface`] for broadcasting transactions related to opening, funding, and
1128 ///   closing channels
1129 /// - [`EntropySource`] for providing random data needed for cryptographic operations
1130 /// - [`NodeSigner`] for cryptographic operations scoped to the node
1131 /// - [`SignerProvider`] for providing signers whose operations are scoped to individual channels
1132 /// - [`FeeEstimator`] to determine transaction fee rates needed to have a transaction mined in a
1133 ///   timely manner
1134 /// - [`Router`] for finding payment paths when initiating and retrying payments
1135 /// - [`Logger`] for logging operational information of varying degrees
1136 ///
1137 /// Additionally, it implements the following traits:
1138 /// - [`ChannelMessageHandler`] to handle off-chain channel activity from peers
1139 /// - [`MessageSendEventsProvider`] to similarly send such messages to peers
1140 /// - [`OffersMessageHandler`] for BOLT 12 message handling and sending
1141 /// - [`EventsProvider`] to generate user-actionable [`Event`]s
1142 /// - [`chain::Listen`] and [`chain::Confirm`] for notification of on-chain activity
1143 ///
1144 /// Thus, [`ChannelManager`] is typically used to parameterize a [`MessageHandler`] and an
1145 /// [`OnionMessenger`]. The latter is required to support BOLT 12 functionality.
1146 ///
1147 /// # `ChannelManager` vs `ChannelMonitor`
1148 ///
1149 /// It's important to distinguish between the *off-chain* management and *on-chain* enforcement of
1150 /// lightning channels. [`ChannelManager`] exchanges messages with peers to manage the off-chain
1151 /// state of each channel. During this process, it generates a [`ChannelMonitor`] for each channel
1152 /// and a [`ChannelMonitorUpdate`] for each relevant change, notifying its parameterized
1153 /// [`chain::Watch`] of them.
1154 ///
1155 /// An implementation of [`chain::Watch`], such as [`ChainMonitor`], is responsible for aggregating
1156 /// these [`ChannelMonitor`]s and applying any [`ChannelMonitorUpdate`]s to them. It then monitors
1157 /// for any pertinent on-chain activity, enforcing claims as needed.
1158 ///
1159 /// This division of off-chain management and on-chain enforcement allows for interesting node
1160 /// setups. For instance, on-chain enforcement could be moved to a separate host or have added
1161 /// redundancy, possibly as a watchtower. See [`chain::Watch`] for the relevant interface.
1162 ///
1163 /// # Initialization
1164 ///
1165 /// Use [`ChannelManager::new`] with the most recent [`BlockHash`] when creating a fresh instance.
1166 /// Otherwise, if restarting, construct [`ChannelManagerReadArgs`] with the necessary parameters and
1167 /// references to any deserialized [`ChannelMonitor`]s that were previously persisted. Use this to
1168 /// deserialize the [`ChannelManager`] and feed it any new chain data since it was last online, as
1169 /// detailed in the [`ChannelManagerReadArgs`] documentation.
1170 ///
1171 /// ```
1172 /// use bitcoin::BlockHash;
1173 /// use bitcoin::network::Network;
1174 /// use lightning::chain::BestBlock;
1175 /// # use lightning::chain::channelmonitor::ChannelMonitor;
1176 /// use lightning::ln::channelmanager::{ChainParameters, ChannelManager, ChannelManagerReadArgs};
1177 /// # use lightning::routing::gossip::NetworkGraph;
1178 /// use lightning::util::config::UserConfig;
1179 /// use lightning::util::ser::ReadableArgs;
1180 ///
1181 /// # fn read_channel_monitors() -> Vec<ChannelMonitor<lightning::sign::InMemorySigner>> { vec![] }
1182 /// # fn example<
1183 /// #     'a,
1184 /// #     L: lightning::util::logger::Logger,
1185 /// #     ES: lightning::sign::EntropySource,
1186 /// #     S: for <'b> lightning::routing::scoring::LockableScore<'b, ScoreLookUp = SL>,
1187 /// #     SL: lightning::routing::scoring::ScoreLookUp<ScoreParams = SP>,
1188 /// #     SP: Sized,
1189 /// #     R: lightning::io::Read,
1190 /// # >(
1191 /// #     fee_estimator: &dyn lightning::chain::chaininterface::FeeEstimator,
1192 /// #     chain_monitor: &dyn lightning::chain::Watch<lightning::sign::InMemorySigner>,
1193 /// #     tx_broadcaster: &dyn lightning::chain::chaininterface::BroadcasterInterface,
1194 /// #     router: &lightning::routing::router::DefaultRouter<&NetworkGraph<&'a L>, &'a L, &ES, &S, SP, SL>,
1195 /// #     logger: &L,
1196 /// #     entropy_source: &ES,
1197 /// #     node_signer: &dyn lightning::sign::NodeSigner,
1198 /// #     signer_provider: &lightning::sign::DynSignerProvider,
1199 /// #     best_block: lightning::chain::BestBlock,
1200 /// #     current_timestamp: u32,
1201 /// #     mut reader: R,
1202 /// # ) -> Result<(), lightning::ln::msgs::DecodeError> {
1203 /// // Fresh start with no channels
1204 /// let params = ChainParameters {
1205 ///     network: Network::Bitcoin,
1206 ///     best_block,
1207 /// };
1208 /// let default_config = UserConfig::default();
1209 /// let channel_manager = ChannelManager::new(
1210 ///     fee_estimator, chain_monitor, tx_broadcaster, router, logger, entropy_source, node_signer,
1211 ///     signer_provider, default_config, params, current_timestamp
1212 /// );
1213 ///
1214 /// // Restart from deserialized data
1215 /// let mut channel_monitors = read_channel_monitors();
1216 /// let args = ChannelManagerReadArgs::new(
1217 ///     entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster,
1218 ///     router, logger, default_config, channel_monitors.iter_mut().collect()
1219 /// );
1220 /// let (block_hash, channel_manager) =
1221 ///     <(BlockHash, ChannelManager<_, _, _, _, _, _, _, _>)>::read(&mut reader, args)?;
1222 ///
1223 /// // Update the ChannelManager and ChannelMonitors with the latest chain data
1224 /// // ...
1225 ///
1226 /// // Move the monitors to the ChannelManager's chain::Watch parameter
1227 /// for monitor in channel_monitors {
1228 ///     chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
1229 /// }
1230 /// # Ok(())
1231 /// # }
1232 /// ```
1233 ///
1234 /// # Operation
1235 ///
1236 /// The following is required for [`ChannelManager`] to function properly:
1237 /// - Handle messages from peers using its [`ChannelMessageHandler`] implementation (typically
1238 ///   called by [`PeerManager::read_event`] when processing network I/O)
1239 /// - Send messages to peers obtained via its [`MessageSendEventsProvider`] implementation
1240 ///   (typically initiated when [`PeerManager::process_events`] is called)
1241 /// - Feed on-chain activity using either its [`chain::Listen`] or [`chain::Confirm`] implementation
1242 ///   as documented by those traits
1243 /// - Perform any periodic channel and payment checks by calling [`timer_tick_occurred`] roughly
1244 ///   every minute
1245 /// - Persist to disk whenever [`get_and_clear_needs_persistence`] returns `true` using a
1246 ///   [`Persister`] such as a [`KVStore`] implementation
1247 /// - Handle [`Event`]s obtained via its [`EventsProvider`] implementation
1248 ///
1249 /// The [`Future`] returned by [`get_event_or_persistence_needed_future`] is useful in determining
1250 /// when the last two requirements need to be checked.
1251 ///
1252 /// The [`lightning-block-sync`] and [`lightning-transaction-sync`] crates provide utilities that
1253 /// simplify feeding in on-chain activity using the [`chain::Listen`] and [`chain::Confirm`] traits,
1254 /// respectively. The remaining requirements can be met using the [`lightning-background-processor`]
1255 /// crate. For languages other than Rust, the availability of similar utilities may vary.
1256 ///
1257 /// # Channels
1258 ///
1259 /// [`ChannelManager`]'s primary function involves managing a channel state. Without channels,
1260 /// payments can't be sent. Use [`list_channels`] or [`list_usable_channels`] for a snapshot of the
1261 /// currently open channels.
1262 ///
1263 /// ```
1264 /// # use lightning::ln::channelmanager::AChannelManager;
1265 /// #
1266 /// # fn example<T: AChannelManager>(channel_manager: T) {
1267 /// # let channel_manager = channel_manager.get_cm();
1268 /// let channels = channel_manager.list_usable_channels();
1269 /// for details in channels {
1270 ///     println!("{:?}", details);
1271 /// }
1272 /// # }
1273 /// ```
1274 ///
1275 /// Each channel is identified using a [`ChannelId`], which will change throughout the channel's
1276 /// life cycle. Additionally, channels are assigned a `user_channel_id`, which is given in
1277 /// [`Event`]s associated with the channel and serves as a fixed identifier but is otherwise unused
1278 /// by [`ChannelManager`].
1279 ///
1280 /// ## Opening Channels
1281 ///
1282 /// To an open a channel with a peer, call [`create_channel`]. This will initiate the process of
1283 /// opening an outbound channel, which requires self-funding when handling
1284 /// [`Event::FundingGenerationReady`].
1285 ///
1286 /// ```
1287 /// # use bitcoin::{ScriptBuf, Transaction};
1288 /// # use bitcoin::secp256k1::PublicKey;
1289 /// # use lightning::ln::channelmanager::AChannelManager;
1290 /// # use lightning::events::{Event, EventsProvider};
1291 /// #
1292 /// # trait Wallet {
1293 /// #     fn create_funding_transaction(
1294 /// #         &self, _amount_sats: u64, _output_script: ScriptBuf
1295 /// #     ) -> Transaction;
1296 /// # }
1297 /// #
1298 /// # fn example<T: AChannelManager, W: Wallet>(channel_manager: T, wallet: W, peer_id: PublicKey) {
1299 /// # let channel_manager = channel_manager.get_cm();
1300 /// let value_sats = 1_000_000;
1301 /// let push_msats = 10_000_000;
1302 /// match channel_manager.create_channel(peer_id, value_sats, push_msats, 42, None, None) {
1303 ///     Ok(channel_id) => println!("Opening channel {}", channel_id),
1304 ///     Err(e) => println!("Error opening channel: {:?}", e),
1305 /// }
1306 ///
1307 /// // On the event processing thread once the peer has responded
1308 /// channel_manager.process_pending_events(&|event| match event {
1309 ///     Event::FundingGenerationReady {
1310 ///         temporary_channel_id, counterparty_node_id, channel_value_satoshis, output_script,
1311 ///         user_channel_id, ..
1312 ///     } => {
1313 ///         assert_eq!(user_channel_id, 42);
1314 ///         let funding_transaction = wallet.create_funding_transaction(
1315 ///             channel_value_satoshis, output_script
1316 ///         );
1317 ///         match channel_manager.funding_transaction_generated(
1318 ///             &temporary_channel_id, &counterparty_node_id, funding_transaction
1319 ///         ) {
1320 ///             Ok(()) => println!("Funding channel {}", temporary_channel_id),
1321 ///             Err(e) => println!("Error funding channel {}: {:?}", temporary_channel_id, e),
1322 ///         }
1323 ///     },
1324 ///     Event::ChannelPending { channel_id, user_channel_id, former_temporary_channel_id, .. } => {
1325 ///         assert_eq!(user_channel_id, 42);
1326 ///         println!(
1327 ///             "Channel {} now {} pending (funding transaction has been broadcasted)", channel_id,
1328 ///             former_temporary_channel_id.unwrap()
1329 ///         );
1330 ///     },
1331 ///     Event::ChannelReady { channel_id, user_channel_id, .. } => {
1332 ///         assert_eq!(user_channel_id, 42);
1333 ///         println!("Channel {} ready", channel_id);
1334 ///     },
1335 ///     // ...
1336 /// #     _ => {},
1337 /// });
1338 /// # }
1339 /// ```
1340 ///
1341 /// ## Accepting Channels
1342 ///
1343 /// Inbound channels are initiated by peers and are automatically accepted unless [`ChannelManager`]
1344 /// has [`UserConfig::manually_accept_inbound_channels`] set. In that case, the channel may be
1345 /// either accepted or rejected when handling [`Event::OpenChannelRequest`].
1346 ///
1347 /// ```
1348 /// # use bitcoin::secp256k1::PublicKey;
1349 /// # use lightning::ln::channelmanager::AChannelManager;
1350 /// # use lightning::events::{Event, EventsProvider};
1351 /// #
1352 /// # fn is_trusted(counterparty_node_id: PublicKey) -> bool {
1353 /// #     // ...
1354 /// #     unimplemented!()
1355 /// # }
1356 /// #
1357 /// # fn example<T: AChannelManager>(channel_manager: T) {
1358 /// # let channel_manager = channel_manager.get_cm();
1359 /// # let error_message = "Channel force-closed";
1360 /// channel_manager.process_pending_events(&|event| match event {
1361 ///     Event::OpenChannelRequest { temporary_channel_id, counterparty_node_id, ..  } => {
1362 ///         if !is_trusted(counterparty_node_id) {
1363 ///             match channel_manager.force_close_without_broadcasting_txn(
1364 ///                 &temporary_channel_id, &counterparty_node_id, error_message.to_string()
1365 ///             ) {
1366 ///                 Ok(()) => println!("Rejecting channel {}", temporary_channel_id),
1367 ///                 Err(e) => println!("Error rejecting channel {}: {:?}", temporary_channel_id, e),
1368 ///             }
1369 ///             return;
1370 ///         }
1371 ///
1372 ///         let user_channel_id = 43;
1373 ///         match channel_manager.accept_inbound_channel(
1374 ///             &temporary_channel_id, &counterparty_node_id, user_channel_id
1375 ///         ) {
1376 ///             Ok(()) => println!("Accepting channel {}", temporary_channel_id),
1377 ///             Err(e) => println!("Error accepting channel {}: {:?}", temporary_channel_id, e),
1378 ///         }
1379 ///     },
1380 ///     // ...
1381 /// #     _ => {},
1382 /// });
1383 /// # }
1384 /// ```
1385 ///
1386 /// ## Closing Channels
1387 ///
1388 /// There are two ways to close a channel: either cooperatively using [`close_channel`] or
1389 /// unilaterally using [`force_close_broadcasting_latest_txn`]. The former is ideal as it makes for
1390 /// lower fees and immediate access to funds. However, the latter may be necessary if the
1391 /// counterparty isn't behaving properly or has gone offline. [`Event::ChannelClosed`] is generated
1392 /// once the channel has been closed successfully.
1393 ///
1394 /// ```
1395 /// # use bitcoin::secp256k1::PublicKey;
1396 /// # use lightning::ln::types::ChannelId;
1397 /// # use lightning::ln::channelmanager::AChannelManager;
1398 /// # use lightning::events::{Event, EventsProvider};
1399 /// #
1400 /// # fn example<T: AChannelManager>(
1401 /// #     channel_manager: T, channel_id: ChannelId, counterparty_node_id: PublicKey
1402 /// # ) {
1403 /// # let channel_manager = channel_manager.get_cm();
1404 /// match channel_manager.close_channel(&channel_id, &counterparty_node_id) {
1405 ///     Ok(()) => println!("Closing channel {}", channel_id),
1406 ///     Err(e) => println!("Error closing channel {}: {:?}", channel_id, e),
1407 /// }
1408 ///
1409 /// // On the event processing thread
1410 /// channel_manager.process_pending_events(&|event| match event {
1411 ///     Event::ChannelClosed { channel_id, user_channel_id, ..  } => {
1412 ///         assert_eq!(user_channel_id, 42);
1413 ///         println!("Channel {} closed", channel_id);
1414 ///     },
1415 ///     // ...
1416 /// #     _ => {},
1417 /// });
1418 /// # }
1419 /// ```
1420 ///
1421 /// # Payments
1422 ///
1423 /// [`ChannelManager`] is responsible for sending, forwarding, and receiving payments through its
1424 /// channels. A payment is typically initiated from a [BOLT 11] invoice or a [BOLT 12] offer, though
1425 /// spontaneous (i.e., keysend) payments are also possible. Incoming payments don't require
1426 /// maintaining any additional state as [`ChannelManager`] can reconstruct the [`PaymentPreimage`]
1427 /// from the [`PaymentSecret`]. Sending payments, however, require tracking in order to retry failed
1428 /// HTLCs.
1429 ///
1430 /// After a payment is initiated, it will appear in [`list_recent_payments`] until a short time
1431 /// after either an [`Event::PaymentSent`] or [`Event::PaymentFailed`] is handled. Failed HTLCs
1432 /// for a payment will be retried according to the payment's [`Retry`] strategy or until
1433 /// [`abandon_payment`] is called.
1434 ///
1435 /// ## BOLT 11 Invoices
1436 ///
1437 /// The [`lightning-invoice`] crate is useful for creating BOLT 11 invoices. Specifically, use the
1438 /// functions in its `utils` module for constructing invoices that are compatible with
1439 /// [`ChannelManager`]. These functions serve as a convenience for building invoices with the
1440 /// [`PaymentHash`] and [`PaymentSecret`] returned from [`create_inbound_payment`]. To provide your
1441 /// own [`PaymentHash`], use [`create_inbound_payment_for_hash`] or the corresponding functions in
1442 /// the [`lightning-invoice`] `utils` module.
1443 ///
1444 /// [`ChannelManager`] generates an [`Event::PaymentClaimable`] once the full payment has been
1445 /// received. Call [`claim_funds`] to release the [`PaymentPreimage`], which in turn will result in
1446 /// an [`Event::PaymentClaimed`].
1447 ///
1448 /// ```
1449 /// # use lightning::events::{Event, EventsProvider, PaymentPurpose};
1450 /// # use lightning::ln::channelmanager::AChannelManager;
1451 /// #
1452 /// # fn example<T: AChannelManager>(channel_manager: T) {
1453 /// # let channel_manager = channel_manager.get_cm();
1454 /// // Or use utils::create_invoice_from_channelmanager
1455 /// let known_payment_hash = match channel_manager.create_inbound_payment(
1456 ///     Some(10_000_000), 3600, None
1457 /// ) {
1458 ///     Ok((payment_hash, _payment_secret)) => {
1459 ///         println!("Creating inbound payment {}", payment_hash);
1460 ///         payment_hash
1461 ///     },
1462 ///     Err(()) => panic!("Error creating inbound payment"),
1463 /// };
1464 ///
1465 /// // On the event processing thread
1466 /// channel_manager.process_pending_events(&|event| match event {
1467 ///     Event::PaymentClaimable { payment_hash, purpose, .. } => match purpose {
1468 ///         PaymentPurpose::Bolt11InvoicePayment { payment_preimage: Some(payment_preimage), .. } => {
1469 ///             assert_eq!(payment_hash, known_payment_hash);
1470 ///             println!("Claiming payment {}", payment_hash);
1471 ///             channel_manager.claim_funds(payment_preimage);
1472 ///         },
1473 ///         PaymentPurpose::Bolt11InvoicePayment { payment_preimage: None, .. } => {
1474 ///             println!("Unknown payment hash: {}", payment_hash);
1475 ///         },
1476 ///         PaymentPurpose::SpontaneousPayment(payment_preimage) => {
1477 ///             assert_ne!(payment_hash, known_payment_hash);
1478 ///             println!("Claiming spontaneous payment {}", payment_hash);
1479 ///             channel_manager.claim_funds(payment_preimage);
1480 ///         },
1481 ///         // ...
1482 /// #         _ => {},
1483 ///     },
1484 ///     Event::PaymentClaimed { payment_hash, amount_msat, .. } => {
1485 ///         assert_eq!(payment_hash, known_payment_hash);
1486 ///         println!("Claimed {} msats", amount_msat);
1487 ///     },
1488 ///     // ...
1489 /// #     _ => {},
1490 /// });
1491 /// # }
1492 /// ```
1493 ///
1494 /// For paying an invoice, [`lightning-invoice`] provides a `payment` module with convenience
1495 /// functions for use with [`send_payment`].
1496 ///
1497 /// ```
1498 /// # use lightning::events::{Event, EventsProvider};
1499 /// # use lightning::ln::types::PaymentHash;
1500 /// # use lightning::ln::channelmanager::{AChannelManager, PaymentId, RecentPaymentDetails, RecipientOnionFields, Retry};
1501 /// # use lightning::routing::router::RouteParameters;
1502 /// #
1503 /// # fn example<T: AChannelManager>(
1504 /// #     channel_manager: T, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields,
1505 /// #     route_params: RouteParameters, retry: Retry
1506 /// # ) {
1507 /// # let channel_manager = channel_manager.get_cm();
1508 /// // let (payment_hash, recipient_onion, route_params) =
1509 /// //     payment::payment_parameters_from_invoice(&invoice);
1510 /// let payment_id = PaymentId([42; 32]);
1511 /// match channel_manager.send_payment(
1512 ///     payment_hash, recipient_onion, payment_id, route_params, retry
1513 /// ) {
1514 ///     Ok(()) => println!("Sending payment with hash {}", payment_hash),
1515 ///     Err(e) => println!("Failed sending payment with hash {}: {:?}", payment_hash, e),
1516 /// }
1517 ///
1518 /// let expected_payment_id = payment_id;
1519 /// let expected_payment_hash = payment_hash;
1520 /// assert!(
1521 ///     channel_manager.list_recent_payments().iter().find(|details| matches!(
1522 ///         details,
1523 ///         RecentPaymentDetails::Pending {
1524 ///             payment_id: expected_payment_id,
1525 ///             payment_hash: expected_payment_hash,
1526 ///             ..
1527 ///         }
1528 ///     )).is_some()
1529 /// );
1530 ///
1531 /// // On the event processing thread
1532 /// channel_manager.process_pending_events(&|event| match event {
1533 ///     Event::PaymentSent { payment_hash, .. } => println!("Paid {}", payment_hash),
1534 ///     Event::PaymentFailed { payment_hash, .. } => println!("Failed paying {}", payment_hash),
1535 ///     // ...
1536 /// #     _ => {},
1537 /// });
1538 /// # }
1539 /// ```
1540 ///
1541 /// ## BOLT 12 Offers
1542 ///
1543 /// The [`offers`] module is useful for creating BOLT 12 offers. An [`Offer`] is a precursor to a
1544 /// [`Bolt12Invoice`], which must first be requested by the payer. The interchange of these messages
1545 /// as defined in the specification is handled by [`ChannelManager`] and its implementation of
1546 /// [`OffersMessageHandler`]. However, this only works with an [`Offer`] created using a builder
1547 /// returned by [`create_offer_builder`]. With this approach, BOLT 12 offers and invoices are
1548 /// stateless just as BOLT 11 invoices are.
1549 ///
1550 /// ```
1551 /// # use lightning::events::{Event, EventsProvider, PaymentPurpose};
1552 /// # use lightning::ln::channelmanager::AChannelManager;
1553 /// # use lightning::offers::parse::Bolt12SemanticError;
1554 /// #
1555 /// # fn example<T: AChannelManager>(channel_manager: T) -> Result<(), Bolt12SemanticError> {
1556 /// # let channel_manager = channel_manager.get_cm();
1557 /// # let absolute_expiry = None;
1558 /// let offer = channel_manager
1559 ///     .create_offer_builder(absolute_expiry)?
1560 /// # ;
1561 /// # // Needed for compiling for c_bindings
1562 /// # let builder: lightning::offers::offer::OfferBuilder<_, _> = offer.into();
1563 /// # let offer = builder
1564 ///     .description("coffee".to_string())
1565 ///     .amount_msats(10_000_000)
1566 ///     .build()?;
1567 /// let bech32_offer = offer.to_string();
1568 ///
1569 /// // On the event processing thread
1570 /// channel_manager.process_pending_events(&|event| match event {
1571 ///     Event::PaymentClaimable { payment_hash, purpose, .. } => match purpose {
1572 ///         PaymentPurpose::Bolt12OfferPayment { payment_preimage: Some(payment_preimage), .. } => {
1573 ///             println!("Claiming payment {}", payment_hash);
1574 ///             channel_manager.claim_funds(payment_preimage);
1575 ///         },
1576 ///         PaymentPurpose::Bolt12OfferPayment { payment_preimage: None, .. } => {
1577 ///             println!("Unknown payment hash: {}", payment_hash);
1578 ///         },
1579 ///         // ...
1580 /// #         _ => {},
1581 ///     },
1582 ///     Event::PaymentClaimed { payment_hash, amount_msat, .. } => {
1583 ///         println!("Claimed {} msats", amount_msat);
1584 ///     },
1585 ///     // ...
1586 /// #     _ => {},
1587 /// });
1588 /// # Ok(())
1589 /// # }
1590 /// ```
1591 ///
1592 /// Use [`pay_for_offer`] to initiated payment, which sends an [`InvoiceRequest`] for an [`Offer`]
1593 /// and pays the [`Bolt12Invoice`] response. In addition to success and failure events,
1594 /// [`ChannelManager`] may also generate an [`Event::InvoiceRequestFailed`].
1595 ///
1596 /// ```
1597 /// # use lightning::events::{Event, EventsProvider};
1598 /// # use lightning::ln::channelmanager::{AChannelManager, PaymentId, RecentPaymentDetails, Retry};
1599 /// # use lightning::offers::offer::Offer;
1600 /// #
1601 /// # fn example<T: AChannelManager>(
1602 /// #     channel_manager: T, offer: &Offer, quantity: Option<u64>, amount_msats: Option<u64>,
1603 /// #     payer_note: Option<String>, retry: Retry, max_total_routing_fee_msat: Option<u64>
1604 /// # ) {
1605 /// # let channel_manager = channel_manager.get_cm();
1606 /// let payment_id = PaymentId([42; 32]);
1607 /// match channel_manager.pay_for_offer(
1608 ///     offer, quantity, amount_msats, payer_note, payment_id, retry, max_total_routing_fee_msat
1609 /// ) {
1610 ///     Ok(()) => println!("Requesting invoice for offer"),
1611 ///     Err(e) => println!("Unable to request invoice for offer: {:?}", e),
1612 /// }
1613 ///
1614 /// // First the payment will be waiting on an invoice
1615 /// let expected_payment_id = payment_id;
1616 /// assert!(
1617 ///     channel_manager.list_recent_payments().iter().find(|details| matches!(
1618 ///         details,
1619 ///         RecentPaymentDetails::AwaitingInvoice { payment_id: expected_payment_id }
1620 ///     )).is_some()
1621 /// );
1622 ///
1623 /// // Once the invoice is received, a payment will be sent
1624 /// assert!(
1625 ///     channel_manager.list_recent_payments().iter().find(|details| matches!(
1626 ///         details,
1627 ///         RecentPaymentDetails::Pending { payment_id: expected_payment_id, ..  }
1628 ///     )).is_some()
1629 /// );
1630 ///
1631 /// // On the event processing thread
1632 /// channel_manager.process_pending_events(&|event| match event {
1633 ///     Event::PaymentSent { payment_id: Some(payment_id), .. } => println!("Paid {}", payment_id),
1634 ///     Event::PaymentFailed { payment_id, .. } => println!("Failed paying {}", payment_id),
1635 ///     Event::InvoiceRequestFailed { payment_id, .. } => println!("Failed paying {}", payment_id),
1636 ///     // ...
1637 /// #     _ => {},
1638 /// });
1639 /// # }
1640 /// ```
1641 ///
1642 /// ## BOLT 12 Refunds
1643 ///
1644 /// A [`Refund`] is a request for an invoice to be paid. Like *paying* for an [`Offer`], *creating*
1645 /// a [`Refund`] involves maintaining state since it represents a future outbound payment.
1646 /// Therefore, use [`create_refund_builder`] when creating one, otherwise [`ChannelManager`] will
1647 /// refuse to pay any corresponding [`Bolt12Invoice`] that it receives.
1648 ///
1649 /// ```
1650 /// # use core::time::Duration;
1651 /// # use lightning::events::{Event, EventsProvider};
1652 /// # use lightning::ln::channelmanager::{AChannelManager, PaymentId, RecentPaymentDetails, Retry};
1653 /// # use lightning::offers::parse::Bolt12SemanticError;
1654 /// #
1655 /// # fn example<T: AChannelManager>(
1656 /// #     channel_manager: T, amount_msats: u64, absolute_expiry: Duration, retry: Retry,
1657 /// #     max_total_routing_fee_msat: Option<u64>
1658 /// # ) -> Result<(), Bolt12SemanticError> {
1659 /// # let channel_manager = channel_manager.get_cm();
1660 /// let payment_id = PaymentId([42; 32]);
1661 /// let refund = channel_manager
1662 ///     .create_refund_builder(
1663 ///         amount_msats, absolute_expiry, payment_id, retry, max_total_routing_fee_msat
1664 ///     )?
1665 /// # ;
1666 /// # // Needed for compiling for c_bindings
1667 /// # let builder: lightning::offers::refund::RefundBuilder<_> = refund.into();
1668 /// # let refund = builder
1669 ///     .description("coffee".to_string())
1670 ///     .payer_note("refund for order 1234".to_string())
1671 ///     .build()?;
1672 /// let bech32_refund = refund.to_string();
1673 ///
1674 /// // First the payment will be waiting on an invoice
1675 /// let expected_payment_id = payment_id;
1676 /// assert!(
1677 ///     channel_manager.list_recent_payments().iter().find(|details| matches!(
1678 ///         details,
1679 ///         RecentPaymentDetails::AwaitingInvoice { payment_id: expected_payment_id }
1680 ///     )).is_some()
1681 /// );
1682 ///
1683 /// // Once the invoice is received, a payment will be sent
1684 /// assert!(
1685 ///     channel_manager.list_recent_payments().iter().find(|details| matches!(
1686 ///         details,
1687 ///         RecentPaymentDetails::Pending { payment_id: expected_payment_id, ..  }
1688 ///     )).is_some()
1689 /// );
1690 ///
1691 /// // On the event processing thread
1692 /// channel_manager.process_pending_events(&|event| match event {
1693 ///     Event::PaymentSent { payment_id: Some(payment_id), .. } => println!("Paid {}", payment_id),
1694 ///     Event::PaymentFailed { payment_id, .. } => println!("Failed paying {}", payment_id),
1695 ///     // ...
1696 /// #     _ => {},
1697 /// });
1698 /// # Ok(())
1699 /// # }
1700 /// ```
1701 ///
1702 /// Use [`request_refund_payment`] to send a [`Bolt12Invoice`] for receiving the refund. Similar to
1703 /// *creating* an [`Offer`], this is stateless as it represents an inbound payment.
1704 ///
1705 /// ```
1706 /// # use lightning::events::{Event, EventsProvider, PaymentPurpose};
1707 /// # use lightning::ln::channelmanager::AChannelManager;
1708 /// # use lightning::offers::refund::Refund;
1709 /// #
1710 /// # fn example<T: AChannelManager>(channel_manager: T, refund: &Refund) {
1711 /// # let channel_manager = channel_manager.get_cm();
1712 /// let known_payment_hash = match channel_manager.request_refund_payment(refund) {
1713 ///     Ok(invoice) => {
1714 ///         let payment_hash = invoice.payment_hash();
1715 ///         println!("Requesting refund payment {}", payment_hash);
1716 ///         payment_hash
1717 ///     },
1718 ///     Err(e) => panic!("Unable to request payment for refund: {:?}", e),
1719 /// };
1720 ///
1721 /// // On the event processing thread
1722 /// channel_manager.process_pending_events(&|event| match event {
1723 ///     Event::PaymentClaimable { payment_hash, purpose, .. } => match purpose {
1724 ///             PaymentPurpose::Bolt12RefundPayment { payment_preimage: Some(payment_preimage), .. } => {
1725 ///             assert_eq!(payment_hash, known_payment_hash);
1726 ///             println!("Claiming payment {}", payment_hash);
1727 ///             channel_manager.claim_funds(payment_preimage);
1728 ///         },
1729 ///             PaymentPurpose::Bolt12RefundPayment { payment_preimage: None, .. } => {
1730 ///             println!("Unknown payment hash: {}", payment_hash);
1731 ///             },
1732 ///         // ...
1733 /// #         _ => {},
1734 ///     },
1735 ///     Event::PaymentClaimed { payment_hash, amount_msat, .. } => {
1736 ///         assert_eq!(payment_hash, known_payment_hash);
1737 ///         println!("Claimed {} msats", amount_msat);
1738 ///     },
1739 ///     // ...
1740 /// #     _ => {},
1741 /// });
1742 /// # }
1743 /// ```
1744 ///
1745 /// # Persistence
1746 ///
1747 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
1748 /// all peers during write/read (though does not modify this instance, only the instance being
1749 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
1750 /// called [`funding_transaction_generated`] for outbound channels) being closed.
1751 ///
1752 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
1753 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST durably write each
1754 /// [`ChannelMonitorUpdate`] before returning from
1755 /// [`chain::Watch::watch_channel`]/[`update_channel`] or before completing async writes. With
1756 /// `ChannelManager`s, writing updates happens out-of-band (and will prevent any other
1757 /// `ChannelManager` operations from occurring during the serialization process). If the
1758 /// deserialized version is out-of-date compared to the [`ChannelMonitor`] passed by reference to
1759 /// [`read`], those channels will be force-closed based on the `ChannelMonitor` state and no funds
1760 /// will be lost (modulo on-chain transaction fees).
1761 ///
1762 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
1763 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
1764 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
1765 ///
1766 /// # `ChannelUpdate` Messages
1767 ///
1768 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
1769 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
1770 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
1771 /// offline for a full minute. In order to track this, you must call
1772 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
1773 ///
1774 /// # DoS Mitigation
1775 ///
1776 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
1777 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
1778 /// not have a channel with being unable to connect to us or open new channels with us if we have
1779 /// many peers with unfunded channels.
1780 ///
1781 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
1782 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
1783 /// never limited. Please ensure you limit the count of such channels yourself.
1784 ///
1785 /// # Type Aliases
1786 ///
1787 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
1788 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
1789 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
1790 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
1791 /// you're using lightning-net-tokio.
1792 ///
1793 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1794 /// [`MessageHandler`]: crate::ln::peer_handler::MessageHandler
1795 /// [`OnionMessenger`]: crate::onion_message::messenger::OnionMessenger
1796 /// [`PeerManager::read_event`]: crate::ln::peer_handler::PeerManager::read_event
1797 /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
1798 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
1799 /// [`get_and_clear_needs_persistence`]: Self::get_and_clear_needs_persistence
1800 /// [`Persister`]: crate::util::persist::Persister
1801 /// [`KVStore`]: crate::util::persist::KVStore
1802 /// [`get_event_or_persistence_needed_future`]: Self::get_event_or_persistence_needed_future
1803 /// [`lightning-block-sync`]: https://docs.rs/lightning_block_sync/latest/lightning_block_sync
1804 /// [`lightning-transaction-sync`]: https://docs.rs/lightning_transaction_sync/latest/lightning_transaction_sync
1805 /// [`lightning-background-processor`]: https://docs.rs/lightning_background_processor/lightning_background_processor
1806 /// [`list_channels`]: Self::list_channels
1807 /// [`list_usable_channels`]: Self::list_usable_channels
1808 /// [`create_channel`]: Self::create_channel
1809 /// [`close_channel`]: Self::force_close_broadcasting_latest_txn
1810 /// [`force_close_broadcasting_latest_txn`]: Self::force_close_broadcasting_latest_txn
1811 /// [BOLT 11]: https://github.com/lightning/bolts/blob/master/11-payment-encoding.md
1812 /// [BOLT 12]: https://github.com/rustyrussell/lightning-rfc/blob/guilt/offers/12-offer-encoding.md
1813 /// [`list_recent_payments`]: Self::list_recent_payments
1814 /// [`abandon_payment`]: Self::abandon_payment
1815 /// [`lightning-invoice`]: https://docs.rs/lightning_invoice/latest/lightning_invoice
1816 /// [`create_inbound_payment`]: Self::create_inbound_payment
1817 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1818 /// [`claim_funds`]: Self::claim_funds
1819 /// [`send_payment`]: Self::send_payment
1820 /// [`offers`]: crate::offers
1821 /// [`create_offer_builder`]: Self::create_offer_builder
1822 /// [`pay_for_offer`]: Self::pay_for_offer
1823 /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
1824 /// [`create_refund_builder`]: Self::create_refund_builder
1825 /// [`request_refund_payment`]: Self::request_refund_payment
1826 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
1827 /// [`funding_created`]: msgs::FundingCreated
1828 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
1829 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
1830 /// [`update_channel`]: chain::Watch::update_channel
1831 /// [`ChannelUpdate`]: msgs::ChannelUpdate
1832 /// [`read`]: ReadableArgs::read
1833 //
1834 // Lock order:
1835 // The tree structure below illustrates the lock order requirements for the different locks of the
1836 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
1837 // and should then be taken in the order of the lowest to the highest level in the tree.
1838 // Note that locks on different branches shall not be taken at the same time, as doing so will
1839 // create a new lock order for those specific locks in the order they were taken.
1840 //
1841 // Lock order tree:
1842 //
1843 // `pending_offers_messages`
1844 //
1845 // `total_consistency_lock`
1846 //  |
1847 //  |__`forward_htlcs`
1848 //  |   |
1849 //  |   |__`pending_intercepted_htlcs`
1850 //  |
1851 //  |__`decode_update_add_htlcs`
1852 //  |
1853 //  |__`per_peer_state`
1854 //      |
1855 //      |__`pending_inbound_payments`
1856 //          |
1857 //          |__`claimable_payments`
1858 //          |
1859 //          |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
1860 //              |
1861 //              |__`peer_state`
1862 //                  |
1863 //                  |__`outpoint_to_peer`
1864 //                  |
1865 //                  |__`short_to_chan_info`
1866 //                  |
1867 //                  |__`outbound_scid_aliases`
1868 //                  |
1869 //                  |__`best_block`
1870 //                  |
1871 //                  |__`pending_events`
1872 //                      |
1873 //                      |__`pending_background_events`
1874 //
1875 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
1876 where
1877         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
1878         T::Target: BroadcasterInterface,
1879         ES::Target: EntropySource,
1880         NS::Target: NodeSigner,
1881         SP::Target: SignerProvider,
1882         F::Target: FeeEstimator,
1883         R::Target: Router,
1884         L::Target: Logger,
1885 {
1886         default_configuration: UserConfig,
1887         chain_hash: ChainHash,
1888         fee_estimator: LowerBoundedFeeEstimator<F>,
1889         chain_monitor: M,
1890         tx_broadcaster: T,
1891         #[allow(unused)]
1892         router: R,
1893
1894         /// See `ChannelManager` struct-level documentation for lock order requirements.
1895         #[cfg(test)]
1896         pub(super) best_block: RwLock<BestBlock>,
1897         #[cfg(not(test))]
1898         best_block: RwLock<BestBlock>,
1899         secp_ctx: Secp256k1<secp256k1::All>,
1900
1901         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
1902         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
1903         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
1904         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
1905         ///
1906         /// See `ChannelManager` struct-level documentation for lock order requirements.
1907         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
1908
1909         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
1910         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
1911         /// (if the channel has been force-closed), however we track them here to prevent duplicative
1912         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
1913         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
1914         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
1915         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
1916         /// after reloading from disk while replaying blocks against ChannelMonitors.
1917         ///
1918         /// See `PendingOutboundPayment` documentation for more info.
1919         ///
1920         /// See `ChannelManager` struct-level documentation for lock order requirements.
1921         pending_outbound_payments: OutboundPayments,
1922
1923         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
1924         ///
1925         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1926         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1927         /// and via the classic SCID.
1928         ///
1929         /// Note that no consistency guarantees are made about the existence of a channel with the
1930         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
1931         ///
1932         /// See `ChannelManager` struct-level documentation for lock order requirements.
1933         #[cfg(test)]
1934         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1935         #[cfg(not(test))]
1936         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1937         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
1938         /// until the user tells us what we should do with them.
1939         ///
1940         /// See `ChannelManager` struct-level documentation for lock order requirements.
1941         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
1942
1943         /// SCID/SCID Alias -> pending `update_add_htlc`s to decode.
1944         ///
1945         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1946         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1947         /// and via the classic SCID.
1948         ///
1949         /// Note that no consistency guarantees are made about the existence of a channel with the
1950         /// `short_channel_id` here, nor the `channel_id` in `UpdateAddHTLC`!
1951         ///
1952         /// See `ChannelManager` struct-level documentation for lock order requirements.
1953         decode_update_add_htlcs: Mutex<HashMap<u64, Vec<msgs::UpdateAddHTLC>>>,
1954
1955         /// The sets of payments which are claimable or currently being claimed. See
1956         /// [`ClaimablePayments`]' individual field docs for more info.
1957         ///
1958         /// See `ChannelManager` struct-level documentation for lock order requirements.
1959         claimable_payments: Mutex<ClaimablePayments>,
1960
1961         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
1962         /// and some closed channels which reached a usable state prior to being closed. This is used
1963         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
1964         /// active channel list on load.
1965         ///
1966         /// See `ChannelManager` struct-level documentation for lock order requirements.
1967         outbound_scid_aliases: Mutex<HashSet<u64>>,
1968
1969         /// Channel funding outpoint -> `counterparty_node_id`.
1970         ///
1971         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
1972         /// the corresponding channel for the event, as we only have access to the `channel_id` during
1973         /// the handling of the events.
1974         ///
1975         /// Note that no consistency guarantees are made about the existence of a peer with the
1976         /// `counterparty_node_id` in our other maps.
1977         ///
1978         /// TODO:
1979         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
1980         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
1981         /// would break backwards compatability.
1982         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
1983         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
1984         /// required to access the channel with the `counterparty_node_id`.
1985         ///
1986         /// See `ChannelManager` struct-level documentation for lock order requirements.
1987         #[cfg(not(test))]
1988         outpoint_to_peer: Mutex<HashMap<OutPoint, PublicKey>>,
1989         #[cfg(test)]
1990         pub(crate) outpoint_to_peer: Mutex<HashMap<OutPoint, PublicKey>>,
1991
1992         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
1993         ///
1994         /// Outbound SCID aliases are added here once the channel is available for normal use, with
1995         /// SCIDs being added once the funding transaction is confirmed at the channel's required
1996         /// confirmation depth.
1997         ///
1998         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
1999         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
2000         /// channel with the `channel_id` in our other maps.
2001         ///
2002         /// See `ChannelManager` struct-level documentation for lock order requirements.
2003         #[cfg(test)]
2004         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
2005         #[cfg(not(test))]
2006         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
2007
2008         our_network_pubkey: PublicKey,
2009
2010         inbound_payment_key: inbound_payment::ExpandedKey,
2011
2012         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
2013         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
2014         /// we encrypt the namespace identifier using these bytes.
2015         ///
2016         /// [fake scids]: crate::util::scid_utils::fake_scid
2017         fake_scid_rand_bytes: [u8; 32],
2018
2019         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
2020         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
2021         /// keeping additional state.
2022         probing_cookie_secret: [u8; 32],
2023
2024         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
2025         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
2026         /// very far in the past, and can only ever be up to two hours in the future.
2027         highest_seen_timestamp: AtomicUsize,
2028
2029         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
2030         /// basis, as well as the peer's latest features.
2031         ///
2032         /// If we are connected to a peer we always at least have an entry here, even if no channels
2033         /// are currently open with that peer.
2034         ///
2035         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
2036         /// operate on the inner value freely. This opens up for parallel per-peer operation for
2037         /// channels.
2038         ///
2039         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
2040         ///
2041         /// See `ChannelManager` struct-level documentation for lock order requirements.
2042         #[cfg(not(any(test, feature = "_test_utils")))]
2043         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
2044         #[cfg(any(test, feature = "_test_utils"))]
2045         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
2046
2047         /// The set of events which we need to give to the user to handle. In some cases an event may
2048         /// require some further action after the user handles it (currently only blocking a monitor
2049         /// update from being handed to the user to ensure the included changes to the channel state
2050         /// are handled by the user before they're persisted durably to disk). In that case, the second
2051         /// element in the tuple is set to `Some` with further details of the action.
2052         ///
2053         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
2054         /// could be in the middle of being processed without the direct mutex held.
2055         ///
2056         /// See `ChannelManager` struct-level documentation for lock order requirements.
2057         #[cfg(not(any(test, feature = "_test_utils")))]
2058         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
2059         #[cfg(any(test, feature = "_test_utils"))]
2060         pub(crate) pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
2061
2062         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
2063         pending_events_processor: AtomicBool,
2064
2065         /// If we are running during init (either directly during the deserialization method or in
2066         /// block connection methods which run after deserialization but before normal operation) we
2067         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
2068         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
2069         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
2070         ///
2071         /// Thus, we place them here to be handled as soon as possible once we are running normally.
2072         ///
2073         /// See `ChannelManager` struct-level documentation for lock order requirements.
2074         ///
2075         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
2076         pending_background_events: Mutex<Vec<BackgroundEvent>>,
2077         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
2078         /// Essentially just when we're serializing ourselves out.
2079         /// Taken first everywhere where we are making changes before any other locks.
2080         /// When acquiring this lock in read mode, rather than acquiring it directly, call
2081         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
2082         /// Notifier the lock contains sends out a notification when the lock is released.
2083         total_consistency_lock: RwLock<()>,
2084         /// Tracks the progress of channels going through batch funding by whether funding_signed was
2085         /// received and the monitor has been persisted.
2086         ///
2087         /// This information does not need to be persisted as funding nodes can forget
2088         /// unfunded channels upon disconnection.
2089         funding_batch_states: Mutex<BTreeMap<Txid, Vec<(ChannelId, PublicKey, bool)>>>,
2090
2091         background_events_processed_since_startup: AtomicBool,
2092
2093         event_persist_notifier: Notifier,
2094         needs_persist_flag: AtomicBool,
2095
2096         pending_offers_messages: Mutex<Vec<PendingOnionMessage<OffersMessage>>>,
2097
2098         /// Tracks the message events that are to be broadcasted when we are connected to some peer.
2099         pending_broadcast_messages: Mutex<Vec<MessageSendEvent>>,
2100
2101         entropy_source: ES,
2102         node_signer: NS,
2103         signer_provider: SP,
2104
2105         logger: L,
2106 }
2107
2108 /// Chain-related parameters used to construct a new `ChannelManager`.
2109 ///
2110 /// Typically, the block-specific parameters are derived from the best block hash for the network,
2111 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
2112 /// are not needed when deserializing a previously constructed `ChannelManager`.
2113 #[derive(Clone, Copy, PartialEq)]
2114 pub struct ChainParameters {
2115         /// The network for determining the `chain_hash` in Lightning messages.
2116         pub network: Network,
2117
2118         /// The hash and height of the latest block successfully connected.
2119         ///
2120         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
2121         pub best_block: BestBlock,
2122 }
2123
2124 #[derive(Copy, Clone, PartialEq)]
2125 #[must_use]
2126 enum NotifyOption {
2127         DoPersist,
2128         SkipPersistHandleEvents,
2129         SkipPersistNoEvents,
2130 }
2131
2132 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
2133 /// desirable to notify any listeners on `await_persistable_update_timeout`/
2134 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
2135 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
2136 /// sending the aforementioned notification (since the lock being released indicates that the
2137 /// updates are ready for persistence).
2138 ///
2139 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
2140 /// notify or not based on whether relevant changes have been made, providing a closure to
2141 /// `optionally_notify` which returns a `NotifyOption`.
2142 struct PersistenceNotifierGuard<'a, F: FnMut() -> NotifyOption> {
2143         event_persist_notifier: &'a Notifier,
2144         needs_persist_flag: &'a AtomicBool,
2145         should_persist: F,
2146         // We hold onto this result so the lock doesn't get released immediately.
2147         _read_guard: RwLockReadGuard<'a, ()>,
2148 }
2149
2150 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
2151         /// Notifies any waiters and indicates that we need to persist, in addition to possibly having
2152         /// events to handle.
2153         ///
2154         /// This must always be called if the changes included a `ChannelMonitorUpdate`, as well as in
2155         /// other cases where losing the changes on restart may result in a force-close or otherwise
2156         /// isn't ideal.
2157         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
2158                 Self::optionally_notify(cm, || -> NotifyOption { NotifyOption::DoPersist })
2159         }
2160
2161         fn optionally_notify<F: FnMut() -> NotifyOption, C: AChannelManager>(cm: &'a C, mut persist_check: F)
2162         -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
2163                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
2164                 let force_notify = cm.get_cm().process_background_events();
2165
2166                 PersistenceNotifierGuard {
2167                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
2168                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
2169                         should_persist: move || {
2170                                 // Pick the "most" action between `persist_check` and the background events
2171                                 // processing and return that.
2172                                 let notify = persist_check();
2173                                 match (notify, force_notify) {
2174                                         (NotifyOption::DoPersist, _) => NotifyOption::DoPersist,
2175                                         (_, NotifyOption::DoPersist) => NotifyOption::DoPersist,
2176                                         (NotifyOption::SkipPersistHandleEvents, _) => NotifyOption::SkipPersistHandleEvents,
2177                                         (_, NotifyOption::SkipPersistHandleEvents) => NotifyOption::SkipPersistHandleEvents,
2178                                         _ => NotifyOption::SkipPersistNoEvents,
2179                                 }
2180                         },
2181                         _read_guard: read_guard,
2182                 }
2183         }
2184
2185         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
2186         /// [`ChannelManager::process_background_events`] MUST be called first (or
2187         /// [`Self::optionally_notify`] used).
2188         fn optionally_notify_skipping_background_events<F: Fn() -> NotifyOption, C: AChannelManager>
2189         (cm: &'a C, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
2190                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
2191
2192                 PersistenceNotifierGuard {
2193                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
2194                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
2195                         should_persist: persist_check,
2196                         _read_guard: read_guard,
2197                 }
2198         }
2199 }
2200
2201 impl<'a, F: FnMut() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
2202         fn drop(&mut self) {
2203                 match (self.should_persist)() {
2204                         NotifyOption::DoPersist => {
2205                                 self.needs_persist_flag.store(true, Ordering::Release);
2206                                 self.event_persist_notifier.notify()
2207                         },
2208                         NotifyOption::SkipPersistHandleEvents =>
2209                                 self.event_persist_notifier.notify(),
2210                         NotifyOption::SkipPersistNoEvents => {},
2211                 }
2212         }
2213 }
2214
2215 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
2216 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
2217 ///
2218 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
2219 ///
2220 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
2221 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
2222 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
2223 /// the maximum required amount in lnd as of March 2021.
2224 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
2225
2226 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
2227 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
2228 ///
2229 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
2230 ///
2231 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
2232 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
2233 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
2234 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
2235 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
2236 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
2237 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
2238 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
2239 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
2240 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
2241 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
2242 // routing failure for any HTLC sender picking up an LDK node among the first hops.
2243 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
2244
2245 /// Minimum CLTV difference between the current block height and received inbound payments.
2246 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
2247 /// this value.
2248 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
2249 // any payments to succeed. Further, we don't want payments to fail if a block was found while
2250 // a payment was being routed, so we add an extra block to be safe.
2251 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
2252
2253 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
2254 // ie that if the next-hop peer fails the HTLC within
2255 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
2256 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
2257 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
2258 // LATENCY_GRACE_PERIOD_BLOCKS.
2259 #[allow(dead_code)]
2260 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;
2261
2262 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
2263 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
2264 #[allow(dead_code)]
2265 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
2266
2267 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
2268 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
2269
2270 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
2271 /// until we mark the channel disabled and gossip the update.
2272 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
2273
2274 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
2275 /// we mark the channel enabled and gossip the update.
2276 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
2277
2278 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
2279 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
2280 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
2281 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
2282
2283 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
2284 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
2285 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
2286
2287 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
2288 /// many peers we reject new (inbound) connections.
2289 const MAX_NO_CHANNEL_PEERS: usize = 250;
2290
2291 /// The maximum expiration from the current time where an [`Offer`] or [`Refund`] is considered
2292 /// short-lived, while anything with a greater expiration is considered long-lived.
2293 ///
2294 /// Using [`ChannelManager::create_offer_builder`] or [`ChannelManager::create_refund_builder`],
2295 /// will included a [`BlindedPath`] created using:
2296 /// - [`MessageRouter::create_compact_blinded_paths`] when short-lived, and
2297 /// - [`MessageRouter::create_blinded_paths`] when long-lived.
2298 ///
2299 /// Using compact [`BlindedPath`]s may provide better privacy as the [`MessageRouter`] could select
2300 /// more hops. However, since they use short channel ids instead of pubkeys, they are more likely to
2301 /// become invalid over time as channels are closed. Thus, they are only suitable for short-term use.
2302 pub const MAX_SHORT_LIVED_RELATIVE_EXPIRY: Duration = Duration::from_secs(60 * 60 * 24);
2303
2304 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
2305 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
2306 #[derive(Debug, PartialEq)]
2307 pub enum RecentPaymentDetails {
2308         /// When an invoice was requested and thus a payment has not yet been sent.
2309         AwaitingInvoice {
2310                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
2311                 /// a payment and ensure idempotency in LDK.
2312                 payment_id: PaymentId,
2313         },
2314         /// When a payment is still being sent and awaiting successful delivery.
2315         Pending {
2316                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
2317                 /// a payment and ensure idempotency in LDK.
2318                 payment_id: PaymentId,
2319                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
2320                 /// abandoned.
2321                 payment_hash: PaymentHash,
2322                 /// Total amount (in msat, excluding fees) across all paths for this payment,
2323                 /// not just the amount currently inflight.
2324                 total_msat: u64,
2325         },
2326         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
2327         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
2328         /// payment is removed from tracking.
2329         Fulfilled {
2330                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
2331                 /// a payment and ensure idempotency in LDK.
2332                 payment_id: PaymentId,
2333                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
2334                 /// made before LDK version 0.0.104.
2335                 payment_hash: Option<PaymentHash>,
2336         },
2337         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
2338         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
2339         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
2340         Abandoned {
2341                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
2342                 /// a payment and ensure idempotency in LDK.
2343                 payment_id: PaymentId,
2344                 /// Hash of the payment that we have given up trying to send.
2345                 payment_hash: PaymentHash,
2346         },
2347 }
2348
2349 /// Route hints used in constructing invoices for [phantom node payents].
2350 ///
2351 /// [phantom node payments]: crate::sign::PhantomKeysManager
2352 #[derive(Clone)]
2353 pub struct PhantomRouteHints {
2354         /// The list of channels to be included in the invoice route hints.
2355         pub channels: Vec<ChannelDetails>,
2356         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
2357         /// route hints.
2358         pub phantom_scid: u64,
2359         /// The pubkey of the real backing node that would ultimately receive the payment.
2360         pub real_node_pubkey: PublicKey,
2361 }
2362
2363 macro_rules! handle_error {
2364         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
2365                 // In testing, ensure there are no deadlocks where the lock is already held upon
2366                 // entering the macro.
2367                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
2368                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
2369
2370                 match $internal {
2371                         Ok(msg) => Ok(msg),
2372                         Err(MsgHandleErrInternal { err, shutdown_finish, .. }) => {
2373                                 let mut msg_event = None;
2374
2375                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
2376                                         let counterparty_node_id = shutdown_res.counterparty_node_id;
2377                                         let channel_id = shutdown_res.channel_id;
2378                                         let logger = WithContext::from(
2379                                                 &$self.logger, Some(counterparty_node_id), Some(channel_id), None
2380                                         );
2381                                         log_error!(logger, "Force-closing channel: {}", err.err);
2382
2383                                         $self.finish_close_channel(shutdown_res);
2384                                         if let Some(update) = update_option {
2385                                                 let mut pending_broadcast_messages = $self.pending_broadcast_messages.lock().unwrap();
2386                                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
2387                                                         msg: update
2388                                                 });
2389                                         }
2390                                 } else {
2391                                         log_error!($self.logger, "Got non-closing error: {}", err.err);
2392                                 }
2393
2394                                 if let msgs::ErrorAction::IgnoreError = err.action {
2395                                 } else {
2396                                         msg_event = Some(events::MessageSendEvent::HandleError {
2397                                                 node_id: $counterparty_node_id,
2398                                                 action: err.action.clone()
2399                                         });
2400                                 }
2401
2402                                 if let Some(msg_event) = msg_event {
2403                                         let per_peer_state = $self.per_peer_state.read().unwrap();
2404                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
2405                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
2406                                                 peer_state.pending_msg_events.push(msg_event);
2407                                         }
2408                                 }
2409
2410                                 // Return error in case higher-API need one
2411                                 Err(err)
2412                         },
2413                 }
2414         } };
2415 }
2416
2417 macro_rules! update_maps_on_chan_removal {
2418         ($self: expr, $channel_context: expr) => {{
2419                 if let Some(outpoint) = $channel_context.get_funding_txo() {
2420                         $self.outpoint_to_peer.lock().unwrap().remove(&outpoint);
2421                 }
2422                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
2423                 if let Some(short_id) = $channel_context.get_short_channel_id() {
2424                         short_to_chan_info.remove(&short_id);
2425                 } else {
2426                         // If the channel was never confirmed on-chain prior to its closure, remove the
2427                         // outbound SCID alias we used for it from the collision-prevention set. While we
2428                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
2429                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
2430                         // opening a million channels with us which are closed before we ever reach the funding
2431                         // stage.
2432                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
2433                         debug_assert!(alias_removed);
2434                 }
2435                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
2436         }}
2437 }
2438
2439 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
2440 macro_rules! convert_chan_phase_err {
2441         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
2442                 match $err {
2443                         ChannelError::Warn(msg) => {
2444                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
2445                         },
2446                         ChannelError::Ignore(msg) => {
2447                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
2448                         },
2449                         ChannelError::Close(msg) => {
2450                                 let logger = WithChannelContext::from(&$self.logger, &$channel.context, None);
2451                                 log_error!(logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
2452                                 update_maps_on_chan_removal!($self, $channel.context);
2453                                 let reason = ClosureReason::ProcessingError { err: msg.clone() };
2454                                 let shutdown_res = $channel.context.force_shutdown(true, reason);
2455                                 let err =
2456                                         MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, shutdown_res, $channel_update);
2457                                 (true, err)
2458                         },
2459                 }
2460         };
2461         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
2462                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
2463         };
2464         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
2465                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
2466         };
2467         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
2468                 match $channel_phase {
2469                         ChannelPhase::Funded(channel) => {
2470                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
2471                         },
2472                         ChannelPhase::UnfundedOutboundV1(channel) => {
2473                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
2474                         },
2475                         ChannelPhase::UnfundedInboundV1(channel) => {
2476                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
2477                         },
2478                         #[cfg(any(dual_funding, splicing))]
2479                         ChannelPhase::UnfundedOutboundV2(channel) => {
2480                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
2481                         },
2482                         #[cfg(any(dual_funding, splicing))]
2483                         ChannelPhase::UnfundedInboundV2(channel) => {
2484                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
2485                         },
2486                 }
2487         };
2488 }
2489
2490 macro_rules! break_chan_phase_entry {
2491         ($self: ident, $res: expr, $entry: expr) => {
2492                 match $res {
2493                         Ok(res) => res,
2494                         Err(e) => {
2495                                 let key = *$entry.key();
2496                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
2497                                 if drop {
2498                                         $entry.remove_entry();
2499                                 }
2500                                 break Err(res);
2501                         }
2502                 }
2503         }
2504 }
2505
2506 macro_rules! try_chan_phase_entry {
2507         ($self: ident, $res: expr, $entry: expr) => {
2508                 match $res {
2509                         Ok(res) => res,
2510                         Err(e) => {
2511                                 let key = *$entry.key();
2512                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
2513                                 if drop {
2514                                         $entry.remove_entry();
2515                                 }
2516                                 return Err(res);
2517                         }
2518                 }
2519         }
2520 }
2521
2522 macro_rules! remove_channel_phase {
2523         ($self: expr, $entry: expr) => {
2524                 {
2525                         let channel = $entry.remove_entry().1;
2526                         update_maps_on_chan_removal!($self, &channel.context());
2527                         channel
2528                 }
2529         }
2530 }
2531
2532 macro_rules! send_channel_ready {
2533         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
2534                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
2535                         node_id: $channel.context.get_counterparty_node_id(),
2536                         msg: $channel_ready_msg,
2537                 });
2538                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
2539                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
2540                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
2541                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
2542                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
2543                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
2544                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
2545                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
2546                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
2547                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
2548                 }
2549         }}
2550 }
2551
2552 macro_rules! emit_channel_pending_event {
2553         ($locked_events: expr, $channel: expr) => {
2554                 if $channel.context.should_emit_channel_pending_event() {
2555                         $locked_events.push_back((events::Event::ChannelPending {
2556                                 channel_id: $channel.context.channel_id(),
2557                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
2558                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
2559                                 user_channel_id: $channel.context.get_user_id(),
2560                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
2561                                 channel_type: Some($channel.context.get_channel_type().clone()),
2562                         }, None));
2563                         $channel.context.set_channel_pending_event_emitted();
2564                 }
2565         }
2566 }
2567
2568 macro_rules! emit_channel_ready_event {
2569         ($locked_events: expr, $channel: expr) => {
2570                 if $channel.context.should_emit_channel_ready_event() {
2571                         debug_assert!($channel.context.channel_pending_event_emitted());
2572                         $locked_events.push_back((events::Event::ChannelReady {
2573                                 channel_id: $channel.context.channel_id(),
2574                                 user_channel_id: $channel.context.get_user_id(),
2575                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
2576                                 channel_type: $channel.context.get_channel_type().clone(),
2577                         }, None));
2578                         $channel.context.set_channel_ready_event_emitted();
2579                 }
2580         }
2581 }
2582
2583 macro_rules! handle_monitor_update_completion {
2584         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
2585                 let logger = WithChannelContext::from(&$self.logger, &$chan.context, None);
2586                 let mut updates = $chan.monitor_updating_restored(&&logger,
2587                         &$self.node_signer, $self.chain_hash, &$self.default_configuration,
2588                         $self.best_block.read().unwrap().height);
2589                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
2590                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
2591                         // We only send a channel_update in the case where we are just now sending a
2592                         // channel_ready and the channel is in a usable state. We may re-send a
2593                         // channel_update later through the announcement_signatures process for public
2594                         // channels, but there's no reason not to just inform our counterparty of our fees
2595                         // now.
2596                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
2597                                 Some(events::MessageSendEvent::SendChannelUpdate {
2598                                         node_id: counterparty_node_id,
2599                                         msg,
2600                                 })
2601                         } else { None }
2602                 } else { None };
2603
2604                 let update_actions = $peer_state.monitor_update_blocked_actions
2605                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
2606
2607                 let (htlc_forwards, decode_update_add_htlcs) = $self.handle_channel_resumption(
2608                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
2609                         updates.commitment_update, updates.order, updates.accepted_htlcs, updates.pending_update_adds,
2610                         updates.funding_broadcastable, updates.channel_ready,
2611                         updates.announcement_sigs);
2612                 if let Some(upd) = channel_update {
2613                         $peer_state.pending_msg_events.push(upd);
2614                 }
2615
2616                 let channel_id = $chan.context.channel_id();
2617                 let unbroadcasted_batch_funding_txid = $chan.context.unbroadcasted_batch_funding_txid();
2618                 core::mem::drop($peer_state_lock);
2619                 core::mem::drop($per_peer_state_lock);
2620
2621                 // If the channel belongs to a batch funding transaction, the progress of the batch
2622                 // should be updated as we have received funding_signed and persisted the monitor.
2623                 if let Some(txid) = unbroadcasted_batch_funding_txid {
2624                         let mut funding_batch_states = $self.funding_batch_states.lock().unwrap();
2625                         let mut batch_completed = false;
2626                         if let Some(batch_state) = funding_batch_states.get_mut(&txid) {
2627                                 let channel_state = batch_state.iter_mut().find(|(chan_id, pubkey, _)| (
2628                                         *chan_id == channel_id &&
2629                                         *pubkey == counterparty_node_id
2630                                 ));
2631                                 if let Some(channel_state) = channel_state {
2632                                         channel_state.2 = true;
2633                                 } else {
2634                                         debug_assert!(false, "Missing channel batch state for channel which completed initial monitor update");
2635                                 }
2636                                 batch_completed = batch_state.iter().all(|(_, _, completed)| *completed);
2637                         } else {
2638                                 debug_assert!(false, "Missing batch state for channel which completed initial monitor update");
2639                         }
2640
2641                         // When all channels in a batched funding transaction have become ready, it is not necessary
2642                         // to track the progress of the batch anymore and the state of the channels can be updated.
2643                         if batch_completed {
2644                                 let removed_batch_state = funding_batch_states.remove(&txid).into_iter().flatten();
2645                                 let per_peer_state = $self.per_peer_state.read().unwrap();
2646                                 let mut batch_funding_tx = None;
2647                                 for (channel_id, counterparty_node_id, _) in removed_batch_state {
2648                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2649                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
2650                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
2651                                                         batch_funding_tx = batch_funding_tx.or_else(|| chan.context.unbroadcasted_funding());
2652                                                         chan.set_batch_ready();
2653                                                         let mut pending_events = $self.pending_events.lock().unwrap();
2654                                                         emit_channel_pending_event!(pending_events, chan);
2655                                                 }
2656                                         }
2657                                 }
2658                                 if let Some(tx) = batch_funding_tx {
2659                                         log_info!($self.logger, "Broadcasting batch funding transaction with txid {}", tx.txid());
2660                                         $self.tx_broadcaster.broadcast_transactions(&[&tx]);
2661                                 }
2662                         }
2663                 }
2664
2665                 $self.handle_monitor_update_completion_actions(update_actions);
2666
2667                 if let Some(forwards) = htlc_forwards {
2668                         $self.forward_htlcs(&mut [forwards][..]);
2669                 }
2670                 if let Some(decode) = decode_update_add_htlcs {
2671                         $self.push_decode_update_add_htlcs(decode);
2672                 }
2673                 $self.finalize_claims(updates.finalized_claimed_htlcs);
2674                 for failure in updates.failed_htlcs.drain(..) {
2675                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2676                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
2677                 }
2678         } }
2679 }
2680
2681 macro_rules! handle_new_monitor_update {
2682         ($self: ident, $update_res: expr, $chan: expr, _internal, $completed: expr) => { {
2683                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
2684                 let logger = WithChannelContext::from(&$self.logger, &$chan.context, None);
2685                 match $update_res {
2686                         ChannelMonitorUpdateStatus::UnrecoverableError => {
2687                                 let err_str = "ChannelMonitor[Update] persistence failed unrecoverably. This indicates we cannot continue normal operation and must shut down.";
2688                                 log_error!(logger, "{}", err_str);
2689                                 panic!("{}", err_str);
2690                         },
2691                         ChannelMonitorUpdateStatus::InProgress => {
2692                                 log_debug!(logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
2693                                         &$chan.context.channel_id());
2694                                 false
2695                         },
2696                         ChannelMonitorUpdateStatus::Completed => {
2697                                 $completed;
2698                                 true
2699                         },
2700                 }
2701         } };
2702         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, INITIAL_MONITOR) => {
2703                 handle_new_monitor_update!($self, $update_res, $chan, _internal,
2704                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2705         };
2706         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
2707                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2708                         .or_insert_with(Vec::new);
2709                 // During startup, we push monitor updates as background events through to here in
2710                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2711                 // filter for uniqueness here.
2712                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2713                         .unwrap_or_else(|| {
2714                                 in_flight_updates.push($update);
2715                                 in_flight_updates.len() - 1
2716                         });
2717                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2718                 handle_new_monitor_update!($self, update_res, $chan, _internal,
2719                         {
2720                                 let _ = in_flight_updates.remove(idx);
2721                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2722                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2723                                 }
2724                         })
2725         } };
2726 }
2727
2728 macro_rules! process_events_body {
2729         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2730                 let mut processed_all_events = false;
2731                 while !processed_all_events {
2732                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2733                                 return;
2734                         }
2735
2736                         let mut result;
2737
2738                         {
2739                                 // We'll acquire our total consistency lock so that we can be sure no other
2740                                 // persists happen while processing monitor events.
2741                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2742
2743                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2744                                 // ensure any startup-generated background events are handled first.
2745                                 result = $self.process_background_events();
2746
2747                                 // TODO: This behavior should be documented. It's unintuitive that we query
2748                                 // ChannelMonitors when clearing other events.
2749                                 if $self.process_pending_monitor_events() {
2750                                         result = NotifyOption::DoPersist;
2751                                 }
2752                         }
2753
2754                         let pending_events = $self.pending_events.lock().unwrap().clone();
2755                         let num_events = pending_events.len();
2756                         if !pending_events.is_empty() {
2757                                 result = NotifyOption::DoPersist;
2758                         }
2759
2760                         let mut post_event_actions = Vec::new();
2761
2762                         for (event, action_opt) in pending_events {
2763                                 $event_to_handle = event;
2764                                 $handle_event;
2765                                 if let Some(action) = action_opt {
2766                                         post_event_actions.push(action);
2767                                 }
2768                         }
2769
2770                         {
2771                                 let mut pending_events = $self.pending_events.lock().unwrap();
2772                                 pending_events.drain(..num_events);
2773                                 processed_all_events = pending_events.is_empty();
2774                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2775                                 // updated here with the `pending_events` lock acquired.
2776                                 $self.pending_events_processor.store(false, Ordering::Release);
2777                         }
2778
2779                         if !post_event_actions.is_empty() {
2780                                 $self.handle_post_event_actions(post_event_actions);
2781                                 // If we had some actions, go around again as we may have more events now
2782                                 processed_all_events = false;
2783                         }
2784
2785                         match result {
2786                                 NotifyOption::DoPersist => {
2787                                         $self.needs_persist_flag.store(true, Ordering::Release);
2788                                         $self.event_persist_notifier.notify();
2789                                 },
2790                                 NotifyOption::SkipPersistHandleEvents =>
2791                                         $self.event_persist_notifier.notify(),
2792                                 NotifyOption::SkipPersistNoEvents => {},
2793                         }
2794                 }
2795         }
2796 }
2797
2798 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> ChannelManager<M, T, ES, NS, SP, F, R, L>
2799 where
2800         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
2801         T::Target: BroadcasterInterface,
2802         ES::Target: EntropySource,
2803         NS::Target: NodeSigner,
2804         SP::Target: SignerProvider,
2805         F::Target: FeeEstimator,
2806         R::Target: Router,
2807         L::Target: Logger,
2808 {
2809         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2810         ///
2811         /// The current time or latest block header time can be provided as the `current_timestamp`.
2812         ///
2813         /// This is the main "logic hub" for all channel-related actions, and implements
2814         /// [`ChannelMessageHandler`].
2815         ///
2816         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2817         ///
2818         /// Users need to notify the new `ChannelManager` when a new block is connected or
2819         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2820         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2821         /// more details.
2822         ///
2823         /// [`block_connected`]: chain::Listen::block_connected
2824         /// [`block_disconnected`]: chain::Listen::block_disconnected
2825         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2826         pub fn new(
2827                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2828                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2829                 current_timestamp: u32,
2830         ) -> Self {
2831                 let mut secp_ctx = Secp256k1::new();
2832                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2833                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2834                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2835                 ChannelManager {
2836                         default_configuration: config.clone(),
2837                         chain_hash: ChainHash::using_genesis_block(params.network),
2838                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2839                         chain_monitor,
2840                         tx_broadcaster,
2841                         router,
2842
2843                         best_block: RwLock::new(params.best_block),
2844
2845                         outbound_scid_aliases: Mutex::new(new_hash_set()),
2846                         pending_inbound_payments: Mutex::new(new_hash_map()),
2847                         pending_outbound_payments: OutboundPayments::new(),
2848                         forward_htlcs: Mutex::new(new_hash_map()),
2849                         decode_update_add_htlcs: Mutex::new(new_hash_map()),
2850                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: new_hash_map(), pending_claiming_payments: new_hash_map() }),
2851                         pending_intercepted_htlcs: Mutex::new(new_hash_map()),
2852                         outpoint_to_peer: Mutex::new(new_hash_map()),
2853                         short_to_chan_info: FairRwLock::new(new_hash_map()),
2854
2855                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2856                         secp_ctx,
2857
2858                         inbound_payment_key: expanded_inbound_key,
2859                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2860
2861                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2862
2863                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2864
2865                         per_peer_state: FairRwLock::new(new_hash_map()),
2866
2867                         pending_events: Mutex::new(VecDeque::new()),
2868                         pending_events_processor: AtomicBool::new(false),
2869                         pending_background_events: Mutex::new(Vec::new()),
2870                         total_consistency_lock: RwLock::new(()),
2871                         background_events_processed_since_startup: AtomicBool::new(false),
2872                         event_persist_notifier: Notifier::new(),
2873                         needs_persist_flag: AtomicBool::new(false),
2874                         funding_batch_states: Mutex::new(BTreeMap::new()),
2875
2876                         pending_offers_messages: Mutex::new(Vec::new()),
2877                         pending_broadcast_messages: Mutex::new(Vec::new()),
2878
2879                         entropy_source,
2880                         node_signer,
2881                         signer_provider,
2882
2883                         logger,
2884                 }
2885         }
2886
2887         /// Gets the current configuration applied to all new channels.
2888         pub fn get_current_default_configuration(&self) -> &UserConfig {
2889                 &self.default_configuration
2890         }
2891
2892         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2893                 let height = self.best_block.read().unwrap().height;
2894                 let mut outbound_scid_alias = 0;
2895                 let mut i = 0;
2896                 loop {
2897                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2898                                 outbound_scid_alias += 1;
2899                         } else {
2900                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.chain_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2901                         }
2902                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2903                                 break;
2904                         }
2905                         i += 1;
2906                         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"); }
2907                 }
2908                 outbound_scid_alias
2909         }
2910
2911         /// Creates a new outbound channel to the given remote node and with the given value.
2912         ///
2913         /// `user_channel_id` will be provided back as in
2914         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2915         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2916         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2917         /// is simply copied to events and otherwise ignored.
2918         ///
2919         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2920         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2921         ///
2922         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2923         /// generate a shutdown scriptpubkey or destination script set by
2924         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2925         ///
2926         /// Note that we do not check if you are currently connected to the given peer. If no
2927         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2928         /// the channel eventually being silently forgotten (dropped on reload).
2929         ///
2930         /// If `temporary_channel_id` is specified, it will be used as the temporary channel ID of the
2931         /// channel. Otherwise, a random one will be generated for you.
2932         ///
2933         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2934         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2935         /// [`ChannelDetails::channel_id`] until after
2936         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2937         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2938         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2939         ///
2940         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2941         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2942         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2943         pub fn create_channel(&self, their_network_key: PublicKey, channel_value_satoshis: u64, push_msat: u64, user_channel_id: u128, temporary_channel_id: Option<ChannelId>, override_config: Option<UserConfig>) -> Result<ChannelId, APIError> {
2944                 if channel_value_satoshis < 1000 {
2945                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2946                 }
2947
2948                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2949                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2950                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2951
2952                 let per_peer_state = self.per_peer_state.read().unwrap();
2953
2954                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2955                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2956
2957                 let mut peer_state = peer_state_mutex.lock().unwrap();
2958
2959                 if let Some(temporary_channel_id) = temporary_channel_id {
2960                         if peer_state.channel_by_id.contains_key(&temporary_channel_id) {
2961                                 return Err(APIError::APIMisuseError{ err: format!("Channel with temporary channel ID {} already exists!", temporary_channel_id)});
2962                         }
2963                 }
2964
2965                 let channel = {
2966                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2967                         let their_features = &peer_state.latest_features;
2968                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2969                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2970                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2971                                 self.best_block.read().unwrap().height, outbound_scid_alias, temporary_channel_id)
2972                         {
2973                                 Ok(res) => res,
2974                                 Err(e) => {
2975                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2976                                         return Err(e);
2977                                 },
2978                         }
2979                 };
2980                 let res = channel.get_open_channel(self.chain_hash);
2981
2982                 let temporary_channel_id = channel.context.channel_id();
2983                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2984                         hash_map::Entry::Occupied(_) => {
2985                                 if cfg!(fuzzing) {
2986                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2987                                 } else {
2988                                         panic!("RNG is bad???");
2989                                 }
2990                         },
2991                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
2992                 }
2993
2994                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2995                         node_id: their_network_key,
2996                         msg: res,
2997                 });
2998                 Ok(temporary_channel_id)
2999         }
3000
3001         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
3002                 // Allocate our best estimate of the number of channels we have in the `res`
3003                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
3004                 // a scid or a scid alias, and the `outpoint_to_peer` shouldn't be used outside
3005                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
3006                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
3007                 // the same channel.
3008                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
3009                 {
3010                         let best_block_height = self.best_block.read().unwrap().height;
3011                         let per_peer_state = self.per_peer_state.read().unwrap();
3012                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
3013                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3014                                 let peer_state = &mut *peer_state_lock;
3015                                 res.extend(peer_state.channel_by_id.iter()
3016                                         .filter_map(|(chan_id, phase)| match phase {
3017                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
3018                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
3019                                                 _ => None,
3020                                         })
3021                                         .filter(f)
3022                                         .map(|(_channel_id, channel)| {
3023                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
3024                                                         peer_state.latest_features.clone(), &self.fee_estimator)
3025                                         })
3026                                 );
3027                         }
3028                 }
3029                 res
3030         }
3031
3032         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
3033         /// more information.
3034         pub fn list_channels(&self) -> Vec<ChannelDetails> {
3035                 // Allocate our best estimate of the number of channels we have in the `res`
3036                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
3037                 // a scid or a scid alias, and the `outpoint_to_peer` shouldn't be used outside
3038                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
3039                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
3040                 // the same channel.
3041                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
3042                 {
3043                         let best_block_height = self.best_block.read().unwrap().height;
3044                         let per_peer_state = self.per_peer_state.read().unwrap();
3045                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
3046                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3047                                 let peer_state = &mut *peer_state_lock;
3048                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
3049                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
3050                                                 peer_state.latest_features.clone(), &self.fee_estimator);
3051                                         res.push(details);
3052                                 }
3053                         }
3054                 }
3055                 res
3056         }
3057
3058         /// Gets the list of usable channels, in random order. Useful as an argument to
3059         /// [`Router::find_route`] to ensure non-announced channels are used.
3060         ///
3061         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
3062         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
3063         /// are.
3064         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
3065                 // Note we use is_live here instead of usable which leads to somewhat confused
3066                 // internal/external nomenclature, but that's ok cause that's probably what the user
3067                 // really wanted anyway.
3068                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
3069         }
3070
3071         /// Gets the list of channels we have with a given counterparty, in random order.
3072         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
3073                 let best_block_height = self.best_block.read().unwrap().height;
3074                 let per_peer_state = self.per_peer_state.read().unwrap();
3075
3076                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
3077                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3078                         let peer_state = &mut *peer_state_lock;
3079                         let features = &peer_state.latest_features;
3080                         let context_to_details = |context| {
3081                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
3082                         };
3083                         return peer_state.channel_by_id
3084                                 .iter()
3085                                 .map(|(_, phase)| phase.context())
3086                                 .map(context_to_details)
3087                                 .collect();
3088                 }
3089                 vec![]
3090         }
3091
3092         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
3093         /// successful path, or have unresolved HTLCs.
3094         ///
3095         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
3096         /// result of a crash. If such a payment exists, is not listed here, and an
3097         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
3098         ///
3099         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3100         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
3101                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
3102                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
3103                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
3104                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
3105                                 },
3106                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
3107                                 PendingOutboundPayment::InvoiceReceived { .. } => {
3108                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
3109                                 },
3110                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
3111                                         Some(RecentPaymentDetails::Pending {
3112                                                 payment_id: *payment_id,
3113                                                 payment_hash: *payment_hash,
3114                                                 total_msat: *total_msat,
3115                                         })
3116                                 },
3117                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
3118                                         Some(RecentPaymentDetails::Abandoned { payment_id: *payment_id, payment_hash: *payment_hash })
3119                                 },
3120                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
3121                                         Some(RecentPaymentDetails::Fulfilled { payment_id: *payment_id, payment_hash: *payment_hash })
3122                                 },
3123                                 PendingOutboundPayment::Legacy { .. } => None
3124                         })
3125                         .collect()
3126         }
3127
3128         fn close_channel_internal(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, override_shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
3129                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3130
3131                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)> = Vec::new();
3132                 let mut shutdown_result = None;
3133
3134                 {
3135                         let per_peer_state = self.per_peer_state.read().unwrap();
3136
3137                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3138                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3139
3140                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3141                         let peer_state = &mut *peer_state_lock;
3142
3143                         match peer_state.channel_by_id.entry(channel_id.clone()) {
3144                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
3145                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
3146                                                 let funding_txo_opt = chan.context.get_funding_txo();
3147                                                 let their_features = &peer_state.latest_features;
3148                                                 let (shutdown_msg, mut monitor_update_opt, htlcs) =
3149                                                         chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
3150                                                 failed_htlcs = htlcs;
3151
3152                                                 // We can send the `shutdown` message before updating the `ChannelMonitor`
3153                                                 // here as we don't need the monitor update to complete until we send a
3154                                                 // `shutdown_signed`, which we'll delay if we're pending a monitor update.
3155                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
3156                                                         node_id: *counterparty_node_id,
3157                                                         msg: shutdown_msg,
3158                                                 });
3159
3160                                                 debug_assert!(monitor_update_opt.is_none() || !chan.is_shutdown(),
3161                                                         "We can't both complete shutdown and generate a monitor update");
3162
3163                                                 // Update the monitor with the shutdown script if necessary.
3164                                                 if let Some(monitor_update) = monitor_update_opt.take() {
3165                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
3166                                                                 peer_state_lock, peer_state, per_peer_state, chan);
3167                                                 }
3168                                         } else {
3169                                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
3170                                                 shutdown_result = Some(chan_phase.context_mut().force_shutdown(false, ClosureReason::HolderForceClosed));
3171                                         }
3172                                 },
3173                                 hash_map::Entry::Vacant(_) => {
3174                                         return Err(APIError::ChannelUnavailable {
3175                                                 err: format!(
3176                                                         "Channel with id {} not found for the passed counterparty node_id {}",
3177                                                         channel_id, counterparty_node_id,
3178                                                 )
3179                                         });
3180                                 },
3181                         }
3182                 }
3183
3184                 for htlc_source in failed_htlcs.drain(..) {
3185                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
3186                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
3187                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
3188                 }
3189
3190                 if let Some(shutdown_result) = shutdown_result {
3191                         self.finish_close_channel(shutdown_result);
3192                 }
3193
3194                 Ok(())
3195         }
3196
3197         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
3198         /// will be accepted on the given channel, and after additional timeout/the closing of all
3199         /// pending HTLCs, the channel will be closed on chain.
3200         ///
3201         ///  * If we are the channel initiator, we will pay between our [`ChannelCloseMinimum`] and
3202         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`NonAnchorChannelFee`]
3203         ///    fee estimate.
3204         ///  * If our counterparty is the channel initiator, we will require a channel closing
3205         ///    transaction feerate of at least our [`ChannelCloseMinimum`] feerate or the feerate which
3206         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
3207         ///    counterparty to pay as much fee as they'd like, however.
3208         ///
3209         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
3210         ///
3211         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
3212         /// generate a shutdown scriptpubkey or destination script set by
3213         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
3214         /// channel.
3215         ///
3216         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
3217         /// [`ChannelCloseMinimum`]: crate::chain::chaininterface::ConfirmationTarget::ChannelCloseMinimum
3218         /// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
3219         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
3220         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
3221                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
3222         }
3223
3224         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
3225         /// will be accepted on the given channel, and after additional timeout/the closing of all
3226         /// pending HTLCs, the channel will be closed on chain.
3227         ///
3228         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
3229         /// the channel being closed or not:
3230         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
3231         ///    transaction. The upper-bound is set by
3232         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`NonAnchorChannelFee`]
3233         ///    fee estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
3234         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
3235         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
3236         ///    will appear on a force-closure transaction, whichever is lower).
3237         ///
3238         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
3239         /// Will fail if a shutdown script has already been set for this channel by
3240         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
3241         /// also be compatible with our and the counterparty's features.
3242         ///
3243         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
3244         ///
3245         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
3246         /// generate a shutdown scriptpubkey or destination script set by
3247         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
3248         /// channel.
3249         ///
3250         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
3251         /// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
3252         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
3253         pub fn close_channel_with_feerate_and_script(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
3254                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
3255         }
3256
3257         fn finish_close_channel(&self, mut shutdown_res: ShutdownResult) {
3258                 debug_assert_ne!(self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
3259                 #[cfg(debug_assertions)]
3260                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
3261                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
3262                 }
3263
3264                 let logger = WithContext::from(
3265                         &self.logger, Some(shutdown_res.counterparty_node_id), Some(shutdown_res.channel_id), None
3266                 );
3267
3268                 log_debug!(logger, "Finishing closure of channel due to {} with {} HTLCs to fail",
3269                         shutdown_res.closure_reason, shutdown_res.dropped_outbound_htlcs.len());
3270                 for htlc_source in shutdown_res.dropped_outbound_htlcs.drain(..) {
3271                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
3272                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
3273                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
3274                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
3275                 }
3276                 if let Some((_, funding_txo, _channel_id, monitor_update)) = shutdown_res.monitor_update {
3277                         // There isn't anything we can do if we get an update failure - we're already
3278                         // force-closing. The monitor update on the required in-memory copy should broadcast
3279                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
3280                         // ignore the result here.
3281                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
3282                 }
3283                 let mut shutdown_results = Vec::new();
3284                 if let Some(txid) = shutdown_res.unbroadcasted_batch_funding_txid {
3285                         let mut funding_batch_states = self.funding_batch_states.lock().unwrap();
3286                         let affected_channels = funding_batch_states.remove(&txid).into_iter().flatten();
3287                         let per_peer_state = self.per_peer_state.read().unwrap();
3288                         let mut has_uncompleted_channel = None;
3289                         for (channel_id, counterparty_node_id, state) in affected_channels {
3290                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
3291                                         let mut peer_state = peer_state_mutex.lock().unwrap();
3292                                         if let Some(mut chan) = peer_state.channel_by_id.remove(&channel_id) {
3293                                                 update_maps_on_chan_removal!(self, &chan.context());
3294                                                 shutdown_results.push(chan.context_mut().force_shutdown(false, ClosureReason::FundingBatchClosure));
3295                                         }
3296                                 }
3297                                 has_uncompleted_channel = Some(has_uncompleted_channel.map_or(!state, |v| v || !state));
3298                         }
3299                         debug_assert!(
3300                                 has_uncompleted_channel.unwrap_or(true),
3301                                 "Closing a batch where all channels have completed initial monitor update",
3302                         );
3303                 }
3304
3305                 {
3306                         let mut pending_events = self.pending_events.lock().unwrap();
3307                         pending_events.push_back((events::Event::ChannelClosed {
3308                                 channel_id: shutdown_res.channel_id,
3309                                 user_channel_id: shutdown_res.user_channel_id,
3310                                 reason: shutdown_res.closure_reason,
3311                                 counterparty_node_id: Some(shutdown_res.counterparty_node_id),
3312                                 channel_capacity_sats: Some(shutdown_res.channel_capacity_satoshis),
3313                                 channel_funding_txo: shutdown_res.channel_funding_txo,
3314                         }, None));
3315
3316                         if let Some(transaction) = shutdown_res.unbroadcasted_funding_tx {
3317                                 pending_events.push_back((events::Event::DiscardFunding {
3318                                         channel_id: shutdown_res.channel_id, transaction
3319                                 }, None));
3320                         }
3321                 }
3322                 for shutdown_result in shutdown_results.drain(..) {
3323                         self.finish_close_channel(shutdown_result);
3324                 }
3325         }
3326
3327         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
3328         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
3329         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
3330         -> Result<PublicKey, APIError> {
3331                 let per_peer_state = self.per_peer_state.read().unwrap();
3332                 let peer_state_mutex = per_peer_state.get(peer_node_id)
3333                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
3334                 let (update_opt, counterparty_node_id) = {
3335                         let mut peer_state = peer_state_mutex.lock().unwrap();
3336                         let closure_reason = if let Some(peer_msg) = peer_msg {
3337                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
3338                         } else {
3339                                 ClosureReason::HolderForceClosed
3340                         };
3341                         let logger = WithContext::from(&self.logger, Some(*peer_node_id), Some(*channel_id), None);
3342                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
3343                                 log_error!(logger, "Force-closing channel {}", channel_id);
3344                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
3345                                 mem::drop(peer_state);
3346                                 mem::drop(per_peer_state);
3347                                 match chan_phase {
3348                                         ChannelPhase::Funded(mut chan) => {
3349                                                 self.finish_close_channel(chan.context.force_shutdown(broadcast, closure_reason));
3350                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
3351                                         },
3352                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
3353                                                 self.finish_close_channel(chan_phase.context_mut().force_shutdown(false, closure_reason));
3354                                                 // Unfunded channel has no update
3355                                                 (None, chan_phase.context().get_counterparty_node_id())
3356                                         },
3357                                         // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
3358                                         #[cfg(any(dual_funding, splicing))]
3359                                         ChannelPhase::UnfundedOutboundV2(_) | ChannelPhase::UnfundedInboundV2(_) => {
3360                                                 self.finish_close_channel(chan_phase.context_mut().force_shutdown(false, closure_reason));
3361                                                 // Unfunded channel has no update
3362                                                 (None, chan_phase.context().get_counterparty_node_id())
3363                                         },
3364                                 }
3365                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
3366                                 log_error!(logger, "Force-closing channel {}", &channel_id);
3367                                 // N.B. that we don't send any channel close event here: we
3368                                 // don't have a user_channel_id, and we never sent any opening
3369                                 // events anyway.
3370                                 (None, *peer_node_id)
3371                         } else {
3372                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
3373                         }
3374                 };
3375                 if let Some(update) = update_opt {
3376                         // If we have some Channel Update to broadcast, we cache it and broadcast it later.
3377                         let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
3378                         pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
3379                                 msg: update
3380                         });
3381                 }
3382
3383                 Ok(counterparty_node_id)
3384         }
3385
3386         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool, error_message: String)
3387         -> Result<(), APIError> {
3388                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3389                 log_debug!(self.logger,
3390                         "Force-closing channel, The error message sent to the peer : {}", error_message);
3391                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
3392                         Ok(counterparty_node_id) => {
3393                                 let per_peer_state = self.per_peer_state.read().unwrap();
3394                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
3395                                         let mut peer_state = peer_state_mutex.lock().unwrap();
3396                                         peer_state.pending_msg_events.push(
3397                                                 events::MessageSendEvent::HandleError {
3398                                                         node_id: counterparty_node_id,
3399                                                         action: msgs::ErrorAction::SendErrorMessage {
3400                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: error_message }
3401                                                         },
3402                                                 }
3403                                         );
3404                                 }
3405                                 Ok(())
3406                         },
3407                         Err(e) => Err(e)
3408                 }
3409         }
3410
3411         /// Force closes a channel, immediately broadcasting the latest local transaction(s),
3412         /// rejecting new HTLCs.
3413         ///
3414         /// The provided `error_message` is sent to connected peers for closing
3415         /// channels and should be a human-readable description of what went wrong.
3416         ///
3417         /// Fails if `channel_id` is unknown to the manager, or if the `counterparty_node_id`
3418         /// isn't the counterparty of the corresponding channel.
3419         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, error_message: String)
3420         -> Result<(), APIError> {
3421                 self.force_close_sending_error(channel_id, counterparty_node_id, true, error_message)
3422         }
3423
3424         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
3425         /// the latest local transaction(s).
3426         ///
3427         /// The provided `error_message` is sent to connected peers for closing channels and should
3428         /// be a human-readable description of what went wrong.
3429         ///
3430         /// Fails if `channel_id` is unknown to the manager, or if the
3431         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
3432         /// You can always broadcast the latest local transaction(s) via
3433         /// [`ChannelMonitor::broadcast_latest_holder_commitment_txn`].
3434         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, error_message: String)
3435         -> Result<(), APIError> {
3436                 self.force_close_sending_error(channel_id, counterparty_node_id, false, error_message)
3437         }
3438
3439         /// Force close all channels, immediately broadcasting the latest local commitment transaction
3440         /// for each to the chain and rejecting new HTLCs on each.
3441         ///
3442         /// The provided `error_message` is sent to connected peers for closing channels and should
3443         /// be a human-readable description of what went wrong.
3444         pub fn force_close_all_channels_broadcasting_latest_txn(&self, error_message: String) {
3445                 for chan in self.list_channels() {
3446                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id, error_message.clone());
3447                 }
3448         }
3449
3450         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
3451         /// local transaction(s).
3452         ///
3453         /// The provided `error_message` is sent to connected peers for closing channels and
3454         /// should be a human-readable description of what went wrong.
3455         pub fn force_close_all_channels_without_broadcasting_txn(&self, error_message: String) {
3456                 for chan in self.list_channels() {
3457                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id, error_message.clone());
3458                 }
3459         }
3460
3461         fn can_forward_htlc_to_outgoing_channel(
3462                 &self, chan: &mut Channel<SP>, msg: &msgs::UpdateAddHTLC, next_packet: &NextPacketDetails
3463         ) -> Result<(), (&'static str, u16, Option<msgs::ChannelUpdate>)> {
3464                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
3465                         // Note that the behavior here should be identical to the above block - we
3466                         // should NOT reveal the existence or non-existence of a private channel if
3467                         // we don't allow forwards outbound over them.
3468                         return Err(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
3469                 }
3470                 if chan.context.get_channel_type().supports_scid_privacy() && next_packet.outgoing_scid != chan.context.outbound_scid_alias() {
3471                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3472                         // "refuse to forward unless the SCID alias was used", so we pretend
3473                         // we don't have the channel here.
3474                         return Err(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3475                 }
3476
3477                 // Note that we could technically not return an error yet here and just hope
3478                 // that the connection is reestablished or monitor updated by the time we get
3479                 // around to doing the actual forward, but better to fail early if we can and
3480                 // hopefully an attacker trying to path-trace payments cannot make this occur
3481                 // on a small/per-node/per-channel scale.
3482                 if !chan.context.is_live() { // channel_disabled
3483                         // If the channel_update we're going to return is disabled (i.e. the
3484                         // peer has been disabled for some time), return `channel_disabled`,
3485                         // otherwise return `temporary_channel_failure`.
3486                         let chan_update_opt = self.get_channel_update_for_onion(next_packet.outgoing_scid, chan).ok();
3487                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3488                                 return Err(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3489                         } else {
3490                                 return Err(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3491                         }
3492                 }
3493                 if next_packet.outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3494                         let chan_update_opt = self.get_channel_update_for_onion(next_packet.outgoing_scid, chan).ok();
3495                         return Err(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3496                 }
3497                 if let Err((err, code)) = chan.htlc_satisfies_config(msg, next_packet.outgoing_amt_msat, next_packet.outgoing_cltv_value) {
3498                         let chan_update_opt = self.get_channel_update_for_onion(next_packet.outgoing_scid, chan).ok();
3499                         return Err((err, code, chan_update_opt));
3500                 }
3501
3502                 Ok(())
3503         }
3504
3505         /// Executes a callback `C` that returns some value `X` on the channel found with the given
3506         /// `scid`. `None` is returned when the channel is not found.
3507         fn do_funded_channel_callback<X, C: Fn(&mut Channel<SP>) -> X>(
3508                 &self, scid: u64, callback: C,
3509         ) -> Option<X> {
3510                 let (counterparty_node_id, channel_id) = match self.short_to_chan_info.read().unwrap().get(&scid).cloned() {
3511                         None => return None,
3512                         Some((cp_id, id)) => (cp_id, id),
3513                 };
3514                 let per_peer_state = self.per_peer_state.read().unwrap();
3515                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3516                 if peer_state_mutex_opt.is_none() {
3517                         return None;
3518                 }
3519                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3520                 let peer_state = &mut *peer_state_lock;
3521                 match peer_state.channel_by_id.get_mut(&channel_id).and_then(
3522                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
3523                 ) {
3524                         None => None,
3525                         Some(chan) => Some(callback(chan)),
3526                 }
3527         }
3528
3529         fn can_forward_htlc(
3530                 &self, msg: &msgs::UpdateAddHTLC, next_packet_details: &NextPacketDetails
3531         ) -> Result<(), (&'static str, u16, Option<msgs::ChannelUpdate>)> {
3532                 match self.do_funded_channel_callback(next_packet_details.outgoing_scid, |chan: &mut Channel<SP>| {
3533                         self.can_forward_htlc_to_outgoing_channel(chan, msg, next_packet_details)
3534                 }) {
3535                         Some(Ok(())) => {},
3536                         Some(Err(e)) => return Err(e),
3537                         None => {
3538                                 // If we couldn't find the channel info for the scid, it may be a phantom or
3539                                 // intercept forward.
3540                                 if (self.default_configuration.accept_intercept_htlcs &&
3541                                         fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, next_packet_details.outgoing_scid, &self.chain_hash)) ||
3542                                         fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, next_packet_details.outgoing_scid, &self.chain_hash)
3543                                 {} else {
3544                                         return Err(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3545                                 }
3546                         }
3547                 }
3548
3549                 let cur_height = self.best_block.read().unwrap().height + 1;
3550                 if let Err((err_msg, err_code)) = check_incoming_htlc_cltv(
3551                         cur_height, next_packet_details.outgoing_cltv_value, msg.cltv_expiry
3552                 ) {
3553                         let chan_update_opt = self.do_funded_channel_callback(next_packet_details.outgoing_scid, |chan: &mut Channel<SP>| {
3554                                 self.get_channel_update_for_onion(next_packet_details.outgoing_scid, chan).ok()
3555                         }).flatten();
3556                         return Err((err_msg, err_code, chan_update_opt));
3557                 }
3558
3559                 Ok(())
3560         }
3561
3562         fn htlc_failure_from_update_add_err(
3563                 &self, msg: &msgs::UpdateAddHTLC, counterparty_node_id: &PublicKey, err_msg: &'static str,
3564                 mut err_code: u16, chan_update: Option<msgs::ChannelUpdate>, is_intro_node_blinded_forward: bool,
3565                 shared_secret: &[u8; 32]
3566         ) -> HTLCFailureMsg {
3567                 let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3568                 if chan_update.is_some() && err_code & 0x1000 == 0x1000 {
3569                         let chan_update = chan_update.unwrap();
3570                         if err_code == 0x1000 | 11 || err_code == 0x1000 | 12 {
3571                                 msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3572                         }
3573                         else if err_code == 0x1000 | 13 {
3574                                 msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3575                         }
3576                         else if err_code == 0x1000 | 20 {
3577                                 // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3578                                 0u16.write(&mut res).expect("Writes cannot fail");
3579                         }
3580                         (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3581                         msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3582                         chan_update.write(&mut res).expect("Writes cannot fail");
3583                 } else if err_code & 0x1000 == 0x1000 {
3584                         // If we're trying to return an error that requires a `channel_update` but
3585                         // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3586                         // generate an update), just use the generic "temporary_node_failure"
3587                         // instead.
3588                         err_code = 0x2000 | 2;
3589                 }
3590
3591                 log_info!(
3592                         WithContext::from(&self.logger, Some(*counterparty_node_id), Some(msg.channel_id), Some(msg.payment_hash)),
3593                         "Failed to accept/forward incoming HTLC: {}", err_msg
3594                 );
3595                 // If `msg.blinding_point` is set, we must always fail with malformed.
3596                 if msg.blinding_point.is_some() {
3597                         return HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
3598                                 channel_id: msg.channel_id,
3599                                 htlc_id: msg.htlc_id,
3600                                 sha256_of_onion: [0; 32],
3601                                 failure_code: INVALID_ONION_BLINDING,
3602                         });
3603                 }
3604
3605                 let (err_code, err_data) = if is_intro_node_blinded_forward {
3606                         (INVALID_ONION_BLINDING, &[0; 32][..])
3607                 } else {
3608                         (err_code, &res.0[..])
3609                 };
3610                 HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3611                         channel_id: msg.channel_id,
3612                         htlc_id: msg.htlc_id,
3613                         reason: HTLCFailReason::reason(err_code, err_data.to_vec())
3614                                 .get_encrypted_failure_packet(shared_secret, &None),
3615                 })
3616         }
3617
3618         fn decode_update_add_htlc_onion(
3619                 &self, msg: &msgs::UpdateAddHTLC, counterparty_node_id: &PublicKey,
3620         ) -> Result<
3621                 (onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg
3622         > {
3623                 let (next_hop, shared_secret, next_packet_details_opt) = decode_incoming_update_add_htlc_onion(
3624                         msg, &self.node_signer, &self.logger, &self.secp_ctx
3625                 )?;
3626
3627                 let next_packet_details = match next_packet_details_opt {
3628                         Some(next_packet_details) => next_packet_details,
3629                         // it is a receive, so no need for outbound checks
3630                         None => return Ok((next_hop, shared_secret, None)),
3631                 };
3632
3633                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
3634                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
3635                 self.can_forward_htlc(&msg, &next_packet_details).map_err(|e| {
3636                         let (err_msg, err_code, chan_update_opt) = e;
3637                         self.htlc_failure_from_update_add_err(
3638                                 msg, counterparty_node_id, err_msg, err_code, chan_update_opt,
3639                                 next_hop.is_intro_node_blinded_forward(), &shared_secret
3640                         )
3641                 })?;
3642
3643                 Ok((next_hop, shared_secret, Some(next_packet_details.next_packet_pubkey)))
3644         }
3645
3646         fn construct_pending_htlc_status<'a>(
3647                 &self, msg: &msgs::UpdateAddHTLC, counterparty_node_id: &PublicKey, shared_secret: [u8; 32],
3648                 decoded_hop: onion_utils::Hop, allow_underpay: bool,
3649                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>,
3650         ) -> PendingHTLCStatus {
3651                 macro_rules! return_err {
3652                         ($msg: expr, $err_code: expr, $data: expr) => {
3653                                 {
3654                                         let logger = WithContext::from(&self.logger, Some(*counterparty_node_id), Some(msg.channel_id), Some(msg.payment_hash));
3655                                         log_info!(logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3656                                         if msg.blinding_point.is_some() {
3657                                                 return PendingHTLCStatus::Fail(HTLCFailureMsg::Malformed(
3658                                                         msgs::UpdateFailMalformedHTLC {
3659                                                                 channel_id: msg.channel_id,
3660                                                                 htlc_id: msg.htlc_id,
3661                                                                 sha256_of_onion: [0; 32],
3662                                                                 failure_code: INVALID_ONION_BLINDING,
3663                                                         }
3664                                                 ))
3665                                         }
3666                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3667                                                 channel_id: msg.channel_id,
3668                                                 htlc_id: msg.htlc_id,
3669                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3670                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3671                                         }));
3672                                 }
3673                         }
3674                 }
3675                 match decoded_hop {
3676                         onion_utils::Hop::Receive(next_hop_data) => {
3677                                 // OUR PAYMENT!
3678                                 let current_height: u32 = self.best_block.read().unwrap().height;
3679                                 match create_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3680                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat,
3681                                         current_height, self.default_configuration.accept_mpp_keysend)
3682                                 {
3683                                         Ok(info) => {
3684                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3685                                                 // message, however that would leak that we are the recipient of this payment, so
3686                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3687                                                 // delay) once they've send us a commitment_signed!
3688                                                 PendingHTLCStatus::Forward(info)
3689                                         },
3690                                         Err(InboundHTLCErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3691                                 }
3692                         },
3693                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3694                                 match create_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3695                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3696                                         Ok(info) => PendingHTLCStatus::Forward(info),
3697                                         Err(InboundHTLCErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3698                                 }
3699                         }
3700                 }
3701         }
3702
3703         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3704         /// public, and thus should be called whenever the result is going to be passed out in a
3705         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3706         ///
3707         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3708         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3709         /// storage and the `peer_state` lock has been dropped.
3710         ///
3711         /// [`channel_update`]: msgs::ChannelUpdate
3712         /// [`internal_closing_signed`]: Self::internal_closing_signed
3713         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3714                 if !chan.context.should_announce() {
3715                         return Err(LightningError {
3716                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3717                                 action: msgs::ErrorAction::IgnoreError
3718                         });
3719                 }
3720                 if chan.context.get_short_channel_id().is_none() {
3721                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3722                 }
3723                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
3724                 log_trace!(logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
3725                 self.get_channel_update_for_unicast(chan)
3726         }
3727
3728         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3729         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3730         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3731         /// provided evidence that they know about the existence of the channel.
3732         ///
3733         /// Note that through [`internal_closing_signed`], this function is called without the
3734         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3735         /// removed from the storage and the `peer_state` lock has been dropped.
3736         ///
3737         /// [`channel_update`]: msgs::ChannelUpdate
3738         /// [`internal_closing_signed`]: Self::internal_closing_signed
3739         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3740                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
3741                 log_trace!(logger, "Attempting to generate channel update for channel {}", chan.context.channel_id());
3742                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3743                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3744                         Some(id) => id,
3745                 };
3746
3747                 self.get_channel_update_for_onion(short_channel_id, chan)
3748         }
3749
3750         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3751                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
3752                 log_trace!(logger, "Generating channel update for channel {}", chan.context.channel_id());
3753                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3754
3755                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3756                         ChannelUpdateStatus::Enabled => true,
3757                         ChannelUpdateStatus::DisabledStaged(_) => true,
3758                         ChannelUpdateStatus::Disabled => false,
3759                         ChannelUpdateStatus::EnabledStaged(_) => false,
3760                 };
3761
3762                 let unsigned = msgs::UnsignedChannelUpdate {
3763                         chain_hash: self.chain_hash,
3764                         short_channel_id,
3765                         timestamp: chan.context.get_update_time_counter(),
3766                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3767                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3768                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3769                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3770                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3771                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3772                         excess_data: Vec::new(),
3773                 };
3774                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3775                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3776                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3777                 // channel.
3778                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3779
3780                 Ok(msgs::ChannelUpdate {
3781                         signature: sig,
3782                         contents: unsigned
3783                 })
3784         }
3785
3786         #[cfg(test)]
3787         pub(crate) fn test_send_payment_along_path(&self, path: &Path, payment_hash: &PaymentHash, recipient_onion: RecipientOnionFields, total_value: u64, cur_height: u32, payment_id: PaymentId, keysend_preimage: &Option<PaymentPreimage>, session_priv_bytes: [u8; 32]) -> Result<(), APIError> {
3788                 let _lck = self.total_consistency_lock.read().unwrap();
3789                 self.send_payment_along_path(SendAlongPathArgs {
3790                         path, payment_hash, recipient_onion: &recipient_onion, total_value,
3791                         cur_height, payment_id, keysend_preimage, session_priv_bytes
3792                 })
3793         }
3794
3795         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3796                 let SendAlongPathArgs {
3797                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3798                         session_priv_bytes
3799                 } = args;
3800                 // The top-level caller should hold the total_consistency_lock read lock.
3801                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3802                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3803                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3804
3805                 let (onion_packet, htlc_msat, htlc_cltv) = onion_utils::create_payment_onion(
3806                         &self.secp_ctx, &path, &session_priv, total_value, recipient_onion, cur_height,
3807                         payment_hash, keysend_preimage, prng_seed
3808                 ).map_err(|e| {
3809                         let logger = WithContext::from(&self.logger, Some(path.hops.first().unwrap().pubkey), None, Some(*payment_hash));
3810                         log_error!(logger, "Failed to build an onion for path for payment hash {}", payment_hash);
3811                         e
3812                 })?;
3813
3814                 let err: Result<(), _> = loop {
3815                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3816                                 None => {
3817                                         let logger = WithContext::from(&self.logger, Some(path.hops.first().unwrap().pubkey), None, Some(*payment_hash));
3818                                         log_error!(logger, "Failed to find first-hop for payment hash {}", payment_hash);
3819                                         return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()})
3820                                 },
3821                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3822                         };
3823
3824                         let logger = WithContext::from(&self.logger, Some(counterparty_node_id), Some(id), Some(*payment_hash));
3825                         log_trace!(logger,
3826                                 "Attempting to send payment with payment hash {} along path with next hop {}",
3827                                 payment_hash, path.hops.first().unwrap().short_channel_id);
3828
3829                         let per_peer_state = self.per_peer_state.read().unwrap();
3830                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3831                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3832                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3833                         let peer_state = &mut *peer_state_lock;
3834                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
3835                                 match chan_phase_entry.get_mut() {
3836                                         ChannelPhase::Funded(chan) => {
3837                                                 if !chan.context.is_live() {
3838                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3839                                                 }
3840                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
3841                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, Some(*payment_hash));
3842                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3843                                                         htlc_cltv, HTLCSource::OutboundRoute {
3844                                                                 path: path.clone(),
3845                                                                 session_priv: session_priv.clone(),
3846                                                                 first_hop_htlc_msat: htlc_msat,
3847                                                                 payment_id,
3848                                                         }, onion_packet, None, &self.fee_estimator, &&logger);
3849                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
3850                                                         Some(monitor_update) => {
3851                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan) {
3852                                                                         false => {
3853                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3854                                                                                 // docs) that we will resend the commitment update once monitor
3855                                                                                 // updating completes. Therefore, we must return an error
3856                                                                                 // indicating that it is unsafe to retry the payment wholesale,
3857                                                                                 // which we do in the send_payment check for
3858                                                                                 // MonitorUpdateInProgress, below.
3859                                                                                 return Err(APIError::MonitorUpdateInProgress);
3860                                                                         },
3861                                                                         true => {},
3862                                                                 }
3863                                                         },
3864                                                         None => {},
3865                                                 }
3866                                         },
3867                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
3868                                 };
3869                         } else {
3870                                 // The channel was likely removed after we fetched the id from the
3871                                 // `short_to_chan_info` map, but before we successfully locked the
3872                                 // `channel_by_id` map.
3873                                 // This can occur as no consistency guarantees exists between the two maps.
3874                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3875                         }
3876                         return Ok(());
3877                 };
3878                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3879                         Ok(_) => unreachable!(),
3880                         Err(e) => {
3881                                 Err(APIError::ChannelUnavailable { err: e.err })
3882                         },
3883                 }
3884         }
3885
3886         /// Sends a payment along a given route.
3887         ///
3888         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3889         /// fields for more info.
3890         ///
3891         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3892         /// [`PeerManager::process_events`]).
3893         ///
3894         /// # Avoiding Duplicate Payments
3895         ///
3896         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3897         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3898         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3899         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3900         /// second payment with the same [`PaymentId`].
3901         ///
3902         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3903         /// tracking of payments, including state to indicate once a payment has completed. Because you
3904         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3905         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3906         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3907         ///
3908         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3909         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3910         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3911         /// [`ChannelManager::list_recent_payments`] for more information.
3912         ///
3913         /// # Possible Error States on [`PaymentSendFailure`]
3914         ///
3915         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3916         /// each entry matching the corresponding-index entry in the route paths, see
3917         /// [`PaymentSendFailure`] for more info.
3918         ///
3919         /// In general, a path may raise:
3920         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3921         ///    node public key) is specified.
3922         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available as it has been
3923         ///    closed, doesn't exist, or the peer is currently disconnected.
3924         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3925         ///    relevant updates.
3926         ///
3927         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3928         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3929         /// different route unless you intend to pay twice!
3930         ///
3931         /// [`RouteHop`]: crate::routing::router::RouteHop
3932         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3933         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3934         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3935         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3936         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3937         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3938                 let best_block_height = self.best_block.read().unwrap().height;
3939                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3940                 self.pending_outbound_payments
3941                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3942                                 &self.entropy_source, &self.node_signer, best_block_height,
3943                                 |args| self.send_payment_along_path(args))
3944         }
3945
3946         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3947         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3948         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3949                 let best_block_height = self.best_block.read().unwrap().height;
3950                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3951                 self.pending_outbound_payments
3952                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3953                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3954                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3955                                 &self.pending_events, |args| self.send_payment_along_path(args))
3956         }
3957
3958         #[cfg(test)]
3959         pub(super) fn test_send_payment_internal(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, keysend_preimage: Option<PaymentPreimage>, payment_id: PaymentId, recv_value_msat: Option<u64>, onion_session_privs: Vec<[u8; 32]>) -> Result<(), PaymentSendFailure> {
3960                 let best_block_height = self.best_block.read().unwrap().height;
3961                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3962                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3963                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3964                         best_block_height, |args| self.send_payment_along_path(args))
3965         }
3966
3967         #[cfg(test)]
3968         pub(crate) fn test_add_new_pending_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route: &Route) -> Result<Vec<[u8; 32]>, PaymentSendFailure> {
3969                 let best_block_height = self.best_block.read().unwrap().height;
3970                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3971         }
3972
3973         #[cfg(test)]
3974         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3975                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3976         }
3977
3978         pub(super) fn send_payment_for_bolt12_invoice(&self, invoice: &Bolt12Invoice, payment_id: PaymentId) -> Result<(), Bolt12PaymentError> {
3979                 let best_block_height = self.best_block.read().unwrap().height;
3980                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3981                 self.pending_outbound_payments
3982                         .send_payment_for_bolt12_invoice(
3983                                 invoice, payment_id, &self.router, self.list_usable_channels(),
3984                                 || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer,
3985                                 best_block_height, &self.logger, &self.pending_events,
3986                                 |args| self.send_payment_along_path(args)
3987                         )
3988         }
3989
3990         /// Signals that no further attempts for the given payment should occur. Useful if you have a
3991         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3992         /// retries are exhausted.
3993         ///
3994         /// # Event Generation
3995         ///
3996         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3997         /// as there are no remaining pending HTLCs for this payment.
3998         ///
3999         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
4000         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
4001         /// determine the ultimate status of a payment.
4002         ///
4003         /// # Requested Invoices
4004         ///
4005         /// In the case of paying a [`Bolt12Invoice`] via [`ChannelManager::pay_for_offer`], abandoning
4006         /// the payment prior to receiving the invoice will result in an [`Event::InvoiceRequestFailed`]
4007         /// and prevent any attempts at paying it once received. The other events may only be generated
4008         /// once the invoice has been received.
4009         ///
4010         /// # Restart Behavior
4011         ///
4012         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
4013         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated; likewise for
4014         /// [`Event::InvoiceRequestFailed`].
4015         ///
4016         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
4017         pub fn abandon_payment(&self, payment_id: PaymentId) {
4018                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4019                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
4020         }
4021
4022         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
4023         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
4024         /// the preimage, it must be a cryptographically secure random value that no intermediate node
4025         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
4026         /// never reach the recipient.
4027         ///
4028         /// See [`send_payment`] documentation for more details on the return value of this function
4029         /// and idempotency guarantees provided by the [`PaymentId`] key.
4030         ///
4031         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
4032         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
4033         ///
4034         /// [`send_payment`]: Self::send_payment
4035         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
4036                 let best_block_height = self.best_block.read().unwrap().height;
4037                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4038                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
4039                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
4040                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
4041         }
4042
4043         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
4044         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
4045         ///
4046         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
4047         /// payments.
4048         ///
4049         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
4050         pub fn send_spontaneous_payment_with_retry(&self, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<PaymentHash, RetryableSendFailure> {
4051                 let best_block_height = self.best_block.read().unwrap().height;
4052                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4053                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
4054                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
4055                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
4056                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
4057         }
4058
4059         /// Send a payment that is probing the given route for liquidity. We calculate the
4060         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
4061         /// us to easily discern them from real payments.
4062         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
4063                 let best_block_height = self.best_block.read().unwrap().height;
4064                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4065                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
4066                         &self.entropy_source, &self.node_signer, best_block_height,
4067                         |args| self.send_payment_along_path(args))
4068         }
4069
4070         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
4071         /// payment probe.
4072         #[cfg(test)]
4073         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
4074                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
4075         }
4076
4077         /// Sends payment probes over all paths of a route that would be used to pay the given
4078         /// amount to the given `node_id`.
4079         ///
4080         /// See [`ChannelManager::send_preflight_probes`] for more information.
4081         pub fn send_spontaneous_preflight_probes(
4082                 &self, node_id: PublicKey, amount_msat: u64, final_cltv_expiry_delta: u32,
4083                 liquidity_limit_multiplier: Option<u64>,
4084         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
4085                 let payment_params =
4086                         PaymentParameters::from_node_id(node_id, final_cltv_expiry_delta);
4087
4088                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, amount_msat);
4089
4090                 self.send_preflight_probes(route_params, liquidity_limit_multiplier)
4091         }
4092
4093         /// Sends payment probes over all paths of a route that would be used to pay a route found
4094         /// according to the given [`RouteParameters`].
4095         ///
4096         /// This may be used to send "pre-flight" probes, i.e., to train our scorer before conducting
4097         /// the actual payment. Note this is only useful if there likely is sufficient time for the
4098         /// probe to settle before sending out the actual payment, e.g., when waiting for user
4099         /// confirmation in a wallet UI.
4100         ///
4101         /// Otherwise, there is a chance the probe could take up some liquidity needed to complete the
4102         /// actual payment. Users should therefore be cautious and might avoid sending probes if
4103         /// liquidity is scarce and/or they don't expect the probe to return before they send the
4104         /// payment. To mitigate this issue, channels with available liquidity less than the required
4105         /// amount times the given `liquidity_limit_multiplier` won't be used to send pre-flight
4106         /// probes. If `None` is given as `liquidity_limit_multiplier`, it defaults to `3`.
4107         pub fn send_preflight_probes(
4108                 &self, route_params: RouteParameters, liquidity_limit_multiplier: Option<u64>,
4109         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
4110                 let liquidity_limit_multiplier = liquidity_limit_multiplier.unwrap_or(3);
4111
4112                 let payer = self.get_our_node_id();
4113                 let usable_channels = self.list_usable_channels();
4114                 let first_hops = usable_channels.iter().collect::<Vec<_>>();
4115                 let inflight_htlcs = self.compute_inflight_htlcs();
4116
4117                 let route = self
4118                         .router
4119                         .find_route(&payer, &route_params, Some(&first_hops), inflight_htlcs)
4120                         .map_err(|e| {
4121                                 log_error!(self.logger, "Failed to find path for payment probe: {:?}", e);
4122                                 ProbeSendFailure::RouteNotFound
4123                         })?;
4124
4125                 let mut used_liquidity_map = hash_map_with_capacity(first_hops.len());
4126
4127                 let mut res = Vec::new();
4128
4129                 for mut path in route.paths {
4130                         // If the last hop is probably an unannounced channel we refrain from probing all the
4131                         // way through to the end and instead probe up to the second-to-last channel.
4132                         while let Some(last_path_hop) = path.hops.last() {
4133                                 if last_path_hop.maybe_announced_channel {
4134                                         // We found a potentially announced last hop.
4135                                         break;
4136                                 } else {
4137                                         // Drop the last hop, as it's likely unannounced.
4138                                         log_debug!(
4139                                                 self.logger,
4140                                                 "Avoided sending payment probe all the way to last hop {} as it is likely unannounced.",
4141                                                 last_path_hop.short_channel_id
4142                                         );
4143                                         let final_value_msat = path.final_value_msat();
4144                                         path.hops.pop();
4145                                         if let Some(new_last) = path.hops.last_mut() {
4146                                                 new_last.fee_msat += final_value_msat;
4147                                         }
4148                                 }
4149                         }
4150
4151                         if path.hops.len() < 2 {
4152                                 log_debug!(
4153                                         self.logger,
4154                                         "Skipped sending payment probe over path with less than two hops."
4155                                 );
4156                                 continue;
4157                         }
4158
4159                         if let Some(first_path_hop) = path.hops.first() {
4160                                 if let Some(first_hop) = first_hops.iter().find(|h| {
4161                                         h.get_outbound_payment_scid() == Some(first_path_hop.short_channel_id)
4162                                 }) {
4163                                         let path_value = path.final_value_msat() + path.fee_msat();
4164                                         let used_liquidity =
4165                                                 used_liquidity_map.entry(first_path_hop.short_channel_id).or_insert(0);
4166
4167                                         if first_hop.next_outbound_htlc_limit_msat
4168                                                 < (*used_liquidity + path_value) * liquidity_limit_multiplier
4169                                         {
4170                                                 log_debug!(self.logger, "Skipped sending payment probe to avoid putting channel {} under the liquidity limit.", first_path_hop.short_channel_id);
4171                                                 continue;
4172                                         } else {
4173                                                 *used_liquidity += path_value;
4174                                         }
4175                                 }
4176                         }
4177
4178                         res.push(self.send_probe(path).map_err(|e| {
4179                                 log_error!(self.logger, "Failed to send pre-flight probe: {:?}", e);
4180                                 ProbeSendFailure::SendingFailed(e)
4181                         })?);
4182                 }
4183
4184                 Ok(res)
4185         }
4186
4187         /// Handles the generation of a funding transaction, optionally (for tests) with a function
4188         /// which checks the correctness of the funding transaction given the associated channel.
4189         fn funding_transaction_generated_intern<FundingOutput: FnMut(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, &'static str>>(
4190                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, is_batch_funding: bool,
4191                 mut find_funding_output: FundingOutput,
4192         ) -> Result<(), APIError> {
4193                 let per_peer_state = self.per_peer_state.read().unwrap();
4194                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4195                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
4196
4197                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4198                 let peer_state = &mut *peer_state_lock;
4199                 let funding_txo;
4200                 let (mut chan, msg_opt) = match peer_state.channel_by_id.remove(temporary_channel_id) {
4201                         Some(ChannelPhase::UnfundedOutboundV1(mut chan)) => {
4202                                 macro_rules! close_chan { ($err: expr, $api_err: expr, $chan: expr) => { {
4203                                         let counterparty;
4204                                         let err = if let ChannelError::Close(msg) = $err {
4205                                                 let channel_id = $chan.context.channel_id();
4206                                                 counterparty = chan.context.get_counterparty_node_id();
4207                                                 let reason = ClosureReason::ProcessingError { err: msg.clone() };
4208                                                 let shutdown_res = $chan.context.force_shutdown(false, reason);
4209                                                 MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, shutdown_res, None)
4210                                         } else { unreachable!(); };
4211
4212                                         mem::drop(peer_state_lock);
4213                                         mem::drop(per_peer_state);
4214                                         let _: Result<(), _> = handle_error!(self, Err(err), counterparty);
4215                                         Err($api_err)
4216                                 } } }
4217                                 match find_funding_output(&chan, &funding_transaction) {
4218                                         Ok(found_funding_txo) => funding_txo = found_funding_txo,
4219                                         Err(err) => {
4220                                                 let chan_err = ChannelError::Close(err.to_owned());
4221                                                 let api_err = APIError::APIMisuseError { err: err.to_owned() };
4222                                                 return close_chan!(chan_err, api_err, chan);
4223                                         },
4224                                 }
4225
4226                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
4227                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, is_batch_funding, &&logger);
4228                                 match funding_res {
4229                                         Ok(funding_msg) => (chan, funding_msg),
4230                                         Err((mut chan, chan_err)) => {
4231                                                 let api_err = APIError::ChannelUnavailable { err: "Signer refused to sign the initial commitment transaction".to_owned() };
4232                                                 return close_chan!(chan_err, api_err, chan);
4233                                         }
4234                                 }
4235                         },
4236                         Some(phase) => {
4237                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
4238                                 return Err(APIError::APIMisuseError {
4239                                         err: format!(
4240                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
4241                                                 temporary_channel_id, counterparty_node_id),
4242                                 })
4243                         },
4244                         None => return Err(APIError::ChannelUnavailable {err: format!(
4245                                 "Channel with id {} not found for the passed counterparty node_id {}",
4246                                 temporary_channel_id, counterparty_node_id),
4247                                 }),
4248                 };
4249
4250                 if let Some(msg) = msg_opt {
4251                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
4252                                 node_id: chan.context.get_counterparty_node_id(),
4253                                 msg,
4254                         });
4255                 }
4256                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
4257                         hash_map::Entry::Occupied(_) => {
4258                                 panic!("Generated duplicate funding txid?");
4259                         },
4260                         hash_map::Entry::Vacant(e) => {
4261                                 let mut outpoint_to_peer = self.outpoint_to_peer.lock().unwrap();
4262                                 match outpoint_to_peer.entry(funding_txo) {
4263                                         hash_map::Entry::Vacant(e) => { e.insert(chan.context.get_counterparty_node_id()); },
4264                                         hash_map::Entry::Occupied(o) => {
4265                                                 let err = format!(
4266                                                         "An existing channel using outpoint {} is open with peer {}",
4267                                                         funding_txo, o.get()
4268                                                 );
4269                                                 mem::drop(outpoint_to_peer);
4270                                                 mem::drop(peer_state_lock);
4271                                                 mem::drop(per_peer_state);
4272                                                 let reason = ClosureReason::ProcessingError { err: err.clone() };
4273                                                 self.finish_close_channel(chan.context.force_shutdown(true, reason));
4274                                                 return Err(APIError::ChannelUnavailable { err });
4275                                         }
4276                                 }
4277                                 e.insert(ChannelPhase::UnfundedOutboundV1(chan));
4278                         }
4279                 }
4280                 Ok(())
4281         }
4282
4283         #[cfg(test)]
4284         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
4285                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, false, |_, tx| {
4286                         Ok(OutPoint { txid: tx.txid(), index: output_index })
4287                 })
4288         }
4289
4290         /// Call this upon creation of a funding transaction for the given channel.
4291         ///
4292         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
4293         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
4294         ///
4295         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
4296         /// across the p2p network.
4297         ///
4298         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
4299         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
4300         ///
4301         /// May panic if the output found in the funding transaction is duplicative with some other
4302         /// channel (note that this should be trivially prevented by using unique funding transaction
4303         /// keys per-channel).
4304         ///
4305         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
4306         /// counterparty's signature the funding transaction will automatically be broadcast via the
4307         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
4308         ///
4309         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
4310         /// not currently support replacing a funding transaction on an existing channel. Instead,
4311         /// create a new channel with a conflicting funding transaction.
4312         ///
4313         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
4314         /// the wallet software generating the funding transaction to apply anti-fee sniping as
4315         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
4316         /// for more details.
4317         ///
4318         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
4319         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
4320         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
4321                 self.batch_funding_transaction_generated(&[(temporary_channel_id, counterparty_node_id)], funding_transaction)
4322         }
4323
4324         /// Call this upon creation of a batch funding transaction for the given channels.
4325         ///
4326         /// Return values are identical to [`Self::funding_transaction_generated`], respective to
4327         /// each individual channel and transaction output.
4328         ///
4329         /// Do NOT broadcast the funding transaction yourself. This batch funding transaction
4330         /// will only be broadcast when we have safely received and persisted the counterparty's
4331         /// signature for each channel.
4332         ///
4333         /// If there is an error, all channels in the batch are to be considered closed.
4334         pub fn batch_funding_transaction_generated(&self, temporary_channels: &[(&ChannelId, &PublicKey)], funding_transaction: Transaction) -> Result<(), APIError> {
4335                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4336                 let mut result = Ok(());
4337
4338                 if !funding_transaction.is_coinbase() {
4339                         for inp in funding_transaction.input.iter() {
4340                                 if inp.witness.is_empty() {
4341                                         result = result.and(Err(APIError::APIMisuseError {
4342                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
4343                                         }));
4344                                 }
4345                         }
4346                 }
4347                 if funding_transaction.output.len() > u16::max_value() as usize {
4348                         result = result.and(Err(APIError::APIMisuseError {
4349                                 err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
4350                         }));
4351                 }
4352                 {
4353                         let height = self.best_block.read().unwrap().height;
4354                         // Transactions are evaluated as final by network mempools if their locktime is strictly
4355                         // lower than the next block height. However, the modules constituting our Lightning
4356                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
4357                         // module is ahead of LDK, only allow one more block of headroom.
4358                         if !funding_transaction.input.iter().all(|input| input.sequence == Sequence::MAX) &&
4359                                 funding_transaction.lock_time.is_block_height() &&
4360                                 funding_transaction.lock_time.to_consensus_u32() > height + 1
4361                         {
4362                                 result = result.and(Err(APIError::APIMisuseError {
4363                                         err: "Funding transaction absolute timelock is non-final".to_owned()
4364                                 }));
4365                         }
4366                 }
4367
4368                 let txid = funding_transaction.txid();
4369                 let is_batch_funding = temporary_channels.len() > 1;
4370                 let mut funding_batch_states = if is_batch_funding {
4371                         Some(self.funding_batch_states.lock().unwrap())
4372                 } else {
4373                         None
4374                 };
4375                 let mut funding_batch_state = funding_batch_states.as_mut().and_then(|states| {
4376                         match states.entry(txid) {
4377                                 btree_map::Entry::Occupied(_) => {
4378                                         result = result.clone().and(Err(APIError::APIMisuseError {
4379                                                 err: "Batch funding transaction with the same txid already exists".to_owned()
4380                                         }));
4381                                         None
4382                                 },
4383                                 btree_map::Entry::Vacant(vacant) => Some(vacant.insert(Vec::new())),
4384                         }
4385                 });
4386                 for &(temporary_channel_id, counterparty_node_id) in temporary_channels {
4387                         result = result.and_then(|_| self.funding_transaction_generated_intern(
4388                                 temporary_channel_id,
4389                                 counterparty_node_id,
4390                                 funding_transaction.clone(),
4391                                 is_batch_funding,
4392                                 |chan, tx| {
4393                                         let mut output_index = None;
4394                                         let expected_spk = chan.context.get_funding_redeemscript().to_p2wsh();
4395                                         for (idx, outp) in tx.output.iter().enumerate() {
4396                                                 if outp.script_pubkey == expected_spk && outp.value.to_sat() == chan.context.get_value_satoshis() {
4397                                                         if output_index.is_some() {
4398                                                                 return Err("Multiple outputs matched the expected script and value");
4399                                                         }
4400                                                         output_index = Some(idx as u16);
4401                                                 }
4402                                         }
4403                                         if output_index.is_none() {
4404                                                 return Err("No output matched the script_pubkey and value in the FundingGenerationReady event");
4405                                         }
4406                                         let outpoint = OutPoint { txid: tx.txid(), index: output_index.unwrap() };
4407                                         if let Some(funding_batch_state) = funding_batch_state.as_mut() {
4408                                                 // TODO(dual_funding): We only do batch funding for V1 channels at the moment, but we'll probably
4409                                                 // need to fix this somehow to not rely on using the outpoint for the channel ID if we
4410                                                 // want to support V2 batching here as well.
4411                                                 funding_batch_state.push((ChannelId::v1_from_funding_outpoint(outpoint), *counterparty_node_id, false));
4412                                         }
4413                                         Ok(outpoint)
4414                                 })
4415                         );
4416                 }
4417                 if let Err(ref e) = result {
4418                         // Remaining channels need to be removed on any error.
4419                         let e = format!("Error in transaction funding: {:?}", e);
4420                         let mut channels_to_remove = Vec::new();
4421                         channels_to_remove.extend(funding_batch_states.as_mut()
4422                                 .and_then(|states| states.remove(&txid))
4423                                 .into_iter().flatten()
4424                                 .map(|(chan_id, node_id, _state)| (chan_id, node_id))
4425                         );
4426                         channels_to_remove.extend(temporary_channels.iter()
4427                                 .map(|(&chan_id, &node_id)| (chan_id, node_id))
4428                         );
4429                         let mut shutdown_results = Vec::new();
4430                         {
4431                                 let per_peer_state = self.per_peer_state.read().unwrap();
4432                                 for (channel_id, counterparty_node_id) in channels_to_remove {
4433                                         per_peer_state.get(&counterparty_node_id)
4434                                                 .map(|peer_state_mutex| peer_state_mutex.lock().unwrap())
4435                                                 .and_then(|mut peer_state| peer_state.channel_by_id.remove(&channel_id).map(|chan| (chan, peer_state)))
4436                                                 .map(|(mut chan, mut peer_state)| {
4437                                                         update_maps_on_chan_removal!(self, &chan.context());
4438                                                         let closure_reason = ClosureReason::ProcessingError { err: e.clone() };
4439                                                         shutdown_results.push(chan.context_mut().force_shutdown(false, closure_reason));
4440                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
4441                                                                 node_id: counterparty_node_id,
4442                                                                 action: msgs::ErrorAction::SendErrorMessage {
4443                                                                         msg: msgs::ErrorMessage {
4444                                                                                 channel_id,
4445                                                                                 data: "Failed to fund channel".to_owned(),
4446                                                                         }
4447                                                                 },
4448                                                         });
4449                                                 });
4450                                 }
4451                         }
4452                         mem::drop(funding_batch_states);
4453                         for shutdown_result in shutdown_results.drain(..) {
4454                                 self.finish_close_channel(shutdown_result);
4455                         }
4456                 }
4457                 result
4458         }
4459
4460         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
4461         ///
4462         /// Once the updates are applied, each eligible channel (advertised with a known short channel
4463         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
4464         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
4465         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
4466         ///
4467         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
4468         /// `counterparty_node_id` is provided.
4469         ///
4470         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
4471         /// below [`MIN_CLTV_EXPIRY_DELTA`].
4472         ///
4473         /// If an error is returned, none of the updates should be considered applied.
4474         ///
4475         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
4476         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
4477         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
4478         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
4479         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4480         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
4481         /// [`APIMisuseError`]: APIError::APIMisuseError
4482         pub fn update_partial_channel_config(
4483                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
4484         ) -> Result<(), APIError> {
4485                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
4486                         return Err(APIError::APIMisuseError {
4487                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
4488                         });
4489                 }
4490
4491                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4492                 let per_peer_state = self.per_peer_state.read().unwrap();
4493                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4494                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
4495                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4496                 let peer_state = &mut *peer_state_lock;
4497
4498                 for channel_id in channel_ids {
4499                         if !peer_state.has_channel(channel_id) {
4500                                 return Err(APIError::ChannelUnavailable {
4501                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, counterparty_node_id),
4502                                 });
4503                         };
4504                 }
4505                 for channel_id in channel_ids {
4506                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
4507                                 let mut config = channel_phase.context().config();
4508                                 config.apply(config_update);
4509                                 if !channel_phase.context_mut().update_config(&config) {
4510                                         continue;
4511                                 }
4512                                 if let ChannelPhase::Funded(channel) = channel_phase {
4513                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
4514                                                 let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
4515                                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
4516                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
4517                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
4518                                                         node_id: channel.context.get_counterparty_node_id(),
4519                                                         msg,
4520                                                 });
4521                                         }
4522                                 }
4523                                 continue;
4524                         } else {
4525                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
4526                                 debug_assert!(false);
4527                                 return Err(APIError::ChannelUnavailable {
4528                                         err: format!(
4529                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
4530                                                 channel_id, counterparty_node_id),
4531                                 });
4532                         };
4533                 }
4534                 Ok(())
4535         }
4536
4537         /// Atomically updates the [`ChannelConfig`] for the given channels.
4538         ///
4539         /// Once the updates are applied, each eligible channel (advertised with a known short channel
4540         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
4541         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
4542         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
4543         ///
4544         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
4545         /// `counterparty_node_id` is provided.
4546         ///
4547         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
4548         /// below [`MIN_CLTV_EXPIRY_DELTA`].
4549         ///
4550         /// If an error is returned, none of the updates should be considered applied.
4551         ///
4552         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
4553         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
4554         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
4555         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
4556         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4557         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
4558         /// [`APIMisuseError`]: APIError::APIMisuseError
4559         pub fn update_channel_config(
4560                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
4561         ) -> Result<(), APIError> {
4562                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
4563         }
4564
4565         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
4566         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
4567         ///
4568         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
4569         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
4570         ///
4571         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
4572         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
4573         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
4574         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
4575         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
4576         ///
4577         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
4578         /// you from forwarding more than you received. See
4579         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
4580         /// than expected.
4581         ///
4582         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4583         /// backwards.
4584         ///
4585         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
4586         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4587         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
4588         // TODO: when we move to deciding the best outbound channel at forward time, only take
4589         // `next_node_id` and not `next_hop_channel_id`
4590         pub fn forward_intercepted_htlc(&self, intercept_id: InterceptId, next_hop_channel_id: &ChannelId, next_node_id: PublicKey, amt_to_forward_msat: u64) -> Result<(), APIError> {
4591                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4592
4593                 let next_hop_scid = {
4594                         let peer_state_lock = self.per_peer_state.read().unwrap();
4595                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
4596                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
4597                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4598                         let peer_state = &mut *peer_state_lock;
4599                         match peer_state.channel_by_id.get(next_hop_channel_id) {
4600                                 Some(ChannelPhase::Funded(chan)) => {
4601                                         if !chan.context.is_usable() {
4602                                                 return Err(APIError::ChannelUnavailable {
4603                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
4604                                                 })
4605                                         }
4606                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
4607                                 },
4608                                 Some(_) => return Err(APIError::ChannelUnavailable {
4609                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
4610                                                 next_hop_channel_id, next_node_id)
4611                                 }),
4612                                 None => {
4613                                         let error = format!("Channel with id {} not found for the passed counterparty node_id {}",
4614                                                 next_hop_channel_id, next_node_id);
4615                                         let logger = WithContext::from(&self.logger, Some(next_node_id), Some(*next_hop_channel_id), None);
4616                                         log_error!(logger, "{} when attempting to forward intercepted HTLC", error);
4617                                         return Err(APIError::ChannelUnavailable {
4618                                                 err: error
4619                                         })
4620                                 }
4621                         }
4622                 };
4623
4624                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4625                         .ok_or_else(|| APIError::APIMisuseError {
4626                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4627                         })?;
4628
4629                 let routing = match payment.forward_info.routing {
4630                         PendingHTLCRouting::Forward { onion_packet, blinded, .. } => {
4631                                 PendingHTLCRouting::Forward {
4632                                         onion_packet, blinded, short_channel_id: next_hop_scid
4633                                 }
4634                         },
4635                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
4636                 };
4637                 let skimmed_fee_msat =
4638                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
4639                 let pending_htlc_info = PendingHTLCInfo {
4640                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
4641                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
4642                 };
4643
4644                 let mut per_source_pending_forward = [(
4645                         payment.prev_short_channel_id,
4646                         payment.prev_funding_outpoint,
4647                         payment.prev_channel_id,
4648                         payment.prev_user_channel_id,
4649                         vec![(pending_htlc_info, payment.prev_htlc_id)]
4650                 )];
4651                 self.forward_htlcs(&mut per_source_pending_forward);
4652                 Ok(())
4653         }
4654
4655         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
4656         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
4657         ///
4658         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4659         /// backwards.
4660         ///
4661         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4662         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
4663                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4664
4665                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4666                         .ok_or_else(|| APIError::APIMisuseError {
4667                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4668                         })?;
4669
4670                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
4671                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4672                                 short_channel_id: payment.prev_short_channel_id,
4673                                 user_channel_id: Some(payment.prev_user_channel_id),
4674                                 outpoint: payment.prev_funding_outpoint,
4675                                 channel_id: payment.prev_channel_id,
4676                                 htlc_id: payment.prev_htlc_id,
4677                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
4678                                 phantom_shared_secret: None,
4679                                 blinded_failure: payment.forward_info.routing.blinded_failure(),
4680                         });
4681
4682                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
4683                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
4684                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
4685                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
4686
4687                 Ok(())
4688         }
4689
4690         fn process_pending_update_add_htlcs(&self) {
4691                 let mut decode_update_add_htlcs = new_hash_map();
4692                 mem::swap(&mut decode_update_add_htlcs, &mut self.decode_update_add_htlcs.lock().unwrap());
4693
4694                 let get_failed_htlc_destination = |outgoing_scid_opt: Option<u64>, payment_hash: PaymentHash| {
4695                         if let Some(outgoing_scid) = outgoing_scid_opt {
4696                                 match self.short_to_chan_info.read().unwrap().get(&outgoing_scid) {
4697                                         Some((outgoing_counterparty_node_id, outgoing_channel_id)) =>
4698                                                 HTLCDestination::NextHopChannel {
4699                                                         node_id: Some(*outgoing_counterparty_node_id),
4700                                                         channel_id: *outgoing_channel_id,
4701                                                 },
4702                                         None => HTLCDestination::UnknownNextHop {
4703                                                 requested_forward_scid: outgoing_scid,
4704                                         },
4705                                 }
4706                         } else {
4707                                 HTLCDestination::FailedPayment { payment_hash }
4708                         }
4709                 };
4710
4711                 'outer_loop: for (incoming_scid, update_add_htlcs) in decode_update_add_htlcs {
4712                         let incoming_channel_details_opt = self.do_funded_channel_callback(incoming_scid, |chan: &mut Channel<SP>| {
4713                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
4714                                 let channel_id = chan.context.channel_id();
4715                                 let funding_txo = chan.context.get_funding_txo().unwrap();
4716                                 let user_channel_id = chan.context.get_user_id();
4717                                 let accept_underpaying_htlcs = chan.context.config().accept_underpaying_htlcs;
4718                                 (counterparty_node_id, channel_id, funding_txo, user_channel_id, accept_underpaying_htlcs)
4719                         });
4720                         let (
4721                                 incoming_counterparty_node_id, incoming_channel_id, incoming_funding_txo,
4722                                 incoming_user_channel_id, incoming_accept_underpaying_htlcs
4723                          ) = if let Some(incoming_channel_details) = incoming_channel_details_opt {
4724                                 incoming_channel_details
4725                         } else {
4726                                 // The incoming channel no longer exists, HTLCs should be resolved onchain instead.
4727                                 continue;
4728                         };
4729
4730                         let mut htlc_forwards = Vec::new();
4731                         let mut htlc_fails = Vec::new();
4732                         for update_add_htlc in &update_add_htlcs {
4733                                 let (next_hop, shared_secret, next_packet_details_opt) = match decode_incoming_update_add_htlc_onion(
4734                                         &update_add_htlc, &self.node_signer, &self.logger, &self.secp_ctx
4735                                 ) {
4736                                         Ok(decoded_onion) => decoded_onion,
4737                                         Err(htlc_fail) => {
4738                                                 htlc_fails.push((htlc_fail, HTLCDestination::InvalidOnion));
4739                                                 continue;
4740                                         },
4741                                 };
4742
4743                                 let is_intro_node_blinded_forward = next_hop.is_intro_node_blinded_forward();
4744                                 let outgoing_scid_opt = next_packet_details_opt.as_ref().map(|d| d.outgoing_scid);
4745
4746                                 // Process the HTLC on the incoming channel.
4747                                 match self.do_funded_channel_callback(incoming_scid, |chan: &mut Channel<SP>| {
4748                                         let logger = WithChannelContext::from(&self.logger, &chan.context, Some(update_add_htlc.payment_hash));
4749                                         chan.can_accept_incoming_htlc(
4750                                                 update_add_htlc, &self.fee_estimator, &logger,
4751                                         )
4752                                 }) {
4753                                         Some(Ok(_)) => {},
4754                                         Some(Err((err, code))) => {
4755                                                 let outgoing_chan_update_opt = if let Some(outgoing_scid) = outgoing_scid_opt.as_ref() {
4756                                                         self.do_funded_channel_callback(*outgoing_scid, |chan: &mut Channel<SP>| {
4757                                                                 self.get_channel_update_for_onion(*outgoing_scid, chan).ok()
4758                                                         }).flatten()
4759                                                 } else {
4760                                                         None
4761                                                 };
4762                                                 let htlc_fail = self.htlc_failure_from_update_add_err(
4763                                                         &update_add_htlc, &incoming_counterparty_node_id, err, code,
4764                                                         outgoing_chan_update_opt, is_intro_node_blinded_forward, &shared_secret,
4765                                                 );
4766                                                 let htlc_destination = get_failed_htlc_destination(outgoing_scid_opt, update_add_htlc.payment_hash);
4767                                                 htlc_fails.push((htlc_fail, htlc_destination));
4768                                                 continue;
4769                                         },
4770                                         // The incoming channel no longer exists, HTLCs should be resolved onchain instead.
4771                                         None => continue 'outer_loop,
4772                                 }
4773
4774                                 // Now process the HTLC on the outgoing channel if it's a forward.
4775                                 if let Some(next_packet_details) = next_packet_details_opt.as_ref() {
4776                                         if let Err((err, code, chan_update_opt)) = self.can_forward_htlc(
4777                                                 &update_add_htlc, next_packet_details
4778                                         ) {
4779                                                 let htlc_fail = self.htlc_failure_from_update_add_err(
4780                                                         &update_add_htlc, &incoming_counterparty_node_id, err, code,
4781                                                         chan_update_opt, is_intro_node_blinded_forward, &shared_secret,
4782                                                 );
4783                                                 let htlc_destination = get_failed_htlc_destination(outgoing_scid_opt, update_add_htlc.payment_hash);
4784                                                 htlc_fails.push((htlc_fail, htlc_destination));
4785                                                 continue;
4786                                         }
4787                                 }
4788
4789                                 match self.construct_pending_htlc_status(
4790                                         &update_add_htlc, &incoming_counterparty_node_id, shared_secret, next_hop,
4791                                         incoming_accept_underpaying_htlcs, next_packet_details_opt.map(|d| d.next_packet_pubkey),
4792                                 ) {
4793                                         PendingHTLCStatus::Forward(htlc_forward) => {
4794                                                 htlc_forwards.push((htlc_forward, update_add_htlc.htlc_id));
4795                                         },
4796                                         PendingHTLCStatus::Fail(htlc_fail) => {
4797                                                 let htlc_destination = get_failed_htlc_destination(outgoing_scid_opt, update_add_htlc.payment_hash);
4798                                                 htlc_fails.push((htlc_fail, htlc_destination));
4799                                         },
4800                                 }
4801                         }
4802
4803                         // Process all of the forwards and failures for the channel in which the HTLCs were
4804                         // proposed to as a batch.
4805                         let pending_forwards = (incoming_scid, incoming_funding_txo, incoming_channel_id,
4806                                 incoming_user_channel_id, htlc_forwards.drain(..).collect());
4807                         self.forward_htlcs_without_forward_event(&mut [pending_forwards]);
4808                         for (htlc_fail, htlc_destination) in htlc_fails.drain(..) {
4809                                 let failure = match htlc_fail {
4810                                         HTLCFailureMsg::Relay(fail_htlc) => HTLCForwardInfo::FailHTLC {
4811                                                 htlc_id: fail_htlc.htlc_id,
4812                                                 err_packet: fail_htlc.reason,
4813                                         },
4814                                         HTLCFailureMsg::Malformed(fail_malformed_htlc) => HTLCForwardInfo::FailMalformedHTLC {
4815                                                 htlc_id: fail_malformed_htlc.htlc_id,
4816                                                 sha256_of_onion: fail_malformed_htlc.sha256_of_onion,
4817                                                 failure_code: fail_malformed_htlc.failure_code,
4818                                         },
4819                                 };
4820                                 self.forward_htlcs.lock().unwrap().entry(incoming_scid).or_insert(vec![]).push(failure);
4821                                 self.pending_events.lock().unwrap().push_back((events::Event::HTLCHandlingFailed {
4822                                         prev_channel_id: incoming_channel_id,
4823                                         failed_next_destination: htlc_destination,
4824                                 }, None));
4825                         }
4826                 }
4827         }
4828
4829         /// Processes HTLCs which are pending waiting on random forward delay.
4830         ///
4831         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
4832         /// Will likely generate further events.
4833         pub fn process_pending_htlc_forwards(&self) {
4834                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4835
4836                 self.process_pending_update_add_htlcs();
4837
4838                 let mut new_events = VecDeque::new();
4839                 let mut failed_forwards = Vec::new();
4840                 let mut phantom_receives: Vec<(u64, OutPoint, ChannelId, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
4841                 {
4842                         let mut forward_htlcs = new_hash_map();
4843                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
4844
4845                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
4846                                 if short_chan_id != 0 {
4847                                         let mut forwarding_counterparty = None;
4848                                         macro_rules! forwarding_channel_not_found {
4849                                                 () => {
4850                                                         for forward_info in pending_forwards.drain(..) {
4851                                                                 match forward_info {
4852                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4853                                                                                 prev_short_channel_id, prev_htlc_id, prev_channel_id, prev_funding_outpoint,
4854                                                                                 prev_user_channel_id, forward_info: PendingHTLCInfo {
4855                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
4856                                                                                         outgoing_cltv_value, ..
4857                                                                                 }
4858                                                                         }) => {
4859                                                                                 macro_rules! failure_handler {
4860                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
4861                                                                                                 let logger = WithContext::from(&self.logger, forwarding_counterparty, Some(prev_channel_id), Some(payment_hash));
4862                                                                                                 log_info!(logger, "Failed to accept/forward incoming HTLC: {}", $msg);
4863
4864                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4865                                                                                                         short_channel_id: prev_short_channel_id,
4866                                                                                                         user_channel_id: Some(prev_user_channel_id),
4867                                                                                                         channel_id: prev_channel_id,
4868                                                                                                         outpoint: prev_funding_outpoint,
4869                                                                                                         htlc_id: prev_htlc_id,
4870                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
4871                                                                                                         phantom_shared_secret: $phantom_ss,
4872                                                                                                         blinded_failure: routing.blinded_failure(),
4873                                                                                                 });
4874
4875                                                                                                 let reason = if $next_hop_unknown {
4876                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
4877                                                                                                 } else {
4878                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
4879                                                                                                 };
4880
4881                                                                                                 failed_forwards.push((htlc_source, payment_hash,
4882                                                                                                         HTLCFailReason::reason($err_code, $err_data),
4883                                                                                                         reason
4884                                                                                                 ));
4885                                                                                                 continue;
4886                                                                                         }
4887                                                                                 }
4888                                                                                 macro_rules! fail_forward {
4889                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4890                                                                                                 {
4891                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
4892                                                                                                 }
4893                                                                                         }
4894                                                                                 }
4895                                                                                 macro_rules! failed_payment {
4896                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4897                                                                                                 {
4898                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
4899                                                                                                 }
4900                                                                                         }
4901                                                                                 }
4902                                                                                 if let PendingHTLCRouting::Forward { ref onion_packet, .. } = routing {
4903                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
4904                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.chain_hash) {
4905                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
4906                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(
4907                                                                                                         phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac,
4908                                                                                                         payment_hash, None, &self.node_signer
4909                                                                                                 ) {
4910                                                                                                         Ok(res) => res,
4911                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
4912                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).to_byte_array();
4913                                                                                                                 // In this scenario, the phantom would have sent us an
4914                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
4915                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
4916                                                                                                                 // of the onion.
4917                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
4918                                                                                                         },
4919                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
4920                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
4921                                                                                                         },
4922                                                                                                 };
4923                                                                                                 match next_hop {
4924                                                                                                         onion_utils::Hop::Receive(hop_data) => {
4925                                                                                                                 let current_height: u32 = self.best_block.read().unwrap().height;
4926                                                                                                                 match create_recv_pending_htlc_info(hop_data,
4927                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
4928                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None,
4929                                                                                                                         current_height, self.default_configuration.accept_mpp_keysend)
4930                                                                                                                 {
4931                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_channel_id, prev_user_channel_id, vec![(info, prev_htlc_id)])),
4932                                                                                                                         Err(InboundHTLCErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
4933                                                                                                                 }
4934                                                                                                         },
4935                                                                                                         _ => panic!(),
4936                                                                                                 }
4937                                                                                         } else {
4938                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4939                                                                                         }
4940                                                                                 } else {
4941                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4942                                                                                 }
4943                                                                         },
4944                                                                         HTLCForwardInfo::FailHTLC { .. } | HTLCForwardInfo::FailMalformedHTLC { .. } => {
4945                                                                                 // Channel went away before we could fail it. This implies
4946                                                                                 // the channel is now on chain and our counterparty is
4947                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
4948                                                                                 // problem, not ours.
4949                                                                         }
4950                                                                 }
4951                                                         }
4952                                                 }
4953                                         }
4954                                         let chan_info_opt = self.short_to_chan_info.read().unwrap().get(&short_chan_id).cloned();
4955                                         let (counterparty_node_id, forward_chan_id) = match chan_info_opt {
4956                                                 Some((cp_id, chan_id)) => (cp_id, chan_id),
4957                                                 None => {
4958                                                         forwarding_channel_not_found!();
4959                                                         continue;
4960                                                 }
4961                                         };
4962                                         forwarding_counterparty = Some(counterparty_node_id);
4963                                         let per_peer_state = self.per_peer_state.read().unwrap();
4964                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4965                                         if peer_state_mutex_opt.is_none() {
4966                                                 forwarding_channel_not_found!();
4967                                                 continue;
4968                                         }
4969                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4970                                         let peer_state = &mut *peer_state_lock;
4971                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
4972                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
4973                                                 for forward_info in pending_forwards.drain(..) {
4974                                                         let queue_fail_htlc_res = match forward_info {
4975                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4976                                                                         prev_short_channel_id, prev_htlc_id, prev_channel_id, prev_funding_outpoint,
4977                                                                         prev_user_channel_id, forward_info: PendingHTLCInfo {
4978                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
4979                                                                                 routing: PendingHTLCRouting::Forward {
4980                                                                                         onion_packet, blinded, ..
4981                                                                                 }, skimmed_fee_msat, ..
4982                                                                         },
4983                                                                 }) => {
4984                                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, Some(payment_hash));
4985                                                                         log_trace!(logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", prev_short_channel_id, &payment_hash, short_chan_id);
4986                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4987                                                                                 short_channel_id: prev_short_channel_id,
4988                                                                                 user_channel_id: Some(prev_user_channel_id),
4989                                                                                 channel_id: prev_channel_id,
4990                                                                                 outpoint: prev_funding_outpoint,
4991                                                                                 htlc_id: prev_htlc_id,
4992                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4993                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
4994                                                                                 phantom_shared_secret: None,
4995                                                                                 blinded_failure: blinded.map(|b| b.failure),
4996                                                                         });
4997                                                                         let next_blinding_point = blinded.and_then(|b| {
4998                                                                                 let encrypted_tlvs_ss = self.node_signer.ecdh(
4999                                                                                         Recipient::Node, &b.inbound_blinding_point, None
5000                                                                                 ).unwrap().secret_bytes();
5001                                                                                 onion_utils::next_hop_pubkey(
5002                                                                                         &self.secp_ctx, b.inbound_blinding_point, &encrypted_tlvs_ss
5003                                                                                 ).ok()
5004                                                                         });
5005                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
5006                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
5007                                                                                 onion_packet, skimmed_fee_msat, next_blinding_point, &self.fee_estimator,
5008                                                                                 &&logger)
5009                                                                         {
5010                                                                                 if let ChannelError::Ignore(msg) = e {
5011                                                                                         log_trace!(logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
5012                                                                                 } else {
5013                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
5014                                                                                 }
5015                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
5016                                                                                 failed_forwards.push((htlc_source, payment_hash,
5017                                                                                         HTLCFailReason::reason(failure_code, data),
5018                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
5019                                                                                 ));
5020                                                                                 continue;
5021                                                                         }
5022                                                                         None
5023                                                                 },
5024                                                                 HTLCForwardInfo::AddHTLC { .. } => {
5025                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
5026                                                                 },
5027                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
5028                                                                         log_trace!(logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
5029                                                                         Some((chan.queue_fail_htlc(htlc_id, err_packet, &&logger), htlc_id))
5030                                                                 },
5031                                                                 HTLCForwardInfo::FailMalformedHTLC { htlc_id, failure_code, sha256_of_onion } => {
5032                                                                         log_trace!(logger, "Failing malformed HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
5033                                                                         let res = chan.queue_fail_malformed_htlc(
5034                                                                                 htlc_id, failure_code, sha256_of_onion, &&logger
5035                                                                         );
5036                                                                         Some((res, htlc_id))
5037                                                                 },
5038                                                         };
5039                                                         if let Some((queue_fail_htlc_res, htlc_id)) = queue_fail_htlc_res {
5040                                                                 if let Err(e) = queue_fail_htlc_res {
5041                                                                         if let ChannelError::Ignore(msg) = e {
5042                                                                                 log_trace!(logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
5043                                                                         } else {
5044                                                                                 panic!("Stated return value requirements in queue_fail_{{malformed_}}htlc() were not met");
5045                                                                         }
5046                                                                         // fail-backs are best-effort, we probably already have one
5047                                                                         // pending, and if not that's OK, if not, the channel is on
5048                                                                         // the chain and sending the HTLC-Timeout is their problem.
5049                                                                         continue;
5050                                                                 }
5051                                                         }
5052                                                 }
5053                                         } else {
5054                                                 forwarding_channel_not_found!();
5055                                                 continue;
5056                                         }
5057                                 } else {
5058                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
5059                                                 match forward_info {
5060                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5061                                                                 prev_short_channel_id, prev_htlc_id, prev_channel_id, prev_funding_outpoint,
5062                                                                 prev_user_channel_id, forward_info: PendingHTLCInfo {
5063                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
5064                                                                         skimmed_fee_msat, ..
5065                                                                 }
5066                                                         }) => {
5067                                                                 let blinded_failure = routing.blinded_failure();
5068                                                                 let (cltv_expiry, onion_payload, payment_data, payment_context, phantom_shared_secret, mut onion_fields) = match routing {
5069                                                                         PendingHTLCRouting::Receive {
5070                                                                                 payment_data, payment_metadata, payment_context,
5071                                                                                 incoming_cltv_expiry, phantom_shared_secret, custom_tlvs,
5072                                                                                 requires_blinded_error: _
5073                                                                         } => {
5074                                                                                 let _legacy_hop_data = Some(payment_data.clone());
5075                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
5076                                                                                                 payment_metadata, custom_tlvs };
5077                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
5078                                                                                         Some(payment_data), payment_context, phantom_shared_secret, onion_fields)
5079                                                                         },
5080                                                                         PendingHTLCRouting::ReceiveKeysend {
5081                                                                                 payment_data, payment_preimage, payment_metadata,
5082                                                                                 incoming_cltv_expiry, custom_tlvs, requires_blinded_error: _
5083                                                                         } => {
5084                                                                                 let onion_fields = RecipientOnionFields {
5085                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
5086                                                                                         payment_metadata,
5087                                                                                         custom_tlvs,
5088                                                                                 };
5089                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
5090                                                                                         payment_data, None, None, onion_fields)
5091                                                                         },
5092                                                                         _ => {
5093                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
5094                                                                         }
5095                                                                 };
5096                                                                 let claimable_htlc = ClaimableHTLC {
5097                                                                         prev_hop: HTLCPreviousHopData {
5098                                                                                 short_channel_id: prev_short_channel_id,
5099                                                                                 user_channel_id: Some(prev_user_channel_id),
5100                                                                                 channel_id: prev_channel_id,
5101                                                                                 outpoint: prev_funding_outpoint,
5102                                                                                 htlc_id: prev_htlc_id,
5103                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
5104                                                                                 phantom_shared_secret,
5105                                                                                 blinded_failure,
5106                                                                         },
5107                                                                         // We differentiate the received value from the sender intended value
5108                                                                         // if possible so that we don't prematurely mark MPP payments complete
5109                                                                         // if routing nodes overpay
5110                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
5111                                                                         sender_intended_value: outgoing_amt_msat,
5112                                                                         timer_ticks: 0,
5113                                                                         total_value_received: None,
5114                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
5115                                                                         cltv_expiry,
5116                                                                         onion_payload,
5117                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
5118                                                                 };
5119
5120                                                                 let mut committed_to_claimable = false;
5121
5122                                                                 macro_rules! fail_htlc {
5123                                                                         ($htlc: expr, $payment_hash: expr) => {
5124                                                                                 debug_assert!(!committed_to_claimable);
5125                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
5126                                                                                 htlc_msat_height_data.extend_from_slice(
5127                                                                                         &self.best_block.read().unwrap().height.to_be_bytes(),
5128                                                                                 );
5129                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
5130                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
5131                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
5132                                                                                                 channel_id: prev_channel_id,
5133                                                                                                 outpoint: prev_funding_outpoint,
5134                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
5135                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
5136                                                                                                 phantom_shared_secret,
5137                                                                                                 blinded_failure,
5138                                                                                         }), payment_hash,
5139                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
5140                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
5141                                                                                 ));
5142                                                                                 continue 'next_forwardable_htlc;
5143                                                                         }
5144                                                                 }
5145                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
5146                                                                 let mut receiver_node_id = self.our_network_pubkey;
5147                                                                 if phantom_shared_secret.is_some() {
5148                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
5149                                                                                 .expect("Failed to get node_id for phantom node recipient");
5150                                                                 }
5151
5152                                                                 macro_rules! check_total_value {
5153                                                                         ($purpose: expr) => {{
5154                                                                                 let mut payment_claimable_generated = false;
5155                                                                                 let is_keysend = $purpose.is_keysend();
5156                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
5157                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
5158                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5159                                                                                 }
5160                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
5161                                                                                         .entry(payment_hash)
5162                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
5163                                                                                         .or_insert_with(|| {
5164                                                                                                 committed_to_claimable = true;
5165                                                                                                 ClaimablePayment {
5166                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
5167                                                                                                 }
5168                                                                                         });
5169                                                                                 if $purpose != claimable_payment.purpose {
5170                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
5171                                                                                         log_trace!(self.logger, "Failing new {} HTLC with payment_hash {} as we already had an existing {} HTLC with the same payment hash", log_keysend(is_keysend), &payment_hash, log_keysend(!is_keysend));
5172                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5173                                                                                 }
5174                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
5175                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} as we already had an existing keysend HTLC with the same payment hash and our config states we don't accept MPP keysend", &payment_hash);
5176                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5177                                                                                 }
5178                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
5179                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
5180                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
5181                                                                                         }
5182                                                                                 } else {
5183                                                                                         claimable_payment.onion_fields = Some(onion_fields);
5184                                                                                 }
5185                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
5186                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
5187                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
5188                                                                                 for htlc in htlcs.iter() {
5189                                                                                         total_value += htlc.sender_intended_value;
5190                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
5191                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
5192                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
5193                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
5194                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
5195                                                                                         }
5196                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
5197                                                                                 }
5198                                                                                 // The condition determining whether an MPP is complete must
5199                                                                                 // match exactly the condition used in `timer_tick_occurred`
5200                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
5201                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5202                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
5203                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
5204                                                                                                 &payment_hash);
5205                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5206                                                                                 } else if total_value >= claimable_htlc.total_msat {
5207                                                                                         #[allow(unused_assignments)] {
5208                                                                                                 committed_to_claimable = true;
5209                                                                                         }
5210                                                                                         htlcs.push(claimable_htlc);
5211                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
5212                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
5213                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
5214                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
5215                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
5216                                                                                                 counterparty_skimmed_fee_msat);
5217                                                                                         new_events.push_back((events::Event::PaymentClaimable {
5218                                                                                                 receiver_node_id: Some(receiver_node_id),
5219                                                                                                 payment_hash,
5220                                                                                                 purpose: $purpose,
5221                                                                                                 amount_msat,
5222                                                                                                 counterparty_skimmed_fee_msat,
5223                                                                                                 via_channel_id: Some(prev_channel_id),
5224                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
5225                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
5226                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
5227                                                                                         }, None));
5228                                                                                         payment_claimable_generated = true;
5229                                                                                 } else {
5230                                                                                         // Nothing to do - we haven't reached the total
5231                                                                                         // payment value yet, wait until we receive more
5232                                                                                         // MPP parts.
5233                                                                                         htlcs.push(claimable_htlc);
5234                                                                                         #[allow(unused_assignments)] {
5235                                                                                                 committed_to_claimable = true;
5236                                                                                         }
5237                                                                                 }
5238                                                                                 payment_claimable_generated
5239                                                                         }}
5240                                                                 }
5241
5242                                                                 // Check that the payment hash and secret are known. Note that we
5243                                                                 // MUST take care to handle the "unknown payment hash" and
5244                                                                 // "incorrect payment secret" cases here identically or we'd expose
5245                                                                 // that we are the ultimate recipient of the given payment hash.
5246                                                                 // Further, we must not expose whether we have any other HTLCs
5247                                                                 // associated with the same payment_hash pending or not.
5248                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
5249                                                                 match payment_secrets.entry(payment_hash) {
5250                                                                         hash_map::Entry::Vacant(_) => {
5251                                                                                 match claimable_htlc.onion_payload {
5252                                                                                         OnionPayload::Invoice { .. } => {
5253                                                                                                 let payment_data = payment_data.unwrap();
5254                                                                                                 let (payment_preimage, min_final_cltv_expiry_delta) = match inbound_payment::verify(payment_hash, &payment_data, self.highest_seen_timestamp.load(Ordering::Acquire) as u64, &self.inbound_payment_key, &self.logger) {
5255                                                                                                         Ok(result) => result,
5256                                                                                                         Err(()) => {
5257                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
5258                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
5259                                                                                                         }
5260                                                                                                 };
5261                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
5262                                                                                                         let expected_min_expiry_height = (self.current_best_block().height + min_final_cltv_expiry_delta as u32) as u64;
5263                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
5264                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
5265                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
5266                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
5267                                                                                                         }
5268                                                                                                 }
5269                                                                                                 let purpose = events::PaymentPurpose::from_parts(
5270                                                                                                         payment_preimage,
5271                                                                                                         payment_data.payment_secret,
5272                                                                                                         payment_context,
5273                                                                                                 );
5274                                                                                                 check_total_value!(purpose);
5275                                                                                         },
5276                                                                                         OnionPayload::Spontaneous(preimage) => {
5277                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
5278                                                                                                 check_total_value!(purpose);
5279                                                                                         }
5280                                                                                 }
5281                                                                         },
5282                                                                         hash_map::Entry::Occupied(inbound_payment) => {
5283                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
5284                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash", &payment_hash);
5285                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5286                                                                                 }
5287                                                                                 let payment_data = payment_data.unwrap();
5288                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
5289                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
5290                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5291                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
5292                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
5293                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
5294                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5295                                                                                 } else {
5296                                                                                         let purpose = events::PaymentPurpose::from_parts(
5297                                                                                                 inbound_payment.get().payment_preimage,
5298                                                                                                 payment_data.payment_secret,
5299                                                                                                 payment_context,
5300                                                                                         );
5301                                                                                         let payment_claimable_generated = check_total_value!(purpose);
5302                                                                                         if payment_claimable_generated {
5303                                                                                                 inbound_payment.remove_entry();
5304                                                                                         }
5305                                                                                 }
5306                                                                         },
5307                                                                 };
5308                                                         },
5309                                                         HTLCForwardInfo::FailHTLC { .. } | HTLCForwardInfo::FailMalformedHTLC { .. } => {
5310                                                                 panic!("Got pending fail of our own HTLC");
5311                                                         }
5312                                                 }
5313                                         }
5314                                 }
5315                         }
5316                 }
5317
5318                 let best_block_height = self.best_block.read().unwrap().height;
5319                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
5320                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
5321                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
5322
5323                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
5324                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
5325                 }
5326                 self.forward_htlcs(&mut phantom_receives);
5327
5328                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
5329                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
5330                 // nice to do the work now if we can rather than while we're trying to get messages in the
5331                 // network stack.
5332                 self.check_free_holding_cells();
5333
5334                 if new_events.is_empty() { return }
5335                 let mut events = self.pending_events.lock().unwrap();
5336                 events.append(&mut new_events);
5337         }
5338
5339         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
5340         ///
5341         /// Expects the caller to have a total_consistency_lock read lock.
5342         fn process_background_events(&self) -> NotifyOption {
5343                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
5344
5345                 self.background_events_processed_since_startup.store(true, Ordering::Release);
5346
5347                 let mut background_events = Vec::new();
5348                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
5349                 if background_events.is_empty() {
5350                         return NotifyOption::SkipPersistNoEvents;
5351                 }
5352
5353                 for event in background_events.drain(..) {
5354                         match event {
5355                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, _channel_id, update)) => {
5356                                         // The channel has already been closed, so no use bothering to care about the
5357                                         // monitor updating completing.
5358                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
5359                                 },
5360                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, channel_id, update } => {
5361                                         let mut updated_chan = false;
5362                                         {
5363                                                 let per_peer_state = self.per_peer_state.read().unwrap();
5364                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
5365                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5366                                                         let peer_state = &mut *peer_state_lock;
5367                                                         match peer_state.channel_by_id.entry(channel_id) {
5368                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
5369                                                                         if let ChannelPhase::Funded(chan) = chan_phase.get_mut() {
5370                                                                                 updated_chan = true;
5371                                                                                 handle_new_monitor_update!(self, funding_txo, update.clone(),
5372                                                                                         peer_state_lock, peer_state, per_peer_state, chan);
5373                                                                         } else {
5374                                                                                 debug_assert!(false, "We shouldn't have an update for a non-funded channel");
5375                                                                         }
5376                                                                 },
5377                                                                 hash_map::Entry::Vacant(_) => {},
5378                                                         }
5379                                                 }
5380                                         }
5381                                         if !updated_chan {
5382                                                 // TODO: Track this as in-flight even though the channel is closed.
5383                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
5384                                         }
5385                                 },
5386                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
5387                                         let per_peer_state = self.per_peer_state.read().unwrap();
5388                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
5389                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5390                                                 let peer_state = &mut *peer_state_lock;
5391                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
5392                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
5393                                                 } else {
5394                                                         let update_actions = peer_state.monitor_update_blocked_actions
5395                                                                 .remove(&channel_id).unwrap_or(Vec::new());
5396                                                         mem::drop(peer_state_lock);
5397                                                         mem::drop(per_peer_state);
5398                                                         self.handle_monitor_update_completion_actions(update_actions);
5399                                                 }
5400                                         }
5401                                 },
5402                         }
5403                 }
5404                 NotifyOption::DoPersist
5405         }
5406
5407         #[cfg(any(test, feature = "_test_utils"))]
5408         /// Process background events, for functional testing
5409         pub fn test_process_background_events(&self) {
5410                 let _lck = self.total_consistency_lock.read().unwrap();
5411                 let _ = self.process_background_events();
5412         }
5413
5414         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
5415                 if !chan.context.is_outbound() { return NotifyOption::SkipPersistNoEvents; }
5416
5417                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
5418
5419                 // If the feerate has decreased by less than half, don't bother
5420                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
5421                         return NotifyOption::SkipPersistNoEvents;
5422                 }
5423                 if !chan.context.is_live() {
5424                         log_trace!(logger, "Channel {} does not qualify for a feerate change from {} to {} as it cannot currently be updated (probably the peer is disconnected).",
5425                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
5426                         return NotifyOption::SkipPersistNoEvents;
5427                 }
5428                 log_trace!(logger, "Channel {} qualifies for a feerate change from {} to {}.",
5429                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
5430
5431                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &&logger);
5432                 NotifyOption::DoPersist
5433         }
5434
5435         #[cfg(fuzzing)]
5436         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
5437         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
5438         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
5439         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
5440         pub fn maybe_update_chan_fees(&self) {
5441                 PersistenceNotifierGuard::optionally_notify(self, || {
5442                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
5443
5444                         let non_anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::NonAnchorChannelFee);
5445                         let anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::AnchorChannelFee);
5446
5447                         let per_peer_state = self.per_peer_state.read().unwrap();
5448                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
5449                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5450                                 let peer_state = &mut *peer_state_lock;
5451                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
5452                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
5453                                 ) {
5454                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
5455                                                 anchor_feerate
5456                                         } else {
5457                                                 non_anchor_feerate
5458                                         };
5459                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
5460                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
5461                                 }
5462                         }
5463
5464                         should_persist
5465                 });
5466         }
5467
5468         /// Performs actions which should happen on startup and roughly once per minute thereafter.
5469         ///
5470         /// This currently includes:
5471         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
5472         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
5473         ///    than a minute, informing the network that they should no longer attempt to route over
5474         ///    the channel.
5475         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
5476         ///    with the current [`ChannelConfig`].
5477         ///  * Removing peers which have disconnected but and no longer have any channels.
5478         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
5479         ///  * Forgetting about stale outbound payments, either those that have already been fulfilled
5480         ///    or those awaiting an invoice that hasn't been delivered in the necessary amount of time.
5481         ///    The latter is determined using the system clock in `std` and the highest seen block time
5482         ///    minus two hours in `no-std`.
5483         ///
5484         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
5485         /// estimate fetches.
5486         ///
5487         /// [`ChannelUpdate`]: msgs::ChannelUpdate
5488         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
5489         pub fn timer_tick_occurred(&self) {
5490                 PersistenceNotifierGuard::optionally_notify(self, || {
5491                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
5492
5493                         let non_anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::NonAnchorChannelFee);
5494                         let anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::AnchorChannelFee);
5495
5496                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
5497                         let mut timed_out_mpp_htlcs = Vec::new();
5498                         let mut pending_peers_awaiting_removal = Vec::new();
5499                         let mut shutdown_channels = Vec::new();
5500
5501                         let mut process_unfunded_channel_tick = |
5502                                 chan_id: &ChannelId,
5503                                 context: &mut ChannelContext<SP>,
5504                                 unfunded_context: &mut UnfundedChannelContext,
5505                                 pending_msg_events: &mut Vec<MessageSendEvent>,
5506                                 counterparty_node_id: PublicKey,
5507                         | {
5508                                 context.maybe_expire_prev_config();
5509                                 if unfunded_context.should_expire_unfunded_channel() {
5510                                         let logger = WithChannelContext::from(&self.logger, context, None);
5511                                         log_error!(logger,
5512                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
5513                                         update_maps_on_chan_removal!(self, &context);
5514                                         shutdown_channels.push(context.force_shutdown(false, ClosureReason::HolderForceClosed));
5515                                         pending_msg_events.push(MessageSendEvent::HandleError {
5516                                                 node_id: counterparty_node_id,
5517                                                 action: msgs::ErrorAction::SendErrorMessage {
5518                                                         msg: msgs::ErrorMessage {
5519                                                                 channel_id: *chan_id,
5520                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
5521                                                         },
5522                                                 },
5523                                         });
5524                                         false
5525                                 } else {
5526                                         true
5527                                 }
5528                         };
5529
5530                         {
5531                                 let per_peer_state = self.per_peer_state.read().unwrap();
5532                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
5533                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5534                                         let peer_state = &mut *peer_state_lock;
5535                                         let pending_msg_events = &mut peer_state.pending_msg_events;
5536                                         let counterparty_node_id = *counterparty_node_id;
5537                                         peer_state.channel_by_id.retain(|chan_id, phase| {
5538                                                 match phase {
5539                                                         ChannelPhase::Funded(chan) => {
5540                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
5541                                                                         anchor_feerate
5542                                                                 } else {
5543                                                                         non_anchor_feerate
5544                                                                 };
5545                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
5546                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
5547
5548                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
5549                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
5550                                                                         handle_errors.push((Err(err), counterparty_node_id));
5551                                                                         if needs_close { return false; }
5552                                                                 }
5553
5554                                                                 match chan.channel_update_status() {
5555                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
5556                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
5557                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
5558                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
5559                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
5560                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
5561                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
5562                                                                                 n += 1;
5563                                                                                 if n >= DISABLE_GOSSIP_TICKS {
5564                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
5565                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5566                                                                                                 let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
5567                                                                                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
5568                                                                                                         msg: update
5569                                                                                                 });
5570                                                                                         }
5571                                                                                         should_persist = NotifyOption::DoPersist;
5572                                                                                 } else {
5573                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
5574                                                                                 }
5575                                                                         },
5576                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
5577                                                                                 n += 1;
5578                                                                                 if n >= ENABLE_GOSSIP_TICKS {
5579                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
5580                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5581                                                                                                 let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
5582                                                                                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
5583                                                                                                         msg: update
5584                                                                                                 });
5585                                                                                         }
5586                                                                                         should_persist = NotifyOption::DoPersist;
5587                                                                                 } else {
5588                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
5589                                                                                 }
5590                                                                         },
5591                                                                         _ => {},
5592                                                                 }
5593
5594                                                                 chan.context.maybe_expire_prev_config();
5595
5596                                                                 if chan.should_disconnect_peer_awaiting_response() {
5597                                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
5598                                                                         log_debug!(logger, "Disconnecting peer {} due to not making any progress on channel {}",
5599                                                                                         counterparty_node_id, chan_id);
5600                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
5601                                                                                 node_id: counterparty_node_id,
5602                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
5603                                                                                         msg: msgs::WarningMessage {
5604                                                                                                 channel_id: *chan_id,
5605                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
5606                                                                                         },
5607                                                                                 },
5608                                                                         });
5609                                                                 }
5610
5611                                                                 true
5612                                                         },
5613                                                         ChannelPhase::UnfundedInboundV1(chan) => {
5614                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
5615                                                                         pending_msg_events, counterparty_node_id)
5616                                                         },
5617                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
5618                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
5619                                                                         pending_msg_events, counterparty_node_id)
5620                                                         },
5621                                                         #[cfg(any(dual_funding, splicing))]
5622                                                         ChannelPhase::UnfundedInboundV2(chan) => {
5623                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
5624                                                                         pending_msg_events, counterparty_node_id)
5625                                                         },
5626                                                         #[cfg(any(dual_funding, splicing))]
5627                                                         ChannelPhase::UnfundedOutboundV2(chan) => {
5628                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
5629                                                                         pending_msg_events, counterparty_node_id)
5630                                                         },
5631                                                 }
5632                                         });
5633
5634                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
5635                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
5636                                                         let logger = WithContext::from(&self.logger, Some(counterparty_node_id), Some(*chan_id), None);
5637                                                         log_error!(logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
5638                                                         peer_state.pending_msg_events.push(
5639                                                                 events::MessageSendEvent::HandleError {
5640                                                                         node_id: counterparty_node_id,
5641                                                                         action: msgs::ErrorAction::SendErrorMessage {
5642                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
5643                                                                         },
5644                                                                 }
5645                                                         );
5646                                                 }
5647                                         }
5648                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
5649
5650                                         if peer_state.ok_to_remove(true) {
5651                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
5652                                         }
5653                                 }
5654                         }
5655
5656                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
5657                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
5658                         // of to that peer is later closed while still being disconnected (i.e. force closed),
5659                         // we therefore need to remove the peer from `peer_state` separately.
5660                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
5661                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
5662                         // negative effects on parallelism as much as possible.
5663                         if pending_peers_awaiting_removal.len() > 0 {
5664                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
5665                                 for counterparty_node_id in pending_peers_awaiting_removal {
5666                                         match per_peer_state.entry(counterparty_node_id) {
5667                                                 hash_map::Entry::Occupied(entry) => {
5668                                                         // Remove the entry if the peer is still disconnected and we still
5669                                                         // have no channels to the peer.
5670                                                         let remove_entry = {
5671                                                                 let peer_state = entry.get().lock().unwrap();
5672                                                                 peer_state.ok_to_remove(true)
5673                                                         };
5674                                                         if remove_entry {
5675                                                                 entry.remove_entry();
5676                                                         }
5677                                                 },
5678                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
5679                                         }
5680                                 }
5681                         }
5682
5683                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
5684                                 if payment.htlcs.is_empty() {
5685                                         // This should be unreachable
5686                                         debug_assert!(false);
5687                                         return false;
5688                                 }
5689                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
5690                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
5691                                         // In this case we're not going to handle any timeouts of the parts here.
5692                                         // This condition determining whether the MPP is complete here must match
5693                                         // exactly the condition used in `process_pending_htlc_forwards`.
5694                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
5695                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
5696                                         {
5697                                                 return true;
5698                                         } else if payment.htlcs.iter_mut().any(|htlc| {
5699                                                 htlc.timer_ticks += 1;
5700                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
5701                                         }) {
5702                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
5703                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
5704                                                 return false;
5705                                         }
5706                                 }
5707                                 true
5708                         });
5709
5710                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
5711                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
5712                                 let reason = HTLCFailReason::from_failure_code(23);
5713                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
5714                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
5715                         }
5716
5717                         for (err, counterparty_node_id) in handle_errors.drain(..) {
5718                                 let _ = handle_error!(self, err, counterparty_node_id);
5719                         }
5720
5721                         for shutdown_res in shutdown_channels {
5722                                 self.finish_close_channel(shutdown_res);
5723                         }
5724
5725                         #[cfg(feature = "std")]
5726                         let duration_since_epoch = std::time::SystemTime::now()
5727                                 .duration_since(std::time::SystemTime::UNIX_EPOCH)
5728                                 .expect("SystemTime::now() should come after SystemTime::UNIX_EPOCH");
5729                         #[cfg(not(feature = "std"))]
5730                         let duration_since_epoch = Duration::from_secs(
5731                                 self.highest_seen_timestamp.load(Ordering::Acquire).saturating_sub(7200) as u64
5732                         );
5733
5734                         self.pending_outbound_payments.remove_stale_payments(
5735                                 duration_since_epoch, &self.pending_events
5736                         );
5737
5738                         // Technically we don't need to do this here, but if we have holding cell entries in a
5739                         // channel that need freeing, it's better to do that here and block a background task
5740                         // than block the message queueing pipeline.
5741                         if self.check_free_holding_cells() {
5742                                 should_persist = NotifyOption::DoPersist;
5743                         }
5744
5745                         should_persist
5746                 });
5747         }
5748
5749         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
5750         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
5751         /// along the path (including in our own channel on which we received it).
5752         ///
5753         /// Note that in some cases around unclean shutdown, it is possible the payment may have
5754         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
5755         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
5756         /// may have already been failed automatically by LDK if it was nearing its expiration time.
5757         ///
5758         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
5759         /// [`ChannelManager::claim_funds`]), you should still monitor for
5760         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
5761         /// startup during which time claims that were in-progress at shutdown may be replayed.
5762         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
5763                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
5764         }
5765
5766         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
5767         /// reason for the failure.
5768         ///
5769         /// See [`FailureCode`] for valid failure codes.
5770         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
5771                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5772
5773                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
5774                 if let Some(payment) = removed_source {
5775                         for htlc in payment.htlcs {
5776                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
5777                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5778                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
5779                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5780                         }
5781                 }
5782         }
5783
5784         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
5785         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
5786                 match failure_code {
5787                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
5788                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
5789                         FailureCode::IncorrectOrUnknownPaymentDetails => {
5790                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5791                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height.to_be_bytes());
5792                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
5793                         },
5794                         FailureCode::InvalidOnionPayload(data) => {
5795                                 let fail_data = match data {
5796                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
5797                                         None => Vec::new(),
5798                                 };
5799                                 HTLCFailReason::reason(failure_code.into(), fail_data)
5800                         }
5801                 }
5802         }
5803
5804         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
5805         /// that we want to return and a channel.
5806         ///
5807         /// This is for failures on the channel on which the HTLC was *received*, not failures
5808         /// forwarding
5809         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
5810                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
5811                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
5812                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
5813                 // an inbound SCID alias before the real SCID.
5814                 let scid_pref = if chan.context.should_announce() {
5815                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
5816                 } else {
5817                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
5818                 };
5819                 if let Some(scid) = scid_pref {
5820                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
5821                 } else {
5822                         (0x4000|10, Vec::new())
5823                 }
5824         }
5825
5826
5827         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
5828         /// that we want to return and a channel.
5829         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
5830                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
5831                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
5832                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
5833                         if desired_err_code == 0x1000 | 20 {
5834                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
5835                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
5836                                 0u16.write(&mut enc).expect("Writes cannot fail");
5837                         }
5838                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
5839                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
5840                         upd.write(&mut enc).expect("Writes cannot fail");
5841                         (desired_err_code, enc.0)
5842                 } else {
5843                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
5844                         // which means we really shouldn't have gotten a payment to be forwarded over this
5845                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
5846                         // PERM|no_such_channel should be fine.
5847                         (0x4000|10, Vec::new())
5848                 }
5849         }
5850
5851         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
5852         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
5853         // be surfaced to the user.
5854         fn fail_holding_cell_htlcs(
5855                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
5856                 counterparty_node_id: &PublicKey
5857         ) {
5858                 let (failure_code, onion_failure_data) = {
5859                         let per_peer_state = self.per_peer_state.read().unwrap();
5860                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
5861                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5862                                 let peer_state = &mut *peer_state_lock;
5863                                 match peer_state.channel_by_id.entry(channel_id) {
5864                                         hash_map::Entry::Occupied(chan_phase_entry) => {
5865                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
5866                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
5867                                                 } else {
5868                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
5869                                                         debug_assert!(false);
5870                                                         (0x4000|10, Vec::new())
5871                                                 }
5872                                         },
5873                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
5874                                 }
5875                         } else { (0x4000|10, Vec::new()) }
5876                 };
5877
5878                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
5879                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
5880                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
5881                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
5882                 }
5883         }
5884
5885         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
5886                 let push_forward_event = self.fail_htlc_backwards_internal_without_forward_event(source, payment_hash, onion_error, destination);
5887                 if push_forward_event { self.push_pending_forwards_ev(); }
5888         }
5889
5890         /// Fails an HTLC backwards to the sender of it to us.
5891         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
5892         fn fail_htlc_backwards_internal_without_forward_event(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) -> bool {
5893                 // Ensure that no peer state channel storage lock is held when calling this function.
5894                 // This ensures that future code doesn't introduce a lock-order requirement for
5895                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
5896                 // this function with any `per_peer_state` peer lock acquired would.
5897                 #[cfg(debug_assertions)]
5898                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
5899                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
5900                 }
5901
5902                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
5903                 //identify whether we sent it or not based on the (I presume) very different runtime
5904                 //between the branches here. We should make this async and move it into the forward HTLCs
5905                 //timer handling.
5906
5907                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5908                 // from block_connected which may run during initialization prior to the chain_monitor
5909                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
5910                 let mut push_forward_event;
5911                 match source {
5912                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
5913                                 push_forward_event = self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
5914                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
5915                                         &self.pending_events, &self.logger);
5916                         },
5917                         HTLCSource::PreviousHopData(HTLCPreviousHopData {
5918                                 ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret,
5919                                 ref phantom_shared_secret, outpoint: _, ref blinded_failure, ref channel_id, ..
5920                         }) => {
5921                                 log_trace!(
5922                                         WithContext::from(&self.logger, None, Some(*channel_id), Some(*payment_hash)),
5923                                         "Failing {}HTLC with payment_hash {} backwards from us: {:?}",
5924                                         if blinded_failure.is_some() { "blinded " } else { "" }, &payment_hash, onion_error
5925                                 );
5926                                 let failure = match blinded_failure {
5927                                         Some(BlindedFailure::FromIntroductionNode) => {
5928                                                 let blinded_onion_error = HTLCFailReason::reason(INVALID_ONION_BLINDING, vec![0; 32]);
5929                                                 let err_packet = blinded_onion_error.get_encrypted_failure_packet(
5930                                                         incoming_packet_shared_secret, phantom_shared_secret
5931                                                 );
5932                                                 HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }
5933                                         },
5934                                         Some(BlindedFailure::FromBlindedNode) => {
5935                                                 HTLCForwardInfo::FailMalformedHTLC {
5936                                                         htlc_id: *htlc_id,
5937                                                         failure_code: INVALID_ONION_BLINDING,
5938                                                         sha256_of_onion: [0; 32]
5939                                                 }
5940                                         },
5941                                         None => {
5942                                                 let err_packet = onion_error.get_encrypted_failure_packet(
5943                                                         incoming_packet_shared_secret, phantom_shared_secret
5944                                                 );
5945                                                 HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }
5946                                         }
5947                                 };
5948
5949                                 push_forward_event = self.decode_update_add_htlcs.lock().unwrap().is_empty();
5950                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5951                                 push_forward_event &= forward_htlcs.is_empty();
5952                                 match forward_htlcs.entry(*short_channel_id) {
5953                                         hash_map::Entry::Occupied(mut entry) => {
5954                                                 entry.get_mut().push(failure);
5955                                         },
5956                                         hash_map::Entry::Vacant(entry) => {
5957                                                 entry.insert(vec!(failure));
5958                                         }
5959                                 }
5960                                 mem::drop(forward_htlcs);
5961                                 let mut pending_events = self.pending_events.lock().unwrap();
5962                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
5963                                         prev_channel_id: *channel_id,
5964                                         failed_next_destination: destination,
5965                                 }, None));
5966                         },
5967                 }
5968                 push_forward_event
5969         }
5970
5971         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
5972         /// [`MessageSendEvent`]s needed to claim the payment.
5973         ///
5974         /// This method is guaranteed to ensure the payment has been claimed but only if the current
5975         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
5976         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
5977         /// successful. It will generally be available in the next [`process_pending_events`] call.
5978         ///
5979         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
5980         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
5981         /// event matches your expectation. If you fail to do so and call this method, you may provide
5982         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
5983         ///
5984         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
5985         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
5986         /// [`claim_funds_with_known_custom_tlvs`].
5987         ///
5988         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
5989         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
5990         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
5991         /// [`process_pending_events`]: EventsProvider::process_pending_events
5992         /// [`create_inbound_payment`]: Self::create_inbound_payment
5993         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5994         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
5995         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
5996                 self.claim_payment_internal(payment_preimage, false);
5997         }
5998
5999         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
6000         /// even type numbers.
6001         ///
6002         /// # Note
6003         ///
6004         /// You MUST check you've understood all even TLVs before using this to
6005         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
6006         ///
6007         /// [`claim_funds`]: Self::claim_funds
6008         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
6009                 self.claim_payment_internal(payment_preimage, true);
6010         }
6011
6012         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
6013                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).to_byte_array());
6014
6015                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6016
6017                 let mut sources = {
6018                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
6019                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
6020                                 let mut receiver_node_id = self.our_network_pubkey;
6021                                 for htlc in payment.htlcs.iter() {
6022                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
6023                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
6024                                                         .expect("Failed to get node_id for phantom node recipient");
6025                                                 receiver_node_id = phantom_pubkey;
6026                                                 break;
6027                                         }
6028                                 }
6029
6030                                 let claiming_payment = claimable_payments.pending_claiming_payments
6031                                         .entry(payment_hash)
6032                                         .and_modify(|_| {
6033                                                 debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
6034                                                 log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
6035                                                         &payment_hash);
6036                                         })
6037                                         .or_insert_with(|| {
6038                                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
6039                                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
6040                                                 ClaimingPayment {
6041                                                         amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
6042                                                         payment_purpose: payment.purpose,
6043                                                         receiver_node_id,
6044                                                         htlcs,
6045                                                         sender_intended_value,
6046                                                         onion_fields: payment.onion_fields,
6047                                                 }
6048                                         });
6049
6050                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = claiming_payment.onion_fields {
6051                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
6052                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
6053                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
6054                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
6055                                                 mem::drop(claimable_payments);
6056                                                 for htlc in payment.htlcs {
6057                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
6058                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
6059                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
6060                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
6061                                                 }
6062                                                 return;
6063                                         }
6064                                 }
6065
6066                                 payment.htlcs
6067                         } else { return; }
6068                 };
6069                 debug_assert!(!sources.is_empty());
6070
6071                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
6072                 // and when we got here we need to check that the amount we're about to claim matches the
6073                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
6074                 // the MPP parts all have the same `total_msat`.
6075                 let mut claimable_amt_msat = 0;
6076                 let mut prev_total_msat = None;
6077                 let mut expected_amt_msat = None;
6078                 let mut valid_mpp = true;
6079                 let mut errs = Vec::new();
6080                 let per_peer_state = self.per_peer_state.read().unwrap();
6081                 for htlc in sources.iter() {
6082                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
6083                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
6084                                 debug_assert!(false);
6085                                 valid_mpp = false;
6086                                 break;
6087                         }
6088                         prev_total_msat = Some(htlc.total_msat);
6089
6090                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
6091                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
6092                                 debug_assert!(false);
6093                                 valid_mpp = false;
6094                                 break;
6095                         }
6096                         expected_amt_msat = htlc.total_value_received;
6097                         claimable_amt_msat += htlc.value;
6098                 }
6099                 mem::drop(per_peer_state);
6100                 if sources.is_empty() || expected_amt_msat.is_none() {
6101                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
6102                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
6103                         return;
6104                 }
6105                 if claimable_amt_msat != expected_amt_msat.unwrap() {
6106                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
6107                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
6108                                 expected_amt_msat.unwrap(), claimable_amt_msat);
6109                         return;
6110                 }
6111                 if valid_mpp {
6112                         for htlc in sources.drain(..) {
6113                                 let prev_hop_chan_id = htlc.prev_hop.channel_id;
6114                                 if let Err((pk, err)) = self.claim_funds_from_hop(
6115                                         htlc.prev_hop, payment_preimage,
6116                                         |_, definitely_duplicate| {
6117                                                 debug_assert!(!definitely_duplicate, "We shouldn't claim duplicatively from a payment");
6118                                                 Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash })
6119                                         }
6120                                 ) {
6121                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
6122                                                 // We got a temporary failure updating monitor, but will claim the
6123                                                 // HTLC when the monitor updating is restored (or on chain).
6124                                                 let logger = WithContext::from(&self.logger, None, Some(prev_hop_chan_id), Some(payment_hash));
6125                                                 log_error!(logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
6126                                         } else { errs.push((pk, err)); }
6127                                 }
6128                         }
6129                 }
6130                 if !valid_mpp {
6131                         for htlc in sources.drain(..) {
6132                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
6133                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height.to_be_bytes());
6134                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
6135                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
6136                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
6137                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
6138                         }
6139                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
6140                 }
6141
6142                 // Now we can handle any errors which were generated.
6143                 for (counterparty_node_id, err) in errs.drain(..) {
6144                         let res: Result<(), _> = Err(err);
6145                         let _ = handle_error!(self, res, counterparty_node_id);
6146                 }
6147         }
6148
6149         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>, bool) -> Option<MonitorUpdateCompletionAction>>(&self,
6150                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
6151         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
6152                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
6153
6154                 // If we haven't yet run background events assume we're still deserializing and shouldn't
6155                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
6156                 // `BackgroundEvent`s.
6157                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
6158
6159                 // As we may call handle_monitor_update_completion_actions in rather rare cases, check that
6160                 // the required mutexes are not held before we start.
6161                 debug_assert_ne!(self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
6162                 debug_assert_ne!(self.claimable_payments.held_by_thread(), LockHeldState::HeldByThread);
6163
6164                 {
6165                         let per_peer_state = self.per_peer_state.read().unwrap();
6166                         let chan_id = prev_hop.channel_id;
6167                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
6168                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
6169                                 None => None
6170                         };
6171
6172                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
6173                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
6174                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
6175                         ).unwrap_or(None);
6176
6177                         if peer_state_opt.is_some() {
6178                                 let mut peer_state_lock = peer_state_opt.unwrap();
6179                                 let peer_state = &mut *peer_state_lock;
6180                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
6181                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6182                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6183                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
6184                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &&logger);
6185
6186                                                 match fulfill_res {
6187                                                         UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } => {
6188                                                                 if let Some(action) = completion_action(Some(htlc_value_msat), false) {
6189                                                                         log_trace!(logger, "Tracking monitor update completion action for channel {}: {:?}",
6190                                                                                 chan_id, action);
6191                                                                         peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
6192                                                                 }
6193                                                                 if !during_init {
6194                                                                         handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
6195                                                                                 peer_state, per_peer_state, chan);
6196                                                                 } else {
6197                                                                         // If we're running during init we cannot update a monitor directly -
6198                                                                         // they probably haven't actually been loaded yet. Instead, push the
6199                                                                         // monitor update as a background event.
6200                                                                         self.pending_background_events.lock().unwrap().push(
6201                                                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6202                                                                                         counterparty_node_id,
6203                                                                                         funding_txo: prev_hop.outpoint,
6204                                                                                         channel_id: prev_hop.channel_id,
6205                                                                                         update: monitor_update.clone(),
6206                                                                                 });
6207                                                                 }
6208                                                         }
6209                                                         UpdateFulfillCommitFetch::DuplicateClaim {} => {
6210                                                                 let action = if let Some(action) = completion_action(None, true) {
6211                                                                         action
6212                                                                 } else {
6213                                                                         return Ok(());
6214                                                                 };
6215                                                                 mem::drop(peer_state_lock);
6216
6217                                                                 log_trace!(logger, "Completing monitor update completion action for channel {} as claim was redundant: {:?}",
6218                                                                         chan_id, action);
6219                                                                 let (node_id, _funding_outpoint, channel_id, blocker) =
6220                                                                 if let MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
6221                                                                         downstream_counterparty_node_id: node_id,
6222                                                                         downstream_funding_outpoint: funding_outpoint,
6223                                                                         blocking_action: blocker, downstream_channel_id: channel_id,
6224                                                                 } = action {
6225                                                                         (node_id, funding_outpoint, channel_id, blocker)
6226                                                                 } else {
6227                                                                         debug_assert!(false,
6228                                                                                 "Duplicate claims should always free another channel immediately");
6229                                                                         return Ok(());
6230                                                                 };
6231                                                                 if let Some(peer_state_mtx) = per_peer_state.get(&node_id) {
6232                                                                         let mut peer_state = peer_state_mtx.lock().unwrap();
6233                                                                         if let Some(blockers) = peer_state
6234                                                                                 .actions_blocking_raa_monitor_updates
6235                                                                                 .get_mut(&channel_id)
6236                                                                         {
6237                                                                                 let mut found_blocker = false;
6238                                                                                 blockers.retain(|iter| {
6239                                                                                         // Note that we could actually be blocked, in
6240                                                                                         // which case we need to only remove the one
6241                                                                                         // blocker which was added duplicatively.
6242                                                                                         let first_blocker = !found_blocker;
6243                                                                                         if *iter == blocker { found_blocker = true; }
6244                                                                                         *iter != blocker || !first_blocker
6245                                                                                 });
6246                                                                                 debug_assert!(found_blocker);
6247                                                                         }
6248                                                                 } else {
6249                                                                         debug_assert!(false);
6250                                                                 }
6251                                                         }
6252                                                 }
6253                                         }
6254                                         return Ok(());
6255                                 }
6256                         }
6257                 }
6258                 let preimage_update = ChannelMonitorUpdate {
6259                         update_id: CLOSED_CHANNEL_UPDATE_ID,
6260                         counterparty_node_id: None,
6261                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
6262                                 payment_preimage,
6263                         }],
6264                         channel_id: Some(prev_hop.channel_id),
6265                 };
6266
6267                 if !during_init {
6268                         // We update the ChannelMonitor on the backward link, after
6269                         // receiving an `update_fulfill_htlc` from the forward link.
6270                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
6271                         if update_res != ChannelMonitorUpdateStatus::Completed {
6272                                 // TODO: This needs to be handled somehow - if we receive a monitor update
6273                                 // with a preimage we *must* somehow manage to propagate it to the upstream
6274                                 // channel, or we must have an ability to receive the same event and try
6275                                 // again on restart.
6276                                 log_error!(WithContext::from(&self.logger, None, Some(prev_hop.channel_id), None),
6277                                         "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
6278                                         payment_preimage, update_res);
6279                         }
6280                 } else {
6281                         // If we're running during init we cannot update a monitor directly - they probably
6282                         // haven't actually been loaded yet. Instead, push the monitor update as a background
6283                         // event.
6284                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
6285                         // channel is already closed) we need to ultimately handle the monitor update
6286                         // completion action only after we've completed the monitor update. This is the only
6287                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
6288                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
6289                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
6290                         // complete the monitor update completion action from `completion_action`.
6291                         self.pending_background_events.lock().unwrap().push(
6292                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
6293                                         prev_hop.outpoint, prev_hop.channel_id, preimage_update,
6294                                 )));
6295                 }
6296                 // Note that we do process the completion action here. This totally could be a
6297                 // duplicate claim, but we have no way of knowing without interrogating the
6298                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
6299                 // generally always allowed to be duplicative (and it's specifically noted in
6300                 // `PaymentForwarded`).
6301                 self.handle_monitor_update_completion_actions(completion_action(None, false));
6302                 Ok(())
6303         }
6304
6305         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
6306                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
6307         }
6308
6309         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage,
6310                 forwarded_htlc_value_msat: Option<u64>, skimmed_fee_msat: Option<u64>, from_onchain: bool,
6311                 startup_replay: bool, next_channel_counterparty_node_id: Option<PublicKey>,
6312                 next_channel_outpoint: OutPoint, next_channel_id: ChannelId, next_user_channel_id: Option<u128>,
6313         ) {
6314                 match source {
6315                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
6316                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
6317                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
6318                                 if let Some(pubkey) = next_channel_counterparty_node_id {
6319                                         debug_assert_eq!(pubkey, path.hops[0].pubkey);
6320                                 }
6321                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6322                                         channel_funding_outpoint: next_channel_outpoint, channel_id: next_channel_id,
6323                                         counterparty_node_id: path.hops[0].pubkey,
6324                                 };
6325                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
6326                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
6327                                         &self.logger);
6328                         },
6329                         HTLCSource::PreviousHopData(hop_data) => {
6330                                 let prev_channel_id = hop_data.channel_id;
6331                                 let prev_user_channel_id = hop_data.user_channel_id;
6332                                 let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
6333                                 #[cfg(debug_assertions)]
6334                                 let claiming_chan_funding_outpoint = hop_data.outpoint;
6335                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
6336                                         |htlc_claim_value_msat, definitely_duplicate| {
6337                                                 let chan_to_release =
6338                                                         if let Some(node_id) = next_channel_counterparty_node_id {
6339                                                                 Some((node_id, next_channel_outpoint, next_channel_id, completed_blocker))
6340                                                         } else {
6341                                                                 // We can only get `None` here if we are processing a
6342                                                                 // `ChannelMonitor`-originated event, in which case we
6343                                                                 // don't care about ensuring we wake the downstream
6344                                                                 // channel's monitor updating - the channel is already
6345                                                                 // closed.
6346                                                                 None
6347                                                         };
6348
6349                                                 if definitely_duplicate && startup_replay {
6350                                                         // On startup we may get redundant claims which are related to
6351                                                         // monitor updates still in flight. In that case, we shouldn't
6352                                                         // immediately free, but instead let that monitor update complete
6353                                                         // in the background.
6354                                                         #[cfg(debug_assertions)] {
6355                                                                 let background_events = self.pending_background_events.lock().unwrap();
6356                                                                 // There should be a `BackgroundEvent` pending...
6357                                                                 assert!(background_events.iter().any(|ev| {
6358                                                                         match ev {
6359                                                                                 // to apply a monitor update that blocked the claiming channel,
6360                                                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6361                                                                                         funding_txo, update, ..
6362                                                                                 } => {
6363                                                                                         if *funding_txo == claiming_chan_funding_outpoint {
6364                                                                                                 assert!(update.updates.iter().any(|upd|
6365                                                                                                         if let ChannelMonitorUpdateStep::PaymentPreimage {
6366                                                                                                                 payment_preimage: update_preimage
6367                                                                                                         } = upd {
6368                                                                                                                 payment_preimage == *update_preimage
6369                                                                                                         } else { false }
6370                                                                                                 ), "{:?}", update);
6371                                                                                                 true
6372                                                                                         } else { false }
6373                                                                                 },
6374                                                                                 // or the channel we'd unblock is already closed,
6375                                                                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup(
6376                                                                                         (funding_txo, _channel_id, monitor_update)
6377                                                                                 ) => {
6378                                                                                         if *funding_txo == next_channel_outpoint {
6379                                                                                                 assert_eq!(monitor_update.updates.len(), 1);
6380                                                                                                 assert!(matches!(
6381                                                                                                         monitor_update.updates[0],
6382                                                                                                         ChannelMonitorUpdateStep::ChannelForceClosed { .. }
6383                                                                                                 ));
6384                                                                                                 true
6385                                                                                         } else { false }
6386                                                                                 },
6387                                                                                 // or the monitor update has completed and will unblock
6388                                                                                 // immediately once we get going.
6389                                                                                 BackgroundEvent::MonitorUpdatesComplete {
6390                                                                                         channel_id, ..
6391                                                                                 } =>
6392                                                                                         *channel_id == prev_channel_id,
6393                                                                         }
6394                                                                 }), "{:?}", *background_events);
6395                                                         }
6396                                                         None
6397                                                 } else if definitely_duplicate {
6398                                                         if let Some(other_chan) = chan_to_release {
6399                                                                 Some(MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
6400                                                                         downstream_counterparty_node_id: other_chan.0,
6401                                                                         downstream_funding_outpoint: other_chan.1,
6402                                                                         downstream_channel_id: other_chan.2,
6403                                                                         blocking_action: other_chan.3,
6404                                                                 })
6405                                                         } else { None }
6406                                                 } else {
6407                                                         let total_fee_earned_msat = if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
6408                                                                 if let Some(claimed_htlc_value) = htlc_claim_value_msat {
6409                                                                         Some(claimed_htlc_value - forwarded_htlc_value)
6410                                                                 } else { None }
6411                                                         } else { None };
6412                                                         debug_assert!(skimmed_fee_msat <= total_fee_earned_msat,
6413                                                                 "skimmed_fee_msat must always be included in total_fee_earned_msat");
6414                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
6415                                                                 event: events::Event::PaymentForwarded {
6416                                                                         prev_channel_id: Some(prev_channel_id),
6417                                                                         next_channel_id: Some(next_channel_id),
6418                                                                         prev_user_channel_id,
6419                                                                         next_user_channel_id,
6420                                                                         total_fee_earned_msat,
6421                                                                         skimmed_fee_msat,
6422                                                                         claim_from_onchain_tx: from_onchain,
6423                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
6424                                                                 },
6425                                                                 downstream_counterparty_and_funding_outpoint: chan_to_release,
6426                                                         })
6427                                                 }
6428                                         });
6429                                 if let Err((pk, err)) = res {
6430                                         let result: Result<(), _> = Err(err);
6431                                         let _ = handle_error!(self, result, pk);
6432                                 }
6433                         },
6434                 }
6435         }
6436
6437         /// Gets the node_id held by this ChannelManager
6438         pub fn get_our_node_id(&self) -> PublicKey {
6439                 self.our_network_pubkey.clone()
6440         }
6441
6442         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
6443                 debug_assert_ne!(self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
6444                 debug_assert_ne!(self.claimable_payments.held_by_thread(), LockHeldState::HeldByThread);
6445                 debug_assert_ne!(self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
6446
6447                 for action in actions.into_iter() {
6448                         match action {
6449                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
6450                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
6451                                         if let Some(ClaimingPayment {
6452                                                 amount_msat,
6453                                                 payment_purpose: purpose,
6454                                                 receiver_node_id,
6455                                                 htlcs,
6456                                                 sender_intended_value: sender_intended_total_msat,
6457                                                 onion_fields,
6458                                         }) = payment {
6459                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
6460                                                         payment_hash,
6461                                                         purpose,
6462                                                         amount_msat,
6463                                                         receiver_node_id: Some(receiver_node_id),
6464                                                         htlcs,
6465                                                         sender_intended_total_msat,
6466                                                         onion_fields,
6467                                                 }, None));
6468                                         }
6469                                 },
6470                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
6471                                         event, downstream_counterparty_and_funding_outpoint
6472                                 } => {
6473                                         self.pending_events.lock().unwrap().push_back((event, None));
6474                                         if let Some((node_id, funding_outpoint, channel_id, blocker)) = downstream_counterparty_and_funding_outpoint {
6475                                                 self.handle_monitor_update_release(node_id, funding_outpoint, channel_id, Some(blocker));
6476                                         }
6477                                 },
6478                                 MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
6479                                         downstream_counterparty_node_id, downstream_funding_outpoint, downstream_channel_id, blocking_action,
6480                                 } => {
6481                                         self.handle_monitor_update_release(
6482                                                 downstream_counterparty_node_id,
6483                                                 downstream_funding_outpoint,
6484                                                 downstream_channel_id,
6485                                                 Some(blocking_action),
6486                                         );
6487                                 },
6488                         }
6489                 }
6490         }
6491
6492         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
6493         /// update completion.
6494         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
6495                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
6496                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
6497                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, pending_update_adds: Vec<msgs::UpdateAddHTLC>,
6498                 funding_broadcastable: Option<Transaction>,
6499                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
6500         -> (Option<(u64, OutPoint, ChannelId, u128, Vec<(PendingHTLCInfo, u64)>)>, Option<(u64, Vec<msgs::UpdateAddHTLC>)>) {
6501                 let logger = WithChannelContext::from(&self.logger, &channel.context, None);
6502                 log_trace!(logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {} pending update_add_htlcs, {}broadcasting funding, {} channel ready, {} announcement",
6503                         &channel.context.channel_id(),
6504                         if raa.is_some() { "an" } else { "no" },
6505                         if commitment_update.is_some() { "a" } else { "no" },
6506                         pending_forwards.len(), pending_update_adds.len(),
6507                         if funding_broadcastable.is_some() { "" } else { "not " },
6508                         if channel_ready.is_some() { "sending" } else { "without" },
6509                         if announcement_sigs.is_some() { "sending" } else { "without" });
6510
6511                 let counterparty_node_id = channel.context.get_counterparty_node_id();
6512                 let short_channel_id = channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias());
6513
6514                 let mut htlc_forwards = None;
6515                 if !pending_forwards.is_empty() {
6516                         htlc_forwards = Some((short_channel_id, channel.context.get_funding_txo().unwrap(),
6517                                 channel.context.channel_id(), channel.context.get_user_id(), pending_forwards));
6518                 }
6519                 let mut decode_update_add_htlcs = None;
6520                 if !pending_update_adds.is_empty() {
6521                         decode_update_add_htlcs = Some((short_channel_id, pending_update_adds));
6522                 }
6523
6524                 if let Some(msg) = channel_ready {
6525                         send_channel_ready!(self, pending_msg_events, channel, msg);
6526                 }
6527                 if let Some(msg) = announcement_sigs {
6528                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
6529                                 node_id: counterparty_node_id,
6530                                 msg,
6531                         });
6532                 }
6533
6534                 macro_rules! handle_cs { () => {
6535                         if let Some(update) = commitment_update {
6536                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
6537                                         node_id: counterparty_node_id,
6538                                         updates: update,
6539                                 });
6540                         }
6541                 } }
6542                 macro_rules! handle_raa { () => {
6543                         if let Some(revoke_and_ack) = raa {
6544                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
6545                                         node_id: counterparty_node_id,
6546                                         msg: revoke_and_ack,
6547                                 });
6548                         }
6549                 } }
6550                 match order {
6551                         RAACommitmentOrder::CommitmentFirst => {
6552                                 handle_cs!();
6553                                 handle_raa!();
6554                         },
6555                         RAACommitmentOrder::RevokeAndACKFirst => {
6556                                 handle_raa!();
6557                                 handle_cs!();
6558                         },
6559                 }
6560
6561                 if let Some(tx) = funding_broadcastable {
6562                         log_info!(logger, "Broadcasting funding transaction with txid {}", tx.txid());
6563                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
6564                 }
6565
6566                 {
6567                         let mut pending_events = self.pending_events.lock().unwrap();
6568                         emit_channel_pending_event!(pending_events, channel);
6569                         emit_channel_ready_event!(pending_events, channel);
6570                 }
6571
6572                 (htlc_forwards, decode_update_add_htlcs)
6573         }
6574
6575         fn channel_monitor_updated(&self, funding_txo: &OutPoint, channel_id: &ChannelId, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
6576                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6577
6578                 let counterparty_node_id = match counterparty_node_id {
6579                         Some(cp_id) => cp_id.clone(),
6580                         None => {
6581                                 // TODO: Once we can rely on the counterparty_node_id from the
6582                                 // monitor event, this and the outpoint_to_peer map should be removed.
6583                                 let outpoint_to_peer = self.outpoint_to_peer.lock().unwrap();
6584                                 match outpoint_to_peer.get(funding_txo) {
6585                                         Some(cp_id) => cp_id.clone(),
6586                                         None => return,
6587                                 }
6588                         }
6589                 };
6590                 let per_peer_state = self.per_peer_state.read().unwrap();
6591                 let mut peer_state_lock;
6592                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
6593                 if peer_state_mutex_opt.is_none() { return }
6594                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6595                 let peer_state = &mut *peer_state_lock;
6596                 let channel =
6597                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(channel_id) {
6598                                 chan
6599                         } else {
6600                                 let update_actions = peer_state.monitor_update_blocked_actions
6601                                         .remove(&channel_id).unwrap_or(Vec::new());
6602                                 mem::drop(peer_state_lock);
6603                                 mem::drop(per_peer_state);
6604                                 self.handle_monitor_update_completion_actions(update_actions);
6605                                 return;
6606                         };
6607                 let remaining_in_flight =
6608                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
6609                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
6610                                 pending.len()
6611                         } else { 0 };
6612                 let logger = WithChannelContext::from(&self.logger, &channel.context, None);
6613                 log_trace!(logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
6614                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
6615                         remaining_in_flight);
6616                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
6617                         return;
6618                 }
6619                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
6620         }
6621
6622         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
6623         ///
6624         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
6625         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
6626         /// the channel.
6627         ///
6628         /// The `user_channel_id` parameter will be provided back in
6629         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
6630         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
6631         ///
6632         /// Note that this method will return an error and reject the channel, if it requires support
6633         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
6634         /// used to accept such channels.
6635         ///
6636         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
6637         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
6638         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
6639                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
6640         }
6641
6642         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
6643         /// it as confirmed immediately.
6644         ///
6645         /// The `user_channel_id` parameter will be provided back in
6646         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
6647         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
6648         ///
6649         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
6650         /// and (if the counterparty agrees), enables forwarding of payments immediately.
6651         ///
6652         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
6653         /// transaction and blindly assumes that it will eventually confirm.
6654         ///
6655         /// If it does not confirm before we decide to close the channel, or if the funding transaction
6656         /// does not pay to the correct script the correct amount, *you will lose funds*.
6657         ///
6658         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
6659         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
6660         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
6661                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
6662         }
6663
6664         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
6665
6666                 let logger = WithContext::from(&self.logger, Some(*counterparty_node_id), Some(*temporary_channel_id), None);
6667                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6668
6669                 let peers_without_funded_channels =
6670                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
6671                 let per_peer_state = self.per_peer_state.read().unwrap();
6672                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6673                 .ok_or_else(|| {
6674                         let err_str = format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id);
6675                         log_error!(logger, "{}", err_str);
6676
6677                         APIError::ChannelUnavailable { err: err_str }
6678                 })?;
6679                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6680                 let peer_state = &mut *peer_state_lock;
6681                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
6682
6683                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
6684                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
6685                 // that we can delay allocating the SCID until after we're sure that the checks below will
6686                 // succeed.
6687                 let res = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
6688                         Some(unaccepted_channel) => {
6689                                 let best_block_height = self.best_block.read().unwrap().height;
6690                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
6691                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
6692                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
6693                                         &self.logger, accept_0conf).map_err(|err| MsgHandleErrInternal::from_chan_no_close(err, *temporary_channel_id))
6694                         },
6695                         _ => {
6696                                 let err_str = "No such channel awaiting to be accepted.".to_owned();
6697                                 log_error!(logger, "{}", err_str);
6698
6699                                 return Err(APIError::APIMisuseError { err: err_str });
6700                         }
6701                 };
6702
6703                 match res {
6704                         Err(err) => {
6705                                 mem::drop(peer_state_lock);
6706                                 mem::drop(per_peer_state);
6707                                 match handle_error!(self, Result::<(), MsgHandleErrInternal>::Err(err), *counterparty_node_id) {
6708                                         Ok(_) => unreachable!("`handle_error` only returns Err as we've passed in an Err"),
6709                                         Err(e) => {
6710                                                 return Err(APIError::ChannelUnavailable { err: e.err });
6711                                         },
6712                                 }
6713                         }
6714                         Ok(mut channel) => {
6715                                 if accept_0conf {
6716                                         // This should have been correctly configured by the call to InboundV1Channel::new.
6717                                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
6718                                 } else if channel.context.get_channel_type().requires_zero_conf() {
6719                                         let send_msg_err_event = events::MessageSendEvent::HandleError {
6720                                                 node_id: channel.context.get_counterparty_node_id(),
6721                                                 action: msgs::ErrorAction::SendErrorMessage{
6722                                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
6723                                                 }
6724                                         };
6725                                         peer_state.pending_msg_events.push(send_msg_err_event);
6726                                         let err_str = "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned();
6727                                         log_error!(logger, "{}", err_str);
6728
6729                                         return Err(APIError::APIMisuseError { err: err_str });
6730                                 } else {
6731                                         // If this peer already has some channels, a new channel won't increase our number of peers
6732                                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
6733                                         // channels per-peer we can accept channels from a peer with existing ones.
6734                                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
6735                                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
6736                                                         node_id: channel.context.get_counterparty_node_id(),
6737                                                         action: msgs::ErrorAction::SendErrorMessage{
6738                                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
6739                                                         }
6740                                                 };
6741                                                 peer_state.pending_msg_events.push(send_msg_err_event);
6742                                                 let err_str = "Too many peers with unfunded channels, refusing to accept new ones".to_owned();
6743                                                 log_error!(logger, "{}", err_str);
6744
6745                                                 return Err(APIError::APIMisuseError { err: err_str });
6746                                         }
6747                                 }
6748
6749                                 // Now that we know we have a channel, assign an outbound SCID alias.
6750                                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
6751                                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
6752
6753                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
6754                                         node_id: channel.context.get_counterparty_node_id(),
6755                                         msg: channel.accept_inbound_channel(),
6756                                 });
6757
6758                                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
6759
6760                                 Ok(())
6761                         },
6762                 }
6763         }
6764
6765         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
6766         /// or 0-conf channels.
6767         ///
6768         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
6769         /// non-0-conf channels we have with the peer.
6770         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
6771         where Filter: Fn(&PeerState<SP>) -> bool {
6772                 let mut peers_without_funded_channels = 0;
6773                 let best_block_height = self.best_block.read().unwrap().height;
6774                 {
6775                         let peer_state_lock = self.per_peer_state.read().unwrap();
6776                         for (_, peer_mtx) in peer_state_lock.iter() {
6777                                 let peer = peer_mtx.lock().unwrap();
6778                                 if !maybe_count_peer(&*peer) { continue; }
6779                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
6780                                 if num_unfunded_channels == peer.total_channel_count() {
6781                                         peers_without_funded_channels += 1;
6782                                 }
6783                         }
6784                 }
6785                 return peers_without_funded_channels;
6786         }
6787
6788         fn unfunded_channel_count(
6789                 peer: &PeerState<SP>, best_block_height: u32
6790         ) -> usize {
6791                 let mut num_unfunded_channels = 0;
6792                 for (_, phase) in peer.channel_by_id.iter() {
6793                         match phase {
6794                                 ChannelPhase::Funded(chan) => {
6795                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
6796                                         // which have not yet had any confirmations on-chain.
6797                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
6798                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
6799                                         {
6800                                                 num_unfunded_channels += 1;
6801                                         }
6802                                 },
6803                                 ChannelPhase::UnfundedInboundV1(chan) => {
6804                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
6805                                                 num_unfunded_channels += 1;
6806                                         }
6807                                 },
6808                                 // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
6809                                 #[cfg(any(dual_funding, splicing))]
6810                                 ChannelPhase::UnfundedInboundV2(chan) => {
6811                                         // Only inbound V2 channels that are not 0conf and that we do not contribute to will be
6812                                         // included in the unfunded count.
6813                                         if chan.context.minimum_depth().unwrap_or(1) != 0 &&
6814                                                 chan.dual_funding_context.our_funding_satoshis == 0 {
6815                                                 num_unfunded_channels += 1;
6816                                         }
6817                                 },
6818                                 ChannelPhase::UnfundedOutboundV1(_) => {
6819                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
6820                                         continue;
6821                                 },
6822                                 // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
6823                                 #[cfg(any(dual_funding, splicing))]
6824                                 ChannelPhase::UnfundedOutboundV2(_) => {
6825                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
6826                                         continue;
6827                                 }
6828                         }
6829                 }
6830                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
6831         }
6832
6833         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
6834                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
6835                 // likely to be lost on restart!
6836                 if msg.common_fields.chain_hash != self.chain_hash {
6837                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(),
6838                                  msg.common_fields.temporary_channel_id.clone()));
6839                 }
6840
6841                 if !self.default_configuration.accept_inbound_channels {
6842                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(),
6843                                  msg.common_fields.temporary_channel_id.clone()));
6844                 }
6845
6846                 // Get the number of peers with channels, but without funded ones. We don't care too much
6847                 // about peers that never open a channel, so we filter by peers that have at least one
6848                 // channel, and then limit the number of those with unfunded channels.
6849                 let channeled_peers_without_funding =
6850                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
6851
6852                 let per_peer_state = self.per_peer_state.read().unwrap();
6853                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6854                     .ok_or_else(|| {
6855                                 debug_assert!(false);
6856                                 MsgHandleErrInternal::send_err_msg_no_close(
6857                                         format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id),
6858                                         msg.common_fields.temporary_channel_id.clone())
6859                         })?;
6860                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6861                 let peer_state = &mut *peer_state_lock;
6862
6863                 // If this peer already has some channels, a new channel won't increase our number of peers
6864                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
6865                 // channels per-peer we can accept channels from a peer with existing ones.
6866                 if peer_state.total_channel_count() == 0 &&
6867                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
6868                         !self.default_configuration.manually_accept_inbound_channels
6869                 {
6870                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
6871                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
6872                                 msg.common_fields.temporary_channel_id.clone()));
6873                 }
6874
6875                 let best_block_height = self.best_block.read().unwrap().height;
6876                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
6877                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
6878                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
6879                                 msg.common_fields.temporary_channel_id.clone()));
6880                 }
6881
6882                 let channel_id = msg.common_fields.temporary_channel_id;
6883                 let channel_exists = peer_state.has_channel(&channel_id);
6884                 if channel_exists {
6885                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
6886                                 "temporary_channel_id collision for the same peer!".to_owned(),
6887                                 msg.common_fields.temporary_channel_id.clone()));
6888                 }
6889
6890                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
6891                 if self.default_configuration.manually_accept_inbound_channels {
6892                         let channel_type = channel::channel_type_from_open_channel(
6893                                         &msg.common_fields, &peer_state.latest_features, &self.channel_type_features()
6894                                 ).map_err(|e|
6895                                         MsgHandleErrInternal::from_chan_no_close(e, msg.common_fields.temporary_channel_id)
6896                                 )?;
6897                         let mut pending_events = self.pending_events.lock().unwrap();
6898                         pending_events.push_back((events::Event::OpenChannelRequest {
6899                                 temporary_channel_id: msg.common_fields.temporary_channel_id.clone(),
6900                                 counterparty_node_id: counterparty_node_id.clone(),
6901                                 funding_satoshis: msg.common_fields.funding_satoshis,
6902                                 push_msat: msg.push_msat,
6903                                 channel_type,
6904                         }, None));
6905                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
6906                                 open_channel_msg: msg.clone(),
6907                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
6908                         });
6909                         return Ok(());
6910                 }
6911
6912                 // Otherwise create the channel right now.
6913                 let mut random_bytes = [0u8; 16];
6914                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
6915                 let user_channel_id = u128::from_be_bytes(random_bytes);
6916                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
6917                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
6918                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
6919                 {
6920                         Err(e) => {
6921                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.common_fields.temporary_channel_id));
6922                         },
6923                         Ok(res) => res
6924                 };
6925
6926                 let channel_type = channel.context.get_channel_type();
6927                 if channel_type.requires_zero_conf() {
6928                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
6929                                 "No zero confirmation channels accepted".to_owned(),
6930                                 msg.common_fields.temporary_channel_id.clone()));
6931                 }
6932                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
6933                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
6934                                 "No channels with anchor outputs accepted".to_owned(),
6935                                 msg.common_fields.temporary_channel_id.clone()));
6936                 }
6937
6938                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
6939                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
6940
6941                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
6942                         node_id: counterparty_node_id.clone(),
6943                         msg: channel.accept_inbound_channel(),
6944                 });
6945                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
6946                 Ok(())
6947         }
6948
6949         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
6950                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
6951                 // likely to be lost on restart!
6952                 let (value, output_script, user_id) = {
6953                         let per_peer_state = self.per_peer_state.read().unwrap();
6954                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6955                                 .ok_or_else(|| {
6956                                         debug_assert!(false);
6957                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.common_fields.temporary_channel_id)
6958                                 })?;
6959                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6960                         let peer_state = &mut *peer_state_lock;
6961                         match peer_state.channel_by_id.entry(msg.common_fields.temporary_channel_id) {
6962                                 hash_map::Entry::Occupied(mut phase) => {
6963                                         match phase.get_mut() {
6964                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
6965                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
6966                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_p2wsh(), chan.context.get_user_id())
6967                                                 },
6968                                                 _ => {
6969                                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got an unexpected accept_channel message from peer with counterparty_node_id {}", counterparty_node_id), msg.common_fields.temporary_channel_id));
6970                                                 }
6971                                         }
6972                                 },
6973                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.common_fields.temporary_channel_id))
6974                         }
6975                 };
6976                 let mut pending_events = self.pending_events.lock().unwrap();
6977                 pending_events.push_back((events::Event::FundingGenerationReady {
6978                         temporary_channel_id: msg.common_fields.temporary_channel_id,
6979                         counterparty_node_id: *counterparty_node_id,
6980                         channel_value_satoshis: value,
6981                         output_script,
6982                         user_channel_id: user_id,
6983                 }, None));
6984                 Ok(())
6985         }
6986
6987         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
6988                 let best_block = *self.best_block.read().unwrap();
6989
6990                 let per_peer_state = self.per_peer_state.read().unwrap();
6991                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6992                         .ok_or_else(|| {
6993                                 debug_assert!(false);
6994                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.temporary_channel_id)
6995                         })?;
6996
6997                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6998                 let peer_state = &mut *peer_state_lock;
6999                 let (mut chan, funding_msg_opt, monitor) =
7000                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
7001                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
7002                                         let logger = WithChannelContext::from(&self.logger, &inbound_chan.context, None);
7003                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &&logger) {
7004                                                 Ok(res) => res,
7005                                                 Err((inbound_chan, err)) => {
7006                                                         // We've already removed this inbound channel from the map in `PeerState`
7007                                                         // above so at this point we just need to clean up any lingering entries
7008                                                         // concerning this channel as it is safe to do so.
7009                                                         debug_assert!(matches!(err, ChannelError::Close(_)));
7010                                                         // Really we should be returning the channel_id the peer expects based
7011                                                         // on their funding info here, but they're horribly confused anyway, so
7012                                                         // there's not a lot we can do to save them.
7013                                                         return Err(convert_chan_phase_err!(self, err, &mut ChannelPhase::UnfundedInboundV1(inbound_chan), &msg.temporary_channel_id).1);
7014                                                 },
7015                                         }
7016                                 },
7017                                 Some(mut phase) => {
7018                                         let err_msg = format!("Got an unexpected funding_created message from peer with counterparty_node_id {}", counterparty_node_id);
7019                                         let err = ChannelError::Close(err_msg);
7020                                         return Err(convert_chan_phase_err!(self, err, &mut phase, &msg.temporary_channel_id).1);
7021                                 },
7022                                 None => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.temporary_channel_id))
7023                         };
7024
7025                 let funded_channel_id = chan.context.channel_id();
7026
7027                 macro_rules! fail_chan { ($err: expr) => { {
7028                         // Note that at this point we've filled in the funding outpoint on our
7029                         // channel, but its actually in conflict with another channel. Thus, if
7030                         // we call `convert_chan_phase_err` immediately (thus calling
7031                         // `update_maps_on_chan_removal`), we'll remove the existing channel
7032                         // from `outpoint_to_peer`. Thus, we must first unset the funding outpoint
7033                         // on the channel.
7034                         let err = ChannelError::Close($err.to_owned());
7035                         chan.unset_funding_info(msg.temporary_channel_id);
7036                         return Err(convert_chan_phase_err!(self, err, chan, &funded_channel_id, UNFUNDED_CHANNEL).1);
7037                 } } }
7038
7039                 match peer_state.channel_by_id.entry(funded_channel_id) {
7040                         hash_map::Entry::Occupied(_) => {
7041                                 fail_chan!("Already had channel with the new channel_id");
7042                         },
7043                         hash_map::Entry::Vacant(e) => {
7044                                 let mut outpoint_to_peer_lock = self.outpoint_to_peer.lock().unwrap();
7045                                 match outpoint_to_peer_lock.entry(monitor.get_funding_txo().0) {
7046                                         hash_map::Entry::Occupied(_) => {
7047                                                 fail_chan!("The funding_created message had the same funding_txid as an existing channel - funding is not possible");
7048                                         },
7049                                         hash_map::Entry::Vacant(i_e) => {
7050                                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
7051                                                 if let Ok(persist_state) = monitor_res {
7052                                                         i_e.insert(chan.context.get_counterparty_node_id());
7053                                                         mem::drop(outpoint_to_peer_lock);
7054
7055                                                         // There's no problem signing a counterparty's funding transaction if our monitor
7056                                                         // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
7057                                                         // accepted payment from yet. We do, however, need to wait to send our channel_ready
7058                                                         // until we have persisted our monitor.
7059                                                         if let Some(msg) = funding_msg_opt {
7060                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
7061                                                                         node_id: counterparty_node_id.clone(),
7062                                                                         msg,
7063                                                                 });
7064                                                         }
7065
7066                                                         if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
7067                                                                 handle_new_monitor_update!(self, persist_state, peer_state_lock, peer_state,
7068                                                                         per_peer_state, chan, INITIAL_MONITOR);
7069                                                         } else {
7070                                                                 unreachable!("This must be a funded channel as we just inserted it.");
7071                                                         }
7072                                                         Ok(())
7073                                                 } else {
7074                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7075                                                         log_error!(logger, "Persisting initial ChannelMonitor failed, implying the funding outpoint was duplicated");
7076                                                         fail_chan!("Duplicate funding outpoint");
7077                                                 }
7078                                         }
7079                                 }
7080                         }
7081                 }
7082         }
7083
7084         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
7085                 let best_block = *self.best_block.read().unwrap();
7086                 let per_peer_state = self.per_peer_state.read().unwrap();
7087                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7088                         .ok_or_else(|| {
7089                                 debug_assert!(false);
7090                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7091                         })?;
7092
7093                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7094                 let peer_state = &mut *peer_state_lock;
7095                 match peer_state.channel_by_id.entry(msg.channel_id) {
7096                         hash_map::Entry::Occupied(chan_phase_entry) => {
7097                                 if matches!(chan_phase_entry.get(), ChannelPhase::UnfundedOutboundV1(_)) {
7098                                         let chan = if let ChannelPhase::UnfundedOutboundV1(chan) = chan_phase_entry.remove() { chan } else { unreachable!() };
7099                                         let logger = WithContext::from(
7100                                                 &self.logger,
7101                                                 Some(chan.context.get_counterparty_node_id()),
7102                                                 Some(chan.context.channel_id()),
7103                                                 None
7104                                         );
7105                                         let res =
7106                                                 chan.funding_signed(&msg, best_block, &self.signer_provider, &&logger);
7107                                         match res {
7108                                                 Ok((mut chan, monitor)) => {
7109                                                         if let Ok(persist_status) = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor) {
7110                                                                 // We really should be able to insert here without doing a second
7111                                                                 // lookup, but sadly rust stdlib doesn't currently allow keeping
7112                                                                 // the original Entry around with the value removed.
7113                                                                 let mut chan = peer_state.channel_by_id.entry(msg.channel_id).or_insert(ChannelPhase::Funded(chan));
7114                                                                 if let ChannelPhase::Funded(ref mut chan) = &mut chan {
7115                                                                         handle_new_monitor_update!(self, persist_status, peer_state_lock, peer_state, per_peer_state, chan, INITIAL_MONITOR);
7116                                                                 } else { unreachable!(); }
7117                                                                 Ok(())
7118                                                         } else {
7119                                                                 let e = ChannelError::Close("Channel funding outpoint was a duplicate".to_owned());
7120                                                                 // We weren't able to watch the channel to begin with, so no
7121                                                                 // updates should be made on it. Previously, full_stack_target
7122                                                                 // found an (unreachable) panic when the monitor update contained
7123                                                                 // within `shutdown_finish` was applied.
7124                                                                 chan.unset_funding_info(msg.channel_id);
7125                                                                 return Err(convert_chan_phase_err!(self, e, &mut ChannelPhase::Funded(chan), &msg.channel_id).1);
7126                                                         }
7127                                                 },
7128                                                 Err((chan, e)) => {
7129                                                         debug_assert!(matches!(e, ChannelError::Close(_)),
7130                                                                 "We don't have a channel anymore, so the error better have expected close");
7131                                                         // We've already removed this outbound channel from the map in
7132                                                         // `PeerState` above so at this point we just need to clean up any
7133                                                         // lingering entries concerning this channel as it is safe to do so.
7134                                                         return Err(convert_chan_phase_err!(self, e, &mut ChannelPhase::UnfundedOutboundV1(chan), &msg.channel_id).1);
7135                                                 }
7136                                         }
7137                                 } else {
7138                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
7139                                 }
7140                         },
7141                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
7142                 }
7143         }
7144
7145         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
7146                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
7147                 // closing a channel), so any changes are likely to be lost on restart!
7148                 let per_peer_state = self.per_peer_state.read().unwrap();
7149                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7150                         .ok_or_else(|| {
7151                                 debug_assert!(false);
7152                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7153                         })?;
7154                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7155                 let peer_state = &mut *peer_state_lock;
7156                 match peer_state.channel_by_id.entry(msg.channel_id) {
7157                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7158                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7159                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7160                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
7161                                                 self.chain_hash, &self.default_configuration, &self.best_block.read().unwrap(), &&logger), chan_phase_entry);
7162                                         if let Some(announcement_sigs) = announcement_sigs_opt {
7163                                                 log_trace!(logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
7164                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7165                                                         node_id: counterparty_node_id.clone(),
7166                                                         msg: announcement_sigs,
7167                                                 });
7168                                         } else if chan.context.is_usable() {
7169                                                 // If we're sending an announcement_signatures, we'll send the (public)
7170                                                 // channel_update after sending a channel_announcement when we receive our
7171                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
7172                                                 // channel_update here if the channel is not public, i.e. we're not sending an
7173                                                 // announcement_signatures.
7174                                                 log_trace!(logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
7175                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
7176                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7177                                                                 node_id: counterparty_node_id.clone(),
7178                                                                 msg,
7179                                                         });
7180                                                 }
7181                                         }
7182
7183                                         {
7184                                                 let mut pending_events = self.pending_events.lock().unwrap();
7185                                                 emit_channel_ready_event!(pending_events, chan);
7186                                         }
7187
7188                                         Ok(())
7189                                 } else {
7190                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
7191                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
7192                                 }
7193                         },
7194                         hash_map::Entry::Vacant(_) => {
7195                                 Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7196                         }
7197                 }
7198         }
7199
7200         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
7201                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)> = Vec::new();
7202                 let mut finish_shutdown = None;
7203                 {
7204                         let per_peer_state = self.per_peer_state.read().unwrap();
7205                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7206                                 .ok_or_else(|| {
7207                                         debug_assert!(false);
7208                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7209                                 })?;
7210                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7211                         let peer_state = &mut *peer_state_lock;
7212                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
7213                                 let phase = chan_phase_entry.get_mut();
7214                                 match phase {
7215                                         ChannelPhase::Funded(chan) => {
7216                                                 if !chan.received_shutdown() {
7217                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7218                                                         log_info!(logger, "Received a shutdown message from our counterparty for channel {}{}.",
7219                                                                 msg.channel_id,
7220                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
7221                                                 }
7222
7223                                                 let funding_txo_opt = chan.context.get_funding_txo();
7224                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
7225                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
7226                                                 dropped_htlcs = htlcs;
7227
7228                                                 if let Some(msg) = shutdown {
7229                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
7230                                                         // here as we don't need the monitor update to complete until we send a
7231                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
7232                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
7233                                                                 node_id: *counterparty_node_id,
7234                                                                 msg,
7235                                                         });
7236                                                 }
7237                                                 // Update the monitor with the shutdown script if necessary.
7238                                                 if let Some(monitor_update) = monitor_update_opt {
7239                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
7240                                                                 peer_state_lock, peer_state, per_peer_state, chan);
7241                                                 }
7242                                         },
7243                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
7244                                                 let context = phase.context_mut();
7245                                                 let logger = WithChannelContext::from(&self.logger, context, None);
7246                                                 log_error!(logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
7247                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
7248                                                 finish_shutdown = Some(chan.context_mut().force_shutdown(false, ClosureReason::CounterpartyCoopClosedUnfundedChannel));
7249                                         },
7250                                         // TODO(dual_funding): Combine this match arm with above.
7251                                         #[cfg(any(dual_funding, splicing))]
7252                                         ChannelPhase::UnfundedInboundV2(_) | ChannelPhase::UnfundedOutboundV2(_) => {
7253                                                 let context = phase.context_mut();
7254                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
7255                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
7256                                                 finish_shutdown = Some(chan.context_mut().force_shutdown(false, ClosureReason::CounterpartyCoopClosedUnfundedChannel));
7257                                         },
7258                                 }
7259                         } else {
7260                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7261                         }
7262                 }
7263                 for htlc_source in dropped_htlcs.drain(..) {
7264                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
7265                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
7266                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
7267                 }
7268                 if let Some(shutdown_res) = finish_shutdown {
7269                         self.finish_close_channel(shutdown_res);
7270                 }
7271
7272                 Ok(())
7273         }
7274
7275         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
7276                 let per_peer_state = self.per_peer_state.read().unwrap();
7277                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7278                         .ok_or_else(|| {
7279                                 debug_assert!(false);
7280                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7281                         })?;
7282                 let (tx, chan_option, shutdown_result) = {
7283                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7284                         let peer_state = &mut *peer_state_lock;
7285                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
7286                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
7287                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7288                                                 let (closing_signed, tx, shutdown_result) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
7289                                                 debug_assert_eq!(shutdown_result.is_some(), chan.is_shutdown());
7290                                                 if let Some(msg) = closing_signed {
7291                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
7292                                                                 node_id: counterparty_node_id.clone(),
7293                                                                 msg,
7294                                                         });
7295                                                 }
7296                                                 if tx.is_some() {
7297                                                         // We're done with this channel, we've got a signed closing transaction and
7298                                                         // will send the closing_signed back to the remote peer upon return. This
7299                                                         // also implies there are no pending HTLCs left on the channel, so we can
7300                                                         // fully delete it from tracking (the channel monitor is still around to
7301                                                         // watch for old state broadcasts)!
7302                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)), shutdown_result)
7303                                                 } else { (tx, None, shutdown_result) }
7304                                         } else {
7305                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
7306                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
7307                                         }
7308                                 },
7309                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7310                         }
7311                 };
7312                 if let Some(broadcast_tx) = tx {
7313                         let channel_id = chan_option.as_ref().map(|channel| channel.context().channel_id());
7314                         log_info!(WithContext::from(&self.logger, Some(*counterparty_node_id), channel_id, None), "Broadcasting {}", log_tx!(broadcast_tx));
7315                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
7316                 }
7317                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
7318                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
7319                                 let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
7320                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
7321                                         msg: update
7322                                 });
7323                         }
7324                 }
7325                 mem::drop(per_peer_state);
7326                 if let Some(shutdown_result) = shutdown_result {
7327                         self.finish_close_channel(shutdown_result);
7328                 }
7329                 Ok(())
7330         }
7331
7332         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
7333                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
7334                 //determine the state of the payment based on our response/if we forward anything/the time
7335                 //we take to respond. We should take care to avoid allowing such an attack.
7336                 //
7337                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
7338                 //us repeatedly garbled in different ways, and compare our error messages, which are
7339                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
7340                 //but we should prevent it anyway.
7341
7342                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
7343                 // closing a channel), so any changes are likely to be lost on restart!
7344
7345                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg, counterparty_node_id);
7346                 let per_peer_state = self.per_peer_state.read().unwrap();
7347                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7348                         .ok_or_else(|| {
7349                                 debug_assert!(false);
7350                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7351                         })?;
7352                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7353                 let peer_state = &mut *peer_state_lock;
7354                 match peer_state.channel_by_id.entry(msg.channel_id) {
7355                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7356                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7357                                         let mut pending_forward_info = match decoded_hop_res {
7358                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
7359                                                         self.construct_pending_htlc_status(
7360                                                                 msg, counterparty_node_id, shared_secret, next_hop,
7361                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt,
7362                                                         ),
7363                                                 Err(e) => PendingHTLCStatus::Fail(e)
7364                                         };
7365                                         let logger = WithChannelContext::from(&self.logger, &chan.context, Some(msg.payment_hash));
7366                                         // If the update_add is completely bogus, the call will Err and we will close,
7367                                         // but if we've sent a shutdown and they haven't acknowledged it yet, we just
7368                                         // want to reject the new HTLC and fail it backwards instead of forwarding.
7369                                         if let Err((_, error_code)) = chan.can_accept_incoming_htlc(&msg, &self.fee_estimator, &logger) {
7370                                                 if msg.blinding_point.is_some() {
7371                                                         pending_forward_info = PendingHTLCStatus::Fail(HTLCFailureMsg::Malformed(
7372                                                                 msgs::UpdateFailMalformedHTLC {
7373                                                                         channel_id: msg.channel_id,
7374                                                                         htlc_id: msg.htlc_id,
7375                                                                         sha256_of_onion: [0; 32],
7376                                                                         failure_code: INVALID_ONION_BLINDING,
7377                                                                 }
7378                                                         ))
7379                                                 } else {
7380                                                         match pending_forward_info {
7381                                                                 PendingHTLCStatus::Forward(PendingHTLCInfo {
7382                                                                         ref incoming_shared_secret, ref routing, ..
7383                                                                 }) => {
7384                                                                         let reason = if routing.blinded_failure().is_some() {
7385                                                                                 HTLCFailReason::reason(INVALID_ONION_BLINDING, vec![0; 32])
7386                                                                         } else if (error_code & 0x1000) != 0 {
7387                                                                                 let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
7388                                                                                 HTLCFailReason::reason(real_code, error_data)
7389                                                                         } else {
7390                                                                                 HTLCFailReason::from_failure_code(error_code)
7391                                                                         }.get_encrypted_failure_packet(incoming_shared_secret, &None);
7392                                                                         let msg = msgs::UpdateFailHTLC {
7393                                                                                 channel_id: msg.channel_id,
7394                                                                                 htlc_id: msg.htlc_id,
7395                                                                                 reason
7396                                                                         };
7397                                                                         pending_forward_info = PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg));
7398                                                                 },
7399                                                                 _ => {},
7400                                                         }
7401                                                 }
7402                                         }
7403                                         try_chan_phase_entry!(self, chan.update_add_htlc(&msg, pending_forward_info, &self.fee_estimator), chan_phase_entry);
7404                                 } else {
7405                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7406                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
7407                                 }
7408                         },
7409                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7410                 }
7411                 Ok(())
7412         }
7413
7414         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
7415                 let funding_txo;
7416                 let next_user_channel_id;
7417                 let (htlc_source, forwarded_htlc_value, skimmed_fee_msat) = {
7418                         let per_peer_state = self.per_peer_state.read().unwrap();
7419                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7420                                 .ok_or_else(|| {
7421                                         debug_assert!(false);
7422                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7423                                 })?;
7424                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7425                         let peer_state = &mut *peer_state_lock;
7426                         match peer_state.channel_by_id.entry(msg.channel_id) {
7427                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
7428                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7429                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
7430                                                 if let HTLCSource::PreviousHopData(prev_hop) = &res.0 {
7431                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7432                                                         log_trace!(logger,
7433                                                                 "Holding the next revoke_and_ack from {} until the preimage is durably persisted in the inbound edge's ChannelMonitor",
7434                                                                 msg.channel_id);
7435                                                         peer_state.actions_blocking_raa_monitor_updates.entry(msg.channel_id)
7436                                                                 .or_insert_with(Vec::new)
7437                                                                 .push(RAAMonitorUpdateBlockingAction::from_prev_hop_data(&prev_hop));
7438                                                 }
7439                                                 // Note that we do not need to push an `actions_blocking_raa_monitor_updates`
7440                                                 // entry here, even though we *do* need to block the next RAA monitor update.
7441                                                 // We do this instead in the `claim_funds_internal` by attaching a
7442                                                 // `ReleaseRAAChannelMonitorUpdate` action to the event generated when the
7443                                                 // outbound HTLC is claimed. This is guaranteed to all complete before we
7444                                                 // process the RAA as messages are processed from single peers serially.
7445                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
7446                                                 next_user_channel_id = chan.context.get_user_id();
7447                                                 res
7448                                         } else {
7449                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
7450                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
7451                                         }
7452                                 },
7453                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7454                         }
7455                 };
7456                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(),
7457                         Some(forwarded_htlc_value), skimmed_fee_msat, false, false, Some(*counterparty_node_id),
7458                         funding_txo, msg.channel_id, Some(next_user_channel_id),
7459                 );
7460
7461                 Ok(())
7462         }
7463
7464         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
7465                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
7466                 // closing a channel), so any changes are likely to be lost on restart!
7467                 let per_peer_state = self.per_peer_state.read().unwrap();
7468                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7469                         .ok_or_else(|| {
7470                                 debug_assert!(false);
7471                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7472                         })?;
7473                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7474                 let peer_state = &mut *peer_state_lock;
7475                 match peer_state.channel_by_id.entry(msg.channel_id) {
7476                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7477                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7478                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
7479                                 } else {
7480                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7481                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
7482                                 }
7483                         },
7484                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7485                 }
7486                 Ok(())
7487         }
7488
7489         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
7490                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
7491                 // closing a channel), so any changes are likely to be lost on restart!
7492                 let per_peer_state = self.per_peer_state.read().unwrap();
7493                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7494                         .ok_or_else(|| {
7495                                 debug_assert!(false);
7496                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7497                         })?;
7498                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7499                 let peer_state = &mut *peer_state_lock;
7500                 match peer_state.channel_by_id.entry(msg.channel_id) {
7501                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7502                                 if (msg.failure_code & 0x8000) == 0 {
7503                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
7504                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
7505                                 }
7506                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7507                                         try_chan_phase_entry!(self, chan.update_fail_malformed_htlc(&msg, HTLCFailReason::reason(msg.failure_code, msg.sha256_of_onion.to_vec())), chan_phase_entry);
7508                                 } else {
7509                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7510                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
7511                                 }
7512                                 Ok(())
7513                         },
7514                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7515                 }
7516         }
7517
7518         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
7519                 let per_peer_state = self.per_peer_state.read().unwrap();
7520                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7521                         .ok_or_else(|| {
7522                                 debug_assert!(false);
7523                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7524                         })?;
7525                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7526                 let peer_state = &mut *peer_state_lock;
7527                 match peer_state.channel_by_id.entry(msg.channel_id) {
7528                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7529                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7530                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7531                                         let funding_txo = chan.context.get_funding_txo();
7532                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &&logger), chan_phase_entry);
7533                                         if let Some(monitor_update) = monitor_update_opt {
7534                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
7535                                                         peer_state, per_peer_state, chan);
7536                                         }
7537                                         Ok(())
7538                                 } else {
7539                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7540                                                 "Got a commitment_signed message for an unfunded channel!".into())), chan_phase_entry);
7541                                 }
7542                         },
7543                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7544                 }
7545         }
7546
7547         fn push_decode_update_add_htlcs(&self, mut update_add_htlcs: (u64, Vec<msgs::UpdateAddHTLC>)) {
7548                 let mut push_forward_event = self.forward_htlcs.lock().unwrap().is_empty();
7549                 let mut decode_update_add_htlcs = self.decode_update_add_htlcs.lock().unwrap();
7550                 push_forward_event &= decode_update_add_htlcs.is_empty();
7551                 let scid = update_add_htlcs.0;
7552                 match decode_update_add_htlcs.entry(scid) {
7553                         hash_map::Entry::Occupied(mut e) => { e.get_mut().append(&mut update_add_htlcs.1); },
7554                         hash_map::Entry::Vacant(e) => { e.insert(update_add_htlcs.1); },
7555                 }
7556                 if push_forward_event { self.push_pending_forwards_ev(); }
7557         }
7558
7559         #[inline]
7560         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, ChannelId, u128, Vec<(PendingHTLCInfo, u64)>)]) {
7561                 let push_forward_event = self.forward_htlcs_without_forward_event(per_source_pending_forwards);
7562                 if push_forward_event { self.push_pending_forwards_ev() }
7563         }
7564
7565         #[inline]
7566         fn forward_htlcs_without_forward_event(&self, per_source_pending_forwards: &mut [(u64, OutPoint, ChannelId, u128, Vec<(PendingHTLCInfo, u64)>)]) -> bool {
7567                 let mut push_forward_event = false;
7568                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_channel_id, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
7569                         let mut new_intercept_events = VecDeque::new();
7570                         let mut failed_intercept_forwards = Vec::new();
7571                         if !pending_forwards.is_empty() {
7572                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
7573                                         let scid = match forward_info.routing {
7574                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7575                                                 PendingHTLCRouting::Receive { .. } => 0,
7576                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
7577                                         };
7578                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
7579                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
7580
7581                                         let decode_update_add_htlcs_empty = self.decode_update_add_htlcs.lock().unwrap().is_empty();
7582                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
7583                                         let forward_htlcs_empty = forward_htlcs.is_empty();
7584                                         match forward_htlcs.entry(scid) {
7585                                                 hash_map::Entry::Occupied(mut entry) => {
7586                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
7587                                                                 prev_short_channel_id, prev_funding_outpoint, prev_channel_id, prev_htlc_id, prev_user_channel_id, forward_info }));
7588                                                 },
7589                                                 hash_map::Entry::Vacant(entry) => {
7590                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
7591                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.chain_hash)
7592                                                         {
7593                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).to_byte_array());
7594                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
7595                                                                 match pending_intercepts.entry(intercept_id) {
7596                                                                         hash_map::Entry::Vacant(entry) => {
7597                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
7598                                                                                         requested_next_hop_scid: scid,
7599                                                                                         payment_hash: forward_info.payment_hash,
7600                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
7601                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
7602                                                                                         intercept_id
7603                                                                                 }, None));
7604                                                                                 entry.insert(PendingAddHTLCInfo {
7605                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_channel_id, prev_htlc_id, prev_user_channel_id, forward_info });
7606                                                                         },
7607                                                                         hash_map::Entry::Occupied(_) => {
7608                                                                                 let logger = WithContext::from(&self.logger, None, Some(prev_channel_id), Some(forward_info.payment_hash));
7609                                                                                 log_info!(logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
7610                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7611                                                                                         short_channel_id: prev_short_channel_id,
7612                                                                                         user_channel_id: Some(prev_user_channel_id),
7613                                                                                         outpoint: prev_funding_outpoint,
7614                                                                                         channel_id: prev_channel_id,
7615                                                                                         htlc_id: prev_htlc_id,
7616                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
7617                                                                                         phantom_shared_secret: None,
7618                                                                                         blinded_failure: forward_info.routing.blinded_failure(),
7619                                                                                 });
7620
7621                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
7622                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
7623                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
7624                                                                                 ));
7625                                                                         }
7626                                                                 }
7627                                                         } else {
7628                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
7629                                                                 // payments are being processed.
7630                                                                 push_forward_event |= forward_htlcs_empty && decode_update_add_htlcs_empty;
7631                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
7632                                                                         prev_short_channel_id, prev_funding_outpoint, prev_channel_id, prev_htlc_id, prev_user_channel_id, forward_info })));
7633                                                         }
7634                                                 }
7635                                         }
7636                                 }
7637                         }
7638
7639                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
7640                                 push_forward_event |= self.fail_htlc_backwards_internal_without_forward_event(&htlc_source, &payment_hash, &failure_reason, destination);
7641                         }
7642
7643                         if !new_intercept_events.is_empty() {
7644                                 let mut events = self.pending_events.lock().unwrap();
7645                                 events.append(&mut new_intercept_events);
7646                         }
7647                 }
7648                 push_forward_event
7649         }
7650
7651         fn push_pending_forwards_ev(&self) {
7652                 let mut pending_events = self.pending_events.lock().unwrap();
7653                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
7654                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
7655                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
7656                 ).count();
7657                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
7658                 // events is done in batches and they are not removed until we're done processing each
7659                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
7660                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
7661                 // payments will need an additional forwarding event before being claimed to make them look
7662                 // real by taking more time.
7663                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
7664                         pending_events.push_back((Event::PendingHTLCsForwardable {
7665                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
7666                         }, None));
7667                 }
7668         }
7669
7670         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
7671         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
7672         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
7673         /// the [`ChannelMonitorUpdate`] in question.
7674         fn raa_monitor_updates_held(&self,
7675                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
7676                 channel_funding_outpoint: OutPoint, channel_id: ChannelId, counterparty_node_id: PublicKey
7677         ) -> bool {
7678                 actions_blocking_raa_monitor_updates
7679                         .get(&channel_id).map(|v| !v.is_empty()).unwrap_or(false)
7680                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
7681                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
7682                                 channel_funding_outpoint,
7683                                 channel_id,
7684                                 counterparty_node_id,
7685                         })
7686                 })
7687         }
7688
7689         #[cfg(any(test, feature = "_test_utils"))]
7690         pub(crate) fn test_raa_monitor_updates_held(&self,
7691                 counterparty_node_id: PublicKey, channel_id: ChannelId
7692         ) -> bool {
7693                 let per_peer_state = self.per_peer_state.read().unwrap();
7694                 if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
7695                         let mut peer_state_lck = peer_state_mtx.lock().unwrap();
7696                         let peer_state = &mut *peer_state_lck;
7697
7698                         if let Some(chan) = peer_state.channel_by_id.get(&channel_id) {
7699                                 return self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
7700                                         chan.context().get_funding_txo().unwrap(), channel_id, counterparty_node_id);
7701                         }
7702                 }
7703                 false
7704         }
7705
7706         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
7707                 let htlcs_to_fail = {
7708                         let per_peer_state = self.per_peer_state.read().unwrap();
7709                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
7710                                 .ok_or_else(|| {
7711                                         debug_assert!(false);
7712                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7713                                 }).map(|mtx| mtx.lock().unwrap())?;
7714                         let peer_state = &mut *peer_state_lock;
7715                         match peer_state.channel_by_id.entry(msg.channel_id) {
7716                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
7717                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7718                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7719                                                 let funding_txo_opt = chan.context.get_funding_txo();
7720                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
7721                                                         self.raa_monitor_updates_held(
7722                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo, msg.channel_id,
7723                                                                 *counterparty_node_id)
7724                                                 } else { false };
7725                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
7726                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &&logger, mon_update_blocked), chan_phase_entry);
7727                                                 if let Some(monitor_update) = monitor_update_opt {
7728                                                         let funding_txo = funding_txo_opt
7729                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
7730                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
7731                                                                 peer_state_lock, peer_state, per_peer_state, chan);
7732                                                 }
7733                                                 htlcs_to_fail
7734                                         } else {
7735                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
7736                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
7737                                         }
7738                                 },
7739                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7740                         }
7741                 };
7742                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
7743                 Ok(())
7744         }
7745
7746         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
7747                 let per_peer_state = self.per_peer_state.read().unwrap();
7748                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7749                         .ok_or_else(|| {
7750                                 debug_assert!(false);
7751                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7752                         })?;
7753                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7754                 let peer_state = &mut *peer_state_lock;
7755                 match peer_state.channel_by_id.entry(msg.channel_id) {
7756                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7757                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7758                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7759                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &&logger), chan_phase_entry);
7760                                 } else {
7761                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7762                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
7763                                 }
7764                         },
7765                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7766                 }
7767                 Ok(())
7768         }
7769
7770         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
7771                 let per_peer_state = self.per_peer_state.read().unwrap();
7772                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7773                         .ok_or_else(|| {
7774                                 debug_assert!(false);
7775                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7776                         })?;
7777                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7778                 let peer_state = &mut *peer_state_lock;
7779                 match peer_state.channel_by_id.entry(msg.channel_id) {
7780                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7781                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7782                                         if !chan.context.is_usable() {
7783                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
7784                                         }
7785
7786                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
7787                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
7788                                                         &self.node_signer, self.chain_hash, self.best_block.read().unwrap().height,
7789                                                         msg, &self.default_configuration
7790                                                 ), chan_phase_entry),
7791                                                 // Note that announcement_signatures fails if the channel cannot be announced,
7792                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
7793                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
7794                                         });
7795                                 } else {
7796                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7797                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
7798                                 }
7799                         },
7800                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
7801                 }
7802                 Ok(())
7803         }
7804
7805         /// Returns DoPersist if anything changed, otherwise either SkipPersistNoEvents or an Err.
7806         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
7807                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
7808                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
7809                         None => {
7810                                 // It's not a local channel
7811                                 return Ok(NotifyOption::SkipPersistNoEvents)
7812                         }
7813                 };
7814                 let per_peer_state = self.per_peer_state.read().unwrap();
7815                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
7816                 if peer_state_mutex_opt.is_none() {
7817                         return Ok(NotifyOption::SkipPersistNoEvents)
7818                 }
7819                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7820                 let peer_state = &mut *peer_state_lock;
7821                 match peer_state.channel_by_id.entry(chan_id) {
7822                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7823                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7824                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
7825                                                 if chan.context.should_announce() {
7826                                                         // If the announcement is about a channel of ours which is public, some
7827                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
7828                                                         // a scary-looking error message and return Ok instead.
7829                                                         return Ok(NotifyOption::SkipPersistNoEvents);
7830                                                 }
7831                                                 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));
7832                                         }
7833                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
7834                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
7835                                         if were_node_one == msg_from_node_one {
7836                                                 return Ok(NotifyOption::SkipPersistNoEvents);
7837                                         } else {
7838                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7839                                                 log_debug!(logger, "Received channel_update {:?} for channel {}.", msg, chan_id);
7840                                                 let did_change = try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
7841                                                 // If nothing changed after applying their update, we don't need to bother
7842                                                 // persisting.
7843                                                 if !did_change {
7844                                                         return Ok(NotifyOption::SkipPersistNoEvents);
7845                                                 }
7846                                         }
7847                                 } else {
7848                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7849                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
7850                                 }
7851                         },
7852                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersistNoEvents)
7853                 }
7854                 Ok(NotifyOption::DoPersist)
7855         }
7856
7857         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<NotifyOption, MsgHandleErrInternal> {
7858                 let need_lnd_workaround = {
7859                         let per_peer_state = self.per_peer_state.read().unwrap();
7860
7861                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7862                                 .ok_or_else(|| {
7863                                         debug_assert!(false);
7864                                         MsgHandleErrInternal::send_err_msg_no_close(
7865                                                 format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id),
7866                                                 msg.channel_id
7867                                         )
7868                                 })?;
7869                         let logger = WithContext::from(&self.logger, Some(*counterparty_node_id), Some(msg.channel_id), None);
7870                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7871                         let peer_state = &mut *peer_state_lock;
7872                         match peer_state.channel_by_id.entry(msg.channel_id) {
7873                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
7874                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7875                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
7876                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
7877                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
7878                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
7879                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
7880                                                         msg, &&logger, &self.node_signer, self.chain_hash,
7881                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
7882                                                 let mut channel_update = None;
7883                                                 if let Some(msg) = responses.shutdown_msg {
7884                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
7885                                                                 node_id: counterparty_node_id.clone(),
7886                                                                 msg,
7887                                                         });
7888                                                 } else if chan.context.is_usable() {
7889                                                         // If the channel is in a usable state (ie the channel is not being shut
7890                                                         // down), send a unicast channel_update to our counterparty to make sure
7891                                                         // they have the latest channel parameters.
7892                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
7893                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
7894                                                                         node_id: chan.context.get_counterparty_node_id(),
7895                                                                         msg,
7896                                                                 });
7897                                                         }
7898                                                 }
7899                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
7900                                                 let (htlc_forwards, decode_update_add_htlcs) = self.handle_channel_resumption(
7901                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
7902                                                         Vec::new(), Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
7903                                                 debug_assert!(htlc_forwards.is_none());
7904                                                 debug_assert!(decode_update_add_htlcs.is_none());
7905                                                 if let Some(upd) = channel_update {
7906                                                         peer_state.pending_msg_events.push(upd);
7907                                                 }
7908                                                 need_lnd_workaround
7909                                         } else {
7910                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
7911                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
7912                                         }
7913                                 },
7914                                 hash_map::Entry::Vacant(_) => {
7915                                         log_debug!(logger, "Sending bogus ChannelReestablish for unknown channel {} to force channel closure",
7916                                                 msg.channel_id);
7917                                         // Unfortunately, lnd doesn't force close on errors
7918                                         // (https://github.com/lightningnetwork/lnd/blob/abb1e3463f3a83bbb843d5c399869dbe930ad94f/htlcswitch/link.go#L2119).
7919                                         // One of the few ways to get an lnd counterparty to force close is by
7920                                         // replicating what they do when restoring static channel backups (SCBs). They
7921                                         // send an invalid `ChannelReestablish` with `0` commitment numbers and an
7922                                         // invalid `your_last_per_commitment_secret`.
7923                                         //
7924                                         // Since we received a `ChannelReestablish` for a channel that doesn't exist, we
7925                                         // can assume it's likely the channel closed from our point of view, but it
7926                                         // remains open on the counterparty's side. By sending this bogus
7927                                         // `ChannelReestablish` message now as a response to theirs, we trigger them to
7928                                         // force close broadcasting their latest state. If the closing transaction from
7929                                         // our point of view remains unconfirmed, it'll enter a race with the
7930                                         // counterparty's to-be-broadcast latest commitment transaction.
7931                                         peer_state.pending_msg_events.push(MessageSendEvent::SendChannelReestablish {
7932                                                 node_id: *counterparty_node_id,
7933                                                 msg: msgs::ChannelReestablish {
7934                                                         channel_id: msg.channel_id,
7935                                                         next_local_commitment_number: 0,
7936                                                         next_remote_commitment_number: 0,
7937                                                         your_last_per_commitment_secret: [1u8; 32],
7938                                                         my_current_per_commitment_point: PublicKey::from_slice(&[2u8; 33]).unwrap(),
7939                                                         next_funding_txid: None,
7940                                                 },
7941                                         });
7942                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
7943                                                 format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}",
7944                                                         counterparty_node_id), msg.channel_id)
7945                                         )
7946                                 }
7947                         }
7948                 };
7949
7950                 if let Some(channel_ready_msg) = need_lnd_workaround {
7951                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
7952                 }
7953                 Ok(NotifyOption::SkipPersistHandleEvents)
7954         }
7955
7956         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
7957         fn process_pending_monitor_events(&self) -> bool {
7958                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
7959
7960                 let mut failed_channels = Vec::new();
7961                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
7962                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
7963                 for (funding_outpoint, channel_id, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
7964                         for monitor_event in monitor_events.drain(..) {
7965                                 match monitor_event {
7966                                         MonitorEvent::HTLCEvent(htlc_update) => {
7967                                                 let logger = WithContext::from(&self.logger, counterparty_node_id, Some(channel_id), Some(htlc_update.payment_hash));
7968                                                 if let Some(preimage) = htlc_update.payment_preimage {
7969                                                         log_trace!(logger, "Claiming HTLC with preimage {} from our monitor", preimage);
7970                                                         self.claim_funds_internal(htlc_update.source, preimage,
7971                                                                 htlc_update.htlc_value_satoshis.map(|v| v * 1000), None, true,
7972                                                                 false, counterparty_node_id, funding_outpoint, channel_id, None);
7973                                                 } else {
7974                                                         log_trace!(logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
7975                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id };
7976                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
7977                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
7978                                                 }
7979                                         },
7980                                         MonitorEvent::HolderForceClosed(_) | MonitorEvent::HolderForceClosedWithInfo { .. } => {
7981                                                 let counterparty_node_id_opt = match counterparty_node_id {
7982                                                         Some(cp_id) => Some(cp_id),
7983                                                         None => {
7984                                                                 // TODO: Once we can rely on the counterparty_node_id from the
7985                                                                 // monitor event, this and the outpoint_to_peer map should be removed.
7986                                                                 let outpoint_to_peer = self.outpoint_to_peer.lock().unwrap();
7987                                                                 outpoint_to_peer.get(&funding_outpoint).cloned()
7988                                                         }
7989                                                 };
7990                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
7991                                                         let per_peer_state = self.per_peer_state.read().unwrap();
7992                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
7993                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7994                                                                 let peer_state = &mut *peer_state_lock;
7995                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7996                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id) {
7997                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
7998                                                                                 let reason = if let MonitorEvent::HolderForceClosedWithInfo { reason, .. } = monitor_event {
7999                                                                                         reason
8000                                                                                 } else {
8001                                                                                         ClosureReason::HolderForceClosed
8002                                                                                 };
8003                                                                                 failed_channels.push(chan.context.force_shutdown(false, reason.clone()));
8004                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
8005                                                                                         let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
8006                                                                                         pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
8007                                                                                                 msg: update
8008                                                                                         });
8009                                                                                 }
8010                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
8011                                                                                         node_id: chan.context.get_counterparty_node_id(),
8012                                                                                         action: msgs::ErrorAction::DisconnectPeer {
8013                                                                                                 msg: Some(msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: reason.to_string() })
8014                                                                                         },
8015                                                                                 });
8016                                                                         }
8017                                                                 }
8018                                                         }
8019                                                 }
8020                                         },
8021                                         MonitorEvent::Completed { funding_txo, channel_id, monitor_update_id } => {
8022                                                 self.channel_monitor_updated(&funding_txo, &channel_id, monitor_update_id, counterparty_node_id.as_ref());
8023                                         },
8024                                 }
8025                         }
8026                 }
8027
8028                 for failure in failed_channels.drain(..) {
8029                         self.finish_close_channel(failure);
8030                 }
8031
8032                 has_pending_monitor_events
8033         }
8034
8035         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
8036         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
8037         /// update events as a separate process method here.
8038         #[cfg(fuzzing)]
8039         pub fn process_monitor_events(&self) {
8040                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8041                 self.process_pending_monitor_events();
8042         }
8043
8044         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
8045         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
8046         /// update was applied.
8047         fn check_free_holding_cells(&self) -> bool {
8048                 let mut has_monitor_update = false;
8049                 let mut failed_htlcs = Vec::new();
8050
8051                 // Walk our list of channels and find any that need to update. Note that when we do find an
8052                 // update, if it includes actions that must be taken afterwards, we have to drop the
8053                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
8054                 // manage to go through all our peers without finding a single channel to update.
8055                 'peer_loop: loop {
8056                         let per_peer_state = self.per_peer_state.read().unwrap();
8057                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
8058                                 'chan_loop: loop {
8059                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8060                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
8061                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
8062                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
8063                                         ) {
8064                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
8065                                                 let funding_txo = chan.context.get_funding_txo();
8066                                                 let (monitor_opt, holding_cell_failed_htlcs) =
8067                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &&WithChannelContext::from(&self.logger, &chan.context, None));
8068                                                 if !holding_cell_failed_htlcs.is_empty() {
8069                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
8070                                                 }
8071                                                 if let Some(monitor_update) = monitor_opt {
8072                                                         has_monitor_update = true;
8073
8074                                                         handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
8075                                                                 peer_state_lock, peer_state, per_peer_state, chan);
8076                                                         continue 'peer_loop;
8077                                                 }
8078                                         }
8079                                         break 'chan_loop;
8080                                 }
8081                         }
8082                         break 'peer_loop;
8083                 }
8084
8085                 let has_update = has_monitor_update || !failed_htlcs.is_empty();
8086                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
8087                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
8088                 }
8089
8090                 has_update
8091         }
8092
8093         /// When a call to a [`ChannelSigner`] method returns an error, this indicates that the signer
8094         /// is (temporarily) unavailable, and the operation should be retried later.
8095         ///
8096         /// This method allows for that retry - either checking for any signer-pending messages to be
8097         /// attempted in every channel, or in the specifically provided channel.
8098         ///
8099         /// [`ChannelSigner`]: crate::sign::ChannelSigner
8100         #[cfg(async_signing)]
8101         pub fn signer_unblocked(&self, channel_opt: Option<(PublicKey, ChannelId)>) {
8102                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8103
8104                 let unblock_chan = |phase: &mut ChannelPhase<SP>, pending_msg_events: &mut Vec<MessageSendEvent>| {
8105                         let node_id = phase.context().get_counterparty_node_id();
8106                         match phase {
8107                                 ChannelPhase::Funded(chan) => {
8108                                         let msgs = chan.signer_maybe_unblocked(&self.logger);
8109                                         if let Some(updates) = msgs.commitment_update {
8110                                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
8111                                                         node_id,
8112                                                         updates,
8113                                                 });
8114                                         }
8115                                         if let Some(msg) = msgs.funding_signed {
8116                                                 pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
8117                                                         node_id,
8118                                                         msg,
8119                                                 });
8120                                         }
8121                                         if let Some(msg) = msgs.channel_ready {
8122                                                 send_channel_ready!(self, pending_msg_events, chan, msg);
8123                                         }
8124                                 }
8125                                 ChannelPhase::UnfundedOutboundV1(chan) => {
8126                                         if let Some(msg) = chan.signer_maybe_unblocked(&self.logger) {
8127                                                 pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
8128                                                         node_id,
8129                                                         msg,
8130                                                 });
8131                                         }
8132                                 }
8133                                 ChannelPhase::UnfundedInboundV1(_) => {},
8134                         }
8135                 };
8136
8137                 let per_peer_state = self.per_peer_state.read().unwrap();
8138                 if let Some((counterparty_node_id, channel_id)) = channel_opt {
8139                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
8140                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8141                                 let peer_state = &mut *peer_state_lock;
8142                                 if let Some(chan) = peer_state.channel_by_id.get_mut(&channel_id) {
8143                                         unblock_chan(chan, &mut peer_state.pending_msg_events);
8144                                 }
8145                         }
8146                 } else {
8147                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
8148                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8149                                 let peer_state = &mut *peer_state_lock;
8150                                 for (_, chan) in peer_state.channel_by_id.iter_mut() {
8151                                         unblock_chan(chan, &mut peer_state.pending_msg_events);
8152                                 }
8153                         }
8154                 }
8155         }
8156
8157         /// Check whether any channels have finished removing all pending updates after a shutdown
8158         /// exchange and can now send a closing_signed.
8159         /// Returns whether any closing_signed messages were generated.
8160         fn maybe_generate_initial_closing_signed(&self) -> bool {
8161                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
8162                 let mut has_update = false;
8163                 let mut shutdown_results = Vec::new();
8164                 {
8165                         let per_peer_state = self.per_peer_state.read().unwrap();
8166
8167                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
8168                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8169                                 let peer_state = &mut *peer_state_lock;
8170                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8171                                 peer_state.channel_by_id.retain(|channel_id, phase| {
8172                                         match phase {
8173                                                 ChannelPhase::Funded(chan) => {
8174                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
8175                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &&logger) {
8176                                                                 Ok((msg_opt, tx_opt, shutdown_result_opt)) => {
8177                                                                         if let Some(msg) = msg_opt {
8178                                                                                 has_update = true;
8179                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
8180                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
8181                                                                                 });
8182                                                                         }
8183                                                                         debug_assert_eq!(shutdown_result_opt.is_some(), chan.is_shutdown());
8184                                                                         if let Some(shutdown_result) = shutdown_result_opt {
8185                                                                                 shutdown_results.push(shutdown_result);
8186                                                                         }
8187                                                                         if let Some(tx) = tx_opt {
8188                                                                                 // We're done with this channel. We got a closing_signed and sent back
8189                                                                                 // a closing_signed with a closing transaction to broadcast.
8190                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
8191                                                                                         let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
8192                                                                                         pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
8193                                                                                                 msg: update
8194                                                                                         });
8195                                                                                 }
8196
8197                                                                                 log_info!(logger, "Broadcasting {}", log_tx!(tx));
8198                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
8199                                                                                 update_maps_on_chan_removal!(self, &chan.context);
8200                                                                                 false
8201                                                                         } else { true }
8202                                                                 },
8203                                                                 Err(e) => {
8204                                                                         has_update = true;
8205                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
8206                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
8207                                                                         !close_channel
8208                                                                 }
8209                                                         }
8210                                                 },
8211                                                 _ => true, // Retain unfunded channels if present.
8212                                         }
8213                                 });
8214                         }
8215                 }
8216
8217                 for (counterparty_node_id, err) in handle_errors.drain(..) {
8218                         let _ = handle_error!(self, err, counterparty_node_id);
8219                 }
8220
8221                 for shutdown_result in shutdown_results.drain(..) {
8222                         self.finish_close_channel(shutdown_result);
8223                 }
8224
8225                 has_update
8226         }
8227
8228         /// Handle a list of channel failures during a block_connected or block_disconnected call,
8229         /// pushing the channel monitor update (if any) to the background events queue and removing the
8230         /// Channel object.
8231         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
8232                 for mut failure in failed_channels.drain(..) {
8233                         // Either a commitment transactions has been confirmed on-chain or
8234                         // Channel::block_disconnected detected that the funding transaction has been
8235                         // reorganized out of the main chain.
8236                         // We cannot broadcast our latest local state via monitor update (as
8237                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
8238                         // so we track the update internally and handle it when the user next calls
8239                         // timer_tick_occurred, guaranteeing we're running normally.
8240                         if let Some((counterparty_node_id, funding_txo, channel_id, update)) = failure.monitor_update.take() {
8241                                 assert_eq!(update.updates.len(), 1);
8242                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
8243                                         assert!(should_broadcast);
8244                                 } else { unreachable!(); }
8245                                 self.pending_background_events.lock().unwrap().push(
8246                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8247                                                 counterparty_node_id, funding_txo, update, channel_id,
8248                                         });
8249                         }
8250                         self.finish_close_channel(failure);
8251                 }
8252         }
8253 }
8254
8255 macro_rules! create_offer_builder { ($self: ident, $builder: ty) => {
8256         /// Creates an [`OfferBuilder`] such that the [`Offer`] it builds is recognized by the
8257         /// [`ChannelManager`] when handling [`InvoiceRequest`] messages for the offer. The offer's
8258         /// expiration will be `absolute_expiry` if `Some`, otherwise it will not expire.
8259         ///
8260         /// # Privacy
8261         ///
8262         /// Uses [`MessageRouter`] to construct a [`BlindedPath`] for the offer based on the given
8263         /// `absolute_expiry` according to [`MAX_SHORT_LIVED_RELATIVE_EXPIRY`]. See those docs for
8264         /// privacy implications as well as those of the parameterized [`Router`], which implements
8265         /// [`MessageRouter`].
8266         ///
8267         /// Also, uses a derived signing pubkey in the offer for recipient privacy.
8268         ///
8269         /// # Limitations
8270         ///
8271         /// Requires a direct connection to the introduction node in the responding [`InvoiceRequest`]'s
8272         /// reply path.
8273         ///
8274         /// # Errors
8275         ///
8276         /// Errors if the parameterized [`Router`] is unable to create a blinded path for the offer.
8277         ///
8278         /// [`Offer`]: crate::offers::offer::Offer
8279         /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
8280         pub fn create_offer_builder(
8281                 &$self, absolute_expiry: Option<Duration>
8282         ) -> Result<$builder, Bolt12SemanticError> {
8283                 let node_id = $self.get_our_node_id();
8284                 let expanded_key = &$self.inbound_payment_key;
8285                 let entropy = &*$self.entropy_source;
8286                 let secp_ctx = &$self.secp_ctx;
8287
8288                 let path = $self.create_blinded_path_using_absolute_expiry(absolute_expiry)
8289                         .map_err(|_| Bolt12SemanticError::MissingPaths)?;
8290                 let builder = OfferBuilder::deriving_signing_pubkey(
8291                         node_id, expanded_key, entropy, secp_ctx
8292                 )
8293                         .chain_hash($self.chain_hash)
8294                         .path(path);
8295
8296                 let builder = match absolute_expiry {
8297                         None => builder,
8298                         Some(absolute_expiry) => builder.absolute_expiry(absolute_expiry),
8299                 };
8300
8301                 Ok(builder.into())
8302         }
8303 } }
8304
8305 macro_rules! create_refund_builder { ($self: ident, $builder: ty) => {
8306         /// Creates a [`RefundBuilder`] such that the [`Refund`] it builds is recognized by the
8307         /// [`ChannelManager`] when handling [`Bolt12Invoice`] messages for the refund.
8308         ///
8309         /// # Payment
8310         ///
8311         /// The provided `payment_id` is used to ensure that only one invoice is paid for the refund.
8312         /// See [Avoiding Duplicate Payments] for other requirements once the payment has been sent.
8313         ///
8314         /// The builder will have the provided expiration set. Any changes to the expiration on the
8315         /// returned builder will not be honored by [`ChannelManager`]. For `no-std`, the highest seen
8316         /// block time minus two hours is used for the current time when determining if the refund has
8317         /// expired.
8318         ///
8319         /// To revoke the refund, use [`ChannelManager::abandon_payment`] prior to receiving the
8320         /// invoice. If abandoned, or an invoice isn't received before expiration, the payment will fail
8321         /// with an [`Event::InvoiceRequestFailed`].
8322         ///
8323         /// If `max_total_routing_fee_msat` is not specified, The default from
8324         /// [`RouteParameters::from_payment_params_and_value`] is applied.
8325         ///
8326         /// # Privacy
8327         ///
8328         /// Uses [`MessageRouter`] to construct a [`BlindedPath`] for the refund based on the given
8329         /// `absolute_expiry` according to [`MAX_SHORT_LIVED_RELATIVE_EXPIRY`]. See those docs for
8330         /// privacy implications as well as those of the parameterized [`Router`], which implements
8331         /// [`MessageRouter`].
8332         ///
8333         /// Also, uses a derived payer id in the refund for payer privacy.
8334         ///
8335         /// # Limitations
8336         ///
8337         /// Requires a direct connection to an introduction node in the responding
8338         /// [`Bolt12Invoice::payment_paths`].
8339         ///
8340         /// # Errors
8341         ///
8342         /// Errors if:
8343         /// - a duplicate `payment_id` is provided given the caveats in the aforementioned link,
8344         /// - `amount_msats` is invalid, or
8345         /// - the parameterized [`Router`] is unable to create a blinded path for the refund.
8346         ///
8347         /// [`Refund`]: crate::offers::refund::Refund
8348         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
8349         /// [`Bolt12Invoice::payment_paths`]: crate::offers::invoice::Bolt12Invoice::payment_paths
8350         /// [Avoiding Duplicate Payments]: #avoiding-duplicate-payments
8351         pub fn create_refund_builder(
8352                 &$self, amount_msats: u64, absolute_expiry: Duration, payment_id: PaymentId,
8353                 retry_strategy: Retry, max_total_routing_fee_msat: Option<u64>
8354         ) -> Result<$builder, Bolt12SemanticError> {
8355                 let node_id = $self.get_our_node_id();
8356                 let expanded_key = &$self.inbound_payment_key;
8357                 let entropy = &*$self.entropy_source;
8358                 let secp_ctx = &$self.secp_ctx;
8359
8360                 let path = $self.create_blinded_path_using_absolute_expiry(Some(absolute_expiry))
8361                         .map_err(|_| Bolt12SemanticError::MissingPaths)?;
8362                 let builder = RefundBuilder::deriving_payer_id(
8363                         node_id, expanded_key, entropy, secp_ctx, amount_msats, payment_id
8364                 )?
8365                         .chain_hash($self.chain_hash)
8366                         .absolute_expiry(absolute_expiry)
8367                         .path(path);
8368
8369                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop($self);
8370
8371                 let expiration = StaleExpiration::AbsoluteTimeout(absolute_expiry);
8372                 $self.pending_outbound_payments
8373                         .add_new_awaiting_invoice(
8374                                 payment_id, expiration, retry_strategy, max_total_routing_fee_msat,
8375                         )
8376                         .map_err(|_| Bolt12SemanticError::DuplicatePaymentId)?;
8377
8378                 Ok(builder.into())
8379         }
8380 } }
8381
8382 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> ChannelManager<M, T, ES, NS, SP, F, R, L>
8383 where
8384         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
8385         T::Target: BroadcasterInterface,
8386         ES::Target: EntropySource,
8387         NS::Target: NodeSigner,
8388         SP::Target: SignerProvider,
8389         F::Target: FeeEstimator,
8390         R::Target: Router,
8391         L::Target: Logger,
8392 {
8393         #[cfg(not(c_bindings))]
8394         create_offer_builder!(self, OfferBuilder<DerivedMetadata, secp256k1::All>);
8395         #[cfg(not(c_bindings))]
8396         create_refund_builder!(self, RefundBuilder<secp256k1::All>);
8397
8398         #[cfg(c_bindings)]
8399         create_offer_builder!(self, OfferWithDerivedMetadataBuilder);
8400         #[cfg(c_bindings)]
8401         create_refund_builder!(self, RefundMaybeWithDerivedMetadataBuilder);
8402
8403         /// Pays for an [`Offer`] using the given parameters by creating an [`InvoiceRequest`] and
8404         /// enqueuing it to be sent via an onion message. [`ChannelManager`] will pay the actual
8405         /// [`Bolt12Invoice`] once it is received.
8406         ///
8407         /// Uses [`InvoiceRequestBuilder`] such that the [`InvoiceRequest`] it builds is recognized by
8408         /// the [`ChannelManager`] when handling a [`Bolt12Invoice`] message in response to the request.
8409         /// The optional parameters are used in the builder, if `Some`:
8410         /// - `quantity` for [`InvoiceRequest::quantity`] which must be set if
8411         ///   [`Offer::expects_quantity`] is `true`.
8412         /// - `amount_msats` if overpaying what is required for the given `quantity` is desired, and
8413         /// - `payer_note` for [`InvoiceRequest::payer_note`].
8414         ///
8415         /// If `max_total_routing_fee_msat` is not specified, The default from
8416         /// [`RouteParameters::from_payment_params_and_value`] is applied.
8417         ///
8418         /// # Payment
8419         ///
8420         /// The provided `payment_id` is used to ensure that only one invoice is paid for the request
8421         /// when received. See [Avoiding Duplicate Payments] for other requirements once the payment has
8422         /// been sent.
8423         ///
8424         /// To revoke the request, use [`ChannelManager::abandon_payment`] prior to receiving the
8425         /// invoice. If abandoned, or an invoice isn't received in a reasonable amount of time, the
8426         /// payment will fail with an [`Event::InvoiceRequestFailed`].
8427         ///
8428         /// # Privacy
8429         ///
8430         /// For payer privacy, uses a derived payer id and uses [`MessageRouter::create_blinded_paths`]
8431         /// to construct a [`BlindedPath`] for the reply path. For further privacy implications, see the
8432         /// docs of the parameterized [`Router`], which implements [`MessageRouter`].
8433         ///
8434         /// # Limitations
8435         ///
8436         /// Requires a direct connection to an introduction node in [`Offer::paths`] or to
8437         /// [`Offer::signing_pubkey`], if empty. A similar restriction applies to the responding
8438         /// [`Bolt12Invoice::payment_paths`].
8439         ///
8440         /// # Errors
8441         ///
8442         /// Errors if:
8443         /// - a duplicate `payment_id` is provided given the caveats in the aforementioned link,
8444         /// - the provided parameters are invalid for the offer,
8445         /// - the offer is for an unsupported chain, or
8446         /// - the parameterized [`Router`] is unable to create a blinded reply path for the invoice
8447         ///   request.
8448         ///
8449         /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
8450         /// [`InvoiceRequest::quantity`]: crate::offers::invoice_request::InvoiceRequest::quantity
8451         /// [`InvoiceRequest::payer_note`]: crate::offers::invoice_request::InvoiceRequest::payer_note
8452         /// [`InvoiceRequestBuilder`]: crate::offers::invoice_request::InvoiceRequestBuilder
8453         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
8454         /// [`Bolt12Invoice::payment_paths`]: crate::offers::invoice::Bolt12Invoice::payment_paths
8455         /// [Avoiding Duplicate Payments]: #avoiding-duplicate-payments
8456         pub fn pay_for_offer(
8457                 &self, offer: &Offer, quantity: Option<u64>, amount_msats: Option<u64>,
8458                 payer_note: Option<String>, payment_id: PaymentId, retry_strategy: Retry,
8459                 max_total_routing_fee_msat: Option<u64>
8460         ) -> Result<(), Bolt12SemanticError> {
8461                 let expanded_key = &self.inbound_payment_key;
8462                 let entropy = &*self.entropy_source;
8463                 let secp_ctx = &self.secp_ctx;
8464
8465                 let builder: InvoiceRequestBuilder<DerivedPayerId, secp256k1::All> = offer
8466                         .request_invoice_deriving_payer_id(expanded_key, entropy, secp_ctx, payment_id)?
8467                         .into();
8468                 let builder = builder.chain_hash(self.chain_hash)?;
8469
8470                 let builder = match quantity {
8471                         None => builder,
8472                         Some(quantity) => builder.quantity(quantity)?,
8473                 };
8474                 let builder = match amount_msats {
8475                         None => builder,
8476                         Some(amount_msats) => builder.amount_msats(amount_msats)?,
8477                 };
8478                 let builder = match payer_note {
8479                         None => builder,
8480                         Some(payer_note) => builder.payer_note(payer_note),
8481                 };
8482                 let invoice_request = builder.build_and_sign()?;
8483                 let reply_path = self.create_blinded_path().map_err(|_| Bolt12SemanticError::MissingPaths)?;
8484
8485                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8486
8487                 let expiration = StaleExpiration::TimerTicks(1);
8488                 self.pending_outbound_payments
8489                         .add_new_awaiting_invoice(
8490                                 payment_id, expiration, retry_strategy, max_total_routing_fee_msat
8491                         )
8492                         .map_err(|_| Bolt12SemanticError::DuplicatePaymentId)?;
8493
8494                 let mut pending_offers_messages = self.pending_offers_messages.lock().unwrap();
8495                 if !offer.paths().is_empty() {
8496                         // Send as many invoice requests as there are paths in the offer (with an upper bound).
8497                         // Using only one path could result in a failure if the path no longer exists. But only
8498                         // one invoice for a given payment id will be paid, even if more than one is received.
8499                         const REQUEST_LIMIT: usize = 10;
8500                         for path in offer.paths().into_iter().take(REQUEST_LIMIT) {
8501                                 let message = new_pending_onion_message(
8502                                         OffersMessage::InvoiceRequest(invoice_request.clone()),
8503                                         Destination::BlindedPath(path.clone()),
8504                                         Some(reply_path.clone()),
8505                                 );
8506                                 pending_offers_messages.push(message);
8507                         }
8508                 } else if let Some(signing_pubkey) = offer.signing_pubkey() {
8509                         let message = new_pending_onion_message(
8510                                 OffersMessage::InvoiceRequest(invoice_request),
8511                                 Destination::Node(signing_pubkey),
8512                                 Some(reply_path),
8513                         );
8514                         pending_offers_messages.push(message);
8515                 } else {
8516                         debug_assert!(false);
8517                         return Err(Bolt12SemanticError::MissingSigningPubkey);
8518                 }
8519
8520                 Ok(())
8521         }
8522
8523         /// Creates a [`Bolt12Invoice`] for a [`Refund`] and enqueues it to be sent via an onion
8524         /// message.
8525         ///
8526         /// The resulting invoice uses a [`PaymentHash`] recognized by the [`ChannelManager`] and a
8527         /// [`BlindedPath`] containing the [`PaymentSecret`] needed to reconstruct the corresponding
8528         /// [`PaymentPreimage`]. It is returned purely for informational purposes.
8529         ///
8530         /// # Limitations
8531         ///
8532         /// Requires a direct connection to an introduction node in [`Refund::paths`] or to
8533         /// [`Refund::payer_id`], if empty. This request is best effort; an invoice will be sent to each
8534         /// node meeting the aforementioned criteria, but there's no guarantee that they will be
8535         /// received and no retries will be made.
8536         ///
8537         /// # Errors
8538         ///
8539         /// Errors if:
8540         /// - the refund is for an unsupported chain, or
8541         /// - the parameterized [`Router`] is unable to create a blinded payment path or reply path for
8542         ///   the invoice.
8543         ///
8544         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
8545         pub fn request_refund_payment(
8546                 &self, refund: &Refund
8547         ) -> Result<Bolt12Invoice, Bolt12SemanticError> {
8548                 let expanded_key = &self.inbound_payment_key;
8549                 let entropy = &*self.entropy_source;
8550                 let secp_ctx = &self.secp_ctx;
8551
8552                 let amount_msats = refund.amount_msats();
8553                 let relative_expiry = DEFAULT_RELATIVE_EXPIRY.as_secs() as u32;
8554
8555                 if refund.chain() != self.chain_hash {
8556                         return Err(Bolt12SemanticError::UnsupportedChain);
8557                 }
8558
8559                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8560
8561                 match self.create_inbound_payment(Some(amount_msats), relative_expiry, None) {
8562                         Ok((payment_hash, payment_secret)) => {
8563                                 let payment_context = PaymentContext::Bolt12Refund(Bolt12RefundContext {});
8564                                 let payment_paths = self.create_blinded_payment_paths(
8565                                         amount_msats, payment_secret, payment_context
8566                                 )
8567                                         .map_err(|_| Bolt12SemanticError::MissingPaths)?;
8568
8569                                 #[cfg(feature = "std")]
8570                                 let builder = refund.respond_using_derived_keys(
8571                                         payment_paths, payment_hash, expanded_key, entropy
8572                                 )?;
8573                                 #[cfg(not(feature = "std"))]
8574                                 let created_at = Duration::from_secs(
8575                                         self.highest_seen_timestamp.load(Ordering::Acquire) as u64
8576                                 );
8577                                 #[cfg(not(feature = "std"))]
8578                                 let builder = refund.respond_using_derived_keys_no_std(
8579                                         payment_paths, payment_hash, created_at, expanded_key, entropy
8580                                 )?;
8581                                 let builder: InvoiceBuilder<DerivedSigningPubkey> = builder.into();
8582                                 let invoice = builder.allow_mpp().build_and_sign(secp_ctx)?;
8583                                 let reply_path = self.create_blinded_path()
8584                                         .map_err(|_| Bolt12SemanticError::MissingPaths)?;
8585
8586                                 let mut pending_offers_messages = self.pending_offers_messages.lock().unwrap();
8587                                 if refund.paths().is_empty() {
8588                                         let message = new_pending_onion_message(
8589                                                 OffersMessage::Invoice(invoice.clone()),
8590                                                 Destination::Node(refund.payer_id()),
8591                                                 Some(reply_path),
8592                                         );
8593                                         pending_offers_messages.push(message);
8594                                 } else {
8595                                         for path in refund.paths() {
8596                                                 let message = new_pending_onion_message(
8597                                                         OffersMessage::Invoice(invoice.clone()),
8598                                                         Destination::BlindedPath(path.clone()),
8599                                                         Some(reply_path.clone()),
8600                                                 );
8601                                                 pending_offers_messages.push(message);
8602                                         }
8603                                 }
8604
8605                                 Ok(invoice)
8606                         },
8607                         Err(()) => Err(Bolt12SemanticError::InvalidAmount),
8608                 }
8609         }
8610
8611         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
8612         /// to pay us.
8613         ///
8614         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
8615         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
8616         ///
8617         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`] event, which
8618         /// will have the [`PaymentClaimable::purpose`] return `Some` for [`PaymentPurpose::preimage`]. That
8619         /// should then be passed directly to [`claim_funds`].
8620         ///
8621         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
8622         ///
8623         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
8624         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
8625         ///
8626         /// # Note
8627         ///
8628         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
8629         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
8630         ///
8631         /// Errors if `min_value_msat` is greater than total bitcoin supply.
8632         ///
8633         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
8634         /// on versions of LDK prior to 0.0.114.
8635         ///
8636         /// [`claim_funds`]: Self::claim_funds
8637         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
8638         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
8639         /// [`PaymentPurpose::preimage`]: events::PaymentPurpose::preimage
8640         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
8641         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
8642                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
8643                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
8644                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
8645                         min_final_cltv_expiry_delta)
8646         }
8647
8648         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
8649         /// stored external to LDK.
8650         ///
8651         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
8652         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
8653         /// the `min_value_msat` provided here, if one is provided.
8654         ///
8655         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
8656         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
8657         /// payments.
8658         ///
8659         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
8660         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
8661         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
8662         /// sender "proof-of-payment" unless they have paid the required amount.
8663         ///
8664         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
8665         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
8666         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
8667         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
8668         /// invoices when no timeout is set.
8669         ///
8670         /// Note that we use block header time to time-out pending inbound payments (with some margin
8671         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
8672         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
8673         /// If you need exact expiry semantics, you should enforce them upon receipt of
8674         /// [`PaymentClaimable`].
8675         ///
8676         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
8677         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
8678         ///
8679         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
8680         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
8681         ///
8682         /// # Note
8683         ///
8684         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
8685         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
8686         ///
8687         /// Errors if `min_value_msat` is greater than total bitcoin supply.
8688         ///
8689         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
8690         /// on versions of LDK prior to 0.0.114.
8691         ///
8692         /// [`create_inbound_payment`]: Self::create_inbound_payment
8693         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
8694         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
8695                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
8696                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
8697                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
8698                         min_final_cltv_expiry)
8699         }
8700
8701         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
8702         /// previously returned from [`create_inbound_payment`].
8703         ///
8704         /// [`create_inbound_payment`]: Self::create_inbound_payment
8705         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
8706                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
8707         }
8708
8709         /// Creates a blinded path by delegating to [`MessageRouter`] based on the path's intended
8710         /// lifetime.
8711         ///
8712         /// Whether or not the path is compact depends on whether the path is short-lived or long-lived,
8713         /// respectively, based on the given `absolute_expiry` as seconds since the Unix epoch. See
8714         /// [`MAX_SHORT_LIVED_RELATIVE_EXPIRY`].
8715         fn create_blinded_path_using_absolute_expiry(
8716                 &self, absolute_expiry: Option<Duration>
8717         ) -> Result<BlindedPath, ()> {
8718                 let now = self.duration_since_epoch();
8719                 let max_short_lived_absolute_expiry = now.saturating_add(MAX_SHORT_LIVED_RELATIVE_EXPIRY);
8720
8721                 if absolute_expiry.unwrap_or(Duration::MAX) <= max_short_lived_absolute_expiry {
8722                         self.create_compact_blinded_path()
8723                 } else {
8724                         self.create_blinded_path()
8725                 }
8726         }
8727
8728         pub(super) fn duration_since_epoch(&self) -> Duration {
8729                 #[cfg(not(feature = "std"))]
8730                 let now = Duration::from_secs(
8731                         self.highest_seen_timestamp.load(Ordering::Acquire) as u64
8732                 );
8733                 #[cfg(feature = "std")]
8734                 let now = std::time::SystemTime::now()
8735                         .duration_since(std::time::SystemTime::UNIX_EPOCH)
8736                         .expect("SystemTime::now() should come after SystemTime::UNIX_EPOCH");
8737
8738                 now
8739         }
8740
8741         /// Creates a blinded path by delegating to [`MessageRouter::create_blinded_paths`].
8742         ///
8743         /// Errors if the `MessageRouter` errors or returns an empty `Vec`.
8744         fn create_blinded_path(&self) -> Result<BlindedPath, ()> {
8745                 let recipient = self.get_our_node_id();
8746                 let secp_ctx = &self.secp_ctx;
8747
8748                 let peers = self.per_peer_state.read().unwrap()
8749                         .iter()
8750                         .map(|(node_id, peer_state)| (node_id, peer_state.lock().unwrap()))
8751                         .filter(|(_, peer)| peer.is_connected)
8752                         .filter(|(_, peer)| peer.latest_features.supports_onion_messages())
8753                         .map(|(node_id, _)| *node_id)
8754                         .collect::<Vec<_>>();
8755
8756                 self.router
8757                         .create_blinded_paths(recipient, peers, secp_ctx)
8758                         .and_then(|paths| paths.into_iter().next().ok_or(()))
8759         }
8760
8761         /// Creates a blinded path by delegating to [`MessageRouter::create_compact_blinded_paths`].
8762         ///
8763         /// Errors if the `MessageRouter` errors or returns an empty `Vec`.
8764         fn create_compact_blinded_path(&self) -> Result<BlindedPath, ()> {
8765                 let recipient = self.get_our_node_id();
8766                 let secp_ctx = &self.secp_ctx;
8767
8768                 let peers = self.per_peer_state.read().unwrap()
8769                         .iter()
8770                         .map(|(node_id, peer_state)| (node_id, peer_state.lock().unwrap()))
8771                         .filter(|(_, peer)| peer.is_connected)
8772                         .filter(|(_, peer)| peer.latest_features.supports_onion_messages())
8773                         .map(|(node_id, peer)| ForwardNode {
8774                                 node_id: *node_id,
8775                                 short_channel_id: peer.channel_by_id
8776                                         .iter()
8777                                         .filter(|(_, channel)| channel.context().is_usable())
8778                                         .min_by_key(|(_, channel)| channel.context().channel_creation_height)
8779                                         .and_then(|(_, channel)| channel.context().get_short_channel_id()),
8780                         })
8781                         .collect::<Vec<_>>();
8782
8783                 self.router
8784                         .create_compact_blinded_paths(recipient, peers, secp_ctx)
8785                         .and_then(|paths| paths.into_iter().next().ok_or(()))
8786         }
8787
8788         /// Creates multi-hop blinded payment paths for the given `amount_msats` by delegating to
8789         /// [`Router::create_blinded_payment_paths`].
8790         fn create_blinded_payment_paths(
8791                 &self, amount_msats: u64, payment_secret: PaymentSecret, payment_context: PaymentContext
8792         ) -> Result<Vec<(BlindedPayInfo, BlindedPath)>, ()> {
8793                 let secp_ctx = &self.secp_ctx;
8794
8795                 let first_hops = self.list_usable_channels();
8796                 let payee_node_id = self.get_our_node_id();
8797                 let max_cltv_expiry = self.best_block.read().unwrap().height + CLTV_FAR_FAR_AWAY
8798                         + LATENCY_GRACE_PERIOD_BLOCKS;
8799                 let payee_tlvs = ReceiveTlvs {
8800                         payment_secret,
8801                         payment_constraints: PaymentConstraints {
8802                                 max_cltv_expiry,
8803                                 htlc_minimum_msat: 1,
8804                         },
8805                         payment_context,
8806                 };
8807                 self.router.create_blinded_payment_paths(
8808                         payee_node_id, first_hops, payee_tlvs, amount_msats, secp_ctx
8809                 )
8810         }
8811
8812         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
8813         /// are used when constructing the phantom invoice's route hints.
8814         ///
8815         /// [phantom node payments]: crate::sign::PhantomKeysManager
8816         pub fn get_phantom_scid(&self) -> u64 {
8817                 let best_block_height = self.best_block.read().unwrap().height;
8818                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
8819                 loop {
8820                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.chain_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
8821                         // Ensure the generated scid doesn't conflict with a real channel.
8822                         match short_to_chan_info.get(&scid_candidate) {
8823                                 Some(_) => continue,
8824                                 None => return scid_candidate
8825                         }
8826                 }
8827         }
8828
8829         /// Gets route hints for use in receiving [phantom node payments].
8830         ///
8831         /// [phantom node payments]: crate::sign::PhantomKeysManager
8832         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
8833                 PhantomRouteHints {
8834                         channels: self.list_usable_channels(),
8835                         phantom_scid: self.get_phantom_scid(),
8836                         real_node_pubkey: self.get_our_node_id(),
8837                 }
8838         }
8839
8840         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
8841         /// used when constructing the route hints for HTLCs intended to be intercepted. See
8842         /// [`ChannelManager::forward_intercepted_htlc`].
8843         ///
8844         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
8845         /// times to get a unique scid.
8846         pub fn get_intercept_scid(&self) -> u64 {
8847                 let best_block_height = self.best_block.read().unwrap().height;
8848                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
8849                 loop {
8850                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.chain_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
8851                         // Ensure the generated scid doesn't conflict with a real channel.
8852                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
8853                         return scid_candidate
8854                 }
8855         }
8856
8857         /// Gets inflight HTLC information by processing pending outbound payments that are in
8858         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
8859         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
8860                 let mut inflight_htlcs = InFlightHtlcs::new();
8861
8862                 let per_peer_state = self.per_peer_state.read().unwrap();
8863                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
8864                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8865                         let peer_state = &mut *peer_state_lock;
8866                         for chan in peer_state.channel_by_id.values().filter_map(
8867                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
8868                         ) {
8869                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
8870                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
8871                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
8872                                         }
8873                                 }
8874                         }
8875                 }
8876
8877                 inflight_htlcs
8878         }
8879
8880         #[cfg(any(test, feature = "_test_utils"))]
8881         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
8882                 let events = core::cell::RefCell::new(Vec::new());
8883                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
8884                 self.process_pending_events(&event_handler);
8885                 events.into_inner()
8886         }
8887
8888         #[cfg(feature = "_test_utils")]
8889         pub fn push_pending_event(&self, event: events::Event) {
8890                 let mut events = self.pending_events.lock().unwrap();
8891                 events.push_back((event, None));
8892         }
8893
8894         #[cfg(test)]
8895         pub fn pop_pending_event(&self) -> Option<events::Event> {
8896                 let mut events = self.pending_events.lock().unwrap();
8897                 events.pop_front().map(|(e, _)| e)
8898         }
8899
8900         #[cfg(test)]
8901         pub fn has_pending_payments(&self) -> bool {
8902                 self.pending_outbound_payments.has_pending_payments()
8903         }
8904
8905         #[cfg(test)]
8906         pub fn clear_pending_payments(&self) {
8907                 self.pending_outbound_payments.clear_pending_payments()
8908         }
8909
8910         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
8911         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
8912         /// operation. It will double-check that nothing *else* is also blocking the same channel from
8913         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
8914         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey,
8915                 channel_funding_outpoint: OutPoint, channel_id: ChannelId,
8916                 mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
8917
8918                 let logger = WithContext::from(
8919                         &self.logger, Some(counterparty_node_id), Some(channel_id), None
8920                 );
8921                 loop {
8922                         let per_peer_state = self.per_peer_state.read().unwrap();
8923                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
8924                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
8925                                 let peer_state = &mut *peer_state_lck;
8926                                 if let Some(blocker) = completed_blocker.take() {
8927                                         // Only do this on the first iteration of the loop.
8928                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
8929                                                 .get_mut(&channel_id)
8930                                         {
8931                                                 blockers.retain(|iter| iter != &blocker);
8932                                         }
8933                                 }
8934
8935                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
8936                                         channel_funding_outpoint, channel_id, counterparty_node_id) {
8937                                         // Check that, while holding the peer lock, we don't have anything else
8938                                         // blocking monitor updates for this channel. If we do, release the monitor
8939                                         // update(s) when those blockers complete.
8940                                         log_trace!(logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
8941                                                 &channel_id);
8942                                         break;
8943                                 }
8944
8945                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(
8946                                         channel_id) {
8947                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
8948                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
8949                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
8950                                                         log_debug!(logger, "Unlocking monitor updating for channel {} and updating monitor",
8951                                                                 channel_id);
8952                                                         handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
8953                                                                 peer_state_lck, peer_state, per_peer_state, chan);
8954                                                         if further_update_exists {
8955                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
8956                                                                 // top of the loop.
8957                                                                 continue;
8958                                                         }
8959                                                 } else {
8960                                                         log_trace!(logger, "Unlocked monitor updating for channel {} without monitors to update",
8961                                                                 channel_id);
8962                                                 }
8963                                         }
8964                                 }
8965                         } else {
8966                                 log_debug!(logger,
8967                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
8968                                         log_pubkey!(counterparty_node_id));
8969                         }
8970                         break;
8971                 }
8972         }
8973
8974         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
8975                 for action in actions {
8976                         match action {
8977                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
8978                                         channel_funding_outpoint, channel_id, counterparty_node_id
8979                                 } => {
8980                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, channel_id, None);
8981                                 }
8982                         }
8983                 }
8984         }
8985
8986         /// Processes any events asynchronously in the order they were generated since the last call
8987         /// using the given event handler.
8988         ///
8989         /// See the trait-level documentation of [`EventsProvider`] for requirements.
8990         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
8991                 &self, handler: H
8992         ) {
8993                 let mut ev;
8994                 process_events_body!(self, ev, { handler(ev).await });
8995         }
8996 }
8997
8998 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> MessageSendEventsProvider for ChannelManager<M, T, ES, NS, SP, F, R, L>
8999 where
9000         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9001         T::Target: BroadcasterInterface,
9002         ES::Target: EntropySource,
9003         NS::Target: NodeSigner,
9004         SP::Target: SignerProvider,
9005         F::Target: FeeEstimator,
9006         R::Target: Router,
9007         L::Target: Logger,
9008 {
9009         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
9010         /// The returned array will contain `MessageSendEvent`s for different peers if
9011         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
9012         /// is always placed next to each other.
9013         ///
9014         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
9015         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
9016         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
9017         /// will randomly be placed first or last in the returned array.
9018         ///
9019         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
9020         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be placed among
9021         /// the `MessageSendEvent`s to the specific peer they were generated under.
9022         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
9023                 let events = RefCell::new(Vec::new());
9024                 PersistenceNotifierGuard::optionally_notify(self, || {
9025                         let mut result = NotifyOption::SkipPersistNoEvents;
9026
9027                         // TODO: This behavior should be documented. It's unintuitive that we query
9028                         // ChannelMonitors when clearing other events.
9029                         if self.process_pending_monitor_events() {
9030                                 result = NotifyOption::DoPersist;
9031                         }
9032
9033                         if self.check_free_holding_cells() {
9034                                 result = NotifyOption::DoPersist;
9035                         }
9036                         if self.maybe_generate_initial_closing_signed() {
9037                                 result = NotifyOption::DoPersist;
9038                         }
9039
9040                         let mut is_any_peer_connected = false;
9041                         let mut pending_events = Vec::new();
9042                         let per_peer_state = self.per_peer_state.read().unwrap();
9043                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
9044                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9045                                 let peer_state = &mut *peer_state_lock;
9046                                 if peer_state.pending_msg_events.len() > 0 {
9047                                         pending_events.append(&mut peer_state.pending_msg_events);
9048                                 }
9049                                 if peer_state.is_connected {
9050                                         is_any_peer_connected = true
9051                                 }
9052                         }
9053
9054                         // Ensure that we are connected to some peers before getting broadcast messages.
9055                         if is_any_peer_connected {
9056                                 let mut broadcast_msgs = self.pending_broadcast_messages.lock().unwrap();
9057                                 pending_events.append(&mut broadcast_msgs);
9058                         }
9059
9060                         if !pending_events.is_empty() {
9061                                 events.replace(pending_events);
9062                         }
9063
9064                         result
9065                 });
9066                 events.into_inner()
9067         }
9068 }
9069
9070 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> EventsProvider for ChannelManager<M, T, ES, NS, SP, F, R, L>
9071 where
9072         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9073         T::Target: BroadcasterInterface,
9074         ES::Target: EntropySource,
9075         NS::Target: NodeSigner,
9076         SP::Target: SignerProvider,
9077         F::Target: FeeEstimator,
9078         R::Target: Router,
9079         L::Target: Logger,
9080 {
9081         /// Processes events that must be periodically handled.
9082         ///
9083         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
9084         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
9085         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
9086                 let mut ev;
9087                 process_events_body!(self, ev, handler.handle_event(ev));
9088         }
9089 }
9090
9091 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> chain::Listen for ChannelManager<M, T, ES, NS, SP, F, R, L>
9092 where
9093         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9094         T::Target: BroadcasterInterface,
9095         ES::Target: EntropySource,
9096         NS::Target: NodeSigner,
9097         SP::Target: SignerProvider,
9098         F::Target: FeeEstimator,
9099         R::Target: Router,
9100         L::Target: Logger,
9101 {
9102         fn filtered_block_connected(&self, header: &Header, txdata: &TransactionData, height: u32) {
9103                 {
9104                         let best_block = self.best_block.read().unwrap();
9105                         assert_eq!(best_block.block_hash, header.prev_blockhash,
9106                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
9107                         assert_eq!(best_block.height, height - 1,
9108                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
9109                 }
9110
9111                 self.transactions_confirmed(header, txdata, height);
9112                 self.best_block_updated(header, height);
9113         }
9114
9115         fn block_disconnected(&self, header: &Header, height: u32) {
9116                 let _persistence_guard =
9117                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
9118                                 self, || -> NotifyOption { NotifyOption::DoPersist });
9119                 let new_height = height - 1;
9120                 {
9121                         let mut best_block = self.best_block.write().unwrap();
9122                         assert_eq!(best_block.block_hash, header.block_hash(),
9123                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
9124                         assert_eq!(best_block.height, height,
9125                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
9126                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
9127                 }
9128
9129                 self.do_chain_event(Some(new_height), |channel| channel.best_block_updated(new_height, header.time, self.chain_hash, &self.node_signer, &self.default_configuration, &&WithChannelContext::from(&self.logger, &channel.context, None)));
9130         }
9131 }
9132
9133 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> chain::Confirm for ChannelManager<M, T, ES, NS, SP, F, R, L>
9134 where
9135         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9136         T::Target: BroadcasterInterface,
9137         ES::Target: EntropySource,
9138         NS::Target: NodeSigner,
9139         SP::Target: SignerProvider,
9140         F::Target: FeeEstimator,
9141         R::Target: Router,
9142         L::Target: Logger,
9143 {
9144         fn transactions_confirmed(&self, header: &Header, txdata: &TransactionData, height: u32) {
9145                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
9146                 // during initialization prior to the chain_monitor being fully configured in some cases.
9147                 // See the docs for `ChannelManagerReadArgs` for more.
9148
9149                 let block_hash = header.block_hash();
9150                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
9151
9152                 let _persistence_guard =
9153                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
9154                                 self, || -> NotifyOption { NotifyOption::DoPersist });
9155                 self.do_chain_event(Some(height), |channel| channel.transactions_confirmed(&block_hash, height, txdata, self.chain_hash, &self.node_signer, &self.default_configuration, &&WithChannelContext::from(&self.logger, &channel.context, None))
9156                         .map(|(a, b)| (a, Vec::new(), b)));
9157
9158                 let last_best_block_height = self.best_block.read().unwrap().height;
9159                 if height < last_best_block_height {
9160                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
9161                         self.do_chain_event(Some(last_best_block_height), |channel| channel.best_block_updated(last_best_block_height, timestamp as u32, self.chain_hash, &self.node_signer, &self.default_configuration, &&WithChannelContext::from(&self.logger, &channel.context, None)));
9162                 }
9163         }
9164
9165         fn best_block_updated(&self, header: &Header, height: u32) {
9166                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
9167                 // during initialization prior to the chain_monitor being fully configured in some cases.
9168                 // See the docs for `ChannelManagerReadArgs` for more.
9169
9170                 let block_hash = header.block_hash();
9171                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
9172
9173                 let _persistence_guard =
9174                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
9175                                 self, || -> NotifyOption { NotifyOption::DoPersist });
9176                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
9177
9178                 self.do_chain_event(Some(height), |channel| channel.best_block_updated(height, header.time, self.chain_hash, &self.node_signer, &self.default_configuration, &&WithChannelContext::from(&self.logger, &channel.context, None)));
9179
9180                 macro_rules! max_time {
9181                         ($timestamp: expr) => {
9182                                 loop {
9183                                         // Update $timestamp to be the max of its current value and the block
9184                                         // timestamp. This should keep us close to the current time without relying on
9185                                         // having an explicit local time source.
9186                                         // Just in case we end up in a race, we loop until we either successfully
9187                                         // update $timestamp or decide we don't need to.
9188                                         let old_serial = $timestamp.load(Ordering::Acquire);
9189                                         if old_serial >= header.time as usize { break; }
9190                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
9191                                                 break;
9192                                         }
9193                                 }
9194                         }
9195                 }
9196                 max_time!(self.highest_seen_timestamp);
9197                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
9198                 payment_secrets.retain(|_, inbound_payment| {
9199                         inbound_payment.expiry_time > header.time as u64
9200                 });
9201         }
9202
9203         fn get_relevant_txids(&self) -> Vec<(Txid, u32, Option<BlockHash>)> {
9204                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
9205                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
9206                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9207                         let peer_state = &mut *peer_state_lock;
9208                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
9209                                 let txid_opt = chan.context.get_funding_txo();
9210                                 let height_opt = chan.context.get_funding_tx_confirmation_height();
9211                                 let hash_opt = chan.context.get_funding_tx_confirmed_in();
9212                                 if let (Some(funding_txo), Some(conf_height), Some(block_hash)) = (txid_opt, height_opt, hash_opt) {
9213                                         res.push((funding_txo.txid, conf_height, Some(block_hash)));
9214                                 }
9215                         }
9216                 }
9217                 res
9218         }
9219
9220         fn transaction_unconfirmed(&self, txid: &Txid) {
9221                 let _persistence_guard =
9222                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
9223                                 self, || -> NotifyOption { NotifyOption::DoPersist });
9224                 self.do_chain_event(None, |channel| {
9225                         if let Some(funding_txo) = channel.context.get_funding_txo() {
9226                                 if funding_txo.txid == *txid {
9227                                         channel.funding_transaction_unconfirmed(&&WithChannelContext::from(&self.logger, &channel.context, None)).map(|()| (None, Vec::new(), None))
9228                                 } else { Ok((None, Vec::new(), None)) }
9229                         } else { Ok((None, Vec::new(), None)) }
9230                 });
9231         }
9232 }
9233
9234 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> ChannelManager<M, T, ES, NS, SP, F, R, L>
9235 where
9236         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9237         T::Target: BroadcasterInterface,
9238         ES::Target: EntropySource,
9239         NS::Target: NodeSigner,
9240         SP::Target: SignerProvider,
9241         F::Target: FeeEstimator,
9242         R::Target: Router,
9243         L::Target: Logger,
9244 {
9245         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
9246         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
9247         /// the function.
9248         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
9249                         (&self, height_opt: Option<u32>, f: FN) {
9250                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
9251                 // during initialization prior to the chain_monitor being fully configured in some cases.
9252                 // See the docs for `ChannelManagerReadArgs` for more.
9253
9254                 let mut failed_channels = Vec::new();
9255                 let mut timed_out_htlcs = Vec::new();
9256                 {
9257                         let per_peer_state = self.per_peer_state.read().unwrap();
9258                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
9259                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9260                                 let peer_state = &mut *peer_state_lock;
9261                                 let pending_msg_events = &mut peer_state.pending_msg_events;
9262
9263                                 peer_state.channel_by_id.retain(|_, phase| {
9264                                         match phase {
9265                                                 // Retain unfunded channels.
9266                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
9267                                                 // TODO(dual_funding): Combine this match arm with above.
9268                                                 #[cfg(any(dual_funding, splicing))]
9269                                                 ChannelPhase::UnfundedOutboundV2(_) | ChannelPhase::UnfundedInboundV2(_) => true,
9270                                                 ChannelPhase::Funded(channel) => {
9271                                                         let res = f(channel);
9272                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
9273                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
9274                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
9275                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
9276                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
9277                                                                 }
9278                                                                 let logger = WithChannelContext::from(&self.logger, &channel.context, None);
9279                                                                 if let Some(channel_ready) = channel_ready_opt {
9280                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
9281                                                                         if channel.context.is_usable() {
9282                                                                                 log_trace!(logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
9283                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
9284                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
9285                                                                                                 node_id: channel.context.get_counterparty_node_id(),
9286                                                                                                 msg,
9287                                                                                         });
9288                                                                                 }
9289                                                                         } else {
9290                                                                                 log_trace!(logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
9291                                                                         }
9292                                                                 }
9293
9294                                                                 {
9295                                                                         let mut pending_events = self.pending_events.lock().unwrap();
9296                                                                         emit_channel_ready_event!(pending_events, channel);
9297                                                                 }
9298
9299                                                                 if let Some(announcement_sigs) = announcement_sigs {
9300                                                                         log_trace!(logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
9301                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
9302                                                                                 node_id: channel.context.get_counterparty_node_id(),
9303                                                                                 msg: announcement_sigs,
9304                                                                         });
9305                                                                         if let Some(height) = height_opt {
9306                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.chain_hash, height, &self.default_configuration) {
9307                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
9308                                                                                                 msg: announcement,
9309                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
9310                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
9311                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
9312                                                                                         });
9313                                                                                 }
9314                                                                         }
9315                                                                 }
9316                                                                 if channel.is_our_channel_ready() {
9317                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
9318                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
9319                                                                                 // to the short_to_chan_info map here. Note that we check whether we
9320                                                                                 // can relay using the real SCID at relay-time (i.e.
9321                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
9322                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
9323                                                                                 // is always consistent.
9324                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
9325                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9326                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
9327                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
9328                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
9329                                                                         }
9330                                                                 }
9331                                                         } else if let Err(reason) = res {
9332                                                                 update_maps_on_chan_removal!(self, &channel.context);
9333                                                                 // It looks like our counterparty went on-chain or funding transaction was
9334                                                                 // reorged out of the main chain. Close the channel.
9335                                                                 let reason_message = format!("{}", reason);
9336                                                                 failed_channels.push(channel.context.force_shutdown(true, reason));
9337                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
9338                                                                         let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
9339                                                                         pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
9340                                                                                 msg: update
9341                                                                         });
9342                                                                 }
9343                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
9344                                                                         node_id: channel.context.get_counterparty_node_id(),
9345                                                                         action: msgs::ErrorAction::DisconnectPeer {
9346                                                                                 msg: Some(msgs::ErrorMessage {
9347                                                                                         channel_id: channel.context.channel_id(),
9348                                                                                         data: reason_message,
9349                                                                                 })
9350                                                                         },
9351                                                                 });
9352                                                                 return false;
9353                                                         }
9354                                                         true
9355                                                 }
9356                                         }
9357                                 });
9358                         }
9359                 }
9360
9361                 if let Some(height) = height_opt {
9362                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
9363                                 payment.htlcs.retain(|htlc| {
9364                                         // If height is approaching the number of blocks we think it takes us to get
9365                                         // our commitment transaction confirmed before the HTLC expires, plus the
9366                                         // number of blocks we generally consider it to take to do a commitment update,
9367                                         // just give up on it and fail the HTLC.
9368                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
9369                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
9370                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
9371
9372                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
9373                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
9374                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
9375                                                 false
9376                                         } else { true }
9377                                 });
9378                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
9379                         });
9380
9381                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
9382                         intercepted_htlcs.retain(|_, htlc| {
9383                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
9384                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
9385                                                 short_channel_id: htlc.prev_short_channel_id,
9386                                                 user_channel_id: Some(htlc.prev_user_channel_id),
9387                                                 htlc_id: htlc.prev_htlc_id,
9388                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
9389                                                 phantom_shared_secret: None,
9390                                                 outpoint: htlc.prev_funding_outpoint,
9391                                                 channel_id: htlc.prev_channel_id,
9392                                                 blinded_failure: htlc.forward_info.routing.blinded_failure(),
9393                                         });
9394
9395                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
9396                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
9397                                                 _ => unreachable!(),
9398                                         };
9399                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
9400                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
9401                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
9402                                         let logger = WithContext::from(
9403                                                 &self.logger, None, Some(htlc.prev_channel_id), Some(htlc.forward_info.payment_hash)
9404                                         );
9405                                         log_trace!(logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
9406                                         false
9407                                 } else { true }
9408                         });
9409                 }
9410
9411                 self.handle_init_event_channel_failures(failed_channels);
9412
9413                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
9414                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
9415                 }
9416         }
9417
9418         /// Gets a [`Future`] that completes when this [`ChannelManager`] may need to be persisted or
9419         /// may have events that need processing.
9420         ///
9421         /// In order to check if this [`ChannelManager`] needs persisting, call
9422         /// [`Self::get_and_clear_needs_persistence`].
9423         ///
9424         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
9425         /// [`ChannelManager`] and should instead register actions to be taken later.
9426         pub fn get_event_or_persistence_needed_future(&self) -> Future {
9427                 self.event_persist_notifier.get_future()
9428         }
9429
9430         /// Returns true if this [`ChannelManager`] needs to be persisted.
9431         ///
9432         /// See [`Self::get_event_or_persistence_needed_future`] for retrieving a [`Future`] that
9433         /// indicates this should be checked.
9434         pub fn get_and_clear_needs_persistence(&self) -> bool {
9435                 self.needs_persist_flag.swap(false, Ordering::AcqRel)
9436         }
9437
9438         #[cfg(any(test, feature = "_test_utils"))]
9439         pub fn get_event_or_persist_condvar_value(&self) -> bool {
9440                 self.event_persist_notifier.notify_pending()
9441         }
9442
9443         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
9444         /// [`chain::Confirm`] interfaces.
9445         pub fn current_best_block(&self) -> BestBlock {
9446                 self.best_block.read().unwrap().clone()
9447         }
9448
9449         /// Fetches the set of [`NodeFeatures`] flags that are provided by or required by
9450         /// [`ChannelManager`].
9451         pub fn node_features(&self) -> NodeFeatures {
9452                 provided_node_features(&self.default_configuration)
9453         }
9454
9455         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags that are provided by or required by
9456         /// [`ChannelManager`].
9457         ///
9458         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
9459         /// or not. Thus, this method is not public.
9460         #[cfg(any(feature = "_test_utils", test))]
9461         pub fn bolt11_invoice_features(&self) -> Bolt11InvoiceFeatures {
9462                 provided_bolt11_invoice_features(&self.default_configuration)
9463         }
9464
9465         /// Fetches the set of [`Bolt12InvoiceFeatures`] flags that are provided by or required by
9466         /// [`ChannelManager`].
9467         fn bolt12_invoice_features(&self) -> Bolt12InvoiceFeatures {
9468                 provided_bolt12_invoice_features(&self.default_configuration)
9469         }
9470
9471         /// Fetches the set of [`ChannelFeatures`] flags that are provided by or required by
9472         /// [`ChannelManager`].
9473         pub fn channel_features(&self) -> ChannelFeatures {
9474                 provided_channel_features(&self.default_configuration)
9475         }
9476
9477         /// Fetches the set of [`ChannelTypeFeatures`] flags that are provided by or required by
9478         /// [`ChannelManager`].
9479         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
9480                 provided_channel_type_features(&self.default_configuration)
9481         }
9482
9483         /// Fetches the set of [`InitFeatures`] flags that are provided by or required by
9484         /// [`ChannelManager`].
9485         pub fn init_features(&self) -> InitFeatures {
9486                 provided_init_features(&self.default_configuration)
9487         }
9488 }
9489
9490 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9491         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
9492 where
9493         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9494         T::Target: BroadcasterInterface,
9495         ES::Target: EntropySource,
9496         NS::Target: NodeSigner,
9497         SP::Target: SignerProvider,
9498         F::Target: FeeEstimator,
9499         R::Target: Router,
9500         L::Target: Logger,
9501 {
9502         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
9503                 // Note that we never need to persist the updated ChannelManager for an inbound
9504                 // open_channel message - pre-funded channels are never written so there should be no
9505                 // change to the contents.
9506                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9507                         let res = self.internal_open_channel(counterparty_node_id, msg);
9508                         let persist = match &res {
9509                                 Err(e) if e.closes_channel() => {
9510                                         debug_assert!(false, "We shouldn't close a new channel");
9511                                         NotifyOption::DoPersist
9512                                 },
9513                                 _ => NotifyOption::SkipPersistHandleEvents,
9514                         };
9515                         let _ = handle_error!(self, res, *counterparty_node_id);
9516                         persist
9517                 });
9518         }
9519
9520         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
9521                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9522                         "Dual-funded channels not supported".to_owned(),
9523                          msg.common_fields.temporary_channel_id.clone())), *counterparty_node_id);
9524         }
9525
9526         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
9527                 // Note that we never need to persist the updated ChannelManager for an inbound
9528                 // accept_channel message - pre-funded channels are never written so there should be no
9529                 // change to the contents.
9530                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9531                         let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
9532                         NotifyOption::SkipPersistHandleEvents
9533                 });
9534         }
9535
9536         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
9537                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9538                         "Dual-funded channels not supported".to_owned(),
9539                          msg.common_fields.temporary_channel_id.clone())), *counterparty_node_id);
9540         }
9541
9542         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
9543                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9544                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
9545         }
9546
9547         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
9548                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9549                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
9550         }
9551
9552         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
9553                 // Note that we never need to persist the updated ChannelManager for an inbound
9554                 // channel_ready message - while the channel's state will change, any channel_ready message
9555                 // will ultimately be re-sent on startup and the `ChannelMonitor` won't be updated so we
9556                 // will not force-close the channel on startup.
9557                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9558                         let res = self.internal_channel_ready(counterparty_node_id, msg);
9559                         let persist = match &res {
9560                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9561                                 _ => NotifyOption::SkipPersistHandleEvents,
9562                         };
9563                         let _ = handle_error!(self, res, *counterparty_node_id);
9564                         persist
9565                 });
9566         }
9567
9568         fn handle_stfu(&self, counterparty_node_id: &PublicKey, msg: &msgs::Stfu) {
9569                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9570                         "Quiescence not supported".to_owned(),
9571                          msg.channel_id.clone())), *counterparty_node_id);
9572         }
9573
9574         #[cfg(splicing)]
9575         fn handle_splice(&self, counterparty_node_id: &PublicKey, msg: &msgs::Splice) {
9576                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9577                         "Splicing not supported".to_owned(),
9578                          msg.channel_id.clone())), *counterparty_node_id);
9579         }
9580
9581         #[cfg(splicing)]
9582         fn handle_splice_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::SpliceAck) {
9583                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9584                         "Splicing not supported (splice_ack)".to_owned(),
9585                          msg.channel_id.clone())), *counterparty_node_id);
9586         }
9587
9588         #[cfg(splicing)]
9589         fn handle_splice_locked(&self, counterparty_node_id: &PublicKey, msg: &msgs::SpliceLocked) {
9590                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9591                         "Splicing not supported (splice_locked)".to_owned(),
9592                          msg.channel_id.clone())), *counterparty_node_id);
9593         }
9594
9595         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
9596                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9597                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
9598         }
9599
9600         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
9601                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9602                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
9603         }
9604
9605         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
9606                 // Note that we never need to persist the updated ChannelManager for an inbound
9607                 // update_add_htlc message - the message itself doesn't change our channel state only the
9608                 // `commitment_signed` message afterwards will.
9609                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9610                         let res = self.internal_update_add_htlc(counterparty_node_id, msg);
9611                         let persist = match &res {
9612                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9613                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9614                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
9615                         };
9616                         let _ = handle_error!(self, res, *counterparty_node_id);
9617                         persist
9618                 });
9619         }
9620
9621         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
9622                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9623                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
9624         }
9625
9626         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
9627                 // Note that we never need to persist the updated ChannelManager for an inbound
9628                 // update_fail_htlc message - the message itself doesn't change our channel state only the
9629                 // `commitment_signed` message afterwards will.
9630                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9631                         let res = self.internal_update_fail_htlc(counterparty_node_id, msg);
9632                         let persist = match &res {
9633                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9634                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9635                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
9636                         };
9637                         let _ = handle_error!(self, res, *counterparty_node_id);
9638                         persist
9639                 });
9640         }
9641
9642         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
9643                 // Note that we never need to persist the updated ChannelManager for an inbound
9644                 // update_fail_malformed_htlc message - the message itself doesn't change our channel state
9645                 // only the `commitment_signed` message afterwards will.
9646                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9647                         let res = self.internal_update_fail_malformed_htlc(counterparty_node_id, msg);
9648                         let persist = match &res {
9649                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9650                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9651                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
9652                         };
9653                         let _ = handle_error!(self, res, *counterparty_node_id);
9654                         persist
9655                 });
9656         }
9657
9658         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
9659                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9660                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
9661         }
9662
9663         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
9664                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9665                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
9666         }
9667
9668         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
9669                 // Note that we never need to persist the updated ChannelManager for an inbound
9670                 // update_fee message - the message itself doesn't change our channel state only the
9671                 // `commitment_signed` message afterwards will.
9672                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9673                         let res = self.internal_update_fee(counterparty_node_id, msg);
9674                         let persist = match &res {
9675                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9676                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9677                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
9678                         };
9679                         let _ = handle_error!(self, res, *counterparty_node_id);
9680                         persist
9681                 });
9682         }
9683
9684         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
9685                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9686                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
9687         }
9688
9689         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
9690                 PersistenceNotifierGuard::optionally_notify(self, || {
9691                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
9692                                 persist
9693                         } else {
9694                                 NotifyOption::DoPersist
9695                         }
9696                 });
9697         }
9698
9699         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
9700                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9701                         let res = self.internal_channel_reestablish(counterparty_node_id, msg);
9702                         let persist = match &res {
9703                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9704                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9705                                 Ok(persist) => *persist,
9706                         };
9707                         let _ = handle_error!(self, res, *counterparty_node_id);
9708                         persist
9709                 });
9710         }
9711
9712         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
9713                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(
9714                         self, || NotifyOption::SkipPersistHandleEvents);
9715                 let mut failed_channels = Vec::new();
9716                 let mut per_peer_state = self.per_peer_state.write().unwrap();
9717                 let remove_peer = {
9718                         log_debug!(
9719                                 WithContext::from(&self.logger, Some(*counterparty_node_id), None, None),
9720                                 "Marking channels with {} disconnected and generating channel_updates.",
9721                                 log_pubkey!(counterparty_node_id)
9722                         );
9723                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
9724                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9725                                 let peer_state = &mut *peer_state_lock;
9726                                 let pending_msg_events = &mut peer_state.pending_msg_events;
9727                                 peer_state.channel_by_id.retain(|_, phase| {
9728                                         let context = match phase {
9729                                                 ChannelPhase::Funded(chan) => {
9730                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
9731                                                         if chan.remove_uncommitted_htlcs_and_mark_paused(&&logger).is_ok() {
9732                                                                 // We only retain funded channels that are not shutdown.
9733                                                                 return true;
9734                                                         }
9735                                                         &mut chan.context
9736                                                 },
9737                                                 // If we get disconnected and haven't yet committed to a funding
9738                                                 // transaction, we can replay the `open_channel` on reconnection, so don't
9739                                                 // bother dropping the channel here. However, if we already committed to
9740                                                 // the funding transaction we don't yet support replaying the funding
9741                                                 // handshake (and bailing if the peer rejects it), so we force-close in
9742                                                 // that case.
9743                                                 ChannelPhase::UnfundedOutboundV1(chan) if chan.is_resumable() => return true,
9744                                                 ChannelPhase::UnfundedOutboundV1(chan) => &mut chan.context,
9745                                                 // Unfunded inbound channels will always be removed.
9746                                                 ChannelPhase::UnfundedInboundV1(chan) => {
9747                                                         &mut chan.context
9748                                                 },
9749                                                 #[cfg(any(dual_funding, splicing))]
9750                                                 ChannelPhase::UnfundedOutboundV2(chan) => {
9751                                                         &mut chan.context
9752                                                 },
9753                                                 #[cfg(any(dual_funding, splicing))]
9754                                                 ChannelPhase::UnfundedInboundV2(chan) => {
9755                                                         &mut chan.context
9756                                                 },
9757                                         };
9758                                         // Clean up for removal.
9759                                         update_maps_on_chan_removal!(self, &context);
9760                                         failed_channels.push(context.force_shutdown(false, ClosureReason::DisconnectedPeer));
9761                                         false
9762                                 });
9763                                 // Note that we don't bother generating any events for pre-accept channels -
9764                                 // they're not considered "channels" yet from the PoV of our events interface.
9765                                 peer_state.inbound_channel_request_by_id.clear();
9766                                 pending_msg_events.retain(|msg| {
9767                                         match msg {
9768                                                 // V1 Channel Establishment
9769                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
9770                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
9771                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
9772                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
9773                                                 // V2 Channel Establishment
9774                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
9775                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
9776                                                 // Common Channel Establishment
9777                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
9778                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
9779                                                 // Quiescence
9780                                                 &events::MessageSendEvent::SendStfu { .. } => false,
9781                                                 // Splicing
9782                                                 &events::MessageSendEvent::SendSplice { .. } => false,
9783                                                 &events::MessageSendEvent::SendSpliceAck { .. } => false,
9784                                                 &events::MessageSendEvent::SendSpliceLocked { .. } => false,
9785                                                 // Interactive Transaction Construction
9786                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
9787                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
9788                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
9789                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
9790                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
9791                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
9792                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
9793                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
9794                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
9795                                                 // Channel Operations
9796                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
9797                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
9798                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
9799                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
9800                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
9801                                                 &events::MessageSendEvent::HandleError { .. } => false,
9802                                                 // Gossip
9803                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
9804                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
9805                                                 // [`ChannelManager::pending_broadcast_events`] holds the [`BroadcastChannelUpdate`]
9806                                                 // This check here is to ensure exhaustivity.
9807                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => {
9808                                                         debug_assert!(false, "This event shouldn't have been here");
9809                                                         false
9810                                                 },
9811                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
9812                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
9813                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
9814                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
9815                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
9816                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
9817                                         }
9818                                 });
9819                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
9820                                 peer_state.is_connected = false;
9821                                 peer_state.ok_to_remove(true)
9822                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
9823                 };
9824                 if remove_peer {
9825                         per_peer_state.remove(counterparty_node_id);
9826                 }
9827                 mem::drop(per_peer_state);
9828
9829                 for failure in failed_channels.drain(..) {
9830                         self.finish_close_channel(failure);
9831                 }
9832         }
9833
9834         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
9835                 let logger = WithContext::from(&self.logger, Some(*counterparty_node_id), None, None);
9836                 if !init_msg.features.supports_static_remote_key() {
9837                         log_debug!(logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
9838                         return Err(());
9839                 }
9840
9841                 let mut res = Ok(());
9842
9843                 PersistenceNotifierGuard::optionally_notify(self, || {
9844                         // If we have too many peers connected which don't have funded channels, disconnect the
9845                         // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
9846                         // unfunded channels taking up space in memory for disconnected peers, we still let new
9847                         // peers connect, but we'll reject new channels from them.
9848                         let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
9849                         let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
9850
9851                         {
9852                                 let mut peer_state_lock = self.per_peer_state.write().unwrap();
9853                                 match peer_state_lock.entry(counterparty_node_id.clone()) {
9854                                         hash_map::Entry::Vacant(e) => {
9855                                                 if inbound_peer_limited {
9856                                                         res = Err(());
9857                                                         return NotifyOption::SkipPersistNoEvents;
9858                                                 }
9859                                                 e.insert(Mutex::new(PeerState {
9860                                                         channel_by_id: new_hash_map(),
9861                                                         inbound_channel_request_by_id: new_hash_map(),
9862                                                         latest_features: init_msg.features.clone(),
9863                                                         pending_msg_events: Vec::new(),
9864                                                         in_flight_monitor_updates: BTreeMap::new(),
9865                                                         monitor_update_blocked_actions: BTreeMap::new(),
9866                                                         actions_blocking_raa_monitor_updates: BTreeMap::new(),
9867                                                         is_connected: true,
9868                                                 }));
9869                                         },
9870                                         hash_map::Entry::Occupied(e) => {
9871                                                 let mut peer_state = e.get().lock().unwrap();
9872                                                 peer_state.latest_features = init_msg.features.clone();
9873
9874                                                 let best_block_height = self.best_block.read().unwrap().height;
9875                                                 if inbound_peer_limited &&
9876                                                         Self::unfunded_channel_count(&*peer_state, best_block_height) ==
9877                                                         peer_state.channel_by_id.len()
9878                                                 {
9879                                                         res = Err(());
9880                                                         return NotifyOption::SkipPersistNoEvents;
9881                                                 }
9882
9883                                                 debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
9884                                                 peer_state.is_connected = true;
9885                                         },
9886                                 }
9887                         }
9888
9889                         log_debug!(logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
9890
9891                         let per_peer_state = self.per_peer_state.read().unwrap();
9892                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
9893                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9894                                 let peer_state = &mut *peer_state_lock;
9895                                 let pending_msg_events = &mut peer_state.pending_msg_events;
9896
9897                                 for (_, phase) in peer_state.channel_by_id.iter_mut() {
9898                                         match phase {
9899                                                 ChannelPhase::Funded(chan) => {
9900                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
9901                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
9902                                                                 node_id: chan.context.get_counterparty_node_id(),
9903                                                                 msg: chan.get_channel_reestablish(&&logger),
9904                                                         });
9905                                                 }
9906
9907                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
9908                                                         pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
9909                                                                 node_id: chan.context.get_counterparty_node_id(),
9910                                                                 msg: chan.get_open_channel(self.chain_hash),
9911                                                         });
9912                                                 }
9913
9914                                                 // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
9915                                                 #[cfg(any(dual_funding, splicing))]
9916                                                 ChannelPhase::UnfundedOutboundV2(chan) => {
9917                                                         pending_msg_events.push(events::MessageSendEvent::SendOpenChannelV2 {
9918                                                                 node_id: chan.context.get_counterparty_node_id(),
9919                                                                 msg: chan.get_open_channel_v2(self.chain_hash),
9920                                                         });
9921                                                 },
9922
9923                                                 ChannelPhase::UnfundedInboundV1(_) => {
9924                                                         // Since unfunded inbound channel maps are cleared upon disconnecting a peer,
9925                                                         // they are not persisted and won't be recovered after a crash.
9926                                                         // Therefore, they shouldn't exist at this point.
9927                                                         debug_assert!(false);
9928                                                 }
9929
9930                                                 // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
9931                                                 #[cfg(any(dual_funding, splicing))]
9932                                                 ChannelPhase::UnfundedInboundV2(channel) => {
9933                                                         // Since unfunded inbound channel maps are cleared upon disconnecting a peer,
9934                                                         // they are not persisted and won't be recovered after a crash.
9935                                                         // Therefore, they shouldn't exist at this point.
9936                                                         debug_assert!(false);
9937                                                 },
9938                                         }
9939                                 }
9940                         }
9941
9942                         return NotifyOption::SkipPersistHandleEvents;
9943                         //TODO: Also re-broadcast announcement_signatures
9944                 });
9945                 res
9946         }
9947
9948         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
9949                 match &msg.data as &str {
9950                         "cannot co-op close channel w/ active htlcs"|
9951                         "link failed to shutdown" =>
9952                         {
9953                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
9954                                 // send one while HTLCs are still present. The issue is tracked at
9955                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
9956                                 // to fix it but none so far have managed to land upstream. The issue appears to be
9957                                 // very low priority for the LND team despite being marked "P1".
9958                                 // We're not going to bother handling this in a sensible way, instead simply
9959                                 // repeating the Shutdown message on repeat until morale improves.
9960                                 if !msg.channel_id.is_zero() {
9961                                         PersistenceNotifierGuard::optionally_notify(
9962                                                 self,
9963                                                 || -> NotifyOption {
9964                                                         let per_peer_state = self.per_peer_state.read().unwrap();
9965                                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
9966                                                         if peer_state_mutex_opt.is_none() { return NotifyOption::SkipPersistNoEvents; }
9967                                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
9968                                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
9969                                                                 if let Some(msg) = chan.get_outbound_shutdown() {
9970                                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
9971                                                                                 node_id: *counterparty_node_id,
9972                                                                                 msg,
9973                                                                         });
9974                                                                 }
9975                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
9976                                                                         node_id: *counterparty_node_id,
9977                                                                         action: msgs::ErrorAction::SendWarningMessage {
9978                                                                                 msg: msgs::WarningMessage {
9979                                                                                         channel_id: msg.channel_id,
9980                                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
9981                                                                                 },
9982                                                                                 log_level: Level::Trace,
9983                                                                         }
9984                                                                 });
9985                                                                 // This can happen in a fairly tight loop, so we absolutely cannot trigger
9986                                                                 // a `ChannelManager` write here.
9987                                                                 return NotifyOption::SkipPersistHandleEvents;
9988                                                         }
9989                                                         NotifyOption::SkipPersistNoEvents
9990                                                 }
9991                                         );
9992                                 }
9993                                 return;
9994                         }
9995                         _ => {}
9996                 }
9997
9998                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9999
10000                 if msg.channel_id.is_zero() {
10001                         let channel_ids: Vec<ChannelId> = {
10002                                 let per_peer_state = self.per_peer_state.read().unwrap();
10003                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
10004                                 if peer_state_mutex_opt.is_none() { return; }
10005                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
10006                                 let peer_state = &mut *peer_state_lock;
10007                                 // Note that we don't bother generating any events for pre-accept channels -
10008                                 // they're not considered "channels" yet from the PoV of our events interface.
10009                                 peer_state.inbound_channel_request_by_id.clear();
10010                                 peer_state.channel_by_id.keys().cloned().collect()
10011                         };
10012                         for channel_id in channel_ids {
10013                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
10014                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
10015                         }
10016                 } else {
10017                         {
10018                                 // First check if we can advance the channel type and try again.
10019                                 let per_peer_state = self.per_peer_state.read().unwrap();
10020                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
10021                                 if peer_state_mutex_opt.is_none() { return; }
10022                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
10023                                 let peer_state = &mut *peer_state_lock;
10024                                 match peer_state.channel_by_id.get_mut(&msg.channel_id) {
10025                                         Some(ChannelPhase::UnfundedOutboundV1(ref mut chan)) => {
10026                                                 if let Ok(msg) = chan.maybe_handle_error_without_close(self.chain_hash, &self.fee_estimator) {
10027                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
10028                                                                 node_id: *counterparty_node_id,
10029                                                                 msg,
10030                                                         });
10031                                                         return;
10032                                                 }
10033                                         },
10034                                         #[cfg(any(dual_funding, splicing))]
10035                                         Some(ChannelPhase::UnfundedOutboundV2(ref mut chan)) => {
10036                                                 if let Ok(msg) = chan.maybe_handle_error_without_close(self.chain_hash, &self.fee_estimator) {
10037                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannelV2 {
10038                                                                 node_id: *counterparty_node_id,
10039                                                                 msg,
10040                                                         });
10041                                                         return;
10042                                                 }
10043                                         },
10044                                         None | Some(ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::Funded(_)) => (),
10045                                         #[cfg(any(dual_funding, splicing))]
10046                                         Some(ChannelPhase::UnfundedInboundV2(_)) => (),
10047                                 }
10048                         }
10049
10050                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
10051                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
10052                 }
10053         }
10054
10055         fn provided_node_features(&self) -> NodeFeatures {
10056                 provided_node_features(&self.default_configuration)
10057         }
10058
10059         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
10060                 provided_init_features(&self.default_configuration)
10061         }
10062
10063         fn get_chain_hashes(&self) -> Option<Vec<ChainHash>> {
10064                 Some(vec![self.chain_hash])
10065         }
10066
10067         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
10068                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10069                         "Dual-funded channels not supported".to_owned(),
10070                          msg.channel_id.clone())), *counterparty_node_id);
10071         }
10072
10073         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
10074                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10075                         "Dual-funded channels not supported".to_owned(),
10076                          msg.channel_id.clone())), *counterparty_node_id);
10077         }
10078
10079         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
10080                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10081                         "Dual-funded channels not supported".to_owned(),
10082                          msg.channel_id.clone())), *counterparty_node_id);
10083         }
10084
10085         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
10086                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10087                         "Dual-funded channels not supported".to_owned(),
10088                          msg.channel_id.clone())), *counterparty_node_id);
10089         }
10090
10091         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
10092                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10093                         "Dual-funded channels not supported".to_owned(),
10094                          msg.channel_id.clone())), *counterparty_node_id);
10095         }
10096
10097         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
10098                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10099                         "Dual-funded channels not supported".to_owned(),
10100                          msg.channel_id.clone())), *counterparty_node_id);
10101         }
10102
10103         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
10104                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10105                         "Dual-funded channels not supported".to_owned(),
10106                          msg.channel_id.clone())), *counterparty_node_id);
10107         }
10108
10109         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
10110                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10111                         "Dual-funded channels not supported".to_owned(),
10112                          msg.channel_id.clone())), *counterparty_node_id);
10113         }
10114
10115         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
10116                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10117                         "Dual-funded channels not supported".to_owned(),
10118                          msg.channel_id.clone())), *counterparty_node_id);
10119         }
10120 }
10121
10122 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
10123 OffersMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
10124 where
10125         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
10126         T::Target: BroadcasterInterface,
10127         ES::Target: EntropySource,
10128         NS::Target: NodeSigner,
10129         SP::Target: SignerProvider,
10130         F::Target: FeeEstimator,
10131         R::Target: Router,
10132         L::Target: Logger,
10133 {
10134         fn handle_message(&self, message: OffersMessage, responder: Option<Responder>) -> ResponseInstruction<OffersMessage> {
10135                 let secp_ctx = &self.secp_ctx;
10136                 let expanded_key = &self.inbound_payment_key;
10137
10138                 match message {
10139                         OffersMessage::InvoiceRequest(invoice_request) => {
10140                                 let responder = match responder {
10141                                         Some(responder) => responder,
10142                                         None => return ResponseInstruction::NoResponse,
10143                                 };
10144                                 let amount_msats = match InvoiceBuilder::<DerivedSigningPubkey>::amount_msats(
10145                                         &invoice_request
10146                                 ) {
10147                                         Ok(amount_msats) => amount_msats,
10148                                         Err(error) => return responder.respond(OffersMessage::InvoiceError(error.into())),
10149                                 };
10150                                 let invoice_request = match invoice_request.verify(expanded_key, secp_ctx) {
10151                                         Ok(invoice_request) => invoice_request,
10152                                         Err(()) => {
10153                                                 let error = Bolt12SemanticError::InvalidMetadata;
10154                                                 return responder.respond(OffersMessage::InvoiceError(error.into()));
10155                                         },
10156                                 };
10157
10158                                 let relative_expiry = DEFAULT_RELATIVE_EXPIRY.as_secs() as u32;
10159                                 let (payment_hash, payment_secret) = match self.create_inbound_payment(
10160                                         Some(amount_msats), relative_expiry, None
10161                                 ) {
10162                                         Ok((payment_hash, payment_secret)) => (payment_hash, payment_secret),
10163                                         Err(()) => {
10164                                                 let error = Bolt12SemanticError::InvalidAmount;
10165                                                 return responder.respond(OffersMessage::InvoiceError(error.into()));
10166                                         },
10167                                 };
10168
10169                                 let payment_context = PaymentContext::Bolt12Offer(Bolt12OfferContext {
10170                                         offer_id: invoice_request.offer_id,
10171                                         invoice_request: invoice_request.fields(),
10172                                 });
10173                                 let payment_paths = match self.create_blinded_payment_paths(
10174                                         amount_msats, payment_secret, payment_context
10175                                 ) {
10176                                         Ok(payment_paths) => payment_paths,
10177                                         Err(()) => {
10178                                                 let error = Bolt12SemanticError::MissingPaths;
10179                                                 return responder.respond(OffersMessage::InvoiceError(error.into()));
10180                                         },
10181                                 };
10182
10183                                 #[cfg(not(feature = "std"))]
10184                                 let created_at = Duration::from_secs(
10185                                         self.highest_seen_timestamp.load(Ordering::Acquire) as u64
10186                                 );
10187
10188                                 let response = if invoice_request.keys.is_some() {
10189                                         #[cfg(feature = "std")]
10190                                         let builder = invoice_request.respond_using_derived_keys(
10191                                                 payment_paths, payment_hash
10192                                         );
10193                                         #[cfg(not(feature = "std"))]
10194                                         let builder = invoice_request.respond_using_derived_keys_no_std(
10195                                                 payment_paths, payment_hash, created_at
10196                                         );
10197                                         builder
10198                                                 .map(InvoiceBuilder::<DerivedSigningPubkey>::from)
10199                                                 .and_then(|builder| builder.allow_mpp().build_and_sign(secp_ctx))
10200                                                 .map_err(InvoiceError::from)
10201                                 } else {
10202                                         #[cfg(feature = "std")]
10203                                         let builder = invoice_request.respond_with(payment_paths, payment_hash);
10204                                         #[cfg(not(feature = "std"))]
10205                                         let builder = invoice_request.respond_with_no_std(
10206                                                 payment_paths, payment_hash, created_at
10207                                         );
10208                                         builder
10209                                                 .map(InvoiceBuilder::<ExplicitSigningPubkey>::from)
10210                                                 .and_then(|builder| builder.allow_mpp().build())
10211                                                 .map_err(InvoiceError::from)
10212                                                 .and_then(|invoice| {
10213                                                         #[cfg(c_bindings)]
10214                                                         let mut invoice = invoice;
10215                                                         invoice
10216                                                                 .sign(|invoice: &UnsignedBolt12Invoice|
10217                                                                         self.node_signer.sign_bolt12_invoice(invoice)
10218                                                                 )
10219                                                                 .map_err(InvoiceError::from)
10220                                                 })
10221                                 };
10222
10223                                 match response {
10224                                         Ok(invoice) => return responder.respond(OffersMessage::Invoice(invoice)),
10225                                         Err(error) => return responder.respond(OffersMessage::InvoiceError(error.into())),
10226                                 }
10227                         },
10228                         OffersMessage::Invoice(invoice) => {
10229                                 let response = invoice
10230                                         .verify(expanded_key, secp_ctx)
10231                                         .map_err(|()| InvoiceError::from_string("Unrecognized invoice".to_owned()))
10232                                         .and_then(|payment_id| {
10233                                                 let features = self.bolt12_invoice_features();
10234                                                 if invoice.invoice_features().requires_unknown_bits_from(&features) {
10235                                                         Err(InvoiceError::from(Bolt12SemanticError::UnknownRequiredFeatures))
10236                                                 } else {
10237                                                         self.send_payment_for_bolt12_invoice(&invoice, payment_id)
10238                                                                 .map_err(|e| {
10239                                                                         log_trace!(self.logger, "Failed paying invoice: {:?}", e);
10240                                                                         InvoiceError::from_string(format!("{:?}", e))
10241                                                                 })
10242                                                 }
10243                                         });
10244
10245                                 match (responder, response) {
10246                                         (Some(responder), Err(e)) => responder.respond(OffersMessage::InvoiceError(e)),
10247                                         (None, Err(_)) => {
10248                                                 log_trace!(
10249                                                         self.logger,
10250                                                         "A response was generated, but there is no reply_path specified for sending the response."
10251                                                 );
10252                                                 return ResponseInstruction::NoResponse;
10253                                         }
10254                                         _ => return ResponseInstruction::NoResponse,
10255                                 }
10256                         },
10257                         OffersMessage::InvoiceError(invoice_error) => {
10258                                 log_trace!(self.logger, "Received invoice_error: {}", invoice_error);
10259                                 return ResponseInstruction::NoResponse;
10260                         },
10261                 }
10262         }
10263
10264         fn release_pending_messages(&self) -> Vec<PendingOnionMessage<OffersMessage>> {
10265                 core::mem::take(&mut self.pending_offers_messages.lock().unwrap())
10266         }
10267 }
10268
10269 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
10270 NodeIdLookUp for ChannelManager<M, T, ES, NS, SP, F, R, L>
10271 where
10272         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
10273         T::Target: BroadcasterInterface,
10274         ES::Target: EntropySource,
10275         NS::Target: NodeSigner,
10276         SP::Target: SignerProvider,
10277         F::Target: FeeEstimator,
10278         R::Target: Router,
10279         L::Target: Logger,
10280 {
10281         fn next_node_id(&self, short_channel_id: u64) -> Option<PublicKey> {
10282                 self.short_to_chan_info.read().unwrap().get(&short_channel_id).map(|(pubkey, _)| *pubkey)
10283         }
10284 }
10285
10286 /// Fetches the set of [`NodeFeatures`] flags that are provided by or required by
10287 /// [`ChannelManager`].
10288 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
10289         let mut node_features = provided_init_features(config).to_context();
10290         node_features.set_keysend_optional();
10291         node_features
10292 }
10293
10294 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags that are provided by or required by
10295 /// [`ChannelManager`].
10296 ///
10297 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
10298 /// or not. Thus, this method is not public.
10299 #[cfg(any(feature = "_test_utils", test))]
10300 pub(crate) fn provided_bolt11_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
10301         provided_init_features(config).to_context()
10302 }
10303
10304 /// Fetches the set of [`Bolt12InvoiceFeatures`] flags that are provided by or required by
10305 /// [`ChannelManager`].
10306 pub(crate) fn provided_bolt12_invoice_features(config: &UserConfig) -> Bolt12InvoiceFeatures {
10307         provided_init_features(config).to_context()
10308 }
10309
10310 /// Fetches the set of [`ChannelFeatures`] flags that are provided by or required by
10311 /// [`ChannelManager`].
10312 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
10313         provided_init_features(config).to_context()
10314 }
10315
10316 /// Fetches the set of [`ChannelTypeFeatures`] flags that are provided by or required by
10317 /// [`ChannelManager`].
10318 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
10319         ChannelTypeFeatures::from_init(&provided_init_features(config))
10320 }
10321
10322 /// Fetches the set of [`InitFeatures`] flags that are provided by or required by
10323 /// [`ChannelManager`].
10324 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
10325         // Note that if new features are added here which other peers may (eventually) require, we
10326         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
10327         // [`ErroringMessageHandler`].
10328         let mut features = InitFeatures::empty();
10329         features.set_data_loss_protect_required();
10330         features.set_upfront_shutdown_script_optional();
10331         features.set_variable_length_onion_required();
10332         features.set_static_remote_key_required();
10333         features.set_payment_secret_required();
10334         features.set_basic_mpp_optional();
10335         features.set_wumbo_optional();
10336         features.set_shutdown_any_segwit_optional();
10337         features.set_channel_type_optional();
10338         features.set_scid_privacy_optional();
10339         features.set_zero_conf_optional();
10340         features.set_route_blinding_optional();
10341         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
10342                 features.set_anchors_zero_fee_htlc_tx_optional();
10343         }
10344         features
10345 }
10346
10347 const SERIALIZATION_VERSION: u8 = 1;
10348 const MIN_SERIALIZATION_VERSION: u8 = 1;
10349
10350 impl_writeable_tlv_based!(PhantomRouteHints, {
10351         (2, channels, required_vec),
10352         (4, phantom_scid, required),
10353         (6, real_node_pubkey, required),
10354 });
10355
10356 impl_writeable_tlv_based!(BlindedForward, {
10357         (0, inbound_blinding_point, required),
10358         (1, failure, (default_value, BlindedFailure::FromIntroductionNode)),
10359 });
10360
10361 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
10362         (0, Forward) => {
10363                 (0, onion_packet, required),
10364                 (1, blinded, option),
10365                 (2, short_channel_id, required),
10366         },
10367         (1, Receive) => {
10368                 (0, payment_data, required),
10369                 (1, phantom_shared_secret, option),
10370                 (2, incoming_cltv_expiry, required),
10371                 (3, payment_metadata, option),
10372                 (5, custom_tlvs, optional_vec),
10373                 (7, requires_blinded_error, (default_value, false)),
10374                 (9, payment_context, option),
10375         },
10376         (2, ReceiveKeysend) => {
10377                 (0, payment_preimage, required),
10378                 (1, requires_blinded_error, (default_value, false)),
10379                 (2, incoming_cltv_expiry, required),
10380                 (3, payment_metadata, option),
10381                 (4, payment_data, option), // Added in 0.0.116
10382                 (5, custom_tlvs, optional_vec),
10383         },
10384 ;);
10385
10386 impl_writeable_tlv_based!(PendingHTLCInfo, {
10387         (0, routing, required),
10388         (2, incoming_shared_secret, required),
10389         (4, payment_hash, required),
10390         (6, outgoing_amt_msat, required),
10391         (8, outgoing_cltv_value, required),
10392         (9, incoming_amt_msat, option),
10393         (10, skimmed_fee_msat, option),
10394 });
10395
10396
10397 impl Writeable for HTLCFailureMsg {
10398         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
10399                 match self {
10400                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
10401                                 0u8.write(writer)?;
10402                                 channel_id.write(writer)?;
10403                                 htlc_id.write(writer)?;
10404                                 reason.write(writer)?;
10405                         },
10406                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
10407                                 channel_id, htlc_id, sha256_of_onion, failure_code
10408                         }) => {
10409                                 1u8.write(writer)?;
10410                                 channel_id.write(writer)?;
10411                                 htlc_id.write(writer)?;
10412                                 sha256_of_onion.write(writer)?;
10413                                 failure_code.write(writer)?;
10414                         },
10415                 }
10416                 Ok(())
10417         }
10418 }
10419
10420 impl Readable for HTLCFailureMsg {
10421         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
10422                 let id: u8 = Readable::read(reader)?;
10423                 match id {
10424                         0 => {
10425                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
10426                                         channel_id: Readable::read(reader)?,
10427                                         htlc_id: Readable::read(reader)?,
10428                                         reason: Readable::read(reader)?,
10429                                 }))
10430                         },
10431                         1 => {
10432                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
10433                                         channel_id: Readable::read(reader)?,
10434                                         htlc_id: Readable::read(reader)?,
10435                                         sha256_of_onion: Readable::read(reader)?,
10436                                         failure_code: Readable::read(reader)?,
10437                                 }))
10438                         },
10439                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
10440                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
10441                         // messages contained in the variants.
10442                         // In version 0.0.101, support for reading the variants with these types was added, and
10443                         // we should migrate to writing these variants when UpdateFailHTLC or
10444                         // UpdateFailMalformedHTLC get TLV fields.
10445                         2 => {
10446                                 let length: BigSize = Readable::read(reader)?;
10447                                 let mut s = FixedLengthReader::new(reader, length.0);
10448                                 let res = Readable::read(&mut s)?;
10449                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
10450                                 Ok(HTLCFailureMsg::Relay(res))
10451                         },
10452                         3 => {
10453                                 let length: BigSize = Readable::read(reader)?;
10454                                 let mut s = FixedLengthReader::new(reader, length.0);
10455                                 let res = Readable::read(&mut s)?;
10456                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
10457                                 Ok(HTLCFailureMsg::Malformed(res))
10458                         },
10459                         _ => Err(DecodeError::UnknownRequiredFeature),
10460                 }
10461         }
10462 }
10463
10464 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
10465         (0, Forward),
10466         (1, Fail),
10467 );
10468
10469 impl_writeable_tlv_based_enum!(BlindedFailure,
10470         (0, FromIntroductionNode) => {},
10471         (2, FromBlindedNode) => {}, ;
10472 );
10473
10474 impl_writeable_tlv_based!(HTLCPreviousHopData, {
10475         (0, short_channel_id, required),
10476         (1, phantom_shared_secret, option),
10477         (2, outpoint, required),
10478         (3, blinded_failure, option),
10479         (4, htlc_id, required),
10480         (6, incoming_packet_shared_secret, required),
10481         (7, user_channel_id, option),
10482         // Note that by the time we get past the required read for type 2 above, outpoint will be
10483         // filled in, so we can safely unwrap it here.
10484         (9, channel_id, (default_value, ChannelId::v1_from_funding_outpoint(outpoint.0.unwrap()))),
10485 });
10486
10487 impl Writeable for ClaimableHTLC {
10488         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
10489                 let (payment_data, keysend_preimage) = match &self.onion_payload {
10490                         OnionPayload::Invoice { _legacy_hop_data } => {
10491                                 (_legacy_hop_data.as_ref(), None)
10492                         },
10493                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
10494                 };
10495                 write_tlv_fields!(writer, {
10496                         (0, self.prev_hop, required),
10497                         (1, self.total_msat, required),
10498                         (2, self.value, required),
10499                         (3, self.sender_intended_value, required),
10500                         (4, payment_data, option),
10501                         (5, self.total_value_received, option),
10502                         (6, self.cltv_expiry, required),
10503                         (8, keysend_preimage, option),
10504                         (10, self.counterparty_skimmed_fee_msat, option),
10505                 });
10506                 Ok(())
10507         }
10508 }
10509
10510 impl Readable for ClaimableHTLC {
10511         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
10512                 _init_and_read_len_prefixed_tlv_fields!(reader, {
10513                         (0, prev_hop, required),
10514                         (1, total_msat, option),
10515                         (2, value_ser, required),
10516                         (3, sender_intended_value, option),
10517                         (4, payment_data_opt, option),
10518                         (5, total_value_received, option),
10519                         (6, cltv_expiry, required),
10520                         (8, keysend_preimage, option),
10521                         (10, counterparty_skimmed_fee_msat, option),
10522                 });
10523                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
10524                 let value = value_ser.0.unwrap();
10525                 let onion_payload = match keysend_preimage {
10526                         Some(p) => {
10527                                 if payment_data.is_some() {
10528                                         return Err(DecodeError::InvalidValue)
10529                                 }
10530                                 if total_msat.is_none() {
10531                                         total_msat = Some(value);
10532                                 }
10533                                 OnionPayload::Spontaneous(p)
10534                         },
10535                         None => {
10536                                 if total_msat.is_none() {
10537                                         if payment_data.is_none() {
10538                                                 return Err(DecodeError::InvalidValue)
10539                                         }
10540                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
10541                                 }
10542                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
10543                         },
10544                 };
10545                 Ok(Self {
10546                         prev_hop: prev_hop.0.unwrap(),
10547                         timer_ticks: 0,
10548                         value,
10549                         sender_intended_value: sender_intended_value.unwrap_or(value),
10550                         total_value_received,
10551                         total_msat: total_msat.unwrap(),
10552                         onion_payload,
10553                         cltv_expiry: cltv_expiry.0.unwrap(),
10554                         counterparty_skimmed_fee_msat,
10555                 })
10556         }
10557 }
10558
10559 impl Readable for HTLCSource {
10560         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
10561                 let id: u8 = Readable::read(reader)?;
10562                 match id {
10563                         0 => {
10564                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
10565                                 let mut first_hop_htlc_msat: u64 = 0;
10566                                 let mut path_hops = Vec::new();
10567                                 let mut payment_id = None;
10568                                 let mut payment_params: Option<PaymentParameters> = None;
10569                                 let mut blinded_tail: Option<BlindedTail> = None;
10570                                 read_tlv_fields!(reader, {
10571                                         (0, session_priv, required),
10572                                         (1, payment_id, option),
10573                                         (2, first_hop_htlc_msat, required),
10574                                         (4, path_hops, required_vec),
10575                                         (5, payment_params, (option: ReadableArgs, 0)),
10576                                         (6, blinded_tail, option),
10577                                 });
10578                                 if payment_id.is_none() {
10579                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
10580                                         // instead.
10581                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
10582                                 }
10583                                 let path = Path { hops: path_hops, blinded_tail };
10584                                 if path.hops.len() == 0 {
10585                                         return Err(DecodeError::InvalidValue);
10586                                 }
10587                                 if let Some(params) = payment_params.as_mut() {
10588                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
10589                                                 if final_cltv_expiry_delta == &0 {
10590                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
10591                                                 }
10592                                         }
10593                                 }
10594                                 Ok(HTLCSource::OutboundRoute {
10595                                         session_priv: session_priv.0.unwrap(),
10596                                         first_hop_htlc_msat,
10597                                         path,
10598                                         payment_id: payment_id.unwrap(),
10599                                 })
10600                         }
10601                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
10602                         _ => Err(DecodeError::UnknownRequiredFeature),
10603                 }
10604         }
10605 }
10606
10607 impl Writeable for HTLCSource {
10608         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
10609                 match self {
10610                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
10611                                 0u8.write(writer)?;
10612                                 let payment_id_opt = Some(payment_id);
10613                                 write_tlv_fields!(writer, {
10614                                         (0, session_priv, required),
10615                                         (1, payment_id_opt, option),
10616                                         (2, first_hop_htlc_msat, required),
10617                                         // 3 was previously used to write a PaymentSecret for the payment.
10618                                         (4, path.hops, required_vec),
10619                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
10620                                         (6, path.blinded_tail, option),
10621                                  });
10622                         }
10623                         HTLCSource::PreviousHopData(ref field) => {
10624                                 1u8.write(writer)?;
10625                                 field.write(writer)?;
10626                         }
10627                 }
10628                 Ok(())
10629         }
10630 }
10631
10632 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
10633         (0, forward_info, required),
10634         (1, prev_user_channel_id, (default_value, 0)),
10635         (2, prev_short_channel_id, required),
10636         (4, prev_htlc_id, required),
10637         (6, prev_funding_outpoint, required),
10638         // Note that by the time we get past the required read for type 6 above, prev_funding_outpoint will be
10639         // filled in, so we can safely unwrap it here.
10640         (7, prev_channel_id, (default_value, ChannelId::v1_from_funding_outpoint(prev_funding_outpoint.0.unwrap()))),
10641 });
10642
10643 impl Writeable for HTLCForwardInfo {
10644         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
10645                 const FAIL_HTLC_VARIANT_ID: u8 = 1;
10646                 match self {
10647                         Self::AddHTLC(info) => {
10648                                 0u8.write(w)?;
10649                                 info.write(w)?;
10650                         },
10651                         Self::FailHTLC { htlc_id, err_packet } => {
10652                                 FAIL_HTLC_VARIANT_ID.write(w)?;
10653                                 write_tlv_fields!(w, {
10654                                         (0, htlc_id, required),
10655                                         (2, err_packet, required),
10656                                 });
10657                         },
10658                         Self::FailMalformedHTLC { htlc_id, failure_code, sha256_of_onion } => {
10659                                 // Since this variant was added in 0.0.119, write this as `::FailHTLC` with an empty error
10660                                 // packet so older versions have something to fail back with, but serialize the real data as
10661                                 // optional TLVs for the benefit of newer versions.
10662                                 FAIL_HTLC_VARIANT_ID.write(w)?;
10663                                 let dummy_err_packet = msgs::OnionErrorPacket { data: Vec::new() };
10664                                 write_tlv_fields!(w, {
10665                                         (0, htlc_id, required),
10666                                         (1, failure_code, required),
10667                                         (2, dummy_err_packet, required),
10668                                         (3, sha256_of_onion, required),
10669                                 });
10670                         },
10671                 }
10672                 Ok(())
10673         }
10674 }
10675
10676 impl Readable for HTLCForwardInfo {
10677         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
10678                 let id: u8 = Readable::read(r)?;
10679                 Ok(match id {
10680                         0 => Self::AddHTLC(Readable::read(r)?),
10681                         1 => {
10682                                 _init_and_read_len_prefixed_tlv_fields!(r, {
10683                                         (0, htlc_id, required),
10684                                         (1, malformed_htlc_failure_code, option),
10685                                         (2, err_packet, required),
10686                                         (3, sha256_of_onion, option),
10687                                 });
10688                                 if let Some(failure_code) = malformed_htlc_failure_code {
10689                                         Self::FailMalformedHTLC {
10690                                                 htlc_id: _init_tlv_based_struct_field!(htlc_id, required),
10691                                                 failure_code,
10692                                                 sha256_of_onion: sha256_of_onion.ok_or(DecodeError::InvalidValue)?,
10693                                         }
10694                                 } else {
10695                                         Self::FailHTLC {
10696                                                 htlc_id: _init_tlv_based_struct_field!(htlc_id, required),
10697                                                 err_packet: _init_tlv_based_struct_field!(err_packet, required),
10698                                         }
10699                                 }
10700                         },
10701                         _ => return Err(DecodeError::InvalidValue),
10702                 })
10703         }
10704 }
10705
10706 impl_writeable_tlv_based!(PendingInboundPayment, {
10707         (0, payment_secret, required),
10708         (2, expiry_time, required),
10709         (4, user_payment_id, required),
10710         (6, payment_preimage, required),
10711         (8, min_value_msat, required),
10712 });
10713
10714 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> Writeable for ChannelManager<M, T, ES, NS, SP, F, R, L>
10715 where
10716         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
10717         T::Target: BroadcasterInterface,
10718         ES::Target: EntropySource,
10719         NS::Target: NodeSigner,
10720         SP::Target: SignerProvider,
10721         F::Target: FeeEstimator,
10722         R::Target: Router,
10723         L::Target: Logger,
10724 {
10725         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
10726                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
10727
10728                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
10729
10730                 self.chain_hash.write(writer)?;
10731                 {
10732                         let best_block = self.best_block.read().unwrap();
10733                         best_block.height.write(writer)?;
10734                         best_block.block_hash.write(writer)?;
10735                 }
10736
10737                 let per_peer_state = self.per_peer_state.write().unwrap();
10738
10739                 let mut serializable_peer_count: u64 = 0;
10740                 {
10741                         let mut number_of_funded_channels = 0;
10742                         for (_, peer_state_mutex) in per_peer_state.iter() {
10743                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
10744                                 let peer_state = &mut *peer_state_lock;
10745                                 if !peer_state.ok_to_remove(false) {
10746                                         serializable_peer_count += 1;
10747                                 }
10748
10749                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
10750                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_broadcast() } else { false }
10751                                 ).count();
10752                         }
10753
10754                         (number_of_funded_channels as u64).write(writer)?;
10755
10756                         for (_, peer_state_mutex) in per_peer_state.iter() {
10757                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
10758                                 let peer_state = &mut *peer_state_lock;
10759                                 for channel in peer_state.channel_by_id.iter().filter_map(
10760                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
10761                                                 if channel.context.is_funding_broadcast() { Some(channel) } else { None }
10762                                         } else { None }
10763                                 ) {
10764                                         channel.write(writer)?;
10765                                 }
10766                         }
10767                 }
10768
10769                 {
10770                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
10771                         (forward_htlcs.len() as u64).write(writer)?;
10772                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
10773                                 short_channel_id.write(writer)?;
10774                                 (pending_forwards.len() as u64).write(writer)?;
10775                                 for forward in pending_forwards {
10776                                         forward.write(writer)?;
10777                                 }
10778                         }
10779                 }
10780
10781                 let mut decode_update_add_htlcs_opt = None;
10782                 let decode_update_add_htlcs = self.decode_update_add_htlcs.lock().unwrap();
10783                 if !decode_update_add_htlcs.is_empty() {
10784                         decode_update_add_htlcs_opt = Some(decode_update_add_htlcs);
10785                 }
10786
10787                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
10788                 let claimable_payments = self.claimable_payments.lock().unwrap();
10789                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
10790
10791                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
10792                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
10793                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
10794                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
10795                         payment_hash.write(writer)?;
10796                         (payment.htlcs.len() as u64).write(writer)?;
10797                         for htlc in payment.htlcs.iter() {
10798                                 htlc.write(writer)?;
10799                         }
10800                         htlc_purposes.push(&payment.purpose);
10801                         htlc_onion_fields.push(&payment.onion_fields);
10802                 }
10803
10804                 let mut monitor_update_blocked_actions_per_peer = None;
10805                 let mut peer_states = Vec::new();
10806                 for (_, peer_state_mutex) in per_peer_state.iter() {
10807                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
10808                         // of a lockorder violation deadlock - no other thread can be holding any
10809                         // per_peer_state lock at all.
10810                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
10811                 }
10812
10813                 (serializable_peer_count).write(writer)?;
10814                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
10815                         // Peers which we have no channels to should be dropped once disconnected. As we
10816                         // disconnect all peers when shutting down and serializing the ChannelManager, we
10817                         // consider all peers as disconnected here. There's therefore no need write peers with
10818                         // no channels.
10819                         if !peer_state.ok_to_remove(false) {
10820                                 peer_pubkey.write(writer)?;
10821                                 peer_state.latest_features.write(writer)?;
10822                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
10823                                         monitor_update_blocked_actions_per_peer
10824                                                 .get_or_insert_with(Vec::new)
10825                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
10826                                 }
10827                         }
10828                 }
10829
10830                 let events = self.pending_events.lock().unwrap();
10831                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
10832                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
10833                 // refuse to read the new ChannelManager.
10834                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
10835                 if events_not_backwards_compatible {
10836                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
10837                         // well save the space and not write any events here.
10838                         0u64.write(writer)?;
10839                 } else {
10840                         (events.len() as u64).write(writer)?;
10841                         for (event, _) in events.iter() {
10842                                 event.write(writer)?;
10843                         }
10844                 }
10845
10846                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
10847                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
10848                 // the closing monitor updates were always effectively replayed on startup (either directly
10849                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
10850                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
10851                 0u64.write(writer)?;
10852
10853                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
10854                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
10855                 // likely to be identical.
10856                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
10857                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
10858
10859                 (pending_inbound_payments.len() as u64).write(writer)?;
10860                 for (hash, pending_payment) in pending_inbound_payments.iter() {
10861                         hash.write(writer)?;
10862                         pending_payment.write(writer)?;
10863                 }
10864
10865                 // For backwards compat, write the session privs and their total length.
10866                 let mut num_pending_outbounds_compat: u64 = 0;
10867                 for (_, outbound) in pending_outbound_payments.iter() {
10868                         if !outbound.is_fulfilled() && !outbound.abandoned() {
10869                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
10870                         }
10871                 }
10872                 num_pending_outbounds_compat.write(writer)?;
10873                 for (_, outbound) in pending_outbound_payments.iter() {
10874                         match outbound {
10875                                 PendingOutboundPayment::Legacy { session_privs } |
10876                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
10877                                         for session_priv in session_privs.iter() {
10878                                                 session_priv.write(writer)?;
10879                                         }
10880                                 }
10881                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
10882                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
10883                                 PendingOutboundPayment::Fulfilled { .. } => {},
10884                                 PendingOutboundPayment::Abandoned { .. } => {},
10885                         }
10886                 }
10887
10888                 // Encode without retry info for 0.0.101 compatibility.
10889                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = new_hash_map();
10890                 for (id, outbound) in pending_outbound_payments.iter() {
10891                         match outbound {
10892                                 PendingOutboundPayment::Legacy { session_privs } |
10893                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
10894                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
10895                                 },
10896                                 _ => {},
10897                         }
10898                 }
10899
10900                 let mut pending_intercepted_htlcs = None;
10901                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
10902                 if our_pending_intercepts.len() != 0 {
10903                         pending_intercepted_htlcs = Some(our_pending_intercepts);
10904                 }
10905
10906                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
10907                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
10908                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
10909                         // map. Thus, if there are no entries we skip writing a TLV for it.
10910                         pending_claiming_payments = None;
10911                 }
10912
10913                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
10914                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
10915                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
10916                                 if !updates.is_empty() {
10917                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(new_hash_map()); }
10918                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
10919                                 }
10920                         }
10921                 }
10922
10923                 write_tlv_fields!(writer, {
10924                         (1, pending_outbound_payments_no_retry, required),
10925                         (2, pending_intercepted_htlcs, option),
10926                         (3, pending_outbound_payments, required),
10927                         (4, pending_claiming_payments, option),
10928                         (5, self.our_network_pubkey, required),
10929                         (6, monitor_update_blocked_actions_per_peer, option),
10930                         (7, self.fake_scid_rand_bytes, required),
10931                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
10932                         (9, htlc_purposes, required_vec),
10933                         (10, in_flight_monitor_updates, option),
10934                         (11, self.probing_cookie_secret, required),
10935                         (13, htlc_onion_fields, optional_vec),
10936                         (14, decode_update_add_htlcs_opt, option),
10937                 });
10938
10939                 Ok(())
10940         }
10941 }
10942
10943 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
10944         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
10945                 (self.len() as u64).write(w)?;
10946                 for (event, action) in self.iter() {
10947                         event.write(w)?;
10948                         action.write(w)?;
10949                         #[cfg(debug_assertions)] {
10950                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
10951                                 // be persisted and are regenerated on restart. However, if such an event has a
10952                                 // post-event-handling action we'll write nothing for the event and would have to
10953                                 // either forget the action or fail on deserialization (which we do below). Thus,
10954                                 // check that the event is sane here.
10955                                 let event_encoded = event.encode();
10956                                 let event_read: Option<Event> =
10957                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
10958                                 if action.is_some() { assert!(event_read.is_some()); }
10959                         }
10960                 }
10961                 Ok(())
10962         }
10963 }
10964 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
10965         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
10966                 let len: u64 = Readable::read(reader)?;
10967                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
10968                 let mut events: Self = VecDeque::with_capacity(cmp::min(
10969                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
10970                         len) as usize);
10971                 for _ in 0..len {
10972                         let ev_opt = MaybeReadable::read(reader)?;
10973                         let action = Readable::read(reader)?;
10974                         if let Some(ev) = ev_opt {
10975                                 events.push_back((ev, action));
10976                         } else if action.is_some() {
10977                                 return Err(DecodeError::InvalidValue);
10978                         }
10979                 }
10980                 Ok(events)
10981         }
10982 }
10983
10984 /// Arguments for the creation of a ChannelManager that are not deserialized.
10985 ///
10986 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
10987 /// is:
10988 /// 1) Deserialize all stored [`ChannelMonitor`]s.
10989 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
10990 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
10991 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
10992 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
10993 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
10994 ///    same way you would handle a [`chain::Filter`] call using
10995 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
10996 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
10997 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
10998 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
10999 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
11000 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
11001 ///    the next step.
11002 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
11003 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
11004 ///
11005 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
11006 /// call any other methods on the newly-deserialized [`ChannelManager`].
11007 ///
11008 /// Note that because some channels may be closed during deserialization, it is critical that you
11009 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
11010 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
11011 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
11012 /// not force-close the same channels but consider them live), you may end up revoking a state for
11013 /// which you've already broadcasted the transaction.
11014 ///
11015 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
11016 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
11017 where
11018         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
11019         T::Target: BroadcasterInterface,
11020         ES::Target: EntropySource,
11021         NS::Target: NodeSigner,
11022         SP::Target: SignerProvider,
11023         F::Target: FeeEstimator,
11024         R::Target: Router,
11025         L::Target: Logger,
11026 {
11027         /// A cryptographically secure source of entropy.
11028         pub entropy_source: ES,
11029
11030         /// A signer that is able to perform node-scoped cryptographic operations.
11031         pub node_signer: NS,
11032
11033         /// The keys provider which will give us relevant keys. Some keys will be loaded during
11034         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
11035         /// signing data.
11036         pub signer_provider: SP,
11037
11038         /// The fee_estimator for use in the ChannelManager in the future.
11039         ///
11040         /// No calls to the FeeEstimator will be made during deserialization.
11041         pub fee_estimator: F,
11042         /// The chain::Watch for use in the ChannelManager in the future.
11043         ///
11044         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
11045         /// you have deserialized ChannelMonitors separately and will add them to your
11046         /// chain::Watch after deserializing this ChannelManager.
11047         pub chain_monitor: M,
11048
11049         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
11050         /// used to broadcast the latest local commitment transactions of channels which must be
11051         /// force-closed during deserialization.
11052         pub tx_broadcaster: T,
11053         /// The router which will be used in the ChannelManager in the future for finding routes
11054         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
11055         ///
11056         /// No calls to the router will be made during deserialization.
11057         pub router: R,
11058         /// The Logger for use in the ChannelManager and which may be used to log information during
11059         /// deserialization.
11060         pub logger: L,
11061         /// Default settings used for new channels. Any existing channels will continue to use the
11062         /// runtime settings which were stored when the ChannelManager was serialized.
11063         pub default_config: UserConfig,
11064
11065         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
11066         /// value.context.get_funding_txo() should be the key).
11067         ///
11068         /// If a monitor is inconsistent with the channel state during deserialization the channel will
11069         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
11070         /// is true for missing channels as well. If there is a monitor missing for which we find
11071         /// channel data Err(DecodeError::InvalidValue) will be returned.
11072         ///
11073         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
11074         /// this struct.
11075         ///
11076         /// This is not exported to bindings users because we have no HashMap bindings
11077         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::EcdsaSigner>>,
11078 }
11079
11080 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
11081                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
11082 where
11083         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
11084         T::Target: BroadcasterInterface,
11085         ES::Target: EntropySource,
11086         NS::Target: NodeSigner,
11087         SP::Target: SignerProvider,
11088         F::Target: FeeEstimator,
11089         R::Target: Router,
11090         L::Target: Logger,
11091 {
11092         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
11093         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
11094         /// populate a HashMap directly from C.
11095         pub fn new(entropy_source: ES, node_signer: NS, signer_provider: SP, fee_estimator: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, default_config: UserConfig,
11096                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::EcdsaSigner>>) -> Self {
11097                 Self {
11098                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
11099                         channel_monitors: hash_map_from_iter(
11100                                 channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) })
11101                         ),
11102                 }
11103         }
11104 }
11105
11106 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
11107 // SipmleArcChannelManager type:
11108 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
11109         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
11110 where
11111         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
11112         T::Target: BroadcasterInterface,
11113         ES::Target: EntropySource,
11114         NS::Target: NodeSigner,
11115         SP::Target: SignerProvider,
11116         F::Target: FeeEstimator,
11117         R::Target: Router,
11118         L::Target: Logger,
11119 {
11120         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
11121                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
11122                 Ok((blockhash, Arc::new(chan_manager)))
11123         }
11124 }
11125
11126 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
11127         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
11128 where
11129         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
11130         T::Target: BroadcasterInterface,
11131         ES::Target: EntropySource,
11132         NS::Target: NodeSigner,
11133         SP::Target: SignerProvider,
11134         F::Target: FeeEstimator,
11135         R::Target: Router,
11136         L::Target: Logger,
11137 {
11138         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
11139                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
11140
11141                 let chain_hash: ChainHash = Readable::read(reader)?;
11142                 let best_block_height: u32 = Readable::read(reader)?;
11143                 let best_block_hash: BlockHash = Readable::read(reader)?;
11144
11145                 let mut failed_htlcs = Vec::new();
11146
11147                 let channel_count: u64 = Readable::read(reader)?;
11148                 let mut funding_txo_set = hash_set_with_capacity(cmp::min(channel_count as usize, 128));
11149                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = hash_map_with_capacity(cmp::min(channel_count as usize, 128));
11150                 let mut outpoint_to_peer = hash_map_with_capacity(cmp::min(channel_count as usize, 128));
11151                 let mut short_to_chan_info = hash_map_with_capacity(cmp::min(channel_count as usize, 128));
11152                 let mut channel_closures = VecDeque::new();
11153                 let mut close_background_events = Vec::new();
11154                 let mut funding_txo_to_channel_id = hash_map_with_capacity(channel_count as usize);
11155                 for _ in 0..channel_count {
11156                         let mut channel: Channel<SP> = Channel::read(reader, (
11157                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
11158                         ))?;
11159                         let logger = WithChannelContext::from(&args.logger, &channel.context, None);
11160                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
11161                         funding_txo_to_channel_id.insert(funding_txo, channel.context.channel_id());
11162                         funding_txo_set.insert(funding_txo.clone());
11163                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
11164                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
11165                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
11166                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
11167                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
11168                                         // But if the channel is behind of the monitor, close the channel:
11169                                         log_error!(logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
11170                                         log_error!(logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
11171                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
11172                                                 log_error!(logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
11173                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
11174                                         }
11175                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
11176                                                 log_error!(logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
11177                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
11178                                         }
11179                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
11180                                                 log_error!(logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
11181                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
11182                                         }
11183                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
11184                                                 log_error!(logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
11185                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
11186                                         }
11187                                         let mut shutdown_result = channel.context.force_shutdown(true, ClosureReason::OutdatedChannelManager);
11188                                         if shutdown_result.unbroadcasted_batch_funding_txid.is_some() {
11189                                                 return Err(DecodeError::InvalidValue);
11190                                         }
11191                                         if let Some((counterparty_node_id, funding_txo, channel_id, update)) = shutdown_result.monitor_update {
11192                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
11193                                                         counterparty_node_id, funding_txo, channel_id, update
11194                                                 });
11195                                         }
11196                                         failed_htlcs.append(&mut shutdown_result.dropped_outbound_htlcs);
11197                                         channel_closures.push_back((events::Event::ChannelClosed {
11198                                                 channel_id: channel.context.channel_id(),
11199                                                 user_channel_id: channel.context.get_user_id(),
11200                                                 reason: ClosureReason::OutdatedChannelManager,
11201                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
11202                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
11203                                                 channel_funding_txo: channel.context.get_funding_txo(),
11204                                         }, None));
11205                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
11206                                                 let mut found_htlc = false;
11207                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
11208                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
11209                                                 }
11210                                                 if !found_htlc {
11211                                                         // If we have some HTLCs in the channel which are not present in the newer
11212                                                         // ChannelMonitor, they have been removed and should be failed back to
11213                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
11214                                                         // were actually claimed we'd have generated and ensured the previous-hop
11215                                                         // claim update ChannelMonitor updates were persisted prior to persising
11216                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
11217                                                         // backwards leg of the HTLC will simply be rejected.
11218                                                         let logger = WithChannelContext::from(&args.logger, &channel.context, Some(*payment_hash));
11219                                                         log_info!(logger,
11220                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
11221                                                                 &channel.context.channel_id(), &payment_hash);
11222                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
11223                                                 }
11224                                         }
11225                                 } else {
11226                                         channel.on_startup_drop_completed_blocked_mon_updates_through(&logger, monitor.get_latest_update_id());
11227                                         log_info!(logger, "Successfully loaded channel {} at update_id {} against monitor at update id {} with {} blocked updates",
11228                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
11229                                                 monitor.get_latest_update_id(), channel.blocked_monitor_updates_pending());
11230                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
11231                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
11232                                         }
11233                                         if let Some(funding_txo) = channel.context.get_funding_txo() {
11234                                                 outpoint_to_peer.insert(funding_txo, channel.context.get_counterparty_node_id());
11235                                         }
11236                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
11237                                                 hash_map::Entry::Occupied(mut entry) => {
11238                                                         let by_id_map = entry.get_mut();
11239                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
11240                                                 },
11241                                                 hash_map::Entry::Vacant(entry) => {
11242                                                         let mut by_id_map = new_hash_map();
11243                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
11244                                                         entry.insert(by_id_map);
11245                                                 }
11246                                         }
11247                                 }
11248                         } else if channel.is_awaiting_initial_mon_persist() {
11249                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
11250                                 // was in-progress, we never broadcasted the funding transaction and can still
11251                                 // safely discard the channel.
11252                                 let _ = channel.context.force_shutdown(false, ClosureReason::DisconnectedPeer);
11253                                 channel_closures.push_back((events::Event::ChannelClosed {
11254                                         channel_id: channel.context.channel_id(),
11255                                         user_channel_id: channel.context.get_user_id(),
11256                                         reason: ClosureReason::DisconnectedPeer,
11257                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
11258                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
11259                                         channel_funding_txo: channel.context.get_funding_txo(),
11260                                 }, None));
11261                         } else {
11262                                 log_error!(logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
11263                                 log_error!(logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
11264                                 log_error!(logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
11265                                 log_error!(logger, " Without the ChannelMonitor we cannot continue without risking funds.");
11266                                 log_error!(logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
11267                                 return Err(DecodeError::InvalidValue);
11268                         }
11269                 }
11270
11271                 for (funding_txo, monitor) in args.channel_monitors.iter() {
11272                         if !funding_txo_set.contains(funding_txo) {
11273                                 let logger = WithChannelMonitor::from(&args.logger, monitor, None);
11274                                 let channel_id = monitor.channel_id();
11275                                 log_info!(logger, "Queueing monitor update to ensure missing channel {} is force closed",
11276                                         &channel_id);
11277                                 let monitor_update = ChannelMonitorUpdate {
11278                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
11279                                         counterparty_node_id: None,
11280                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
11281                                         channel_id: Some(monitor.channel_id()),
11282                                 };
11283                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, channel_id, monitor_update)));
11284                         }
11285                 }
11286
11287                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
11288                 let forward_htlcs_count: u64 = Readable::read(reader)?;
11289                 let mut forward_htlcs = hash_map_with_capacity(cmp::min(forward_htlcs_count as usize, 128));
11290                 for _ in 0..forward_htlcs_count {
11291                         let short_channel_id = Readable::read(reader)?;
11292                         let pending_forwards_count: u64 = Readable::read(reader)?;
11293                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
11294                         for _ in 0..pending_forwards_count {
11295                                 pending_forwards.push(Readable::read(reader)?);
11296                         }
11297                         forward_htlcs.insert(short_channel_id, pending_forwards);
11298                 }
11299
11300                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
11301                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
11302                 for _ in 0..claimable_htlcs_count {
11303                         let payment_hash = Readable::read(reader)?;
11304                         let previous_hops_len: u64 = Readable::read(reader)?;
11305                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
11306                         for _ in 0..previous_hops_len {
11307                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
11308                         }
11309                         claimable_htlcs_list.push((payment_hash, previous_hops));
11310                 }
11311
11312                 let peer_state_from_chans = |channel_by_id| {
11313                         PeerState {
11314                                 channel_by_id,
11315                                 inbound_channel_request_by_id: new_hash_map(),
11316                                 latest_features: InitFeatures::empty(),
11317                                 pending_msg_events: Vec::new(),
11318                                 in_flight_monitor_updates: BTreeMap::new(),
11319                                 monitor_update_blocked_actions: BTreeMap::new(),
11320                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
11321                                 is_connected: false,
11322                         }
11323                 };
11324
11325                 let peer_count: u64 = Readable::read(reader)?;
11326                 let mut per_peer_state = hash_map_with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
11327                 for _ in 0..peer_count {
11328                         let peer_pubkey = Readable::read(reader)?;
11329                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(new_hash_map());
11330                         let mut peer_state = peer_state_from_chans(peer_chans);
11331                         peer_state.latest_features = Readable::read(reader)?;
11332                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
11333                 }
11334
11335                 let event_count: u64 = Readable::read(reader)?;
11336                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
11337                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
11338                 for _ in 0..event_count {
11339                         match MaybeReadable::read(reader)? {
11340                                 Some(event) => pending_events_read.push_back((event, None)),
11341                                 None => continue,
11342                         }
11343                 }
11344
11345                 let background_event_count: u64 = Readable::read(reader)?;
11346                 for _ in 0..background_event_count {
11347                         match <u8 as Readable>::read(reader)? {
11348                                 0 => {
11349                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
11350                                         // however we really don't (and never did) need them - we regenerate all
11351                                         // on-startup monitor updates.
11352                                         let _: OutPoint = Readable::read(reader)?;
11353                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
11354                                 }
11355                                 _ => return Err(DecodeError::InvalidValue),
11356                         }
11357                 }
11358
11359                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
11360                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
11361
11362                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
11363                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = hash_map_with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
11364                 for _ in 0..pending_inbound_payment_count {
11365                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
11366                                 return Err(DecodeError::InvalidValue);
11367                         }
11368                 }
11369
11370                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
11371                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
11372                         hash_map_with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
11373                 for _ in 0..pending_outbound_payments_count_compat {
11374                         let session_priv = Readable::read(reader)?;
11375                         let payment = PendingOutboundPayment::Legacy {
11376                                 session_privs: hash_set_from_iter([session_priv]),
11377                         };
11378                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
11379                                 return Err(DecodeError::InvalidValue)
11380                         };
11381                 }
11382
11383                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
11384                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
11385                 let mut pending_outbound_payments = None;
11386                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(new_hash_map());
11387                 let mut received_network_pubkey: Option<PublicKey> = None;
11388                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
11389                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
11390                 let mut claimable_htlc_purposes = None;
11391                 let mut claimable_htlc_onion_fields = None;
11392                 let mut pending_claiming_payments = Some(new_hash_map());
11393                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
11394                 let mut events_override = None;
11395                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
11396                 let mut decode_update_add_htlcs: Option<HashMap<u64, Vec<msgs::UpdateAddHTLC>>> = None;
11397                 read_tlv_fields!(reader, {
11398                         (1, pending_outbound_payments_no_retry, option),
11399                         (2, pending_intercepted_htlcs, option),
11400                         (3, pending_outbound_payments, option),
11401                         (4, pending_claiming_payments, option),
11402                         (5, received_network_pubkey, option),
11403                         (6, monitor_update_blocked_actions_per_peer, option),
11404                         (7, fake_scid_rand_bytes, option),
11405                         (8, events_override, option),
11406                         (9, claimable_htlc_purposes, optional_vec),
11407                         (10, in_flight_monitor_updates, option),
11408                         (11, probing_cookie_secret, option),
11409                         (13, claimable_htlc_onion_fields, optional_vec),
11410                         (14, decode_update_add_htlcs, option),
11411                 });
11412                 let mut decode_update_add_htlcs = decode_update_add_htlcs.unwrap_or_else(|| new_hash_map());
11413                 if fake_scid_rand_bytes.is_none() {
11414                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
11415                 }
11416
11417                 if probing_cookie_secret.is_none() {
11418                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
11419                 }
11420
11421                 if let Some(events) = events_override {
11422                         pending_events_read = events;
11423                 }
11424
11425                 if !channel_closures.is_empty() {
11426                         pending_events_read.append(&mut channel_closures);
11427                 }
11428
11429                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
11430                         pending_outbound_payments = Some(pending_outbound_payments_compat);
11431                 } else if pending_outbound_payments.is_none() {
11432                         let mut outbounds = new_hash_map();
11433                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
11434                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
11435                         }
11436                         pending_outbound_payments = Some(outbounds);
11437                 }
11438                 let pending_outbounds = OutboundPayments {
11439                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
11440                         retry_lock: Mutex::new(())
11441                 };
11442
11443                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
11444                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
11445                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
11446                 // replayed, and for each monitor update we have to replay we have to ensure there's a
11447                 // `ChannelMonitor` for it.
11448                 //
11449                 // In order to do so we first walk all of our live channels (so that we can check their
11450                 // state immediately after doing the update replays, when we have the `update_id`s
11451                 // available) and then walk any remaining in-flight updates.
11452                 //
11453                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
11454                 let mut pending_background_events = Vec::new();
11455                 macro_rules! handle_in_flight_updates {
11456                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
11457                          $monitor: expr, $peer_state: expr, $logger: expr, $channel_info_log: expr
11458                         ) => { {
11459                                 let mut max_in_flight_update_id = 0;
11460                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
11461                                 for update in $chan_in_flight_upds.iter() {
11462                                         log_trace!($logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
11463                                                 update.update_id, $channel_info_log, &$monitor.channel_id());
11464                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
11465                                         pending_background_events.push(
11466                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
11467                                                         counterparty_node_id: $counterparty_node_id,
11468                                                         funding_txo: $funding_txo,
11469                                                         channel_id: $monitor.channel_id(),
11470                                                         update: update.clone(),
11471                                                 });
11472                                 }
11473                                 if $chan_in_flight_upds.is_empty() {
11474                                         // We had some updates to apply, but it turns out they had completed before we
11475                                         // were serialized, we just weren't notified of that. Thus, we may have to run
11476                                         // the completion actions for any monitor updates, but otherwise are done.
11477                                         pending_background_events.push(
11478                                                 BackgroundEvent::MonitorUpdatesComplete {
11479                                                         counterparty_node_id: $counterparty_node_id,
11480                                                         channel_id: $monitor.channel_id(),
11481                                                 });
11482                                 }
11483                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
11484                                         log_error!($logger, "Duplicate in-flight monitor update set for the same channel!");
11485                                         return Err(DecodeError::InvalidValue);
11486                                 }
11487                                 max_in_flight_update_id
11488                         } }
11489                 }
11490
11491                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
11492                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
11493                         let peer_state = &mut *peer_state_lock;
11494                         for phase in peer_state.channel_by_id.values() {
11495                                 if let ChannelPhase::Funded(chan) = phase {
11496                                         let logger = WithChannelContext::from(&args.logger, &chan.context, None);
11497
11498                                         // Channels that were persisted have to be funded, otherwise they should have been
11499                                         // discarded.
11500                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
11501                                         let monitor = args.channel_monitors.get(&funding_txo)
11502                                                 .expect("We already checked for monitor presence when loading channels");
11503                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
11504                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
11505                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
11506                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
11507                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
11508                                                                         funding_txo, monitor, peer_state, logger, ""));
11509                                                 }
11510                                         }
11511                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
11512                                                 // If the channel is ahead of the monitor, return DangerousValue:
11513                                                 log_error!(logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
11514                                                 log_error!(logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
11515                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
11516                                                 log_error!(logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
11517                                                 log_error!(logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
11518                                                 log_error!(logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
11519                                                 log_error!(logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
11520                                                 log_error!(logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
11521                                                 return Err(DecodeError::DangerousValue);
11522                                         }
11523                                 } else {
11524                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
11525                                         // created in this `channel_by_id` map.
11526                                         debug_assert!(false);
11527                                         return Err(DecodeError::InvalidValue);
11528                                 }
11529                         }
11530                 }
11531
11532                 if let Some(in_flight_upds) = in_flight_monitor_updates {
11533                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
11534                                 let channel_id = funding_txo_to_channel_id.get(&funding_txo).copied();
11535                                 let logger = WithContext::from(&args.logger, Some(counterparty_id), channel_id, None);
11536                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
11537                                         // Now that we've removed all the in-flight monitor updates for channels that are
11538                                         // still open, we need to replay any monitor updates that are for closed channels,
11539                                         // creating the neccessary peer_state entries as we go.
11540                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
11541                                                 Mutex::new(peer_state_from_chans(new_hash_map()))
11542                                         });
11543                                         let mut peer_state = peer_state_mutex.lock().unwrap();
11544                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
11545                                                 funding_txo, monitor, peer_state, logger, "closed ");
11546                                 } else {
11547                                         log_error!(logger, "A ChannelMonitor is missing even though we have in-flight updates for it! This indicates a potentially-critical violation of the chain::Watch API!");
11548                                         log_error!(logger, " The ChannelMonitor for channel {} is missing.", if let Some(channel_id) =
11549                                                 channel_id { channel_id.to_string() } else { format!("with outpoint {}", funding_txo) } );
11550                                         log_error!(logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
11551                                         log_error!(logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
11552                                         log_error!(logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
11553                                         log_error!(logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
11554                                         log_error!(logger, " Pending in-flight updates are: {:?}", chan_in_flight_updates);
11555                                         return Err(DecodeError::InvalidValue);
11556                                 }
11557                         }
11558                 }
11559
11560                 // Note that we have to do the above replays before we push new monitor updates.
11561                 pending_background_events.append(&mut close_background_events);
11562
11563                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
11564                 // should ensure we try them again on the inbound edge. We put them here and do so after we
11565                 // have a fully-constructed `ChannelManager` at the end.
11566                 let mut pending_claims_to_replay = Vec::new();
11567
11568                 {
11569                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
11570                         // ChannelMonitor data for any channels for which we do not have authorative state
11571                         // (i.e. those for which we just force-closed above or we otherwise don't have a
11572                         // corresponding `Channel` at all).
11573                         // This avoids several edge-cases where we would otherwise "forget" about pending
11574                         // payments which are still in-flight via their on-chain state.
11575                         // We only rebuild the pending payments map if we were most recently serialized by
11576                         // 0.0.102+
11577                         for (_, monitor) in args.channel_monitors.iter() {
11578                                 let counterparty_opt = outpoint_to_peer.get(&monitor.get_funding_txo().0);
11579                                 if counterparty_opt.is_none() {
11580                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
11581                                                 let logger = WithChannelMonitor::from(&args.logger, monitor, Some(htlc.payment_hash));
11582                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
11583                                                         if path.hops.is_empty() {
11584                                                                 log_error!(logger, "Got an empty path for a pending payment");
11585                                                                 return Err(DecodeError::InvalidValue);
11586                                                         }
11587
11588                                                         let path_amt = path.final_value_msat();
11589                                                         let mut session_priv_bytes = [0; 32];
11590                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
11591                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
11592                                                                 hash_map::Entry::Occupied(mut entry) => {
11593                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
11594                                                                         log_info!(logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
11595                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), htlc.payment_hash);
11596                                                                 },
11597                                                                 hash_map::Entry::Vacant(entry) => {
11598                                                                         let path_fee = path.fee_msat();
11599                                                                         entry.insert(PendingOutboundPayment::Retryable {
11600                                                                                 retry_strategy: None,
11601                                                                                 attempts: PaymentAttempts::new(),
11602                                                                                 payment_params: None,
11603                                                                                 session_privs: hash_set_from_iter([session_priv_bytes]),
11604                                                                                 payment_hash: htlc.payment_hash,
11605                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
11606                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
11607                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
11608                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
11609                                                                                 pending_amt_msat: path_amt,
11610                                                                                 pending_fee_msat: Some(path_fee),
11611                                                                                 total_msat: path_amt,
11612                                                                                 starting_block_height: best_block_height,
11613                                                                                 remaining_max_total_routing_fee_msat: None, // only used for retries, and we'll never retry on startup
11614                                                                         });
11615                                                                         log_info!(logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
11616                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
11617                                                                 }
11618                                                         }
11619                                                 }
11620                                         }
11621                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
11622                                                 let logger = WithChannelMonitor::from(&args.logger, monitor, Some(htlc.payment_hash));
11623                                                 match htlc_source {
11624                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
11625                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
11626                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
11627                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
11628                                                                 };
11629                                                                 // The ChannelMonitor is now responsible for this HTLC's
11630                                                                 // failure/success and will let us know what its outcome is. If we
11631                                                                 // still have an entry for this HTLC in `forward_htlcs` or
11632                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
11633                                                                 // the monitor was when forwarding the payment.
11634                                                                 decode_update_add_htlcs.retain(|scid, update_add_htlcs| {
11635                                                                         update_add_htlcs.retain(|update_add_htlc| {
11636                                                                                 let matches = *scid == prev_hop_data.short_channel_id &&
11637                                                                                         update_add_htlc.htlc_id == prev_hop_data.htlc_id;
11638                                                                                 if matches {
11639                                                                                         log_info!(logger, "Removing pending to-decode HTLC with hash {} as it was forwarded to the closed channel {}",
11640                                                                                                 &htlc.payment_hash, &monitor.channel_id());
11641                                                                                 }
11642                                                                                 !matches
11643                                                                         });
11644                                                                         !update_add_htlcs.is_empty()
11645                                                                 });
11646                                                                 forward_htlcs.retain(|_, forwards| {
11647                                                                         forwards.retain(|forward| {
11648                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
11649                                                                                         if pending_forward_matches_htlc(&htlc_info) {
11650                                                                                                 log_info!(logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
11651                                                                                                         &htlc.payment_hash, &monitor.channel_id());
11652                                                                                                 false
11653                                                                                         } else { true }
11654                                                                                 } else { true }
11655                                                                         });
11656                                                                         !forwards.is_empty()
11657                                                                 });
11658                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
11659                                                                         if pending_forward_matches_htlc(&htlc_info) {
11660                                                                                 log_info!(logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
11661                                                                                         &htlc.payment_hash, &monitor.channel_id());
11662                                                                                 pending_events_read.retain(|(event, _)| {
11663                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
11664                                                                                                 intercepted_id != ev_id
11665                                                                                         } else { true }
11666                                                                                 });
11667                                                                                 false
11668                                                                         } else { true }
11669                                                                 });
11670                                                         },
11671                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
11672                                                                 if let Some(preimage) = preimage_opt {
11673                                                                         let pending_events = Mutex::new(pending_events_read);
11674                                                                         // Note that we set `from_onchain` to "false" here,
11675                                                                         // deliberately keeping the pending payment around forever.
11676                                                                         // Given it should only occur when we have a channel we're
11677                                                                         // force-closing for being stale that's okay.
11678                                                                         // The alternative would be to wipe the state when claiming,
11679                                                                         // generating a `PaymentPathSuccessful` event but regenerating
11680                                                                         // it and the `PaymentSent` on every restart until the
11681                                                                         // `ChannelMonitor` is removed.
11682                                                                         let compl_action =
11683                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
11684                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
11685                                                                                         channel_id: monitor.channel_id(),
11686                                                                                         counterparty_node_id: path.hops[0].pubkey,
11687                                                                                 };
11688                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
11689                                                                                 path, false, compl_action, &pending_events, &&logger);
11690                                                                         pending_events_read = pending_events.into_inner().unwrap();
11691                                                                 }
11692                                                         },
11693                                                 }
11694                                         }
11695                                 }
11696
11697                                 // Whether the downstream channel was closed or not, try to re-apply any payment
11698                                 // preimages from it which may be needed in upstream channels for forwarded
11699                                 // payments.
11700                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
11701                                         .into_iter()
11702                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
11703                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
11704                                                         if let Some(payment_preimage) = preimage_opt {
11705                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
11706                                                                         // Check if `counterparty_opt.is_none()` to see if the
11707                                                                         // downstream chan is closed (because we don't have a
11708                                                                         // channel_id -> peer map entry).
11709                                                                         counterparty_opt.is_none(),
11710                                                                         counterparty_opt.cloned().or(monitor.get_counterparty_node_id()),
11711                                                                         monitor.get_funding_txo().0, monitor.channel_id()))
11712                                                         } else { None }
11713                                                 } else {
11714                                                         // If it was an outbound payment, we've handled it above - if a preimage
11715                                                         // came in and we persisted the `ChannelManager` we either handled it and
11716                                                         // are good to go or the channel force-closed - we don't have to handle the
11717                                                         // channel still live case here.
11718                                                         None
11719                                                 }
11720                                         });
11721                                 for tuple in outbound_claimed_htlcs_iter {
11722                                         pending_claims_to_replay.push(tuple);
11723                                 }
11724                         }
11725                 }
11726
11727                 if !forward_htlcs.is_empty() || !decode_update_add_htlcs.is_empty() || pending_outbounds.needs_abandon() {
11728                         // If we have pending HTLCs to forward, assume we either dropped a
11729                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
11730                         // shut down before the timer hit. Either way, set the time_forwardable to a small
11731                         // constant as enough time has likely passed that we should simply handle the forwards
11732                         // now, or at least after the user gets a chance to reconnect to our peers.
11733                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
11734                                 time_forwardable: Duration::from_secs(2),
11735                         }, None));
11736                 }
11737
11738                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
11739                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
11740
11741                 let mut claimable_payments = hash_map_with_capacity(claimable_htlcs_list.len());
11742                 if let Some(purposes) = claimable_htlc_purposes {
11743                         if purposes.len() != claimable_htlcs_list.len() {
11744                                 return Err(DecodeError::InvalidValue);
11745                         }
11746                         if let Some(onion_fields) = claimable_htlc_onion_fields {
11747                                 if onion_fields.len() != claimable_htlcs_list.len() {
11748                                         return Err(DecodeError::InvalidValue);
11749                                 }
11750                                 for (purpose, (onion, (payment_hash, htlcs))) in
11751                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
11752                                 {
11753                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
11754                                                 purpose, htlcs, onion_fields: onion,
11755                                         });
11756                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
11757                                 }
11758                         } else {
11759                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
11760                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
11761                                                 purpose, htlcs, onion_fields: None,
11762                                         });
11763                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
11764                                 }
11765                         }
11766                 } else {
11767                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
11768                         // include a `_legacy_hop_data` in the `OnionPayload`.
11769                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
11770                                 if htlcs.is_empty() {
11771                                         return Err(DecodeError::InvalidValue);
11772                                 }
11773                                 let purpose = match &htlcs[0].onion_payload {
11774                                         OnionPayload::Invoice { _legacy_hop_data } => {
11775                                                 if let Some(hop_data) = _legacy_hop_data {
11776                                                         events::PaymentPurpose::Bolt11InvoicePayment {
11777                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
11778                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
11779                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
11780                                                                                 Ok((payment_preimage, _)) => payment_preimage,
11781                                                                                 Err(()) => {
11782                                                                                         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", &payment_hash);
11783                                                                                         return Err(DecodeError::InvalidValue);
11784                                                                                 }
11785                                                                         }
11786                                                                 },
11787                                                                 payment_secret: hop_data.payment_secret,
11788                                                         }
11789                                                 } else { return Err(DecodeError::InvalidValue); }
11790                                         },
11791                                         OnionPayload::Spontaneous(payment_preimage) =>
11792                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
11793                                 };
11794                                 claimable_payments.insert(payment_hash, ClaimablePayment {
11795                                         purpose, htlcs, onion_fields: None,
11796                                 });
11797                         }
11798                 }
11799
11800                 let mut secp_ctx = Secp256k1::new();
11801                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
11802
11803                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
11804                         Ok(key) => key,
11805                         Err(()) => return Err(DecodeError::InvalidValue)
11806                 };
11807                 if let Some(network_pubkey) = received_network_pubkey {
11808                         if network_pubkey != our_network_pubkey {
11809                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
11810                                 return Err(DecodeError::InvalidValue);
11811                         }
11812                 }
11813
11814                 let mut outbound_scid_aliases = new_hash_set();
11815                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
11816                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
11817                         let peer_state = &mut *peer_state_lock;
11818                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
11819                                 if let ChannelPhase::Funded(chan) = phase {
11820                                         let logger = WithChannelContext::from(&args.logger, &chan.context, None);
11821                                         if chan.context.outbound_scid_alias() == 0 {
11822                                                 let mut outbound_scid_alias;
11823                                                 loop {
11824                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
11825                                                                 .get_fake_scid(best_block_height, &chain_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
11826                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
11827                                                 }
11828                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
11829                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
11830                                                 // Note that in rare cases its possible to hit this while reading an older
11831                                                 // channel if we just happened to pick a colliding outbound alias above.
11832                                                 log_error!(logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
11833                                                 return Err(DecodeError::InvalidValue);
11834                                         }
11835                                         if chan.context.is_usable() {
11836                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
11837                                                         // Note that in rare cases its possible to hit this while reading an older
11838                                                         // channel if we just happened to pick a colliding outbound alias above.
11839                                                         log_error!(logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
11840                                                         return Err(DecodeError::InvalidValue);
11841                                                 }
11842                                         }
11843                                 } else {
11844                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
11845                                         // created in this `channel_by_id` map.
11846                                         debug_assert!(false);
11847                                         return Err(DecodeError::InvalidValue);
11848                                 }
11849                         }
11850                 }
11851
11852                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
11853
11854                 for (_, monitor) in args.channel_monitors.iter() {
11855                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
11856                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
11857                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
11858                                         let mut claimable_amt_msat = 0;
11859                                         let mut receiver_node_id = Some(our_network_pubkey);
11860                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
11861                                         if phantom_shared_secret.is_some() {
11862                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
11863                                                         .expect("Failed to get node_id for phantom node recipient");
11864                                                 receiver_node_id = Some(phantom_pubkey)
11865                                         }
11866                                         for claimable_htlc in &payment.htlcs {
11867                                                 claimable_amt_msat += claimable_htlc.value;
11868
11869                                                 // Add a holding-cell claim of the payment to the Channel, which should be
11870                                                 // applied ~immediately on peer reconnection. Because it won't generate a
11871                                                 // new commitment transaction we can just provide the payment preimage to
11872                                                 // the corresponding ChannelMonitor and nothing else.
11873                                                 //
11874                                                 // We do so directly instead of via the normal ChannelMonitor update
11875                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
11876                                                 // we're not allowed to call it directly yet. Further, we do the update
11877                                                 // without incrementing the ChannelMonitor update ID as there isn't any
11878                                                 // reason to.
11879                                                 // If we were to generate a new ChannelMonitor update ID here and then
11880                                                 // crash before the user finishes block connect we'd end up force-closing
11881                                                 // this channel as well. On the flip side, there's no harm in restarting
11882                                                 // without the new monitor persisted - we'll end up right back here on
11883                                                 // restart.
11884                                                 let previous_channel_id = claimable_htlc.prev_hop.channel_id;
11885                                                 if let Some(peer_node_id) = outpoint_to_peer.get(&claimable_htlc.prev_hop.outpoint) {
11886                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
11887                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
11888                                                         let peer_state = &mut *peer_state_lock;
11889                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
11890                                                                 let logger = WithChannelContext::from(&args.logger, &channel.context, Some(payment_hash));
11891                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &&logger);
11892                                                         }
11893                                                 }
11894                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
11895                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
11896                                                 }
11897                                         }
11898                                         pending_events_read.push_back((events::Event::PaymentClaimed {
11899                                                 receiver_node_id,
11900                                                 payment_hash,
11901                                                 purpose: payment.purpose,
11902                                                 amount_msat: claimable_amt_msat,
11903                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
11904                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
11905                                                 onion_fields: payment.onion_fields,
11906                                         }, None));
11907                                 }
11908                         }
11909                 }
11910
11911                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
11912                         if let Some(peer_state) = per_peer_state.get(&node_id) {
11913                                 for (channel_id, actions) in monitor_update_blocked_actions.iter() {
11914                                         let logger = WithContext::from(&args.logger, Some(node_id), Some(*channel_id), None);
11915                                         for action in actions.iter() {
11916                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
11917                                                         downstream_counterparty_and_funding_outpoint:
11918                                                                 Some((blocked_node_id, _blocked_channel_outpoint, blocked_channel_id, blocking_action)), ..
11919                                                 } = action {
11920                                                         if let Some(blocked_peer_state) = per_peer_state.get(blocked_node_id) {
11921                                                                 log_trace!(logger,
11922                                                                         "Holding the next revoke_and_ack from {} until the preimage is durably persisted in the inbound edge's ChannelMonitor",
11923                                                                         blocked_channel_id);
11924                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
11925                                                                         .entry(*blocked_channel_id)
11926                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
11927                                                         } else {
11928                                                                 // If the channel we were blocking has closed, we don't need to
11929                                                                 // worry about it - the blocked monitor update should never have
11930                                                                 // been released from the `Channel` object so it can't have
11931                                                                 // completed, and if the channel closed there's no reason to bother
11932                                                                 // anymore.
11933                                                         }
11934                                                 }
11935                                                 if let MonitorUpdateCompletionAction::FreeOtherChannelImmediately { .. } = action {
11936                                                         debug_assert!(false, "Non-event-generating channel freeing should not appear in our queue");
11937                                                 }
11938                                         }
11939                                 }
11940                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
11941                         } else {
11942                                 log_error!(WithContext::from(&args.logger, Some(node_id), None, None), "Got blocked actions without a per-peer-state for {}", node_id);
11943                                 return Err(DecodeError::InvalidValue);
11944                         }
11945                 }
11946
11947                 let channel_manager = ChannelManager {
11948                         chain_hash,
11949                         fee_estimator: bounded_fee_estimator,
11950                         chain_monitor: args.chain_monitor,
11951                         tx_broadcaster: args.tx_broadcaster,
11952                         router: args.router,
11953
11954                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
11955
11956                         inbound_payment_key: expanded_inbound_key,
11957                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
11958                         pending_outbound_payments: pending_outbounds,
11959                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
11960
11961                         forward_htlcs: Mutex::new(forward_htlcs),
11962                         decode_update_add_htlcs: Mutex::new(decode_update_add_htlcs),
11963                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
11964                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
11965                         outpoint_to_peer: Mutex::new(outpoint_to_peer),
11966                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
11967                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
11968
11969                         probing_cookie_secret: probing_cookie_secret.unwrap(),
11970
11971                         our_network_pubkey,
11972                         secp_ctx,
11973
11974                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
11975
11976                         per_peer_state: FairRwLock::new(per_peer_state),
11977
11978                         pending_events: Mutex::new(pending_events_read),
11979                         pending_events_processor: AtomicBool::new(false),
11980                         pending_background_events: Mutex::new(pending_background_events),
11981                         total_consistency_lock: RwLock::new(()),
11982                         background_events_processed_since_startup: AtomicBool::new(false),
11983
11984                         event_persist_notifier: Notifier::new(),
11985                         needs_persist_flag: AtomicBool::new(false),
11986
11987                         funding_batch_states: Mutex::new(BTreeMap::new()),
11988
11989                         pending_offers_messages: Mutex::new(Vec::new()),
11990
11991                         pending_broadcast_messages: Mutex::new(Vec::new()),
11992
11993                         entropy_source: args.entropy_source,
11994                         node_signer: args.node_signer,
11995                         signer_provider: args.signer_provider,
11996
11997                         logger: args.logger,
11998                         default_configuration: args.default_config,
11999                 };
12000
12001                 for htlc_source in failed_htlcs.drain(..) {
12002                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
12003                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
12004                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
12005                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
12006                 }
12007
12008                 for (source, preimage, downstream_value, downstream_closed, downstream_node_id, downstream_funding, downstream_channel_id) in pending_claims_to_replay {
12009                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
12010                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
12011                         // channel is closed we just assume that it probably came from an on-chain claim.
12012                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value), None,
12013                                 downstream_closed, true, downstream_node_id, downstream_funding,
12014                                 downstream_channel_id, None
12015                         );
12016                 }
12017
12018                 //TODO: Broadcast channel update for closed channels, but only after we've made a
12019                 //connection or two.
12020
12021                 Ok((best_block_hash.clone(), channel_manager))
12022         }
12023 }
12024
12025 #[cfg(test)]
12026 mod tests {
12027         use bitcoin::hashes::Hash;
12028         use bitcoin::hashes::sha256::Hash as Sha256;
12029         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
12030         use core::sync::atomic::Ordering;
12031         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
12032         use crate::ln::types::{ChannelId, PaymentPreimage, PaymentHash, PaymentSecret};
12033         use crate::ln::channelmanager::{create_recv_pending_htlc_info, HTLCForwardInfo, inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
12034         use crate::ln::functional_test_utils::*;
12035         use crate::ln::msgs::{self, ErrorAction};
12036         use crate::ln::msgs::ChannelMessageHandler;
12037         use crate::prelude::*;
12038         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
12039         use crate::util::errors::APIError;
12040         use crate::util::ser::Writeable;
12041         use crate::util::test_utils;
12042         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
12043         use crate::sign::EntropySource;
12044
12045         #[test]
12046         fn test_notify_limits() {
12047                 // Check that a few cases which don't require the persistence of a new ChannelManager,
12048                 // indeed, do not cause the persistence of a new ChannelManager.
12049                 let chanmon_cfgs = create_chanmon_cfgs(3);
12050                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
12051                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
12052                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
12053
12054                 // All nodes start with a persistable update pending as `create_network` connects each node
12055                 // with all other nodes to make most tests simpler.
12056                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12057                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12058                 assert!(nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
12059
12060                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
12061
12062                 // We check that the channel info nodes have doesn't change too early, even though we try
12063                 // to connect messages with new values
12064                 chan.0.contents.fee_base_msat *= 2;
12065                 chan.1.contents.fee_base_msat *= 2;
12066                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
12067                         &nodes[1].node.get_our_node_id()).pop().unwrap();
12068                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
12069                         &nodes[0].node.get_our_node_id()).pop().unwrap();
12070
12071                 // The first two nodes (which opened a channel) should now require fresh persistence
12072                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12073                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12074                 // ... but the last node should not.
12075                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
12076                 // After persisting the first two nodes they should no longer need fresh persistence.
12077                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12078                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12079
12080                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
12081                 // about the channel.
12082                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
12083                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
12084                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
12085
12086                 // The nodes which are a party to the channel should also ignore messages from unrelated
12087                 // parties.
12088                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
12089                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
12090                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
12091                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
12092                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12093                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12094
12095                 // At this point the channel info given by peers should still be the same.
12096                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
12097                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
12098
12099                 // An earlier version of handle_channel_update didn't check the directionality of the
12100                 // update message and would always update the local fee info, even if our peer was
12101                 // (spuriously) forwarding us our own channel_update.
12102                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
12103                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
12104                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
12105
12106                 // First deliver each peers' own message, checking that the node doesn't need to be
12107                 // persisted and that its channel info remains the same.
12108                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
12109                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
12110                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12111                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12112                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
12113                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
12114
12115                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
12116                 // the channel info has updated.
12117                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
12118                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
12119                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12120                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12121                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
12122                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
12123         }
12124
12125         #[test]
12126         fn test_keysend_dup_hash_partial_mpp() {
12127                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
12128                 // expected.
12129                 let chanmon_cfgs = create_chanmon_cfgs(2);
12130                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12131                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12132                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12133                 create_announced_chan_between_nodes(&nodes, 0, 1);
12134
12135                 // First, send a partial MPP payment.
12136                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
12137                 let mut mpp_route = route.clone();
12138                 mpp_route.paths.push(mpp_route.paths[0].clone());
12139
12140                 let payment_id = PaymentId([42; 32]);
12141                 // Use the utility function send_payment_along_path to send the payment with MPP data which
12142                 // indicates there are more HTLCs coming.
12143                 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.
12144                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
12145                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
12146                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
12147                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
12148                 check_added_monitors!(nodes[0], 1);
12149                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12150                 assert_eq!(events.len(), 1);
12151                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
12152
12153                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
12154                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12155                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
12156                 check_added_monitors!(nodes[0], 1);
12157                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12158                 assert_eq!(events.len(), 1);
12159                 let ev = events.drain(..).next().unwrap();
12160                 let payment_event = SendEvent::from_event(ev);
12161                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
12162                 check_added_monitors!(nodes[1], 0);
12163                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
12164                 expect_pending_htlcs_forwardable!(nodes[1]);
12165                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
12166                 check_added_monitors!(nodes[1], 1);
12167                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12168                 assert!(updates.update_add_htlcs.is_empty());
12169                 assert!(updates.update_fulfill_htlcs.is_empty());
12170                 assert_eq!(updates.update_fail_htlcs.len(), 1);
12171                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12172                 assert!(updates.update_fee.is_none());
12173                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
12174                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
12175                 expect_payment_failed!(nodes[0], our_payment_hash, true);
12176
12177                 // Send the second half of the original MPP payment.
12178                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
12179                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
12180                 check_added_monitors!(nodes[0], 1);
12181                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12182                 assert_eq!(events.len(), 1);
12183                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
12184
12185                 // Claim the full MPP payment. Note that we can't use a test utility like
12186                 // claim_funds_along_route because the ordering of the messages causes the second half of the
12187                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
12188                 // lightning messages manually.
12189                 nodes[1].node.claim_funds(payment_preimage);
12190                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
12191                 check_added_monitors!(nodes[1], 2);
12192
12193                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12194                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
12195                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
12196                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
12197                 check_added_monitors!(nodes[0], 1);
12198                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
12199                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
12200                 check_added_monitors!(nodes[1], 1);
12201                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12202                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
12203                 check_added_monitors!(nodes[1], 1);
12204                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
12205                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
12206                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
12207                 check_added_monitors!(nodes[0], 1);
12208                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
12209                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
12210                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
12211                 check_added_monitors!(nodes[0], 1);
12212                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
12213                 check_added_monitors!(nodes[1], 1);
12214                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
12215                 check_added_monitors!(nodes[1], 1);
12216                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
12217                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
12218                 check_added_monitors!(nodes[0], 1);
12219
12220                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
12221                 // path's success and a PaymentPathSuccessful event for each path's success.
12222                 let events = nodes[0].node.get_and_clear_pending_events();
12223                 assert_eq!(events.len(), 2);
12224                 match events[0] {
12225                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
12226                                 assert_eq!(payment_id, *actual_payment_id);
12227                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
12228                                 assert_eq!(route.paths[0], *path);
12229                         },
12230                         _ => panic!("Unexpected event"),
12231                 }
12232                 match events[1] {
12233                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
12234                                 assert_eq!(payment_id, *actual_payment_id);
12235                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
12236                                 assert_eq!(route.paths[0], *path);
12237                         },
12238                         _ => panic!("Unexpected event"),
12239                 }
12240         }
12241
12242         #[test]
12243         fn test_keysend_dup_payment_hash() {
12244                 do_test_keysend_dup_payment_hash(false);
12245                 do_test_keysend_dup_payment_hash(true);
12246         }
12247
12248         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
12249                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
12250                 //      outbound regular payment fails as expected.
12251                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
12252                 //      fails as expected.
12253                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
12254                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
12255                 //      reject MPP keysend payments, since in this case where the payment has no payment
12256                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
12257                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
12258                 //      payment secrets and reject otherwise.
12259                 let chanmon_cfgs = create_chanmon_cfgs(2);
12260                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12261                 let mut mpp_keysend_cfg = test_default_channel_config();
12262                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
12263                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
12264                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12265                 create_announced_chan_between_nodes(&nodes, 0, 1);
12266                 let scorer = test_utils::TestScorer::new();
12267                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
12268
12269                 // To start (1), send a regular payment but don't claim it.
12270                 let expected_route = [&nodes[1]];
12271                 let (payment_preimage, payment_hash, ..) = route_payment(&nodes[0], &expected_route, 100_000);
12272
12273                 // Next, attempt a keysend payment and make sure it fails.
12274                 let route_params = RouteParameters::from_payment_params_and_value(
12275                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
12276                         TEST_FINAL_CLTV, false), 100_000);
12277                 let route = find_route(
12278                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
12279                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12280                 ).unwrap();
12281                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12282                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
12283                 check_added_monitors!(nodes[0], 1);
12284                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12285                 assert_eq!(events.len(), 1);
12286                 let ev = events.drain(..).next().unwrap();
12287                 let payment_event = SendEvent::from_event(ev);
12288                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
12289                 check_added_monitors!(nodes[1], 0);
12290                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
12291                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
12292                 // fails), the second will process the resulting failure and fail the HTLC backward
12293                 expect_pending_htlcs_forwardable!(nodes[1]);
12294                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
12295                 check_added_monitors!(nodes[1], 1);
12296                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12297                 assert!(updates.update_add_htlcs.is_empty());
12298                 assert!(updates.update_fulfill_htlcs.is_empty());
12299                 assert_eq!(updates.update_fail_htlcs.len(), 1);
12300                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12301                 assert!(updates.update_fee.is_none());
12302                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
12303                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
12304                 expect_payment_failed!(nodes[0], payment_hash, true);
12305
12306                 // Finally, claim the original payment.
12307                 claim_payment(&nodes[0], &expected_route, payment_preimage);
12308
12309                 // To start (2), send a keysend payment but don't claim it.
12310                 let payment_preimage = PaymentPreimage([42; 32]);
12311                 let route = find_route(
12312                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
12313                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12314                 ).unwrap();
12315                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12316                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
12317                 check_added_monitors!(nodes[0], 1);
12318                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12319                 assert_eq!(events.len(), 1);
12320                 let event = events.pop().unwrap();
12321                 let path = vec![&nodes[1]];
12322                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
12323
12324                 // Next, attempt a regular payment and make sure it fails.
12325                 let payment_secret = PaymentSecret([43; 32]);
12326                 nodes[0].node.send_payment_with_route(&route, payment_hash,
12327                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
12328                 check_added_monitors!(nodes[0], 1);
12329                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12330                 assert_eq!(events.len(), 1);
12331                 let ev = events.drain(..).next().unwrap();
12332                 let payment_event = SendEvent::from_event(ev);
12333                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
12334                 check_added_monitors!(nodes[1], 0);
12335                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
12336                 expect_pending_htlcs_forwardable!(nodes[1]);
12337                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
12338                 check_added_monitors!(nodes[1], 1);
12339                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12340                 assert!(updates.update_add_htlcs.is_empty());
12341                 assert!(updates.update_fulfill_htlcs.is_empty());
12342                 assert_eq!(updates.update_fail_htlcs.len(), 1);
12343                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12344                 assert!(updates.update_fee.is_none());
12345                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
12346                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
12347                 expect_payment_failed!(nodes[0], payment_hash, true);
12348
12349                 // Finally, succeed the keysend payment.
12350                 claim_payment(&nodes[0], &expected_route, payment_preimage);
12351
12352                 // To start (3), send a keysend payment but don't claim it.
12353                 let payment_id_1 = PaymentId([44; 32]);
12354                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12355                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
12356                 check_added_monitors!(nodes[0], 1);
12357                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12358                 assert_eq!(events.len(), 1);
12359                 let event = events.pop().unwrap();
12360                 let path = vec![&nodes[1]];
12361                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
12362
12363                 // Next, attempt a keysend payment and make sure it fails.
12364                 let route_params = RouteParameters::from_payment_params_and_value(
12365                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
12366                         100_000
12367                 );
12368                 let route = find_route(
12369                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
12370                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12371                 ).unwrap();
12372                 let payment_id_2 = PaymentId([45; 32]);
12373                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12374                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
12375                 check_added_monitors!(nodes[0], 1);
12376                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12377                 assert_eq!(events.len(), 1);
12378                 let ev = events.drain(..).next().unwrap();
12379                 let payment_event = SendEvent::from_event(ev);
12380                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
12381                 check_added_monitors!(nodes[1], 0);
12382                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
12383                 expect_pending_htlcs_forwardable!(nodes[1]);
12384                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
12385                 check_added_monitors!(nodes[1], 1);
12386                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12387                 assert!(updates.update_add_htlcs.is_empty());
12388                 assert!(updates.update_fulfill_htlcs.is_empty());
12389                 assert_eq!(updates.update_fail_htlcs.len(), 1);
12390                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12391                 assert!(updates.update_fee.is_none());
12392                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
12393                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
12394                 expect_payment_failed!(nodes[0], payment_hash, true);
12395
12396                 // Finally, claim the original payment.
12397                 claim_payment(&nodes[0], &expected_route, payment_preimage);
12398         }
12399
12400         #[test]
12401         fn test_keysend_hash_mismatch() {
12402                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
12403                 // preimage doesn't match the msg's payment hash.
12404                 let chanmon_cfgs = create_chanmon_cfgs(2);
12405                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12406                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12407                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12408
12409                 let payer_pubkey = nodes[0].node.get_our_node_id();
12410                 let payee_pubkey = nodes[1].node.get_our_node_id();
12411
12412                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
12413                 let route_params = RouteParameters::from_payment_params_and_value(
12414                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
12415                 let network_graph = nodes[0].network_graph;
12416                 let first_hops = nodes[0].node.list_usable_channels();
12417                 let scorer = test_utils::TestScorer::new();
12418                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
12419                 let route = find_route(
12420                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
12421                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12422                 ).unwrap();
12423
12424                 let test_preimage = PaymentPreimage([42; 32]);
12425                 let mismatch_payment_hash = PaymentHash([43; 32]);
12426                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
12427                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
12428                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
12429                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
12430                 check_added_monitors!(nodes[0], 1);
12431
12432                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
12433                 assert_eq!(updates.update_add_htlcs.len(), 1);
12434                 assert!(updates.update_fulfill_htlcs.is_empty());
12435                 assert!(updates.update_fail_htlcs.is_empty());
12436                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12437                 assert!(updates.update_fee.is_none());
12438                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
12439
12440                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
12441         }
12442
12443         #[test]
12444         fn test_keysend_msg_with_secret_err() {
12445                 // Test that we error as expected if we receive a keysend payment that includes a payment
12446                 // secret when we don't support MPP keysend.
12447                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
12448                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
12449                 let chanmon_cfgs = create_chanmon_cfgs(2);
12450                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12451                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
12452                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12453
12454                 let payer_pubkey = nodes[0].node.get_our_node_id();
12455                 let payee_pubkey = nodes[1].node.get_our_node_id();
12456
12457                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
12458                 let route_params = RouteParameters::from_payment_params_and_value(
12459                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
12460                 let network_graph = nodes[0].network_graph;
12461                 let first_hops = nodes[0].node.list_usable_channels();
12462                 let scorer = test_utils::TestScorer::new();
12463                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
12464                 let route = find_route(
12465                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
12466                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12467                 ).unwrap();
12468
12469                 let test_preimage = PaymentPreimage([42; 32]);
12470                 let test_secret = PaymentSecret([43; 32]);
12471                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).to_byte_array());
12472                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
12473                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
12474                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
12475                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
12476                         PaymentId(payment_hash.0), None, session_privs).unwrap();
12477                 check_added_monitors!(nodes[0], 1);
12478
12479                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
12480                 assert_eq!(updates.update_add_htlcs.len(), 1);
12481                 assert!(updates.update_fulfill_htlcs.is_empty());
12482                 assert!(updates.update_fail_htlcs.is_empty());
12483                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12484                 assert!(updates.update_fee.is_none());
12485                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
12486
12487                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
12488         }
12489
12490         #[test]
12491         fn test_multi_hop_missing_secret() {
12492                 let chanmon_cfgs = create_chanmon_cfgs(4);
12493                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
12494                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
12495                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
12496
12497                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
12498                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
12499                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
12500                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
12501
12502                 // Marshall an MPP route.
12503                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
12504                 let path = route.paths[0].clone();
12505                 route.paths.push(path);
12506                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
12507                 route.paths[0].hops[0].short_channel_id = chan_1_id;
12508                 route.paths[0].hops[1].short_channel_id = chan_3_id;
12509                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
12510                 route.paths[1].hops[0].short_channel_id = chan_2_id;
12511                 route.paths[1].hops[1].short_channel_id = chan_4_id;
12512
12513                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
12514                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
12515                 .unwrap_err() {
12516                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
12517                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
12518                         },
12519                         _ => panic!("unexpected error")
12520                 }
12521         }
12522
12523         #[test]
12524         fn test_channel_update_cached() {
12525                 let chanmon_cfgs = create_chanmon_cfgs(3);
12526                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
12527                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
12528                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
12529
12530                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
12531
12532                 nodes[0].node.force_close_channel_with_peer(&chan.2, &nodes[1].node.get_our_node_id(), None, true).unwrap();
12533                 check_added_monitors!(nodes[0], 1);
12534                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
12535
12536                 // Confirm that the channel_update was not sent immediately to node[1] but was cached.
12537                 let node_1_events = nodes[1].node.get_and_clear_pending_msg_events();
12538                 assert_eq!(node_1_events.len(), 0);
12539
12540                 {
12541                         // Assert that ChannelUpdate message has been added to node[0] pending broadcast messages
12542                         let pending_broadcast_messages= nodes[0].node.pending_broadcast_messages.lock().unwrap();
12543                         assert_eq!(pending_broadcast_messages.len(), 1);
12544                 }
12545
12546                 // Test that we do not retrieve the pending broadcast messages when we are not connected to any peer
12547                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
12548                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
12549
12550                 nodes[0].node.peer_disconnected(&nodes[2].node.get_our_node_id());
12551                 nodes[2].node.peer_disconnected(&nodes[0].node.get_our_node_id());
12552
12553                 let node_0_events = nodes[0].node.get_and_clear_pending_msg_events();
12554                 assert_eq!(node_0_events.len(), 0);
12555
12556                 // Now we reconnect to a peer
12557                 nodes[0].node.peer_connected(&nodes[2].node.get_our_node_id(), &msgs::Init {
12558                         features: nodes[2].node.init_features(), networks: None, remote_network_address: None
12559                 }, true).unwrap();
12560                 nodes[2].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
12561                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
12562                 }, false).unwrap();
12563
12564                 // Confirm that get_and_clear_pending_msg_events correctly captures pending broadcast messages
12565                 let node_0_events = nodes[0].node.get_and_clear_pending_msg_events();
12566                 assert_eq!(node_0_events.len(), 1);
12567                 match &node_0_events[0] {
12568                         MessageSendEvent::BroadcastChannelUpdate { .. } => (),
12569                         _ => panic!("Unexpected event"),
12570                 }
12571                 {
12572                         // Assert that ChannelUpdate message has been cleared from nodes[0] pending broadcast messages
12573                         let pending_broadcast_messages= nodes[0].node.pending_broadcast_messages.lock().unwrap();
12574                         assert_eq!(pending_broadcast_messages.len(), 0);
12575                 }
12576         }
12577
12578         #[test]
12579         fn test_drop_disconnected_peers_when_removing_channels() {
12580                 let chanmon_cfgs = create_chanmon_cfgs(2);
12581                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12582                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12583                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12584
12585                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
12586
12587                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
12588                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
12589                 let error_message = "Channel force-closed";
12590                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id(), error_message.to_string()).unwrap();
12591                 check_closed_broadcast!(nodes[0], true);
12592                 check_added_monitors!(nodes[0], 1);
12593                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
12594
12595                 {
12596                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
12597                         // disconnected and the channel between has been force closed.
12598                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
12599                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
12600                         assert_eq!(nodes_0_per_peer_state.len(), 1);
12601                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
12602                 }
12603
12604                 nodes[0].node.timer_tick_occurred();
12605
12606                 {
12607                         // Assert that nodes[1] has now been removed.
12608                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
12609                 }
12610         }
12611
12612         #[test]
12613         fn bad_inbound_payment_hash() {
12614                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
12615                 let chanmon_cfgs = create_chanmon_cfgs(2);
12616                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12617                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12618                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12619
12620                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
12621                 let payment_data = msgs::FinalOnionHopData {
12622                         payment_secret,
12623                         total_msat: 100_000,
12624                 };
12625
12626                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
12627                 // payment verification fails as expected.
12628                 let mut bad_payment_hash = payment_hash.clone();
12629                 bad_payment_hash.0[0] += 1;
12630                 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) {
12631                         Ok(_) => panic!("Unexpected ok"),
12632                         Err(()) => {
12633                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
12634                         }
12635                 }
12636
12637                 // Check that using the original payment hash succeeds.
12638                 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());
12639         }
12640
12641         #[test]
12642         fn test_outpoint_to_peer_coverage() {
12643                 // Test that the `ChannelManager:outpoint_to_peer` contains channels which have been assigned
12644                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
12645                 // the channel is successfully closed.
12646                 let chanmon_cfgs = create_chanmon_cfgs(2);
12647                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12648                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12649                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12650
12651                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None, None).unwrap();
12652                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
12653                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
12654                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
12655                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
12656
12657                 let (temporary_channel_id, tx, funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
12658                 let channel_id = ChannelId::from_bytes(tx.txid().to_byte_array());
12659                 {
12660                         // Ensure that the `outpoint_to_peer` map is empty until either party has received the
12661                         // funding transaction, and have the real `channel_id`.
12662                         assert_eq!(nodes[0].node.outpoint_to_peer.lock().unwrap().len(), 0);
12663                         assert_eq!(nodes[1].node.outpoint_to_peer.lock().unwrap().len(), 0);
12664                 }
12665
12666                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
12667                 {
12668                         // Assert that `nodes[0]`'s `outpoint_to_peer` map is populated with the channel as soon as
12669                         // as it has the funding transaction.
12670                         let nodes_0_lock = nodes[0].node.outpoint_to_peer.lock().unwrap();
12671                         assert_eq!(nodes_0_lock.len(), 1);
12672                         assert!(nodes_0_lock.contains_key(&funding_output));
12673                 }
12674
12675                 assert_eq!(nodes[1].node.outpoint_to_peer.lock().unwrap().len(), 0);
12676
12677                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
12678
12679                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
12680                 {
12681                         let nodes_0_lock = nodes[0].node.outpoint_to_peer.lock().unwrap();
12682                         assert_eq!(nodes_0_lock.len(), 1);
12683                         assert!(nodes_0_lock.contains_key(&funding_output));
12684                 }
12685                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
12686
12687                 {
12688                         // Assert that `nodes[1]`'s `outpoint_to_peer` map is populated with the channel as
12689                         // soon as it has the funding transaction.
12690                         let nodes_1_lock = nodes[1].node.outpoint_to_peer.lock().unwrap();
12691                         assert_eq!(nodes_1_lock.len(), 1);
12692                         assert!(nodes_1_lock.contains_key(&funding_output));
12693                 }
12694                 check_added_monitors!(nodes[1], 1);
12695                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
12696                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
12697                 check_added_monitors!(nodes[0], 1);
12698                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
12699                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
12700                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
12701                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
12702
12703                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
12704                 nodes[1].node.handle_shutdown(&nodes[0].node.get_our_node_id(), &get_event_msg!(nodes[0], MessageSendEvent::SendShutdown, nodes[1].node.get_our_node_id()));
12705                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
12706                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
12707
12708                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
12709                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
12710                 {
12711                         // Assert that the channel is kept in the `outpoint_to_peer` map for both nodes until the
12712                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
12713                         // fee for the closing transaction has been negotiated and the parties has the other
12714                         // party's signature for the fee negotiated closing transaction.)
12715                         let nodes_0_lock = nodes[0].node.outpoint_to_peer.lock().unwrap();
12716                         assert_eq!(nodes_0_lock.len(), 1);
12717                         assert!(nodes_0_lock.contains_key(&funding_output));
12718                 }
12719
12720                 {
12721                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
12722                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
12723                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
12724                         // kept in the `nodes[1]`'s `outpoint_to_peer` map.
12725                         let nodes_1_lock = nodes[1].node.outpoint_to_peer.lock().unwrap();
12726                         assert_eq!(nodes_1_lock.len(), 1);
12727                         assert!(nodes_1_lock.contains_key(&funding_output));
12728                 }
12729
12730                 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()));
12731                 {
12732                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
12733                         // therefore has all it needs to fully close the channel (both signatures for the
12734                         // closing transaction).
12735                         // Assert that the channel is removed from `nodes[0]`'s `outpoint_to_peer` map as it can be
12736                         // fully closed by `nodes[0]`.
12737                         assert_eq!(nodes[0].node.outpoint_to_peer.lock().unwrap().len(), 0);
12738
12739                         // Assert that the channel is still in `nodes[1]`'s  `outpoint_to_peer` map, as `nodes[1]`
12740                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
12741                         let nodes_1_lock = nodes[1].node.outpoint_to_peer.lock().unwrap();
12742                         assert_eq!(nodes_1_lock.len(), 1);
12743                         assert!(nodes_1_lock.contains_key(&funding_output));
12744                 }
12745
12746                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
12747
12748                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
12749                 {
12750                         // Assert that the channel has now been removed from both parties `outpoint_to_peer` map once
12751                         // they both have everything required to fully close the channel.
12752                         assert_eq!(nodes[1].node.outpoint_to_peer.lock().unwrap().len(), 0);
12753                 }
12754                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
12755
12756                 check_closed_event!(nodes[0], 1, ClosureReason::LocallyInitiatedCooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
12757                 check_closed_event!(nodes[1], 1, ClosureReason::CounterpartyInitiatedCooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
12758         }
12759
12760         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
12761                 let expected_message = format!("Not connected to node: {}", expected_public_key);
12762                 check_api_error_message(expected_message, res_err)
12763         }
12764
12765         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
12766                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
12767                 check_api_error_message(expected_message, res_err)
12768         }
12769
12770         fn check_channel_unavailable_error<T>(res_err: Result<T, APIError>, expected_channel_id: ChannelId, peer_node_id: PublicKey) {
12771                 let expected_message = format!("Channel with id {} not found for the passed counterparty node_id {}", expected_channel_id, peer_node_id);
12772                 check_api_error_message(expected_message, res_err)
12773         }
12774
12775         fn check_api_misuse_error<T>(res_err: Result<T, APIError>) {
12776                 let expected_message = "No such channel awaiting to be accepted.".to_string();
12777                 check_api_error_message(expected_message, res_err)
12778         }
12779
12780         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
12781                 match res_err {
12782                         Err(APIError::APIMisuseError { err }) => {
12783                                 assert_eq!(err, expected_err_message);
12784                         },
12785                         Err(APIError::ChannelUnavailable { err }) => {
12786                                 assert_eq!(err, expected_err_message);
12787                         },
12788                         Ok(_) => panic!("Unexpected Ok"),
12789                         Err(_) => panic!("Unexpected Error"),
12790                 }
12791         }
12792
12793         #[test]
12794         fn test_api_calls_with_unkown_counterparty_node() {
12795                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
12796                 // expected if the `counterparty_node_id` is an unkown peer in the
12797                 // `ChannelManager::per_peer_state` map.
12798                 let chanmon_cfg = create_chanmon_cfgs(2);
12799                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
12800                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
12801                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
12802
12803                 // Dummy values
12804                 let channel_id = ChannelId::from_bytes([4; 32]);
12805                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
12806                 let intercept_id = InterceptId([0; 32]);
12807                 let error_message = "Channel force-closed";
12808
12809                 // Test the API functions.
12810                 check_not_connected_to_peer_error(nodes[0].node.create_channel(unkown_public_key, 1_000_000, 500_000_000, 42, None, None), unkown_public_key);
12811
12812                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
12813
12814                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
12815
12816                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key, error_message.to_string()), unkown_public_key);
12817
12818                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key, error_message.to_string()), unkown_public_key);
12819
12820                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
12821
12822                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
12823         }
12824
12825         #[test]
12826         fn test_api_calls_with_unavailable_channel() {
12827                 // Tests that our API functions that expects a `counterparty_node_id` and a `channel_id`
12828                 // as input, behaves as expected if the `counterparty_node_id` is a known peer in the
12829                 // `ChannelManager::per_peer_state` map, but the peer state doesn't contain a channel with
12830                 // the given `channel_id`.
12831                 let chanmon_cfg = create_chanmon_cfgs(2);
12832                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
12833                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
12834                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
12835
12836                 let counterparty_node_id = nodes[1].node.get_our_node_id();
12837
12838                 // Dummy values
12839                 let channel_id = ChannelId::from_bytes([4; 32]);
12840                 let error_message = "Channel force-closed";
12841
12842                 // Test the API functions.
12843                 check_api_misuse_error(nodes[0].node.accept_inbound_channel(&channel_id, &counterparty_node_id, 42));
12844
12845                 check_channel_unavailable_error(nodes[0].node.close_channel(&channel_id, &counterparty_node_id), channel_id, counterparty_node_id);
12846
12847                 check_channel_unavailable_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &counterparty_node_id, error_message.to_string()), channel_id, counterparty_node_id);
12848
12849                 check_channel_unavailable_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &counterparty_node_id, error_message.to_string()), channel_id, counterparty_node_id);
12850
12851                 check_channel_unavailable_error(nodes[0].node.forward_intercepted_htlc(InterceptId([0; 32]), &channel_id, counterparty_node_id, 1_000_000), channel_id, counterparty_node_id);
12852
12853                 check_channel_unavailable_error(nodes[0].node.update_channel_config(&counterparty_node_id, &[channel_id], &ChannelConfig::default()), channel_id, counterparty_node_id);
12854         }
12855
12856         #[test]
12857         fn test_connection_limiting() {
12858                 // Test that we limit un-channel'd peers and un-funded channels properly.
12859                 let chanmon_cfgs = create_chanmon_cfgs(2);
12860                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12861                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12862                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12863
12864                 // Note that create_network connects the nodes together for us
12865
12866                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
12867                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
12868
12869                 let mut funding_tx = None;
12870                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
12871                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
12872                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
12873
12874                         if idx == 0 {
12875                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
12876                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
12877                                 funding_tx = Some(tx.clone());
12878                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
12879                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
12880
12881                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
12882                                 check_added_monitors!(nodes[1], 1);
12883                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
12884
12885                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
12886
12887                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
12888                                 check_added_monitors!(nodes[0], 1);
12889                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
12890                         }
12891                         open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
12892                 }
12893
12894                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
12895                 open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(
12896                         &nodes[0].keys_manager);
12897                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
12898                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
12899                         open_channel_msg.common_fields.temporary_channel_id);
12900
12901                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
12902                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
12903                 // limit.
12904                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
12905                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
12906                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
12907                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
12908                         peer_pks.push(random_pk);
12909                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
12910                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
12911                         }, true).unwrap();
12912                 }
12913                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
12914                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
12915                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
12916                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
12917                 }, true).unwrap_err();
12918
12919                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
12920                 // them if we have too many un-channel'd peers.
12921                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
12922                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
12923                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
12924                 for ev in chan_closed_events {
12925                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
12926                 }
12927                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
12928                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
12929                 }, true).unwrap();
12930                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
12931                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
12932                 }, true).unwrap_err();
12933
12934                 // but of course if the connection is outbound its allowed...
12935                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
12936                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
12937                 }, false).unwrap();
12938                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
12939
12940                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
12941                 // Even though we accept one more connection from new peers, we won't actually let them
12942                 // open channels.
12943                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
12944                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
12945                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
12946                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
12947                         open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
12948                 }
12949                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
12950                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
12951                         open_channel_msg.common_fields.temporary_channel_id);
12952
12953                 // Of course, however, outbound channels are always allowed
12954                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None, None).unwrap();
12955                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
12956
12957                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
12958                 // "protected" and can connect again.
12959                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
12960                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
12961                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
12962                 }, true).unwrap();
12963                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
12964
12965                 // Further, because the first channel was funded, we can open another channel with
12966                 // last_random_pk.
12967                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
12968                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
12969         }
12970
12971         #[test]
12972         fn test_outbound_chans_unlimited() {
12973                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
12974                 let chanmon_cfgs = create_chanmon_cfgs(2);
12975                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12976                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12977                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12978
12979                 // Note that create_network connects the nodes together for us
12980
12981                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
12982                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
12983
12984                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
12985                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
12986                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
12987                         open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
12988                 }
12989
12990                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
12991                 // rejected.
12992                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
12993                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
12994                         open_channel_msg.common_fields.temporary_channel_id);
12995
12996                 // but we can still open an outbound channel.
12997                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
12998                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
12999
13000                 // but even with such an outbound channel, additional inbound channels will still fail.
13001                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13002                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
13003                         open_channel_msg.common_fields.temporary_channel_id);
13004         }
13005
13006         #[test]
13007         fn test_0conf_limiting() {
13008                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
13009                 // flag set and (sometimes) accept channels as 0conf.
13010                 let chanmon_cfgs = create_chanmon_cfgs(2);
13011                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
13012                 let mut settings = test_default_channel_config();
13013                 settings.manually_accept_inbound_channels = true;
13014                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
13015                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
13016
13017                 // Note that create_network connects the nodes together for us
13018
13019                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
13020                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13021
13022                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
13023                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
13024                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
13025                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
13026                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
13027                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13028                         }, true).unwrap();
13029
13030                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
13031                         let events = nodes[1].node.get_and_clear_pending_events();
13032                         match events[0] {
13033                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
13034                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
13035                                 }
13036                                 _ => panic!("Unexpected event"),
13037                         }
13038                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
13039                         open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
13040                 }
13041
13042                 // If we try to accept a channel from another peer non-0conf it will fail.
13043                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
13044                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
13045                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
13046                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13047                 }, true).unwrap();
13048                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
13049                 let events = nodes[1].node.get_and_clear_pending_events();
13050                 match events[0] {
13051                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
13052                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
13053                                         Err(APIError::APIMisuseError { err }) =>
13054                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
13055                                         _ => panic!(),
13056                                 }
13057                         }
13058                         _ => panic!("Unexpected event"),
13059                 }
13060                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
13061                         open_channel_msg.common_fields.temporary_channel_id);
13062
13063                 // ...however if we accept the same channel 0conf it should work just fine.
13064                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
13065                 let events = nodes[1].node.get_and_clear_pending_events();
13066                 match events[0] {
13067                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
13068                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
13069                         }
13070                         _ => panic!("Unexpected event"),
13071                 }
13072                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
13073         }
13074
13075         #[test]
13076         fn reject_excessively_underpaying_htlcs() {
13077                 let chanmon_cfg = create_chanmon_cfgs(1);
13078                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
13079                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
13080                 let node = create_network(1, &node_cfg, &node_chanmgr);
13081                 let sender_intended_amt_msat = 100;
13082                 let extra_fee_msat = 10;
13083                 let hop_data = msgs::InboundOnionPayload::Receive {
13084                         sender_intended_htlc_amt_msat: 100,
13085                         cltv_expiry_height: 42,
13086                         payment_metadata: None,
13087                         keysend_preimage: None,
13088                         payment_data: Some(msgs::FinalOnionHopData {
13089                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
13090                         }),
13091                         custom_tlvs: Vec::new(),
13092                 };
13093                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
13094                 // intended amount, we fail the payment.
13095                 let current_height: u32 = node[0].node.best_block.read().unwrap().height;
13096                 if let Err(crate::ln::channelmanager::InboundHTLCErr { err_code, .. }) =
13097                         create_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
13098                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat),
13099                                 current_height, node[0].node.default_configuration.accept_mpp_keysend)
13100                 {
13101                         assert_eq!(err_code, 19);
13102                 } else { panic!(); }
13103
13104                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
13105                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
13106                         sender_intended_htlc_amt_msat: 100,
13107                         cltv_expiry_height: 42,
13108                         payment_metadata: None,
13109                         keysend_preimage: None,
13110                         payment_data: Some(msgs::FinalOnionHopData {
13111                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
13112                         }),
13113                         custom_tlvs: Vec::new(),
13114                 };
13115                 let current_height: u32 = node[0].node.best_block.read().unwrap().height;
13116                 assert!(create_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
13117                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat),
13118                         current_height, node[0].node.default_configuration.accept_mpp_keysend).is_ok());
13119         }
13120
13121         #[test]
13122         fn test_final_incorrect_cltv(){
13123                 let chanmon_cfg = create_chanmon_cfgs(1);
13124                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
13125                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
13126                 let node = create_network(1, &node_cfg, &node_chanmgr);
13127
13128                 let current_height: u32 = node[0].node.best_block.read().unwrap().height;
13129                 let result = create_recv_pending_htlc_info(msgs::InboundOnionPayload::Receive {
13130                         sender_intended_htlc_amt_msat: 100,
13131                         cltv_expiry_height: 22,
13132                         payment_metadata: None,
13133                         keysend_preimage: None,
13134                         payment_data: Some(msgs::FinalOnionHopData {
13135                                 payment_secret: PaymentSecret([0; 32]), total_msat: 100,
13136                         }),
13137                         custom_tlvs: Vec::new(),
13138                 }, [0; 32], PaymentHash([0; 32]), 100, 23, None, true, None, current_height,
13139                         node[0].node.default_configuration.accept_mpp_keysend);
13140
13141                 // Should not return an error as this condition:
13142                 // https://github.com/lightning/bolts/blob/4dcc377209509b13cf89a4b91fde7d478f5b46d8/04-onion-routing.md?plain=1#L334
13143                 // is not satisfied.
13144                 assert!(result.is_ok());
13145         }
13146
13147         #[test]
13148         fn test_inbound_anchors_manual_acceptance() {
13149                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
13150                 // flag set and (sometimes) accept channels as 0conf.
13151                 let mut anchors_cfg = test_default_channel_config();
13152                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
13153
13154                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
13155                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
13156
13157                 let chanmon_cfgs = create_chanmon_cfgs(3);
13158                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
13159                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
13160                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
13161                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
13162
13163                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
13164                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13165
13166                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13167                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
13168                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
13169                 match &msg_events[0] {
13170                         MessageSendEvent::HandleError { node_id, action } => {
13171                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
13172                                 match action {
13173                                         ErrorAction::SendErrorMessage { msg } =>
13174                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
13175                                         _ => panic!("Unexpected error action"),
13176                                 }
13177                         }
13178                         _ => panic!("Unexpected event"),
13179                 }
13180
13181                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13182                 let events = nodes[2].node.get_and_clear_pending_events();
13183                 match events[0] {
13184                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
13185                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
13186                         _ => panic!("Unexpected event"),
13187                 }
13188                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
13189         }
13190
13191         #[test]
13192         fn test_anchors_zero_fee_htlc_tx_fallback() {
13193                 // Tests that if both nodes support anchors, but the remote node does not want to accept
13194                 // anchor channels at the moment, an error it sent to the local node such that it can retry
13195                 // the channel without the anchors feature.
13196                 let chanmon_cfgs = create_chanmon_cfgs(2);
13197                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
13198                 let mut anchors_config = test_default_channel_config();
13199                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
13200                 anchors_config.manually_accept_inbound_channels = true;
13201                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
13202                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
13203                 let error_message = "Channel force-closed";
13204
13205                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None, None).unwrap();
13206                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13207                 assert!(open_channel_msg.common_fields.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
13208
13209                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13210                 let events = nodes[1].node.get_and_clear_pending_events();
13211                 match events[0] {
13212                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
13213                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id(), error_message.to_string()).unwrap();
13214                         }
13215                         _ => panic!("Unexpected event"),
13216                 }
13217
13218                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
13219                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
13220
13221                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13222                 assert!(!open_channel_msg.common_fields.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
13223
13224                 // Since nodes[1] should not have accepted the channel, it should
13225                 // not have generated any events.
13226                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
13227         }
13228
13229         #[test]
13230         fn test_update_channel_config() {
13231                 let chanmon_cfg = create_chanmon_cfgs(2);
13232                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
13233                 let mut user_config = test_default_channel_config();
13234                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
13235                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
13236                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
13237                 let channel = &nodes[0].node.list_channels()[0];
13238
13239                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
13240                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13241                 assert_eq!(events.len(), 0);
13242
13243                 user_config.channel_config.forwarding_fee_base_msat += 10;
13244                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
13245                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
13246                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13247                 assert_eq!(events.len(), 1);
13248                 match &events[0] {
13249                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
13250                         _ => panic!("expected BroadcastChannelUpdate event"),
13251                 }
13252
13253                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
13254                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13255                 assert_eq!(events.len(), 0);
13256
13257                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
13258                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
13259                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
13260                         ..Default::default()
13261                 }).unwrap();
13262                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
13263                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13264                 assert_eq!(events.len(), 1);
13265                 match &events[0] {
13266                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
13267                         _ => panic!("expected BroadcastChannelUpdate event"),
13268                 }
13269
13270                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
13271                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
13272                         forwarding_fee_proportional_millionths: Some(new_fee),
13273                         ..Default::default()
13274                 }).unwrap();
13275                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
13276                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
13277                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13278                 assert_eq!(events.len(), 1);
13279                 match &events[0] {
13280                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
13281                         _ => panic!("expected BroadcastChannelUpdate event"),
13282                 }
13283
13284                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
13285                 // should be applied to ensure update atomicity as specified in the API docs.
13286                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
13287                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
13288                 let new_fee = current_fee + 100;
13289                 assert!(
13290                         matches!(
13291                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
13292                                         forwarding_fee_proportional_millionths: Some(new_fee),
13293                                         ..Default::default()
13294                                 }),
13295                                 Err(APIError::ChannelUnavailable { err: _ }),
13296                         )
13297                 );
13298                 // Check that the fee hasn't changed for the channel that exists.
13299                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
13300                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13301                 assert_eq!(events.len(), 0);
13302         }
13303
13304         #[test]
13305         fn test_payment_display() {
13306                 let payment_id = PaymentId([42; 32]);
13307                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
13308                 let payment_hash = PaymentHash([42; 32]);
13309                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
13310                 let payment_preimage = PaymentPreimage([42; 32]);
13311                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
13312         }
13313
13314         #[test]
13315         fn test_trigger_lnd_force_close() {
13316                 let chanmon_cfg = create_chanmon_cfgs(2);
13317                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
13318                 let user_config = test_default_channel_config();
13319                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
13320                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
13321                 let error_message = "Channel force-closed";
13322
13323                 // Open a channel, immediately disconnect each other, and broadcast Alice's latest state.
13324                 let (_, _, chan_id, funding_tx) = create_announced_chan_between_nodes(&nodes, 0, 1);
13325                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
13326                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
13327                 nodes[0].node.force_close_broadcasting_latest_txn(&chan_id, &nodes[1].node.get_our_node_id(), error_message.to_string()).unwrap();
13328                 check_closed_broadcast(&nodes[0], 1, true);
13329                 check_added_monitors(&nodes[0], 1);
13330                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
13331                 {
13332                         let txn = nodes[0].tx_broadcaster.txn_broadcast();
13333                         assert_eq!(txn.len(), 1);
13334                         check_spends!(txn[0], funding_tx);
13335                 }
13336
13337                 // Since they're disconnected, Bob won't receive Alice's `Error` message. Reconnect them
13338                 // such that Bob sends a `ChannelReestablish` to Alice since the channel is still open from
13339                 // their side.
13340                 nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init {
13341                         features: nodes[1].node.init_features(), networks: None, remote_network_address: None
13342                 }, true).unwrap();
13343                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
13344                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13345                 }, false).unwrap();
13346                 assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
13347                 let channel_reestablish = get_event_msg!(
13348                         nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id()
13349                 );
13350                 nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &channel_reestablish);
13351
13352                 // Alice should respond with an error since the channel isn't known, but a bogus
13353                 // `ChannelReestablish` should be sent first, such that we actually trigger Bob to force
13354                 // close even if it was an lnd node.
13355                 let msg_events = nodes[0].node.get_and_clear_pending_msg_events();
13356                 assert_eq!(msg_events.len(), 2);
13357                 if let MessageSendEvent::SendChannelReestablish { node_id, msg } = &msg_events[0] {
13358                         assert_eq!(*node_id, nodes[1].node.get_our_node_id());
13359                         assert_eq!(msg.next_local_commitment_number, 0);
13360                         assert_eq!(msg.next_remote_commitment_number, 0);
13361                         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &msg);
13362                 } else { panic!() };
13363                 check_closed_broadcast(&nodes[1], 1, true);
13364                 check_added_monitors(&nodes[1], 1);
13365                 let expected_close_reason = ClosureReason::ProcessingError {
13366                         err: "Peer sent an invalid channel_reestablish to force close in a non-standard way".to_string()
13367                 };
13368                 check_closed_event!(nodes[1], 1, expected_close_reason, [nodes[0].node.get_our_node_id()], 100000);
13369                 {
13370                         let txn = nodes[1].tx_broadcaster.txn_broadcast();
13371                         assert_eq!(txn.len(), 1);
13372                         check_spends!(txn[0], funding_tx);
13373                 }
13374         }
13375
13376         #[test]
13377         fn test_malformed_forward_htlcs_ser() {
13378                 // Ensure that `HTLCForwardInfo::FailMalformedHTLC`s are (de)serialized properly.
13379                 let chanmon_cfg = create_chanmon_cfgs(1);
13380                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
13381                 let persister;
13382                 let chain_monitor;
13383                 let chanmgrs = create_node_chanmgrs(1, &node_cfg, &[None]);
13384                 let deserialized_chanmgr;
13385                 let mut nodes = create_network(1, &node_cfg, &chanmgrs);
13386
13387                 let dummy_failed_htlc = |htlc_id| {
13388                         HTLCForwardInfo::FailHTLC { htlc_id, err_packet: msgs::OnionErrorPacket { data: vec![42] }, }
13389                 };
13390                 let dummy_malformed_htlc = |htlc_id| {
13391                         HTLCForwardInfo::FailMalformedHTLC { htlc_id, failure_code: 0x4000, sha256_of_onion: [0; 32] }
13392                 };
13393
13394                 let dummy_htlcs_1: Vec<HTLCForwardInfo> = (1..10).map(|htlc_id| {
13395                         if htlc_id % 2 == 0 {
13396                                 dummy_failed_htlc(htlc_id)
13397                         } else {
13398                                 dummy_malformed_htlc(htlc_id)
13399                         }
13400                 }).collect();
13401
13402                 let dummy_htlcs_2: Vec<HTLCForwardInfo> = (1..10).map(|htlc_id| {
13403                         if htlc_id % 2 == 1 {
13404                                 dummy_failed_htlc(htlc_id)
13405                         } else {
13406                                 dummy_malformed_htlc(htlc_id)
13407                         }
13408                 }).collect();
13409
13410
13411                 let (scid_1, scid_2) = (42, 43);
13412                 let mut forward_htlcs = new_hash_map();
13413                 forward_htlcs.insert(scid_1, dummy_htlcs_1.clone());
13414                 forward_htlcs.insert(scid_2, dummy_htlcs_2.clone());
13415
13416                 let mut chanmgr_fwd_htlcs = nodes[0].node.forward_htlcs.lock().unwrap();
13417                 *chanmgr_fwd_htlcs = forward_htlcs.clone();
13418                 core::mem::drop(chanmgr_fwd_htlcs);
13419
13420                 reload_node!(nodes[0], nodes[0].node.encode(), &[], persister, chain_monitor, deserialized_chanmgr);
13421
13422                 let mut deserialized_fwd_htlcs = nodes[0].node.forward_htlcs.lock().unwrap();
13423                 for scid in [scid_1, scid_2].iter() {
13424                         let deserialized_htlcs = deserialized_fwd_htlcs.remove(scid).unwrap();
13425                         assert_eq!(forward_htlcs.remove(scid).unwrap(), deserialized_htlcs);
13426                 }
13427                 assert!(deserialized_fwd_htlcs.is_empty());
13428                 core::mem::drop(deserialized_fwd_htlcs);
13429
13430                 expect_pending_htlcs_forwardable!(nodes[0]);
13431         }
13432 }
13433
13434 #[cfg(ldk_bench)]
13435 pub mod bench {
13436         use crate::chain::Listen;
13437         use crate::chain::chainmonitor::{ChainMonitor, Persist};
13438         use crate::sign::{KeysManager, InMemorySigner};
13439         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
13440         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
13441         use crate::ln::functional_test_utils::*;
13442         use crate::ln::msgs::{ChannelMessageHandler, Init};
13443         use crate::routing::gossip::NetworkGraph;
13444         use crate::routing::router::{PaymentParameters, RouteParameters};
13445         use crate::util::test_utils;
13446         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
13447
13448         use bitcoin::amount::Amount;
13449         use bitcoin::blockdata::locktime::absolute::LockTime;
13450         use bitcoin::hashes::Hash;
13451         use bitcoin::hashes::sha256::Hash as Sha256;
13452         use bitcoin::{Transaction, TxOut};
13453         use bitcoin::transaction::Version;
13454
13455         use crate::sync::{Arc, Mutex, RwLock};
13456
13457         use criterion::Criterion;
13458
13459         type Manager<'a, P> = ChannelManager<
13460                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
13461                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
13462                         &'a test_utils::TestLogger, &'a P>,
13463                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
13464                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
13465                 &'a test_utils::TestLogger>;
13466
13467         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
13468                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
13469         }
13470         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
13471                 type CM = Manager<'chan_mon_cfg, P>;
13472                 #[inline]
13473                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
13474                 #[inline]
13475                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
13476         }
13477
13478         pub fn bench_sends(bench: &mut Criterion) {
13479                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
13480         }
13481
13482         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
13483                 // Do a simple benchmark of sending a payment back and forth between two nodes.
13484                 // Note that this is unrealistic as each payment send will require at least two fsync
13485                 // calls per node.
13486                 let network = bitcoin::Network::Testnet;
13487                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
13488
13489                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
13490                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
13491                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
13492                 let scorer = RwLock::new(test_utils::TestScorer::new());
13493                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &logger_a, &scorer);
13494
13495                 let mut config: UserConfig = Default::default();
13496                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
13497                 config.channel_handshake_config.minimum_depth = 1;
13498
13499                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
13500                 let seed_a = [1u8; 32];
13501                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
13502                 let node_a = ChannelManager::new(&fee_estimator, &chain_monitor_a, &tx_broadcaster, &router, &logger_a, &keys_manager_a, &keys_manager_a, &keys_manager_a, config.clone(), ChainParameters {
13503                         network,
13504                         best_block: BestBlock::from_network(network),
13505                 }, genesis_block.header.time);
13506                 let node_a_holder = ANodeHolder { node: &node_a };
13507
13508                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
13509                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
13510                 let seed_b = [2u8; 32];
13511                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
13512                 let node_b = ChannelManager::new(&fee_estimator, &chain_monitor_b, &tx_broadcaster, &router, &logger_b, &keys_manager_b, &keys_manager_b, &keys_manager_b, config.clone(), ChainParameters {
13513                         network,
13514                         best_block: BestBlock::from_network(network),
13515                 }, genesis_block.header.time);
13516                 let node_b_holder = ANodeHolder { node: &node_b };
13517
13518                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
13519                         features: node_b.init_features(), networks: None, remote_network_address: None
13520                 }, true).unwrap();
13521                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
13522                         features: node_a.init_features(), networks: None, remote_network_address: None
13523                 }, false).unwrap();
13524                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None, None).unwrap();
13525                 node_b.handle_open_channel(&node_a.get_our_node_id(), &get_event_msg!(node_a_holder, MessageSendEvent::SendOpenChannel, node_b.get_our_node_id()));
13526                 node_a.handle_accept_channel(&node_b.get_our_node_id(), &get_event_msg!(node_b_holder, MessageSendEvent::SendAcceptChannel, node_a.get_our_node_id()));
13527
13528                 let tx;
13529                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
13530                         tx = Transaction { version: Version::TWO, lock_time: LockTime::ZERO, input: Vec::new(), output: vec![TxOut {
13531                                 value: Amount::from_sat(8_000_000), script_pubkey: output_script,
13532                         }]};
13533                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
13534                 } else { panic!(); }
13535
13536                 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()));
13537                 let events_b = node_b.get_and_clear_pending_events();
13538                 assert_eq!(events_b.len(), 1);
13539                 match events_b[0] {
13540                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
13541                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
13542                         },
13543                         _ => panic!("Unexpected event"),
13544                 }
13545
13546                 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()));
13547                 let events_a = node_a.get_and_clear_pending_events();
13548                 assert_eq!(events_a.len(), 1);
13549                 match events_a[0] {
13550                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
13551                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
13552                         },
13553                         _ => panic!("Unexpected event"),
13554                 }
13555
13556                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
13557
13558                 let block = create_dummy_block(BestBlock::from_network(network).block_hash, 42, vec![tx]);
13559                 Listen::block_connected(&node_a, &block, 1);
13560                 Listen::block_connected(&node_b, &block, 1);
13561
13562                 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()));
13563                 let msg_events = node_a.get_and_clear_pending_msg_events();
13564                 assert_eq!(msg_events.len(), 2);
13565                 match msg_events[0] {
13566                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
13567                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
13568                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
13569                         },
13570                         _ => panic!(),
13571                 }
13572                 match msg_events[1] {
13573                         MessageSendEvent::SendChannelUpdate { .. } => {},
13574                         _ => panic!(),
13575                 }
13576
13577                 let events_a = node_a.get_and_clear_pending_events();
13578                 assert_eq!(events_a.len(), 1);
13579                 match events_a[0] {
13580                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
13581                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
13582                         },
13583                         _ => panic!("Unexpected event"),
13584                 }
13585
13586                 let events_b = node_b.get_and_clear_pending_events();
13587                 assert_eq!(events_b.len(), 1);
13588                 match events_b[0] {
13589                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
13590                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
13591                         },
13592                         _ => panic!("Unexpected event"),
13593                 }
13594
13595                 let mut payment_count: u64 = 0;
13596                 macro_rules! send_payment {
13597                         ($node_a: expr, $node_b: expr) => {
13598                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
13599                                         .with_bolt11_features($node_b.bolt11_invoice_features()).unwrap();
13600                                 let mut payment_preimage = PaymentPreimage([0; 32]);
13601                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
13602                                 payment_count += 1;
13603                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).to_byte_array());
13604                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
13605
13606                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
13607                                         PaymentId(payment_hash.0),
13608                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
13609                                         Retry::Attempts(0)).unwrap();
13610                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
13611                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
13612                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
13613                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
13614                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
13615                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
13616                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &get_event_msg!(ANodeHolder { node: &$node_a }, MessageSendEvent::SendRevokeAndACK, $node_b.get_our_node_id()));
13617
13618                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
13619                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
13620                                 $node_b.claim_funds(payment_preimage);
13621                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
13622
13623                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
13624                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
13625                                                 assert_eq!(node_id, $node_a.get_our_node_id());
13626                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
13627                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
13628                                         },
13629                                         _ => panic!("Failed to generate claim event"),
13630                                 }
13631
13632                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
13633                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
13634                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
13635                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &get_event_msg!(ANodeHolder { node: &$node_b }, MessageSendEvent::SendRevokeAndACK, $node_a.get_our_node_id()));
13636
13637                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
13638                         }
13639                 }
13640
13641                 bench.bench_function(bench_name, |b| b.iter(|| {
13642                         send_payment!(node_a, node_b);
13643                         send_payment!(node_b, node_a);
13644                 }));
13645         }
13646 }